.gitignore
... ...
@@ -1 +0,0 @@
1
-tasking/
Home.md
... ...
@@ -1,23 +1,33 @@
1 1
# grimoire
2 2
3
-## content
4
-1. [coding](coding/index)
5
-2. [documentation](documentation/index)
6
-3. [d&d](d_and_d/index)
7
-4. [learning](learning/index)
8
-5. [misc](misc/index)
9
-6. [projects](projects/index)
10
-7. [technology](technology/index)
11
- 1. [automation](technology/automation/index)
12
- 2. [authentication](technology/authentication/index)
13
- 3. [bsd](technology/bsd/index)
14
- 4. [cloud](technology/cloud/index)
15
- 5. [communication](technology/communication/index)
16
- 6. [containers](technology/containers/index)
17
- 7. [databases](technology/databases/index)
18
- 8. [encryption](technology/encryption/index)
19
- 9. [linux](technology/linux/index)
20
- 10. [monitoring](technology/monitoring/index)
21
- 11. [networking](technology/networking/index)
22
- 12. [virtualisation](technology/virtualisation/index)
23
- 13. [websites](technology/websites/index)
3
+## tech
4
+### operating systems
5
+* [linux](linux/index)
6
+* [openbsd](/unix/openbsd)
7
+* [freebsd](/unix/freebsd)
8
+
9
+### everyday tools
10
+* [vim](/edt/vim)
11
+* [git](/edt/git)
12
+* [tmux](/edt/tmux)
13
+* [more](/tech-index#everyday-tools)...
14
+
15
+### programming
16
+* [shell_scripts](/programming/shell_scripts)
17
+* [more](/tech-index#programming)...
18
+
19
+### other
20
+* [software](/tech-index#software)
21
+* [hardware](/tech-index#hardware)
22
+* [cloud_and_saas](/tech-index#cloud_and_saas)
23
+
24
+## course notes
25
+* [udmey](/udmey/index)
26
+
27
+## unsorted
28
+* [funding](/unsorted/funding)
29
+* [hackthebox](/unsorted/hackthebox)
30
+* [longbox](/unsorted/longbox)
31
+* [new_blog](/unsorted/new_blog)
32
+* [nmcli_create_bond](/unsorted/nmcli_create_bond)
33
+* [pinterest_ignore](/unsorted/pinterest_ignore)
cloud_saas/azure.md
... ...
@@ -0,0 +1,169 @@
1
+# azure
2
+
3
+## az cli
4
+[docs][]
5
+
6
+### useful cmds
7
+ - show list of resource groups
8
+ ```
9
+ az group list --output table
10
+ ```
11
+ - list resources in a resource group
12
+ ```
13
+ az resource list -g <group_name> --output table
14
+ ```
15
+
16
+create debian machine with no public ip and in prebuilt subnet, with tags
17
+```
18
+az vm create -g my-resource-group -n my-debian-vm --vnet-name my-vnet --nsg "" --image Debian --ssh-key-value .ssh/id_rsa.pub --admin-username pyratebeard --tags created-by=pyratebeard --public-ip-address "" --subnet my-subnet
19
+```
20
+
21
+install the azure cli command `az` by running the following
22
+```
23
+curl -L https://aka.ms/InstallAzureCLI | bash
24
+```
25
+
26
+once installed login in to your account with
27
+```
28
+az login
29
+```
30
+
31
+to switch to a different account run
32
+```
33
+az logout
34
+```
35
+
36
+then run the login command again.
37
+
38
+all the following steps _can_ be run from the portal cli as well as your local machine once you have installed `az`.
39
+
40
+### changing subscriptions
41
+
42
+check your subscriptions
43
+```
44
+az account list --output table
45
+```
46
+
47
+show which subscription you're currently using
48
+```
49
+az account show
50
+```
51
+
52
+then to change subscriptions run
53
+```
54
+az account set --subscription "My Other Subscription"
55
+```
56
+
57
+### show vm images
58
+```
59
+az image list
60
+```
61
+
62
+### getting started
63
+
64
+here is a quick run through of spinning up a [centos][] virtual machine
65
+
66
+ - create resource group
67
+ ```
68
+ az group create --name D-TST-RGRP --location northeurope
69
+ ```
70
+ - create Network Security Group
71
+ ```
72
+ az network nsg create --resource-group D-TST-RGRP --name D-TST-LAPP01
73
+ ```
74
+ - create a network rule in an existing security group
75
+ ```
76
+ az network nsg rule create --resource-group D-TST-RGRP --nsg-name D-TST-NSGP --name allow-access --description "Allow all traffic from my public range" --access Allow --protocol Tcp --direction Inbound --priority 102 --source-address-prefix "97.108.19.240/28" --source-port-range "*" --destination-address-prefix "*" --destination-port-range "*"
77
+ ```
78
+ - create a virtual machine
79
+ ```
80
+ az vm create -g D-TST-RGRP -n D-TST-LAPP01 --image CentOS --generate-ssh-keys
81
+ ```
82
+
83
+once the VM is successfully created it will output some json. make note of the "publicIpAddress" value, and use this to `ssh` to the server.
84
+
85
+## advanced tools
86
+
87
+the following are a collection of tools which have been played around with. some of these tools may require escalated privileges which your account may not have. if you are unable to action anything and really desperately need to then speak to one of the azure admins.
88
+
89
+you can check your current role with the cli. first you need to make a note of the username for the subscription you're using
90
+```
91
+az account show
92
+{
93
+ "environmentName": "AzureCloud",
94
+ "id": "",
95
+ "isDefault": true,
96
+ "name": "My Subscription",
97
+ "state": "Enabled",
98
+ "tenantId": "",
99
+ "user": {
100
+ "name": "dudley@onmicrosoft.com",
101
+ "type": "user"
102
+ }
103
+}
104
+```
105
+copy the value from `"user": "name":`, then run the following replacing `<value>` with the username (usually an email address)
106
+```
107
+az role assignment list --assignee <value>
108
+[
109
+ {
110
+ "id": "/subscriptions/providers/Microsoft.Authorization/roleAssignments/",
111
+ "name": "",
112
+ "properties": {
113
+ "principalId": "",
114
+ "principalName": "dudley@onmicrosoft.com",
115
+ "roleDefinitionId": "/subscriptions/providers/Microsoft.Authorization/roleDefinitions/",
116
+ "roleDefinitionName": "Contributor",
117
+ "scope": "/subscriptions/"
118
+ },
119
+ "type": "Microsoft.Authorization/roleAssignments"
120
+ }
121
+]
122
+```
123
+your current role is under `"properties": "roleDefinitionName":`
124
+
125
+## show all resources in your subscription
126
+```
127
+az group list --output table
128
+```
129
+
130
+## deploy a kubernetes cluster
131
+
132
+we add the `aks` option to manage azure kubernetes services. Currently aks is only available in west europe
133
+```
134
+az group create --name D-K8S-RGRP --location westeurope
135
+az aks create --name D-K8S-KCLU --resource-group D-K8S-RGRP --generate-ssh-keys
136
+az aks get-credentials --name D-K8S-KCLU --resource-group D-K8S-RGRP
137
+az aks browse --name D-K8S-KCLU --resource-group D-K8S-RGRP
138
+az aks show --resource-group pyratebeard-container-demo-rg --name pyratebeard-container-demo-clu --query "servicePrincipalProfile.clientId" --output tsv
139
+```
140
+
141
+## deploy webapp and enable for webhooks
142
+```
143
+az group create --name webapp-rg -l northeurope
144
+az appservice plan create -g webapp-rg -n webapp-srvplan --is-linux
145
+az webapp create -g webapp-rg -p webapp-srvplan -n webapp -i pyratebeard/container-webhook-demo
146
+az webapp deployment container config -n webapp -g webapp-rg --enable-cd true
147
+az webapp deployment container show-cd-url -n D-TST-APP-SRV -g D-TST-APP-RG
148
+```
149
+
150
+run script tool on VMs (under 'Operation')
151
+
152
+## create vpn - [fortinet_cookbook][]
153
+* virtual network
154
+* virtual network gateway
155
+* local network gateway
156
+* public ip
157
+* connection (under virtual network gateway)
158
+* vpn not coming up in fortigate
159
+ * running network watcher troubleshooting
160
+ * need to add address space to connection
161
+* connect through gateway to website (using peering?)
162
+
163
+
164
+[auto_tagging][]
165
+
166
+[centos]: https://www.centos.org/
167
+[fortinet_cookbook]: https://cookbook.fortinet.com/ipsec-vpn-microsoft-azure-54/
168
+[auto_tagging]: https://gallery.technet.microsoft.com/scriptcenter/Automatically-Azure-fc5f1443
169
+[docs]: https://docs.microsoft.com/en-gb/cli/azure/get-started-with-azure-cli?view=azure-cli-latest
cloud_saas/openshift.md
... ...
@@ -0,0 +1,2 @@
1
+# openshift
2
+
coding/adb.md
... ...
@@ -1,26 +0,0 @@
1
-# android debug bridge
2
-
3
-[archwiki][]
4
-
5
-- install `adb`
6
- ```
7
- pacman -S android-tools android-udev
8
- ```
9
-- on android phone
10
- - settings > system > about phone > tap 'build number' 7 times to become developer
11
- - settings > system > (advanced) developer options > enable usb debugging
12
-- plug in phone via usb and switch to 'ptp'
13
-- check device is listed
14
- ```
15
- adb devices
16
- ```
17
-
18
-## screencast
19
-```
20
-adb shell screenrecord --output-format=h264 - | ffplay -
21
-adb shell screenrecord --output-format=h264 - | mpv --no-correct-pts --fps=60 -
22
-```
23
-
24
-
25
-
26
-[archwiki]: https://wiki.archlinux.org/index.php/Android_Debug_Bridge
coding/android.md
... ...
@@ -1,3 +0,0 @@
1
-# android
2
-
3
-- [android debug bridge](adb)
coding/arduino.md
... ...
@@ -1,38 +0,0 @@
1
-# arduino
2
-
3
-## ide installation
4
-```
5
-pacman -S arduino arduino-avr-core
6
-usermod -aG uucp,lock pyratebeard
7
-modprobe cdc_acm
8
-```
9
-
10
-## ide configuration
11
-### maltronics
12
-* in preferences add the following url to 'Additional Boards Manager URLs'
13
-** https://raw.githubusercontent.com/jLynx/MalDuino_Boards/master/IDE_Board_Manager/package_malduino_index.json
14
-* in tools > Board: > select Boards Manager and install
15
-** Arduino AVR Boards
16
-** Maltronics Bad Board
17
-* in tools > Manager Libraries install
18
-** Mouse by Arduino
19
-* select Maltronics Lite in boards list
20
-* use [script converter][]
21
-* for UK keyboard download zip
22
-* open lite.ono
23
- ```
24
- arduino lite/lite.ono
25
- ```
26
-* select Sketch > Upload (Ctrl+U)
27
-
28
-[ducky script][]
29
-
30
-[maltronics: how to script][]
31
-
32
-[hak5 payloads][]
33
-
34
-
35
-[script converter]: https://malduino.com/converter/
36
-[ducky script]: https://github.com/hak5darren/USB-Rubber-Ducky/wiki/Duckyscript
37
-[maltronics: how to script]: https://malduino.com/wiki/doku.php?id=scripting_howto
38
-[hak5 payloads]: https://github.com/hak5darren/USB-Rubber-Ducky/wiki/Payloads
coding/git.md
... ...
@@ -1,105 +0,0 @@
1
-# git
2
-
3
-undo merge that hasn't been pushed
4
-```zsh
5
-git reset --merge HEAD~1
6
-```
7
-
8
-roll back hard
9
-```
10
-git reset --hard <commit/tag>
11
-```
12
-
13
-force push of a previous commit
14
-```
15
-git push -f origin <commit_id>:<branch>
16
-```
17
-
18
-delete remote branch
19
-```
20
-git push --delete origin <branch>
21
-```
22
-
23
-reset local branch after a forced-update (above)
24
-```
25
-git fetch
26
-git reset origin/<branch> --hard
27
-```
28
-
29
-renaming branch and updating remote
30
-```
31
-git branch -m old-name new-name
32
-git push origin --set-upstream new-name
33
-git push origin :old-name
34
-```
35
-
36
-set username for [single repo][]
37
-```
38
-git config user.username 'name'
39
-```
40
-
41
-set signing key for local repo
42
-```
43
-git config user.signingkey <id>
44
-```
45
-
46
-[signing][] commits
47
-```
48
-git commit -S -m 'msg'
49
-```
50
-
51
-compare diff between two commits
52
-```
53
-git diff <commit>...<commit>
54
-```
55
-
56
-stash
57
-```
58
-git stash
59
-git stash show
60
-```
61
-
62
-unstash
63
-```
64
-git stash pop
65
-```
66
-
67
-add remote origin
68
-```
69
-git remote add origin git@gitserver/path/to/repo
70
-```
71
-
72
-add multiple push repos
73
-```
74
-git remote set-url --add --push origin git@gitserver/original/repo
75
-git remote set-url --add --push origin https://gitserver/another/repo
76
-```
77
-
78
-archive branch
79
-```
80
-git archive --format zip --outpu /path/to/output.zip <branch>
81
-```
82
-
83
-## using `hub`
84
-### pull requests
85
-```
86
-hub pr list
87
-hub pr checkout <num>
88
-```
89
-
90
-## helpful links
91
-
92
-[making a pull request][]
93
-
94
-[branching and rebasing][]
95
-
96
-[branching model][]
97
-
98
-[merging and rebasing][]
99
-
100
-[making a pull request]: https://www.atlassian.com/git/tutorials/making-a-pull-request
101
-[branching and rebasing]: https://git-scm.com/book/en/v2/Git-Branching-Rebasing
102
-[branching model]: https://nvie.com/posts/a-successful-git-branching-model/
103
-[single repo]: https://help.github.com/articles/setting-your-username-in-git/
104
-[merging and rebasing]: https://www.atlassian.com/git/tutorials/merging-vs-rebasing
105
-[signing]: https://git-scm.com/book/en/v2/Git-Tools-Signing-Your-Work
coding/index.md
... ...
@@ -1,7 +0,0 @@
1
-# coding
2
-
3
-- [android](android)
4
-- [arduino](arduino)
5
-- [git](git)
6
-- [svn](svn)
7
-- [vim](vim)
coding/svn.md
... ...
@@ -1,23 +0,0 @@
1
-# svn
2
-
3
-[dave child cheatsheet][]
4
-
5
-[abbey workshop howto][]
6
-
7
-```
8
-svn checkout --username=pyratebeard http://example.com/svn/repo/trunk localrepo
9
-
10
-svn status
11
-
12
-svn update /path
13
-```
14
-
15
-only need add for new directories or files
16
-```
17
-svn add /path|file
18
-
19
-svn commit -m "message" /path|file
20
-```
21
-
22
-[dave child cheatsheet]: https://www.cheatography.com/davechild/cheat-sheets/subversion/
23
-[abbey workshop howto]: https://www.abbeyworkshop.com/howto/misc/svn01/
coding/vim.md
... ...
@@ -1,155 +0,0 @@
1
-# vim
2
-
3
-## copy contents to/from files
4
-to copy the contents into a file
5
- ```
6
- :r <filename>
7
- ```
8
-or
9
- ```
10
- :"qY # yank out of first file
11
- :"qP # put into second file
12
- ```
13
-or read range of lines
14
- ```
15
- :r! sed -n <n>,<m>p /path/to/file.md
16
- ```
17
-
18
-to copy the contents to a new file
19
- ```
20
- :<n>,<m> w <filename>
21
- ```
22
- where `<n>` and `<m>` are numbers or symbols that designate range of lines
23
-
24
-
25
-## text wrap
26
-(wrap to column)
27
-wrap current line
28
-```
29
-gqq
30
-```
31
-
32
-wrap entire file
33
-```
34
-gqG
35
-```
36
-
37
-wrap paragraph using visual selection
38
-```
39
-V}gq
40
-```
41
-
42
-also use visual or visual block with `gq`
43
-
44
-## spell
45
-[using_spellcheck][]
46
-check spelling
47
-```
48
-Spell
49
-```
50
-
51
-move to word
52
-```
53
-]s [s
54
-```
55
-
56
-and see results
57
-```
58
-z=
59
-```
60
-
61
-turn off highlighting
62
-```
63
-set nospell
64
-```
65
-
66
-## buffers
67
-- buffer [faq][]
68
-- using [vanilla vim][]
69
-- [buffers over tabs][]
70
-- open buffer
71
- ```
72
- :e <filename>
73
- :new
74
- ```
75
-- view buffers
76
- ```
77
- :ls
78
- ```
79
-- switch buffers
80
- ```
81
- :buffer <num>
82
- ```
83
-- unload buffer
84
- ```
85
- :bd <num>
86
- ```
87
-
88
-## incrementing numbers
89
-post on [reddit][]
90
-
91
-select several lines containing '0' and type `g<C-a>`
92
-
93
-## split
94
-- movement
95
- ```
96
- <Ctrl>-w [h,j,k,l]
97
- <Ctrl>-w w
98
- ```
99
-- rotate
100
- ```
101
- <Ctrl>-w r
102
- ```
103
-- orientate
104
- ```
105
- <Ctrl>-w J
106
- <Ctrl>-w L
107
- ```
108
-- sizing
109
- ```
110
- <Ctrl>-w - # decrease height by 1 line
111
- <Ctrl>-w + # increase height by 1 line
112
- <Ctrl>-w < # change width by 1 line to the left
113
- <Ctrl>-w > # change width by 1 line to the right
114
- <Ctrl>-w 10 - # decrease height by 10 lines, etc...
115
- ```
116
-
117
-## list recent doc
118
-```
119
-:ol[dfiles]
120
-```
121
-
122
-## replace
123
-- change inner word
124
- ```
125
- ciw
126
- ```
127
-
128
-## delete
129
-- until but not <char>
130
- ```
131
- dt <char>
132
- ```
133
-- until and <char>
134
- ```
135
- df <char>
136
- ```
137
-
138
-## using the shell
139
-[vim and the shell][]
140
-
141
-- in script, highlight line and switch to command mode by pressing `:`
142
-```bash
143
-:'<,'>w !bash -
144
-```
145
-
146
-```python
147
-:'<,'>w !python -
148
-```
149
-
150
-[using_spellcheck]: https://www.linux.com/learn/using-spell-checking-vim
151
-[faq]: http://vim.wikia.com/wiki/Vim_buffer_FAQ
152
-[vanilla vim]: https://stackoverflow.com/questions/16082991/vim-switching-between-files-rapidly-using-vanilla-vim-no-plugins
153
-[buffers over tabs]: https://stackoverflow.com/questions/26708822/why-do-vim-experts-prefer-buffers-over-tabs
154
-[reddit]: https://www.reddit.com/r/vim/comments/a1lvb1/til_gca_for_creating_a_column_of_incrementing/
155
-[vim and the shell]: https://vimways.org/2019/vim-and-the-shell/
custom.css
... ...
@@ -12,23 +12,6 @@
12 12
font-style: normal;
13 13
}
14 14
15
-@font-face {
16
- font-family: 'saxmono';
17
- src: url('/fonts/saxmono-webfont.woff') format('woff');
18
- font-weight: normal;
19
- font-style: normal;
20
-}
21
-@font-face {
22
- font-family: 'envy';
23
- src: url("/fonts/envy_code_r.eot");
24
- src: url("/fonts/envy_code_r.eot?#iefix") format('embedded-opentype'),
25
- url("/fonts/envy_code_r.woff2") format('woff2'),
26
- url("/fonts/envy_code_r.woff") format('woff'),
27
- url("/fonts/envy_code_r.ttf") format('truetype'),
28
- url("/fonts/envy_code_r.svg") format('svg');
29
- font-weight: normal;
30
- font-style: normal;
31
-}
32 15
body {
33 16
background: #171717;
34 17
color: #bbbbbb;
... ...
@@ -171,7 +154,7 @@ a:focus {
171 154
#head #searchbar div#searchbar-fauxtext input#search-query.ph {
172 155
background: #151515;
173 156
color: #bbbbbb;
174
- font-family: 'envy', mono;
157
+ font-family: 'bpmono', mono;
175 158
}
176 159
#head #searchbar div#searchbar-fauxtext a#search-submit {
177 160
background: #151515;
d_and_d/character_sheet-nixolaus.md
... ...
@@ -1,147 +0,0 @@
1
-## character
2
-##### nixolaus nixerum [2]
3
-
4
-| class | race | background | alignment | exp points |
5
-| --- | --- | --- | --- | --- |
6
-| wizard | human | sage (researcher) | chaotic neutral | |
7
-
8
-### defence
9
-| hp | initiative | speed |
10
-| --- | --- | --- |
11
-| 14 | 1 | 30 |
12
-
13
-| armour class | hit dice | proficiency |
14
-| --- | --- | --- |
15
-| 11 | 2d8 | +2 |
16
-
17
-### attacks / spellcasting
18
-| name | atk | damage/type |
19
-| --- | --- | --- |
20
-| quarterstaff | +2 | bludgeoning |
21
-
22
-spellbook
23
-
24
-### ability scores
25
-| ability | score | mod | saving throw |
26
-| --- | --- | --- | --- |
27
-| str | 11 | 0 | 0 |
28
-| dex | 13 | +1 | +1 |
29
-| con | 15 | +2 | +2 |
30
-| int | 16 | +3 | +5 |
31
-| wis | 14 | +2 | +4 |
32
-| cha | 9 | -1 | -1 |
33
-
34
-### skills
35
-| skill | score | ability |
36
-| --- | --- | --- |
37
-| acrobatics | 1 | dex |
38
-| animal handling | 2 | wis |
39
-| arcana | 5 | int |
40
-| atheletics | 0 | str |
41
-| deception | -1 | cha |
42
-| history | 5 | int |
43
-| insight | 4 | wis |
44
-| intimidation | -1 | cha |
45
-| investigation | 5 | int |
46
-| medicine | 2 | wis |
47
-| nature | 3 | int |
48
-| perception | 2 | wis |
49
-| performance | -1 | cha |
50
-| persuasion | -1 | cha |
51
-| religion | 3 | int |
52
-| sleight of hand | 1 | dex |
53
-| stealth | 1 | dex |
54
-| survival | 2 | wis |
55
-
56
-### languages
57
-- common
58
-- elvish
59
-- goblin
60
-- orc
61
-
62
-### weapon proficiencies
63
-- dagger
64
-- dart
65
-- light crossbow
66
-- quarterstaff
67
-- sling
68
-
69
-### armour proficiencies
70
-
71
-### tool proficiencies
72
-
73
-### equipment
74
-- quarterstaff
75
-- arcane focus
76
-- scholar's pack
77
-- spellbook
78
-- bottle of black ink
79
-- quill
80
-- small knife
81
-- letter from a dead colleague
82
-- common clothes
83
-- belt pouch
84
-- backpack
85
-- book of lore
86
-- ink
87
-- ink pen
88
-- parchment x10
89
-- small knife
90
-- king in yellow
91
-- deed to trollskull manor
92
-- old spellbook from floon
93
-- potion of healing
94
-- potion of giant strength
95
-
96
-#### coin
97
-| pp | gp | ep | sp | cp |
98
-| --- | --- | --- | --- | --- |
99
-| | 20 | | | |
100
-
101
-### traits
102
-
103
-#### personality
104
-> there's nothing i like more than a good mystery
105
-
106
-#### ideals
107
-> knowledge. the path to power and self-improvement is through knowledge
108
-
109
-#### bonds
110
-> i have an ancient text that holds terrible secrets that must not fall into the wrong hands
111
-
112
-#### flaws
113
-> i am easily distracted by the promise of information
114
-
115
-#### features
116
-- ritual casting
117
-- arcane recovery
118
-- researcher
119
-
120
-### other notes
121
-
122
-### spells
123
-[spell list][]
124
-
125
-[spellbook][]
126
-
127
-#### cantrips
128
-- acid splash
129
-- fire bolt
130
-- green-flame blade
131
-- shocking grasp
132
-
133
-#### level 1
134
-- chromatic orb (1)
135
-- comprehend languages
136
-- disguise self (1)
137
-- longstrider (1)
138
-- magic missile (1)
139
-- shield (1)
140
-- thunderwave (1)
141
-- tasha's hideous laughter
142
-- witch bolt (1)
143
-
144
-#### level 2
145
-- acid arrow
146
-- magic weapon
147
-- scorching ray
d_and_d/character_sheet-snow.md
... ...
@@ -1,89 +0,0 @@
1
-## character
2
-##### snow of the mountain [5]
3
-
4
-| class | race | background | alignment | exp points |
5
-| --- | --- | --- | --- | --- |
6
-| rogue | tabaxi | anthropologist | chaotic neutral | 6500 |
7
-
8
-### defence
9
-| hp | initiative | speed |
10
-| --- | --- | --- |
11
-| 43 | 3 | 40 |
12
-
13
-| armour class | hit dice | proficiency |
14
-| --- | --- | --- |
15
-| 14 | 5 | 3 |
16
-
17
-### attacks / spellcasting
18
-| name | atk | damage/type |
19
-| --- | --- | --- |
20
-| shortsword | +6 | 1d6+3 piercing |
21
-| shortbow | +6 | 1d6+3 piercing |
22
-| dagger | +6 | 1d4+3 piercing |
23
-| shortsword | +4 | 1d4+3 slashing |
24
-
25
-### ability scores
26
-| ability | score | mod | saving throw |
27
-| --- | --- | --- | --- |
28
-| str | 12 | 1 | 1 |
29
-| dex | 17 | 3 | 6 |
30
-| con | 14 | 2 | 2 |
31
-| int | 13 | 1 | 4 |
32
-| wis | 10 | 0 | 0 |
33
-| cha | 11 | 0 | 0 |
34
-
35
-### skills
36
-| skill | score | ability |
37
-| --- | --- | --- |
38
-| acrobatics | 6 | dex |
39
-| animal handling | 0 | wis |
40
-| arcana | 1 | int |
41
-| atheletics | 4 | str |
42
-| deception | 0 | cha |
43
-| history | 1 | int |
44
-| insight | 3 | wis |
45
-| intimidation | 0 | cha |
46
-| investigation | 7 | int |
47
-| medicine | 0 | wis |
48
-| nature | 1 | int |
49
-| perception | 3 | wis |
50
-| performance | 0 | cha |
51
-| persuasion | 0 | cha |
52
-| religion | 4 | int |
53
-| sleight of hand | 6 | dex |
54
-| stealth | 6 | dex |
55
-| survival | 0 | wis |
56
-
57
-### languages
58
-- common
59
-- elvish
60
-- infernal
61
-- thieves' cant
62
-- undercommon
63
-
64
-### weapon proficiencies
65
-
66
-### armour proficiencies
67
-
68
-### tool proficiencies
69
-
70
-### equipment
71
-
72
-#### coin
73
-| pp | gp | ep | sp | cp |
74
-| --- | --- | --- | --- | --- |
75
-| | | | | |
76
-
77
-### traits
78
-
79
-#### personality
80
-
81
-#### ideals
82
-
83
-#### bonds
84
-
85
-#### flaws
86
-
87
-#### features
88
-
89
-### other notes
d_and_d/character_sheet.md
... ...
@@ -1,82 +0,0 @@
1
-## character
2
-##### name [level]
3
-
4
-| class | race | background | alignment | exp points |
5
-| --- | --- | --- | --- | --- |
6
-| | | | | |
7
-
8
-### defence
9
-| hp | initiative | speed |
10
-| --- | --- | --- |
11
-| | | |
12
-
13
-| armour class | hit dice | proficiency |
14
-| --- | --- | --- |
15
-| | | |
16
-
17
-### attacks / spellcasting
18
-| name | atk | damage/type |
19
-| --- | --- | --- |
20
-| | | |
21
-
22
-### ability scores
23
-| ability | score | mod | saving throw |
24
-| --- | --- | --- | --- |
25
-| str | | | |
26
-| dex | | | |
27
-| con | | | |
28
-| int | | | |
29
-| wis | | | |
30
-| cha | | | |
31
-
32
-### skills
33
-| skill | score | ability |
34
-| --- | --- | --- |
35
-| acrobatics | | dex |
36
-| animal handling | | wis |
37
-| arcana | | int |
38
-| atheletics | | str |
39
-| deception | | cha |
40
-| history | | int |
41
-| insight | | wis |
42
-| intimidation | | cha |
43
-| investigation | | int |
44
-| medicine | | wis |
45
-| nature | | int |
46
-| perception | | wis |
47
-| performance | | cha |
48
-| persuasion | | cha |
49
-| religion | | int |
50
-| sleight of hand | | dex |
51
-| stealth | | dex |
52
-| survival | | wis |
53
-
54
-### languages
55
-- common
56
-
57
-### weapon proficiencies
58
-
59
-### armour proficiencies
60
-
61
-### tool proficiencies
62
-
63
-### equipment
64
-
65
-#### coin
66
-| pp | gp | ep | sp | cp |
67
-| --- | --- | --- | --- | --- |
68
-| | | | | |
69
-
70
-### traits
71
-
72
-#### personality
73
-
74
-#### ideals
75
-
76
-#### bonds
77
-
78
-#### flaws
79
-
80
-#### features
81
-
82
-### other notes
d_and_d/dark_sun.md
... ...
@@ -1,13 +0,0 @@
1
-# dark sun
2
-
3
-looting the caravan after being attacked by massive onyx
4
-
5
-- water skins (days travel)
6
-- meat/jerky
7
-- doomar has notched sphere
8
-- shuriken from mantis bloke
9
-- sheet of onyx cut off (her) head :/
10
-- in paliquin finds a box
11
- - beautiful red apples
12
- - long lengths of rope with various knots
13
-- cut 'grub' out of camel thing
d_and_d/dragon_heist.md
... ...
@@ -1,467 +0,0 @@
1
-# dragon heist
2
-
3
-## party
4
-| character | class | race | player |
5
-| --- | --- | --- | --- |
6
-| raiann daardendrian | fighter | dragonborn | maryam |
7
-| guldur despana | sorcerer | drow | steve |
8
-| nixolaus nixerum | wizard | human | dudley |
9
-| donaar norixius | barbarian | dragonborn | john |
10
-| rubick zeck | cleric | human | jp |
11
-
12
-dm - conor
13
-
14
-## party notes
15
-### session 1
16
-- yawning portal inn
17
-- ranar neverember
18
- - human friend of floon (rescued at warehouse)
19
- - son of a lord
20
- - floon kidnapped by mistake
21
- - took paintings we found
22
-- winged serpent - symbol of the zhentarim
23
-- stone of golorr
24
-- spider with 10 legs (circle with spikes) symbol in yellow (found in sewer)
25
- - followed signs into sewer
26
-- found floon in sewer
27
- - gave me a spell book
28
- - burning hands
29
- - disguise self
30
- - false life
31
- - shield
32
- - unseen servant
33
- - witch bolt
34
-- yellow circle with small indentation in middle carved into pillar
35
-- back at the yawning portal
36
- - floon and ranar reunite
37
- - volo presents us with a scroll tube
38
- - deed to property
39
-- trollskull manor, trollskull alley
40
- - tavern on ground floor
41
- - 1000gold to start business
42
-- meet mert the loanshark
43
- - offers to give us the 100gold for the tavern in exchange for going to
44
- blue alley and finding a statue
45
-
46
-### session 2
47
-- blue alley
48
- - found locked room
49
- - minatour fight
50
- - key around its neck
51
- - mimic fight
52
- - painted on wall
53
- - "this tool with"
54
- - treasure chest
55
- - dias with gem and floating sword
56
- - engarving on the dias
57
- - "power pulses within me and only living warmth may move me"
58
- - rubick picks up gem and sword turns around
59
- - fight with gem
60
- - big red gem with tiny gates within
61
- - small room behind hidden wall
62
- - a once comfortable looking study
63
- - walls of reinforced steel
64
- - table
65
- - wooden box
66
- - placed little bag of sand opened/closed while on the table
67
- - placed a trinket in and took off the table
68
- - glowing orb now flies out of box
69
- - bowl of good berries
70
- - table has faintly carved runes all the way around
71
- - look like they reverse the magic of anything in the space
72
- - inscribed on wall
73
- - "what might and"
74
-
75
-### session 3
76
-- hidden room behind wall
77
- - inscription: 'a soft touch'
78
-- retraced steps over sticky carpet
79
-- up to a room with hanging platforms over a 20foot drop
80
-- donaar gets to forth platform when a smoke imp appears and attacks
81
-- after three party members fall we decide to head back and go another route
82
-- found a statue with a button in it, pushed the button and a door opens
83
-- stairs down to a luxurious room which is no longer cared for
84
-- raiann hears a voice behind a door to the east
85
-- behind door is a bronze statue of a wizard (behind a wall of force)
86
- - inscription the wall: 'utter madness PURE RUBBISH'
87
- - on the base is the word 'keilier'
88
- - when the word keilier is spoken he moves
89
- - keilier asks for a riddle
90
- - he tells us the inscription 'utter madness..' is not part of the other inscriptions
91
-- open door to the north
92
-- long corridor with doors on either side and an open door at the end (leading to the room of platforms)
93
-- first door on the left has a large furnace
94
- - demons to act as garbage disposal
95
- - incinerator room
96
-- on the last platform donaar finds a glowing moon touched elvish scimitar
97
- - inscription (in elvish): 'mother moon keep us in the dark'
98
-- second door on the left is an arcane workshop
99
- - find two potions
100
- - potion of healing
101
- - potion of giant strength (strength: 15)
102
- - on the wall: 'strength cannot get'
103
-- room on the right has winding yellow path
104
- - murials of mages holding the holy symbol
105
- - on the west wall are the words: 'can do'
106
- - at the end of the path is a door
107
- - behind door is a room made of red brick
108
- - in the middle of the room is a 3ft tall statue of a rearing unicorn
109
- - 'everything you see is mine' magically written across base when donaar touches horn
110
- - when the unicorn is picked up all the walls turn to mirror
111
- - when rubick tries to take the unicorn through the door the unicorn transports back to the stand and all his clothes and equipment pile up in the room
112
- - rubick walks out the room with his eyes closed and managed to leave the room with his clothes and the unicorn
113
-- phrase above door of next room: 'take only what you can truly afford'
114
- - room is full of coin
115
- - coins arranged in flowing script 'ALL FAKE'
116
- - another room off it
117
- - featureless except for black iron gates at one end
118
- - when gates are touched a mouth appears and say 'though these gates lies paradise'
119
-- guldur and nix take unicorn statue back to tavern
120
-- raiann and donaar appear in a pub and get free drinks from ronar
121
-- rubick lands in a garbage pile
122
-
123
-### session 4
124
-- unicorn picked up by benfactor
125
-- about a week has passed since session 3
126
-- pair of halflings arrive at the tavern (potentially siblings)
127
- - kelso and dannicka
128
- - looking for a job
129
- - previously worked at red larch
130
- - bryn hilltopple is a good cook
131
-- heading to the opera in sea ward to meet mert
132
- - formal clothing required (need to shop for some)
133
- - donaar and rubick go to two shops (gowns, and formal wear)
134
-- private box c in the opera house
135
- - mert tells us there is a cart pulled by talking horse named maxine, find her to see if there are any zenterim operatives in the town
136
-- the next day go to southern ward to meet the talking cat raiann met
137
- - groundskeeper tells us to go and stop a menacing scarecrow from killing livestock
138
-- head out of the south gate and up the southcliff way
139
-- see a scarecrow in the corn fields
140
-- guldur and donaar head to a house after guldur hears some clattering
141
- - donaar kicks the door in
142
- - noise sounds like it's coming from under the stairs
143
- - guldur casts yellow dancing lights
144
- - scratching behind a door
145
- - donaar kicks down another door
146
- - they find an injured crow
147
- - donaar then sees a tall figure in the darkness behind guldur
148
- - donaar and guldur hear a thunderous boom from the field
149
- - they both run up to the figure in the dark and attack
150
- - in the figures straw head there is a light
151
- - guldur casts chromatic orb (fire) but scarecrow isn't affected
152
- - wild magic causes guldur to turn into a potted plant
153
- - donaar has no idea where guldur has gone, he goes into rage
154
- - donaar hits it with his maul but only feels the snapping of twigs, not the same feeling of hitting a real creature
155
- - scarecrow claw attacks donaar and causes damage
156
- - guldur is no longer a potted plant
157
- - guldur casts chromatic orb (fire)
158
- - the scarecrow explodes into flames and tries to embrace guldur (like a lover) but disintegrates
159
- - donaar remembers the thunder noise so sprints out of the house to find the others
160
- - guldur chases after donaar
161
- - donaar is no longer raging, he sprints and smashes the rotten pumpkin scarecrow with his maul, causing it to completely cave in. this releases rubick from the fright
162
-- raiann, nix, and rubick head for the scarecrow
163
- - trying not to get lost in the corn
164
- - rubick figures out we're walking in a circle
165
- - we stop and get our bearing
166
- - nix hears a shuffle of feet in the corn briefly then it stops
167
- - nix casts thunderwave to clear the area of corn and alert the others in the house
168
- - something grabs raiann
169
- - rubick casts sacred flame
170
- - the figure lets go of raiann (it's another scarecrow)
171
- - raiann attacks with whip
172
- - the scarecrow looks straight at raiann and causes fright and paralysed
173
- - it starts to move closer to raiann and brushes her face
174
- - nix hits it with witch bolt
175
- - nix notices the pole where we saw the other scarecrow is empty (uh oh!)
176
- - something ploughs into rubick, it's the other scarecrow with a rotten pumpkin head
177
- - rubick uses guiding bolt and destroys the pumpkin scarecrow's face
178
- - the scarecrow holding raiann rips against her abdomen
179
- - nix continues to cast witch bolt, the hood is starting to smoke and char
180
- - second scarecrow slashes at rubick
181
- - rubick fails a wisdom save so is paralysed and frightened
182
- - first scarecrow attacks raiann again but does no damage
183
- - nix continues with witch bolt, the scarecrow explodes into flames and falls into a heap, this releases raiann from the fright
184
-- after the fight we search the 'corpses'
185
-- donaar takes some of the straw to show the groundskeeper
186
-- we head to the house to investigate
187
-- the crow is dead
188
-- the house is completely empty, no belongings at all
189
-- the party heads back to the groundskeeper
190
-- donaar presents him with the straw from the dead scarecrow
191
-- it's "just straw"
192
-- from nix's studies he knows the scarecrow is an animated evil creature
193
-- groundskeeper is very pleased with our work, offers to 'repay the debts' in the coming weeks
194
-- we all head back to trollskull
195
-- the tavern is clean and tidy, there is no sign of the halflings but they may just be asleep
196
-- as we start pouring drinks and standing around the table nobody notices the seat next to guldur pulls itself out on it's own for guldur to sit down
197
-- donaar rolls '23' for the week of business in the tavern
198
- - we pay the full 60 and make 0
199
-
200
-### session 5
201
-all except donaar walking back to trollskull alley, there's a massive white flash explosion. people on fire, ears ringing from blast. the explosion seems to have started outside our tavern. the front of our inn has collapsed. we head inside the tavern, it seems to be a concussive blast so no fire. there are huge piles of rubble everywhere. nix sees that the cellar door is a jar, rubick hears a faint cough from one of the piles of rubble. donaar is under the rubble, underneath him is a small half-orc kid. donaar has no pulse, he appears to be dead. we start to interrogate the kid, guldur intimidations him and he starts crying.
202
-
203
-a number of guards have cordoned off the area and a few are heading to the inn to investigate. a griffin lands and the rider, in shiny armour, jumps off and talks to one of the guards. the crying kid is attracting attention from the guards. a tall guard appears, escorting a human towards the crime scene. the tall guard start directing others. rubick approaches the guard in charge, and informs him that we are the tavern owners, the short human (barnabus blastwind, a member of the watchful order of mage and protectors) greets us. some of the guards run into the tavern and drag donaar's body out.
204
-
205
-barnabus leads us to a line up of 12 bodies and asks if we recognise any of them. we notice a few things regarding the dead bodies
206
-- nix notices that the gnome with the burnt cloak and dagger looks like he has dried waste on his boots (sewer) and a bulging pouch
207
-- rubick notices that the human with the armour has a black winged snake tattoo on his forearm.
208
-
209
-guldur distracts the guards with a noise in the alley, except for barnabus who smirks at guldur. nix swipes though pouch which contain 5 gem stones, worth 100 gold each.
210
-
211
-seth ( the tall human) says they need to take donaar's body for the time being but will brought back to us.
212
-
213
-falaar, who runs the glasshouse potion place, pulls raiann aside and tells her she saw a cloaked man take something off the gnome body and head to the bent nail inn.
214
-
215
-rubick is near the tiger's eye pi agency. vincent introduces a woman who says she saw a man shaped like puppet without strings on the roof, threw something into the tavern which caused the explosion.
216
-
217
-guldur is approached by a halfling kid who points to a barrel in the corner, he hands him a necklace with two orange beads and a broken clasp, which he found in the barrel after the explosion. guldur and rubick think the necklace is magic but are too stupid to know any more. nix recognises it as a necklace of fireballs, each of the beads is a different fire spell.
218
-
219
-there is a flapping sounds and a little folded up bird hits rubick in the back. when unfolded it is note from raynar, saying "go to the north exit of troll skull, i have a friend waiting".
220
-
221
-a half orc is talking to the guards but gestures for us to follow him. he is wearing studded leather armour, a hood and mask, two swords, and one of his sleeves is dyed red. he is raynar's friend, stil ar'yn.
222
-
223
-the puppet without strings sounds like the automotron which march in the parade, the parade is sponsored by temple of gond. gond is a deity of craft/smithwork, the church is all about inventions and creating. his symbol is a big cog with four spokes.
224
-
225
-we head of towards the house of inspired hands, it looks like a cross between a temple and a workshop. on the roof we see a humanoid shape. a small flapping thing is released from his hand and dives towards guldur.
226
-
227
-- raiann: throws a handaxe at the flying thing, hits it and the bird is demolished.
228
-- the figure on the roof runs off
229
-
230
-we head inside the temple. we are met by a bronze dragonborn priest, valeta. we mention the suspicious figure on the roof, she says it sounds like a nimblewright, which was given to the temple by a wizard a few years back. we follow her up a spiral staircase to a trapped door. we knock on the door and ask nim if they had been near our tavern. stil intimidates to try and get the door open.
231
-
232
-valeta gets nim to open the door, she isn't impressed with the intimidation. she leads us inside and we see nim who is a clockwork automotron figure. nim says he hasn't left the room. he built another nimblewright to ease his lonliness but the second one ran off.
233
-
234
-valeta hands us a nimblewright detector to help find the second one. it can't tell us the direction, only how far we are from it. we determine that nim is the original nimblewright.
235
-
236
-we follow the detector to the east wall of north ward and find an old villa. there is no answer at the gates, which are locked. we wait until dark.
237
-
238
-donaar tries to parkour over the east wall... and fails. guldur manages to break down the door with mage hand. it enters into a pantry, there are two corpses, and older male human and a younger halfling. the have both been stabbed, fresh wounds. we go in through the next door. the room is full of bodies and two thugs with bloody maces are there, we can hear fighting coming from the stairs.
239
-
240
-- guldur: rolls his d100 and weird music is heard
241
-- rubick: swings at the closest thug with his warhammer but misses
242
-- nix: uses witch bolt against the fartherst thug and hits him straight in the chest
243
-- raiann: pieces a thug with her glaive
244
-- the first thug swings at raiann with his mace but misses
245
-- stil: attacks with both his swords twice and almost kills one of the thugs
246
-
247
-- guldur's weird music is still playing. he uses firebolt which hits one of the thugs. then he starts floating up in the air (damn d100)
248
-- rubick: hits the thug with his warhammer
249
-- nix: throws acid chromatic orc at one thug but doesn't quite kill him
250
-- raiann: uses her scimitar to finish him off, then swings her glaive at the other thug and decapitates him.
251
-
252
-we head towards the sounds of fighting coming from the stairs. we go upstairs to find a battle raging between the intruders and the house guards. there are some bodies on the floor.
253
-
254
-- stil: uses his shortswords against an intruder
255
-- house guard 1: attacks his intruder but misses
256
-- house guard 2: hits his intruder
257
-- house guard 3: misses his intruder
258
-- guldur: throws chromatic orb at one of the intruders, he is still floating and music is still playing
259
-- intruder 1: tries to attack stil but misses
260
-- intruder 2: also misses
261
-- intruder 3: misses
262
-- raiann: hits an intruder with her handaxe
263
-- rubick: hits the centre intruder with his two-hand warhammer and bludgeons him, but doesn't quite kill him
264
-- nix: uses scorching ray against all three intruders
265
-
266
-- stil: shortsword against first intruder and kills him
267
-- house guard 1: attacks his intruder and hits
268
-- house guard 2: hits his intruder
269
-- house guard 3: misses his intruder
270
-- guldur: firebolts the centre intruder to death, then casts magic missile (d100) at the third intruder
271
-- raiann: moves into the room to the south and introduces herself to the guy in the room, then glaives him
272
-- rubick: runs in behind raiann and uses two-hand warhammer against the guy
273
-- nix: run in as well and uses firebolt. hits but no damage
274
-- stil: follows us in and uses dual shortswords
275
-- the intruder tries to jump out the window. raiann whips him, then rubick cracks his leg with his warhammer
276
-
277
-the owner of the house comes in and asks who we are, and why we have broken into her house at night. she seems relieved though. some city watch guards enter the house. two children come out of the wardrobe. the woman is yala, a noble, she has a half-orc body guard. barnabus and two griffin riders enter the room.
278
-
279
-the guy (floxan) who jumped out the window was keeping them hostage until her husband attempted a revolt. the husband is behind the door that was being kicked in.
280
-
281
-yala asks again why we are there. nix explains they are tracking a nimblewright. at the mention of the nimblewright the lady tells us one was delivered to them but was a spy that stole her necklace of fireballs.
282
-
283
-the watch pulls us to one side and seth isn't impressed with us running off chasing leads. barnabus is a bit more chilled.
284
-
285
-we head back to trollskull. the people of alley have tidied up a bit. the upstairs, back of the tavern and the basement are good enough to stay in.
286
-
287
-### session 6
288
-when we wake up, the two blacksmiths from the alley would like to help fix the inn.
289
-
290
-the is a large reward waiting for us in the house of inspired hands.
291
-
292
-raiann has the nimblewright finder device.
293
-
294
-we found the nimblewright hiding under a pile of junk in an alley south of trollskull, just off brahiir's street. when we approach it, it throws off it's cloak and takes a fencing position with a rapier
295
-
296
-- nix: throws acid splash at the nimblewright and cause minor damage. makes one of stil's swords magic
297
-- stil: attacks with shortswords and does damage
298
-- rubick: attacks with two-handed warhammer and buckles the nimblewright
299
-- raiann: uses whip and yanks it off it's feet
300
-- guldur: casts chromatic orb but misses and then disappears from view, invisible to the party
301
-- nimblewright: takes the momentum from the whip attack and turns its blades on raiann, hits a second slash with the rapier and causes damage, then swipes with a daggar for more damage
302
-
303
-- nix: casts acid arrow but misses
304
-- stil: attacks with swords again and causes damage, but the nw is still alive
305
-- rubick: attacks with two-handed warhammer and causes damage
306
-- raiann: attacks with scimitar but the nimblewright somersaults over it
307
-- guldur: (still invisible) using breath weapon to cast scorching ray for damage but misses with chromatic orb. then becomes terrified of nix until his next time
308
-- the nimblwright is dead but stil hacks it's head off anyway
309
-
310
-in the cloak it threw aside there is a map of the city of the dead with an 'X' and the word 'Cassalanter' but nobody knows what it means.
311
-
312
-we head back to the temple of the inspired hands with the nimblewright's head. the priestess is hanging a huge statue. stil tosses the head at her feet. she sends a young helper to the coinmaster and he brings a large bag of coin back to us. we follow her to small room and gives us a pair of small (2ft) poles with a horseshoe on top, they are adjustable stilts. guldur tries them on, and with the keyword 'altitude' makes him 5 foot taller. she shows us a pipe that lights itself which nix takes. then she takes out a traveller's backpack which, when you're falling you can pull a cord and it will slow your fall. finally she shows us a small 6inch cube with a crank on top, which when wound will make a loud barking sound or yapping sound when somebody walks near it depending what it is switched to.
313
-
314
-we head to the city of the dead. stil knows that at night there are guards patrolling. he tells us the best time to go is during the day. we still go at night, because we're bad ass. there are 8 guards around the walls.
315
-
316
-guldur uses his 'friend' cantrip and persuasion to try and get past the guards. it only works on one of the two guards standing in front of us, the second guard isn't persuaded. gulder can then teleport up to twenty feet on each turn for the next minute. the first guard is startled when guldur teleports behind him. a bit of persuasion on the second guard convinces him and the first one leads us into the city.
317
-
318
-we manage to get him to tell us about 'cassalanter'. he points to a large, well-lit, mausoleum and says that he thinks that is 'casslanter'. then guldur's "friend" spell wears off and the guards realises we're hostiles and calls for back up.
319
-
320
-- nix: reaches out with shocking grasp but the guard knocks his hand away with his spell
321
-- guldur: casts mage armour and then casts seven magic missiles which completely obliterate the guard
322
-
323
-we quickly run towards the mausoleum, which has the word 'cassalanter' engraved on stone in front of it. there is a huge stone door with a family emblem emblazoned to the side. rubick attempts to pick the lock and succeeds. in the entrance the family emblem is on the floor, and there are four coffins which have names engraved in them. we see human footprints in the dust heading to the stairs.
324
-
325
-rubick heads down the stairs first, followed by raiann, stil, guldur, and nix at the back. we see more coffins, and keep following the corridor. rubick looks around the corner and sees two dead bodies on the floor. raiann notices that they are both male. the first has been gutted with a dagger (which is still in him), and guldur notices the second has been inflicted by 'inflict wounds' spell. we hear a coughing from a small alcove. stil heads towards the noise and finds a woman who has also been stabbed, not responding. rubick heals her with "cure wounds". we try to find out who she is and what happened, but she is reluctant to talk to use. guldur uses "friends" to find out that her b/f is one of the deads bodies. they were all members of a cult who were betrayed by two others. they were looking for a stone that apparently is a map to gold. the cult worships 'asmodiaus' (the deity of indulgence). the woman pulls out an amulet to show us the symbol. she tells us which way they went, towards a windmill at the south of waterdeep. she asks that we promise to avenge her bf's death.
326
-
327
-we decide to loot the dead and start opening the stone caskets. rubick attempts to open one but is too weak and the lid doesn't budge.
328
-
329
-we then head to the windmill, the door is not locked so we head inside and into the first room, which has six squatters in and they all hide when we walk in. the next room has five squatters in. the third room has one person in, who looks like he his high as fuck.
330
-
331
-we decide to head upstairs. we see an ancient millstone under some debris, a couple of unlocked doors, and one locked door. we can't hear anything on the other side. rubick checks one of the unlocked doors, the room is covered in bird droppings and half the ceiling has collapsed.
332
-
333
-rubick then picks the lock on the locked door. it is a nice looking apartment and there are two people in the room who looked panicked when we walk in.
334
-
335
-- stil: uses his hand crossbow and hits one of the people. she cries out "sofia..."
336
-- rubick: casts "inflict wounds" but misses
337
-- the enemy sofia: casts "inflict wounds" back at rubick
338
-- the other enemy: casts "inflict wounds" at raiann and causes her to fall unconscious
339
-- raiann: succeeds a death save
340
-- guldur: casts 'mirror image' then appears slightly younger to nix
341
-- nix: casts hideous laughter at sofia. she saves on wisdom but falls prone with laughter
342
-
343
-- stil: walks up to sofia, who is on the floor, and attacks with short swords and causes damage
344
-- rubick: casts "spare of the dying" on raiann to help her, and "cure wounds" to heal her slightly
345
-- sofia: reaches out to rubick and a flame appears but only does minor damage
346
-- the other enemy: pulls out a dagger and swipes at raiann with damage then swipes at stil but misses
347
-- raiann: fails a death save
348
-- guldur: casts chromatic orb at the other enemy then uses sorcery points to cast chromatic orb again. now for the next 10 rounds of combat guldur has to shout now for the next 10 rounds of combat guldur has to shout.
349
-- nix: casts "scorching ray" against sofia and does massive damage. she reaches into her robes and throws a stone to the other one who reaches out to catch it
350
-
351
-- stil: attacks sofia with shortsword and finishes her off. he releases the sword and brings his other sword up and swings at the outstretched hand of the other one and cuts it clean off
352
-
353
-we see a green stone on the floor. rubick attempts to heal raiann and manages to get her to stand up. we head back to trollskull, and rubick has the stone on his person.
354
-
355
-in the morning rubick hears a voice in his head,
356
- "congratulations..."
357
-he replies,
358
- "thank you"
359
-the voice replies,
360
- "it has been a long time since i was won fairly in battle. for years i have been stolen, dropped, and swapped."
361
- "who own you?"
362
- "nobody owns me, but for now i am yours"
363
- "where are you from?"
364
- "outside reality"
365
-
366
-nix tries to figure out what it is but is too stoned or something
367
-
368
-the stone says,
369
- "are you after the gold? there is a vault deep under waterdeep, and three keys are needed to open the vault. these keys are 'a drunken elf', an animated construct, and a beardless dwarf. finally the gold is guarded by a gold dragon called aurinax"
370
-
371
-we ask, "do dark elves count as elves?"
372
- "an elf is an elf"
373
-
374
-we ask, "does the 'animated construct' have to be alive?"
375
- "providing the construct has not been destroyed or rendered inoperable, however or an object with an animated objects spell will suffice"
376
-
377
-we decide to try and sneak nim the nimblewright out of the temple, and guldur will be our 'drunken elf'. we also want to know if a "disguise self" spell will work if nix pretends to be lord neverember, whose gold it is.
378
-
379
-### session 7
380
-we head to the house of inspired hands, they seem happy to see us. we are able to 'borrow' nim, as long as it isn't going to hurt/damage them, thanks to guldur's persuasion.
381
-
382
-rubick asks the talking stone if we can use a shaven dwarf or if it has to be a dwarf that never grew a beard. a female dwarf will work. one of the contractors fixing up the tavern is a female dwarf. we attempt to persuade her to come with us, but aren't very convincing but she begrudgingly follows us.
383
-
384
-guldur gets drunk, and we head to the vault. the door is huge, and has no handles. in dwarvish runes it says "the three keys, bring them forth". guldur, the dwarf, and nim step forward and the doors open.
385
-
386
-inside is a massive vast chamber with stone columns holding up bridges high up above. there are 12 doors around the room. none of the doors move apart from one set, which gently budges. nix pushes a bit more and the doors open up into another room. there are stairs going up. guldur moves into the room and is immediately fascinated by the fresco on the wall, and won't move for the next 24 hours. rubick walks up behind guldur to try and knock him out and also becomes fascinated with the wall.
387
-
388
-raiann attempts to fire breath the wall to destroy it.
389
-
390
-nix figures out that there is some magic on the wall, anyone within 10 feet becomes enthralled. if enough of it is destroyed the spell may be broken, but the two who are under it's spell try to defend the wall.
391
-
392
-stil: fires his crossbow at the wall which causes damage
393
-nix: launches a bubble of acid which splashes against the wall
394
-raiann: throws her handaxe, but the handle hits the wall and doesn't damage
395
-rubick: heals guldur from his smashed head
396
-guldur: casts a fire bolt at stil but misses
397
-
398
-stil: fires his crossbow at the wall but misses
399
-nix: casts a fire bolt at the wall for damage
400
-raiann: throws her handaxe again, but the handle hits the wall and doesn't damage
401
-rubick: casts sacred flame against raiann
402
-guldur: casts a fire bolt at stil but misses
403
-
404
-due to the damage to the wall rubick and guldur are no longer under the spell. we all decide to head up the stairs. along the wall there is a large mural of a dwarven god. there are also large warhammers along the path. there are a number of bridges which cross the first chamber we entered. we move to the final bridge and cross to find a large locked door. guldur, being drunk, attempts to fight the door with his backpack. rubick and stil push against the door and it starts to open. inside is a small room, the walls are covered in frescos of dwarven blacksmiths and an anvil in the centre of the room. stil notices a hammer on the wall can be removed. he pulls it out and it has dwarvish runes behind it on the wall, which reads "let hearts be lifted and battles won". stil bangs the hammer on the anvil, which causes us all to gain 10 temp hp. we notice the anvil has runes which read "let the hammer fall and the anvil ring".
405
-
406
-we hear a scraping metallic sound outside. the door at the end of next bridge along has now opened. this bridge is broken, so we need to jump. rubick jumps first, but falls. it is a 60 foot fall, so it does pretty bad damage to rubick, but he manages to make it back up to his in record time. stil jumps over the gap with ease. guldur throws one end of some hemp rope over to stil to make the jump easier. guldur jumps and falls, but stil manages to stop him from hitting the floor. guldur drops the last 10 feet. raiann also falls.
407
-
408
-nix shouts to stil and asks him to go and look inside the room, tells the rest of the group to stop jumping off the bridge. stil looks in the room but can't see much accept some more dwarven runes. as stil doesn't read dwarvish so rubick jumps a second time and makes it. the wall reads "a secret never before told will part dumathoin's lips". there is also some rusty armour covered in cobwebs. rubick tells us all that he has an extreme fear of centipedes, and a staircase appears behind the wall. raiann, nix, and guldur manage to jump across the gap to join the others.
409
-
410
-down the stairs we find a corridor which heads north and south. we all head north. there are alcoves all along the walls. in one of them is a heap of gold. in the next alcove, there is a pile of rubies and gems. out of the gloom steps a very old dwarf with a staff that looks like a dragon. he greets us and asks if we want to come back later when he has tidied up. his name is barok clanghammer. he seems like a nice, truthful dwarf, but something about his manner comes across as not dwarven. he asks what brings us down here, and rubick shows him the talking stone. he warns us against magic items like this. nix tells him we are looking for the dragon, and the treasure. the dwarf asks us if the treasure belongs to us, nix casts disguise self to appear as lord neverember to try and convince barok that he is lord neverember, but he isn't very convincing.
411
-
412
-rubick and guldur try to explain that neverember swindled this treasure so it belongs to the city. the dwarf flickers and vanishes, then a dragon appears behind the group. the dragon asks raiann in dragonic if we are telling the truth, to which she says yes.
413
-
414
-the dragon hands raiann a large gem and asks us to take this gem to the city lords as evidence. the dragon will wait until a city official comes back to take ownership of the treasure.
415
-
416
-we head out of the vault, and at the front gate we meet barnibus blastwind, and saeth cromley along with 10 other city watch. barnibus greets us and tells us he would like our help with something. we say we need to go to the city official, and barnibus suggests we all go together.
417
-
418
-we travel to castle waterdeep with the guards and explain everything to lady silverhand, who is very pleased to hear of our discovery of the treasure. when we ask for a reward barnibus reveals that he has had a tail on us and then saeth starts reading out a list of laws we have broken. after all of that barnibus agrees that he is willing to overlook all the penalties and give us 10 percent of the treasure if we stop going on adventures.
419
-
420
-the tavern has been rebuilt, and renamed 'the heroes rest', and the sign is a silhouette of donaar.
421
-
422
-
423
-## character notes
424
-[character_sheet](character_sheet-nixolaus)
425
-
426
-##### the tavern
427
-costs 60 gold every week in expenses
428
-- 50 for maintenance, wages
429
-- 10 for guild
430
-
431
-every week we roll 1d100 + 10 - that's the base roll for the week of business
432
-we can spend coin to promote business
433
-
434
-## treasury
435
-| amount | from | reason |
436
-|------------------------------------------|--------------------------|---------------------------------|
437
-| 50 dragons (10 each) | volothamp 'volo' geddarm | finding his friend floon |
438
-| 300 gold | 4 paintings | found in secret room |
439
-| 500 gold | bars of silver | found in secret room |
440
-| 2 potions healing | treasure chest | found in sewer |
441
-| 16 gold | treasure chest | found in sewer |
442
-| 82 silver | treasure chest | found in sewer |
443
-| 250 copper | treasure chest | found in sewer |
444
-| 1 origami paper bird messenger | treasure chest | found in sewer |
445
-| trollskull manor | volo | finding floon |
446
-| 24 gold | treasure chest | after fight with mimic |
447
-| 267 silver | treasure chest | after fight with mimic |
448
-| small bronze bell | treasure chest | after fight with mimic |
449
-| small silver key wrapped in velvet cloth | treasure chest | after fight with mimic |
450
-| red gem with tiny gates within (raiann) | magic dias in blue alley | after fight with floating sword |
451
-| moon touched elvish scimitar (raiann) | floating platform | |
452
-| | | |
453
-| 500 gold | temple of inspired hands | destroying nimblewright |
454
-| adjustable stilts (guldur) | temple of inspired hands | destroying nimblewright |
455
-| 50K gold | barnibus | finding the treasure |
456
-
457
-
458
-#### spent
459
-| amount | to | reason |
460
-| --- | --- | --- |
461
-| 50 gold | potion keeper | potion of healing |
462
-| 100 gold | formal wear shop | opera |
463
-| 400 gold | gowns shop | opera |
464
-
465
-
466
-[spell list]: http://dnd5e.wikidot.com/spells:wizard
467
-[spellbook]: https://colinmarc.com/dndspells/gen.html?4000010000000000000200000000000000000000020800000000000000000000004000000020000000000000020400000000000
d_and_d/index.md
... ...
@@ -1,6 +0,0 @@
1
-# d&d
2
-
3
-- [character_sheet](character_sheet)
4
-- [dragon_heist](dragon_heist)
5
-- [undermountain](undermountain)
6
-- [dark_sun](dark_sun)
d_and_d/undermountain.md
... ...
@@ -1,220 +0,0 @@
1
-# undermountain
2
-
3
-## party
4
-| character | class | race | player |
5
-| --- | --- | --- | --- |
6
-| tana timbers | druid | gnome | maryam |
7
-| guldur despana | sorcerer | drow | steve |
8
-| snow of the mountain | rogue | tabaxi | dudley |
9
-| stil ar'yn | bloodhunter | half-elf | john |
10
-| valentino cinderfoot | cleric | halfling | jp |
11
-
12
-dm - conor
13
-
14
-## party notes
15
-### session 1
16
-
17
-start at the yawning portal, we all pay 1 gold piece to go down the portal. we are introduced as obaya uday from port nyanzaru, on behalf of the wizard wakanga to find magic items.
18
-
19
-everyone cheers as we are lowered down the portal. people are putting bets on us. it is a 140foot drop, takes a long time to get down. we are lowered into a 40ft square room, with sand on the ground and dusty, graffiti covered shields on the walls.
20
-
21
-we follow a corridor to another room. the walls are lined with door shaped recesses with carvings of demons. at the end of the room are stairs downward. one of the carvings is pointing across the room to a bas relief. when val investigates a door opens up. behind the door is a tunnel. it leads to a room which is slightly flooded. there is a damaged statue to the side, which gives off a dim purple glow. the head appears to be hollow, and twisted around.
22
-
23
-when val gets close to the statue an oil slick from around the statue detaches and approaches val
24
-
25
-- val: casts sacred flame for damage
26
-- tana: turns into a bear, attacks with claws and bites the ooze to kill it
27
-
28
-now we are closer to the statue and see that the head has been screwed a little bit. snow climbs on top of it and unscrews the head to find it full of melted wax, like a jack-o-lantern. snow looks around the room but doesn't notice anything unusual. we go back up the tunnel and venture down the stairs. we enter a dipped area with large pillars, and a giant snake skeleton. on the SE wall, we see the words "certain death this way" and an arrow pointing to the southern exit.
29
-
30
-we follow the death arrow into another corridor. at the end of the long corridor, around the corner we see a dead goblin and a headless statue of a nude woman surrounded by rubble. val digs through rubble and finds the head of the statue, it looks like two snakes. snow and val think that it is from the yuan-ti people. near the goblin are some pickaxes and tools, it looks like they were digging into the wall.
31
-
32
-snow find a couple of copper and a handful of human teeth in the goblin's pockets.
33
-
34
-we crawl down the tunnel to find _another_ nude woman statue with no head, and the head is the snake. at the end of the room is a single door and a double door. snow opens the single door to find another corridor with another door at the end. the double doors opens up to a larger tunnel heading to the east and the south, with candles floating at intervals.
35
-
36
-we head east and eventually come to an alcove with a carving of a bas relief sculpture of a heavyset man playing a harp. on the ground is a broken pole. stil approaches the sculpture and sees an inscription "gaze upon me with bronzed visage and secrets shall I reveal."
37
-
38
-tana squeezes into the alcove to stare at the sculpture but nothing happens. we decide to keep moving and come to another door, which opens to another corridor. we head south and go through another door. we enter a large room with a 30ft wide floor to ceiling map carved into the wall, and a 10ft square pit with a figure deep in the shadows of the 30ft deep pit. val calls down to the figure who asks to be helped up. snow drops down some hempen rope, the figure climbs up and thanks us for the help. he introduces himself as hallaeth garke, he is a revenant. he explains that his _friends_ came down several days ago, they had an argument and he was stabbed and tossed down the pit. he lifts his head and looks undead. guldur thinks he is telling the truth. he asks if we can help us find his _friends_ and he will give us the map they stole.
39
-
40
-snow looks at the carving on the wall, which is a really detailed map of undermountain and the 23 dungeon levels. next to third level is a button/bas relief of a flaming skull, 16 has one that looks like a comet, 23 (the bottom floor) has one with a tower which has a rune above it. each of these can be pressed.
41
-
42
-hallaeth walks over to the wall and presses the flaming skull, we hear a loud magical voice saying "gate access to skullport disabled". he presses the comet and the voice says "gate access to stardock from level 16 only". then he presses the tower and the voice says "gate access to halaster's tower from level 12 only". he goes over to the south wall, knocks on four different bricks, and another secret door opens. snow goes over to the other door in the room to find another corridor.
43
-
44
-hallaeth leads the way through the secret door. we reach the end of the corridor and another door, which is covered in gears and locks. we open the door and enter a large room with another statue. the statue is a life-size dwarf king, but from the neck is a deformed growth and his hands clasp a stone warhammer.
45
-
46
-stil notices that the king's hammer is a separate piece of stone. he turns it and the pedestal rises another 3 feet to expose a hollow with a gold replica of the circlet around the king's head. val takes the circlet and puts it on top of his pot helmet. we decide to take a short rest.
47
-
48
-val comes to learn that the circlet is a 'circlet of blasting'.
49
-
50
-suddenly we hear a roar from the next room, and three bugbears approach us.
51
-
52
-- snow: leaps at the closest bugbear with his claws but misses, then he jumps around the corner as guldur shouts for him to get out the way
53
-- guldur: casts lightening bolt and hits two of the bugbears, destroying one of them.
54
-- bugbear1: stomps around the corner and swings it's morning star at snow but misses
55
-- bugbear2: attempts to hit stil with his morning star
56
-- tana: casts entangle in the area around the bugbears but only one of them gets caught up in vines, then she changes into a bear
57
-- val: casts spiritual weapon which looks like a trident and appears behind one of the bugbears and causes damage. then he casts sacred flame but only does half damage
58
-- stil: attacks with his one of his shortsword for damage, then the other shortsword for more damage. he swings the first shortsword again to finish the bugbear off. when the bugbear dies a tiny brain thing appears on the floor
59
-- hallaeth: runs to the brain thing, which is an intellect devourer, and swipes at it with his fists and pounds it into the ground
60
-
61
-- snow: swipes his shortsword with sneak attack and puts it straight through the bugbear's eye socket, killing it.
62
-- guldur: casts firebolt at the next enemy he sees
63
-- tana: decides to charge the next enemy she sees
64
-(we hear a dull scream from the north corridor and some goblins appear)
65
-- val: makes it through the vines and casts guiding bolt on the first goblin but misses. then he moves the spirit weapon closer to him
66
-- stil: approaches the first goblin and attacks with his shortswords but only hits once for minor damage
67
-- hallaeth: he swings his fist at the first goblin but misses, on the second swing he kills it
68
-
69
-- snow: dashes around the vines then fires a shortbow at the next goblin, killing it
70
-- guldur: casts firebolt and the third goblin and destroys it
71
-- tana: still as a bear and runs towards the goblins
72
-- goblin 3: runs up to tana for an attack but tana bites down and kills it
73
-- goblin 4: fires an arrow at tana and hits for minor damage
74
-- goblin 5: also fires an arrow at tana for more damage
75
-- goblin 6: fires an arrow at stil but misses
76
-- val: moves his spirit weapon towards the goblins then casts sacred flame and kills the forth goblin
77
-- stil: approaches the next goblin and attacks with his shortswords and kills it
78
-- hallaeth: attacks one of the goblins
79
-
80
-- snow: dashes along the corridor to the furthest goblin and attack with his shortsword but misses
81
-- guldur: casts firebolt at the goblin snow just attacked. then tana and val take hit points which guldur gains
82
-- tana: still as a bear approaches the two goblins by snow and tries to bite one but misses, but claws the second one to death
83
-- goblin 7: slashes at snow, who dodges to take minor damage
84
-- goblin 8: fires an arrow at tana for damage
85
-- goblin 9: attacks haellath
86
-- goblin 10: attacks haellath
87
-- goblin 11: fires an arrow at snow, who dodges for minor damage
88
-- val: casts sacred flame at a goblin and kills it
89
-- stil: approaches a goblin and attacks with his shortswords and kills it, then turns to another goblin and kills it aswell
90
-- hallaeth: attacks a goblin but misses then kills it on the second hit
91
-
92
-- snow: dashes up to a goblin and swings his shortsword with sneak attack to hit, killing it
93
-- guldur: joins the fight instead of minding the door
94
-- tana: turns back into a gnome and casts poison spray at a goblin and destroys it
95
-- goblin 12: fires an arrow at tana for minor damage
96
-- goblin 13: fires an arrow at snow for minor damage
97
-- goblin 14: fires an arrow at guldur but misses
98
-- goblin 15: fires an arrow at stil for minor damage
99
-- goblin 16: fires an arrow at val for minor damage
100
-- val: runs up closer to the goblins
101
-- stil: fires his crossbow at the closest goblin and kills it, then again at the next goblin to kill it
102
-- hallaeth: swings both fists at a goblin but misses completely
103
-
104
-- snow: dashes along the wall to the corner then fires an arrow at a goblin but misses
105
-- guldur: casts firebolt at a goblin and kills it
106
-(snow hears a roar and thumping steps then two huge two-headed ettin come looming out of the darkness)
107
-- ettin 1: approaches snow
108
-- tana: hides back then casts poison spray at the ettin in front of snow for minor damage
109
-- goblin 17: fires an arrow at snow but misses
110
-- goblin 18: fires an arrow at hallaeth but misses
111
-- val: approaches the corner the casts guiding bolt at the closest ettin which causes major radiant damage
112
-- stil: approaches the nearest ettin and attacks with his shortswords causing damage on two strikes, missing on the third
113
-- hallaeth: approaches a goblin and misses on the first swing but hits and kills on the second
114
-
115
-- snow: matrix style runs up the wall and swings a shortsword at the ettin, slashing open it's neck then claws across it's face to finish it off
116
-- guldur: casts chromatic orb at the second ettin for major fire damage, then a third eye appears on his forehead
117
-- ettin 2: roars at the revenant and swings it's morning star, smashing hallaeth across the room. then he stomps up to stil and slashes him for damage with his battleaxe
118
-- goblin 19: hits guldur with an arrow, then scampers off
119
-- tana: summons a giant snake and orders it to attack the ettin
120
-- snake: wraps around the ettin, tightening around it
121
-- val: runs over to hallaeth to see how he is... he is definitely dead. he then casts spiritual weapon again for damage on the ettin
122
-- stil: attacks the ettin with his shortswords causing damage on two strikes
123
-
124
-- snow: feeling pumped after destroying the first ettin, runs up the snake around the second ettin and chops both heads off at the same time
125
-- guldur: casts chromatic orb and the final, sneaky goblin and completely melts him with acid
126
-
127
-### session 2
128
-anvil, hearth. stone hammer. se corner 2 dead/rotting carrion crawlers on top of stone slab.
129
-
130
-open door to the south, three statues. 8ft tall elf warriors, the 3rd one has gold spear. guldur sees it is a granite statue.
131
-
132
-stil takes a look at the gold spear. when he touches it his hand gets stuck to it
133
-
134
-- stil: manages to pull his arm free and invokes crimson rite
135
-- guldur: casts mirror image and then casts fog cloud
136
-- tana: holds her action
137
-- mimic: leans over to stil and opens up, but misses due to the fog cloud
138
-- val: moves into the fog, closer to the mimic
139
-- snow: fires an arrow in the direction of the mimic but misses
140
-
141
-- stil: attacks with his shortswords. first sword with his crimson rite, hits but does no damage. second same. third misses
142
-- guldur: breaks concentration to clear the fog, casts fire bolt at the mimic which hits for damage. a rush of wind then a small ball falls to the ground and stands up
143
-- tana: casts poison spray for damage
144
-- mimic: tries to bite stil again but misses
145
-- val: swipes with his warhammer for damage
146
-- snow: fires an arrow with sneak attack for damage
147
-
148
-- stil: uses his shortswords, first with crim rite which kills mimic
149
-
150
-behind where the mimic was is a crumbled statue which looks like the others
151
-
152
-- snow: swipes with his claws at the nearest stirge but misses
153
-- tana: changes into a bear and bites the nearest stirge for damage, then kills another one with claws
154
-- stil: swings with his shortswords, first misses, second kills it. moves closer to another and kill it
155
-- guldur: casts lightning bolt across the room and destroys 6 stirge. while he casts butterflies and petals float around him
156
-- val: moves and thunderwave and kills some more
157
-- stirge 1: attacks stil attaches but does no damage
158
-- stirge 2: attacks val attaches and starts draining blood
159
-- stirge 3: attacks snow attaches but does no damage
160
-- stirge 4: attacks tana (bear)
161
-
162
-- snow: detaches from stirge
163
-- tana: kills a stirge
164
-- stil: detaches the stirge from tana
165
-- guldur: casts fire bolt but misses, then the floor in front of him becomes slippery
166
-- val: swings at a stirge with hammer but misses
167
-- stirge 2: misses val
168
-- stirge 3: hits snow for damage and attaches
169
-- stirge 4: misses tana
170
-
171
-- snow: runs up to val and kills the stirge near him
172
-- tana: misses the stirge
173
-- stil: attacks stirge and kills it then attacks and kills the stirge on snow
174
-
175
-halleath returns while we're resting and leads us to the stairs down
176
-
177
-attack unsuspecting goblins
178
-
179
-- val: casts spirit weapon into the middle of the goblins and attacks one of them but misses
180
-- snow: jumps on the closest with his sword and kills it
181
-- guldur: casts fire bolt, moves further away
182
-- stil: shortswords kills one
183
-- tana: runs up and casts poison spray, kills one
184
-
185
-- val: moves up and uses warhammer, then attacks with spirit weapon to kill the last one
186
-
187
-we head down the tunnel and attempt to stealth past a serpent thing
188
-
189
-- snow: sneaks into the room and fires an arrow at the large grick but misses
190
-- guldur: casts slow but has no effect
191
-- grick: whips tail at snow for damage, latches on to val with tentacles and attacks with beak for major damage
192
-- val: casts call lightning on the grick for damage
193
-- tana: turns into a wolf and bites the grick for damage
194
-- stil: crimson rite
195
-
196
-- snow: shortsword swipe with sneak attack causes decent damage
197
-- guldur: casts slow which does effect
198
-- grick: moves??
199
-- val: uses the call lightning again for decent damage
200
-- tana: as a wolf tries to bite for damage
201
-- stil: using two lightning weapons hits to slice it in half
202
-
203
-- snow: moves up to look at an upside down throne with minatour armour
204
-- small grick 1: sneaks up behind guldur in the tunnel
205
-- guldur: casts mirror image, tries to move out of the grick's way but gets hit
206
-- val:
207
-- tana:
208
-
209
-
210
-## character notes
211
-[character_sheet](character_sheet-snow)
212
-
213
-## treasury
214
-| amount | from | to | reason |
215
-| -------------------------- | ------------------- | --- | ---------- |
216
-| yellow gem worth 50 gold | statue on ceiling | stil | thieving |
217
-| blue gem worth 10 gold | statue on ceiling | val | thieving |
218
-| greataxe | statue on ceiling | val | thieving |
219
-| | | | |
220
-
documentation/gollum.md
... ...
@@ -1,98 +0,0 @@
1
-# gollum
2
-
3
-## install and enable
4
-```
5
-gem install gollum
6
-gem install github-markdown #required for tables
7
-```
8
-
9
-navigate to wiki dir and run gollum
10
-```
11
-gollum --css --h1-title
12
-```
13
-- using custom css file and setting first h1 header as page title
14
-- see [gollum config][] docs for options
15
-- look at [omnigollum][] for user auth
16
-- [gollum reverse proxy][]
17
-
18
-## running as a service
19
-enter the following in `/etc/systemd/system/gollum-personal.service`
20
-```
21
-[Unit]
22
-Description=Personal Gollum wiki server
23
-After=network.target
24
-
25
-[Service]
26
-Type=simple
27
-ExecStart=/home/pyratebeard/.gem/ruby/2.5.0/bin/gollum --show-all --live-preview --h1-title --port 4666 --css "/path/to/your/repo"
28
-Restart=on-abort
29
-
30
-[Install]
31
-WantedBy=multi-user.target
32
-```
33
-
34
-## installing gollum on jump-test
35
-https://github.com/gollum/gollum # use --bare
36
-
37
-- configure omnigollum https://github.com/arr2036/omnigollum
38
-- using azuread https://github.com/AzureAD/omniauth-azure-activedirectory
39
-
40
-### steps
41
-- to enable [git server][]
42
- - install git (duh!)
43
- - create 'git' user
44
- ```
45
- adduser git
46
- mkdir ~git/.ssh
47
- chmod 700 ~git/.ssh
48
- touch ~git/.ssh/authorized_keys
49
- chmod 600 ~git/.ssh/authorized_keys
50
- ```
51
-- mkdir 'wiki' dir
52
- ```
53
- mkdir /wiki
54
- chown git. /wiki
55
- ```
56
-- create git repo - [getting git on server][]
57
- ```
58
- su - git
59
- cd /wiki
60
- git init --bare --shared
61
- ```
62
-- clone repo and initial commit (on local machine)
63
- ```
64
- git clone git@gitserver:/wiki wiki
65
- cd wiki/
66
- echo "# wiki" > README.md
67
- git add README.md
68
- git commit -m "Initial commit"
69
- git push -u origin master
70
- ```
71
-- install gollum
72
- ```
73
- apt install ruby ruby-dev build-essential zlib1g-dev libicu-dev
74
- gem install gollum
75
- ```
76
-
77
- ```
78
- yum group install "Development Tools"
79
- yum install ruby ruby-devel libicu libicu-devel zlib zlib-devel
80
- gem install gollum
81
- ```
82
-- enable gollum as a service
83
- ```
84
- vi /etc/systemd/system/gollum.service
85
-
86
- [Service]
87
- ExecStart=/usr/local/bin/gollum --show-all "/wiki"
88
- ```
89
-- allow traffic
90
- ```
91
- iptables -I INPUT -p tcp --dport 4567 -j ACCEPT -m comment --comment "Allow access to wiki"
92
- ```
93
-
94
-[gollum config]: https://github.com/gollum/gollum#configuration
95
-[omnigollum]: https://github.com/arr2036/omnigollum/blob/master/config.rb.example
96
-[gollum reverse proxy]: https://gist.github.com/spinpx/c46ea0b24157ca5f731f
97
-[git server]: https://git-scm.com/book/en/v2/Git-on-the-Server-Setting-Up-the-Server
98
-[getting git on server]: https://git-scm.com/book/en/v2/Git-on-the-Server-Getting-Git-on-a-Server
documentation/index.md
... ...
@@ -1,6 +0,0 @@
1
-# documentation
2
-
3
-- [gollum](gollum)
4
-- [pandoc](pandoc)
5
-- [vimwiki](vimwiki)
6
-- [latex](latex)
documentation/latex.md
... ...
@@ -1 +0,0 @@
1
-# latex
documentation/pandoc.md
... ...
@@ -1,8 +0,0 @@
1
-# pandoc
2
-
3
-## curl webpages to man ([xero's trick][])
4
-```
5
-curl http://webpage.com | pandoc -s -f html -t man | man -l -
6
-```
7
-
8
-[xero's trick]: https://nixers.net/showthread.php?tid=1679&pid=15789&highlight=pandoc#pid15789
documentation/vimwiki.md
... ...
@@ -1,31 +0,0 @@
1
-# vimwiki
2
-
3
-## commands
4
-| command | description |
5
-| --- | --- |
6
-| `=` | increase header |
7
-| `-` | decrease header |
8
-| `C-space` | check todo box |
9
-| `glh` | step down list |
10
-| `gll` | step up list |
11
-| `glr` | refresh numbered list |
12
-| `\w\t` | day diary in new tab |
13
-| `\w\i` | on diary index generate new links |
14
-| `\wt` | open wiki index in tab (only after mapping `nmap <Leader>wt <Plug>VimwikiTabnewLink`) |
15
-| `\wi` | open diary index |
16
-
17
-## syntax highlighting
18
-```bash
19
-echo hello friend
20
-```
21
-
22
-## convert to html
23
-pandoc -s -f markdown -t html -o uofu/azure_ad_requirements.html uofu/azure_ad_requirements.md && firefox uofu/azure_ad_requirements
24
-.html
25
-
26
-## anchors
27
- use [title] (#anchor#subanchor)
28
- i'm using :tags: under a #ref header to jump to links in page
29
- - switch to [pandoc markdown][]
30
-
31
-[pandoc markdown]: http://pandoc.org/MANUAL.html#pandocs-markdown
edt/git.md
... ...
@@ -0,0 +1,105 @@
1
+# git
2
+
3
+undo merge that hasn't been pushed
4
+```zsh
5
+git reset --merge HEAD~1
6
+```
7
+
8
+roll back hard
9
+```
10
+git reset --hard <commit/tag>
11
+```
12
+
13
+force push of a previous commit
14
+```
15
+git push -f origin <commit_id>:<branch>
16
+```
17
+
18
+delete remote branch
19
+```
20
+git push --delete origin <branch>
21
+```
22
+
23
+reset local branch after a forced-update (above)
24
+```
25
+git fetch
26
+git reset origin/<branch> --hard
27
+```
28
+
29
+renaming branch and updating remote
30
+```
31
+git branch -m old-name new-name
32
+git push origin --set-upstream new-name
33
+git push origin :old-name
34
+```
35
+
36
+set username for [single repo][]
37
+```
38
+git config user.username 'name'
39
+```
40
+
41
+set signing key for local repo
42
+```
43
+git config user.signingkey <id>
44
+```
45
+
46
+[signing][] commits
47
+```
48
+git commit -S -m 'msg'
49
+```
50
+
51
+compare diff between two commits
52
+```
53
+git diff <commit>...<commit>
54
+```
55
+
56
+stash
57
+```
58
+git stash
59
+git stash show
60
+```
61
+
62
+unstash
63
+```
64
+git stash pop
65
+```
66
+
67
+add remote origin
68
+```
69
+git remote add origin git@gitserver/path/to/repo
70
+```
71
+
72
+add multiple push repos
73
+```
74
+git remote set-url --add --push origin git@gitserver/original/repo
75
+git remote set-url --add --push origin https://gitserver/another/repo
76
+```
77
+
78
+archive branch
79
+```
80
+git archive --format zip --outpu /path/to/output.zip <branch>
81
+```
82
+
83
+## using `hub`
84
+### pull requests
85
+```
86
+hub pr list
87
+hub pr checkout <num>
88
+```
89
+
90
+## helpful links
91
+
92
+[making a pull request][]
93
+
94
+[branching and rebasing][]
95
+
96
+[branching model][]
97
+
98
+[merging and rebasing][]
99
+
100
+[making a pull request]: https://www.atlassian.com/git/tutorials/making-a-pull-request
101
+[branching and rebasing]: https://git-scm.com/book/en/v2/Git-Branching-Rebasing
102
+[branching model]: https://nvie.com/posts/a-successful-git-branching-model/
103
+[single repo]: https://help.github.com/articles/setting-your-username-in-git/
104
+[merging and rebasing]: https://www.atlassian.com/git/tutorials/merging-vs-rebasing
105
+[signing]: https://git-scm.com/book/en/v2/Git-Tools-Signing-Your-Work
edt/irc.md
... ...
@@ -0,0 +1,49 @@
1
+# irc
2
+
3
+[mode list][]
4
+
5
+## freenode
6
+use the following to search channels
7
+```
8
+/msg alis LIST *searchterm*
9
+```
10
+
11
+## irc.highway.net #ebooks
12
+```
13
+@search Author/Title
14
+/dcc get Search
15
+```
16
+
17
+locate correct file
18
+```
19
+!user filename
20
+/dcc get username
21
+```
22
+
23
+## ssl port
24
+```
25
+/connect -tls <irc_server> <port>
26
+```
27
+
28
+## irc.c
29
+* `j <chan>` - join channel
30
+* `l <chan>` - leave channel
31
+* `m <user>` - private message
32
+* `ctrl-n` - next window
33
+* `ctrl-p` - previous window
34
+* `r <cmd>` - send raw
35
+ * `r names`
36
+ * `r whois`
37
+
38
+### testing
39
+* miniircd (lxc container)
40
+ * get ip (10.0.3.133)
41
+* ircc (lxc container)
42
+ * `./irc -n guest -u guest -s 10.0.3.133`
43
+
44
+## irssi
45
+### colour table
46
+
47
+use 256 color tables 1-7 preceded with `x` (bg) or `X` foreground, and then a,b,c etc. i.e `%x7g`
48
+
49
+[mode list]: https://madirc.net/irc-channelmodes.html
edt/mail.md
... ...
@@ -0,0 +1,15 @@
1
+```
2
+mail
3
+```
4
+* `+` open next mail
5
+* `-` open prev mail
6
+* `d` delete mail
7
+ * `d 6 9` delete mail 6 & 9
8
+ * `d 4-40` delete mails 4 to 40
9
+ * `d*` delete all
10
+* `reply`
11
+* `h` print messages
12
+
13
+use csv list in ~/.forward to forward mails to external addr. or check /etc/aliases ([stackexchange][])
14
+
15
+[stackexchange]: https://unix.stackexchange.com/a/26670
edt/mutt.md
... ...
@@ -0,0 +1,47 @@
1
+# mutt
2
+
3
+search, limit and tagging [patterns][]
4
+* limit new (unread) messages using `~U`
5
+* limit messages either to: or cc: using ~C (useful for mailing lists)
6
+
7
+## index format
8
+default index format is (taken from [muttrc man][])
9
+```
10
+"%4C %Z %{%b %d} %-15.15L (%?l?%4l&%4c?) %s"
11
+```
12
+
13
+current format is
14
+```
15
+"%Z %-30.30L %M %s"
16
+```
17
+_message status, sender, hidden msgs (in thread), subject_
18
+
19
+## threads
20
+collapse threads using `Esc-v`
21
+
22
+[rebind collapse-thread][] to '-'
23
+```
24
+bind index - collapse-thread
25
+```
26
+
27
+configure threads to be collapsed when mailbox opened ([thread_ref][])
28
+```
29
+folder-hook . "push <collapse-all>\n"
30
+```
31
+
32
+## attachments
33
+download directory macro ([macro source][])
34
+```
35
+macro attach W "<save-entry><bol>~/tmp/<eol>"
36
+```
37
+
38
+pipe pdf
39
+```
40
+| zathura -
41
+```
42
+
43
+[patterns]: http://www.mutt.org/doc/manual/#patterns
44
+[muttrc man]: https://linux.die.net/man/5/muttrc
45
+[rebind collapse-thread]: https://heipei.net/2009/09/10/mutt-threading-like-a-pro/
46
+[thread_ref]: http://compgroups.net/comp.mail.mutt/collapsing-threads-by-default/2550437
47
+[macro source]: https://superuser.com/questions/695541/where-does-mutt-save-attachment
edt/tmux.md
... ...
@@ -0,0 +1,12 @@
1
+# tmux
2
+
3
+all commands used with `prefix`
4
+
5
+| command | description |
6
+| --- | --- |
7
+| `s` | switch tmux sessions |
8
+| `r` | reload config |
9
+| `$` | rename session |
10
+
11
+
12
+
edt/vim.md
... ...
@@ -0,0 +1,227 @@
1
+# vim
2
+
3
+## copy contents to/from files
4
+to copy the contents into a file
5
+ ```
6
+ :r <filename>
7
+ ```
8
+or
9
+ ```
10
+ :"qY # yank out of first file
11
+ :"qP # put into second file
12
+ ```
13
+or read range of lines
14
+ ```
15
+ :r! sed -n <n>,<m>p /path/to/file.md
16
+ ```
17
+
18
+to copy the contents to a new file
19
+ ```
20
+ :<n>,<m> w <filename>
21
+ ```
22
+ where `<n>` and `<m>` are numbers or symbols that designate range of lines
23
+
24
+
25
+## text wrap
26
+(wrap to column)
27
+wrap current line
28
+```
29
+gqq
30
+```
31
+
32
+wrap entire file
33
+```
34
+gqG
35
+```
36
+
37
+wrap paragraph using visual selection
38
+```
39
+V}gq
40
+```
41
+
42
+also use visual or visual block with `gq`
43
+
44
+## spell
45
+[using_spellcheck][]
46
+check spelling
47
+```
48
+Spell
49
+```
50
+
51
+move to word
52
+```
53
+]s [s
54
+```
55
+
56
+and see results
57
+```
58
+z=
59
+```
60
+
61
+turn off highlighting
62
+```
63
+set nospell
64
+```
65
+
66
+## buffers
67
+- buffer [faq][]
68
+- using [vanilla vim][]
69
+- [buffers over tabs][]
70
+- open buffer
71
+ ```
72
+ :e <filename>
73
+ :new
74
+ ```
75
+- view buffers
76
+ ```
77
+ :ls
78
+ ```
79
+- switch buffers
80
+ ```
81
+ :buffer <num>
82
+ ```
83
+- unload buffer
84
+ ```
85
+ :bd <num>
86
+ ```
87
+
88
+## incrementing numbers
89
+post on [reddit][]
90
+
91
+select several lines containing '0' and type `g<C-a>`
92
+
93
+## split
94
+- movement
95
+ ```
96
+ <Ctrl>-w [h,j,k,l]
97
+ <Ctrl>-w w
98
+ ```
99
+- rotate
100
+ ```
101
+ <Ctrl>-w r
102
+ ```
103
+- orientate
104
+ ```
105
+ <Ctrl>-w J
106
+ <Ctrl>-w L
107
+ ```
108
+- sizing
109
+ ```
110
+ <Ctrl>-w - # decrease height by 1 line
111
+ <Ctrl>-w + # increase height by 1 line
112
+ <Ctrl>-w < # change width by 1 line to the left
113
+ <Ctrl>-w > # change width by 1 line to the right
114
+ <Ctrl>-w 10 - # decrease height by 10 lines, etc...
115
+ ```
116
+
117
+## diff
118
+```
119
+:windo diffthis
120
+:windo diffoff
121
+```
122
+
123
+## list recent doc
124
+```
125
+:ol[dfiles]
126
+```
127
+
128
+## replace
129
+- change inner word
130
+ ```
131
+ ciw
132
+ ```
133
+
134
+## delete
135
+- until but not <char>
136
+ ```
137
+ dt <char>
138
+ ```
139
+- until and <char>
140
+ ```
141
+ df <char>
142
+ ```
143
+
144
+## visual
145
+- visual select to end of line excluding whitespace
146
+```
147
+vg_
148
+```
149
+
150
+## using the shell
151
+[vim and the shell][]
152
+
153
+- run current buffer as script
154
+```bash
155
+:!./%
156
+```
157
+
158
+- in script, highlight line and switch to command mode by pressing `:`
159
+```bash
160
+:'<,'>w !bash -
161
+```
162
+
163
+```python
164
+:'<,'>w !python -
165
+```
166
+
167
+## directory of current buffer
168
+open new file in dir of current buffer
169
+```
170
+:e %:h/filename
171
+```
172
+
173
+save file as new file in dir of current buffer
174
+```
175
+:sav %:h/filename
176
+```
177
+
178
+## substitute on multiple lines
179
+https://stackoverflow.com/a/19996145
180
+```
181
+:6,10s/<search_string>/<replace_string>/g | 14,18&&
182
+```
183
+
184
+## reverse substitute
185
+* adds a tab to the beginning of all lines that don't start with `Pattern`
186
+```
187
+:%v/^Pattern/s/^/\t/
188
+```
189
+
190
+## sort visual block
191
+https://vim.fandom.com/wiki/How_to_sort_using_visual_blocks
192
+```
193
+:'<,'>sort /\ze\%V/
194
+```
195
+
196
+## move current line (scroll-cursor)
197
+`z<enter>` or `zt` - move to top of buffer
198
+`z.` or `zz` - move to centre of buffer
199
+`z-` or `zb` - move to bottom of buffer
200
+
201
+(zEnter, z., and z- puts the cursor in the first non blank column. zt, zz, and zb leaves the cursor in the current column)
202
+
203
+```
204
+:help scroll-cursor
205
+```
206
+
207
+## yanking into a register
208
+`"qp` paste the contents of the register to the current cursor position
209
+`i` enter insert mode at the begging of the pasted line
210
+`^` add the missing motion to return to the front of the line
211
+`<escape>` return to visual mode
212
+`"qyy` yank this new modified macro back into the q register
213
+`dd` delete the pasted register from the file your editing
214
+
215
+## editing the register visually
216
+`:let @q='` open the q register
217
+`<cntl-r><cntl-r>q` paste the contents of the q register into the buffer
218
+`^` add the missing motion to return to the front of the line
219
+`'` add a closing quote
220
+`<enter>` finish editing the macro
221
+
222
+[using_spellcheck]: https://www.linux.com/learn/using-spell-checking-vim
223
+[faq]: http://vim.wikia.com/wiki/Vim_buffer_FAQ
224
+[vanilla vim]: https://stackoverflow.com/questions/16082991/vim-switching-between-files-rapidly-using-vanilla-vim-no-plugins
225
+[buffers over tabs]: https://stackoverflow.com/questions/26708822/why-do-vim-experts-prefer-buffers-over-tabs
226
+[reddit]: https://www.reddit.com/r/vim/comments/a1lvb1/til_gca_for_creating_a_column_of_incrementing/
227
+[vim and the shell]: https://vimways.org/2019/vim-and-the-shell/
edt/vimwiki.md
... ...
@@ -0,0 +1,31 @@
1
+# vimwiki
2
+
3
+## commands
4
+| command | description |
5
+| --- | --- |
6
+| `=` | increase header |
7
+| `-` | decrease header |
8
+| `C-space` | check todo box |
9
+| `glh` | step down list |
10
+| `gll` | step up list |
11
+| `glr` | refresh numbered list |
12
+| `\w\t` | day diary in new tab |
13
+| `\w\i` | on diary index generate new links |
14
+| `\wt` | open wiki index in tab (only after mapping `nmap <Leader>wt <Plug>VimwikiTabnewLink`) |
15
+| `\wi` | open diary index |
16
+
17
+## syntax highlighting
18
+```bash
19
+echo hello friend
20
+```
21
+
22
+## convert to html
23
+pandoc -s -f markdown -t html -o uofu/azure_ad_requirements.html uofu/azure_ad_requirements.md && firefox uofu/azure_ad_requirements
24
+.html
25
+
26
+## anchors
27
+ use [title] (#anchor#subanchor)
28
+ i'm using :tags: under a #ref header to jump to links in page
29
+ - switch to [pandoc markdown][]
30
+
31
+[pandoc markdown]: http://pandoc.org/MANUAL.html#pandocs-markdown
fonts/envy_code_r.eot
... ...
Binary files a/fonts/envy_code_r.eot and /dev/null differ
fonts/envy_code_r.otf
... ...
Binary files a/fonts/envy_code_r.otf and /dev/null differ
fonts/envy_code_r.svg
... ...
@@ -1,2432 +0,0 @@
1
-<?xml version="1.0" standalone="no"?>
2
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
-<svg>
4
-<metadata>
5
-Created by FontForge 20090914 at Thu Oct 13 00:15:04 2016
6
- By www-data
7
-Copyright (c) 2006-2008 by Envy Technologies Limited. All rights reserved.
8
-</metadata>
9
-<defs>
10
-<font id="EnvyCodeR" horiz-adv-x="1100" >
11
- <font-face
12
- font-family="Envy Code R"
13
- font-weight="400"
14
- font-stretch="normal"
15
- units-per-em="2048"
16
- panose-1="2 0 5 9 0 0 0 2 0 4"
17
- ascent="1638"
18
- descent="-410"
19
- x-height="1106"
20
- cap-height="1422"
21
- bbox="-4 -632.005 1106.35 2054"
22
- underline-thickness="102"
23
- underline-position="-154"
24
- unicode-range="U+0020-U+FB06"
25
- />
26
-<missing-glyph
27
- />
28
- <glyph glyph-name=".notdef"
29
- />
30
- <glyph glyph-name="space" unicode=" "
31
- />
32
- <glyph glyph-name="space" unicode="&#xa0;"
33
- />
34
- <glyph glyph-name="exclam" unicode="!"
35
-d="M474 1422h158v-948h-158v948zM474 316h158v-316h-158v316z" />
36
- <glyph glyph-name="quotedbl" unicode="&#x22;"
37
-d="M158 1422h158v-474h-158v474zM632 1422h158v-474h-158v474z" />
38
- <glyph glyph-name="numbersign" unicode="#"
39
-d="M474 790v-158h158v158h-158zM158 790v158h158v316h158v-316h158v316h158v-316h158v-158h-158v-158h158v-158h-158v-316h-158v316h-158v-316h-158v316h-158v158h158v158h-158z" />
40
- <glyph glyph-name="dollar" unicode="$"
41
-d="M474 158h-316v158h316v316c-39.333 0 -78 9 -116 27s-71.833 41.833 -101.5 71.5s-53.5 63.5 -71.5 101.5s-27 76.667 -27 116s9 78 27 116s41.833 71.833 71.5 101.5s63.5 53.5 101.5 71.5s76.667 27 116 27v158h158v-158h316v-158h-316v-316
42
-c39.333 0 78 -9.16699 116 -27.5s71.833 -42.333 101.5 -72s53.5 -63.5 71.5 -101.5s27 -76.333 27 -115c0 -40 -9 -79 -27 -117s-41.833 -71.667 -71.5 -101s-63.5 -53 -101.5 -71s-76.667 -27 -116 -27v-158h-158v158zM316 948c0 -20 4.5 -39.333 13.5 -58
43
-s21 -35.5 36 -50.5s31.833 -27 50.5 -36s38 -13.5 58 -13.5v316c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58zM790 474c0 20 -4.5 39.333 -13.5 58s-21 35.5 -36 50.5s-31.833 27 -50.5 36s-38 13.5 -58 13.5v-316
44
-c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58z" />
45
- <glyph glyph-name="percent" unicode="%"
46
-d="M158 158h-158l790 1106h158zM474 395c0 32.667 6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5s63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001
47
-s-6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001zM0 1027
48
-c0 32.667 6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5s63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001s-6.16699 -63.334 -18.5 -92.001
49
-s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001zM158 1027c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23
50
-s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56zM632 395c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23
51
-s-40.667 -7.66699 -56 -23s-23 -34 -23 -56z" />
52
- <glyph glyph-name="ampersand" unicode="&#x26;"
53
-d="M695 107c-41.333 -34 -87.335 -60.333 -138.002 -79s-104.667 -28 -162 -28c-65.333 -0 -122.666 12.333 -171.999 37s-90.5 58.5 -123.5 101.5s-57.833 93.333 -74.5 151s-25 119.167 -25 184.5c0 44.667 5.83301 87.667 17.5 129s28.334 79.833 50.001 115.5
54
-s47.5 68 77.5 97s63.333 53.5 100 73.5c-25.333 30 -46.166 63.167 -62.499 99.5s-24.5 75.5 -24.5 117.5c0 43.333 8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25s84.333 -7.16699 123 -21.5
55
-s72.5 -34.5 101.5 -60.5s51.667 -57.167 68 -93.5s24.166 -76.166 23.499 -119.499c-0.666992 -29.333 -7 -56.166 -19 -80.499s-27.667 -46.666 -47 -66.999s-40.666 -38.5 -63.999 -54.5s-46.333 -30.167 -69 -42.5s-44 -22.5 -64 -30.5l-48 -19l249 -448
56
-c6 15.333 12.5 33.666 19.5 54.999s13.5 43.166 19.5 65.499s11.167 44.666 15.5 66.999s6.83301 42.166 7.5 59.499h158c-8.66699 -59.333 -18 -110 -28 -152s-20.333 -78.167 -31 -108.5s-21.334 -56.166 -32.001 -77.499s-20.667 -40.333 -30 -57l121 -237h-182z
57
-M394.998 158c40.667 0 79.668 7.49902 117.001 22.499s75.666 38.5 114.999 70.5l-288 508c-25.333 -12 -49 -27.667 -71 -47s-41.167 -41.333 -57.5 -66s-29.166 -51.667 -38.499 -81s-14 -59.666 -14 -90.999c0 -43.333 4.16699 -84.166 12.5 -122.499
58
-s21.833 -71.833 40.5 -100.5s43.167 -51.334 73.5 -68.001s67.166 -25 110.499 -25zM315.999 1106c0 -20 5.5 -41.499 16.5 -64.499s30.167 -54.167 57.5 -93.5c22 2.66699 47.333 10.5 76 23.5s55.834 28.333 81.501 46s47.167 36.667 64.5 57s25.666 39.166 24.999 56.499
59
-c-0.666992 22 -5.33398 41.167 -14.001 57.5s-20.5 30.166 -35.5 41.499s-32.167 19.833 -51.5 25.5s-40 8.5 -62 8.5s-42.5 -4.16699 -61.5 -12.5s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5z" />
60
- <glyph glyph-name="quotesingle" unicode="'"
61
-d="M474 1422h158v-474h-158v474z" />
62
- <glyph glyph-name="parenleft" unicode="("
63
-d="M790 -316c-39.333 0 -78.5 14.333 -117.5 43s-76 67 -111 115s-67.5 103.833 -97.5 167.5s-56 130.667 -78 201s-39.167 141.666 -51.5 213.999s-18.5 141.5 -18.5 207.5s6.16699 135.167 18.5 207.5s29.5 143.666 51.5 213.999s48 137.333 78 201s62.5 119.5 97.5 167.5
64
-s72 86.333 111 115s78.167 43 117.5 43v-158c-26.667 -13.333 -52.834 -34.666 -78.501 -63.999s-50.167 -64.5 -73.5 -105.5s-45 -86.5 -65 -136.5s-37.333 -102 -52 -156s-26.167 -109 -34.5 -165s-12.5 -110.333 -12.5 -163s4.16699 -107 12.5 -163
65
-s19.833 -111 34.5 -165s32 -106 52 -156s41.667 -95.5 65 -136.5s47.833 -76.167 73.5 -105.5s51.834 -50.666 78.501 -63.999v-158z" />
66
- <glyph glyph-name="parenright" unicode=")"
67
-d="M316 -158c26.667 13.333 52.834 34.666 78.501 63.999s50.167 64.5 73.5 105.5s45 86.5 65 136.5s37.333 102 52 156s26.167 109 34.5 165s12.5 110.333 12.5 163s-4.16699 107 -12.5 163s-19.833 111 -34.5 165s-32 106 -52 156s-41.667 95.5 -65 136.5
68
-s-47.833 76.167 -73.5 105.5s-51.834 50.666 -78.501 63.999v158c39.333 0 78.5 -14.333 117.5 -43s76 -67 111 -115s67.5 -103.833 97.5 -167.5s56 -130.667 78 -201s39.167 -141.666 51.5 -213.999s18.5 -141.5 18.5 -207.5s-6.16699 -135.167 -18.5 -207.5
69
-s-29.5 -143.666 -51.5 -213.999s-48 -137.333 -78 -201s-62.5 -119.5 -97.5 -167.5s-72 -86.333 -111 -115s-78.167 -43 -117.5 -43v158z" />
70
- <glyph glyph-name="asterisk" unicode="*"
71
-d="M237 1185l237 -79v316h158v-316l237 79l79 -158l-237 -79l158 -237l-158 -79l-158 237l-158 -237l-158 79l158 237l-237 79z" />
72
- <glyph glyph-name="plus" unicode="+"
73
-d="M474 632h-316v158h316v316h158v-316h316v-158h-316v-316h-158v316z" />
74
- <glyph glyph-name="comma" unicode=","
75
-d="M395 -316c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999
76
-s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158
77
-c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
78
- <glyph glyph-name="hyphen" unicode="-"
79
-d="M158 790h790v-158h-790v158z" />
80
- <glyph glyph-name="period" unicode="."
81
-d="M316 158c0 22 4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999 -50
82
-s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5s-42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5z" />
83
- <glyph glyph-name="slash" unicode="/"
84
-d="M790 1422h158l-632 -1580h-158z" />
85
- <glyph glyph-name="zero" unicode="0"
86
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154
87
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632zM553 158c32.667 0 63.3301 6.16699 91.9971 18.5s53.834 29.333 75.501 51
88
-s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v415l-474 -375v-40c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5zM552.996 1264c-32.667 0 -63.3301 -6.16699 -91.9971 -18.5
89
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-390l474 375v15c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5z" />
90
- <glyph glyph-name="one" unicode="1"
91
-d="M316 1264h39c16.667 0 32.167 3 46.5 9s26.833 14.333 37.5 25s19.167 23.167 25.5 37.5s9.5 29.833 9.5 46.5v40h158v-1264h158v-158h-474v158h158v948h-158v158z" />
92
- <glyph glyph-name="two" unicode="2"
93
-d="M632 1422c43.333 0 84.1641 -8.33496 122.497 -25.002s71.833 -39.334 100.5 -68.001s51.334 -62.167 68.001 -100.5s25 -79.166 25 -122.499v-158c0 -29.333 -9 -58.333 -27 -87s-41.833 -56.667 -71.5 -84s-63.5 -54.166 -101.5 -80.499l-116 -78.5l-116 -77
94
-c-38 -25.333 -71.833 -50.5 -101.5 -75.5s-53.5 -50 -71.5 -75s-27 -49.833 -27 -74.5v-158h632v-158h-790v356c0 29.333 9 58.666 27 87.999s41.833 58.333 71.5 87s63.5 56.834 101.5 84.501l116 81.5l116 78c38 25.333 71.833 49.833 101.5 73.5s53.5 46.334 71.5 68.001
95
-s27 42.5 27 62.5v127c0 22 -4.16699 42.5 -12.5 61.5s-19.666 35.667 -33.999 50s-31 25.666 -50 33.999s-39.5 12.5 -61.5 12.5h-158c-22 0 -42.5 -4.16699 -61.5 -12.5s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5h-158
96
-c0 43.333 8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25h158z" />
97
- <glyph glyph-name="three" unicode="3"
98
-d="M158 158l395 -0.00585938c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v158
99
-h237c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-395v158h395
100
-c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154c0 -65.333 -14.5 -125.333 -43.5 -180s-67.5 -100 -115.5 -136c48 -36 86.5 -81.5 115.5 -136.5s43.5 -114.833 43.5 -179.5c0 -54.667 -10.333 -106 -31 -154
101
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395v158z" />
102
- <glyph glyph-name="four" unicode="4"
103
-d="M632 1422h158v-948h158v-158h-158v-316h-158v316h-474v158zM632 474v632l-316 -632h316z" />
104
- <glyph glyph-name="five" unicode="5"
105
-d="M158 158l395 -0.00195312c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-395v790
106
-h790v-158h-632v-474h237c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395v158z" />
107
- <glyph glyph-name="six" unicode="6"
108
-d="M553 0c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154c0 60.667 1.5 117.334 4.5 170.001s9.66699 103.834 20 153.501s25.833 99.5 46.5 149.5s48.5 102.833 83.5 158.5s78.5 115.667 130.5 180
109
-s115 136.166 189 215.499h158l-319.5 -408c-74.333 -96.667 -119.833 -193.667 -136.5 -291c32 21.333 66.333 37.833 103 49.5s75.334 17.5 116.001 17.5c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154
110
-s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31zM316 395c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5
111
-s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5
112
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001z" />
113
- <glyph glyph-name="seven" unicode="7"
114
-d="M948 1264l-474 -1264h-157l469 1264h-628v158h790v-158z" />
115
- <glyph glyph-name="eight" unicode="8"
116
-d="M158 395c0 32 4.16699 63.167 12.5 93.5s20 59 35 86s32.833 52 53.5 75s43 43.5 67 61.5c-24 18 -46.333 38.5 -67 61.5s-38.5 47.833 -53.5 74.5s-26.667 55.167 -35 85.5s-12.5 61.833 -12.5 94.5c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5
117
-s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154c0 -32.667 -4.33301 -64.167 -13 -94.5s-20.5 -58.833 -35.5 -85.5s-32.833 -51.5 -53.5 -74.5s-43 -43.5 -67 -61.5
118
-c24 -18 46.333 -38.5 67 -61.5s38.5 -48 53.5 -75s26.833 -55.667 35.5 -86s13 -61.5 13 -93.5c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501
119
-s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154zM316 395c0 -32.667 6.16504 -63.334 18.498 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501
120
-s18.5 59.334 18.5 92.001s-5 63.334 -15 92.001s-24.833 53.834 -44.5 75.501s-44.334 38.667 -74.001 51s-64.167 18.5 -103.5 18.5s-73.833 -6.16699 -103.5 -18.5s-54.334 -29.333 -74.001 -51s-34.5 -46.834 -44.5 -75.501s-15 -59.334 -15 -92.001zM315.998 1027
121
-c0 -32.667 5.00195 -63.334 15.002 -92.001s24.833 -53.834 44.5 -75.501s44.334 -38.667 74.001 -51s64.167 -18.5 103.5 -18.5s73.833 6.16699 103.5 18.5s54.334 29.333 74.001 51s34.5 46.834 44.5 75.501s15 59.334 15 92.001s-6.16699 63.334 -18.5 92.001
122
-s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001z" />
123
- <glyph glyph-name="nine" unicode="9"
124
-d="M553 1422c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154c0 -60.667 -1.5 -117.334 -4.5 -170.001s-9.66699 -103.834 -20 -153.501s-25.833 -99.5 -46.5 -149.5s-48.5 -102.833 -83.5 -158.5
125
-s-78.5 -115.667 -130.5 -180s-115 -136.166 -189 -215.499h-158l319.5 408c74.333 96.667 119.833 193.667 136.5 291c-32 -21.333 -66.333 -37.833 -103 -49.5s-75.334 -17.5 -116.001 -17.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501
126
-s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154s10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31zM790 1027c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
127
-s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001s6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5
128
-s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001z" />
129
- <glyph glyph-name="colon" unicode=":"
130
-d="M316 790c0 22 4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999 -50
131
-s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5s-42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5zM316 158c0 22 4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5
132
-s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999 -50s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5s-42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999
133
-s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5z" />
134
- <glyph glyph-name="semicolon" unicode=";"
135
-d="M316 790c0 22 4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999 -50
136
-s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5s-42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5zM395 -316c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23
137
-c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999
138
-s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
139
- <glyph glyph-name="less" unicode="&#x3c;"
140
-d="M768 1264v-114l-439 -439l439 -439v-114h-114l-496 496v114l496 496h114z" />
141
- <glyph glyph-name="equal" unicode="="
142
-d="M0 474v158h948v-158h-948zM0 790v158h948v-158h-948z" />
143
- <glyph glyph-name="greater" unicode="&#x3e;"
144
-d="M272 1264l496 -496v-114l-496 -496h-114v114l439 439l-439 439v114h114z" />
145
- <glyph glyph-name="question" unicode="?"
146
-d="M158 1027c0 54.667 9.5 105.998 28.5 153.998s45.667 89.833 80 125.5s75.833 63.834 124.5 84.501s102.667 31 162 31s113.333 -9.5 162 -28.5s90.167 -45.667 124.5 -80s61 -75.833 80 -124.5s28.5 -102.667 28.5 -162c0 -52.667 -7.83301 -95.5 -23.5 -128.5
147
-s-35.167 -61.167 -58.5 -84.5s-48.666 -44.333 -75.999 -63s-52.666 -39.667 -75.999 -63s-42.833 -51.666 -58.5 -84.999s-23.5 -76.333 -23.5 -129h-158c0 66 7.83301 120 23.5 162s35.167 76.833 58.5 104.5s48.666 50.834 75.999 69.501s52.666 37.5 75.999 56.5
148
-s42.833 40.667 58.5 65s23.5 56.166 23.5 95.499c0 158 -79 237 -237 237s-237 -79 -237 -237v-79h-158v79zM474 315.998h158v-316h-158v316z" />
149
- <glyph glyph-name="at" unicode="@"
150
-d="M474 -316c-59.333 0 -117.333 13.499 -174 40.499s-107.334 62.833 -152.001 107.5s-80.5 95.334 -107.5 152.001s-40.5 114.667 -40.5 174v790c0 59.333 13.5 117.333 40.5 174s62.833 107.334 107.5 152.001s95.334 80.5 152.001 107.5s114.667 40.5 174 40.5
151
-s117.333 -13.5 174 -40.5s107.334 -62.833 152.001 -107.5s80.5 -95.334 107.5 -152.001s40.5 -114.667 40.5 -174v-790h-316c-56 0 -103.833 11.667 -143.5 35s-72.334 53.833 -98.001 91.5s-44.5 80 -56.5 127s-18 94.167 -18 141.5c0 50.667 6.5 99.667 19.5 147
152
-s32.5 89.333 58.5 126s58.833 66.167 98.5 88.5s86.167 33.5 139.5 33.5h158c0 39.333 -9 78 -27 116s-41.833 71.833 -71.5 101.5s-63.5 53.5 -101.5 71.5s-76.667 27 -116 27s-78 -9 -116 -27s-71.833 -41.833 -101.5 -71.5s-53.5 -63.5 -71.5 -101.5
153
-s-27 -76.667 -27 -116v-790c0 -39.333 9 -78 27 -116s41.833 -71.833 71.5 -101.5s63.5 -53.5 101.5 -71.5s76.667 -27 116 -27h316v-158h-316zM790 315.999v474.002h-158c-20 0 -39.333 -5 -58 -15s-35.5 -24.833 -50.5 -44.5s-27 -44.334 -36 -74.001
154
-s-13.5 -64.167 -13.5 -103.5s4.5 -73.833 13.5 -103.5s21 -54.334 36 -74.001s31.833 -34.5 50.5 -44.5s38 -15 58 -15h158z" />
155
- <glyph glyph-name="A" unicode="A"
156
-d="M158 1027c0 54.667 10.3311 106 30.998 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-1027h-158v632h-474v-632h-158v1027z
157
-M789.998 790l0.00390625 237c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
158
-s-18.5 -59.334 -18.5 -92.001v-237h474z" />
159
- <glyph glyph-name="B" unicode="B"
160
-d="M158 1422l395 0.00195312c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154c0 -65.333 -14.5 -125.333 -43.5 -180s-67.5 -100 -115.5 -136c48 -36 86.5 -81.5 115.5 -136.5s43.5 -114.833 43.5 -179.5
161
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395v1422zM553 790.002c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001
162
-s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237zM553 157.998c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001
163
-s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237z" />
164
- <glyph glyph-name="C" unicode="C"
165
-d="M556 1264c-34 0 -65.6689 -6.16309 -95.002 -18.4961s-54.666 -29.333 -75.999 -51s-38.166 -46.834 -50.499 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.166 -53.834 50.499 -75.501s46.666 -38.667 75.999 -51
166
-s61 -18.5 95 -18.5c28 0 54.333 3.83301 79 11.5s47.167 18.5 67.5 32.5s38 30.667 53 50s26.5 40.666 34.5 63.999h158c-9.33301 -45.333 -25.666 -87.333 -48.999 -126s-52.166 -72 -86.499 -100s-73.166 -50 -116.499 -66s-90 -24 -140 -24
167
-c-56 0 -108.167 10.333 -156.5 31s-90.5 48.834 -126.5 84.501s-64.167 77.5 -84.5 125.5s-30.5 99.333 -30.5 154v632c0 54.667 10.167 106 30.5 154s48.5 89.833 84.5 125.5s78.167 63.834 126.5 84.501s100.5 31 156.5 31c50 0 96.833 -8 140.5 -24
168
-s82.5 -38.167 116.5 -66.5s62.667 -61.833 86 -100.5s39.666 -80.334 48.999 -125.001h-158c-8 22.667 -19.5 43.667 -34.5 63s-32.5 36 -52.5 50s-42.5 25 -67.5 33s-51.5 12 -79.5 12z" />
169
- <glyph glyph-name="D" unicode="D"
170
-d="M158 1422l395 0.00195312c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395
171
-v1422zM553 158.002c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237
172
-v-1106h237z" />
173
- <glyph glyph-name="E" unicode="E"
174
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-474h632v-158h-790v1422z" />
175
- <glyph glyph-name="F" unicode="F"
176
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-632h-158v1422z" />
177
- <glyph glyph-name="G" unicode="G"
178
-d="M790 158c0 -20 -8.16992 -39.3301 -24.5029 -57.9971s-36.5 -35.5 -60.5 -50.5s-49.833 -27 -77.5 -36s-52.5 -13.5 -74.5 -13.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632
179
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c48 0 93.333 -8 136 -24s81 -38.167 115 -66.5s62.833 -61.833 86.5 -100.5s40.167 -80.334 49.5 -125.001h-164c-8 22.667 -19.333 43.667 -34 63s-31.667 36 -51 50
180
-s-40.666 25 -63.999 33s-48 12 -74 12c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
181
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 8.66699 91 26s53.834 38.333 75.501 63s38.834 50.5 51.501 77.5s19 50.5 19 70.5v237h-158v158h316v-790h-158v158z" />
182
- <glyph glyph-name="H" unicode="H"
183
-d="M158 1422h158v-632h474v632h158v-1422h-158v632h-474v-632h-158v1422z" />
184
- <glyph glyph-name="I" unicode="I"
185
-d="M158 158h316v1106h-316v158h790v-158h-316v-1106h316v-158h-790v158z" />
186
- <glyph glyph-name="J" unicode="J"
187
-d="M158 474h157.998v-79c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158v-1027
188
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v79z" />
189
- <glyph glyph-name="K" unicode="K"
190
-d="M316 761l454 661h178l-474 -711l474 -711h-180l-452 666v-666h-158v1422h158v-661z" />
191
- <glyph glyph-name="L" unicode="L"
192
-d="M158 1422h158v-1264h632v-158h-790v1422z" />
193
- <glyph glyph-name="M" unicode="M"
194
-d="M790 1106l-237 -414l-237 414v-1106h-158v1422h158l237 -474l237 474h158v-1422h-158v1106z" />
195
- <glyph glyph-name="N" unicode="N"
196
-d="M158 0v1422h158l474 -1052v1052h158v-1422h-158l-474 1052v-1052h-158z" />
197
- <glyph glyph-name="O" unicode="O"
198
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154
199
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632zM553 1264c-32.667 0 -63.334 -6.16699 -92.001 -18.5
200
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5
201
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5z" />
202
- <glyph glyph-name="P" unicode="P"
203
-d="M316 0l-158 0.00195312v1422h395c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v-632z
204
-M553 790.002c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237z" />
205
- <glyph glyph-name="Q" unicode="Q"
206
-d="M692 25c-44.667 -16.667 -91 -25.001 -139 -25.001c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501
207
-s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -57.333 -11.333 -111 -34 -161s-53.334 -93 -92.001 -129l132 -263h-170zM553 1264c-32.667 0 -63.333 -6.16406 -92 -18.4971
208
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c24.667 0 47.334 3.33301 68.001 10l-153 306h170
209
-l108 -217c13.333 19.333 24 40.666 32 63.999s12 48 12 74v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5z" />
210
- <glyph glyph-name="R" unicode="R"
211
-d="M643 642c208 -426 311.996 -639.999 311.996 -641.999h-181c-205.333 419.333 -308 630 -308 632h-150v-632h-158v1422h395c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154c0 -46.667 -7.66699 -91 -23 -133
212
-s-36.666 -80 -63.999 -114s-59.666 -63 -96.999 -87s-77.666 -41 -120.999 -51zM552.996 790.001c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001
213
-s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237z" />
214
- <glyph glyph-name="S" unicode="S"
215
-d="M316 1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154
216
-s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395v158h395c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001
217
-s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154s10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501
218
-s99.333 31 154 31h395v-158h-395c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001z" />
219
- <glyph glyph-name="T" unicode="T"
220
-d="M474 1264h-316v158h790v-158h-316v-1264h-158v1264z" />
221
- <glyph glyph-name="U" unicode="U"
222
-d="M158 1422h157.998v-1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158
223
-v-1027c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v395v632z" />
224
- <glyph glyph-name="V" unicode="V"
225
-d="M316 1422l237 -1040l237 1040h158l-316 -1422h-158l-316 1422h158z" />
226
- <glyph glyph-name="W" unicode="W"
227
-d="M790 1422h158v-1422h-158l-237 474l-237 -474h-158v1422h158v-1106l237 414l237 -414v1106z" />
228
- <glyph glyph-name="X" unicode="X"
229
-d="M553 904l230 518h166l-310 -711l310 -711h-166l-230 517l-230 -517h-165l309 711l-310 711h166z" />
230
- <glyph glyph-name="Y" unicode="Y"
231
-d="M474 472l-316 950h158l237 -711l237 711h158l-316 -948v-474h-158v472z" />
232
- <glyph glyph-name="Z" unicode="Z"
233
-d="M158 158l609 1106h-609v158h790v-158l-597 -1106h597v-158h-790v158z" />
234
- <glyph glyph-name="bracketleft" unicode="["
235
-d="M316 1580h474v-158h-316v-1580h316v-158h-474v1896z" />
236
- <glyph glyph-name="backslash" unicode="\"
237
-d="M948 -158h-158l-632 1580h158z" />
238
- <glyph glyph-name="bracketright" unicode="]"
239
-d="M790 -316h-474v158h316v1580h-316v158h474v-1896z" />
240
- <glyph glyph-name="asciicircum" unicode="^"
241
-d="M458 1422h190l307 -632h-181l-221 442l-221 -442h-182z" />
242
- <glyph glyph-name="underscore" unicode="_"
243
-d="M0 -316h1106v-158h-1106v158z" />
244
- <glyph glyph-name="grave" unicode="`"
245
-d="M158 1422v158l474 -237v-158z" />
246
- <glyph glyph-name="a" unicode="a"
247
-d="M474 0c-43.333 0 -84.165 8.33203 -122.498 24.999s-71.833 39.334 -100.5 68.001s-51.334 62.167 -68.001 100.5s-25 79.166 -25 122.499s8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25h316v79
248
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v158h237c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-474z
249
-M474.001 473.999c-22 0 -42.5 -4.16895 -61.5 -12.502s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5s4.16699 -42.5 12.5 -61.5s19.666 -35.667 33.999 -50s31 -25.666 50 -33.999s39.5 -12.5 61.5 -12.5h316v316h-316z" />
250
- <glyph glyph-name="b" unicode="b"
251
-d="M158 1422l158 0.000976562v-395c25.333 18.667 53 34.667 83 48c48 20.667 99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5
252
-s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31c-30 12.667 -57.667 28.334 -83 47.001v-78h-158v1422zM316 720.001l0.000976562 -325.001c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51
253
-s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5
254
-s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.834 -46.834 -51.501 -75.501z" />
255
- <glyph glyph-name="c" unicode="c"
256
-d="M316 395c0 -32.667 7 -63.332 21 -91.999s32.5 -53.834 55.5 -75.501s49.667 -38.667 80 -51s61.833 -18.5 94.5 -18.5c26 0 50.667 3.83301 74 11.5s44.666 18.5 63.999 32.5s36.333 30.667 51 50s26 40.666 34 63.999h158
257
-c-9.33301 -45.333 -25.833 -87.166 -49.5 -125.499s-52.5 -71.666 -86.5 -99.999s-72.333 -50.5 -115 -66.5s-88 -24 -136 -24c-54.667 0 -106.334 10.333 -155.001 31s-91.334 48.834 -128.001 84.501s-65.834 77.5 -87.501 125.5s-32.5 99.333 -32.5 154v316
258
-c0 54.667 10.833 106 32.5 154s50.834 89.833 87.501 125.5s79.334 63.834 128.001 84.501s100.334 31 155.001 31c48 0 93.333 -8 136 -24s81 -38.167 115 -66.5s62.833 -61.833 86.5 -100.5s40.167 -80.334 49.5 -125.001h-158c-8 22.667 -19.333 43.667 -34 63
259
-s-31.667 36 -51 50s-40.666 25 -63.999 33s-48 12 -74 12c-32.667 0 -64.167 -6.16699 -94.5 -18.5s-57 -29.333 -80 -51s-41.5 -46.834 -55.5 -75.501s-21 -59.334 -21 -92.001v-316z" />
260
- <glyph glyph-name="d" unicode="d"
261
-d="M948 0l-158 -0.000976562v78c-25.333 -18.667 -53 -34.334 -83 -47.001c-48 -20.667 -99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154
262
-s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31c30 -13.333 57.667 -29.333 83 -48v395h158v-1422zM772 802.999c-12.667 28.667 -29.833 53.835 -51.5 75.502s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5
263
-s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5
264
-s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v325z" />
265
- <glyph glyph-name="e" unicode="e"
266
-d="M316 395c0 -32.667 6.16406 -63.333 18.4971 -92s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h395v-158h-395c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316
267
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-237h-632v-79zM315.997 632.001h474.004v79
268
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79z" />
269
- <glyph glyph-name="f" unicode="f"
270
-d="M158 948l158.001 0.000976562v79c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31h237v-158h-237c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
271
-s-18.5 -59.334 -18.5 -92.001v-79h316v-158h-316v-790h-158v790h-158v158z" />
272
- <glyph glyph-name="g" unicode="g"
273
-d="M316 -316l236.999 -0.00292969c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31
274
-s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c44.667 0 87 -7 127 -21s76.667 -33.667 110 -59v80h158v-1185
275
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158zM315.999 394.997c0 -32.667 6.16699 -63.3311 18.5 -91.998s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51
276
-s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 57 21.5 89v336c-1.33301 31.333 -8.5 60.833 -21.5 88.5s-30.167 51.667 -51.5 72s-46 36.5 -74 48.5s-58 18 -90 18c-32.667 0 -63.334 -6.16699 -92.001 -18.5
277
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316z" />
278
- <glyph glyph-name="h" unicode="h"
279
-d="M790 711c0 32.667 -6.16699 63.333 -18.5 92s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-32 0 -62.167 -6 -90.5 -18s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1422h158v-396
280
-c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711z" />
281
- <glyph glyph-name="i" unicode="i"
282
-d="M474 948h-158v158h316v-1106h-158v948zM474 1422h158v-158h-158v158z" />
283
- <glyph glyph-name="j" unicode="j"
284
-d="M158 -158h237c158 0 237 79 237 237v869h-158v158h316v-1106c0 -39.333 -9 -78 -27 -116s-41.833 -71.833 -71.5 -101.5s-63.5 -53.5 -101.5 -71.5s-76.667 -27 -116 -27h-316v158zM632 1422h158v-158h-158v158z" />
285
- <glyph glyph-name="k" unicode="k"
286
-d="M316 632h38l400 474h194l-453 -553l453 -553h-194l-400 474h-38v-474h-158v1422h158v-790z" />
287
- <glyph glyph-name="l" unicode="l"
288
-d="M474 1264h-158v158h316v-1422h-158v1264z" />
289
- <glyph glyph-name="m" unicode="m"
290
-d="M474 869h-1.00098c0.666992 52.667 -25.333 79 -78 79s-78.667 -26.333 -78 -79h-1v-869h-158v1106h197c24 0 46.667 -4 68 -12s40.5 -19 57.5 -33s31.5 -30.667 43.5 -50s20.333 -40.333 25 -63h7c4.66699 22.667 12.834 43.667 24.501 63s26 36 43 50s36.333 25 58 33
291
-s44.5 12 68.5 12c27.333 0 53 -5.16699 77 -15.5s45 -24.333 63 -42s32.167 -38.5 42.5 -62.5s15.5 -49.667 15.5 -77v-909h-158v869c0 52.667 -26.333 79 -79 79s-79 -26.333 -79 -79v-869h-158v869z" />
292
- <glyph glyph-name="n" unicode="n"
293
-d="M553 948c-32 0 -62.167 -6.00098 -90.5 -18.001s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1106h158v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501
294
-s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5z" />
295
- <glyph glyph-name="o" unicode="o"
296
-d="M158 711c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154
297
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316zM316 395c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
298
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
299
-s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316z" />
300
- <glyph glyph-name="p" unicode="p"
301
-d="M158 1106l158 0.00195312v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5
302
-s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31c-44.667 0 -87 7 -127 21s-76.667 33.333 -110 58v-553h-158v1580zM553 948.002c-32 0 -62.333 -5.00195 -91 -15.002s-53.834 -24.833 -75.501 -44.5s-38.834 -44.334 -51.501 -74.001s-19 -64.167 -19 -103.5v-316
303
-c0 -39.333 6.33301 -73.833 19 -103.5s29.834 -54.334 51.501 -74.001s46.834 -34.5 75.501 -44.5s59 -15 91 -15c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316
304
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5z" />
305
- <glyph glyph-name="q" unicode="q"
306
-d="M790 79c-33.333 -24.667 -70 -44.002 -110 -58.002s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5
307
-s77.5 63.834 125.5 84.501s99.333 31 154 31c44.667 0 87 -7 127 -21s76.667 -33.667 110 -59v80h158v-1580h-158v553zM316 394.998c0 -32.667 6.16699 -63.332 18.5 -91.999s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5
308
-c32 0 62.333 5 91 15s53.834 24.833 75.501 44.5s38.834 44.334 51.501 74.001s19 64.167 19 103.5v316c0 39.333 -6.33301 73.833 -19 103.5s-29.834 54.334 -51.501 74.001s-46.834 34.5 -75.501 44.5s-59 15 -91 15c-32.667 0 -63.334 -6.16699 -92.001 -18.5
309
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316z" />
310
- <glyph glyph-name="r" unicode="r"
311
-d="M158 0l0.000976562 1106h158v-160c11.333 20.667 30 40.5 56 59.5s54.5 36 85.5 51s62.333 27 94 36s58.5 13.5 80.5 13.5c48 0 89.167 -8 123.5 -24s63.666 -38.167 87.999 -66.5s44.166 -61.833 59.499 -100.5s27.666 -80.334 36.999 -125.001h-164l-21.5 63
312
-c-6.33301 19.333 -14.333 36 -24 50s-22 25 -37 33s-35.5 12 -61.5 12c-21.333 0 -44 -4.16699 -68 -12.5s-47.667 -20 -71 -35s-45.666 -32.667 -66.999 -53s-40.166 -42.166 -56.499 -65.499s-29.333 -47.833 -39 -73.5s-14.5 -51.5 -14.5 -77.5v-631h-158z" />
313
- <glyph glyph-name="s" unicode="s"
314
-d="M948 1106v-158h-395c-39.333 0 -73.833 -4.5 -103.5 -13.5s-54.334 -21 -74.001 -36s-34.5 -31.833 -44.5 -50.5s-15 -38 -15 -58s5 -39.333 15 -58s24.833 -35.5 44.5 -50.5s44.334 -27 74.001 -36s64.167 -13.5 103.5 -13.5c26 0 54 -2.33301 84 -7s59.667 -12 89 -22
315
-s57.333 -23.167 84 -39.5s50.167 -36.166 70.5 -59.499s36.666 -50.333 48.999 -81s18.5 -65.667 18.5 -105c0 -40 -9.5 -79 -28.5 -117s-45.667 -72 -80 -102s-75.833 -54 -124.5 -72s-102.667 -27 -162 -27h-395v158h395c39.333 0 73.833 4.5 103.5 13.5
316
-s54.334 21 74.001 36s34.5 32.167 44.5 51.5s15 39 15 59c0 19.333 -5 38.333 -15 57s-24.833 35.334 -44.5 50.001s-44.334 26.5 -74.001 35.5s-64.167 13.5 -103.5 13.5c-26 0 -54 2.33301 -84 7s-59.667 12.167 -89 22.5s-57.333 23.666 -84 39.999
317
-s-50.167 36.166 -70.5 59.499s-36.666 50.5 -48.999 81.5s-18.5 66.167 -18.5 105.5s9.5 78 28.5 116s45.667 71.833 80 101.5s75.833 53.5 124.5 71.5s102.667 27 162 27h395z" />
318
- <glyph glyph-name="t" unicode="t"
319
-d="M158 1106l157.999 0.000976562v316h158v-316h316v-158h-316v-553c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h237v-158h-237c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501
320
-s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v553h-158v158z" />
321
- <glyph glyph-name="u" unicode="u"
322
-d="M316 395c0 -32.667 6.16406 -63.335 18.4971 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 6.33301 91 19s53.834 29.834 75.501 51.501s38.834 46.834 51.501 75.501s19 59 19 91v711h158v-1106h-158v79
323
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0z" />
324
- <glyph glyph-name="v" unicode="v"
325
-d="M948 1106l-316 -1106h-158l-316 1106h158l237 -869l237 869h158z" />
326
- <glyph glyph-name="w" unicode="w"
327
-d="M632 237c0 -52.667 26.334 -79 79.001 -79s79 26.333 79 79v869h158v-909c0 -27.333 -5.16699 -53 -15.5 -77s-24.5 -44.833 -42.5 -62.5s-39 -31.667 -63 -42s-49.667 -15.5 -77 -15.5c-24 0 -46.833 4 -68.5 12s-41 19 -58 33s-31.333 30.667 -43 50
328
-s-19.834 40.333 -24.501 63h-7c-4.66699 -22.667 -13 -43.667 -25 -63s-26.5 -36 -43.5 -50s-36.167 -25 -57.5 -33s-44 -12 -68 -12c-27.333 0 -53 5.16699 -77 15.5s-44.833 24.333 -62.5 42s-31.667 38.5 -42 62.5s-15.5 49.667 -15.5 77v909h158v-869h1
329
-c-0.666992 -52.667 25.333 -79 78 -79s78.667 26.333 78 79h1v395h158v-395z" />
330
- <glyph glyph-name="x" unicode="x"
331
-d="M553 706l224 400h173l-311 -553l311 -553h-173l-224 398l-225 -398h-173l311 553l-311 553h173z" />
332
- <glyph glyph-name="y" unicode="y"
333
-d="M316 395c0 -32.667 6.16504 -63.335 18.498 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 60.333 21.5 99v711h158v-1185
334
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158h237c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158
335
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0z" />
336
- <glyph glyph-name="z" unicode="z"
337
-d="M760 948h-602v158h790v-158l-603 -790h603v-158h-790v158z" />
338
- <glyph glyph-name="braceleft" unicode="{"
339
-d="M516 732c0 -14 2.5 -26.999 7.5 -38.999s11.833 -22.5 20.5 -31.5s19 -16.167 31 -21.5s24.667 -8 38 -8c11.333 0 17.333 -11.167 18 -33.5s-2.66602 -51.5 -9.99902 -87.5s-17.166 -76.833 -29.499 -122.5s-25.666 -91.834 -39.999 -138.501l-42.5 -136
340
-c-14 -44 -25.667 -82 -35 -114c0 -20 8.66699 -39.333 26 -58s38.333 -35.5 63 -50.5s50.5 -27 77.5 -36s50.5 -13.5 70.5 -13.5h237v-158h-237c-59.333 0 -113.333 9 -162 27s-90.167 41.833 -124.5 71.5s-61 63.5 -80 101.5s-28.5 76.667 -28.5 116
341
-c13.333 78.667 28.166 149 44.499 211s31.833 116.5 46.5 163.5l37.5 119.5c10.333 32.667 16.166 59.167 17.499 79.5s-3 35.166 -13 44.499s-28 14 -54 14h-237v158h237c26 0 42.333 4.33301 49 13s7 21.834 1 39.501s-16 39.667 -30 66s-28.333 57 -43 92
342
-s-27.667 74.5 -39 118.5s-17 92.333 -17 145c0 39.333 9.5 78 28.5 116s45.667 71.833 80 101.5s75.833 53.5 124.5 71.5s102.667 27 162 27h237v-158h-237c-39.333 0 -73.833 -4.5 -103.5 -13.5s-54.334 -21 -74.001 -36s-34.5 -31.833 -44.5 -50.5s-15 -38 -15 -58
343
-c3.33301 -15.333 9.66602 -36.5 18.999 -63.5l31 -88.5l34.5 -98l31.5 -90c9.33301 -26.667 16.333 -48.667 21 -66s5.33398 -26 2.00098 -26c-13.333 0 -26 -2.66699 -38 -8s-22.333 -12.5 -31 -21.5s-15.5 -19.5 -20.5 -31.5s-7.5 -25 -7.5 -39z" />
344
- <glyph glyph-name="bar" unicode="|"
345
-d="M474 1580h158v-1896h-158v1896z" />
346
- <glyph glyph-name="braceright" unicode="}"
347
-d="M590 732c0 14 -2.49805 26.999 -7.49805 38.999s-11.833 22.5 -20.5 31.5s-19 16.167 -31 21.5s-24.667 8 -38 8c-3.33301 0 -2.66602 8.66699 2.00098 26s11.667 39.333 21 66l31.5 90l34.5 98l31 88.5c9.33301 27 15.666 48.167 18.999 63.5c0 20 -5 39.333 -15 58
348
-s-24.833 35.5 -44.5 50.5s-44.334 27 -74.001 36s-64.167 13.5 -103.5 13.5h-237v158h237c59.333 0 113.333 -9 162 -27s90.167 -41.833 124.5 -71.5s61 -63.5 80 -101.5s28.5 -76.667 28.5 -116c0 -52.667 -5.66699 -101 -17 -145s-24.333 -83.5 -39 -118.5
349
-s-29 -65.667 -43 -92s-24 -48.333 -30 -66s-5.83301 -30.834 0.5 -39.501s22.833 -13 49.5 -13h237v-158h-237c-26.667 0 -44.834 -4.66699 -54.501 -14s-13.834 -24.166 -12.501 -44.499s7.16602 -46.833 17.499 -79.5l37.5 -119.5c14.667 -47 30.167 -101.5 46.5 -163.5
350
-s31.166 -132.333 44.499 -211c0 -39.333 -9.5 -78 -28.5 -116s-45.667 -71.833 -80 -101.5s-75.833 -53.5 -124.5 -71.5s-102.667 -27 -162 -27h-237v158h237c20 0 43.5 4.5 70.5 13.5s52.833 21 77.5 36s45.667 31.833 63 50.5s26 38 26 58l-35.5 114l-42 136
351
-c-14.333 46.667 -27.666 92.834 -39.999 138.501s-22.166 86.5 -29.499 122.5s-10.666 65.167 -9.99902 87.5s6.66699 33.5 18 33.5c13.333 0 26 2.66699 38 8s22.333 12.5 31 21.5s15.5 19.5 20.5 31.5s7.5 25 7.5 39z" />
352
- <glyph glyph-name="asciitilde" unicode="~"
353
-d="M948 948c0 -26.667 -0.333984 -56.6709 -1.00098 -90.0039s-3.16699 -67.666 -7.5 -102.999s-11.333 -69.833 -21 -103.5s-23.334 -63.667 -41.001 -90s-40 -47.5 -67 -63.5s-60.167 -24 -99.5 -24c-26.667 0 -51 6.83301 -73 20.5s-42.5 31.167 -61.5 52.5
354
-s-36.667 44.833 -53 70.5l-46.5 73.5c-14.667 23.333 -28.667 44 -42 62s-26.666 30.333 -39.999 37c-12 6 -22.167 4.16699 -30.5 -5.5s-15.5 -24 -21.5 -43s-10.667 -41.167 -14 -66.5s-6 -50.666 -8 -75.999s-3.33301 -49.166 -4 -71.499s-1 -40.166 -1 -53.499h-158
355
-c0 26 0.333008 55.833 1 89.5s3.16699 68.167 7.5 103.5s11.333 69.833 21 103.5s23.334 63.667 41.001 90s40 47.5 67 63.5s60.167 24 99.5 24c26 0 50.167 -7 72.5 -21s43 -31.833 62 -53.5s36.667 -45.5 53 -71.5l46.5 -74c14.667 -23.333 28.667 -43.833 42 -61.5
356
-s26.666 -29.167 39.999 -34.5c12 -5.33301 22.333 -2.83301 31 7.5s16 25 22 44s10.667 41 14 66s5.83301 50 7.5 75s2.83398 48.5 3.50098 70.5s1 39.667 1 53h158z" />
357
- <glyph glyph-name="exclamdown" unicode="&#xa1;"
358
-d="M474 948h158v-948h-158v948zM474 1422h158v-316h-158v316z" />
359
- <glyph glyph-name="cent" unicode="&#xa2;"
360
-d="M356 52c-29.333 16.667 -56.168 37.166 -80.501 61.499s-45.166 51.166 -62.499 80.499s-30.833 61 -40.5 95s-14.5 69.333 -14.5 106v316c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31
361
-c6 0 12.167 -0.166992 18.5 -0.5s12.5 -0.833008 18.5 -1.5l36 160h170l-47 -211c48 -28 89 -64.667 123 -110s56.667 -96.333 68 -153h-164c-6.66699 18.667 -15.5 36 -26.5 52s-23.5 30.667 -37.5 44l-162 -728h3c26 0 50.667 3.83301 74 11.5s44.666 18.5 63.999 32.5
362
-s36.333 30.667 51 50s26 40.666 34 63.999h164c-9.33301 -45.333 -25.833 -87.166 -49.5 -125.499s-52.5 -71.666 -86.5 -99.999s-72.333 -50.5 -115 -66.5s-88 -24 -136 -24c-6.66699 0 -13 0.166992 -19 0.5s-12.333 0.833008 -19 1.5l-35 -160h-170zM315.998 394.999
363
-c0 -36 7.00195 -68.8311 21.002 -98.498s32.667 -55.5 56 -77.5l162 729h-2c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316z" />
364
- <glyph glyph-name="sterling" unicode="&#xa3;"
365
-d="M632 1422c39.333 0 78 -9 116 -27s71.833 -41.833 101.5 -71.5s53.5 -63.5 71.5 -101.5s27 -76.667 27 -116h-158c0 20 -4.5 39.333 -13.5 58s-21 35.5 -36 50.5s-32 27 -51 36s-38.167 13.5 -57.5 13.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36
366
-s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58v-316h316v-158h-316v-474h474v-158h-790v158h158v474h-158v158h158v316c0 39.333 9 78 27 116s41.833 71.833 71.5 101.5s63.5 53.5 101.5 71.5s76.667 27 116 27z" />
367
- <glyph glyph-name="currency" unicode="&#xa4;"
368
-d="M1027 1066l-141 -141c19.333 -32 34.5 -65.5 45.5 -100.5s16.5 -72.5 16.5 -112.5s-5.5 -77.833 -16.5 -113.5s-26.167 -68.834 -45.5 -99.501l141 -141l-120 -120l-141 141c-32 -20 -65.5 -35.333 -100.5 -46s-72.5 -16 -112.5 -16s-77.833 5.33301 -113.5 16
369
-s-68.834 26 -99.501 46l-141 -141l-120 120l141 141c-20 30.667 -35.333 63.834 -46 99.501s-16 73.5 -16 113.5s5.33301 77.5 16 112.5s26 68.5 46 100.5l-141 141l120 120l141 -141c30.667 19.333 63.834 34.5 99.501 45.5s73.5 16.5 113.5 16.5s77.5 -5.5 112.5 -16.5
370
-s68.5 -26.167 100.5 -45.5l141 141zM316 712c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501
371
-s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001z" />
372
- <glyph glyph-name="yen" unicode="&#xa5;"
373
-d="M158 316h318v158h-318v158h289l-289 790h176l219 -625l218 625h177l-290 -790h290v-158h-318v-158h318v-158h-318v-158h-154v158h-318v158z" />
374
- <glyph glyph-name="brokenbar" unicode="&#xa6;"
375
-d="M474 474h158v-790h-158v790zM474 1580h158v-790h-158v790z" />
376
- <glyph glyph-name="section" unicode="&#xa7;"
377
-d="M948 1422l-0.00195312 -157.999h-395c-39.333 0 -73.833 -4.5 -103.5 -13.5s-54.334 -21 -74.001 -36s-34.5 -31.833 -44.5 -50.5s-15 -38 -15 -58s5 -39.333 15 -58s24.833 -35.5 44.5 -50.5s44.334 -27 74.001 -36s64.167 -13.5 103.5 -13.5c26 0 54 -2.33301 84 -7
378
-s59.667 -12 89 -22s57.333 -23.167 84 -39.5s50.167 -36.166 70.5 -59.499s36.666 -50.333 48.999 -81s18.5 -65.667 18.5 -105c0 -44 -11.167 -86.5 -33.5 -127.5s-54.166 -76.833 -95.499 -107.5c18.667 -12.667 35.834 -27 51.501 -43s29.167 -33.833 40.5 -53.5
379
-s20.333 -41.334 27 -65.001s10 -49.5 10 -77.5c0 -40 -9.5 -79 -28.5 -117s-45.667 -72 -80 -102s-75.833 -54 -124.5 -72s-102.667 -27 -162 -27h-395v158h395c39.333 0 73.833 4.5 103.5 13.5s54.334 21 74.001 36s34.5 32.167 44.5 51.5s15 39 15 59
380
-c0 19.333 -5 38.333 -15 57s-24.833 35.334 -44.5 50.001s-44.334 26.5 -74.001 35.5s-64.167 13.5 -103.5 13.5c-26 0 -54 2.33301 -84 7s-59.667 12.167 -89 22.5s-57.333 23.666 -84 39.999s-50.167 36.166 -70.5 59.499s-36.666 50.5 -48.999 81.5
381
-s-18.5 66.167 -18.5 105.5c0 43.333 11.167 85.5 33.5 126.5s53.833 76.5 94.5 106.5c-37.333 25.333 -68 57.5 -92 96.5s-36 87.167 -36 144.5c0 39.333 9.5 78 28.5 116s45.667 71.833 80 101.5s75.833 53.5 124.5 71.5s102.667 27 162 27h395zM315.998 632.001
382
-c0 -20 4.99805 -39.3359 14.998 -58.0029s24.833 -35.5 44.5 -50.5s44.334 -27 74.001 -36s64.167 -13.5 103.5 -13.5s73.833 4.5 103.5 13.5s54.334 21 74.001 36s34.5 32.167 44.5 51.5s15 39 15 59c0 19.333 -5 38.333 -15 57s-24.833 35.334 -44.5 50.001
383
-s-44.334 26.5 -74.001 35.5s-64.167 13.5 -103.5 13.5h-12c-37.333 -1.33301 -70.166 -6.66602 -98.499 -15.999s-51.833 -21.333 -70.5 -36s-32.667 -31.167 -42 -49.5s-14 -37.166 -14 -56.499z" />
384
- <glyph glyph-name="dieresis" unicode="&#xa8;"
385
-d="M316 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM632 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56
386
-s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
387
- <glyph glyph-name="copyright" unicode="&#xa9;"
388
-d="M0 711c0 98 13.5 190.167 40.5 276.5s64.833 161.666 113.5 225.999s106.834 115.166 174.501 152.499s142.5 56 224.5 56s156.833 -18.667 224.5 -56s125.834 -88.166 174.501 -152.499s86.5 -139.666 113.5 -225.999s40.5 -178.5 40.5 -276.5
389
-s-13.5 -190.167 -40.5 -276.5s-64.833 -161.666 -113.5 -225.999s-106.834 -115.166 -174.501 -152.499s-142.5 -56 -224.5 -56s-156.833 18.667 -224.5 56s-125.834 88.166 -174.501 152.499s-86.5 139.666 -113.5 225.999s-40.5 178.5 -40.5 276.5zM158 711
390
-c0 -76 9.33301 -147.667 28 -215s45.167 -126 79.5 -176s75.833 -89.5 124.5 -118.5s103 -43.5 163 -43.5s114.333 14.5 163 43.5s90.167 68.5 124.5 118.5s60.833 108.667 79.5 176s28 139 28 215s-9.33301 147.667 -28 215s-45.167 126 -79.5 176
391
-s-75.833 89.5 -124.5 118.5s-103 43.5 -163 43.5s-114.333 -14.5 -163 -43.5s-90.167 -68.5 -124.5 -118.5s-60.833 -108.667 -79.5 -176s-28 -139 -28 -215zM474 711c0 -32.667 1 -63.332 3 -91.999s5.83301 -53.834 11.5 -75.501s13.667 -38.667 24 -51
392
-s23.833 -18.5 40.5 -18.5c12.667 0 22.834 3.83301 30.501 11.5s14 18.5 19 32.5s9 30.667 12 50s6.5 40.666 10.5 63.999h159c-6 -45.333 -15.167 -87.166 -27.5 -125.499s-28 -71.666 -47 -99.999s-41.5 -50.5 -67.5 -66.5s-55.667 -24 -89 -24
393
-c-38 0 -71.833 10.333 -101.5 31s-54.5 48.834 -74.5 84.501s-35.167 77.5 -45.5 125.5s-15.5 99.333 -15.5 154s5.16699 106 15.5 154s25.5 89.833 45.5 125.5s44.833 63.834 74.5 84.501s63.5 31 101.5 31c33.333 0 63 -8 89 -24s48.5 -38.167 67.5 -66.5
394
-s34.667 -61.833 47 -100.5s21.5 -80.334 27.5 -125.001h-159c-4 22.667 -7.5 43.667 -10.5 63s-7 36 -12 50s-11.333 25 -19 33s-17.834 12 -30.501 12c-16.667 0 -30.167 -6.16699 -40.5 -18.5s-18.333 -29.333 -24 -51s-9.5 -46.834 -11.5 -75.501s-3 -59.334 -3 -92.001z
395
-" />
396
- <glyph glyph-name="ordfeminine" unicode="&#xaa;"
397
-d="M237 1422l158.001 0.000976562c158 0 237 -79 237 -237v-553h-237c-158 0 -237 79 -237 237s79 237 237 237h79v79c0 10 -2.16699 19.667 -6.5 29s-10 17.666 -17 24.999s-15.333 13.333 -25 18s-19.834 7 -30.501 7h-158v158zM395.001 948.001
398
-c-25.333 0 -44.833 -7.50098 -58.5 -22.501s-20.5 -34.167 -20.5 -57.5s7.66699 -42.166 23 -56.499s34 -21.5 56 -21.5h79v158h-79z" />
399
- <glyph glyph-name="guillemotleft" unicode="&#xab;"
400
-d="M474 948l79 -79l-237 -316l237 -316l-80 -79l-315 395zM869 948l79 -79l-237 -316l237 -316l-80 -79l-315 395z" />
401
- <glyph glyph-name="logicalnot" unicode="&#xac;"
402
-d="M790 790h-632v158h790v-474h-158v316z" />
403
- <glyph glyph-name="uni00AD" unicode="&#xad;"
404
-d="M158 790h790v-158h-790v158z" />
405
- <glyph glyph-name="registered" unicode="&#xae;"
406
-d="M0 711c0 98 13.5 190.167 40.5 276.5s64.833 161.666 113.5 225.999s106.834 115.166 174.501 152.499s142.5 56 224.5 56s156.833 -18.667 224.5 -56s125.834 -88.166 174.501 -152.499s86.5 -139.666 113.5 -225.999s40.5 -178.5 40.5 -276.5
407
-s-13.5 -190.167 -40.5 -276.5s-64.833 -161.666 -113.5 -225.999s-106.834 -115.166 -174.501 -152.499s-142.5 -56 -224.5 -56s-156.833 18.667 -224.5 56s-125.834 88.166 -174.501 152.499s-86.5 139.666 -113.5 225.999s-40.5 178.5 -40.5 276.5zM158 711
408
-c0 -76 9.33301 -147.667 28 -215s45.167 -126 79.5 -176s75.833 -89.5 124.5 -118.5s103 -43.5 163 -43.5s114.333 14.5 163 43.5s90.167 68.5 124.5 118.5s60.833 108.667 79.5 176s28 139 28 215s-9.33301 147.667 -28 215s-45.167 126 -79.5 176
409
-s-75.833 89.5 -124.5 118.5s-103 43.5 -163 43.5s-114.333 -14.5 -163 -43.5s-90.167 -68.5 -124.5 -118.5s-60.833 -108.667 -79.5 -176s-28 -139 -28 -215zM474 632l-0.00195312 -315.998h-158v790h237c32.667 0 63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51
410
-s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001c0 -30.667 -4.5 -60.167 -13.5 -88.5s-21 -53.5 -36 -75.5s-31.833 -39.667 -50.5 -53s-38 -20 -58 -20l158 -316h-158zM552.998 790.002c22 0 40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56
411
-s-34 23 -56 23h-79v-158h79z" />
412
- <glyph glyph-name="macron" unicode="&#xaf;"
413
-d="M158 1422v158h790v-158h-790z" />
414
- <glyph glyph-name="degree" unicode="&#xb0;"
415
-d="M158 1106c0 43.333 8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25s84.166 -8.33301 122.499 -25s71.833 -39.334 100.5 -68.001s51.334 -62.167 68.001 -100.5s25 -79.166 25 -122.499
416
-s-8.33301 -84.166 -25 -122.499s-39.334 -71.833 -68.001 -100.5s-62.167 -51.334 -100.5 -68.001s-79.166 -25 -122.499 -25s-84.166 8.33301 -122.499 25s-71.833 39.334 -100.5 68.001s-51.334 62.167 -68.001 100.5s-25 79.166 -25 122.499zM316 1106
417
-c0 -22 4.16699 -42.5 12.5 -61.5s19.666 -35.667 33.999 -50s31 -25.666 50 -33.999s39.5 -12.5 61.5 -12.5s42.5 4.16699 61.5 12.5s35.667 19.666 50 33.999s25.666 31 33.999 50s12.5 39.5 12.5 61.5s-4.16699 42.5 -12.5 61.5s-19.666 35.667 -33.999 50
418
-s-31 25.666 -50 33.999s-39.5 12.5 -61.5 12.5s-42.5 -4.16699 -61.5 -12.5s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5z" />
419
- <glyph glyph-name="plusminus" unicode="&#xb1;"
420
-d="M158 474h316v316h-316v158h316v316h158v-316h316v-158h-316v-316h316v-158h-790v158z" />
421
- <glyph glyph-name="twosuperior" unicode="&#xb2;"
422
-d="M158 948c0 13.333 7.83301 30.5 23.5 51.5s35.167 43.833 58.5 68.5l76 77.5l76 77.5c23.333 24.667 42.833 47.5 58.5 68.5s23.5 38.167 23.5 51.5c0 20 -4.5 35.333 -13.5 46s-21 18.5 -36 23.5s-32 7.83301 -51 8.5s-38.167 1 -57.5 1h-158v158h236
423
-c158.667 0 238 -79 238 -237c0 -20 -9 -44.5 -27 -73.5s-41.833 -60.667 -71.5 -95s-63.5 -70.833 -101.5 -109.5l-116 -117h316v-158h-474v158z" />
424
- <glyph glyph-name="threesuperior" unicode="&#xb3;"
425
-d="M158 948l158 0.00390625c20 0 39.333 0.666992 58 2s35.5 4.66602 50.5 9.99902s27 13.333 36 24s13.5 25 13.5 43s-4.5 32.333 -13.5 43s-21 18.667 -36 24s-31.833 8.66602 -50.5 9.99902s-38 2 -58 2v158c20 0 39.5 0.666992 58.5 2s36 4.66602 51 9.99902
426
-s27 13.333 36 24s13.5 25 13.5 43s-4.5 32.333 -13.5 43s-21 18.667 -36 24s-32 8.66602 -51 9.99902s-38.5 2 -58.5 2h-158v158h237c158 0 237 -79 237 -237c0 -39.333 -6.16699 -70.5 -18.5 -93.5s-32.833 -44.5 -61.5 -64.5c28.667 -20 49.167 -41.5 61.5 -64.5
427
-s18.5 -54.167 18.5 -93.5c0 -158 -79 -237 -237 -237h-237v158z" />
428
- <glyph glyph-name="acute" unicode="&#xb4;"
429
-d="M395 1264l-79 79l395 237l79 -79z" />
430
- <glyph glyph-name="mu" unicode="&#xb5;"
431
-d="M790 1106h157.997v-711c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31c-44.667 0 -87 7 -127 21s-76.667 33.667 -110 59v-396h-158v1422h158v-711c0 -39.333 6.33301 -73.833 19 -103.5
432
-s29.834 -54.334 51.501 -74.001s46.834 -34.5 75.501 -44.5s59 -15 91 -15c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v711z" />
433
- <glyph glyph-name="paragraph" unicode="&#xb6;"
434
-d="M474 632c-39.333 0 -78 9 -116 27s-71.833 41.833 -101.5 71.5s-53.5 63.5 -71.5 101.5s-27 76.667 -27 116v158c0 39.333 9 78 27 116s41.833 71.833 71.5 101.5s63.5 53.5 101.5 71.5s76.667 27 116 27h474v-1737h-158v1579h-158v-1580h-158v948z" />
435
- <glyph glyph-name="periodcentered" unicode="&#xb7;"
436
-d="M316 790c0 22 4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999 -50
437
-s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5s-42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5z" />
438
- <glyph glyph-name="cedilla" unicode="&#xb8;"
439
-d="M632 0c0 -59.333 -9.83203 -112.832 -29.499 -160.499s-49.334 -86.334 -89.001 -116.001s-89.167 -48.667 -148.5 -57s-128.333 -2.5 -207 17.5v158c59.333 -20 109.166 -30.333 149.499 -31s72.833 6.33301 97.5 21s42.334 36.5 53.001 65.5s16 63.167 16 102.5h158z
440
-" />
441
- <glyph glyph-name="onesuperior" unicode="&#xb9;"
442
-d="M316 948v474l-158 -158v158l158 158h158v-632h158v-158h-474v158h158z" />
443
- <glyph glyph-name="ordmasculine" unicode="&#xba;"
444
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154s-10.333 -106 -31 -154
445
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154zM316 1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
446
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
447
-s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001zM158 473h790v-157h-790v157z" />
448
- <glyph glyph-name="guillemotright" unicode="&#xbb;"
449
-d="M632.029 948l-78.9951 -79l236.985 -316l-236.985 -316l79.9951 -79l314.98 395zM237.053 948l-78.9951 -79l236.985 -316l-236.985 -316l79.9951 -79l314.981 395z" />
450
- <glyph glyph-name="onequarter" unicode="&#xbc;"
451
-d="M159 948v474l-158 -158v158l158 158h158v-632h158v-158h-474v158h158zM790 1580h158l-632 -1580h-158zM632 475l316 316h158v-790h-158v158h-316v316zM948 317v237l-158 -158v-79h158z" />
452
- <glyph glyph-name="onehalf" unicode="&#xbd;"
453
-d="M159 948v474l-158 -158v158l158 158h158v-632h158v-158h-474v158h158zM622.337 159c0 13.333 8 30.5 23.9971 51.5s35.9092 43.833 59.7354 68.5l77.6055 77.5l77.6045 77.5c23.8262 24.667 43.7383 47.5 59.7354 68.5s23.9961 38.167 23.9961 51.5
454
-c0 20 -4.59473 35.333 -13.7852 46s-21.4434 18.5 -36.7598 23.5c-15.3174 5 -32.6768 7.83301 -52.0781 8.5s-38.9727 1 -58.7139 1h-161.337v158h240.983c162.018 0 243.026 -79 243.026 -237c0 -20 -9.19043 -44.5 -27.5703 -73.5s-42.7168 -60.667 -73.0098 -95
455
-s-64.8408 -70.833 -103.644 -109.5l-118.449 -117h322.673v-158h-484.01v158zM790.001 1580h158l-632 -1580h-158z" />
456
- <glyph glyph-name="threequarters" unicode="&#xbe;"
457
-d="M790 1580h158l-632 -1580h-158zM632 475l316 316h158v-790h-158v158h-316v316zM948 317v237l-158 -158v-79h158zM1 948l158 0.00390625c20 0 39.333 0.666992 58 2s35.5 4.66602 50.5 9.99902s27 13.333 36 24s13.5 25 13.5 43s-4.5 32.333 -13.5 43s-21 18.667 -36 24
458
-s-31.833 8.66602 -50.5 9.99902s-38 2 -58 2v158c20 0 39.5 0.666992 58.5 2s36 4.66602 51 9.99902s27 13.333 36 24s13.5 25 13.5 43s-4.5 32.333 -13.5 43s-21 18.667 -36 24s-32 8.66602 -51 9.99902s-38.5 2 -58.5 2h-158v158h237c158 0 237 -79 237 -237
459
-c0 -39.333 -6.16699 -70.5 -18.5 -93.5s-32.833 -44.5 -61.5 -64.5c28.667 -20 49.167 -41.5 61.5 -64.5s18.5 -54.167 18.5 -93.5c0 -158 -79 -237 -237 -237h-237v158z" />
460
- <glyph glyph-name="questiondown" unicode="&#xbf;"
461
-d="M948 395c0 -54.667 -9.5 -105.999 -28.5 -153.999s-45.667 -89.833 -80 -125.5s-75.833 -63.834 -124.5 -84.501s-102.667 -31 -162 -31s-113.333 9.5 -162 28.5s-90.167 45.667 -124.5 80s-61 75.833 -80 124.5s-28.5 102.667 -28.5 162
462
-c0 52.667 7.83301 97.334 23.5 134.001s35.167 69 58.5 97s48.666 53 75.999 75s52.666 44.833 75.999 68.5s42.833 49.5 58.5 77.5s23.5 61.667 23.5 101h158c0 -52.667 -7.83301 -97.334 -23.5 -134.001s-35.167 -69 -58.5 -97s-48.666 -53 -75.999 -75
463
-s-52.666 -44.833 -75.999 -68.5s-42.833 -49.5 -58.5 -77.5s-23.5 -61.667 -23.5 -101c0 -158 79 -237 237 -237s237 79 237 237v79h158v-79zM632 1106h-158v316h158v-316z" />
464
- <glyph glyph-name="Agrave" unicode="&#xc0;"
465
-d="M158 1027c0 54.667 10.3311 106 30.998 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-1027h-158v632h-474v-632h-158v1027z
466
-M789.998 790l0.00390625 237c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
467
-s-18.5 -59.334 -18.5 -92.001v-237h474zM316.002 1738v158l474 -237v-158z" />
468
- <glyph glyph-name="Aacute" unicode="&#xc1;"
469
-d="M158 1027c0 54.667 10.3311 106 30.998 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-1027h-158v632h-474v-632h-158v1027z
470
-M789.998 790l0.00390625 237c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
471
-s-18.5 -59.334 -18.5 -92.001v-237h474zM395.002 1580l-79 79l395 237l79 -79z" />
472
- <glyph glyph-name="Acircumflex" unicode="&#xc2;"
473
-d="M158 1027c0 54.667 10.3311 106 30.998 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-1027h-158v632h-474v-632h-158v1027z
474
-M789.998 790l0.00390625 237c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
475
-s-18.5 -59.334 -18.5 -92.001v-237h474zM551.002 1896l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
476
- <glyph glyph-name="Atilde" unicode="&#xc3;"
477
-d="M158 1027c0 54.667 10.3311 106 30.998 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-1027h-158v632h-474v-632h-158v1027z
478
-M789.998 790l0.00390625 237c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
479
-s-18.5 -59.334 -18.5 -92.001v-237h474zM948.002 1817c-79.333 -158 -158.334 -237 -237.001 -237c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5s-35.5 11.5 -61.5 11.5
480
-c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38
481
-s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58z" />
482
- <glyph glyph-name="Adieresis" unicode="&#xc4;"
483
-d="M158 1027c0 54.667 10.3311 106 30.998 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-1027h-158v632h-474v-632h-158v1027z
484
-M789.998 790l0.00390625 237c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
485
-s-18.5 -59.334 -18.5 -92.001v-237h474zM316.002 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM632.002 1659c0 22 7.66699 40.667 23 56
486
-s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
487
- <glyph glyph-name="Aring" unicode="&#xc5;"
488
-d="M158 1027c0 54.667 10.1719 105.835 30.5049 153.502s48.5 89.5 84.5 125.5c25.333 25.333 52.666 46.333 81.999 63c-16 26.667 -26.5 54.167 -31.5 82.5s-5.5 56.166 -1.5 83.499s12.5 53.333 25.5 78s29.5 46.167 49.5 64.5s43.167 33 69.5 44
489
-s55.166 16.5 86.499 16.5c30.667 0 59.334 -5.66699 86.001 -17s50.167 -26.5 70.5 -45.5s37.166 -41 50.499 -66s22.166 -51.167 26.499 -78.5s3.66602 -55 -2.00098 -83s-17.167 -54.333 -34.5 -79c29.333 -16.667 56.666 -37.667 81.999 -63
490
-c36 -36 64.333 -77.833 85 -125.5s31 -98.834 31 -153.501v-1027h-158v632h-474v-632h-158v1027zM790.005 790.001l0.00390625 237c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5
491
-s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-237h474zM632.009 1501c0 22 -7.66699 40.666 -23 55.999s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56c0 -20.667 7 -38.667 21 -54
492
-s31 -23.666 51 -24.999h7c22 0 40.667 7.66699 56 23s23 34 23 56z" />
493
- <glyph glyph-name="AE" unicode="&#xc6;"
494
-d="M158 1106c0 39.333 9 78 27 116s41.833 71.833 71.5 101.5s63.5 53.5 101.5 71.5s76.667 27 116 27h474v-158h-316v-474h158v-158h-158v-474h316v-158h-474v632h-158v-632h-158v1106zM474 790l-0.000976562 474c-30 0 -55 -6.16699 -75 -18.5s-36.167 -27 -48.5 -44
495
-s-21.166 -34.5 -26.499 -52.5s-8 -32.333 -8 -43v-316h158z" />
496
- <glyph glyph-name="Ccedilla" unicode="&#xc7;"
497
-d="M560.701 1264c-34.3486 0 -66.3398 -6.16309 -95.9736 -18.4961s-55.2266 -29.333 -76.7783 -51s-38.5576 -46.834 -51.0176 -75.501s-18.6895 -59.334 -18.6895 -92.001v-632c0 -32.667 6.22949 -63.334 18.6895 -92.001s29.4658 -53.834 51.0176 -75.501
498
-s47.1445 -38.667 76.7783 -51s61.625 -18.5 95.9736 -18.5c28.2871 0 54.8906 3.83301 79.8105 11.5c24.9189 7.66699 47.6494 18.5 68.1914 32.5s38.3896 30.667 53.5439 50c15.1533 19.333 26.7715 40.666 34.8535 63.999h159.62
499
-c-9.42871 -45.333 -25.9297 -87.333 -49.502 -126c-23.5732 -38.667 -52.7021 -72 -87.3877 -100s-73.917 -50 -117.694 -66s-90.9229 -24 -141.436 -24c-56.5742 0 -109.275 10.333 -158.104 31s-91.4287 48.834 -127.799 84.501
500
-c-36.3682 35.667 -64.8232 77.5 -85.3652 125.5s-30.8125 99.333 -30.8125 154v632c0 54.667 10.2705 106 30.8125 154s48.9971 89.833 85.3652 125.5c36.3701 35.667 78.9697 63.834 127.799 84.501s101.53 31 158.104 31c50.5127 0 97.8262 -8 141.94 -24
501
-s83.3457 -38.167 117.694 -66.5s63.3096 -61.833 86.8828 -100.5c23.5723 -38.667 40.0732 -80.334 49.502 -125.001h-159.62c-8.08203 22.667 -19.7002 43.667 -34.8535 63c-15.1543 19.333 -32.834 36 -53.0381 50c-20.2061 14 -42.9365 25 -68.1924 33
502
-c-25.2568 8 -52.0283 12 -80.3154 12zM630 0.00390625c0 -59.333 -9.83203 -112.832 -29.499 -160.499s-49.334 -86.334 -89.001 -116.001s-89.167 -48.667 -148.5 -57s-128.333 -2.5 -207 17.5v158c59.333 -20 109.166 -30.333 149.499 -31s72.833 6.33301 97.5 21
503
-s42.334 36.5 53.001 65.5s16 63.167 16 102.5h158z" />
504
- <glyph glyph-name="Egrave" unicode="&#xc8;"
505
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-474h632v-158h-790v1422zM316 1738v158l474 -237v-158z" />
506
- <glyph glyph-name="Eacute" unicode="&#xc9;"
507
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-474h632v-158h-790v1422zM395 1580l-79 79l395 237l79 -79z" />
508
- <glyph glyph-name="Ecircumflex" unicode="&#xca;"
509
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-474h632v-158h-790v1422zM553 1896l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
510
- <glyph glyph-name="Edieresis" unicode="&#xcb;"
511
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-474h632v-158h-790v1422zM316 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM632 1659
512
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
513
- <glyph glyph-name="Igrave" unicode="&#xcc;"
514
-d="M158 158h316v1106h-316v158h790v-158h-316v-1106h316v-158h-790v158zM316 1738v158l474 -237v-158z" />
515
- <glyph glyph-name="Iacute" unicode="&#xcd;"
516
-d="M158 158h316v1106h-316v158h790v-158h-316v-1106h316v-158h-790v158zM395 1580l-79 79l395 237l79 -79z" />
517
- <glyph glyph-name="Icircumflex" unicode="&#xce;"
518
-d="M158 158h316v1106h-316v158h790v-158h-316v-1106h316v-158h-790v158zM553 1896l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
519
- <glyph glyph-name="Idieresis" unicode="&#xcf;"
520
-d="M158 158h316v1106h-316v158h790v-158h-316v-1106h316v-158h-790v158zM316 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM632 1659
521
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
522
- <glyph glyph-name="Eth" unicode="&#xd0;"
523
-d="M0 790l158 0.00195312v632h395c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31
524
-h-395v632h-158v158zM553 158.002c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
525
-s-59.334 18.5 -92.001 18.5h-237v-474h158v-158h-158v-474h237z" />
526
- <glyph glyph-name="Ntilde" unicode="&#xd1;"
527
-d="M158 0v1422h158l474 -1052v1052h158v-1422h-158l-474 1052v-1052h-158zM948 1817c-79.333 -158 -158.334 -237 -237.001 -237c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5
528
-s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38
529
-s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58z" />
530
- <glyph glyph-name="Ograve" unicode="&#xd2;"
531
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154
532
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632zM553 1264c-32.667 0 -63.334 -6.16699 -92.001 -18.5
533
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5
534
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM316 1738v158l474 -237v-158z" />
535
- <glyph glyph-name="Oacute" unicode="&#xd3;"
536
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154
537
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632zM553 1264c-32.667 0 -63.334 -6.16699 -92.001 -18.5
538
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5
539
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM395 1580l-79 79l395 237l79 -79z" />
540
- <glyph glyph-name="Ocircumflex" unicode="&#xd4;"
541
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154
542
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632zM553 1264c-32.667 0 -63.334 -6.16699 -92.001 -18.5
543
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5
544
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM553 1896l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
545
- <glyph glyph-name="Otilde" unicode="&#xd5;"
546
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154
547
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632zM553 1264c-32.667 0 -63.334 -6.16699 -92.001 -18.5
548
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5
549
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM948 1817c-79.333 -158 -158.334 -237 -237.001 -237
550
-c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79
551
-c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5
552
-s13.5 38 13.5 58z" />
553
- <glyph glyph-name="Odieresis" unicode="&#xd6;"
554
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154
555
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632zM553 1264c-32.667 0 -63.334 -6.16699 -92.001 -18.5
556
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5
557
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM314 1659c0 22 7.66699 40.667 23 56s34 23 56 23
558
-s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM630 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23
559
-s-40.667 7.66699 -56 23s-23 34 -23 56z" />
560
- <glyph glyph-name="multiply" unicode="&#xd7;"
561
-d="M929 809l-256 -256l256 -256l-120 -120l-256 256l-256 -256l-120 120l256 256l-256 256l120 120l256 -256l256 256z" />
562
- <glyph glyph-name="Oslash" unicode="&#xd8;"
563
-d="M323 0h-165l69 172c-22 32 -39 66.667 -51 104s-18 77 -18 119v632c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c38 0 74 -5 108 -15s66 -24 96 -42l33 57h158c0 -2.66699 -0.5 -6 -1.5 -10
564
-s-3.66699 -11.667 -8 -23s-11.166 -27.833 -20.499 -49.5l-39 -89.5c21.333 -32 38.166 -66.667 50.499 -104s18.5 -77 18.5 -119v-632c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31
565
-c-38 0 -74.167 5 -108.5 15s-66.5 24 -96.5 42zM790 395c0 110.667 -0.168945 219.167 -0.501953 325.5s-0.5 215.166 -0.5 326.499l-376 -844c19.333 -14.667 41 -25.834 65 -33.501s49 -11.5 75 -11.5c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51
566
-s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001zM552.998 1264c-32.667 0 -63.332 -6.16504 -91.999 -18.498s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-665l376 857c-19.333 14 -40.833 25 -64.5 33s-48.5 12 -74.5 12z
567
-" />
568
- <glyph glyph-name="Ugrave" unicode="&#xd9;"
569
-d="M158 1422h157.998v-1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158
570
-v-1027c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v395v632zM315.998 1738v158l474 -237v-158
571
-z" />
572
- <glyph glyph-name="Uacute" unicode="&#xda;"
573
-d="M158 1422h157.998v-1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158
574
-v-1027c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v395v632zM394.998 1580l-79 79l395 237
575
-l79 -79z" />
576
- <glyph glyph-name="Ucircumflex" unicode="&#xdb;"
577
-d="M158 1422h157.998v-1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158
578
-v-1027c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v395v632zM550.998 1896l237 -237l-79 -79
579
-l-158 158l-158 -158l-79 79z" />
580
- <glyph glyph-name="Udieresis" unicode="&#xdc;"
581
-d="M158 1422h157.998v-1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158
582
-v-1027c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v395v632zM313.998 1659
583
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM629.998 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56
584
-s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
585
- <glyph glyph-name="Yacute" unicode="&#xdd;"
586
-d="M474 472l-316 950h158l237 -711l237 711h158l-316 -948v-474h-158v472zM395 1580l-79 79l395 237l79 -79z" />
587
- <glyph glyph-name="Thorn" unicode="&#xde;"
588
-d="M632 1106c39.333 0 78 -9 116 -27s71.833 -41.833 101.5 -71.5s53.5 -63.5 71.5 -101.5s27 -76.667 27 -116v-158c0 -39.333 -9 -78 -27 -116s-41.833 -71.833 -71.5 -101.5s-63.5 -53.5 -101.5 -71.5s-76.667 -27 -116 -27h-316v-316h-158v1422h158v-316h316zM790 790
589
-c0 20 -4.5 39.333 -13.5 58s-21 35.5 -36 50.5s-31.833 27 -50.5 36s-38 13.5 -58 13.5h-316v-474h316c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58v158z" />
590
- <glyph glyph-name="germandbls" unicode="&#xdf;"
591
-d="M158 1027c0 68 11.499 126.828 34.499 176.495s53.167 90.667 90.5 123s79.5 56.333 126.5 72s94.833 23.5 143.5 23.5c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154c0 -65.333 -14.5 -125.333 -43.5 -180
592
-s-67.5 -100 -115.5 -136c48 -36 86.5 -81.5 115.5 -136.5s43.5 -114.833 43.5 -179.5c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-79v158h79c32.667 0 63.334 6.16699 92.001 18.5
593
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-79v158h79c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51
594
-s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-28.667 0 -57.167 -5 -85.5 -15s-53.666 -24.833 -75.999 -44.5s-40.5 -44.334 -54.5 -74.001
595
-s-21 -64.167 -21 -103.5v-1027h-158v1027z" />
596
- <glyph glyph-name="agrave" unicode="&#xe0;"
597
-d="M474 0c-43.333 0 -84.165 8.33203 -122.498 24.999s-71.833 39.334 -100.5 68.001s-51.334 62.167 -68.001 100.5s-25 79.166 -25 122.499s8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25h316v79
598
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v158h237c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-474z
599
-M474.001 473.999c-22 0 -42.5 -4.16895 -61.5 -12.502s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5s4.16699 -42.5 12.5 -61.5s19.666 -35.667 33.999 -50s31 -25.666 50 -33.999s39.5 -12.5 61.5 -12.5h316v316h-316zM316.001 1422v158
600
-l474 -237v-158z" />
601
- <glyph glyph-name="aacute" unicode="&#xe1;"
602
-d="M474 0c-43.333 0 -84.165 8.33203 -122.498 24.999s-71.833 39.334 -100.5 68.001s-51.334 62.167 -68.001 100.5s-25 79.166 -25 122.499s8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25h316v79
603
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v158h237c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-474z
604
-M474.001 473.999c-22 0 -42.5 -4.16895 -61.5 -12.502s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5s4.16699 -42.5 12.5 -61.5s19.666 -35.667 33.999 -50s31 -25.666 50 -33.999s39.5 -12.5 61.5 -12.5h316v316h-316zM395.001 1264
605
-l-79 79l395 237l79 -79z" />
606
- <glyph glyph-name="acircumflex" unicode="&#xe2;"
607
-d="M474 0c-43.333 0 -84.165 8.33203 -122.498 24.999s-71.833 39.334 -100.5 68.001s-51.334 62.167 -68.001 100.5s-25 79.166 -25 122.499s8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25h316v79
608
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v158h237c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-474z
609
-M474.001 473.999c-22 0 -42.5 -4.16895 -61.5 -12.502s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5s4.16699 -42.5 12.5 -61.5s19.666 -35.667 33.999 -50s31 -25.666 50 -33.999s39.5 -12.5 61.5 -12.5h316v316h-316zM551.001 1580
610
-l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
611
- <glyph glyph-name="atilde" unicode="&#xe3;"
612
-d="M474 0c-43.333 0 -84.165 8.33203 -122.498 24.999s-71.833 39.334 -100.5 68.001s-51.334 62.167 -68.001 100.5s-25 79.166 -25 122.499s8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25h316v79
613
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v158h237c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-474z
614
-M474.001 473.999c-22 0 -42.5 -4.16895 -61.5 -12.502s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5s4.16699 -42.5 12.5 -61.5s19.666 -35.667 33.999 -50s31 -25.666 50 -33.999s39.5 -12.5 61.5 -12.5h316v316h-316zM946.001 1501
615
-c-79.333 -158 -158.334 -237 -237.001 -237c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36
616
-s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5
617
-c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58z" />
618
- <glyph glyph-name="adieresis" unicode="&#xe4;"
619
-d="M474 0c-43.333 0 -84.165 8.33203 -122.498 24.999s-71.833 39.334 -100.5 68.001s-51.334 62.167 -68.001 100.5s-25 79.166 -25 122.499s8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25h316v79
620
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v158h237c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-474z
621
-M474.001 473.999c-22 0 -42.5 -4.16895 -61.5 -12.502s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5s4.16699 -42.5 12.5 -61.5s19.666 -35.667 33.999 -50s31 -25.666 50 -33.999s39.5 -12.5 61.5 -12.5h316v316h-316zM314.001 1343
622
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM630.001 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56
623
-s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
624
- <glyph glyph-name="aring" unicode="&#xe5;"
625
-d="M474 0c-43.333 0 -84.165 8.33203 -122.498 24.999s-71.833 39.334 -100.5 68.001s-51.334 62.167 -68.001 100.5s-25 79.166 -25 122.499s8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25h316v79
626
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v158h237c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-474z
627
-M474.001 473.999c-22 0 -42.5 -4.16895 -61.5 -12.502s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5s4.16699 -42.5 12.5 -61.5s19.666 -35.667 33.999 -50s31 -25.666 50 -33.999s39.5 -12.5 61.5 -12.5h316v316h-316zM314.001 1501
628
-c0 32.667 6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5s63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001s-6.16699 -63.334 -18.5 -92.001
629
-s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001zM472.001 1501c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23
630
-s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56z" />
631
- <glyph glyph-name="ae" unicode="&#xe6;"
632
-d="M395 0c-39.333 0 -73.832 9.00098 -103.499 27.001s-54.334 41.833 -74.001 71.5s-34.5 63.5 -44.5 101.5s-15 76.667 -15 116s5 78 15 116s24.833 71.833 44.5 101.5s44.334 53.5 74.001 71.5s64.167 27 103.5 27h79c0 78.667 -4.5 139.5 -13.5 182.5s-21 74.333 -36 94
633
-s-31.833 31.167 -50.5 34.5s-38 5 -58 5v158c10.667 0 24 -0.333008 40 -1s33.167 -2.5 51.5 -5.5s37.5 -8 57.5 -15s39 -16.833 57 -29.5c15.333 15.333 32.5 27.666 51.5 36.999s38.5 14 58.5 14h79c39.333 0 73.833 -9 103.5 -27s54.334 -41.833 74.001 -71.5
634
-s34.5 -63.5 44.5 -101.5s15 -76.667 15 -116s-5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27h-79c0 -52.667 1 -97 3 -133s4.83301 -65.667 8.5 -89s8 -41.5 13 -54.5s10.5 -22.333 16.5 -28s12.167 -9 18.5 -10
635
-s12.833 -1.5 19.5 -1.5c12 0 22.833 4.5 32.5 13.5s18 21 25 36s12.333 31.833 16 50.5s5.5 38 5.5 58h158c0 -59.333 -5 -109.166 -15 -149.499s-24.833 -72.833 -44.5 -97.5s-44.334 -42.334 -74.001 -53.001s-64.167 -16 -103.5 -16h-316zM395.001 474.001
636
-c-11.333 0 -21.833 -4.5 -31.5 -13.5s-18 -21 -25 -36s-12.5 -31.833 -16.5 -50.5s-6 -38 -6 -58s2 -39.333 6 -58s9.5 -35.5 16.5 -50.5s15.333 -27 25 -36s20.167 -13.5 31.5 -13.5h79v316h-79zM711.001 632.001c11.333 0 21.833 4.5 31.5 13.5s18 21 25 36
637
-s12.5 31.833 16.5 50.5s6 38 6 58s-2 39.333 -6 58s-9.5 35.5 -16.5 50.5s-15.333 27 -25 36s-20.167 13.5 -31.5 13.5h-79v-316h79z" />
638
- <glyph glyph-name="ccedilla" unicode="&#xe7;"
639
-d="M316 395c0 -32.667 7 -63.332 21 -91.999s32.5 -53.834 55.5 -75.501s49.667 -38.667 80 -51s61.833 -18.5 94.5 -18.5c26 0 50.667 3.83301 74 11.5s44.666 18.5 63.999 32.5s36.333 30.667 51 50s26 40.666 34 63.999h158
640
-c-9.33301 -45.333 -25.833 -87.166 -49.5 -125.499s-52.5 -71.666 -86.5 -99.999s-72.333 -50.5 -115 -66.5s-88 -24 -136 -24c-54.667 0 -106.334 10.333 -155.001 31s-91.334 48.834 -128.001 84.501s-65.834 77.5 -87.501 125.5s-32.5 99.333 -32.5 154v316
641
-c0 54.667 10.833 106 32.5 154s50.834 89.833 87.501 125.5s79.334 63.834 128.001 84.501s100.334 31 155.001 31c48 0 93.333 -8 136 -24s81 -38.167 115 -66.5s62.833 -61.833 86.5 -100.5s40.167 -80.334 49.5 -125.001h-158c-8 22.667 -19.333 43.667 -34 63
642
-s-31.667 36 -51 50s-40.666 25 -63.999 33s-48 12 -74 12c-32.667 0 -64.167 -6.16699 -94.5 -18.5s-57 -29.333 -80 -51s-41.5 -46.834 -55.5 -75.501s-21 -59.334 -21 -92.001v-316zM632 0.00195312c0 -59.333 -9.83203 -112.832 -29.499 -160.499
643
-s-49.334 -86.334 -89.001 -116.001s-89.167 -48.667 -148.5 -57s-128.333 -2.5 -207 17.5v158c59.333 -20 109.166 -30.333 149.499 -31s72.833 6.33301 97.5 21s42.334 36.5 53.001 65.5s16 63.167 16 102.5h158z" />
644
- <glyph glyph-name="egrave" unicode="&#xe8;"
645
-d="M316 395c0 -32.667 6.16406 -63.333 18.4971 -92s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h395v-158h-395c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316
646
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-237h-632v-79zM315.997 632.001h474.004v79
647
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79zM316.001 1422v158
648
-l474 -237v-158z" />
649
- <glyph glyph-name="eacute" unicode="&#xe9;"
650
-d="M316 395c0 -32.667 6.16406 -63.333 18.4971 -92s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h395v-158h-395c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316
651
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-237h-632v-79zM315.997 632.001h474.004v79
652
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79zM395.001 1264
653
-l-79 79l395 237l79 -79z" />
654
- <glyph glyph-name="ecircumflex" unicode="&#xea;"
655
-d="M316 395c0 -32.667 6.16406 -63.333 18.4971 -92s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h395v-158h-395c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316
656
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-237h-632v-79zM315.997 632.001h474.004v79
657
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79zM551.001 1580
658
-l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
659
- <glyph glyph-name="edieresis" unicode="&#xeb;"
660
-d="M316 395c0 -32.667 6.16406 -63.333 18.4971 -92s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h395v-158h-395c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316
661
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-237h-632v-79zM315.997 632.001h474.004v79
662
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79zM314.001 1343
663
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM630.001 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56
664
-s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
665
- <glyph glyph-name="igrave" unicode="&#xec;"
666
-d="M474 948h-158v158h316v-1106h-158v948zM316 1501l79 79l237 -237l-79 -79z" />
667
- <glyph glyph-name="iacute" unicode="&#xed;"
668
-d="M474 948h-158v158h316v-1106h-158v948zM395 1264l-79 79l237 237l79 -79z" />
669
- <glyph glyph-name="icircumflex" unicode="&#xee;"
670
-d="M474 948h-158v158h316v-1106h-158v948zM550 1580l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
671
- <glyph glyph-name="idieresis" unicode="&#xef;"
672
-d="M474 948h-158v158h316v-1106h-158v948zM316 1422h158v-158h-158v158zM632 1422h158v-158h-158v158z" />
673
- <glyph glyph-name="eth" unicode="&#xf0;"
674
-d="M711 1422l0.000976562 -158l-51 -51c48.667 -50 95.667 -112 141 -186l147 -237v-474c0 -39.333 -9 -78 -27 -116s-41.833 -71.833 -71.5 -101.5s-63.5 -53.5 -101.5 -71.5s-76.667 -27 -116 -27h-158c-39.333 0 -78 9 -116 27s-71.833 41.833 -101.5 71.5
675
-s-53.5 63.5 -71.5 101.5s-27 76.667 -27 116v158c0 39.333 9 78 27 116s41.833 71.833 71.5 101.5s63.5 53.5 101.5 71.5s76.667 27 116 27h316l-158 237c-22.667 33.333 -45.334 63.333 -68.001 90l-169 -169v158l90 90c-56.667 45.333 -113 68 -169 68v158l169 -79
676
-c31.333 -14 62 -32.333 92 -55zM553.001 158c158 0 237 79 237 237v237h-237c-158 0 -237 -79 -237 -237s79 -237 237 -237z" />
677
- <glyph glyph-name="ntilde" unicode="&#xf1;"
678
-d="M553 948c-32 0 -62.167 -6.00098 -90.5 -18.001s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1106h158v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501
679
-s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM946 1501c-79.333 -158 -158.334 -237 -237.001 -237
680
-c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79
681
-c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5
682
-s13.5 38 13.5 58z" />
683
- <glyph glyph-name="ograve" unicode="&#xf2;"
684
-d="M158 711c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154
685
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316zM316 395c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
686
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
687
-s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM316 1422v158l474 -237v-158z" />
688
- <glyph glyph-name="oacute" unicode="&#xf3;"
689
-d="M158 711c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154
690
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316zM316 395c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
691
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
692
-s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM394.844 1264l-79.1689 79l395.844 237l79.1689 -79z" />
693
- <glyph glyph-name="ocircumflex" unicode="&#xf4;"
694
-d="M158 711c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154
695
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316zM316 395c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
696
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
697
-s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM551 1580l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
698
- <glyph glyph-name="otilde" unicode="&#xf5;"
699
-d="M158 711c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154
700
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316zM316 395c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
701
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
702
-s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM946 1501c-79.333 -158 -158.334 -237 -237.001 -237c-39.333 0 -70.833 3.83301 -94.5 11.5
703
-s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79c78.667 158 157.667 237 237 237
704
-c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58z" />
705
- <glyph glyph-name="odieresis" unicode="&#xf6;"
706
-d="M158 711c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154
707
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316zM316 395c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
708
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
709
-s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM314 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56
710
-s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM630 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
711
- <glyph glyph-name="divide" unicode="&#xf7;"
712
-d="M0 790h948v-158h-948v158zM316 1106c0 22 4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5s-4.16699 -42.5 -12.5 -61.5
713
-s-19.666 -35.667 -33.999 -50s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5s-42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5zM316 316c0 22 4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999
714
-s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999 -50s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5s-42.5 4.16699 -61.5 12.5
715
-s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5z" />
716
- <glyph glyph-name="oslash" unicode="&#xf8;"
717
-d="M335 0h-185.001c0 3.33301 0.666992 7.33301 2 12s4.66602 12.5 9.99902 23.5s13.5 26.667 24.5 47s26.5 47.5 46.5 81.5c-23.333 32.667 -41.666 68.5 -54.999 107.5s-20 80.167 -20 123.5v316c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5
718
-s77.5 63.834 125.5 84.501s99.333 31 154 31c34.667 0 67.834 -4.33301 99.501 -13s61.834 -20.667 90.501 -36l28 49h185c0 -3.33301 -0.666992 -7.5 -2 -12.5s-4.83301 -13 -10.5 -24l-25 -46.5l-45.5 -81c23.333 -32.667 41.666 -68.5 54.999 -107.5
719
-s20 -80.167 20 -123.5v-316c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31c-34.667 -0 -68 4.33301 -100 13s-62 20.667 -90 36zM789.999 711c0 11.333 -0.834961 22.665 -2.50195 33.998
720
-s-4.16699 22.333 -7.5 33l-339 -592c34 -18.667 71.333 -28 112 -28c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316zM315.997 394.999c0 -25.333 3.33594 -47.998 10.0029 -67.998l338 593
721
-c-16.667 8.66699 -34.334 15.5 -53.001 20.5s-38 7.5 -58 7.5c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316z" />
722
- <glyph glyph-name="ugrave" unicode="&#xf9;"
723
-d="M316 395c0 -32.667 6.16406 -63.335 18.4971 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 6.33301 91 19s53.834 29.834 75.501 51.501s38.834 46.834 51.501 75.501s19 59 19 91v711h158v-1106h-158v79
724
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM315.997 1422v158l474 -237v-158z" />
725
- <glyph glyph-name="uacute" unicode="&#xfa;"
726
-d="M316 395c0 -32.667 6.16406 -63.335 18.4971 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 6.33301 91 19s53.834 29.834 75.501 51.501s38.834 46.834 51.501 75.501s19 59 19 91v711h158v-1106h-158v79
727
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM394.997 1264l-79 79l395 237l79 -79z" />
728
- <glyph glyph-name="ucircumflex" unicode="&#xfb;"
729
-d="M316 395c0 -32.667 6.16406 -63.335 18.4971 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 6.33301 91 19s53.834 29.834 75.501 51.501s38.834 46.834 51.501 75.501s19 59 19 91v711h158v-1106h-158v79
730
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM550.997 1580l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
731
- <glyph glyph-name="udieresis" unicode="&#xfc;"
732
-d="M316 395c0 -32.667 6.16406 -63.335 18.4971 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 6.33301 91 19s53.834 29.834 75.501 51.501s38.834 46.834 51.501 75.501s19 59 19 91v711h158v-1106h-158v79
733
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM313.997 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23
734
-s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM629.997 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23
735
-s-23 34 -23 56z" />
736
- <glyph glyph-name="yacute" unicode="&#xfd;"
737
-d="M316 395c0 -32.667 6.16504 -63.335 18.498 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 60.333 21.5 99v711h158v-1185
738
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158h237c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158
739
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM394.998 1264l-79 79l395 237l79 -79z" />
740
- <glyph glyph-name="thorn" unicode="&#xfe;"
741
-d="M948 474c0 -79.333 -14 -148.498 -42 -207.498s-66.667 -108.333 -116 -148s-107.833 -69.334 -175.5 -89.001s-140.834 -29.5 -219.501 -29.5h-80v-473h-157v1895h158v-474h79c78.667 0 151.834 -9.83301 219.501 -29.5s126.167 -49.334 175.5 -89.001
742
-s88 -89.167 116 -148.5s42 -128.333 42 -207zM315 158.002l159 0.00390625c13.333 0 30.333 2.33301 51 7s42.667 12.167 66 22.5s46.833 23.666 70.5 39.999s45 36.166 64 59.499s34.5 50.5 46.5 81.5s18 66.167 18 105.5s-6 74.5 -18 105.5s-27.5 58.167 -46.5 81.5
743
-s-40.333 43.166 -64 59.499s-47.167 29.666 -70.5 39.999s-45.333 17.833 -66 22.5s-37.667 7 -51 7h-158z" />
744
- <glyph glyph-name="ydieresis" unicode="&#xff;"
745
-d="M316 395c0 -32.667 6.16504 -63.335 18.498 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 60.333 21.5 99v711h158v-1185
746
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158h237c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158
747
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM313.998 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23
748
-s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM629.998 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23
749
-s-23 34 -23 56z" />
750
- <glyph glyph-name="Amacron" unicode="&#x100;"
751
-d="M158 1027c0 54.667 10.3311 106 30.998 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-1027h-158v632h-474v-632h-158v1027z
752
-M789.998 790l0.00390625 237c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
753
-s-18.5 -59.334 -18.5 -92.001v-237h474zM158.002 1580v158h790v-158h-790z" />
754
- <glyph glyph-name="amacron" unicode="&#x101;"
755
-d="M474 0c-43.333 0 -84.165 8.33203 -122.498 24.999s-71.833 39.334 -100.5 68.001s-51.334 62.167 -68.001 100.5s-25 79.166 -25 122.499s8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25h316v79
756
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v158h237c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-474z
757
-M474.001 473.999c-22 0 -42.5 -4.16895 -61.5 -12.502s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5s4.16699 -42.5 12.5 -61.5s19.666 -35.667 33.999 -50s31 -25.666 50 -33.999s39.5 -12.5 61.5 -12.5h316v316h-316zM158.001 1265v158
758
-h790v-158h-790z" />
759
- <glyph glyph-name="Abreve" unicode="&#x102;"
760
-d="M158 1027c0 54.667 10.3311 106 30.998 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-1027h-158v632h-474v-632h-158v1027z
761
-M789.998 790l0.00390625 237c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
762
-s-18.5 -59.334 -18.5 -92.001v-237h474zM551.002 1580c-39.333 0 -73.8311 9 -103.498 27s-54.334 41.833 -74.001 71.5s-34.5 63.5 -44.5 101.5s-15 76.667 -15 116h158c0 -20 0.333008 -39.333 1 -58s3.5 -35.5 8.5 -50.5s12.833 -27 23.5 -36s26 -13.5 46 -13.5
763
-s35.333 4.5 46 13.5s18.5 21 23.5 36s7.83301 31.833 8.5 50.5s1 38 1 58h158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
764
- <glyph glyph-name="abreve" unicode="&#x103;"
765
-d="M474 0c-43.333 0 -84.165 8.33203 -122.498 24.999s-71.833 39.334 -100.5 68.001s-51.334 62.167 -68.001 100.5s-25 79.166 -25 122.499s8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25h316v79
766
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v158h237c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-474z
767
-M474.001 473.999c-22 0 -42.5 -4.16895 -61.5 -12.502s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5s4.16699 -42.5 12.5 -61.5s19.666 -35.667 33.999 -50s31 -25.666 50 -33.999s39.5 -12.5 61.5 -12.5h316v316h-316zM551.001 1264
768
-c-39.333 0 -73.8311 9 -103.498 27s-54.334 41.833 -74.001 71.5s-34.5 63.5 -44.5 101.5s-15 76.667 -15 116h158c0 -20 0.333008 -39.333 1 -58s3.5 -35.5 8.5 -50.5s12.833 -27 23.5 -36s26 -13.5 46 -13.5s35.333 4.5 46 13.5s18.5 21 23.5 36s7.83301 31.833 8.5 50.5
769
-s1 38 1 58h158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
770
- <glyph glyph-name="Aogonek" unicode="&#x104;"
771
-d="M1 1027c0 54.667 10.3311 106 30.998 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-1027h-158v632h-474v-632h-158v1027zM632.998 790
772
-l0.00390625 237c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-237
773
-h474zM788.998 0c0 -39.333 5.35547 -73.501 16.0674 -102.501s28.4531 -50.833 53.2236 -65.5s57.4072 -21.667 97.9102 -21s90.5459 11 150.129 31v-158c-78.998 -20 -148.289 -25.833 -207.872 -17.5s-109.291 27.333 -149.124 57
774
-c-39.834 29.667 -69.626 68.334 -89.375 116.001s-29.624 101.167 -29.624 160.5h158.665z" />
775
- <glyph glyph-name="aogonek" unicode="&#x105;"
776
-d="M474 0c-43.333 0 -84.165 8.33203 -122.498 24.999s-71.833 39.334 -100.5 68.001s-51.334 62.167 -68.001 100.5s-25 79.166 -25 122.499s8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25h316v79
777
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v158h237c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-474z
778
-M474.001 473.999c-22 0 -42.5 -4.16895 -61.5 -12.502s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5s4.16699 -42.5 12.5 -61.5s19.666 -35.667 33.999 -50s31 -25.666 50 -33.999s39.5 -12.5 61.5 -12.5h316v316h-316z
779
-M632.001 -0.00292969c0 -39.333 5.33398 -73.501 16.001 -102.501s28.334 -50.833 53.001 -65.5s57.167 -21.667 97.5 -21s90.166 11 149.499 31v-158c-78.667 -20 -147.667 -25.833 -207 -17.5s-108.833 27.333 -148.5 57s-69.334 68.334 -89.001 116.001
780
-s-29.5 101.167 -29.5 160.5h158z" />
781
- <glyph glyph-name="Cacute" unicode="&#x106;"
782
-d="M560.701 1264c-34.3486 0 -66.3398 -6.16309 -95.9736 -18.4961s-55.2266 -29.333 -76.7783 -51s-38.5576 -46.834 -51.0176 -75.501s-18.6895 -59.334 -18.6895 -92.001v-632c0 -32.667 6.22949 -63.334 18.6895 -92.001s29.4658 -53.834 51.0176 -75.501
783
-s47.1445 -38.667 76.7783 -51s61.625 -18.5 95.9736 -18.5c28.2871 0 54.8906 3.83301 79.8105 11.5c24.9189 7.66699 47.6494 18.5 68.1914 32.5s38.3896 30.667 53.5439 50c15.1533 19.333 26.7715 40.666 34.8535 63.999h159.62
784
-c-9.42871 -45.333 -25.9297 -87.333 -49.502 -126c-23.5732 -38.667 -52.7021 -72 -87.3877 -100s-73.917 -50 -117.694 -66s-90.9229 -24 -141.436 -24c-56.5742 0 -109.275 10.333 -158.104 31s-91.4287 48.834 -127.799 84.501
785
-c-36.3682 35.667 -64.8232 77.5 -85.3652 125.5s-30.8125 99.333 -30.8125 154v632c0 54.667 10.2705 106 30.8125 154s48.9971 89.833 85.3652 125.5c36.3701 35.667 78.9697 63.834 127.799 84.501s101.53 31 158.104 31c50.5127 0 97.8262 -8 141.94 -24
786
-s83.3457 -38.167 117.694 -66.5s63.3096 -61.833 86.8828 -100.5c23.5723 -38.667 40.0732 -80.334 49.502 -125.001h-159.62c-8.08203 22.667 -19.7002 43.667 -34.8535 63c-15.1543 19.333 -32.834 36 -53.0381 50c-20.2061 14 -42.9365 25 -68.1924 33
787
-c-25.2568 8 -52.0283 12 -80.3154 12zM395 1580l-79 79l395 237l79 -79z" />
788
- <glyph glyph-name="cacute" unicode="&#x107;"
789
-d="M316 395c0 -32.667 7 -63.332 21 -91.999s32.5 -53.834 55.5 -75.501s49.667 -38.667 80 -51s61.833 -18.5 94.5 -18.5c26 0 50.667 3.83301 74 11.5s44.666 18.5 63.999 32.5s36.333 30.667 51 50s26 40.666 34 63.999h158
790
-c-9.33301 -45.333 -25.833 -87.166 -49.5 -125.499s-52.5 -71.666 -86.5 -99.999s-72.333 -50.5 -115 -66.5s-88 -24 -136 -24c-54.667 0 -106.334 10.333 -155.001 31s-91.334 48.834 -128.001 84.501s-65.834 77.5 -87.501 125.5s-32.5 99.333 -32.5 154v316
791
-c0 54.667 10.833 106 32.5 154s50.834 89.833 87.501 125.5s79.334 63.834 128.001 84.501s100.334 31 155.001 31c48 0 93.333 -8 136 -24s81 -38.167 115 -66.5s62.833 -61.833 86.5 -100.5s40.167 -80.334 49.5 -125.001h-158c-8 22.667 -19.333 43.667 -34 63
792
-s-31.667 36 -51 50s-40.666 25 -63.999 33s-48 12 -74 12c-32.667 0 -64.167 -6.16699 -94.5 -18.5s-57 -29.333 -80 -51s-41.5 -46.834 -55.5 -75.501s-21 -59.334 -21 -92.001v-316zM395 1264l-79 79l395 237l79 -79z" />
793
- <glyph glyph-name="Ccircumflex" unicode="&#x108;"
794
-d="M560.701 1264c-34.3486 0 -66.3398 -6.16309 -95.9736 -18.4961s-55.2266 -29.333 -76.7783 -51s-38.5576 -46.834 -51.0176 -75.501s-18.6895 -59.334 -18.6895 -92.001v-632c0 -32.667 6.22949 -63.334 18.6895 -92.001s29.4658 -53.834 51.0176 -75.501
795
-s47.1445 -38.667 76.7783 -51s61.625 -18.5 95.9736 -18.5c28.2871 0 54.8906 3.83301 79.8105 11.5c24.9189 7.66699 47.6494 18.5 68.1914 32.5s38.3896 30.667 53.5439 50c15.1533 19.333 26.7715 40.666 34.8535 63.999h159.62
796
-c-9.42871 -45.333 -25.9297 -87.333 -49.502 -126c-23.5732 -38.667 -52.7021 -72 -87.3877 -100s-73.917 -50 -117.694 -66s-90.9229 -24 -141.436 -24c-56.5742 0 -109.275 10.333 -158.104 31s-91.4287 48.834 -127.799 84.501
797
-c-36.3682 35.667 -64.8232 77.5 -85.3652 125.5s-30.8125 99.333 -30.8125 154v632c0 54.667 10.2705 106 30.8125 154s48.9971 89.833 85.3652 125.5c36.3701 35.667 78.9697 63.834 127.799 84.501s101.53 31 158.104 31c50.5127 0 97.8262 -8 141.94 -24
798
-s83.3457 -38.167 117.694 -66.5s63.3096 -61.833 86.8828 -100.5c23.5723 -38.667 40.0732 -80.334 49.502 -125.001h-159.62c-8.08203 22.667 -19.7002 43.667 -34.8535 63c-15.1543 19.333 -32.834 36 -53.0381 50c-20.2061 14 -42.9365 25 -68.1924 33
799
-c-25.2568 8 -52.0283 12 -80.3154 12zM553 1896l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
800
- <glyph glyph-name="ccircumflex" unicode="&#x109;"
801
-d="M316 395c0 -32.667 7 -63.332 21 -91.999s32.5 -53.834 55.5 -75.501s49.667 -38.667 80 -51s61.833 -18.5 94.5 -18.5c26 0 50.667 3.83301 74 11.5s44.666 18.5 63.999 32.5s36.333 30.667 51 50s26 40.666 34 63.999h158
802
-c-9.33301 -45.333 -25.833 -87.166 -49.5 -125.499s-52.5 -71.666 -86.5 -99.999s-72.333 -50.5 -115 -66.5s-88 -24 -136 -24c-54.667 0 -106.334 10.333 -155.001 31s-91.334 48.834 -128.001 84.501s-65.834 77.5 -87.501 125.5s-32.5 99.333 -32.5 154v316
803
-c0 54.667 10.833 106 32.5 154s50.834 89.833 87.501 125.5s79.334 63.834 128.001 84.501s100.334 31 155.001 31c48 0 93.333 -8 136 -24s81 -38.167 115 -66.5s62.833 -61.833 86.5 -100.5s40.167 -80.334 49.5 -125.001h-158c-8 22.667 -19.333 43.667 -34 63
804
-s-31.667 36 -51 50s-40.666 25 -63.999 33s-48 12 -74 12c-32.667 0 -64.167 -6.16699 -94.5 -18.5s-57 -29.333 -80 -51s-41.5 -46.834 -55.5 -75.501s-21 -59.334 -21 -92.001v-316zM551 1580l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
805
- <glyph glyph-name="Cdotaccent" unicode="&#x10a;"
806
-d="M560.701 1264c-34.3486 0 -66.3398 -6.16309 -95.9736 -18.4961s-55.2266 -29.333 -76.7783 -51s-38.5576 -46.834 -51.0176 -75.501s-18.6895 -59.334 -18.6895 -92.001v-632c0 -32.667 6.22949 -63.334 18.6895 -92.001s29.4658 -53.834 51.0176 -75.501
807
-s47.1445 -38.667 76.7783 -51s61.625 -18.5 95.9736 -18.5c28.2871 0 54.8906 3.83301 79.8105 11.5c24.9189 7.66699 47.6494 18.5 68.1914 32.5s38.3896 30.667 53.5439 50c15.1533 19.333 26.7715 40.666 34.8535 63.999h159.62
808
-c-9.42871 -45.333 -25.9297 -87.333 -49.502 -126c-23.5732 -38.667 -52.7021 -72 -87.3877 -100s-73.917 -50 -117.694 -66s-90.9229 -24 -141.436 -24c-56.5742 0 -109.275 10.333 -158.104 31s-91.4287 48.834 -127.799 84.501
809
-c-36.3682 35.667 -64.8232 77.5 -85.3652 125.5s-30.8125 99.333 -30.8125 154v632c0 54.667 10.2705 106 30.8125 154s48.9971 89.833 85.3652 125.5c36.3701 35.667 78.9697 63.834 127.799 84.501s101.53 31 158.104 31c50.5127 0 97.8262 -8 141.94 -24
810
-s83.3457 -38.167 117.694 -66.5s63.3096 -61.833 86.8828 -100.5c23.5723 -38.667 40.0732 -80.334 49.502 -125.001h-159.62c-8.08203 22.667 -19.7002 43.667 -34.8535 63c-15.1543 19.333 -32.834 36 -53.0381 50c-20.2061 14 -42.9365 25 -68.1924 33
811
-c-25.2568 8 -52.0283 12 -80.3154 12zM474 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
812
- <glyph glyph-name="cdotaccent" unicode="&#x10b;"
813
-d="M316 395c0 -32.667 7 -63.332 21 -91.999s32.5 -53.834 55.5 -75.501s49.667 -38.667 80 -51s61.833 -18.5 94.5 -18.5c26 0 50.667 3.83301 74 11.5s44.666 18.5 63.999 32.5s36.333 30.667 51 50s26 40.666 34 63.999h158
814
-c-9.33301 -45.333 -25.833 -87.166 -49.5 -125.499s-52.5 -71.666 -86.5 -99.999s-72.333 -50.5 -115 -66.5s-88 -24 -136 -24c-54.667 0 -106.334 10.333 -155.001 31s-91.334 48.834 -128.001 84.501s-65.834 77.5 -87.501 125.5s-32.5 99.333 -32.5 154v316
815
-c0 54.667 10.833 106 32.5 154s50.834 89.833 87.501 125.5s79.334 63.834 128.001 84.501s100.334 31 155.001 31c48 0 93.333 -8 136 -24s81 -38.167 115 -66.5s62.833 -61.833 86.5 -100.5s40.167 -80.334 49.5 -125.001h-158c-8 22.667 -19.333 43.667 -34 63
816
-s-31.667 36 -51 50s-40.666 25 -63.999 33s-48 12 -74 12c-32.667 0 -64.167 -6.16699 -94.5 -18.5s-57 -29.333 -80 -51s-41.5 -46.834 -55.5 -75.501s-21 -59.334 -21 -92.001v-316zM471 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23
817
-s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
818
- <glyph glyph-name="Ccaron" unicode="&#x10c;"
819
-d="M560.701 1264c-34.3486 0 -66.3398 -6.16309 -95.9736 -18.4961s-55.2266 -29.333 -76.7783 -51s-38.5576 -46.834 -51.0176 -75.501s-18.6895 -59.334 -18.6895 -92.001v-632c0 -32.667 6.22949 -63.334 18.6895 -92.001s29.4658 -53.834 51.0176 -75.501
820
-s47.1445 -38.667 76.7783 -51s61.625 -18.5 95.9736 -18.5c28.2871 0 54.8906 3.83301 79.8105 11.5c24.9189 7.66699 47.6494 18.5 68.1914 32.5s38.3896 30.667 53.5439 50c15.1533 19.333 26.7715 40.666 34.8535 63.999h159.62
821
-c-9.42871 -45.333 -25.9297 -87.333 -49.502 -126c-23.5732 -38.667 -52.7021 -72 -87.3877 -100s-73.917 -50 -117.694 -66s-90.9229 -24 -141.436 -24c-56.5742 0 -109.275 10.333 -158.104 31s-91.4287 48.834 -127.799 84.501
822
-c-36.3682 35.667 -64.8232 77.5 -85.3652 125.5s-30.8125 99.333 -30.8125 154v632c0 54.667 10.2705 106 30.8125 154s48.9971 89.833 85.3652 125.5c36.3701 35.667 78.9697 63.834 127.799 84.501s101.53 31 158.104 31c50.5127 0 97.8262 -8 141.94 -24
823
-s83.3457 -38.167 117.694 -66.5s63.3096 -61.833 86.8828 -100.5c23.5723 -38.667 40.0732 -80.334 49.502 -125.001h-159.62c-8.08203 22.667 -19.7002 43.667 -34.8535 63c-15.1543 19.333 -32.834 36 -53.0381 50c-20.2061 14 -42.9365 25 -68.1924 33
824
-c-25.2568 8 -52.0283 12 -80.3154 12zM316 1817l79 79l158 -158l158 158l79 -79l-237 -237z" />
825
- <glyph glyph-name="ccaron" unicode="&#x10d;"
826
-d="M316 395c0 -32.667 7 -63.332 21 -91.999s32.5 -53.834 55.5 -75.501s49.667 -38.667 80 -51s61.833 -18.5 94.5 -18.5c26 0 50.667 3.83301 74 11.5s44.666 18.5 63.999 32.5s36.333 30.667 51 50s26 40.666 34 63.999h158
827
-c-9.33301 -45.333 -25.833 -87.166 -49.5 -125.499s-52.5 -71.666 -86.5 -99.999s-72.333 -50.5 -115 -66.5s-88 -24 -136 -24c-54.667 0 -106.334 10.333 -155.001 31s-91.334 48.834 -128.001 84.501s-65.834 77.5 -87.501 125.5s-32.5 99.333 -32.5 154v316
828
-c0 54.667 10.833 106 32.5 154s50.834 89.833 87.501 125.5s79.334 63.834 128.001 84.501s100.334 31 155.001 31c48 0 93.333 -8 136 -24s81 -38.167 115 -66.5s62.833 -61.833 86.5 -100.5s40.167 -80.334 49.5 -125.001h-158c-8 22.667 -19.333 43.667 -34 63
829
-s-31.667 36 -51 50s-40.666 25 -63.999 33s-48 12 -74 12c-32.667 0 -64.167 -6.16699 -94.5 -18.5s-57 -29.333 -80 -51s-41.5 -46.834 -55.5 -75.501s-21 -59.334 -21 -92.001v-316zM314 1501l79 79l158 -158l158 158l79 -79l-237 -237z" />
830
- <glyph glyph-name="Dcaron" unicode="&#x10e;"
831
-d="M158 1422l395 0.00195312c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395
832
-v1422zM553 158.002c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237
833
-v-1106h237zM316 1817l79 79l158 -158l158 158l79 -79l-237 -237z" />
834
- <glyph glyph-name="dcaron" unicode="&#x10f;"
835
-d="M791 0l-158 -0.000976562v78c-25.333 -18.667 -53 -34.334 -83 -47.001c-48 -20.667 -99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154
836
-s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31c30 -13.333 57.667 -29.333 83 -48v395h158v-1422zM615 802.999c-12.667 28.667 -29.833 53.835 -51.5 75.502s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5
837
-s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5
838
-s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v325zM474.001 1659l79 79l158 -158l158 158l79 -79l-237 -237z" />
839
- <glyph glyph-name="Dcroat" unicode="&#x110;"
840
-d="M0 948h474v-158h-474v158zM158 1422l395 0.00195312c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501
841
-s-99.333 -31 -154 -31h-395v1422zM553 158.002c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
842
-s-59.334 18.5 -92.001 18.5h-237v-1106h237z" />
843
- <glyph glyph-name="dcroat" unicode="&#x111;"
844
-d="M948 0l-158 -0.000976562v78c-25.333 -18.667 -53 -34.334 -83 -47.001c-48 -20.667 -99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154
845
-s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31c30 -13.333 57.667 -29.333 83 -48v395h158v-1422zM772 802.999c-12.667 28.667 -29.833 53.835 -51.5 75.502s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5
846
-s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5
847
-s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v325zM631.797 1264h473.981v-158h-473.981v158z" />
848
- <glyph glyph-name="Emacron" unicode="&#x112;"
849
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-474h632v-158h-790v1422zM158 1580v158h790v-158h-790z" />
850
- <glyph glyph-name="emacron" unicode="&#x113;"
851
-d="M316 395c0 -32.667 6.16406 -63.333 18.4971 -92s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h395v-158h-395c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316
852
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-237h-632v-79zM315.997 632.001h474.004v79
853
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79zM158.001 1265v158
854
-h790v-158h-790z" />
855
- <glyph glyph-name="Ebreve" unicode="&#x114;"
856
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-474h632v-158h-790v1422zM553 1580c-39.333 0 -73.8311 9 -103.498 27s-54.334 41.833 -74.001 71.5s-34.5 63.5 -44.5 101.5s-15 76.667 -15 116h158c0 -20 0.333008 -39.333 1 -58s3.5 -35.5 8.5 -50.5
857
-s12.833 -27 23.5 -36s26 -13.5 46 -13.5s35.333 4.5 46 13.5s18.5 21 23.5 36s7.83301 31.833 8.5 50.5s1 38 1 58h158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
858
- <glyph glyph-name="ebreve" unicode="&#x115;"
859
-d="M316 395c0 -32.667 6.16406 -63.333 18.4971 -92s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h395v-158h-395c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316
860
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-237h-632v-79zM315.997 632.001h474.004v79
861
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79zM551.001 1264
862
-c-39.333 0 -73.8311 9 -103.498 27s-54.334 41.833 -74.001 71.5s-34.5 63.5 -44.5 101.5s-15 76.667 -15 116h158c0 -20 0.333008 -39.333 1 -58s3.5 -35.5 8.5 -50.5s12.833 -27 23.5 -36s26 -13.5 46 -13.5s35.333 4.5 46 13.5s18.5 21 23.5 36s7.83301 31.833 8.5 50.5
863
-s1 38 1 58h158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
864
- <glyph glyph-name="Edotaccent" unicode="&#x116;"
865
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-474h632v-158h-790v1422zM471 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
866
- <glyph glyph-name="edotaccent" unicode="&#x117;"
867
-d="M316 395c0 -32.667 6.16406 -63.333 18.4971 -92s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h395v-158h-395c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316
868
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-237h-632v-79zM315.997 632.001h474.004v79
869
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79zM471.001 1343
870
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
871
- <glyph glyph-name="Eogonek" unicode="&#x118;"
872
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-474h632v-158h-790v1422zM632 0c0 -39.333 5.33398 -73.501 16.001 -102.501s28.334 -50.833 53.001 -65.5s57.167 -21.667 97.5 -21s90.166 11 149.499 31v-158c-78.667 -20 -147.667 -25.833 -207 -17.5
873
-s-108.833 27.333 -148.5 57s-69.334 68.334 -89.001 116.001s-29.5 101.167 -29.5 160.5h158z" />
874
- <glyph glyph-name="eogonek" unicode="&#x119;"
875
-d="M316 395c0 -32.667 6.16406 -63.333 18.4971 -92s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h395v-158h-395c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316
876
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-237h-632v-79zM315.997 632.001h474.004v79
877
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79z
878
-M632.001 0.000976562c0 -39.333 5.33398 -73.501 16.001 -102.501s28.334 -50.833 53.001 -65.5s57.167 -21.667 97.5 -21s90.166 11 149.499 31v-158c-78.667 -20 -147.667 -25.833 -207 -17.5s-108.833 27.333 -148.5 57s-69.334 68.334 -89.001 116.001
879
-s-29.5 101.167 -29.5 160.5h158z" />
880
- <glyph glyph-name="Ecaron" unicode="&#x11a;"
881
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-474h632v-158h-790v1422zM316 1817l79 79l158 -158l158 158l79 -79l-237 -237z" />
882
- <glyph glyph-name="ecaron" unicode="&#x11b;"
883
-d="M316 395c0 -32.667 6.16406 -63.333 18.4971 -92s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h395v-158h-395c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316
884
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-237h-632v-79zM315.997 632.001h474.004v79
885
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79zM314.001 1501
886
-l79 79l158 -158l158 158l79 -79l-237 -237z" />
887
- <glyph glyph-name="Gcircumflex" unicode="&#x11c;"
888
-d="M790 158c0 -20 -8.16992 -39.3301 -24.5029 -57.9971s-36.5 -35.5 -60.5 -50.5s-49.833 -27 -77.5 -36s-52.5 -13.5 -74.5 -13.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632
889
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c48 0 93.333 -8 136 -24s81 -38.167 115 -66.5s62.833 -61.833 86.5 -100.5s40.167 -80.334 49.5 -125.001h-164c-8 22.667 -19.333 43.667 -34 63s-31.667 36 -51 50
890
-s-40.666 25 -63.999 33s-48 12 -74 12c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
891
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 8.66699 91 26s53.834 38.333 75.501 63s38.834 50.5 51.501 77.5s19 50.5 19 70.5v237h-158v158h316v-790h-158v158zM552.997 1896l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
892
- <glyph glyph-name="gcircumflex" unicode="&#x11d;"
893
-d="M316 -316l236.999 -0.00292969c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31
894
-s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c44.667 0 87 -7 127 -21s76.667 -33.667 110 -59v80h158v-1185
895
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158zM315.999 394.997c0 -32.667 6.16699 -63.3311 18.5 -91.998s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51
896
-s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 57 21.5 89v336c-1.33301 31.333 -8.5 60.833 -21.5 88.5s-30.167 51.667 -51.5 72s-46 36.5 -74 48.5s-58 18 -90 18c-32.667 0 -63.334 -6.16699 -92.001 -18.5
897
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM550.999 1580l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
898
- <glyph glyph-name="Gbreve" unicode="&#x11e;"
899
-d="M790 158c0 -20 -8.16992 -39.3301 -24.5029 -57.9971s-36.5 -35.5 -60.5 -50.5s-49.833 -27 -77.5 -36s-52.5 -13.5 -74.5 -13.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632
900
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c48 0 93.333 -8 136 -24s81 -38.167 115 -66.5s62.833 -61.833 86.5 -100.5s40.167 -80.334 49.5 -125.001h-164c-8 22.667 -19.333 43.667 -34 63s-31.667 36 -51 50
901
-s-40.666 25 -63.999 33s-48 12 -74 12c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
902
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 8.66699 91 26s53.834 38.333 75.501 63s38.834 50.5 51.501 77.5s19 50.5 19 70.5v237h-158v158h316v-790h-158v158zM550.997 1580c-39.333 0 -73.8311 9 -103.498 27s-54.334 41.833 -74.001 71.5
903
-s-34.5 63.5 -44.5 101.5s-15 76.667 -15 116h158c0 -20 0.333008 -39.333 1 -58s3.5 -35.5 8.5 -50.5s12.833 -27 23.5 -36s26 -13.5 46 -13.5s35.333 4.5 46 13.5s18.5 21 23.5 36s7.83301 31.833 8.5 50.5s1 38 1 58h158c0 -39.333 -5 -78 -15 -116
904
-s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
905
- <glyph glyph-name="gbreve" unicode="&#x11f;"
906
-d="M316 -316l236.999 -0.00292969c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31
907
-s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c44.667 0 87 -7 127 -21s76.667 -33.667 110 -59v80h158v-1185
908
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158zM315.999 394.997c0 -32.667 6.16699 -63.3311 18.5 -91.998s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51
909
-s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 57 21.5 89v336c-1.33301 31.333 -8.5 60.833 -21.5 88.5s-30.167 51.667 -51.5 72s-46 36.5 -74 48.5s-58 18 -90 18c-32.667 0 -63.334 -6.16699 -92.001 -18.5
910
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM550.999 1264c-39.333 0 -73.8311 9 -103.498 27s-54.334 41.833 -74.001 71.5s-34.5 63.5 -44.5 101.5s-15 76.667 -15 116h158c0 -20 0.333008 -39.333 1 -58
911
-s3.5 -35.5 8.5 -50.5s12.833 -27 23.5 -36s26 -13.5 46 -13.5s35.333 4.5 46 13.5s18.5 21 23.5 36s7.83301 31.833 8.5 50.5s1 38 1 58h158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
912
- <glyph glyph-name="Gdotaccent" unicode="&#x120;"
913
-d="M790 158c0 -20 -8.16992 -39.3301 -24.5029 -57.9971s-36.5 -35.5 -60.5 -50.5s-49.833 -27 -77.5 -36s-52.5 -13.5 -74.5 -13.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632
914
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c48 0 93.333 -8 136 -24s81 -38.167 115 -66.5s62.833 -61.833 86.5 -100.5s40.167 -80.334 49.5 -125.001h-164c-8 22.667 -19.333 43.667 -34 63s-31.667 36 -51 50
915
-s-40.666 25 -63.999 33s-48 12 -74 12c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
916
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 8.66699 91 26s53.834 38.333 75.501 63s38.834 50.5 51.501 77.5s19 50.5 19 70.5v237h-158v158h316v-790h-158v158zM470.997 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23
917
-s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
918
- <glyph glyph-name="gdotaccent" unicode="&#x121;"
919
-d="M316 -316l236.999 -0.00292969c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31
920
-s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c44.667 0 87 -7 127 -21s76.667 -33.667 110 -59v80h158v-1185
921
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158zM315.999 394.997c0 -32.667 6.16699 -63.3311 18.5 -91.998s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51
922
-s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 57 21.5 89v336c-1.33301 31.333 -8.5 60.833 -21.5 88.5s-30.167 51.667 -51.5 72s-46 36.5 -74 48.5s-58 18 -90 18c-32.667 0 -63.334 -6.16699 -92.001 -18.5
923
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM470.999 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23
924
-s-23 34 -23 56z" />
925
- <glyph glyph-name="Gcommaaccent" unicode="&#x122;"
926
-d="M790 158c0 -20 -8.16992 -39.3301 -24.5029 -57.9971s-36.5 -35.5 -60.5 -50.5s-49.833 -27 -77.5 -36s-52.5 -13.5 -74.5 -13.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632
927
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c48 0 93.333 -8 136 -24s81 -38.167 115 -66.5s62.833 -61.833 86.5 -100.5s40.167 -80.334 49.5 -125.001h-164c-8 22.667 -19.333 43.667 -34 63s-31.667 36 -51 50
928
-s-40.666 25 -63.999 33s-48 12 -74 12c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
929
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 8.66699 91 26s53.834 38.333 75.501 63s38.834 50.5 51.501 77.5s19 50.5 19 70.5v237h-158v158h316v-790h-158v158zM394.997 -630.997c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56
930
-s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5
931
-s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5
932
-s-64.167 -27 -103.5 -27z" />
933
- <glyph glyph-name="gcommaaccent" unicode="&#x123;"
934
-d="M316 -316l236.999 -0.00292969c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31
935
-s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c44.667 0 87 -7 127 -21s76.667 -33.667 110 -59v80h158v-1185
936
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158zM315.999 394.997c0 -32.667 6.16699 -63.3311 18.5 -91.998s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51
937
-s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 57 21.5 89v336c-1.33301 31.333 -8.5 60.833 -21.5 88.5s-30.167 51.667 -51.5 72s-46 36.5 -74 48.5s-58 18 -90 18c-32.667 0 -63.334 -6.16699 -92.001 -18.5
938
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM628.999 1896c22 0 40.665 -7.66797 55.998 -23.001s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23c-20 0 -35.333 -3.5 -46 -10.5s-18.5 -17.167 -23.5 -30.5
939
-s-7.83301 -29.833 -8.5 -49.5s-1 -42.167 -1 -67.5c22 0 42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999 -50s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5
940
-s-42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5v158c0 39.333 5 78 15 116s24.833 71.833 44.5 101.5s44.334 53.5 74.001 71.5s64.167 27 103.5 27z" />
941
- <glyph glyph-name="Hcircumflex" unicode="&#x124;"
942
-d="M158 1422h158v-632h474v632h158v-1422h-158v632h-474v-632h-158v1422zM553 1896l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
943
- <glyph glyph-name="hcircumflex" unicode="&#x125;"
944
-d="M790 711c0 32.667 -6.16699 63.333 -18.5 92s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-32 0 -62.167 -6 -90.5 -18s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1422h158v-396
945
-c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711zM551 1580l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
946
- <glyph glyph-name="Hbar" unicode="&#x126;"
947
-d="M158 1422h158v-632h474v632h158v-1422h-158v632h-474v-632h-158v1422zM158 969.967v136.996h790v-136.996h-790z" />
948
- <glyph glyph-name="hbar" unicode="&#x127;"
949
-d="M0 1264l158 -0.000976562v158h158v-158h158v-158h-158v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711
950
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-32 0 -62.167 -6 -90.5 -18s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1106h-158v158z" />
951
- <glyph glyph-name="Itilde" unicode="&#x128;"
952
-d="M158 158h316v1106h-316v158h790v-158h-316v-1106h316v-158h-790v158zM948 1817c-79.333 -158 -158.334 -237 -237.001 -237c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5
953
-s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38
954
-s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58z" />
955
- <glyph glyph-name="itilde" unicode="&#x129;"
956
-d="M946 1501c-79.333 -158 -158.334 -237 -237.001 -237c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36
957
-s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5
958
-c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58zM473.999 948h-158v158h316v-1106h-158v948z" />
959
- <glyph glyph-name="Imacron" unicode="&#x12a;"
960
-d="M158 158h316v1106h-316v158h790v-158h-316v-1106h316v-158h-790v158zM158 1580v158h790v-158h-790z" />
961
- <glyph glyph-name="imacron" unicode="&#x12b;"
962
-d="M158.798 1265v158h788.987v-158h-788.987zM474 948h-158v158h316v-1106h-158v948z" />
963
- <glyph glyph-name="Ibreve" unicode="&#x12c;"
964
-d="M158 158h316v1106h-316v158h790v-158h-316v-1106h316v-158h-790v158zM553 1580c-39.333 0 -73.8311 9 -103.498 27s-54.334 41.833 -74.001 71.5s-34.5 63.5 -44.5 101.5s-15 76.667 -15 116h158c0 -20 0.333008 -39.333 1 -58s3.5 -35.5 8.5 -50.5s12.833 -27 23.5 -36
965
-s26 -13.5 46 -13.5s35.333 4.5 46 13.5s18.5 21 23.5 36s7.83301 31.833 8.5 50.5s1 38 1 58h158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
966
- <glyph glyph-name="ibreve" unicode="&#x12d;"
967
-d="M551 1264c-39.333 0 -73.8311 9 -103.498 27s-54.334 41.833 -74.001 71.5s-34.5 63.5 -44.5 101.5s-15 76.667 -15 116h158c0 -20 0.333008 -39.333 1 -58s3.5 -35.5 8.5 -50.5s12.833 -27 23.5 -36s26 -13.5 46 -13.5s35.333 4.5 46 13.5s18.5 21 23.5 36
968
-s7.83301 31.833 8.5 50.5s1 38 1 58h158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27zM474.002 948h-158v158h316v-1106h-158v948z" />
969
- <glyph glyph-name="Iogonek" unicode="&#x12e;"
970
-d="M158 158h316v1106h-316v158h790v-158h-316v-1106h316v-158h-790v158zM632 0c0 -39.333 5.33398 -73.501 16.001 -102.501s28.334 -50.833 53.001 -65.5s57.167 -21.667 97.5 -21s90.166 11 149.499 31v-158c-78.667 -20 -147.667 -25.833 -207 -17.5
971
-s-108.833 27.333 -148.5 57s-69.334 68.334 -89.001 116.001s-29.5 101.167 -29.5 160.5h158z" />
972
- <glyph glyph-name="iogonek" unicode="&#x12f;"
973
-d="M474 948h-158v158h316v-1106h-158v948zM474 1422h158v-158h-158v158zM631 0c0 -39.333 5.33398 -73.501 16.001 -102.501s28.334 -50.833 53.001 -65.5s57.167 -21.667 97.5 -21s90.166 11 149.499 31v-158c-78.667 -20 -147.667 -25.833 -207 -17.5
974
-s-108.833 27.333 -148.5 57s-69.334 68.334 -89.001 116.001s-29.5 101.167 -29.5 160.5h158z" />
975
- <glyph glyph-name="Idotaccent" unicode="&#x130;"
976
-d="M158 158h316v1106h-316v158h790v-158h-316v-1106h316v-158h-790v158zM474 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
977
- <glyph glyph-name="dotlessi" unicode="&#x131;"
978
-d="M474 948h-158v158h316v-1106h-158v948z" />
979
- <glyph glyph-name="IJ" unicode="&#x132;"
980
-d="M0 158h158v1106h-158v158h474v-158h-158v-1106h158v-158h-474v158zM711 0c-39.333 0 -73.8301 5.33301 -103.497 16s-54.334 28.334 -74.001 53.001s-34.5 57.167 -44.5 97.5s-15 90.166 -15 149.499h163c-1.33301 -20 -1.83301 -39.333 -1.5 -58
981
-s2.66602 -35.5 6.99902 -50.5s11.833 -27 22.5 -36s26 -13.5 46 -13.5s35.333 4.5 46 13.5s18.5 21 23.5 36s7.83301 31.833 8.5 50.5s1 38 1 58v1106h158v-1106c0 -59.333 -5 -109.166 -15 -149.499s-24.833 -72.833 -44.5 -97.5s-44.334 -42.334 -74.001 -53.001
982
-s-64.167 -16 -103.5 -16z" />
983
- <glyph glyph-name="ij" unicode="&#x133;"
984
-d="M317 948h-158v158h316v-1106h-158v948zM317 1422h158v-158h-158v158zM316 -158h237c158 0 237 79 237 237v869h-158v158h316v-1106c0 -39.333 -9 -78 -27 -116s-41.833 -71.833 -71.5 -101.5s-63.5 -53.5 -101.5 -71.5s-76.667 -27 -116 -27h-316v158zM790 1422h158v-158
985
-h-158v158z" />
986
- <glyph glyph-name="Jcircumflex" unicode="&#x134;"
987
-d="M158 474h157.998v-79c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158v-1027
988
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v79zM552.998 1896l237 -237l-79 -79l-158 158
989
-l-158 -158l-79 79z" />
990
- <glyph glyph-name="jcircumflex" unicode="&#x135;"
991
-d="M158 -158h237c158 0 237 79 237 237v869h-158v158h316v-1106c0 -39.333 -9 -78 -27 -116s-41.833 -71.833 -71.5 -101.5s-63.5 -53.5 -101.5 -71.5s-76.667 -27 -116 -27h-316v158zM550 1580l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
992
- <glyph glyph-name="Kcommaaccent" unicode="&#x136;"
993
-d="M316 761l454 661h178l-474 -711l474 -711h-180l-452 666v-666h-158v1422h158v-661zM395 -631c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5
994
-s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5
995
-s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
996
- <glyph glyph-name="kcommaaccent" unicode="&#x137;"
997
-d="M316 632h38l400 474h194l-453 -553l453 -553h-194l-400 474h-38v-474h-158v1422h158v-790zM395 -631c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5
998
-s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5
999
-s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1000
- <glyph glyph-name="kgreenlandic" unicode="&#x138;"
1001
-d="M316 600l439 506h193l-474 -553l474 -553h-195l-437 509v-509h-158v1106h158v-506z" />
1002
- <glyph glyph-name="Lacute" unicode="&#x139;"
1003
-d="M158 1422h158v-1264h632v-158h-790v1422zM395 1580l-79 79l395 237l79 -79z" />
1004
- <glyph glyph-name="lacute" unicode="&#x13a;"
1005
-d="M474 1264h-158v158h316v-1422h-158v1264zM395 1580l-79 79l395 237l79 -79z" />
1006
- <glyph glyph-name="Lcommaaccent" unicode="&#x13b;"
1007
-d="M158 1422h158v-1264h632v-158h-790v1422zM394.746 -627.496c-21.9297 0 -40.5391 7.62695 -55.8242 22.8877c-15.2842 15.2607 -22.9268 33.8389 -22.9268 55.7344s7.64258 40.4736 22.9268 55.7344c15.2852 15.2607 33.8926 22.8906 55.8223 22.8906
1008
-c19.9365 0 35.2217 3.4834 45.8545 10.4502s18.4414 17.085 23.4248 30.3545c4.98438 13.2705 7.80859 29.6924 8.47363 49.2656s0.99707 41.9658 0.99707 67.1787c-21.9307 0 -42.3662 4.14648 -61.3066 12.4404c-18.9395 8.29395 -35.5527 19.5732 -49.8408 33.8379
1009
-s-25.5859 30.8525 -33.8936 49.7627c-8.30664 18.9092 -12.46 39.3115 -12.46 61.207s4.15332 42.2979 12.46 61.207c8.30762 18.9092 19.6055 35.4961 33.8936 49.7607s30.9014 25.5439 49.8408 33.8379c18.9404 8.29395 39.376 12.4414 61.3066 12.4414
1010
-c21.9297 0 42.3643 -4.14746 61.3047 -12.4414c18.9395 -8.29395 35.5527 -19.5732 49.8408 -33.8379s25.5859 -30.8516 33.8936 -49.7607c8.30664 -18.9092 12.46 -39.3115 12.46 -61.207v-157.248c0 -39.1455 -4.98438 -77.6279 -14.9521 -115.447
1011
-s-24.7539 -71.4922 -44.3584 -101.018s-44.1924 -53.2451 -73.7646 -71.1592c-29.5732 -17.915 -63.9639 -26.8721 -103.172 -26.8721z" />
1012
- <glyph glyph-name="lcommaaccent" unicode="&#x13c;"
1013
-d="M474 1264h-158v158h316v-1422h-158v1264zM395 -631c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5
1014
-s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5
1015
-v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1016
- <glyph glyph-name="Lcaron" unicode="&#x13d;"
1017
-d="M158 1422h158v-1264h632v-158h-790v1422zM471 1262c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5
1018
-s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5
1019
-v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1020
- <glyph glyph-name="lcaron" unicode="&#x13e;"
1021
-d="M316 1264h-158v158h316v-1422h-158v1264zM711 1264c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5
1022
-s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5
1023
-v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1024
- <glyph glyph-name="Ldot" unicode="&#x13f;"
1025
-d="M158 1422h158v-1264h632v-158h-790v1422zM632 790c0 22 4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5
1026
-s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999 -50s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5s-42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5z" />
1027
- <glyph glyph-name="ldot" unicode="&#x140;"
1028
-d="M316 1264h-158v158h316v-1422h-158v1264zM632 790c0 22 4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5
1029
-s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999 -50s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5s-42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5z" />
1030
- <glyph glyph-name="Lslash" unicode="&#x141;"
1031
-d="M19 455l553 553l120 -120l-553 -553zM158 1422h158v-1264h632v-158h-790v1422z" />
1032
- <glyph glyph-name="lslash" unicode="&#x142;"
1033
-d="M269 466l205 136v662h-158v158h316v-714l111 74l94 -142l-205 -137v-503h-158v398l-111 -74z" />
1034
- <glyph glyph-name="Nacute" unicode="&#x143;"
1035
-d="M158 0v1422h158l474 -1052v1052h158v-1422h-158l-474 1052v-1052h-158zM395 1580l-79 79l395 237l79 -79z" />
1036
- <glyph glyph-name="nacute" unicode="&#x144;"
1037
-d="M553 948c-32 0 -62.167 -6.00098 -90.5 -18.001s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1106h158v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501
1038
-s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM395 1265.02l-79 79.502l395 238.504l79 -79.502z" />
1039
- <glyph glyph-name="Ncommaaccent" unicode="&#x145;"
1040
-d="M158 0v1422h158l474 -1052v1052h158v-1422h-158l-474 1052v-1052h-158zM395 -631c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5
1041
-c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999
1042
-s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1043
- <glyph glyph-name="ncommaaccent" unicode="&#x146;"
1044
-d="M553 948c-32 0 -62.167 -6.00098 -90.5 -18.001s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1106h158v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501
1045
-s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM395 -631.001c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56
1046
-s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5
1047
-s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5
1048
-s-64.167 -27 -103.5 -27z" />
1049
- <glyph glyph-name="Ncaron" unicode="&#x147;"
1050
-d="M158 0v1422h158l474 -1052v1052h158v-1422h-158l-474 1052v-1052h-158zM316 1817l79 79l158 -158l158 158l79 -79l-237 -237z" />
1051
- <glyph glyph-name="ncaron" unicode="&#x148;"
1052
-d="M553 948c-32 0 -62.167 -6.00098 -90.5 -18.001s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1106h158v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501
1053
-s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM314 1501l79 79l158 -158l158 158l79 -79l-237 -237z" />
1054
- <glyph glyph-name="napostrophe" unicode="&#x149;"
1055
-d="M553 948c-32 0 -62.167 -6.00098 -90.5 -18.001s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1106h158v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501
1056
-s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM553 1027c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56
1057
-s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5
1058
-s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5
1059
-s-64.167 -27 -103.5 -27z" />
1060
- <glyph glyph-name="Eng" unicode="&#x14a;"
1061
-d="M549 -474c-48 0 -93.832 8 -137.499 24s-82.667 38.167 -117 66.5s-63.5 61.666 -87.5 99.999s-40.333 80.166 -49 125.499h164c8.66699 -23.333 20.5 -44.666 35.5 -63.999s32.333 -36 52 -50s41.334 -24.833 65.001 -32.5s48.5 -11.5 74.5 -11.5
1062
-c32.667 0 63.667 6.16699 93 18.5s54.666 29.333 75.999 51s38.333 46.834 51 75.501s19 59.334 19 92.001v79h-5l-465 1050v-1050h-158v1422h165l465 -1047v1047h158v-1501c0 -54.667 -10.5 -106 -31.5 -154s-49.5 -89.833 -85.5 -125.5s-78.333 -63.834 -127 -84.501
1063
-s-100.334 -31 -155.001 -31z" />
1064
- <glyph glyph-name="eng" unicode="&#x14b;"
1065
-d="M316 -158v-157.999h316c39.333 0 78 9 116 27c28 13.333 54.167 30.333 78.5 51s45.5 43.667 63.5 69s32.167 52.333 42.5 81s15.5 58 15.5 88v711c0 54.667 -10.333 106 -31 154s-48.834 89.833 -84.501 125.5s-77.5 63.834 -125.5 84.501s-99.333 31 -154 31
1066
-c-44.667 0 -87 -7 -127 -21s-76.667 -33.667 -110 -59v80h-158v-1106h158v721c1.33301 31.333 8.33301 60.833 21 88.5s29.667 51.667 51 72s46.166 36.5 74.499 48.5s58.5 18 90.5 18c32.667 0 63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51
1067
-s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001v-632c0 -158 -79 -237 -237 -237h-237z" />
1068
- <glyph glyph-name="Omacron" unicode="&#x14c;"
1069
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154
1070
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632zM553 1264c-32.667 0 -63.334 -6.16699 -92.001 -18.5
1071
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5
1072
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM158 1580v158h790v-158h-790z" />
1073
- <glyph glyph-name="omacron" unicode="&#x14d;"
1074
-d="M158 711c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154
1075
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316zM316 395c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
1076
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
1077
-s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM158 1265v158h790v-158h-790z" />
1078
- <glyph glyph-name="Obreve" unicode="&#x14e;"
1079
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154
1080
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632zM553 1264c-32.667 0 -63.334 -6.16699 -92.001 -18.5
1081
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5
1082
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM552.51 1580c-39.583 0 -74.3027 9 -104.157 27
1083
-c-29.8555 18 -54.6787 41.833 -74.4697 71.5c-19.792 29.667 -34.7197 63.5 -44.7832 101.5s-15.0957 76.667 -15.0957 116h159.003c0 -20 0.335938 -39.333 1.00684 -58s3.52246 -35.5 8.55469 -50.5s12.915 -27 23.6494 -36s26.165 -13.5 46.291 -13.5
1084
-c20.1279 0 35.5586 4.5 46.293 13.5s18.6172 21 23.6484 36c5.03223 15 7.88379 31.833 8.55469 50.5s1.00586 38 1.00586 58h159.003c0 -39.333 -5.03125 -78 -15.0947 -116s-24.9912 -71.833 -44.7832 -101.5s-44.6152 -53.5 -74.4697 -71.5s-64.5732 -27 -104.156 -27z
1085
-" />
1086
- <glyph glyph-name="obreve" unicode="&#x14f;"
1087
-d="M158 711c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154
1088
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316zM316 395c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
1089
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
1090
-s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM551 1264c-39.333 0 -73.8311 9 -103.498 27s-54.334 41.833 -74.001 71.5s-34.5 63.5 -44.5 101.5
1091
-s-15 76.667 -15 116h158c0 -20 0.333008 -39.333 1 -58s3.5 -35.5 8.5 -50.5s12.833 -27 23.5 -36s26 -13.5 46 -13.5s35.333 4.5 46 13.5s18.5 21 23.5 36s7.83301 31.833 8.5 50.5s1 38 1 58h158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5
1092
-s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1093
- <glyph glyph-name="Ohungarumlaut" unicode="&#x150;"
1094
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154
1095
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632zM553 1264c-32.667 0 -63.334 -6.16699 -92.001 -18.5
1096
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5
1097
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM225.158 1580l-65.8311 79l329.158 237l65.832 -79z
1098
-M619.158 1580l-65.8311 79l329.158 237l65.832 -79z" />
1099
- <glyph glyph-name="ohungarumlaut" unicode="&#x151;"
1100
-d="M158 711c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154
1101
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316zM316 395c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
1102
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
1103
-s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM225.158 1264l-65.8311 79l329.158 237l65.832 -79zM618.339 1265.02l-65.668 79.502l328.339 238.504
1104
-l65.668 -79.502z" />
1105
- <glyph glyph-name="OE" unicode="&#x152;"
1106
-d="M632 790h158.001v-158h-158v-474h316v-158h-474v15c-24 -10 -50.333 -15 -79 -15c-39.333 0 -73.833 9.5 -103.5 28.5s-54.334 45.667 -74.001 80s-34.5 75.833 -44.5 124.5s-15 102.667 -15 162v632c0 59.333 5 113.333 15 162s24.833 90.167 44.5 124.5
1107
-s44.334 61 74.001 80s64.167 28.5 103.5 28.5c27.333 0 53.666 -5.33301 78.999 -16v16h474v-158h-316v-474zM395.001 1264c-20 0 -35.333 -5 -46 -15s-18.5 -24.833 -23.5 -44.5s-7.83301 -44.334 -8.5 -74.001s-1 -64.167 -1 -103.5v-632
1108
-c0 -39.333 0.333008 -73.833 1 -103.5s3.5 -54.334 8.5 -74.001s12.833 -34.5 23.5 -44.5s26 -15 46 -15c17.333 0 31.166 5 41.499 15s18.333 24.833 24 44.5s9.33398 44.334 11.001 74.001s2.5 64.167 2.5 103.5v632c0 39.333 -0.333008 73.833 -1 103.5
1109
-s-3.5 54.334 -8.5 74.001s-12.833 34.5 -23.5 44.5s-26 15 -46 15z" />
1110
- <glyph glyph-name="oe" unicode="&#x153;"
1111
-d="M158 711c0 59.333 4.99902 113.333 14.999 162s24.833 90.167 44.5 124.5s44.334 61 74.001 80s64.167 28.5 103.5 28.5s73.666 -9.66699 102.999 -29c20.667 -12.667 39 -29.334 55 -50.001c16 20.667 34 37.334 54 50.001c30 19.333 64.667 29 104 29
1112
-s73.833 -9.5 103.5 -28.5s54.334 -45.667 74.001 -80s34.5 -75.833 44.5 -124.5s15 -102.667 15 -162v-237h-316v-79v-22c0 -30.667 0.333008 -58 1 -82c0.666992 -29.333 3.5 -53.833 8.5 -73.5s12.833 -34.5 23.5 -44.5s26 -15 46 -15h237v-158h-237
1113
-c-39.333 -0 -74 9.33301 -104 28c-20 13.333 -38 30.333 -54 51c-16 -20.667 -34.333 -37.667 -55 -51c-29.333 -18.667 -63.666 -28 -102.999 -28s-73.833 9.5 -103.5 28.5s-54.334 45.667 -74.001 80s-34.5 75.833 -44.5 124.5s-15 102.667 -15 162v316zM315.999 395
1114
-c0 -39.333 0.333008 -73.8311 1 -103.498s3.5 -54.334 8.5 -74.001s12.833 -34.5 23.5 -44.5s26 -15 46 -15c19.333 0 34.333 5 45 15s18.5 24.833 23.5 44.5s7.83301 44.167 8.5 73.5c0.666992 24 1.33398 51.333 2.00098 82v22v316v22
1115
-c-0.666992 30.667 -1.33398 57.667 -2.00098 81c-0.666992 30 -3.5 54.833 -8.5 74.5s-12.833 34.5 -23.5 44.5s-25.667 15 -45 15c-20 0 -35.333 -5 -46 -15s-18.5 -24.833 -23.5 -44.5s-7.83301 -44.334 -8.5 -74.001s-1 -64.167 -1 -103.5v-316zM631.999 632.002
1116
-l158 -0.000976562v79c0 32.667 -0.5 63.334 -1.5 92.001s-4 53.834 -9 75.501s-12.833 38.667 -23.5 51s-25.667 18.5 -45 18.5c-20 0 -35.333 -6.16699 -46 -18.5s-18.5 -29.333 -23.5 -51s-7.83301 -46.834 -8.5 -75.501c-0.666992 -22 -1 -45.333 -1 -70v-22v-79z" />
1117
- <glyph glyph-name="Racute" unicode="&#x154;"
1118
-d="M643 642c208 -426 311.996 -639.999 311.996 -641.999h-181c-205.333 419.333 -308 630 -308 632h-150v-632h-158v1422h395c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154c0 -46.667 -7.66699 -91 -23 -133
1119
-s-36.666 -80 -63.999 -114s-59.666 -63 -96.999 -87s-77.666 -41 -120.999 -51zM552.996 790.001c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001
1120
-s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237zM394.996 1580l-79 79l395 237l79 -79z" />
1121
- <glyph glyph-name="racute" unicode="&#x155;"
1122
-d="M158 0l0.000976562 1106h158v-160c11.333 20.667 30 40.5 56 59.5s54.5 36 85.5 51s62.333 27 94 36s58.5 13.5 80.5 13.5c48 0 89.167 -8 123.5 -24s63.666 -38.167 87.999 -66.5s44.166 -61.833 59.499 -100.5s27.666 -80.334 36.999 -125.001h-164l-21.5 63
1123
-c-6.33301 19.333 -14.333 36 -24 50s-22 25 -37 33s-35.5 12 -61.5 12c-21.333 0 -44 -4.16699 -68 -12.5s-47.667 -20 -71 -35s-45.666 -32.667 -66.999 -53s-40.166 -42.166 -56.499 -65.499s-29.333 -47.833 -39 -73.5s-14.5 -51.5 -14.5 -77.5v-631h-158zM395.001 1264
1124
-l-79 79l395 237l79 -79z" />
1125
- <glyph glyph-name="Rcommaaccent" unicode="&#x156;"
1126
-d="M643 642c208 -426 311.996 -639.999 311.996 -641.999h-181c-205.333 419.333 -308 630 -308 632h-150v-632h-158v1422h395c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154c0 -46.667 -7.66699 -91 -23 -133
1127
-s-36.666 -80 -63.999 -114s-59.666 -63 -96.999 -87s-77.666 -41 -120.999 -51zM552.996 790.001c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001
1128
-s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237zM394.996 -631.003c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5
1129
-s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5
1130
-s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1131
- <glyph glyph-name="rcommaaccent" unicode="&#x157;"
1132
-d="M158 0l0.000976562 1106h158v-160c11.333 20.667 30 40.5 56 59.5s54.5 36 85.5 51s62.333 27 94 36s58.5 13.5 80.5 13.5c48 0 89.167 -8 123.5 -24s63.666 -38.167 87.999 -66.5s44.166 -61.833 59.499 -100.5s27.666 -80.334 36.999 -125.001h-164l-21.5 63
1133
-c-6.33301 19.333 -14.333 36 -24 50s-22 25 -37 33s-35.5 12 -61.5 12c-21.333 0 -44 -4.16699 -68 -12.5s-47.667 -20 -71 -35s-45.666 -32.667 -66.999 -53s-40.166 -42.166 -56.499 -65.499s-29.333 -47.833 -39 -73.5s-14.5 -51.5 -14.5 -77.5v-631h-158zM238.001 -631
1134
-c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50
1135
-s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116
1136
-s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1137
- <glyph glyph-name="Rcaron" unicode="&#x158;"
1138
-d="M643 642c208 -426 311.996 -639.999 311.996 -641.999h-181c-205.333 419.333 -308 630 -308 632h-150v-632h-158v1422h395c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154c0 -46.667 -7.66699 -91 -23 -133
1139
-s-36.666 -80 -63.999 -114s-59.666 -63 -96.999 -87s-77.666 -41 -120.999 -51zM552.996 790.001c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001
1140
-s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237zM313.996 1817l79 79l158 -158l158 158l79 -79l-237 -237z" />
1141
- <glyph glyph-name="rcaron" unicode="&#x159;"
1142
-d="M158 0l0.000976562 1106h158v-160c11.333 20.667 30 40.5 56 59.5s54.5 36 85.5 51s62.333 27 94 36s58.5 13.5 80.5 13.5c48 0 89.167 -8 123.5 -24s63.666 -38.167 87.999 -66.5s44.166 -61.833 59.499 -100.5s27.666 -80.334 36.999 -125.001h-164l-21.5 63
1143
-c-6.33301 19.333 -14.333 36 -24 50s-22 25 -37 33s-35.5 12 -61.5 12c-21.333 0 -44 -4.16699 -68 -12.5s-47.667 -20 -71 -35s-45.666 -32.667 -66.999 -53s-40.166 -42.166 -56.499 -65.499s-29.333 -47.833 -39 -73.5s-14.5 -51.5 -14.5 -77.5v-631h-158zM314.001 1501
1144
-l79 79l158 -158l158 158l79 -79l-237 -237z" />
1145
- <glyph glyph-name="Sacute" unicode="&#x15a;"
1146
-d="M316 1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154
1147
-s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395v158h395c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001
1148
-s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154s10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501
1149
-s99.333 31 154 31h395v-158h-395c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001zM395 1580l-79 79l395 237l79 -79z" />
1150
- <glyph glyph-name="sacute" unicode="&#x15b;"
1151
-d="M948 1106v-158h-395c-39.333 0 -73.833 -4.5 -103.5 -13.5s-54.334 -21 -74.001 -36s-34.5 -31.833 -44.5 -50.5s-15 -38 -15 -58s5 -39.333 15 -58s24.833 -35.5 44.5 -50.5s44.334 -27 74.001 -36s64.167 -13.5 103.5 -13.5c26 0 54 -2.33301 84 -7s59.667 -12 89 -22
1152
-s57.333 -23.167 84 -39.5s50.167 -36.166 70.5 -59.499s36.666 -50.333 48.999 -81s18.5 -65.667 18.5 -105c0 -40 -9.5 -79 -28.5 -117s-45.667 -72 -80 -102s-75.833 -54 -124.5 -72s-102.667 -27 -162 -27h-395v158h395c39.333 0 73.833 4.5 103.5 13.5
1153
-s54.334 21 74.001 36s34.5 32.167 44.5 51.5s15 39 15 59c0 19.333 -5 38.333 -15 57s-24.833 35.334 -44.5 50.001s-44.334 26.5 -74.001 35.5s-64.167 13.5 -103.5 13.5c-26 0 -54 2.33301 -84 7s-59.667 12.167 -89 22.5s-57.333 23.666 -84 39.999
1154
-s-50.167 36.166 -70.5 59.499s-36.666 50.5 -48.999 81.5s-18.5 66.167 -18.5 105.5s9.5 78 28.5 116s45.667 71.833 80 101.5s75.833 53.5 124.5 71.5s102.667 27 162 27h395zM395 1264l-79 79l395 237l79 -79z" />
1155
- <glyph glyph-name="Scircumflex" unicode="&#x15c;"
1156
-d="M316 1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154
1157
-s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395v158h395c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001
1158
-s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154s10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501
1159
-s99.333 31 154 31h395v-158h-395c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001zM551 1896l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
1160
- <glyph glyph-name="scircumflex" unicode="&#x15d;"
1161
-d="M948 1106v-158h-395c-39.333 0 -73.833 -4.5 -103.5 -13.5s-54.334 -21 -74.001 -36s-34.5 -31.833 -44.5 -50.5s-15 -38 -15 -58s5 -39.333 15 -58s24.833 -35.5 44.5 -50.5s44.334 -27 74.001 -36s64.167 -13.5 103.5 -13.5c26 0 54 -2.33301 84 -7s59.667 -12 89 -22
1162
-s57.333 -23.167 84 -39.5s50.167 -36.166 70.5 -59.499s36.666 -50.333 48.999 -81s18.5 -65.667 18.5 -105c0 -40 -9.5 -79 -28.5 -117s-45.667 -72 -80 -102s-75.833 -54 -124.5 -72s-102.667 -27 -162 -27h-395v158h395c39.333 0 73.833 4.5 103.5 13.5
1163
-s54.334 21 74.001 36s34.5 32.167 44.5 51.5s15 39 15 59c0 19.333 -5 38.333 -15 57s-24.833 35.334 -44.5 50.001s-44.334 26.5 -74.001 35.5s-64.167 13.5 -103.5 13.5c-26 0 -54 2.33301 -84 7s-59.667 12.167 -89 22.5s-57.333 23.666 -84 39.999
1164
-s-50.167 36.166 -70.5 59.499s-36.666 50.5 -48.999 81.5s-18.5 66.167 -18.5 105.5s9.5 78 28.5 116s45.667 71.833 80 101.5s75.833 53.5 124.5 71.5s102.667 27 162 27h395zM551 1580l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
1165
- <glyph glyph-name="Scedilla" unicode="&#x15e;"
1166
-d="M316 1027c0 -32.667 6.16602 -63.334 18.499 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154
1167
-s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501c-24 -10.667 -49 -18.667 -75 -24l-5 -49c-3.33301 -42.667 -12.666 -82 -27.999 -118c-19.333 -48 -48.833 -86.833 -88.5 -116.5s-89.167 -48.667 -148.5 -57
1168
-s-128.333 -2.5 -207 17.5v158c59.333 -20 109.166 -30.333 149.499 -31s72.833 6.33301 97.5 21s42.334 36.5 53.001 65.5s16 63.167 16 102.5h-313v158h395c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001
1169
-s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154s10.333 106 31 154
1170
-s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31h395v-158h-395c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001z" />
1171
- <glyph glyph-name="scedilla" unicode="&#x15f;"
1172
-d="M632 0c0 -59.333 -9.83301 -112.832 -29.5 -160.499s-49.5 -86.334 -89.5 -116.001s-89.833 -48.667 -149.5 -57s-129.167 -2.5 -208.5 17.5v158c60 -20 110.167 -30.333 150.5 -31s73 6.33301 98 21s42.833 36.5 53.5 65.5s16 63.167 16 102.5h-315v158h395
1173
-c39.333 0 73.833 4.5 103.5 13.5s54.334 21 74.001 36s34.5 32.167 44.5 51.5s15 39 15 59c0 19.333 -5 38.333 -15 57s-24.833 35.334 -44.5 50.001s-44.334 26.5 -74.001 35.5s-64.167 13.5 -103.5 13.5c-26 0 -54 2.33301 -84 7s-59.667 12.167 -89 22.5
1174
-s-57.333 23.666 -84 39.999s-50.167 36.166 -70.5 59.499s-36.666 50.5 -48.999 81.5s-18.5 66.167 -18.5 105.5s9.5 78 28.5 116s45.667 71.833 80 101.5s75.833 53.5 124.5 71.5s102.667 27 162 27h395v-158h-395c-39.333 0 -73.833 -4.5 -103.5 -13.5
1175
-s-54.334 -21 -74.001 -36s-34.5 -31.833 -44.5 -50.5s-15 -38 -15 -58s5 -39.333 15 -58s24.833 -35.5 44.5 -50.5s44.334 -27 74.001 -36s64.167 -13.5 103.5 -13.5c26 0 54 -2.33301 84 -7s59.667 -12 89 -22s57.333 -23.167 84 -39.5s50.167 -36.166 70.5 -59.499
1176
-s36.666 -50.333 48.999 -81s18.5 -65.667 18.5 -105c0 -40 -9.5 -79 -28.5 -117s-45.667 -72 -80 -102s-75.833 -54 -124.5 -72c-26 -10 -53.667 -17 -83 -21v-6z" />
1177
- <glyph glyph-name="Scaron" unicode="&#x160;"
1178
-d="M316 1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154
1179
-s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395v158h395c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001
1180
-s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154s10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501
1181
-s99.333 31 154 31h395v-158h-395c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001zM316 1817l79 79l158 -158l158 158l79 -79l-237 -237z" />
1182
- <glyph glyph-name="scaron" unicode="&#x161;"
1183
-d="M948 1106v-158h-395c-39.333 0 -73.833 -4.5 -103.5 -13.5s-54.334 -21 -74.001 -36s-34.5 -31.833 -44.5 -50.5s-15 -38 -15 -58s5 -39.333 15 -58s24.833 -35.5 44.5 -50.5s44.334 -27 74.001 -36s64.167 -13.5 103.5 -13.5c26 0 54 -2.33301 84 -7s59.667 -12 89 -22
1184
-s57.333 -23.167 84 -39.5s50.167 -36.166 70.5 -59.499s36.666 -50.333 48.999 -81s18.5 -65.667 18.5 -105c0 -40 -9.5 -79 -28.5 -117s-45.667 -72 -80 -102s-75.833 -54 -124.5 -72s-102.667 -27 -162 -27h-395v158h395c39.333 0 73.833 4.5 103.5 13.5
1185
-s54.334 21 74.001 36s34.5 32.167 44.5 51.5s15 39 15 59c0 19.333 -5 38.333 -15 57s-24.833 35.334 -44.5 50.001s-44.334 26.5 -74.001 35.5s-64.167 13.5 -103.5 13.5c-26 0 -54 2.33301 -84 7s-59.667 12.167 -89 22.5s-57.333 23.666 -84 39.999
1186
-s-50.167 36.166 -70.5 59.499s-36.666 50.5 -48.999 81.5s-18.5 66.167 -18.5 105.5s9.5 78 28.5 116s45.667 71.833 80 101.5s75.833 53.5 124.5 71.5s102.667 27 162 27h395zM316 1501l79 79l158 -158l158 158l79 -79l-237 -237z" />
1187
- <glyph glyph-name="Tcommaaccent" unicode="&#x162;"
1188
-d="M474 1264h-316v158h790v-158h-316v-1264h-158v1264zM395 -631c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5
1189
-c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999
1190
-s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1191
- <glyph glyph-name="tcommaaccent" unicode="&#x163;"
1192
-d="M158 1106l157.999 0.000976562v316h158v-316h316v-158h-316v-553c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h237v-158h-237c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501
1193
-s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v553h-158v158zM551.507 -630.999c-22.1396 0 -40.9238 7.66797 -56.3545 23.001s-23.1465 34 -23.1465 56s7.71582 40.667 23.1465 56s34.2158 23 56.3555 23c20.126 0 35.5566 3.5 46.291 10.5s18.6172 17.167 23.6494 30.5
1194
-s7.88379 29.833 8.55469 49.5s1.00684 42.167 1.00684 67.5c-22.1396 0 -42.7695 4.16699 -61.8896 12.5s-35.8926 19.666 -50.3174 33.999s-25.8301 31 -34.2158 50s-12.5791 39.5 -12.5791 61.5s4.19336 42.5 12.5791 61.5s19.791 35.667 34.2158 50
1195
-s31.1973 25.666 50.3174 33.999s39.75 12.5 61.8896 12.5s42.7695 -4.16699 61.8896 -12.5s35.8926 -19.666 50.3174 -33.999s25.8301 -31 34.2158 -50s12.5791 -39.5 12.5791 -61.5v-158c0 -39.333 -5.03223 -78 -15.0957 -116s-24.9912 -71.833 -44.7832 -101.5
1196
-c-19.791 -29.667 -44.6143 -53.5 -74.4697 -71.5c-29.8545 -18 -64.5732 -27 -104.156 -27z" />
1197
- <glyph glyph-name="Tcaron" unicode="&#x164;"
1198
-d="M474 1264h-316v158h790v-158h-316v-1264h-158v1264zM314 1817l79 79l158 -158l158 158l79 -79l-237 -237z" />
1199
- <glyph glyph-name="tcaron" unicode="&#x165;"
1200
-d="M158 1106l157.999 0.000976562v316h158v-316h316v-158h-316v-553c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h237v-158h-237c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501
1201
-s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v553h-158v158zM710.999 1264c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5
1202
-c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999
1203
-s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1204
- <glyph glyph-name="Tbar" unicode="&#x166;"
1205
-d="M158 790v158h316v316h-316v158h790v-158h-316v-316h316v-158h-316v-790h-158v790h-316z" />
1206
- <glyph glyph-name="tbar" unicode="&#x167;"
1207
-d="M158 790l157.999 0.000976562v158h-158v158h158v316h158v-316h316v-158h-316v-158h316v-158h-316v-237c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h237v-158h-237
1208
-c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v237h-158v158z" />
1209
- <glyph glyph-name="Utilde" unicode="&#x168;"
1210
-d="M158 1422h157.998v-1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158
1211
-v-1027c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v395v632zM945.998 1817
1212
-c-79.333 -158 -158.334 -237 -237.001 -237c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36
1213
-s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5
1214
-c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58z" />
1215
- <glyph glyph-name="utilde" unicode="&#x169;"
1216
-d="M316 395c0 -32.667 6.16406 -63.335 18.4971 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 6.33301 91 19s53.834 29.834 75.501 51.501s38.834 46.834 51.501 75.501s19 59 19 91v711h158v-1106h-158v79
1217
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM945.997 1501c-79.333 -158 -158.334 -237 -237.001 -237
1218
-c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79
1219
-c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5
1220
-s13.5 38 13.5 58z" />
1221
- <glyph glyph-name="Umacron" unicode="&#x16a;"
1222
-d="M158 1422h157.998v-1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158
1223
-v-1027c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v395v632zM157.998 1579.98v163.998h790
1224
-v-163.998h-790z" />
1225
- <glyph glyph-name="umacron" unicode="&#x16b;"
1226
-d="M316 395c0 -32.667 6.16406 -63.335 18.4971 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 6.33301 91 19s53.834 29.834 75.501 51.501s38.834 46.834 51.501 75.501s19 59 19 91v711h158v-1106h-158v79
1227
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM157.997 1265v158h790v-158h-790z" />
1228
- <glyph glyph-name="Ubreve" unicode="&#x16c;"
1229
-d="M158 1422h157.998v-1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158
1230
-v-1027c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v395v632zM550.998 1580
1231
-c-39.333 0 -73.8311 9 -103.498 27s-54.334 41.833 -74.001 71.5s-34.5 63.5 -44.5 101.5s-15 76.667 -15 116h158c0 -20 0.333008 -39.333 1 -58s3.5 -35.5 8.5 -50.5s12.833 -27 23.5 -36s26 -13.5 46 -13.5s35.333 4.5 46 13.5s18.5 21 23.5 36s7.83301 31.833 8.5 50.5
1232
-s1 38 1 58h158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1233
- <glyph glyph-name="ubreve" unicode="&#x16d;"
1234
-d="M316 395c0 -32.667 6.16406 -63.335 18.4971 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 6.33301 91 19s53.834 29.834 75.501 51.501s38.834 46.834 51.501 75.501s19 59 19 91v711h158v-1106h-158v79
1235
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM550.997 1264c-39.333 0 -73.8311 9 -103.498 27s-54.334 41.833 -74.001 71.5
1236
-s-34.5 63.5 -44.5 101.5s-15 76.667 -15 116h158c0 -20 0.333008 -39.333 1 -58s3.5 -35.5 8.5 -50.5s12.833 -27 23.5 -36s26 -13.5 46 -13.5s35.333 4.5 46 13.5s18.5 21 23.5 36s7.83301 31.833 8.5 50.5s1 38 1 58h158c0 -39.333 -5 -78 -15 -116
1237
-s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1238
- <glyph glyph-name="Uring" unicode="&#x16e;"
1239
-d="M158 1422h157.998v-1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158
1240
-v-1027c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v395v632zM313.998 1817
1241
-c0 32.667 6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5s63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001s-6.16699 -63.334 -18.5 -92.001
1242
-s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001zM471.998 1817c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23
1243
-s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56z" />
1244
- <glyph glyph-name="uring" unicode="&#x16f;"
1245
-d="M316 395c0 -32.667 6.16406 -63.335 18.4971 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 6.33301 91 19s53.834 29.834 75.501 51.501s38.834 46.834 51.501 75.501s19 59 19 91v711h158v-1106h-158v79
1246
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM313.997 1501c0 32.667 6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501
1247
-s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5s63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001s-6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51
1248
-s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001zM471.997 1501c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56
1249
-s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56z" />
1250
- <glyph glyph-name="Uhungarumlaut" unicode="&#x170;"
1251
-d="M158 1422h157.998v-1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158
1252
-v-1027c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v395v632zM225.156 1580l-65.8311 79
1253
-l329.158 237l65.832 -79zM619.156 1580l-65.8311 79l329.158 237l65.832 -79z" />
1254
- <glyph glyph-name="uhungarumlaut" unicode="&#x171;"
1255
-d="M316 395c0 -32.667 6.16406 -63.335 18.4971 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 6.33301 91 19s53.834 29.834 75.501 51.501s38.834 46.834 51.501 75.501s19 59 19 91v711h158v-1106h-158v79
1256
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM225.155 1264l-65.8311 79l329.158 237l65.832 -79zM619.155 1264l-65.8311 79
1257
-l329.158 237l65.832 -79z" />
1258
- <glyph glyph-name="Uogonek" unicode="&#x172;"
1259
-d="M158 1422h157.998v-1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158
1260
-v-1027c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v395v632zM474.037 0
1261
-c0 -59.333 9.83301 -112.832 29.498 -160.499s49.3301 -86.334 88.9941 -116.001s89.1611 -48.667 148.491 -57c59.3291 -8.33301 128.325 -2.5 206.987 17.5v158c-59.3301 -20 -109.16 -30.333 -149.491 -31s-72.8291 6.33301 -97.4941 21s-42.3301 36.5 -52.9961 65.5
1262
-s-15.999 63.167 -15.999 102.5h-157.99z" />
1263
- <glyph glyph-name="uogonek" unicode="&#x173;"
1264
-d="M316 395c0 -32.667 6.16406 -63.335 18.4971 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 6.33301 91 19s53.834 29.834 75.501 51.501s38.834 46.834 51.501 75.501s19 59 19 91v711h158v-1106h-158v79
1265
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM474.036 -0.000976562c0 -59.333 9.83301 -112.832 29.498 -160.499
1266
-s49.3301 -86.334 88.9941 -116.001s89.1611 -48.667 148.491 -57c59.3291 -8.33301 128.325 -2.5 206.987 17.5v158c-59.3301 -20 -109.16 -30.333 -149.491 -31s-72.8291 6.33301 -97.4941 21s-42.3301 36.5 -52.9961 65.5s-15.999 63.167 -15.999 102.5h-157.99z" />
1267
- <glyph glyph-name="Wcircumflex" unicode="&#x174;"
1268
-d="M790 1422h158v-1422h-158l-237 474l-237 -474h-158v1422h158v-1106l237 414l237 -414v1106zM551 1896l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
1269
- <glyph glyph-name="wcircumflex" unicode="&#x175;"
1270
-d="M632 237c0 -52.667 26.334 -79 79.001 -79s79 26.333 79 79v869h158v-909c0 -27.333 -5.16699 -53 -15.5 -77s-24.5 -44.833 -42.5 -62.5s-39 -31.667 -63 -42s-49.667 -15.5 -77 -15.5c-24 0 -46.833 4 -68.5 12s-41 19 -58 33s-31.333 30.667 -43 50
1271
-s-19.834 40.333 -24.501 63h-7c-4.66699 -22.667 -13 -43.667 -25 -63s-26.5 -36 -43.5 -50s-36.167 -25 -57.5 -33s-44 -12 -68 -12c-27.333 0 -53 5.16699 -77 15.5s-44.833 24.333 -62.5 42s-31.667 38.5 -42 62.5s-15.5 49.667 -15.5 77v909h158v-869h1
1272
-c-0.666992 -52.667 25.333 -79 78 -79s78.667 26.333 78 79h1v395h158v-395zM551.001 1580l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
1273
- <glyph glyph-name="Ycircumflex" unicode="&#x176;"
1274
-d="M474 472l-316 950h158l237 -711l237 711h158l-316 -948v-474h-158v472zM551 1896l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
1275
- <glyph glyph-name="ycircumflex" unicode="&#x177;"
1276
-d="M316 395c0 -32.667 6.16504 -63.335 18.498 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 60.333 21.5 99v711h158v-1185
1277
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158h237c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158
1278
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM550.998 1580l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
1279
- <glyph glyph-name="Ydieresis" unicode="&#x178;"
1280
-d="M474 472l-316 950h158l237 -711l237 711h158l-316 -948v-474h-158v472zM314 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM630 1659
1281
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1282
- <glyph glyph-name="Zacute" unicode="&#x179;"
1283
-d="M158 158l609 1106h-609v158h790v-158l-597 -1106h597v-158h-790v158zM395 1580l-79 79l395 237l79 -79z" />
1284
- <glyph glyph-name="zacute" unicode="&#x17a;"
1285
-d="M760 948h-602v158h790v-158l-603 -790h603v-158h-790v158zM395 1264l-79 79l395 237l79 -79z" />
1286
- <glyph glyph-name="Zdotaccent" unicode="&#x17b;"
1287
-d="M158 158l609 1106h-609v158h790v-158l-597 -1106h597v-158h-790v158zM471 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1288
- <glyph glyph-name="zdotaccent" unicode="&#x17c;"
1289
-d="M760 948h-602v158h790v-158l-603 -790h603v-158h-790v158zM471 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1290
- <glyph glyph-name="Zcaron" unicode="&#x17d;"
1291
-d="M158 158l609 1106h-609v158h790v-158l-597 -1106h597v-158h-790v158zM314 1817l79 79l158 -158l158 158l79 -79l-237 -237z" />
1292
- <glyph glyph-name="zcaron" unicode="&#x17e;"
1293
-d="M760 948h-602v158h790v-158l-603 -790h603v-158h-790v158zM314 1501l79 79l158 -158l158 158l79 -79l-237 -237z" />
1294
- <glyph glyph-name="longs" unicode="&#x17f;"
1295
-d="M158 948l158.001 0.000976562v79c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31h237v-158h-237c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
1296
-s-18.5 -59.334 -18.5 -92.001v-1027h-158v790h-158v158z" />
1297
- <glyph glyph-name="uni0191" unicode="&#x191;"
1298
-d="M316 1422l789.999 -0.000976562v-158h-632v-474h474v-158h-474v-711c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-79v158h79c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51
1299
-s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1501z" />
1300
- <glyph glyph-name="florin" unicode="&#x192;"
1301
-d="M869 1264c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79h316v-158h-316v-869c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501
1302
-s-99.333 -31 -154 -31h-79v158h79c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v869h-158v158h158v79c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501
1303
-s99.333 31 154 31h79v-158h-79v0z" />
1304
- <glyph glyph-name="uni01CF" unicode="&#x1cf;"
1305
-d="M158 158h316v1106h-316v158h790v-158h-316v-1106h316v-158h-790v158zM314 1817l79 79l158 -158l158 158l79 -79l-237 -237z" />
1306
- <glyph glyph-name="uni01D0" unicode="&#x1d0;"
1307
-d="M314 1501l79 79l158 -158l158 158l79 -79l-237 -237zM474 948h-158v158h316v-1106h-158v948z" />
1308
- <glyph glyph-name="uni01D1" unicode="&#x1d1;"
1309
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154
1310
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632zM553 1264c-32.667 0 -63.334 -6.16699 -92.001 -18.5
1311
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5
1312
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM314 1817l79 79l158 -158l158 158l79 -79l-237 -237z" />
1313
- <glyph glyph-name="uni01D2" unicode="&#x1d2;"
1314
-d="M158 711c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154
1315
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316zM316 395c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
1316
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
1317
-s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM314 1501l79 79l158 -158l158 158l79 -79l-237 -237z" />
1318
- <glyph glyph-name="uni01D3" unicode="&#x1d3;"
1319
-d="M158 1422h157.998v-1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158
1320
-v-1027c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v395v632zM313.998 1817l79 79l158 -158
1321
-l158 158l79 -79l-237 -237z" />
1322
- <glyph glyph-name="uni01D4" unicode="&#x1d4;"
1323
-d="M316 395c0 -32.667 6.16406 -63.335 18.4971 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 6.33301 91 19s53.834 29.834 75.501 51.501s38.834 46.834 51.501 75.501s19 59 19 91v711h158v-1106h-158v79
1324
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM313.997 1501l79 79l158 -158l158 158l79 -79l-237 -237z" />
1325
- <glyph glyph-name="Gcaron" unicode="&#x1e6;"
1326
-d="M790 158c0 -20 -8.16992 -39.3301 -24.5029 -57.9971s-36.5 -35.5 -60.5 -50.5s-49.833 -27 -77.5 -36s-52.5 -13.5 -74.5 -13.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632
1327
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c48 0 93.333 -8 136 -24s81 -38.167 115 -66.5s62.833 -61.833 86.5 -100.5s40.167 -80.334 49.5 -125.001h-164c-8 22.667 -19.333 43.667 -34 63s-31.667 36 -51 50
1328
-s-40.666 25 -63.999 33s-48 12 -74 12c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
1329
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 8.66699 91 26s53.834 38.333 75.501 63s38.834 50.5 51.501 77.5s19 50.5 19 70.5v237h-158v158h316v-790h-158v158zM315.997 1817l79 79l158 -158l158 158l79 -79l-237 -237z" />
1330
- <glyph glyph-name="gcaron" unicode="&#x1e7;"
1331
-d="M316 -316l236.999 -0.00292969c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31
1332
-s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c44.667 0 87 -7 127 -21s76.667 -33.667 110 -59v80h158v-1185
1333
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158zM315.999 394.997c0 -32.667 6.16699 -63.3311 18.5 -91.998s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51
1334
-s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 57 21.5 89v336c-1.33301 31.333 -8.5 60.833 -21.5 88.5s-30.167 51.667 -51.5 72s-46 36.5 -74 48.5s-58 18 -90 18c-32.667 0 -63.334 -6.16699 -92.001 -18.5
1335
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM315.999 1501l79 79l158 -158l158 158l79 -79l-237 -237z" />
1336
- <glyph glyph-name="uni01E8" unicode="&#x1e8;"
1337
-d="M316 761l454 661h178l-474 -711l474 -711h-180l-452 666v-666h-158v1422h158v-661zM314 1817l79 79l158 -158l158 158l79 -79l-237 -237z" />
1338
- <glyph glyph-name="uni01E9" unicode="&#x1e9;"
1339
-d="M316 632h38l400 474h194l-453 -553l453 -553h-194l-400 474h-38v-474h-158v1422h158v-790zM314 1501l79 79l158 -158l158 158l79 -79l-237 -237z" />
1340
- <glyph glyph-name="uni01F8" unicode="&#x1f8;"
1341
-d="M158 0v1422h158l474 -1052v1052h158v-1422h-158l-474 1052v-1052h-158zM313 1738v158l474 -237v-158z" />
1342
- <glyph glyph-name="uni01F9" unicode="&#x1f9;"
1343
-d="M553 948c-32 0 -62.167 -6.00098 -90.5 -18.001s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1106h158v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501
1344
-s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM313 1422v158l474 -237v-158z" />
1345
- <glyph glyph-name="AEacute" unicode="&#x1fc;"
1346
-d="M158 1106c0 39.333 9 78 27 116s41.833 71.833 71.5 101.5s63.5 53.5 101.5 71.5s76.667 27 116 27h474v-158h-316v-474h158v-158h-158v-474h316v-158h-474v632h-158v-632h-158v1106zM474 790l-0.000976562 474c-30 0 -55 -6.16699 -75 -18.5s-36.167 -27 -48.5 -44
1347
-s-21.166 -34.5 -26.499 -52.5s-8 -32.333 -8 -43v-316h158zM394.999 1580l-79 79l395 237l79 -79z" />
1348
- <glyph glyph-name="aeacute" unicode="&#x1fd;"
1349
-d="M395 0c-39.333 0 -73.832 9.00098 -103.499 27.001s-54.334 41.833 -74.001 71.5s-34.5 63.5 -44.5 101.5s-15 76.667 -15 116s5 78 15 116s24.833 71.833 44.5 101.5s44.334 53.5 74.001 71.5s64.167 27 103.5 27h79c0 78.667 -4.5 139.5 -13.5 182.5s-21 74.333 -36 94
1350
-s-31.833 31.167 -50.5 34.5s-38 5 -58 5v158c10.667 0 24 -0.333008 40 -1s33.167 -2.5 51.5 -5.5s37.5 -8 57.5 -15s39 -16.833 57 -29.5c15.333 15.333 32.5 27.666 51.5 36.999s38.5 14 58.5 14h79c39.333 0 73.833 -9 103.5 -27s54.334 -41.833 74.001 -71.5
1351
-s34.5 -63.5 44.5 -101.5s15 -76.667 15 -116s-5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27h-79c0 -52.667 1 -97 3 -133s4.83301 -65.667 8.5 -89s8 -41.5 13 -54.5s10.5 -22.333 16.5 -28s12.167 -9 18.5 -10
1352
-s12.833 -1.5 19.5 -1.5c12 0 22.833 4.5 32.5 13.5s18 21 25 36s12.333 31.833 16 50.5s5.5 38 5.5 58h158c0 -59.333 -5 -109.166 -15 -149.499s-24.833 -72.833 -44.5 -97.5s-44.334 -42.334 -74.001 -53.001s-64.167 -16 -103.5 -16h-316zM395.001 474.001
1353
-c-11.333 0 -21.833 -4.5 -31.5 -13.5s-18 -21 -25 -36s-12.5 -31.833 -16.5 -50.5s-6 -38 -6 -58s2 -39.333 6 -58s9.5 -35.5 16.5 -50.5s15.333 -27 25 -36s20.167 -13.5 31.5 -13.5h79v316h-79zM711.001 632.001c11.333 0 21.833 4.5 31.5 13.5s18 21 25 36
1354
-s12.5 31.833 16.5 50.5s6 38 6 58s-2 39.333 -6 58s-9.5 35.5 -16.5 50.5s-15.333 27 -25 36s-20.167 13.5 -31.5 13.5h-79v-316h79zM395.001 1263.98l-79 78.498l395 235.496l79 -78.498z" />
1355
- <glyph glyph-name="Oslashacute" unicode="&#x1fe;"
1356
-d="M395 1580l-79 79l395 237l79 -79zM339.354 0h-181.331c0 4.28613 0.65332 9.42871 1.95996 15.4287c1.30762 6 4.5752 16.0713 9.80273 30.2139s13.2324 34.2852 24.0146 60.4277c10.7822 26.1436 25.9746 61.0723 45.5771 104.786
1357
-c-22.8701 42 -40.8398 88.0713 -53.9092 138.214c-13.0684 50.1426 -19.6025 103.07 -19.6025 158.784v406.283c0 70.2852 10.1279 136.284 30.3848 197.998s47.8652 115.499 82.8252 161.355c34.959 45.8564 75.9619 82.0703 123.01 108.642
1358
-s97.3633 39.8564 150.945 39.8564c33.9795 0 66.4883 -5.57129 97.5264 -16.7139s60.6064 -26.5713 88.7051 -46.2861l27.4443 63h181.33c0 -4.28613 -0.65332 -9.64355 -1.95996 -16.0723c-1.30762 -6.42871 -4.73828 -16.7139 -10.292 -30.8564l-24.5039 -59.7852
1359
-l-44.5977 -104.143c22.8701 -42 40.8398 -88.0713 53.9092 -138.214s19.6035 -103.07 19.6035 -158.784v-406.283c0 -70.2852 -10.1289 -136.284 -30.3857 -197.998s-47.8643 -115.499 -82.8232 -161.355s-75.9629 -82.0703 -123.011 -108.642
1360
-s-97.3633 -39.8564 -150.946 -39.8564c-33.9795 0 -66.6514 5.57129 -98.0166 16.7139c-31.3652 11.1436 -60.7695 26.5723 -88.2139 46.2861zM785.328 914.137c0 14.5713 -0.818359 29.1445 -2.45215 43.7158s-4.08398 28.7139 -7.35156 42.4277l-332.275 -761.138
1361
-c33.3252 -24 69.918 -36 109.778 -36c32.0186 0 62.0771 7.92871 90.1748 23.7852c28.0986 15.8574 52.7666 37.7148 74.0039 65.5713s37.9004 60.2129 49.9893 97.0693c12.0889 36.8574 18.1328 76.2861 18.1328 118.285v406.283zM320.729 507.855
1362
-c0 -32.5713 3.26758 -61.7148 9.80176 -87.4287l331.295 762.424c-16.3359 11.1426 -33.6523 19.9277 -51.9482 26.3564s-37.2461 9.64258 -56.8496 9.64258c-32.0186 0 -62.0771 -7.92871 -90.1748 -23.7852c-28.0986 -15.8574 -52.7656 -37.7148 -74.002 -65.5713
1363
-c-21.2373 -27.8564 -37.9004 -60.2129 -49.9893 -97.0693s-18.1328 -76.2852 -18.1328 -118.285v-406.283z" />
1364
- <glyph glyph-name="oslashacute" unicode="&#x1ff;"
1365
-d="M395 1263.99l-79 78.749l395 236.248l79 -78.749zM335 0h-185.001c0 3.33301 0.666992 7.33301 2 12s4.66602 12.5 9.99902 23.5s13.5 26.667 24.5 47s26.5 47.5 46.5 81.5c-23.333 32.667 -41.666 68.5 -54.999 107.5s-20 80.167 -20 123.5v316
1366
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c34.667 0 67.834 -4.33301 99.501 -13s61.834 -20.667 90.501 -36l28 49h185c0 -3.33301 -0.666992 -7.5 -2 -12.5s-4.83301 -13 -10.5 -24l-25 -46.5l-45.5 -81
1367
-c23.333 -32.667 41.666 -68.5 54.999 -107.5s20 -80.167 20 -123.5v-316c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31c-34.667 -0 -68 4.33301 -100 13s-62 20.667 -90 36zM789.999 711
1368
-c0 11.333 -0.834961 22.665 -2.50195 33.998s-4.16699 22.333 -7.5 33l-339 -592c34 -18.667 71.333 -28 112 -28c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316zM315.997 394.999
1369
-c0 -25.333 3.33594 -47.998 10.0029 -67.998l338 593c-16.667 8.66699 -34.334 15.5 -53.001 20.5s-38 7.5 -58 7.5c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316z" />
1370
- <glyph glyph-name="Scommaaccent" unicode="&#x218;"
1371
-d="M316 1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154
1372
-s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395v158h395c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001
1373
-s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154s10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501
1374
-s99.333 31 154 31h395v-158h-395c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001zM395 -631c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23
1375
-c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999
1376
-s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1377
- <glyph glyph-name="scommaaccent" unicode="&#x219;"
1378
-d="M948 1106v-158h-395c-39.333 0 -73.833 -4.5 -103.5 -13.5s-54.334 -21 -74.001 -36s-34.5 -31.833 -44.5 -50.5s-15 -38 -15 -58s5 -39.333 15 -58s24.833 -35.5 44.5 -50.5s44.334 -27 74.001 -36s64.167 -13.5 103.5 -13.5c26 0 54 -2.33301 84 -7s59.667 -12 89 -22
1379
-s57.333 -23.167 84 -39.5s50.167 -36.166 70.5 -59.499s36.666 -50.333 48.999 -81s18.5 -65.667 18.5 -105c0 -40 -9.5 -79 -28.5 -117s-45.667 -72 -80 -102s-75.833 -54 -124.5 -72s-102.667 -27 -162 -27h-395v158h395c39.333 0 73.833 4.5 103.5 13.5
1380
-s54.334 21 74.001 36s34.5 32.167 44.5 51.5s15 39 15 59c0 19.333 -5 38.333 -15 57s-24.833 35.334 -44.5 50.001s-44.334 26.5 -74.001 35.5s-64.167 13.5 -103.5 13.5c-26 0 -54 2.33301 -84 7s-59.667 12.167 -89 22.5s-57.333 23.666 -84 39.999
1381
-s-50.167 36.166 -70.5 59.499s-36.666 50.5 -48.999 81.5s-18.5 66.167 -18.5 105.5s9.5 78 28.5 116s45.667 71.833 80 101.5s75.833 53.5 124.5 71.5s102.667 27 162 27h395zM395.746 -631c-21.9297 0 -40.5391 7.66797 -55.8242 23.001
1382
-c-15.2842 15.333 -22.9268 34 -22.9268 56s7.64258 40.667 22.9268 56c15.2852 15.333 33.8926 23 55.8223 23c19.9365 0 35.2217 3.5 45.8545 10.5s18.4414 17.167 23.4248 30.5c4.98438 13.333 7.80859 29.833 8.47363 49.5s0.99707 42.167 0.99707 67.5
1383
-c-21.9307 0 -42.3662 4.16699 -61.3066 12.5c-18.9395 8.33301 -35.5527 19.666 -49.8408 33.999s-25.5859 31 -33.8936 50c-8.30664 19 -12.46 39.5 -12.46 61.5s4.15332 42.5 12.46 61.5c8.30762 19 19.6055 35.667 33.8936 50s30.9014 25.666 49.8408 33.999
1384
-c18.9404 8.33301 39.376 12.5 61.3066 12.5c21.9297 0 42.3643 -4.16699 61.3047 -12.5c18.9395 -8.33301 35.5527 -19.666 49.8408 -33.999s25.5859 -31 33.8936 -50c8.30664 -19 12.46 -39.5 12.46 -61.5v-158c0 -39.333 -4.98438 -78 -14.9521 -116
1385
-s-24.7539 -71.833 -44.3584 -101.5s-44.1924 -53.5 -73.7646 -71.5c-29.5732 -18 -63.9639 -27 -103.172 -27z" />
1386
- <glyph glyph-name="uni021A" unicode="&#x21a;"
1387
-d="M474 1264h-316v158h790v-158h-316v-1264h-158v1264zM395 -631c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5
1388
-c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999
1389
-s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1390
- <glyph glyph-name="uni021B" unicode="&#x21b;"
1391
-d="M158 1106l157.999 0.000976562v316h158v-316h316v-158h-316v-553c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h237v-158h-237c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501
1392
-s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v553h-158v158zM552.999 -630.999c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5
1393
-c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999
1394
-s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1395
- <glyph glyph-name="uni0226" unicode="&#x226;"
1396
-d="M158 1027c0 54.667 10.3311 106 30.998 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-1027h-158v632h-474v-632h-158v1027z
1397
-M789.998 790l0.00390625 237c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
1398
-s-18.5 -59.334 -18.5 -92.001v-237h474zM471.002 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1399
- <glyph glyph-name="uni0227" unicode="&#x227;"
1400
-d="M474 0c-43.333 0 -84.165 8.33203 -122.498 24.999s-71.833 39.334 -100.5 68.001s-51.334 62.167 -68.001 100.5s-25 79.166 -25 122.499s8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25h316v79
1401
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v158h237c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-474z
1402
-M474.001 473.999c-22 0 -42.5 -4.16895 -61.5 -12.502s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5s4.16699 -42.5 12.5 -61.5s19.666 -35.667 33.999 -50s31 -25.666 50 -33.999s39.5 -12.5 61.5 -12.5h316v316h-316zM471.001 1343
1403
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1404
- <glyph glyph-name="uni0232" unicode="&#x232;"
1405
-d="M474 472l-316 950h158l237 -711l237 711h158l-316 -948v-474h-158v472zM156 1738v158h790v-158h-790z" />
1406
- <glyph glyph-name="uni0233" unicode="&#x233;"
1407
-d="M316 395c0 -32.667 6.16504 -63.335 18.498 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 60.333 21.5 99v711h158v-1185
1408
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158h237c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158
1409
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM155.998 1422v158h790v-158h-790z" />
1410
- <glyph glyph-name="circumflex" unicode="&#x2c6;"
1411
-d="M553 1580l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
1412
- <glyph glyph-name="caron" unicode="&#x2c7;"
1413
-d="M316 1501l79 79l158 -158l158 158l79 -79l-237 -237z" />
1414
- <glyph glyph-name="breve" unicode="&#x2d8;"
1415
-d="M553 1264c-39.333 0 -73.8311 9 -103.498 27s-54.334 41.833 -74.001 71.5s-34.5 63.5 -44.5 101.5s-15 76.667 -15 116h158c0 -20 0.333008 -39.333 1 -58s3.5 -35.5 8.5 -50.5s12.833 -27 23.5 -36s26 -13.5 46 -13.5s35.333 4.5 46 13.5s18.5 21 23.5 36
1416
-s7.83301 31.833 8.5 50.5s1 38 1 58h158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1417
- <glyph glyph-name="dotaccent" unicode="&#x2d9;"
1418
-d="M316 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1419
- <glyph glyph-name="ring" unicode="&#x2da;"
1420
-d="M316 1501c0 32.667 6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5s63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001
1421
-s-6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001zM474 1501
1422
-c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56z" />
1423
- <glyph glyph-name="ogonek" unicode="&#x2db;"
1424
-d="M474 0c0 -39.333 5.33398 -73.501 16.001 -102.501s28.334 -50.833 53.001 -65.5s57.167 -21.667 97.5 -21s90.166 11 149.499 31v-158c-78.667 -20 -147.667 -25.833 -207 -17.5s-108.833 27.333 -148.5 57s-69.334 68.334 -89.001 116.001s-29.5 101.167 -29.5 160.5
1425
-h158z" />
1426
- <glyph glyph-name="tilde" unicode="&#x2dc;"
1427
-d="M948 1501c-79.333 -158 -158.334 -237 -237.001 -237c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36
1428
-s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5
1429
-c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58z" />
1430
- <glyph glyph-name="hungarumlaut" unicode="&#x2dd;"
1431
-d="M619.158 1264l-65.8311 79l329.158 237l65.832 -79zM225.158 1264l-65.8311 79l329.158 237l65.832 -79z" />
1432
- <glyph glyph-name="uni037E" unicode="&#x37e;"
1433
-d="M316 790c0 22 4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999 -50
1434
-s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5s-42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5zM395 -316c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23
1435
-c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999
1436
-s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1437
- <glyph glyph-name="Alpha" unicode="&#x391;"
1438
-d="M158 1027c0 54.667 10.3311 106 30.998 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-1027h-158v632h-474v-632h-158v1027z
1439
-M789.998 790l0.00390625 237c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
1440
-s-18.5 -59.334 -18.5 -92.001v-237h474z" />
1441
- <glyph glyph-name="Beta" unicode="&#x392;"
1442
-d="M158 1422l395 0.00195312c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154c0 -65.333 -14.5 -125.333 -43.5 -180s-67.5 -100 -115.5 -136c48 -36 86.5 -81.5 115.5 -136.5s43.5 -114.833 43.5 -179.5
1443
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395v1422zM553 790.002c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001
1444
-s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237zM553 157.998c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001
1445
-s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237z" />
1446
- <glyph glyph-name="Gamma" unicode="&#x393;"
1447
-d="M158 1422h790v-158h-632v-1264h-158v1422z" />
1448
- <glyph glyph-name="glyph623" unicode="&#x394;"
1449
-d="M948 0h-790v158l316 1264h158l316 -1264v-158zM277 158h486l-234 995z" />
1450
- <glyph glyph-name="Epsilon" unicode="&#x395;"
1451
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-474h632v-158h-790v1422z" />
1452
- <glyph glyph-name="Zeta" unicode="&#x396;"
1453
-d="M158 158l609 1106h-609v158h790v-158l-597 -1106h597v-158h-790v158z" />
1454
- <glyph glyph-name="Eta" unicode="&#x397;"
1455
-d="M158 1422h158v-632h474v632h158v-1422h-158v632h-474v-632h-158v1422z" />
1456
- <glyph glyph-name="Theta" unicode="&#x398;"
1457
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154
1458
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632zM553 1264c-32.667 0 -63.334 -6.16699 -92.001 -18.5
1459
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5
1460
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM474 790h158v-158h-158v158z" />
1461
- <glyph glyph-name="Iota" unicode="&#x399;"
1462
-d="M158 158h316v1106h-316v158h790v-158h-316v-1106h316v-158h-790v158z" />
1463
- <glyph glyph-name="Kappa" unicode="&#x39a;"
1464
-d="M314.837 761l449.456 661h176.218l-469.255 -711l469.255 -711h-178.198l-447.476 666v-666h-156.419v1422h156.419v-661z" />
1465
- <glyph glyph-name="Lambda" unicode="&#x39b;"
1466
-d="M319.274 0.0869141l233.456 1039.94l233.456 -1039.94h155.638l-311.275 1421.91h-155.637l-311.274 -1421.91h155.637z" />
1467
- <glyph glyph-name="Mu" unicode="&#x39c;"
1468
-d="M789.987 1106l-236.696 -414l-236.696 414v-1106h-157.797v1422h157.797l236.696 -474l236.696 474h157.798v-1422h-157.798v1106z" />
1469
- <glyph glyph-name="Nu" unicode="&#x39d;"
1470
-d="M158 0v1422h158l474 -1052v1052h158v-1422h-158l-474 1052v-1052h-158z" />
1471
- <glyph glyph-name="Xi" unicode="&#x39e;"
1472
-d="M158 1422h790v-158h-790v158zM158 158h790v-158h-790v158zM316 790h474v-158h-474v158z" />
1473
- <glyph glyph-name="Omicron" unicode="&#x39f;"
1474
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154
1475
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632zM553 1264c-32.667 0 -63.334 -6.16699 -92.001 -18.5
1476
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5
1477
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5z" />
1478
- <glyph glyph-name="Pi" unicode="&#x3a0;"
1479
-d="M158 1422h790v-1422h-158v1264h-474v-1264h-158v1422z" />
1480
- <glyph glyph-name="Rho" unicode="&#x3a1;"
1481
-d="M316 0l-158 0.00195312v1422h395c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v-632z
1482
-M553 790.002c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237z" />
1483
- <glyph glyph-name="Sigma" unicode="&#x3a3;"
1484
-d="M948 1264h-632l316 -553l-316 -553h632v-158h-790v158l316 553l-316 553v158h790v-158z" />
1485
- <glyph glyph-name="Tau" unicode="&#x3a4;"
1486
-d="M474 1264h-316v158h790v-158h-316v-1264h-158v1264z" />
1487
- <glyph glyph-name="Upsilon" unicode="&#x3a5;"
1488
-d="M475.598 472l-309.731 950h154.865l232.299 -711l232.299 711h154.866l-309.732 -948v-474h-154.865v472z" />
1489
- <glyph glyph-name="Phi" unicode="&#x3a6;"
1490
-d="M474 316h-79c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154s10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31h79v316h158v-316h79
1491
-c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-79v-316h-158v316zM632 948v-474.004h79
1492
-c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-79zM158 710.996
1493
-c0 -32.667 6.16699 -63.3301 18.5 -91.9971s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h79v474h-79c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
1494
-s-18.5 -59.334 -18.5 -92.001z" />
1495
- <glyph glyph-name="Chi" unicode="&#x3a7;"
1496
-d="M552.616 904l229.425 518h165.584l-309.224 -711l309.224 -711h-165.584l-229.425 517l-229.425 -517h-164.587l308.227 711l-309.224 711h165.584z" />
1497
- <glyph glyph-name="uni03A9" unicode="&#x3a9;"
1498
-d="M632 169c45.333 12.667 87.333 35.5 126 68.5s72 73.333 100 121s50 101.5 66 161.5s24 123.667 24 191c0 76 -10.333 147.667 -31 215s-48.834 126 -84.501 176s-77.5 89.5 -125.5 118.5s-99.333 43.5 -154 43.5s-106 -14.5 -154 -43.5s-89.833 -68.5 -125.5 -118.5
1499
-s-63.834 -108.667 -84.501 -176s-31 -139 -31 -215c0 -67.333 8 -131 24 -191s38 -113.833 66 -161.5s61.333 -88 100 -121s80.667 -55.833 126 -68.5v-169h-474v158h206c-31.333 32.667 -59.666 69.334 -84.999 110.001s-47 84.5 -65 131.5s-31.833 96.667 -41.5 149
1500
-s-14.5 106.5 -14.5 162.5c0 98 14.5 190.167 43.5 276.5s68.5 161.666 118.5 225.999s108.667 115.166 176 152.499s139 56 215 56s147.667 -18.667 215 -56s126 -88.166 176 -152.499s89.5 -139.666 118.5 -225.999s43.5 -178.5 43.5 -276.5
1501
-c0 -56 -4.83301 -110.167 -14.5 -162.5s-23.5 -102 -41.5 -149s-39.667 -90.833 -65 -131.5s-53.666 -77.334 -84.999 -110.001h206v-158h-474v169z" />
1502
- <glyph glyph-name="Iotadieresis" unicode="&#x3aa;"
1503
-d="M158 158h316v1106h-316v158h790v-158h-316v-1106h316v-158h-790v158zM316 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM632 1659
1504
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1505
- <glyph glyph-name="Upsilondieresis" unicode="&#x3ab;"
1506
-d="M474 472l-316 950h158l237 -711l237 711h158l-316 -948v-474h-158v472zM316 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM632 1659
1507
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1508
- <glyph glyph-name="alphatonos" unicode="&#x3ac;"
1509
-d="M711 237c-40 -79.333 -87.5 -138.669 -142.5 -178.002s-112.833 -59 -173.5 -59c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5
1510
-s77.5 63.834 125.5 84.501s99.333 31 154 31c62.667 0 121 -19.667 175 -59s101 -98.666 141 -177.999l79 237h158c-168.667 -368.667 -168.667 -737.334 0 -1106h-158zM158 394.997c0 -32.667 6.16699 -63.3281 18.5 -91.9951s29.333 -53.834 51 -75.501
1511
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c44 0 82.5 11.333 115.5 34s60.333 52.5 82 89.5s38 79.167 49 126.5s16.5 95.666 16.5 144.999s-5.5 97.666 -16.5 144.999s-27.333 89.5 -49 126.5s-49 66.833 -82 89.5s-71.5 34 -115.5 34
1512
-c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM393 1264l-79 79l395 237l79 -79z" />
1513
- <glyph glyph-name="epsilontonos" unicode="&#x3ad;"
1514
-d="M935 237c-11.333 -34 -28.8301 -65.5 -52.4971 -94.5s-52.334 -54 -86.001 -75s-71.167 -37.5 -112.5 -49.5s-85 -18 -131 -18c-54.667 -0 -106 8.33301 -154 25s-89.833 39.334 -125.5 68.001s-63.834 62.167 -84.501 100.5s-31 79.166 -31 122.499
1515
-c0 23.333 4.33301 46.166 13 68.499s20.334 43.5 35.001 63.5s31.5 38.833 50.5 56.5s38.833 33.834 59.5 48.501c-20.667 14.667 -40.5 30.834 -59.5 48.501s-35.833 36.5 -50.5 56.5s-26.334 41.167 -35.001 63.5s-13 45.166 -13 68.499
1516
-c0 43.333 10.333 84.166 31 122.499s48.834 71.833 84.501 100.5s77.5 51.334 125.5 68.001s99.333 25 154 25c46 0 89.667 -6 131 -18s78.833 -28.5 112.5 -49.5s62.334 -46 86.001 -75s41.167 -60.5 52.5 -94.5l-145 -79c0 22 -6.16699 42.5 -18.5 61.5
1517
-s-29.333 35.667 -51 50s-46.834 25.666 -75.501 33.999s-59.334 12.5 -92.001 12.5s-63.334 -4.16699 -92.001 -12.5s-53.834 -19.666 -75.501 -33.999s-38.667 -31 -51 -50s-18.5 -39.5 -18.5 -61.5s5.33301 -42.5 16 -61.5s28.334 -35.667 53.001 -50
1518
-s57.167 -25.666 97.5 -33.999s90.166 -12.5 149.499 -12.5v-158c-59.333 0 -109.166 -3.66699 -149.499 -11s-72.833 -17.833 -97.5 -31.5s-42.334 -30.167 -53.001 -49.5s-16 -41.333 -16 -66s6.16699 -46.667 18.5 -66s29.333 -35.833 51 -49.5
1519
-s46.834 -24.167 75.501 -31.5s59.334 -11 92.001 -11c30.667 0 59.5 4 86.5 12s51 19.167 72 33.5s38.167 31.166 51.5 50.499s21.666 40 24.999 62zM393.003 1264l-79 79l395 237l79 -79z" />
1520
- <glyph glyph-name="etatonos" unicode="&#x3ae;"
1521
-d="M553 948c-32 0 -62.167 -6.00098 -90.5 -18.001s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1106h158v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501
1522
-s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-1027h-158v1027c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM393 1264l-79 79l395 237l79 -79z" />
1523
- <glyph glyph-name="alpha" unicode="&#x3b1;"
1524
-d="M711 237c-40 -79.333 -87.5 -138.669 -142.5 -178.002s-112.833 -59 -173.5 -59c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5
1525
-s77.5 63.834 125.5 84.501s99.333 31 154 31c62.667 0 121 -19.667 175 -59s101 -98.666 141 -177.999l79 237h158c-168.667 -368.667 -168.667 -737.334 0 -1106h-158zM158 394.997c0 -32.667 6.16699 -63.3281 18.5 -91.9951s29.333 -53.834 51 -75.501
1526
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c44 0 82.5 11.333 115.5 34s60.333 52.5 82 89.5s38 79.167 49 126.5s16.5 95.666 16.5 144.999s-5.5 97.666 -16.5 144.999s-27.333 89.5 -49 126.5s-49 66.833 -82 89.5s-71.5 34 -115.5 34
1527
-c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316z" />
1528
- <glyph glyph-name="beta" unicode="&#x3b2;"
1529
-d="M158 1027c0 68 11.5 126.835 34.5 176.502s53.167 90.667 90.5 123s79.5 56.333 126.5 72s94.833 23.5 143.5 23.5c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154c0 -65.333 -14.5 -125.333 -43.5 -180
1530
-s-67.5 -100 -115.5 -136c48 -36 86.5 -81.5 115.5 -136.5s43.5 -114.833 43.5 -179.5c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31c-44.667 0 -87 7 -127 21s-76.667 33.333 -110 58v-237h-158
1531
-v1185zM553 158.002c32.667 0 63.3311 6.16016 91.998 18.4932s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-79v158h79
1532
-c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-28.667 0 -57.167 -5 -85.5 -15
1533
-s-53.666 -24.833 -75.999 -44.5s-40.5 -44.334 -54.5 -74.001s-21 -64.167 -21 -103.5v-642c0 -37.333 6.33301 -70 19 -98s29.834 -51.667 51.501 -71s46.834 -33.833 75.501 -43.5s59 -14.5 91 -14.5z" />
1534
- <glyph glyph-name="delta" unicode="&#x3b4;"
1535
-d="M158 1580l632.001 -0.00195312v-158h-395l435 -430c38 -37.333 67.667 -81.666 89 -132.999c11.333 -34 19 -62 23 -84s6 -43.333 6 -64v-316c0 -54.667 -13.5 -106 -40.5 -154s-62.833 -89.833 -107.5 -125.5s-95.334 -63.834 -152.001 -84.501s-114.667 -31 -174 -31
1536
-s-117.333 10.333 -174 31s-107.334 48.834 -152.001 84.501s-80.5 77.5 -107.5 125.5s-40.5 99.333 -40.5 154v316c0 54.667 13.5 106 40.5 154s62.833 89.833 107.5 125.5s95.334 63.834 152.001 84.501s114.667 31 174 31c1.33301 0 2.83301 -0.166992 4.5 -0.5
1537
-s3.16699 -0.5 4.5 -0.5l-325 317v158zM158.001 394.998c0 -32.667 8.99902 -63.333 26.999 -92s41.833 -53.834 71.5 -75.501s63.5 -38.667 101.5 -51s76.667 -18.5 116 -18.5s78 6.16699 116 18.5s71.833 29.333 101.5 51s53.5 46.834 71.5 75.501s27 59.334 27 92.001v316
1538
-c-13.333 47.333 -30.166 86.333 -50.499 117s-43.666 54.834 -69.999 72.501s-55.833 30 -88.5 37s-68.334 10.5 -107.001 10.5c-39.333 0 -78 -6.16699 -116 -18.5s-71.833 -29.333 -101.5 -51s-53.5 -46.834 -71.5 -75.501s-27 -59.334 -27 -92.001v-316z" />
1539
- <glyph glyph-name="epsilon" unicode="&#x3b5;"
1540
-d="M935 237c-11.333 -34 -28.8301 -65.5 -52.4971 -94.5s-52.334 -54 -86.001 -75s-71.167 -37.5 -112.5 -49.5s-85 -18 -131 -18c-54.667 -0 -106 8.33301 -154 25s-89.833 39.334 -125.5 68.001s-63.834 62.167 -84.501 100.5s-31 79.166 -31 122.499
1541
-c0 23.333 4.33301 46.166 13 68.499s20.334 43.5 35.001 63.5s31.5 38.833 50.5 56.5s38.833 33.834 59.5 48.501c-20.667 14.667 -40.5 30.834 -59.5 48.501s-35.833 36.5 -50.5 56.5s-26.334 41.167 -35.001 63.5s-13 45.166 -13 68.499
1542
-c0 43.333 10.333 84.166 31 122.499s48.834 71.833 84.501 100.5s77.5 51.334 125.5 68.001s99.333 25 154 25c46 0 89.667 -6 131 -18s78.833 -28.5 112.5 -49.5s62.334 -46 86.001 -75s41.167 -60.5 52.5 -94.5l-145 -79c0 22 -6.16699 42.5 -18.5 61.5
1543
-s-29.333 35.667 -51 50s-46.834 25.666 -75.501 33.999s-59.334 12.5 -92.001 12.5s-63.334 -4.16699 -92.001 -12.5s-53.834 -19.666 -75.501 -33.999s-38.667 -31 -51 -50s-18.5 -39.5 -18.5 -61.5s5.33301 -42.5 16 -61.5s28.334 -35.667 53.001 -50
1544
-s57.167 -25.666 97.5 -33.999s90.166 -12.5 149.499 -12.5v-158c-59.333 0 -109.166 -3.66699 -149.499 -11s-72.833 -17.833 -97.5 -31.5s-42.334 -30.167 -53.001 -49.5s-16 -41.333 -16 -66s6.16699 -46.667 18.5 -66s29.333 -35.833 51 -49.5
1545
-s46.834 -24.167 75.501 -31.5s59.334 -11 92.001 -11c30.667 0 59.5 4 86.5 12s51 19.167 72 33.5s38.167 31.166 51.5 50.499s21.666 40 24.999 62z" />
1546
- <glyph glyph-name="eta" unicode="&#x3b7;"
1547
-d="M553 948c-32 0 -62.167 -6.00098 -90.5 -18.001s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1106h158v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501
1548
-s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-1027h-158v1027c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5z" />
1549
- <glyph glyph-name="omicron" unicode="&#x3bf;"
1550
-d="M158 711c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154
1551
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316zM316 395c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
1552
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
1553
-s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316z" />
1554
- <glyph glyph-name="pi" unicode="&#x3c0;"
1555
-d="M632 948l-316 -0.000976562v-948h-158v948h-158v158h948v-158h-158v-632c0 -39.333 4.5 -69.666 13.5 -90.999s21 -37 36 -47s31.833 -15.833 50.5 -17.5s38 -2.5 58 -2.5v-158c-59.333 0 -109.166 8.66699 -149.499 26s-72.833 38.333 -97.5 63
1556
-s-42.334 50.5 -53.001 77.5s-16 50.5 -16 70.5v711z" />
1557
- <glyph glyph-name="sigma" unicode="&#x3c3;"
1558
-d="M710 948c25.333 -33.333 45.001 -70.001 59.001 -110.001s21 -82.333 21 -127v-316c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501
1559
-s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31h553v-158h-238zM395.001 947.999c-32.667 0 -63.3359 -6.16504 -92.0029 -18.498s-53.834 -29.333 -75.501 -51
1560
-s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501
1561
-s18.5 59.334 18.5 92.001v316c0 32 -6 62 -18 90s-28.167 52.667 -48.5 74s-44.333 38.5 -72 51.5s-57.167 20.167 -88.5 21.5h-10z" />
1562
- <glyph glyph-name="tau" unicode="&#x3c4;"
1563
-d="M790 0c-79.333 0 -148.499 9 -207.499 27s-108.333 41.833 -148 71.5s-69.334 63.5 -89.001 101.5s-29.5 76.667 -29.5 116v632h-316v158h948v-158h-474v-632c0 -20 5.33301 -39.333 16 -58s28.334 -35.5 53.001 -50.5s57.167 -27 97.5 -36s90.166 -13.5 149.499 -13.5
1564
-v-158z" />
1565
- <glyph glyph-name="phi" unicode="&#x3c6;"
1566
-d="M474 869c-0.666992 51.333 10.501 94.333 33.501 129s52 60.667 87 78s73.167 26 114.5 26s79.666 -8.66699 114.999 -26s64.833 -43.166 88.5 -77.499s35.5 -77.5 35.5 -129.5v-474c0 -48 -8 -93.333 -24 -136s-38.167 -81.167 -66.5 -115.5s-61.833 -63.333 -100.5 -87
1567
-s-80.334 -39.834 -125.001 -48.501v-324h-158v324c-45.333 8.66699 -87.166 24.834 -125.499 48.501s-71.666 52.667 -99.999 87s-50.5 72.833 -66.5 115.5s-24 88 -24 136v711h158v-711c0 -26 3.83301 -50.667 11.5 -74s18.5 -44.833 32.5 -64.5s30.667 -36.834 50 -51.501
1568
-s40.666 -26 63.999 -34v698zM790.001 763c0 59.333 -8.16699 103.832 -24.5 133.499s-34.5 44.5 -54.5 44.5s-38.167 -14.833 -54.5 -44.5s-24.5 -74.167 -24.5 -133.5v-592c22.667 8 43.667 19.333 63 34s36 31.834 50 51.501s25 41.167 33 64.5s12 48 12 74v368z" />
1569
- <glyph glyph-name="uni1E02" unicode="&#x1e02;"
1570
-d="M158 1422l395 0.00195312c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154c0 -65.333 -14.5 -125.333 -43.5 -180s-67.5 -100 -115.5 -136c48 -36 86.5 -81.5 115.5 -136.5s43.5 -114.833 43.5 -179.5
1571
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395v1422zM553 790.002c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001
1572
-s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237zM553 157.998c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001
1573
-s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237zM474 1658.99c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23
1574
-s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1575
- <glyph glyph-name="uni1E03" unicode="&#x1e03;"
1576
-d="M158 1422l158 0.000976562v-395c25.333 18.667 53 34.667 83 48c48 20.667 99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5
1577
-s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31c-30 12.667 -57.667 28.334 -83 47.001v-78h-158v1422zM316 720.001l0.000976562 -325.001c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51
1578
-s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5
1579
-s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.834 -46.834 -51.501 -75.501zM471.001 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23
1580
-s-23 34 -23 56z" />
1581
- <glyph glyph-name="uni1E08" unicode="&#x1e08;"
1582
-d="M555 1264c-34 0 -65.6689 -6.16309 -95.002 -18.4961s-54.666 -29.333 -75.999 -51s-38.166 -46.834 -50.499 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.166 -53.834 50.499 -75.501s46.666 -38.667 75.999 -51
1583
-s61 -18.5 95 -18.5c28 0 54.333 3.83301 79 11.5s47.167 18.5 67.5 32.5s38 30.667 53 50s26.5 40.666 34.5 63.999h158c-9.33301 -45.333 -25.666 -87.333 -48.999 -126s-52.166 -72 -86.499 -100s-73.166 -50 -116.499 -66s-90 -24 -140 -24
1584
-c-56 0 -108.167 10.333 -156.5 31s-90.5 48.834 -126.5 84.501s-64.167 77.5 -84.5 125.5s-30.5 99.333 -30.5 154v632c0 54.667 10.167 106 30.5 154s48.5 89.833 84.5 125.5s78.167 63.834 126.5 84.501s100.5 31 156.5 31c50 0 96.833 -8 140.5 -24
1585
-s82.5 -38.167 116.5 -66.5s62.667 -61.833 86 -100.5s39.666 -80.334 48.999 -125.001h-158c-8 22.667 -19.5 43.667 -34.5 63s-32.5 36 -52.5 50s-42.5 25 -67.5 33s-51.5 12 -79.5 12zM629.998 0.00390625c0 -59.333 -9.83203 -112.832 -29.499 -160.499
1586
-s-49.334 -86.334 -89.001 -116.001s-89.167 -48.667 -148.5 -57s-128.333 -2.5 -207 17.5v158c59.333 -20 109.166 -30.333 149.499 -31s72.833 6.33301 97.5 21s42.334 36.5 53.001 65.5s16 63.167 16 102.5h158zM392.999 1580l-79 79l395 237l79 -79z" />
1587
- <glyph glyph-name="uni1E09" unicode="&#x1e09;"
1588
-d="M316 395c0 -32.667 7 -63.332 21 -91.999s32.5 -53.834 55.5 -75.501s49.667 -38.667 80 -51s61.833 -18.5 94.5 -18.5c26 0 50.667 3.83301 74 11.5s44.666 18.5 63.999 32.5s36.333 30.667 51 50s26 40.666 34 63.999h158
1589
-c-9.33301 -45.333 -25.833 -87.166 -49.5 -125.499s-52.5 -71.666 -86.5 -99.999s-72.333 -50.5 -115 -66.5s-88 -24 -136 -24c-54.667 0 -106.334 10.333 -155.001 31s-91.334 48.834 -128.001 84.501s-65.834 77.5 -87.501 125.5s-32.5 99.333 -32.5 154v316
1590
-c0 54.667 10.833 106 32.5 154s50.834 89.833 87.501 125.5s79.334 63.834 128.001 84.501s100.334 31 155.001 31c48 0 93.333 -8 136 -24s81 -38.167 115 -66.5s62.833 -61.833 86.5 -100.5s40.167 -80.334 49.5 -125.001h-158c-8 22.667 -19.333 43.667 -34 63
1591
-s-31.667 36 -51 50s-40.666 25 -63.999 33s-48 12 -74 12c-32.667 0 -64.167 -6.16699 -94.5 -18.5s-57 -29.333 -80 -51s-41.5 -46.834 -55.5 -75.501s-21 -59.334 -21 -92.001v-316zM632 0.00195312c0 -59.333 -9.83203 -112.832 -29.499 -160.499
1592
-s-49.334 -86.334 -89.001 -116.001s-89.167 -48.667 -148.5 -57s-128.333 -2.5 -207 17.5v158c59.333 -20 109.166 -30.333 149.499 -31s72.833 6.33301 97.5 21s42.334 36.5 53.001 65.5s16 63.167 16 102.5h158zM393.001 1264l-79 79l395 237l79 -79z" />
1593
- <glyph glyph-name="uni1E0A" unicode="&#x1e0a;"
1594
-d="M158 1422l395 0.00195312c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395
1595
-v1422zM553 158.002c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237
1596
-v-1106h237zM316 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1597
- <glyph glyph-name="uni1E0B" unicode="&#x1e0b;"
1598
-d="M948 0l-158 -0.000976562v78c-25.333 -18.667 -53 -34.334 -83 -47.001c-48 -20.667 -99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154
1599
-s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31c30 -13.333 57.667 -29.333 83 -48v395h158v-1422zM772 802.999c-12.667 28.667 -29.833 53.835 -51.5 75.502s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5
1600
-s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5
1601
-s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v325zM474.001 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23
1602
-s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1603
- <glyph glyph-name="uni1E1E" unicode="&#x1e1e;"
1604
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-632h-158v1422zM471 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1605
- <glyph glyph-name="uni1E1F" unicode="&#x1e1f;"
1606
-d="M158 948l158.001 0.000976562v79c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31h237v-158h-237c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
1607
-s-18.5 -59.334 -18.5 -92.001v-79h316v-158h-316v-790h-158v790h-158v158zM474.001 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1608
- <glyph glyph-name="uni1E22" unicode="&#x1e22;"
1609
-d="M158 1422h158v-632h474v632h158v-1422h-158v632h-474v-632h-158v1422zM471 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1610
- <glyph glyph-name="uni1E23" unicode="&#x1e23;"
1611
-d="M790 711c0 32.667 -6.16699 63.333 -18.5 92s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-32 0 -62.167 -6 -90.5 -18s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1422h158v-396
1612
-c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711zM471 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56
1613
-s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1614
- <glyph glyph-name="uni1E26" unicode="&#x1e26;"
1615
-d="M158 1422h158v-632h474v632h158v-1422h-158v632h-474v-632h-158v1422zM314 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM630 1659
1616
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1617
- <glyph glyph-name="uni1E27" unicode="&#x1e27;"
1618
-d="M790 711c0 32.667 -6.16699 63.333 -18.5 92s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-32 0 -62.167 -6 -90.5 -18s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1422h158v-396
1619
-c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711zM474 1501c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56
1620
-s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM790 1501c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1621
- <glyph glyph-name="uni1E30" unicode="&#x1e30;"
1622
-d="M316 761l454 661h178l-474 -711l474 -711h-180l-452 666v-666h-158v1422h158v-661zM393 1580l-79 79l395 237l79 -79z" />
1623
- <glyph glyph-name="uni1E31" unicode="&#x1e31;"
1624
-d="M316 632h38l400 474h194l-453 -553l453 -553h-194l-400 474h-38v-474h-158v1422h158v-790zM393 1264l-79 79l395 237l79 -79z" />
1625
- <glyph glyph-name="uni1E3E" unicode="&#x1e3e;"
1626
-d="M790 1106l-237 -414l-237 414v-1106h-158v1422h158l237 -474l237 474h158v-1422h-158v1106zM393 1580l-79 79l395 237l79 -79z" />
1627
- <glyph glyph-name="uni1E3F" unicode="&#x1e3f;"
1628
-d="M474 869h-1.00098c0.666992 52.667 -25.333 79 -78 79s-78.667 -26.333 -78 -79h-1v-869h-158v1106h197c24 0 46.667 -4 68 -12s40.5 -19 57.5 -33s31.5 -30.667 43.5 -50s20.333 -40.333 25 -63h7c4.66699 22.667 12.834 43.667 24.501 63s26 36 43 50s36.333 25 58 33
1629
-s44.5 12 68.5 12c27.333 0 53 -5.16699 77 -15.5s45 -24.333 63 -42s32.167 -38.5 42.5 -62.5s15.5 -49.667 15.5 -77v-909h-158v869c0 52.667 -26.333 79 -79 79s-79 -26.333 -79 -79v-869h-158v869zM392.999 1264l-79 79l395 237l79 -79z" />
1630
- <glyph glyph-name="uni1E40" unicode="&#x1e40;"
1631
-d="M790 1106l-237 -414l-237 414v-1106h-158v1422h158l237 -474l237 474h158v-1422h-158v1106zM474 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z
1632
-" />
1633
- <glyph glyph-name="uni1E41" unicode="&#x1e41;"
1634
-d="M474 869h-1.00098c0.666992 52.667 -25.333 79 -78 79s-78.667 -26.333 -78 -79h-1v-869h-158v1106h197c24 0 46.667 -4 68 -12s40.5 -19 57.5 -33s31.5 -30.667 43.5 -50s20.333 -40.333 25 -63h7c4.66699 22.667 12.834 43.667 24.501 63s26 36 43 50s36.333 25 58 33
1635
-s44.5 12 68.5 12c27.333 0 53 -5.16699 77 -15.5s45 -24.333 63 -42s32.167 -38.5 42.5 -62.5s15.5 -49.667 15.5 -77v-909h-158v869c0 52.667 -26.333 79 -79 79s-79 -26.333 -79 -79v-869h-158v869zM473.999 1343c0 22 7.66699 40.667 23 56s34 23 56 23
1636
-s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1637
- <glyph glyph-name="uni1E44" unicode="&#x1e44;"
1638
-d="M158 0v1422h158l474 -1052v1052h158v-1422h-158l-474 1052v-1052h-158zM471 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1639
- <glyph glyph-name="uni1E45" unicode="&#x1e45;"
1640
-d="M553 948c-32 0 -62.167 -6.00098 -90.5 -18.001s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1106h158v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501
1641
-s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM471 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23
1642
-s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1643
- <glyph glyph-name="uni1E54" unicode="&#x1e54;"
1644
-d="M316 0l-158 0.00195312v1422h395c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v-632z
1645
-M553 790.002c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237zM393 1580
1646
-l-79 79l395 237l79 -79z" />
1647
- <glyph glyph-name="uni1E55" unicode="&#x1e55;"
1648
-d="M158 1106l158 0.00195312v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5
1649
-s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31c-44.667 0 -87 7 -127 21s-76.667 33.333 -110 58v-553h-158v1580zM553 948.002c-32 0 -62.333 -5.00195 -91 -15.002s-53.834 -24.833 -75.501 -44.5s-38.834 -44.334 -51.501 -74.001s-19 -64.167 -19 -103.5v-316
1650
-c0 -39.333 6.33301 -73.833 19 -103.5s29.834 -54.334 51.501 -74.001s46.834 -34.5 75.501 -44.5s59 -15 91 -15c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316
1651
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM393 1264l-79 79l395 237l79 -79z" />
1652
- <glyph glyph-name="uni1E56" unicode="&#x1e56;"
1653
-d="M316 0l-158 0.00195312v1422h395c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v-632z
1654
-M553 790.002c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237zM474 1659
1655
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1656
- <glyph glyph-name="uni1E57" unicode="&#x1e57;"
1657
-d="M158 1106l158 0.00195312v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5
1658
-s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31c-44.667 0 -87 7 -127 21s-76.667 33.333 -110 58v-553h-158v1580zM553 948.002c-32 0 -62.333 -5.00195 -91 -15.002s-53.834 -24.833 -75.501 -44.5s-38.834 -44.334 -51.501 -74.001s-19 -64.167 -19 -103.5v-316
1659
-c0 -39.333 6.33301 -73.833 19 -103.5s29.834 -54.334 51.501 -74.001s46.834 -34.5 75.501 -44.5s59 -15 91 -15c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316
1660
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM474 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23
1661
-s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1662
- <glyph glyph-name="uni1E60" unicode="&#x1e60;"
1663
-d="M316 1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154
1664
-s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395v158h395c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001
1665
-s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154s10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501
1666
-s99.333 31 154 31h395v-158h-395c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001zM470.998 1659c0 22 7.8125 40.667 23.4365 56s34.6455 23 57.0635 23
1667
-c22.417 0 41.4375 -7.66699 57.0615 -23s23.4365 -34 23.4365 -56s-7.8125 -40.667 -23.4365 -56s-34.6445 -23 -57.0615 -23c-22.418 0 -41.4395 7.66699 -57.0635 23s-23.4365 34 -23.4365 56z" />
1668
- <glyph glyph-name="uni1E61" unicode="&#x1e61;"
1669
-d="M948 1106v-158h-395c-39.333 0 -73.833 -4.5 -103.5 -13.5s-54.334 -21 -74.001 -36s-34.5 -31.833 -44.5 -50.5s-15 -38 -15 -58s5 -39.333 15 -58s24.833 -35.5 44.5 -50.5s44.334 -27 74.001 -36s64.167 -13.5 103.5 -13.5c26 0 54 -2.33301 84 -7s59.667 -12 89 -22
1670
-s57.333 -23.167 84 -39.5s50.167 -36.166 70.5 -59.499s36.666 -50.333 48.999 -81s18.5 -65.667 18.5 -105c0 -40 -9.5 -79 -28.5 -117s-45.667 -72 -80 -102s-75.833 -54 -124.5 -72s-102.667 -27 -162 -27h-395v158h395c39.333 0 73.833 4.5 103.5 13.5
1671
-s54.334 21 74.001 36s34.5 32.167 44.5 51.5s15 39 15 59c0 19.333 -5 38.333 -15 57s-24.833 35.334 -44.5 50.001s-44.334 26.5 -74.001 35.5s-64.167 13.5 -103.5 13.5c-26 0 -54 2.33301 -84 7s-59.667 12.167 -89 22.5s-57.333 23.666 -84 39.999
1672
-s-50.167 36.166 -70.5 59.499s-36.666 50.5 -48.999 81.5s-18.5 66.167 -18.5 105.5s9.5 78 28.5 116s45.667 71.833 80 101.5s75.833 53.5 124.5 71.5s102.667 27 162 27h395zM474 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56
1673
-s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1674
- <glyph glyph-name="uni1E6A" unicode="&#x1e6a;"
1675
-d="M474 1264h-316v158h790v-158h-316v-1264h-158v1264zM471 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1676
- <glyph glyph-name="uni1E6B" unicode="&#x1e6b;"
1677
-d="M158 1106l157.999 0.000976562v316h158v-316h316v-158h-316v-553c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h237v-158h-237c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501
1678
-s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v553h-158v158zM315.999 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1679
- <glyph glyph-name="Wgrave" unicode="&#x1e80;"
1680
-d="M790 1422h158v-1422h-158l-237 474l-237 -474h-158v1422h158v-1106l237 414l237 -414v1106zM316 1738v158l474 -237v-158z" />
1681
- <glyph glyph-name="wgrave" unicode="&#x1e81;"
1682
-d="M632 237c0 -52.667 26.334 -79 79.001 -79s79 26.333 79 79v869h158v-909c0 -27.333 -5.16699 -53 -15.5 -77s-24.5 -44.833 -42.5 -62.5s-39 -31.667 -63 -42s-49.667 -15.5 -77 -15.5c-24 0 -46.833 4 -68.5 12s-41 19 -58 33s-31.333 30.667 -43 50
1683
-s-19.834 40.333 -24.501 63h-7c-4.66699 -22.667 -13 -43.667 -25 -63s-26.5 -36 -43.5 -50s-36.167 -25 -57.5 -33s-44 -12 -68 -12c-27.333 0 -53 5.16699 -77 15.5s-44.833 24.333 -62.5 42s-31.667 38.5 -42 62.5s-15.5 49.667 -15.5 77v909h158v-869h1
1684
-c-0.666992 -52.667 25.333 -79 78 -79s78.667 26.333 78 79h1v395h158v-395zM234.001 1422v158l474 -237v-158z" />
1685
- <glyph glyph-name="Wacute" unicode="&#x1e82;"
1686
-d="M790 1422h158v-1422h-158l-237 474l-237 -474h-158v1422h158v-1106l237 414l237 -414v1106zM395 1580l-79 79l395 237l79 -79z" />
1687
- <glyph glyph-name="wacute" unicode="&#x1e83;"
1688
-d="M632 237c0 -52.667 26.334 -79 79.001 -79s79 26.333 79 79v869h158v-909c0 -27.333 -5.16699 -53 -15.5 -77s-24.5 -44.833 -42.5 -62.5s-39 -31.667 -63 -42s-49.667 -15.5 -77 -15.5c-24 0 -46.833 4 -68.5 12s-41 19 -58 33s-31.333 30.667 -43 50
1689
-s-19.834 40.333 -24.501 63h-7c-4.66699 -22.667 -13 -43.667 -25 -63s-26.5 -36 -43.5 -50s-36.167 -25 -57.5 -33s-44 -12 -68 -12c-27.333 0 -53 5.16699 -77 15.5s-44.833 24.333 -62.5 42s-31.667 38.5 -42 62.5s-15.5 49.667 -15.5 77v909h158v-869h1
1690
-c-0.666992 -52.667 25.333 -79 78 -79s78.667 26.333 78 79h1v395h158v-395zM395.001 1264l-79 79l395 237l79 -79z" />
1691
- <glyph glyph-name="Wdieresis" unicode="&#x1e84;"
1692
-d="M790 1422h158v-1422h-158l-237 474l-237 -474h-158v1422h158v-1106l237 414l237 -414v1106zM314 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z
1693
-M630 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1694
- <glyph glyph-name="wdieresis" unicode="&#x1e85;"
1695
-d="M632 237c0 -52.667 26.334 -79 79.001 -79s79 26.333 79 79v869h158v-909c0 -27.333 -5.16699 -53 -15.5 -77s-24.5 -44.833 -42.5 -62.5s-39 -31.667 -63 -42s-49.667 -15.5 -77 -15.5c-24 0 -46.833 4 -68.5 12s-41 19 -58 33s-31.333 30.667 -43 50
1696
-s-19.834 40.333 -24.501 63h-7c-4.66699 -22.667 -13 -43.667 -25 -63s-26.5 -36 -43.5 -50s-36.167 -25 -57.5 -33s-44 -12 -68 -12c-27.333 0 -53 5.16699 -77 15.5s-44.833 24.333 -62.5 42s-31.667 38.5 -42 62.5s-15.5 49.667 -15.5 77v909h158v-869h1
1697
-c-0.666992 -52.667 25.333 -79 78 -79s78.667 26.333 78 79h1v395h158v-395zM314.001 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM630.001 1343
1698
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1699
- <glyph glyph-name="uni1E86" unicode="&#x1e86;"
1700
-d="M790 1422h158v-1422h-158l-237 474l-237 -474h-158v1422h158v-1106l237 414l237 -414v1106zM471 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z
1701
-" />
1702
- <glyph glyph-name="uni1E87" unicode="&#x1e87;"
1703
-d="M632 237c0 -52.667 26.334 -79 79.001 -79s79 26.333 79 79v869h158v-909c0 -27.333 -5.16699 -53 -15.5 -77s-24.5 -44.833 -42.5 -62.5s-39 -31.667 -63 -42s-49.667 -15.5 -77 -15.5c-24 0 -46.833 4 -68.5 12s-41 19 -58 33s-31.333 30.667 -43 50
1704
-s-19.834 40.333 -24.501 63h-7c-4.66699 -22.667 -13 -43.667 -25 -63s-26.5 -36 -43.5 -50s-36.167 -25 -57.5 -33s-44 -12 -68 -12c-27.333 0 -53 5.16699 -77 15.5s-44.833 24.333 -62.5 42s-31.667 38.5 -42 62.5s-15.5 49.667 -15.5 77v909h158v-869h1
1705
-c-0.666992 -52.667 25.333 -79 78 -79s78.667 26.333 78 79h1v395h158v-395zM471.001 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1706
- <glyph glyph-name="uni1E8A" unicode="&#x1e8a;"
1707
-d="M553 904l230 518h166l-310 -711l310 -711h-166l-230 517l-230 -517h-165l309 711l-310 711h166zM471 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23
1708
-s-23 34 -23 56z" />
1709
- <glyph glyph-name="uni1E8B" unicode="&#x1e8b;"
1710
-d="M553 706l224 400h173l-311 -553l311 -553h-173l-224 398l-225 -398h-173l311 553l-311 553h173zM471 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23
1711
-s-23 34 -23 56z" />
1712
- <glyph glyph-name="uni1E8C" unicode="&#x1e8c;"
1713
-d="M553 904l230 518h166l-310 -711l310 -711h-166l-230 517l-230 -517h-165l309 711l-310 711h166zM314 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23
1714
-s-23 34 -23 56zM630 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1715
- <glyph glyph-name="uni1E8D" unicode="&#x1e8d;"
1716
-d="M553 706l224 400h173l-311 -553l311 -553h-173l-224 398l-225 -398h-173l311 553l-311 553h173zM314 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23
1717
-s-23 34 -23 56zM630 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1718
- <glyph glyph-name="uni1E8E" unicode="&#x1e8e;"
1719
-d="M474 472l-316 950h158l237 -711l237 711h158l-316 -948v-474h-158v472zM471 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1720
- <glyph glyph-name="uni1E8F" unicode="&#x1e8f;"
1721
-d="M316 395c0 -32.667 6.16504 -63.335 18.498 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 60.333 21.5 99v711h158v-1185
1722
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158h237c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158
1723
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM470.998 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23
1724
-s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1725
- <glyph glyph-name="uni1EBC" unicode="&#x1ebc;"
1726
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-474h632v-158h-790v1422zM946 1817c-79.333 -158 -158.334 -237 -237.001 -237c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5
1727
-s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38
1728
-s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58z" />
1729
- <glyph glyph-name="uni1EBD" unicode="&#x1ebd;"
1730
-d="M316 395c0 -32.667 6.16406 -63.333 18.4971 -92s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h395v-158h-395c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316
1731
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-237h-632v-79zM315.997 632.001h474.004v79
1732
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79zM946.001 1501
1733
-c-79.333 -158 -158.334 -237 -237.001 -237c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36
1734
-s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5
1735
-c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58z" />
1736
- <glyph glyph-name="Ygrave" unicode="&#x1ef2;"
1737
-d="M474 472l-316 950h158l237 -711l237 711h158l-316 -948v-474h-158v472zM315.662 1738v158l472.988 -237v-158z" />
1738
- <glyph glyph-name="ygrave" unicode="&#x1ef3;"
1739
-d="M316 395c0 -32.667 6.16504 -63.335 18.498 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 60.333 21.5 99v711h158v-1185
1740
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158h237c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158
1741
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM315.998 1422v158l474 -237v-158z" />
1742
- <glyph glyph-name="uni1EF8" unicode="&#x1ef8;"
1743
-d="M474 472l-316 950h158l237 -711l237 711h158l-316 -948v-474h-158v472zM946 1817c-79.333 -158 -158.334 -237 -237.001 -237c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5
1744
-s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38
1745
-s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58z" />
1746
- <glyph glyph-name="uni1EF9" unicode="&#x1ef9;"
1747
-d="M316 395c0 -32.667 6.16504 -63.335 18.498 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 60.333 21.5 99v711h158v-1185
1748
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158h237c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158
1749
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM945.998 1501c-79.333 -158 -158.334 -237 -237.001 -237
1750
-c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79
1751
-c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5
1752
-s13.5 38 13.5 58z" />
1753
- <glyph glyph-name="endash" unicode="&#x2013;"
1754
-d="M158 473v157h788v-157h-788z" />
1755
- <glyph glyph-name="emdash" unicode="&#x2014;"
1756
-d="M0 475v156h1106v-156h-315h-791z" />
1757
- <glyph glyph-name="afii00208" unicode="&#x2015;"
1758
-d="M0 475v156h1106v-156h-315h-791z" />
1759
- <glyph glyph-name="uni2016" unicode="&#x2016;"
1760
-d="M316 1422h158v-1422h-158v1422zM632 1422h158v-1422h-158v1422z" />
1761
- <glyph glyph-name="underscoredbl" unicode="&#x2017;"
1762
-d="M0 0h1106v-158h-1106v158zM0 -316h1106v-158h-1106v158z" />
1763
- <glyph glyph-name="quoteleft" unicode="&#x2018;"
1764
-d="M553 1580c22 0 40.665 -7.66797 55.998 -23.001s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23c-20 0 -35.333 -3.5 -46 -10.5s-18.5 -17.167 -23.5 -30.5s-7.83301 -29.833 -8.5 -49.5s-1 -42.167 -1 -67.5c22 0 42.5 -4.16699 61.5 -12.5
1765
-s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999 -50s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5s-42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50
1766
-s-12.5 39.5 -12.5 61.5v158c0 39.333 5 78 15 116s24.833 71.833 44.5 101.5s44.334 53.5 74.001 71.5s64.167 27 103.5 27z" />
1767
- <glyph glyph-name="quoteright" unicode="&#x2019;"
1768
-d="M395 943.994c-22 0 -40.665 7.7168 -55.998 23.1475s-23 34.2158 -23 56.3555s7.66699 40.9248 23 56.3555s34 23.1455 56 23.1455c20 0 35.333 3.52246 46 10.5664c10.667 7.04492 18.5 17.2764 23.5 30.6943s7.83301 30.0225 8.5 49.8135
1769
-c0.666992 19.792 1 42.4346 1 67.9287c-22 0 -42.5 4.19336 -61.5 12.5791s-35.667 19.791 -50 34.2158s-25.666 31.1973 -33.999 50.3174s-12.5 39.75 -12.5 61.8896s4.16699 42.7695 12.5 61.8896s19.666 35.8926 33.999 50.3174s31 25.8301 50 34.2158
1770
-s39.5 12.5791 61.5 12.5791s42.5 -4.19336 61.5 -12.5791s35.667 -19.791 50 -34.2158s25.666 -31.1973 33.999 -50.3174s12.5 -39.75 12.5 -61.8896v-159.003c0 -39.583 -5 -78.4951 -15 -116.736s-24.833 -72.2891 -44.5 -102.145
1771
-c-19.667 -29.8545 -44.334 -53.8389 -74.001 -71.9531s-64.167 -27.1719 -103.5 -27.1719z" />
1772
- <glyph glyph-name="quotesinglbase" unicode="&#x201a;"
1773
-d="M395 -316c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999
1774
-s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158
1775
-c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1776
- <glyph glyph-name="quotedblleft" unicode="&#x201c;"
1777
-d="M395 1580c22 0 40.665 -7.66797 55.998 -23.001s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23c-20 0 -35.333 -3.5 -46 -10.5s-18.5 -17.167 -23.5 -30.5s-7.83301 -29.833 -8.5 -49.5s-1 -42.167 -1 -67.5c22 0 42.5 -4.16699 61.5 -12.5
1778
-s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999 -50s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5s-42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50
1779
-s-12.5 39.5 -12.5 61.5v158c0 39.333 5 78 15 116s24.833 71.833 44.5 101.5s44.334 53.5 74.001 71.5s64.167 27 103.5 27zM867.998 1580c22 0 40.667 -7.66797 56 -23.001s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23c-20 0 -35.333 -3.5 -46 -10.5
1780
-s-18.5 -17.167 -23.5 -30.5s-7.83301 -29.833 -8.5 -49.5s-1 -42.167 -1 -67.5c22 0 42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999 -50s-31 -25.666 -50 -33.999
1781
-s-39.5 -12.5 -61.5 -12.5c-21.333 0 -41.5 4.16699 -60.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5v158c0 39.333 5 78 15 116s24.833 71.833 44.5 101.5s44.167 53.5 73.5 71.5s63.666 27 102.999 27z" />
1782
- <glyph glyph-name="quotedblright" unicode="&#x201d;"
1783
-d="M238 948c-22 0 -40.667 7.66797 -56 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.66699 29.833 8 49.5s0.5 42.167 0.5 67.5c-21.333 0 -41.5 4.16699 -60.5 12.5s-35.667 19.666 -50 33.999
1784
-s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.167 12.5 60.5 12.5c22 0 42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158
1785
-c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.167 -53.5 -73.5 -71.5s-63.666 -27 -102.999 -27zM712 948.001c-22 0 -40.667 7.66797 -56 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5
1786
-s7.66699 29.833 8 49.5s0.5 42.167 0.5 67.5c-21.333 0 -41.5 4.16699 -60.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.167 12.5 60.5 12.5
1787
-c22 0 42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.167 -53.5 -73.5 -71.5s-63.666 -27 -102.999 -27z" />
1788
- <glyph glyph-name="quotedblbase" unicode="&#x201e;"
1789
-d="M237 -316c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999
1790
-s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158
1791
-c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27zM711.002 -315.999c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5
1792
-s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5
1793
-s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1794
- <glyph glyph-name="dagger" unicode="&#x2020;"
1795
-d="M474 948h-316v158h316v316h158v-316h316v-158h-316v-632h-158v632z" />
1796
- <glyph glyph-name="daggerdbl" unicode="&#x2021;"
1797
-d="M474 316h-316v158h316v474h-316v158h316v316h158v-316h316v-158h-316v-474h316v-158h-316v-316h-158v316z" />
1798
- <glyph glyph-name="bullet" unicode="&#x2022;"
1799
-d="M316 711c0 32.667 6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5s63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001
1800
-s-6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001z" />
1801
- <glyph glyph-name="onedotenleader" unicode="&#x2024;"
1802
-d="M316 158c0 22 4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999 -50
1803
-s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5s-42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5z" />
1804
- <glyph glyph-name="ellipsis" unicode="&#x2026;"
1805
-d="M158 316h158v-316h-158v316zM474 316h158v-316h-158v316zM790 316h158v-316h-158v316z" />
1806
- <glyph glyph-name="perthousand" unicode="&#x2030;"
1807
-d="M188 158l-188 0.00292969l760 1106h188l-437 -636c13.333 2.66699 27.333 4 42 4c32 0 62 -6.33301 90 -19c25.333 -10.667 47.666 -25 66.999 -43c19.333 18 41.333 32.333 66 43c28.667 12.667 59 19 91 19s62.167 -6.16699 90.5 -18.5s53 -29.333 74 -51
1808
-s37.667 -46.834 50 -75.501s18.5 -59.334 18.5 -92.001s-6.16699 -63.334 -18.5 -92.001s-29 -53.834 -50 -75.501s-45.667 -38.667 -74 -51s-58.5 -18.5 -90.5 -18.5s-62.333 6 -91 18c-24.667 11.333 -46.667 26 -66 44c-19.333 -18 -41.666 -32.667 -66.999 -44
1809
-c-28 -12 -58 -18 -90 -18s-62.167 6.16699 -90.5 18.5s-53 29.333 -74 51s-37.833 46.834 -50.5 75.501c-6.66699 16.667 -11.667 33.667 -15 51zM8 1027c0 32.667 6.16699 63.334 18.5 92.001s29 53.834 50 75.501s45.667 38.667 74 51s58.5 18.5 90.5 18.5
1810
-s62.167 -6.16699 90.5 -18.5s53 -29.333 74 -51s37.667 -46.834 50 -75.501s18.5 -59.334 18.5 -92.001s-6.16699 -63.334 -18.5 -92.001s-29 -53.834 -50 -75.501s-45.667 -38.667 -74 -51s-58.5 -18.5 -90.5 -18.5s-62.167 6.16699 -90.5 18.5s-53 29.333 -74 51
1811
-s-37.667 46.834 -50 75.501s-18.5 59.334 -18.5 92.001zM163 1027c0 -22 7.66699 -40.667 23 -56s33.666 -23 54.999 -23s39.666 7.66699 54.999 23s23 34 23 56s-7.66699 40.667 -23 56s-33.666 23 -54.999 23s-39.666 -7.66699 -54.999 -23s-23 -34 -23 -56zM790 395.003
1812
-c0 -22 7.5 -40.667 22.5 -56s33.167 -23 54.5 -23s39.666 7.66699 54.999 23s23 34 23 56s-7.66699 40.667 -23 56s-33.666 23 -54.999 23s-39.5 -7.66699 -54.5 -23s-22.5 -34 -22.5 -56zM476 395.003c0 -22 7.5 -40.667 22.5 -56s33.167 -23 54.5 -23
1813
-s39.666 7.66699 54.999 23s23 34 23 56s-7.66699 40.667 -23 56s-33.666 23 -54.999 23s-39.5 -7.66699 -54.5 -23s-22.5 -34 -22.5 -56z" />
1814
- <glyph glyph-name="guilsinglleft" unicode="&#x2039;"
1815
-d="M632 948l79 -79l-237 -316l237 -316l-80 -79l-315 395z" />
1816
- <glyph glyph-name="guilsinglright" unicode="&#x203a;"
1817
-d="M395.039 948l-78.9961 -79l236.986 -316l-236.986 -316l79.9951 -79l314.981 395z" />
1818
- <glyph glyph-name="exclamdbl" unicode="&#x203c;"
1819
-d="M316 1422h158v-948h-158v948zM316 316h158v-316h-158v316zM632 1422h158v-948h-158v948zM632 316h158v-316h-158v316z" />
1820
- <glyph glyph-name="uni203E" unicode="&#x203e;"
1821
-d="M0 1424v156h1106v-156h-1106z" />
1822
- <glyph glyph-name="fraction" unicode="&#x2044;"
1823
-d="M790 1580h158l-632 -1580h-158z" />
1824
- <glyph glyph-name="zerosuperior" unicode="&#x2070;"
1825
-d="M158 1185c0 54.667 6.16699 106 18.5 154s29.333 89.833 51 125.5s46.834 63.834 75.501 84.501s59.334 31 92.001 31s63.334 -10.333 92.001 -31s53.834 -48.834 75.501 -84.501s38.667 -77.5 51 -125.5s18.5 -99.333 18.5 -154s-6.16699 -106 -18.5 -154
1826
-s-29.333 -89.833 -51 -125.5s-46.834 -63.834 -75.501 -84.501s-59.334 -31 -92.001 -31s-63.334 10.333 -92.001 31s-53.834 48.834 -75.501 84.501s-38.667 77.5 -51 125.5s-18.5 99.333 -18.5 154zM316 1185c0 -32.667 2 -63.334 6 -92.001s9.66699 -53.834 17 -75.501
1827
-s15.666 -38.667 24.999 -51s19.666 -18.5 30.999 -18.5c10.667 0 20.834 6.16699 30.501 18.5s18.167 29.333 25.5 51s13 46.834 17 75.501s6 59.334 6 92.001s-2 63.334 -6 92.001s-9.66699 53.834 -17 75.501s-15.833 38.667 -25.5 51s-19.834 18.5 -30.501 18.5
1828
-c-11.333 0 -21.666 -6.16699 -30.999 -18.5s-17.666 -29.333 -24.999 -51s-13 -46.834 -17 -75.501s-6 -59.334 -6 -92.001z" />
1829
- <glyph glyph-name="foursuperior" unicode="&#x2074;"
1830
-d="M158 1264l316 316h158v-790h-158v158h-316v316zM474 1106v237l-158 -158v-79h158z" />
1831
- <glyph glyph-name="fivesuperior" unicode="&#x2075;"
1832
-d="M158 948c39.333 0 78 0.334961 116 1.00195s71.833 3.5 101.5 8.5s53.5 12.833 71.5 23.5s27 26 27 46s-9 35.333 -27 46s-41.833 18.5 -71.5 23.5s-63.5 7.83301 -101.5 8.5s-76.667 1 -116 1v474h474v-158h-316v-158c59.333 0 109.166 -5 149.499 -15
1833
-s72.833 -24.833 97.5 -44.5s42.334 -44.334 53.001 -74.001s16 -64.167 16 -103.5s-5.33301 -73.833 -16 -103.5s-28.334 -54.334 -53.001 -74.001s-57.167 -34.5 -97.5 -44.5s-90.166 -15 -149.499 -15h-158v158z" />
1834
- <glyph glyph-name="sixsuperior" unicode="&#x2076;"
1835
-d="M158 1027c0 26.667 0.333984 49.502 1.00098 68.502s3.16699 38 7.5 57s11.333 39.667 21 62s23.334 49.5 41.001 81.5l67 116.5l99.5 167.5h158l-200 -320l42 4c32.667 0 63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501
1836
-s18.5 -59.334 18.5 -92.001s-6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001z
1837
-M316.001 1027c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56z" />
1838
- <glyph glyph-name="sevensuperior" unicode="&#x2077;"
1839
-d="M632 1422l-158 -632h-158l158 632h-316v158h474v-158z" />
1840
- <glyph glyph-name="eightsuperior" unicode="&#x2078;"
1841
-d="M158 1027c0 30 5.16699 58.5 15.5 85.5s25.166 51.167 44.499 72.5c-19.333 21.333 -34.166 45.333 -44.499 72s-15.5 55.334 -15.5 86.001c0 32.667 6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5
1842
-s63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001c0 -30.667 -5.33301 -59.334 -16 -86.001s-25.334 -50.667 -44.001 -72c18.667 -21.333 33.334 -45.5 44.001 -72.5s16 -55.5 16 -85.5
1843
-c0 -32.667 -6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001zM316 1027
1844
-c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56zM316 1343c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56
1845
-s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56z" />
1846
- <glyph glyph-name="ninesuperior" unicode="&#x2079;"
1847
-d="M632 1343c0 -26 -0.333984 -48.6689 -1.00098 -68.002s-3.16699 -38.5 -7.5 -57.5s-11.333 -39.667 -21 -62s-23.334 -49.5 -41.001 -81.5l-67 -116.5l-99.5 -167.5h-158l200 320l-42 -4c-32.667 0 -63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51
1848
-s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001s6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5s63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501
1849
-s18.5 -59.334 18.5 -92.001zM473.999 1343c0 22 -7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56s7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56z" />
1850
- <glyph glyph-name="uni207A" unicode="&#x207a;"
1851
-d="M158 1264h158v158h158v-158h158v-158h-158v-158h-158v158h-158v158z" />
1852
- <glyph glyph-name="uni207B" unicode="&#x207b;"
1853
-d="M158 1264h474v-158h-474v158z" />
1854
- <glyph glyph-name="uni207C" unicode="&#x207c;"
1855
-d="M158 1422h474v-158h-474v158zM158 1106h474v-158h-474v158z" />
1856
- <glyph glyph-name="parenleftsuperior" unicode="&#x207d;"
1857
-d="M632 790c-59.333 0 -109.166 9.50391 -149.499 28.5039s-72.833 45.667 -97.5 80s-42.334 75.833 -53.001 124.5s-16 102.667 -16 162s5.33301 113.333 16 162s28.334 90.167 53.001 124.5s57.167 61 97.5 80s90.166 28.5 149.499 28.5v-158c-26.667 0 -49 -4 -67 -12
1858
-s-32.833 -18.667 -44.5 -32s-20.667 -28.333 -27 -45s-11 -33.834 -14 -51.501s-4.66699 -34.834 -5 -51.501s-0.5 -31.667 -0.5 -45s0.166992 -28.333 0.5 -45s2 -33.834 5 -51.501s7.66699 -34.834 14 -51.501s15.333 -31.667 27 -45s26.5 -24 44.5 -32s40.333 -12 67 -12
1859
-v-158z" />
1860
- <glyph glyph-name="parenrightsuperior" unicode="&#x207e;"
1861
-d="M316 948c26 0 48.167 3.99609 66.5 11.9961s33.333 18.667 45 32s20.667 28.333 27 45s11 33.834 14 51.501s4.66699 34.834 5 51.501s0.5 31.667 0.5 45s-0.166992 28.333 -0.5 45s-2 33.834 -5 51.501s-7.66699 34.834 -14 51.501s-15.333 31.667 -27 45
1862
-s-26.667 24 -45 32s-40.5 12 -66.5 12v158c59.333 0 109.166 -9.5 149.499 -28.5s72.833 -45.667 97.5 -80s42.334 -75.833 53.001 -124.5s16 -102.667 16 -162s-5.33301 -113.333 -16 -162s-28.334 -90.167 -53.001 -124.5s-57.167 -61 -97.5 -80
1863
-s-90.166 -28.5 -149.499 -28.5v158z" />
1864
- <glyph glyph-name="nsuperior" unicode="&#x207f;"
1865
-d="M395 1422c-20 0 -35.334 -4.5 -46.001 -13.5s-18.5 -21 -23.5 -36s-7.83301 -31.833 -8.5 -50.5s-1 -38 -1 -58v-474h-158v790h158v-57c9.33301 14 18.166 25 26.499 33s16.833 13.667 25.5 17s17.834 5.33301 27.501 6s20.5 1 32.5 1c31.333 0 59.5 -5.33301 84.5 -16
1866
-s46.333 -28.334 64 -53.001s31.334 -57.167 41.001 -97.5s14.5 -90.166 14.5 -149.499v-474h-158v474c0 20 -0.333008 39.333 -1 58s-3.5 35.5 -8.5 50.5s-12.833 27 -23.5 36s-26 13.5 -46 13.5z" />
1867
- <glyph glyph-name="zeroinferior" unicode="&#x2080;"
1868
-d="M158 233c0 54.667 6.16699 106 18.5 154s29.333 89.833 51 125.5s46.834 63.834 75.501 84.501s59.334 31 92.001 31s63.334 -10.333 92.001 -31s53.834 -48.834 75.501 -84.501s38.667 -77.5 51 -125.5s18.5 -99.333 18.5 -154s-6.16699 -106 -18.5 -154
1869
-s-29.333 -89.833 -51 -125.5s-46.834 -63.834 -75.501 -84.501s-59.334 -31 -92.001 -31s-63.334 10.333 -92.001 31s-53.834 48.834 -75.501 84.501s-38.667 77.5 -51 125.5s-18.5 99.333 -18.5 154zM316 233c0 -32.667 2 -63.334 6 -92.001s9.66699 -53.834 17 -75.501
1870
-s15.666 -38.667 24.999 -51s19.666 -18.5 30.999 -18.5c10.667 0 20.834 6.16699 30.501 18.5s18.167 29.333 25.5 51s13 46.834 17 75.501s6 59.334 6 92.001s-2 63.334 -6 92.001s-9.66699 53.834 -17 75.501s-15.833 38.667 -25.5 51s-19.834 18.5 -30.501 18.5
1871
-c-11.333 0 -21.666 -6.16699 -30.999 -18.5s-17.666 -29.333 -24.999 -51s-13 -46.834 -17 -75.501s-6 -59.334 -6 -92.001z" />
1872
- <glyph glyph-name="oneinferior" unicode="&#x2081;"
1873
-d="M316 1v474l-158 -158v158l158 158h158v-632h158v-158h-474v158h158z" />
1874
- <glyph glyph-name="twoinferior" unicode="&#x2082;"
1875
-d="M158.672 1c0 13.333 7.81641 30.5 23.4502 51.5s35.0938 43.833 58.3789 68.5l75.8418 77.5l75.8428 77.5c23.2852 24.667 42.7451 47.5 58.3789 68.5s23.4512 38.167 23.4512 51.5c0 20 -4.49121 35.333 -13.4727 46s-20.9561 18.5 -35.9248 23.5
1876
-s-31.9336 7.83301 -50.8945 8.5c-18.96 0.666992 -38.0869 1 -57.3809 1h-157.672v158h235.511c158.337 0 237.506 -79 237.506 -237c0 -20 -8.98145 -44.5 -26.9443 -73.5c-17.9619 -29 -41.7461 -60.667 -71.3516 -95c-29.6045 -34.333 -63.3672 -70.833 -101.288 -109.5
1877
-l-115.76 -117h315.345v-158h-473.017v158z" />
1878
- <glyph glyph-name="threeinferior" unicode="&#x2083;"
1879
-d="M158.338 1l158.337 0.00390625c20.043 0 39.418 0.666992 58.124 2s35.5752 4.66602 50.6074 9.99902s27.0576 13.333 36.0762 24c9.01953 10.667 13.5293 25 13.5293 43s-4.50977 32.333 -13.5293 43c-9.01855 10.667 -21.0439 18.667 -36.0762 24
1880
-s-31.9014 8.66602 -50.6074 9.99902s-38.0811 2 -58.124 2v158c20.043 0 39.585 0.666992 58.625 2c19.041 1.33301 36.0771 4.66602 51.1094 9.99902s27.0576 13.333 36.0771 24c9.01855 10.667 13.5283 25 13.5283 43s-4.50977 32.333 -13.5283 43
1881
-c-9.01953 10.667 -21.0449 18.667 -36.0771 24s-32.0684 8.66602 -51.1094 9.99902c-19.04 1.33301 -38.582 2 -58.625 2h-158.337v158h237.506c158.337 0 237.506 -79 237.506 -237c0 -39.333 -6.17969 -70.5 -18.5391 -93.5s-32.9033 -44.5 -61.6309 -64.5
1882
-c28.7275 -20 49.2715 -41.5 61.6309 -64.5s18.5391 -54.167 18.5391 -93.5c0 -158 -79.1689 -237 -237.506 -237h-237.506v158z" />
1883
- <glyph glyph-name="fourinferior" unicode="&#x2084;"
1884
-d="M158 317l316 316h158v-790h-158v158h-316v316zM474 159v237l-158 -158v-79h158z" />
1885
- <glyph glyph-name="fiveinferior" unicode="&#x2085;"
1886
-d="M158 1c39.333 0 78 0.334961 116 1.00195s71.833 3.5 101.5 8.5s53.5 12.833 71.5 23.5s27 26 27 46s-9 35.333 -27 46s-41.833 18.5 -71.5 23.5s-63.5 7.83301 -101.5 8.5s-76.667 1 -116 1v474h474v-158h-316v-158c59.333 0 109.166 -5 149.499 -15
1887
-s72.833 -24.833 97.5 -44.5s42.334 -44.334 53.001 -74.001s16 -64.167 16 -103.5s-5.33301 -73.833 -16 -103.5s-28.334 -54.334 -53.001 -74.001s-57.167 -34.5 -97.5 -44.5s-90.166 -15 -149.499 -15h-158v158z" />
1888
- <glyph glyph-name="sixinferior" unicode="&#x2086;"
1889
-d="M158 80c0 26.667 0.333984 49.502 1.00098 68.502s3.16699 38 7.5 57s11.333 39.667 21 62s23.334 49.5 41.001 81.5l67 116.5l99.5 167.5h158l-200 -320l42 4c32.667 0 63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501
1890
-s18.5 -59.334 18.5 -92.001s-6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001z
1891
-M316.001 80.002c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56z" />
1892
- <glyph glyph-name="seveninferior" unicode="&#x2087;"
1893
-d="M632 475l-158 -632h-158l158 632h-316v158h474v-158z" />
1894
- <glyph glyph-name="eightinferior" unicode="&#x2088;"
1895
-d="M158 80c0 30 5.16699 58.5 15.5 85.5s25.166 51.167 44.499 72.5c-19.333 21.333 -34.166 45.333 -44.499 72s-15.5 55.334 -15.5 86.001c0 32.667 6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5
1896
-s63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001c0 -30.667 -5.33301 -59.334 -16 -86.001s-25.334 -50.667 -44.001 -72c18.667 -21.333 33.334 -45.5 44.001 -72.5s16 -55.5 16 -85.5
1897
-c0 -32.667 -6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001zM316 80
1898
-c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56zM316 396c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56
1899
-s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56z" />
1900
- <glyph glyph-name="nineinferior" unicode="&#x2089;"
1901
-d="M632 396c0 -26 -0.333984 -48.6689 -1.00098 -68.002s-3.16699 -38.5 -7.5 -57.5s-11.333 -39.667 -21 -62s-23.334 -49.5 -41.001 -81.5l-67 -116.5l-99.5 -167.5h-158l200 320l-42 -4c-32.667 0 -63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51
1902
-s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001s6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5s63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501
1903
-s18.5 -59.334 18.5 -92.001zM473.999 395.998c0 22 -7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56s7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56z" />
1904
- <glyph glyph-name="uni208A" unicode="&#x208a;"
1905
-d="M158 316h158v158h158v-158h158v-158h-158v-158h-158v158h-158v158z" />
1906
- <glyph glyph-name="uni208B" unicode="&#x208b;"
1907
-d="M158 316h474v-158h-474v158z" />
1908
- <glyph glyph-name="uni208C" unicode="&#x208c;"
1909
-d="M158 474h474v-158h-474v158zM158 158h474v-158h-474v158z" />
1910
- <glyph glyph-name="parenleftinferior" unicode="&#x208d;"
1911
-d="M632 -158c-59.333 0 -109.166 9.50391 -149.499 28.5039s-72.833 45.667 -97.5 80s-42.334 75.833 -53.001 124.5s-16 102.667 -16 162s5.33301 113.333 16 162s28.334 90.167 53.001 124.5s57.167 61 97.5 80s90.166 28.5 149.499 28.5v-158c-26.667 0 -49 -4 -67 -12
1912
-s-32.833 -18.667 -44.5 -32s-20.667 -28.333 -27 -45s-11 -33.834 -14 -51.501s-4.66699 -34.834 -5 -51.501s-0.5 -31.667 -0.5 -45s0.166992 -28.333 0.5 -45s2 -33.834 5 -51.501s7.66699 -34.834 14 -51.501s15.333 -31.667 27 -45s26.5 -24 44.5 -32s40.333 -12 67 -12
1913
-v-158z" />
1914
- <glyph glyph-name="parenrightinferior" unicode="&#x208e;"
1915
-d="M316 0c26 0 48.167 3.99609 66.5 11.9961s33.333 18.667 45 32s20.667 28.333 27 45s11 33.834 14 51.501s4.66699 34.834 5 51.501s0.5 31.667 0.5 45s-0.166992 28.333 -0.5 45s-2 33.834 -5 51.501s-7.66699 34.834 -14 51.501s-15.333 31.667 -27 45
1916
-s-26.667 24 -45 32s-40.5 12 -66.5 12v158c59.333 0 109.166 -9.5 149.499 -28.5s72.833 -45.667 97.5 -80s42.334 -75.833 53.001 -124.5s16 -102.667 16 -162s-5.33301 -113.333 -16 -162s-28.334 -90.167 -53.001 -124.5s-57.167 -61 -97.5 -80
1917
-s-90.166 -28.5 -149.499 -28.5v158z" />
1918
- <glyph glyph-name="franc" unicode="&#x20a3;"
1919
-d="M0 316h158v1106h790v-158h-632v-474h474v-158h-474v-316h158v-158h-158v-158h-158v158h-158v158z" />
1920
- <glyph glyph-name="lira" unicode="&#x20a4;"
1921
-d="M158 632h158v158h-158v158h158v158c0 39.333 9 78 27 116s41.833 71.833 71.5 101.5s63.5 53.5 101.5 71.5s76.667 27 116 27s78 -9 116 -27s71.833 -41.833 101.5 -71.5s53.5 -63.5 71.5 -101.5s27 -76.667 27 -116h-158c0 20 -4.5 39.333 -13.5 58s-21 35.5 -36 50.5
1922
-s-32 27 -51 36s-38.167 13.5 -57.5 13.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58v-158h316v-158h-316v-158h316v-158h-316v-316h474v-158h-790v158h158v316h-158v158z" />
1923
- <glyph glyph-name="peseta" unicode="&#x20a7;"
1924
-d="M948 632c-20 0 -39.3281 -0.334961 -57.9951 -1.00195s-35.5 -3.5 -50.5 -8.5s-27 -12.833 -36 -23.5s-13.5 -26 -13.5 -46c0 -18.667 7.83301 -33.667 23.5 -45s35.167 -21.5 58.5 -30.5s48.666 -17.5 75.999 -25.5s52.666 -17.667 75.999 -29s42.833 -25.5 58.5 -42.5
1925
-s23.5 -38.5 23.5 -64.5v-158c0 -20 -5 -39.333 -15 -58s-24.833 -35.5 -44.5 -50.5s-44.334 -27 -74.001 -36s-64.167 -13.5 -103.5 -13.5h-158c-39.333 0 -73.833 5.33301 -103.5 16s-54.334 28.334 -74.001 53.001s-34.5 57.167 -44.5 97.5s-15 90.166 -15 149.499v632
1926
-c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27h-79v-632h-158v1422h237c39.333 0 73.833 -5.33301 103.5 -16s54.334 -28.334 74.001 -53.001s34.5 -57.167 44.5 -97.5s15 -90.166 15 -149.499v316h158v-316
1927
-h158v-158h-158v-310c0.666992 20.667 6 40.334 16 59.001s24.833 34.834 44.5 48.501s44.167 24.5 73.5 32.5s63.666 12 102.999 12h237v-158h-158zM316.005 1106c0 20 -1.00098 39.333 -3.00098 58s-5.66699 35.5 -11 50.5s-13.333 27 -24 36s-24.334 13.5 -41.001 13.5
1928
-h-79v-474h86c18 0 31.833 4.5 41.5 13.5s16.834 21 21.501 36s7.33398 31.833 8.00098 50.5s1 38 1 58v158zM632.004 315.998c0 -20 0.332031 -39.334 0.999023 -58.001s3.5 -35.5 8.5 -50.5s12.833 -27 23.5 -36s26 -13.5 46 -13.5h79c39.333 0 69.666 2.16699 90.999 6.5
1929
-s37 10.333 47 18s15.833 16.167 17.5 25.5s2.5 19 2.5 29c0 20 -7.83301 36 -23.5 48s-35.167 22.333 -58.5 31s-48.666 16.834 -75.999 24.501s-52.666 17 -75.999 28s-42.833 24.667 -58.5 41s-23.5 37.833 -23.5 64.5v-158z" />
1930
- <glyph glyph-name="Euro" unicode="&#x20ac;"
1931
-d="M79 948l108 0.000976562c18 68.667 43.167 132 75.5 190s71 108 116 150s95.5 74.833 151.5 98.5s116.333 35.5 181 35.5c80.667 0 154.5 -18.167 221.5 -54.5s124.833 -86.166 173.5 -149.499l-111 -112c-34 48.667 -75 87.167 -123 115.5s-101.667 42.5 -161 42.5
1932
-c-43.333 0 -83.666 -7.66699 -120.999 -23s-71.333 -37 -102 -65s-57.667 -61.333 -81 -100s-42.333 -81.334 -57 -128.001h361l-79 -158h-313c-4 -52.667 -4 -105.334 0 -158.001h392l-79 -158h-282c14.667 -46.667 33.667 -89.334 57 -128.001s50.333 -72 81 -100
1933
-s64.667 -49.667 102 -65s77.666 -23 120.999 -23c59.333 0 113 14 161 42s89 66.667 123 116l111 -113c-48.667 -63.333 -106.5 -113 -173.5 -149s-140.833 -54 -221.5 -54c-64.667 0 -125 11.667 -181 35s-106.5 56 -151.5 98s-83.667 92 -116 150s-57.5 121.667 -75.5 191
1934
-h-187l79 158h82c-4 52.667 -4 105.334 0 158.001h-161z" />
1935
- <glyph glyph-name="afii61248" unicode="&#x2105;"
1936
-d="M632 395c0 54.667 6.16699 106 18.5 154s29.333 89.833 51 125.5s46.834 63.834 75.501 84.501s59.334 31 92.001 31s63.334 -10.333 92.001 -31s53.834 -48.834 75.501 -84.501s38.667 -77.5 51 -125.5s18.5 -99.333 18.5 -154s-6.16699 -106 -18.5 -154
1937
-s-29.333 -89.833 -51 -125.5s-46.834 -63.834 -75.501 -84.501s-59.334 -31 -92.001 -31s-63.334 10.333 -92.001 31s-53.834 48.834 -75.501 84.501s-38.667 77.5 -51 125.5s-18.5 99.333 -18.5 154zM790 1580h158l-632 -1580h-158zM158 1185
1938
-c0 -32.667 2 -63.332 6 -91.999s9.66699 -53.834 17 -75.501s15.666 -38.667 24.999 -51s19.666 -18.5 30.999 -18.5c8.66699 0 16.834 3.83301 24.501 11.5s14.667 18.5 21 32.5s12 30.667 17 50s8.83301 40.666 11.5 63.999h158
1939
-c-5.33301 -45.333 -15.166 -87.166 -29.499 -125.499s-31.666 -71.666 -51.999 -99.999s-43.333 -50.5 -69 -66.5s-52.834 -24 -81.501 -24c-32.667 0 -63.334 10.333 -92.001 31s-53.834 48.834 -75.501 84.501s-38.667 77.5 -51 125.5s-18.5 99.333 -18.5 154
1940
-s6.16699 106 18.5 154s29.333 89.833 51 125.5s46.834 63.834 75.501 84.501s59.334 31 92.001 31c28.667 0 55.834 -8 81.501 -24s48.667 -38.167 69 -66.5s37.666 -61.833 51.999 -100.5s24.166 -80.334 29.499 -125.001h-158c-2.66699 22.667 -6.5 43.667 -11.5 63
1941
-s-10.667 36 -17 50s-13.333 25 -21 33s-15.834 12 -24.501 12c-11.333 0 -21.666 -6.16699 -30.999 -18.5s-17.666 -29.333 -24.999 -51s-13 -46.834 -17 -75.501s-6 -59.334 -6 -92.001zM790 395.002c0 -32.667 2 -63.334 6 -92.001s9.66699 -53.834 17 -75.501
1942
-s15.666 -38.667 24.999 -51s19.666 -18.5 30.999 -18.5c10.667 0 20.834 6.16699 30.501 18.5s18.167 29.333 25.5 51s13 46.834 17 75.501s6 59.334 6 92.001s-2 63.334 -6 92.001s-9.66699 53.834 -17 75.501s-15.833 38.667 -25.5 51s-19.834 18.5 -30.501 18.5
1943
-c-11.333 0 -21.666 -6.16699 -30.999 -18.5s-17.666 -29.333 -24.999 -51s-13 -46.834 -17 -75.501s-6 -59.334 -6 -92.001z" />
1944
- <glyph glyph-name="uni2106" unicode="&#x2106;"
1945
-d="M790 395c0 -32.667 2.00488 -63.334 6.00488 -92.001s9.66699 -53.834 17 -75.501s15.666 -38.667 24.999 -51s19.666 -18.5 30.999 -18.5c10.667 0 20.834 6.16699 30.501 18.5s18.167 29.333 25.5 51s13 46.834 17 75.501s6 59.334 6 92.001v395h158v-382v-13
1946
-c0 -54.667 -6.16699 -106 -18.5 -154s-29.333 -89.833 -51 -125.5s-46.834 -63.834 -75.501 -84.501s-59.334 -31 -92.001 -31s-63.334 10.333 -92.001 31s-53.834 48.834 -75.501 84.501s-38.667 77.5 -51 125.5s-18.5 99.333 -18.5 154v395l-316 -790h-158l632 1580h158
1947
-l-316 -790h158v-395zM158.005 1185c0 -32.667 2 -63.332 6 -91.999s9.66699 -53.834 17 -75.501s15.666 -38.667 24.999 -51s19.666 -18.5 30.999 -18.5c8.66699 0 16.834 3.83301 24.501 11.5s14.667 18.5 21 32.5s12 30.667 17 50s8.83301 40.666 11.5 63.999h158
1948
-c-5.33301 -45.333 -15.166 -87.166 -29.499 -125.499s-31.666 -71.666 -51.999 -99.999s-43.333 -50.5 -69 -66.5s-52.834 -24 -81.501 -24c-32.667 0 -63.334 10.333 -92.001 31s-53.834 48.834 -75.501 84.501s-38.667 77.5 -51 125.5s-18.5 99.333 -18.5 154
1949
-s6.16699 106 18.5 154s29.333 89.833 51 125.5s46.834 63.834 75.501 84.501s59.334 31 92.001 31c28.667 0 55.834 -8 81.501 -24s48.667 -38.167 69 -66.5s37.666 -61.833 51.999 -100.5s24.166 -80.334 29.499 -125.001h-158c-2.66699 22.667 -6.5 43.667 -11.5 63
1950
-s-10.667 36 -17 50s-13.333 25 -21 33s-15.834 12 -24.501 12c-11.333 0 -21.666 -6.16699 -30.999 -18.5s-17.666 -29.333 -24.999 -51s-13 -46.834 -17 -75.501s-6 -59.334 -6 -92.001z" />
1951
- <glyph glyph-name="trademark" unicode="&#x2122;"
1952
-d="M474 1264h-158v-474h-158v474h-158v158h632l79 -158l79 158h158v-632h-158v395l-79 -158l-79 158v-395h-159z" />
1953
- <glyph glyph-name="Omega" unicode="&#x2126;"
1954
-d="M632 167c48.667 12 92.501 34.5 131.501 67.5s72.167 73.5 99.5 121.5s48.333 102.333 63 163s22 124.667 22 192c0 76 -9.33301 147.667 -28 215s-45.167 126 -79.5 176s-75.833 89.5 -124.5 118.5s-103 43.5 -163 43.5s-114.5 -14.5 -163.5 -43.5
1955
-s-91 -68.5 -126 -118.5s-62 -108.667 -81 -176s-28.5 -139 -28.5 -215c0 -67.333 7.5 -131.333 22.5 -192s36.5 -115 64.5 -163s61.667 -88.5 101 -121.5s83.333 -55.5 132 -67.5v-167h-474v158h194c-62.667 65.333 -111.334 145.666 -146.001 240.999s-52 199.333 -52 312
1956
-c0 98 13.667 190.167 41 276.5s65.666 161.666 114.999 225.999s108 115.166 176 152.499s143 56 225 56s156.833 -18.667 224.5 -56s125.834 -88.166 174.501 -152.499s86.5 -139.666 113.5 -225.999s40.5 -178.5 40.5 -276.5c0 -112.667 -17.167 -216.667 -51.5 -312
1957
-s-82.833 -175.666 -145.5 -240.999h197v-158h-474v167z" />
1958
- <glyph glyph-name="estimated" unicode="&#x212e;"
1959
-d="M771 303c2 4 3.66309 8.33398 4.99609 13.001h164c-5.33301 -26 -13 -51 -23 -75c-20.667 -48 -48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5
1960
-s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-237h-632v-79
1961
-c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.5 46.834 50.5 75.501zM315.996 632.001h474.004v79
1962
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79z" />
1963
- <glyph glyph-name="uni2141" unicode="&#x2141;"
1964
-d="M316.048 1264.01c0 19.999 8.16504 39.334 24.498 57.999c16.332 18.665 36.4971 35.4971 60.4961 50.4961s49.8311 26.998 77.4961 35.9971s52.4971 13.499 74.4961 13.499c54.6631 0 105.993 -10.333 153.99 -30.998s89.8281 -48.8301 125.493 -84.4951
1965
-s63.8301 -77.4961 84.4951 -125.493s30.998 -99.3271 30.998 -153.99v-631.962c0 -54.6631 -10.333 -105.993 -30.998 -153.99s-48.8301 -89.8281 -84.4951 -125.492c-35.665 -35.665 -77.4961 -63.8301 -125.493 -84.4951s-99.3271 -30.998 -153.99 -30.998
1966
-c-47.9971 0 -93.3281 7.99902 -135.992 23.998s-80.9951 38.1641 -114.993 66.4951s-62.8291 61.8291 -86.4941 100.494c-23.665 38.6641 -40.1641 80.3281 -49.4971 124.992h163.989c8 -22.665 19.333 -43.6641 33.998 -62.9961
1967
-c14.666 -19.332 31.665 -35.998 50.9971 -49.9971s40.6641 -24.998 63.9961 -32.998c23.332 -7.99902 47.9971 -11.999 73.9961 -11.999c32.665 0 63.3301 6.16602 91.9951 18.499s53.8301 29.332 75.4951 50.9971s38.6641 46.8301 50.9971 75.4951
1968
-s18.499 59.3301 18.499 91.9951v631.962c0 32.665 -6.16602 63.3301 -18.499 91.9951s-29.332 53.8301 -50.9971 75.4951s-46.8301 38.6641 -75.4951 50.9971s-59.3301 18.499 -91.9951 18.499c-31.998 0 -62.3301 -8.66602 -90.9951 -25.998
1969
-c-28.665 -17.333 -53.8301 -38.332 -75.4951 -62.9971s-38.8311 -50.4971 -51.4971 -77.4961c-12.666 -26.998 -18.999 -50.4961 -18.999 -70.4951v-236.985h157.991v-157.991h-315.981v789.952h157.99v-157.99z" />
1970
- <glyph glyph-name="onethird" unicode="&#x2153;"
1971
-d="M159 948v474l-158 -158v158l158 158h158v-632h158v-158h-474v158h158zM790 1580h158l-632 -1580h-158zM625.996 159l159.996 0.00390625c20.2529 0 39.8311 0.666992 58.7344 2c18.9023 1.33301 35.9482 4.66602 51.1377 9.99902s27.3408 13.333 36.4551 24
1972
-c9.11328 10.667 13.6699 25 13.6699 43s-4.55664 32.333 -13.6699 43c-9.11426 10.667 -21.2656 18.667 -36.4551 24s-32.2354 8.66602 -51.1377 9.99902c-18.9033 1.33301 -38.4814 2 -58.7344 2v158c20.2529 0 39.999 0.666992 59.2393 2s36.4551 4.66602 51.6445 9.99902
1973
-s27.3408 13.333 36.4551 24c9.11328 10.667 13.6699 25 13.6699 43s-4.55664 32.333 -13.6699 43c-9.11426 10.667 -21.2656 18.667 -36.4551 24s-32.4043 8.66602 -51.6445 9.99902s-38.9863 2 -59.2393 2h-159.996v158h239.994c159.996 0 239.994 -79 239.994 -237
1974
-c0 -39.333 -6.24414 -70.5 -18.7334 -93.5s-33.248 -44.5 -62.2764 -64.5c29.0283 -20 49.7871 -41.5 62.2764 -64.5s18.7334 -54.167 18.7334 -93.5c0 -158 -79.998 -237 -239.994 -237h-239.994v158z" />
1975
- <glyph glyph-name="twothirds" unicode="&#x2154;"
1976
-d="M790 1580h158l-632 -1580h-158zM632 159l158 0.00390625c20 0 39.333 0.666992 58 2s35.5 4.66602 50.5 9.99902s27 13.333 36 24s13.5 25 13.5 43s-4.5 32.333 -13.5 43s-21 18.667 -36 24s-31.833 8.66602 -50.5 9.99902s-38 2 -58 2v158c20 0 39.5 0.666992 58.5 2
1977
-s36 4.66602 51 9.99902s27 13.333 36 24s13.5 25 13.5 43s-4.5 32.333 -13.5 43s-21 18.667 -36 24s-32 8.66602 -51 9.99902s-38.5 2 -58.5 2h-158v158h237c158 0 237 -79 237 -237c0 -39.333 -6.16699 -70.5 -18.5 -93.5s-32.833 -44.5 -61.5 -64.5
1978
-c28.667 -20 49.167 -41.5 61.5 -64.5s18.5 -54.167 18.5 -93.5c0 -158 -79 -237 -237 -237h-237v158zM1.66211 948.004c0 13.333 7.81738 30.5 23.4512 51.5s35.0918 43.833 58.375 68.5l75.8379 77.5l75.8369 77.5c23.2842 24.667 42.7432 47.5 58.377 68.5
1979
-c15.6328 21 23.4492 38.167 23.4492 51.5c0 20 -4.49023 35.333 -13.4707 46c-8.98145 10.667 -20.9561 18.5 -35.9238 23.5s-31.9316 7.83301 -50.8916 8.5s-38.0859 1 -57.3779 1h-157.663v158h235.496c158.328 0 237.492 -79 237.492 -237
1980
-c0 -20 -8.98047 -44.5 -26.9424 -73.5s-41.7441 -60.667 -71.3477 -95s-63.3643 -70.833 -101.283 -109.5l-115.752 -117h315.325v-158h-472.988v158z" />
1981
- <glyph glyph-name="uni2155" unicode="&#x2155;"
1982
-d="M158 948v474l-158 -158v158l158 158h158v-632h158v-158h-474v158h158zM790 1580h158l-632 -1580h-158zM632 159c39.333 0 78 0.334961 116 1.00195s71.833 3.5 101.5 8.5s53.5 12.833 71.5 23.5s27 26 27 46s-9 35.333 -27 46s-41.833 18.5 -71.5 23.5
1983
-s-63.5 7.83301 -101.5 8.5s-76.667 1 -116 1v474h474v-158h-316v-158c59.333 0 109.166 -5 149.499 -15s72.833 -24.833 97.5 -44.5s42.334 -44.334 53.001 -74.001s16 -64.167 16 -103.5s-5.33301 -73.833 -16 -103.5s-28.334 -54.334 -53.001 -74.001
1984
-s-57.167 -34.5 -97.5 -44.5s-90.166 -15 -149.499 -15h-158v158z" />
1985
- <glyph glyph-name="uni2156" unicode="&#x2156;"
1986
-d="M790 1580h158l-632 -1580h-158zM1 948c0 13.333 7.83301 30.5 23.5 51.5s35.167 43.833 58.5 68.5l76 77.5l76 77.5c23.333 24.667 42.833 47.5 58.5 68.5s23.5 38.167 23.5 51.5c0 20 -4.5 35.333 -13.5 46s-21 18.5 -36 23.5s-32 7.83301 -51 8.5s-38.167 1 -57.5 1
1987
-h-158v158h236c158.667 0 238 -79 238 -237c0 -20 -9 -44.5 -27 -73.5s-41.833 -60.667 -71.5 -95s-63.5 -70.833 -101.5 -109.5l-116 -117h316v-158h-474v158zM632 159c39.333 0 78 0.334961 116 1.00195s71.833 3.5 101.5 8.5s53.5 12.833 71.5 23.5s27 26 27 46
1988
-s-9 35.333 -27 46s-41.833 18.5 -71.5 23.5s-63.5 7.83301 -101.5 8.5s-76.667 1 -116 1v474h474v-158h-316v-158c59.333 0 109.166 -5 149.499 -15s72.833 -24.833 97.5 -44.5s42.334 -44.334 53.001 -74.001s16 -64.167 16 -103.5s-5.33301 -73.833 -16 -103.5
1989
-s-28.334 -54.334 -53.001 -74.001s-57.167 -34.5 -97.5 -44.5s-90.166 -15 -149.499 -15h-158v158z" />
1990
- <glyph glyph-name="uni2157" unicode="&#x2157;"
1991
-d="M790 1580h158l-632 -1580h-158zM1 948l158 0.00390625c20 0 39.333 0.666992 58 2s35.5 4.66602 50.5 9.99902s27 13.333 36 24s13.5 25 13.5 43s-4.5 32.333 -13.5 43s-21 18.667 -36 24s-31.833 8.66602 -50.5 9.99902s-38 2 -58 2v158c20 0 39.5 0.666992 58.5 2
1992
-s36 4.66602 51 9.99902s27 13.333 36 24s13.5 25 13.5 43s-4.5 32.333 -13.5 43s-21 18.667 -36 24s-32 8.66602 -51 9.99902s-38.5 2 -58.5 2h-158v158h237c158 0 237 -79 237 -237c0 -39.333 -6.16699 -70.5 -18.5 -93.5s-32.833 -44.5 -61.5 -64.5
1993
-c28.667 -20 49.167 -41.5 61.5 -64.5s18.5 -54.167 18.5 -93.5c0 -158 -79 -237 -237 -237h-237v158zM632 159.004c39.333 0 78 0.334961 116 1.00195s71.833 3.5 101.5 8.5s53.5 12.833 71.5 23.5s27 26 27 46s-9 35.333 -27 46s-41.833 18.5 -71.5 23.5
1994
-s-63.5 7.83301 -101.5 8.5s-76.667 1 -116 1v474h474v-158h-316v-158c59.333 0 109.166 -5 149.499 -15s72.833 -24.833 97.5 -44.5s42.334 -44.334 53.001 -74.001s16 -64.167 16 -103.5s-5.33301 -73.833 -16 -103.5s-28.334 -54.334 -53.001 -74.001
1995
-s-57.167 -34.5 -97.5 -44.5s-90.166 -15 -149.499 -15h-158v158z" />
1996
- <glyph glyph-name="uni2158" unicode="&#x2158;"
1997
-d="M790 1580h158l-632 -1580h-158zM1 1264l316 316h158v-790h-158v158h-316v316zM317 1106v237l-158 -158v-79h158zM632 159c39.333 0 78 0.334961 116 1.00195s71.833 3.5 101.5 8.5s53.5 12.833 71.5 23.5s27 26 27 46s-9 35.333 -27 46s-41.833 18.5 -71.5 23.5
1998
-s-63.5 7.83301 -101.5 8.5s-76.667 1 -116 1v474h474v-158h-316v-158c59.333 0 109.166 -5 149.499 -15s72.833 -24.833 97.5 -44.5s42.334 -44.334 53.001 -74.001s16 -64.167 16 -103.5s-5.33301 -73.833 -16 -103.5s-28.334 -54.334 -53.001 -74.001
1999
-s-57.167 -34.5 -97.5 -44.5s-90.166 -15 -149.499 -15h-158v158z" />
2000
- <glyph glyph-name="uni2159" unicode="&#x2159;"
2001
-d="M158 948v474l-158 -158v158l158 158h158v-632h158v-158h-474v158h158zM790 1580h158l-632 -1580h-158zM632 238c0 26.667 0.333984 49.502 1.00098 68.502s3.16699 38 7.5 57s11.333 39.667 21 62s23.334 49.5 41.001 81.5l67 116.5l99.5 167.5h158l-200 -320l42 4
2002
-c32.667 0 63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001s-6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5
2003
-s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001zM790.001 238.002c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23
2004
-s-40.667 -7.66699 -56 -23s-23 -34 -23 -56z" />
2005
- <glyph glyph-name="uni215A" unicode="&#x215a;"
2006
-d="M790 1580h158l-632 -1580h-158zM3.33496 948c39.167 0 77.6709 0.334961 115.511 1.00195c37.8408 0.666992 71.5322 3.5 101.074 8.5s53.2744 12.833 71.1982 23.5c17.9248 10.667 26.8867 26 26.8867 46s-8.96191 35.333 -26.8867 46
2007
-c-17.9238 10.667 -41.6562 18.5 -71.1982 23.5s-63.2334 7.83301 -101.074 8.5c-37.8398 0.666992 -76.3438 1 -115.511 1v474h472.003v-158h-314.669v-158c59.083 0 108.707 -5 148.871 -15c40.1631 -10 72.5264 -24.833 97.0889 -44.5s42.1553 -44.334 52.7773 -74.001
2008
-c10.6211 -29.667 15.9316 -64.167 15.9316 -103.5s-5.31055 -73.833 -15.9316 -103.5c-10.6221 -29.667 -28.2148 -54.334 -52.7773 -74.001s-56.9258 -34.5 -97.0889 -44.5c-40.1641 -10 -89.7881 -15 -148.871 -15h-157.334v158zM630 224.002
2009
-c0 26.667 0.333984 49.502 1.00098 68.502s3.16699 38 7.5 57s11.333 39.667 21 62s23.334 49.5 41.001 81.5l67 116.5l99.5 167.5h158l-200 -320l42 4c32.667 0 63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501
2010
-s18.5 -59.334 18.5 -92.001s-6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001z
2011
-M788.001 224.004c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56z" />
2012
- <glyph glyph-name="oneeighth" unicode="&#x215b;"
2013
-d="M159 948v474l-158 -158v158l158 158h158v-632h158v-158h-474v158h158zM790 1580h158l-632 -1580h-158zM632 238c0 30 5.16699 58.5 15.5 85.5s25.166 51.167 44.499 72.5c-19.333 21.333 -34.166 45.333 -44.499 72s-15.5 55.334 -15.5 86.001
2014
-c0 32.667 6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5s63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001c0 -30.667 -5.33301 -59.334 -16 -86.001
2015
-s-25.334 -50.667 -44.001 -72c18.667 -21.333 33.334 -45.5 44.001 -72.5s16 -55.5 16 -85.5c0 -32.667 -6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5
2016
-s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001zM790 238c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56zM790 554
2017
-c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56z" />
2018
- <glyph glyph-name="threeeighths" unicode="&#x215c;"
2019
-d="M790 1580h158l-632 -1580h-158zM1 948l158 0.00390625c20 0 39.333 0.666992 58 2s35.5 4.66602 50.5 9.99902s27 13.333 36 24s13.5 25 13.5 43s-4.5 32.333 -13.5 43s-21 18.667 -36 24s-31.833 8.66602 -50.5 9.99902s-38 2 -58 2v158c20 0 39.5 0.666992 58.5 2
2020
-s36 4.66602 51 9.99902s27 13.333 36 24s13.5 25 13.5 43s-4.5 32.333 -13.5 43s-21 18.667 -36 24s-32 8.66602 -51 9.99902s-38.5 2 -58.5 2h-158v158h237c158 0 237 -79 237 -237c0 -39.333 -6.16699 -70.5 -18.5 -93.5s-32.833 -44.5 -61.5 -64.5
2021
-c28.667 -20 49.167 -41.5 61.5 -64.5s18.5 -54.167 18.5 -93.5c0 -158 -79 -237 -237 -237h-237v158zM632 238.004c0 30 5.16699 58.5 15.5 85.5s25.166 51.167 44.499 72.5c-19.333 21.333 -34.166 45.333 -44.499 72s-15.5 55.334 -15.5 86.001
2022
-c0 32.667 6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5s63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001c0 -30.667 -5.33301 -59.334 -16 -86.001
2023
-s-25.334 -50.667 -44.001 -72c18.667 -21.333 33.334 -45.5 44.001 -72.5s16 -55.5 16 -85.5c0 -32.667 -6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5
2024
-s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001zM790 238.004c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56z
2025
-M790 554.004c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56z" />
2026
- <glyph glyph-name="fiveeighths" unicode="&#x215d;"
2027
-d="M790 1580h158l-632 -1580h-158zM632 238c0 30 5.16699 58.5 15.5 85.5s25.166 51.167 44.499 72.5c-19.333 21.333 -34.166 45.333 -44.499 72s-15.5 55.334 -15.5 86.001c0 32.667 6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51
2028
-s59.334 18.5 92.001 18.5s63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001c0 -30.667 -5.33301 -59.334 -16 -86.001s-25.334 -50.667 -44.001 -72c18.667 -21.333 33.334 -45.5 44.001 -72.5
2029
-s16 -55.5 16 -85.5c0 -32.667 -6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001z
2030
-M790 238c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56zM790 554c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56
2031
-s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56zM1 949.588c39.333 0 78 0.335938 116 1.00488s71.833 3.5127 101.5 8.53125s53.5 12.8818 71.5 23.5889s27 26.0986 27 46.1748c0 20.0752 -9 35.4668 -27 46.1738
2032
-s-41.833 18.5703 -71.5 23.5889s-63.5 7.8623 -101.5 8.53125s-76.667 1.00391 -116 1.00391v475.793h474v-158.598h-316v-158.598c59.333 0 109.166 -5.01855 149.499 -15.0566s72.833 -24.9277 97.5 -44.6689s42.334 -44.501 53.001 -74.2793
2033
-c10.667 -29.7793 16 -64.4102 16 -103.892c0 -39.4824 -5.33301 -74.1133 -16 -103.892c-10.667 -29.7793 -28.334 -54.5391 -53.001 -74.2803s-57.167 -34.6309 -97.5 -44.6689s-90.166 -15.0566 -149.499 -15.0566h-158v158.599z" />
2034
- <glyph glyph-name="seveneighths" unicode="&#x215e;"
2035
-d="M790 1580h158l-632 -1580h-158zM632 238c0 30 5.16699 58.5 15.5 85.5s25.166 51.167 44.499 72.5c-19.333 21.333 -34.166 45.333 -44.499 72s-15.5 55.334 -15.5 86.001c0 32.667 6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51
2036
-s59.334 18.5 92.001 18.5s63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001c0 -30.667 -5.33301 -59.334 -16 -86.001s-25.334 -50.667 -44.001 -72c18.667 -21.333 33.334 -45.5 44.001 -72.5
2037
-s16 -55.5 16 -85.5c0 -32.667 -6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001z
2038
-M790 238c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56zM790 554c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56
2039
-s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56zM475.35 1422l-158.337 -632h-158.338l158.338 632h-316.675v158h475.012v-158z" />
2040
- <glyph glyph-name="uni215F" unicode="&#x215f;"
2041
-d="M158 948v474l-158 -158v158l158 158h158v-632h158v-158h-474v158h158zM790 1580h158l-632 -1580h-158z" />
2042
- <glyph glyph-name="arrowleft" unicode="&#x2190;"
2043
-d="M0 711l395 395h79v-316h632v-158h-632v-316h-79z" />
2044
- <glyph glyph-name="arrowup" unicode="&#x2191;"
2045
-d="M553 1422l395 -395v-79h-316v-632h-158v632h-316v79z" />
2046
- <glyph glyph-name="arrowright" unicode="&#x2192;"
2047
-d="M1106 711l-394.976 395h-78.9951v-316h-631.962v-158h631.962v-316h78.9951z" />
2048
- <glyph glyph-name="arrowdown" unicode="&#x2193;"
2049
-d="M553 0.0869141l395 394.976v78.9951h-316v631.962h-158v-631.962h-316v-78.9951z" />
2050
- <glyph glyph-name="arrowboth" unicode="&#x2194;"
2051
-d="M395 1106h79v-316h158v316h79l395 -395l-395 -395h-79v316h-158v-316h-79l-395 395z" />
2052
- <glyph glyph-name="arrowupdn" unicode="&#x2195;"
2053
-d="M948 1027v-79h-316v-474h316v-79l-395 -395l-395 395v79h316v474h-316v79l395 395z" />
2054
- <glyph glyph-name="uni21A4" unicode="&#x21a4;"
2055
-d="M948 632h-474v-316h-79l-395 395l395 395h79v-316h474v316h158v-790h-158v316z" />
2056
- <glyph glyph-name="uni21A5" unicode="&#x21a5;"
2057
-d="M158 158h316v790h-316v79l395 395l395 -395v-79h-316v-790h316v-158h-790v158z" />
2058
- <glyph glyph-name="uni21A6" unicode="&#x21a6;"
2059
-d="M158.058 632h473.972v-316h78.9951l394.976 395l-394.976 395h-78.9951v-316h-473.972v316h-157.99v-790h157.99v316z" />
2060
- <glyph glyph-name="uni21A7" unicode="&#x21a7;"
2061
-d="M158 1264.01h316v-789.952h-316v-78.9951l395 -394.976l395 394.976v78.9951h-316v789.952h316v157.99h-790v-157.99z" />
2062
- <glyph glyph-name="arrowupdnbse" unicode="&#x21a8;"
2063
-d="M158 0h790v-158h-790v158zM948 1027v-79h-316v-474h316v-79l-395 -395l-395 395v79h316v474h-316v79l395 395z" />
2064
- <glyph glyph-name="uni21B0" unicode="&#x21b0;"
2065
-d="M790 632h-316v-316h-79l-395 395l395 395h79v-316h474v-790h-158v632z" />
2066
- <glyph glyph-name="uni21B1" unicode="&#x21b1;"
2067
-d="M316.048 632h315.981v-316h78.9951l394.976 395l-394.976 395h-78.9951v-316h-473.972v-790h157.99v632z" />
2068
- <glyph glyph-name="uni21B2" unicode="&#x21b2;"
2069
-d="M790 790.039h-316v315.98h-79l-395 -394.977l395 -394.976h79v315.98h474v789.952h-158v-631.961z" />
2070
- <glyph glyph-name="uni21B3" unicode="&#x21b3;"
2071
-d="M316.048 790.039h315.981v315.98h78.9951l394.976 -394.977l-394.976 -394.976h-78.9951v315.98h-473.972v789.952h157.99v-631.961z" />
2072
- <glyph glyph-name="uni21B4" unicode="&#x21b4;"
2073
-d="M0 1106h632v-632h316v-79l-395 -395l-395 395v79h316v474h-474v158z" />
2074
- <glyph glyph-name="uni21BE" unicode="&#x21be;"
2075
-d="M474 1422h79l395 -395v-79h-316v-632h-158v1106z" />
2076
- <glyph glyph-name="uni21BF" unicode="&#x21bf;"
2077
-d="M632.029 1422h-78.9951l-394.977 -395v-79h315.981v-632h157.99v1106z" />
2078
- <glyph glyph-name="uni21C2" unicode="&#x21c2;"
2079
-d="M474 0.0869141h79l395 394.976v78.9951h-316v631.962h-158v-1105.93z" />
2080
- <glyph glyph-name="uni21C3" unicode="&#x21c3;"
2081
-d="M630.029 0.0869141h-78.9951l-394.977 394.976v78.9951h315.981v631.962h157.99v-1105.93z" />
2082
- <glyph glyph-name="uni21C5" unicode="&#x21c5;"
2083
-d="M395 1580l395 -395v-79h-316v-632h-158v632h-316v79zM711 -158l395 395v79h-316v632h-158v-632h-316v-79z" />
2084
- <glyph glyph-name="uni21C8" unicode="&#x21c8;"
2085
-d="M395 1422l158 -158l158 158l395 -395v-79h-316v-948h-158v948h-158v-948h-158v948h-316v79z" />
2086
- <glyph glyph-name="partialdiff" unicode="&#x2202;"
2087
-d="M1083 1027c-16.667 -128.667 -34.9941 -241.672 -54.9941 -339.005s-41.333 -182.166 -64 -254.499s-46.334 -133.166 -71.001 -182.499s-50.334 -90.166 -77.001 -122.499s-54 -57.166 -82 -74.499s-56.5 -30 -85.5 -38s-58.5 -12.667 -88.5 -14s-60 -2 -90 -2
2088
-c-38.667 0 -73.334 6.16699 -104.001 18.5s-57.5 28.666 -80.5 48.999s-42.667 43.833 -59 70.5s-29.5 54.667 -39.5 84s-17.333 58.833 -22 88.5s-7 57.834 -7 84.501c0 98.667 14.5 183 43.5 253s66.333 127.167 112 171.5s96.5 76.833 152.5 97.5s111.333 31 166 31
2089
-c49.333 0 95.833 -8.33301 139.5 -25s82.5 -40 116.5 -70l37 174c6.66699 32.667 7 63.334 1 92.001s-17.5 53.834 -34.5 75.501s-38.667 38.667 -65 51s-55.833 18.5 -88.5 18.5c0.666992 0 -0.333008 3.83301 -3 11.5s-5.83398 17.5 -9.50098 29.5s-6.66699 24.667 -9 38
2090
-s-2.5 26 -0.5 38s7.33301 21.833 16 29.5s22 11.5 40 11.5c54.667 0 103.667 -10.333 147 -31s79.166 -48.834 107.499 -84.501s47.666 -77.5 57.999 -125.5s9.83301 -99.333 -1.5 -154zM356.006 552.995c-6.66699 -13.333 -12.001 -32.332 -16.001 -56.999
2091
-s-6 -51.5 -6 -80.5s2.33301 -58.833 7 -89.5s12.5 -58.334 23.5 -83.001s25.333 -45 43 -61s39.834 -24 66.501 -24c32.667 0 67.834 6 105.501 18s73.5 34.333 107.5 67s64.167 77.834 90.5 135.501s45.166 132.167 56.499 223.5
2092
-c-0.666992 26.667 -6.16699 51.5 -16.5 74.5s-24.5 42.833 -42.5 59.5s-39.167 29.834 -63.5 39.501s-50.833 14.5 -79.5 14.5c-32.667 0 -64.167 -6.16699 -94.5 -18.5s-57.833 -29.333 -82.5 -51s-45.667 -46.834 -63 -75.501s-29.333 -59.334 -36 -92.001z" />
2093
- <glyph glyph-name="Delta" unicode="&#x2206;"
2094
-d="M948 0h-790v158l316 1264h158l316 -1264v-158zM277 158h486l-234 995z" />
2095
- <glyph glyph-name="gradient" unicode="&#x2207;"
2096
-d="M158.058 1422h789.952v-157.99l-315.98 -1263.92h-157.99l-315.981 1263.92v157.99zM829.017 1264.01h-485.97l233.985 -994.939z" />
2097
- <glyph glyph-name="product" unicode="&#x220f;"
2098
-d="M158 1422h790v-1896h-158v1738h-474v-1738h-158v1896z" />
2099
- <glyph glyph-name="summation" unicode="&#x2211;"
2100
-d="M790 1264h-474l316 -553l-316 -553h474v158h158v-316h-790v158l316 553l-316 553v158h790v-316h-158v158z" />
2101
- <glyph glyph-name="minus" unicode="&#x2212;"
2102
-d="M158 790h790v-158h-790v158z" />
2103
- <glyph glyph-name="uni2215" unicode="&#x2215;"
2104
-d="M790 1580h158l-632 -1580h-158z" />
2105
- <glyph glyph-name="uni2219" unicode="&#x2219;"
2106
-d="M316 790c0 22 4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999 -50
2107
-s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5s-42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5z" />
2108
- <glyph glyph-name="radical" unicode="&#x221a;"
2109
-d="M316 0l-316 553l158 79l237 -395l553 1106l158 -79l-632 -1264h-158z" />
2110
- <glyph glyph-name="infinity" unicode="&#x221e;"
2111
-d="M0 632c0 43.333 8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25c20 0 43.5 -5 70.5 -15s52.833 -24.833 77.5 -44.5s45.667 -44.334 63 -74.001s26 -64.167 26 -103.5c0 39.333 8.66699 73.833 26 103.5
2112
-s38.333 54.334 63 74.001s50.5 34.5 77.5 44.5s50.5 15 70.5 15c43.333 0 84.166 -8.33301 122.499 -25s71.833 -39.334 100.5 -68.001s51.334 -62.167 68.001 -100.5s25 -79.166 25 -122.499s-8.33301 -84.166 -25 -122.499s-39.334 -71.833 -68.001 -100.5
2113
-s-62.167 -51.334 -100.5 -68.001s-79.166 -25 -122.499 -25c-20 0 -43.5 5 -70.5 15s-52.833 24.833 -77.5 44.5s-45.667 44.334 -63 74.001s-26 64.167 -26 103.5c0 -39.333 -8.66699 -73.833 -26 -103.5s-38.333 -54.334 -63 -74.001s-50.5 -34.5 -77.5 -44.5
2114
-s-50.5 -15 -70.5 -15c-43.333 0 -84.166 8.33301 -122.499 25s-71.833 39.334 -100.5 68.001s-51.334 62.167 -68.001 100.5s-25 79.166 -25 122.499zM632 632c0 -22 4.16699 -42.5 12.5 -61.5s19.666 -35.667 33.999 -50s31 -25.666 50 -33.999s39.5 -12.5 61.5 -12.5
2115
-s42.5 4.16699 61.5 12.5s35.667 19.666 50 33.999s25.666 31 33.999 50s12.5 39.5 12.5 61.5s-4.16699 42.5 -12.5 61.5s-19.666 35.667 -33.999 50s-31 25.666 -50 33.999s-39.5 12.5 -61.5 12.5s-42.5 -4.16699 -61.5 -12.5s-35.667 -19.666 -50 -33.999
2116
-s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5zM158 632c0 -22 4.16699 -42.5 12.5 -61.5s19.666 -35.667 33.999 -50s31 -25.666 50 -33.999s39.5 -12.5 61.5 -12.5s42.5 4.16699 61.5 12.5s35.667 19.666 50 33.999s25.666 31 33.999 50s12.5 39.5 12.5 61.5
2117
-s-4.16699 42.5 -12.5 61.5s-19.666 35.667 -33.999 50s-31 25.666 -50 33.999s-39.5 12.5 -61.5 12.5s-42.5 -4.16699 -61.5 -12.5s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5z" />
2118
- <glyph glyph-name="intersection" unicode="&#x2229;"
2119
-d="M158 711c0 54.667 10.335 106 31.002 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711
2120
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-711h-158v711z" />
2121
- <glyph glyph-name="union" unicode="&#x222a;"
2122
-d="M158 1106h157.998v-711c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v711h158v-711
2123
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711z" />
2124
- <glyph glyph-name="integral" unicode="&#x222b;"
2125
-d="M790 1343c0 22 -7.66797 40.6641 -23.001 55.9971s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56v-1264c0 -32.667 -6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5
2126
-s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001v79h158v-79c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56c0.666992 151.333 1.16699 284.833 1.5 400.5
2127
-s0.5 216.5 0.5 302.5v371c0 40.667 -0.166992 72.834 -0.5 96.501s-0.666016 41.834 -0.999023 54.501s-0.5 21.334 -0.5 26.001v13c0 32.667 6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5
2128
-s63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001v-79h-158v79z" />
2129
- <glyph glyph-name="therefore" unicode="&#x2234;"
2130
-d="M158 395c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM474 1027c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56
2131
-s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM790 395c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
2132
- <glyph glyph-name="uni2235" unicode="&#x2235;"
2133
-d="M158 1027.02c0 -21.999 7.66699 -40.665 23 -55.998c15.333 -15.332 34 -22.998 56 -22.998s40.667 7.66602 56 22.998c15.333 15.333 23 33.999 23 55.998s-7.66699 40.6641 -23 55.9961c-15.333 15.333 -34 22.999 -56 22.999s-40.667 -7.66602 -56 -22.999
2134
-c-15.333 -15.332 -23 -33.9971 -23 -55.9961zM474 395.062c0 -21.999 7.66699 -40.6641 23 -55.9961c15.333 -15.333 34 -22.999 56 -22.999s40.667 7.66602 56 22.999c15.333 15.332 23 33.9971 23 55.9961s-7.66699 40.665 -23 55.998
2135
-c-15.333 15.332 -34 22.998 -56 22.998s-40.667 -7.66602 -56 -22.998c-15.333 -15.333 -23 -33.999 -23 -55.998zM790 1027.02c0 -21.999 7.66699 -40.665 23 -55.998c15.333 -15.332 34 -22.998 56 -22.998s40.667 7.66602 56 22.998c15.333 15.333 23 33.999 23 55.998
2136
-s-7.66699 40.6641 -23 55.9961c-15.333 15.333 -34 22.999 -56 22.999s-40.667 -7.66602 -56 -22.999c-15.333 -15.332 -23 -33.9971 -23 -55.9961z" />
2137
- <glyph glyph-name="uni2236" unicode="&#x2236;"
2138
-d="M474 1027c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM474 395c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56
2139
-s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
2140
- <glyph glyph-name="uni2237" unicode="&#x2237;"
2141
-d="M158 395c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM158 1027c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56
2142
-s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM790 395c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM790 1027
2143
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
2144
- <glyph glyph-name="approxequal" unicode="&#x2248;"
2145
-d="M0 948c42 34 81.167 57.667 117.5 71s71.5 20 105.5 20c30.667 0 60 -4.5 88 -13.5s55.5 -20.167 82.5 -33.5s53.833 -28 80.5 -44s53.5 -30.667 80.5 -44s54.5 -24.5 82.5 -33.5s57.333 -13.5 88 -13.5c33.333 0 68.333 6.66699 105 20s76 37 118 71v-158
2146
-c-42 -34 -81.333 -57.667 -118 -71s-71.667 -20 -105 -20c-30.667 0 -60 4.5 -88 13.5s-55.5 20.167 -82.5 33.5s-53.833 28 -80.5 44s-53.5 30.667 -80.5 44s-54.5 24.5 -82.5 33.5s-57.333 13.5 -88 13.5c-34 0 -69.167 -6.66699 -105.5 -20s-75.5 -37 -117.5 -71v158z
2147
-M0 632c42 34 81.167 57.667 117.5 71s71.5 20 105.5 20c30.667 0 60 -4.5 88 -13.5s55.5 -20.167 82.5 -33.5s53.833 -28 80.5 -44s53.5 -30.667 80.5 -44s54.5 -24.5 82.5 -33.5s57.333 -13.5 88 -13.5c33.333 0 68.333 6.66699 105 20s76 37 118 71v-158
2148
-c-42 -34 -81.333 -57.667 -118 -71s-71.667 -20 -105 -20c-30.667 0 -60 4.5 -88 13.5s-55.5 20.167 -82.5 33.5s-53.833 28 -80.5 44s-53.5 30.667 -80.5 44s-54.5 24.5 -82.5 33.5s-57.333 13.5 -88 13.5c-34 0 -69.167 -6.66699 -105.5 -20s-75.5 -37 -117.5 -71v158z
2149
-" />
2150
- <glyph glyph-name="notequal" unicode="&#x2260;"
2151
-d="M0 474v158h948v-158h-948zM0 790v158h948v-158h-948zM717 1420.83h158l-632 -1422.04h-158z" />
2152
- <glyph glyph-name="equivalence" unicode="&#x2261;"
2153
-d="M0 632v158h948v-158h-948zM0 948v158h948v-158h-948zM0 316v158h948v-158h-948z" />
2154
- <glyph glyph-name="lessequal" unicode="&#x2264;"
2155
-d="M158 158h790v-158h-790v158zM755 1343v-114l-439 -439l439 -439v-114h-114l-496 496v114l496 496h114z" />
2156
- <glyph glyph-name="greaterequal" unicode="&#x2265;"
2157
-d="M935 158h-790v-158h790v158zM452 1343l496 -496v-114l-496 -496h-114v114l439 439l-439 439v114h114z" />
2158
- <glyph glyph-name="house" unicode="&#x2302;"
2159
-d="M553 1106l395 -632v-316h-790v316zM316 395v-79h474v79l-237 395z" />
2160
- <glyph glyph-name="revlogicalnot" unicode="&#x2310;"
2161
-d="M316 474h-158v474h790v-158h-632v-316z" />
2162
- <glyph glyph-name="uni2318" unicode="&#x2318;"
2163
-d="M237 790c-32.667 0 -63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001s6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5
2164
-s63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001v-79h158v79c0 32.667 6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5
2165
-s63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001s-6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5h-79v-158h79
2166
-c32.667 0 63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001s-6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5
2167
-s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001v79h-158v-79c0 -32.667 -6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5
2168
-s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001s6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5h79v158h-79zM632 632v158h-158v-158h158zM237 474
2169
-c-22 0 -40.667 -7.66699 -56 -23s-23 -34 -23 -56s7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56v79h-79zM158 1027c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23h79v79c0 22 -7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23
2170
-s-23 -34 -23 -56zM948 395c0 22 -7.66699 40.667 -23 56s-34 23 -56 23h-79v-79c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56zM790 948h79c22 0 40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23
2171
-s-40.667 -7.66699 -56 -23s-23 -34 -23 -56v-79z" />
2172
- <glyph glyph-name="integraltp" unicode="&#x2320;"
2173
-d="M632 -632l-158.002 -0.00488281v2133c0 32.667 6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5h79c22 0 42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5
2174
-s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999 -50s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5c-30 0 -57 7.33301 -81 22s-42.667 33.667 -56 57c-14 -23.333 -21 -49.666 -21 -78.999v-2054z" />
2175
- <glyph glyph-name="integralbt" unicode="&#x2321;"
2176
-d="M474 1975l158.003 0.00390625v-2212c0 -32.667 -6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5h-79c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50
2177
-s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5c30 0 57 -7.33301 81 -22s42.667 -33.667 56 -57c7.33301 11.333 12.666 23.833 15.999 37.5s5 27.5 5 41.5v2133z" />
2178
- <glyph glyph-name="SF100000" unicode="&#x2500;"
2179
-d="M0 790h1106v-158h-1106v158z" />
2180
- <glyph glyph-name="SF110000" unicode="&#x2502;"
2181
-d="M474 1975h158v-2607h-158v2607z" />
2182
- <glyph glyph-name="SF010000" unicode="&#x250c;"
2183
-d="M474 -632v1422h632v-158h-474v-1264h-158z" />
2184
- <glyph glyph-name="SF030000" unicode="&#x2510;"
2185
-d="M0 790h632v-1422h-158v1264h-474v158z" />
2186
- <glyph glyph-name="SF020000" unicode="&#x2514;"
2187
-d="M474 1975h158v-1185h474v-158h-632v1343z" />
2188
- <glyph glyph-name="SF040000" unicode="&#x2518;"
2189
-d="M0 790h474v1185h158v-1343h-632v158z" />
2190
- <glyph glyph-name="SF080000" unicode="&#x251c;"
2191
-d="M474 1975h158v-1185h474v-158h-474v-1264h-158v2607z" />
2192
- <glyph glyph-name="SF090000" unicode="&#x2524;"
2193
-d="M0 790h474v1185h158v-2607h-158v1264h-474v158z" />
2194
- <glyph glyph-name="SF060000" unicode="&#x252c;"
2195
-d="M0 790h1106v-158h-474v-1264h-158v1264h-474v158z" />
2196
- <glyph glyph-name="SF070000" unicode="&#x2534;"
2197
-d="M0 790h474v1185h158v-1185h474v-158h-1106v158z" />
2198
- <glyph glyph-name="SF050000" unicode="&#x253c;"
2199
-d="M0 790h474v1185h158v-1185h474v-158h-474v-1264h-158v1264h-474v158z" />
2200
- <glyph glyph-name="SF430000" unicode="&#x2550;"
2201
-d="M0 948h1106v-158h-1106v158zM0 632h1106v-158h-1106v158z" />
2202
- <glyph glyph-name="SF240000" unicode="&#x2551;"
2203
-d="M632 -632v2607h158v-2607h-158zM474 -632h-158v2607h158v-2607z" />
2204
- <glyph glyph-name="SF510000" unicode="&#x2552;"
2205
-d="M632 790v-158h474v-158h-474v-1106h-158v1580h632v-158h-474z" />
2206
- <glyph glyph-name="SF520000" unicode="&#x2553;"
2207
-d="M790 632v-1264h-158v1264h-158v-1264h-158v1422h790v-158h-316z" />
2208
- <glyph glyph-name="SF390000" unicode="&#x2554;"
2209
-d="M1106 948v-158h-632v-1422h-158v1580h790zM632 632h474v-158h-316v-1106h-158v1264z" />
2210
- <glyph glyph-name="SF220000" unicode="&#x2555;"
2211
-d="M632 -632h-158v1106h-474v158h474v158h-474v158h632v-1580z" />
2212
- <glyph glyph-name="SF210000" unicode="&#x2556;"
2213
-d="M790 -632h-158v1264h-158v-1264h-158v1264h-316v158h790v-1422z" />
2214
- <glyph glyph-name="SF250000" unicode="&#x2557;"
2215
-d="M0 948h790v-1580h-158v1422h-632v158zM0 474v158h474v-1264h-158v1106h-316z" />
2216
- <glyph glyph-name="SF500000" unicode="&#x2558;"
2217
-d="M632 790v-158h474v-158h-632v1501h158v-1027h474v-158h-474z" />
2218
- <glyph glyph-name="SF490000" unicode="&#x2559;"
2219
-d="M316 632v1343h158v-1185h158v1185h158v-1185h316v-158h-790z" />
2220
- <glyph glyph-name="SF380000" unicode="&#x255a;"
2221
-d="M316 1975h158v-1343h632v-158h-790v1501zM632 790v1185h158v-1027h316v-158h-474z" />
2222
- <glyph glyph-name="SF280000" unicode="&#x255b;"
2223
-d="M632 474h-632v158h474v158h-474v158h474v1027h158v-1501z" />
2224
- <glyph glyph-name="SF270000" unicode="&#x255c;"
2225
-d="M790 632h-790v158h316v1185h158v-1185h158v1185h158v-1343z" />
2226
- <glyph glyph-name="SF260000" unicode="&#x255d;"
2227
-d="M0 632h632v1343h158v-1501h-790v158zM474 790h-474v158h316v1027h158v-1185z" />
2228
- <glyph glyph-name="SF360000" unicode="&#x255e;"
2229
-d="M632 -632h-158v2607h158v-1027h474v-158h-474v-158h474v-158h-474v-1106z" />
2230
- <glyph glyph-name="SF370000" unicode="&#x255f;"
2231
-d="M1106 790v-158h-316v-1264h-158v2607h158v-1185h316zM474 -632h-158v2607h158v-2607z" />
2232
- <glyph glyph-name="SF420000" unicode="&#x2560;"
2233
-d="M474 -632h-158v2607h158v-2607zM632 632h474v-158h-316v-1106h-158v1264zM632 790v1185h158v-1027h316v-158h-474z" />
2234
- <glyph glyph-name="SF190000" unicode="&#x2561;"
2235
-d="M632 -632h-158v1106h-474v158h474v158h-474v158h474v1027h158v-2607z" />
2236
- <glyph glyph-name="SF200000" unicode="&#x2562;"
2237
-d="M474 -632h-158v1264h-316v158h316v1185h158v-2607zM632 -632v2607h158v-2607h-158z" />
2238
- <glyph glyph-name="SF230000" unicode="&#x2563;"
2239
-d="M632 -632v2607h158v-2607h-158zM0 474v158h474v-1264h-158v1106h-316zM474 790h-474v158h316v1027h158v-1185z" />
2240
- <glyph glyph-name="SF470000" unicode="&#x2564;"
2241
-d="M1106 632v-158h-474v-1106h-158v1106h-474v158h1106zM0 790v158h1106v-158h-1106z" />
2242
- <glyph glyph-name="SF480000" unicode="&#x2565;"
2243
-d="M790 632v-1264h-158v1264h-158v-1264h-158v1264h-316v158h1106v-158h-316z" />
2244
- <glyph glyph-name="SF410000" unicode="&#x2566;"
2245
-d="M0 474v158h474v-1264h-158v1106h-316zM632 632h474v-158h-316v-1106h-158v1264zM0 948h1106v-158h-1106v158z" />
2246
- <glyph glyph-name="SF450000" unicode="&#x2567;"
2247
-d="M0 948h474v1027h158v-1027h474v-158h-1106v158zM0 632h1106v-158h-1106v158z" />
2248
- <glyph glyph-name="SF460000" unicode="&#x2568;"
2249
-d="M0 632v158h316v1185h158v-1185h158v1185h158v-1185h316v-158h-1106z" />
2250
- <glyph glyph-name="SF400000" unicode="&#x2569;"
2251
-d="M474 790h-474v158h316v1027h158v-1185zM632 790v1185h158v-1027h316v-158h-474zM0 632h1106v-158h-1106v158z" />
2252
- <glyph glyph-name="SF540000" unicode="&#x256a;"
2253
-d="M632 790v-158h474v-158h-474v-1106h-158v1106h-474v158h474v158h-474v158h474v1027h158v-1027h474v-158h-474z" />
2254
- <glyph glyph-name="SF530000" unicode="&#x256b;"
2255
-d="M790 632v-1264h-158v1264h-158v-1264h-158v1264h-316v158h316v1185h158v-1185h158v1185h158v-1185h316v-158h-316z" />
2256
- <glyph glyph-name="SF440000" unicode="&#x256c;"
2257
-d="M0 474v158h474v-1264h-158v1106h-316zM632 632h474v-158h-316v-1106h-158v1264zM474 790h-474v158h316v1027h158v-1185zM632 790v1185h158v-1027h316v-158h-474z" />
2258
- <glyph glyph-name="upblock" unicode="&#x2580;"
2259
-d="M0 1975h1106v-1343h-1106v1343z" />
2260
- <glyph glyph-name="dnblock" unicode="&#x2584;"
2261
-d="M0 632h1106v-1264h-1106v1264z" />
2262
- <glyph glyph-name="block" unicode="&#x2588;"
2263
-d="M0 1975h1106v-2607h-1106v2607z" />
2264
- <glyph glyph-name="lfblock" unicode="&#x258c;"
2265
-d="M0 1975h632v-2607h-632v2607z" />
2266
- <glyph glyph-name="rtblock" unicode="&#x2590;"
2267
-d="M632 1975h474v-2607h-474v2607z" />
2268
- <glyph glyph-name="ltshade" unicode="&#x2591;"
2269
-d="M790 1580v158h158v-158h-158zM474 1580v158h158v-158h-158zM158 1580v158h158v-158h-158zM632 1264v158h158v-158h-158zM316 1264v158h158v-158h-158zM0 1264v158h158v-158h-158zM790 948v158h158v-158h-158zM474 948v158h158v-158h-158zM158 948v158h158v-158h-158z
2270
-M632 632v158h158v-158h-158zM316 632v158h158v-158h-158zM0 632v158h158v-158h-158zM790 316v158h158v-158h-158zM474 316v158h158v-158h-158zM158 316v158h158v-158h-158zM632 0v158h158v-158h-158zM316 0v158h158v-158h-158zM0 0v158h158v-158h-158zM790 -316v158h158
2271
-v-158h-158zM474 -316v158h158v-158h-158zM158 -316v158h158v-158h-158zM632 -632v158h158v-158h-158zM316 -632v158h158v-158h-158zM0 -632v158h158v-158h-158z" />
2272
- <glyph glyph-name="shade" unicode="&#x2592;"
2273
-d="M0 -632v158h158v158h-158v158h158v158h-158v158h158v158h-158v158h158v158h-158v158h158v158h-158v158h158v158h-158v158h158v158h-158v158h158v158h158v-158h158v158h158v-158h158v158h158v-158h158v-158h-158v-158h158v-158h-158v-158h158v-158h-158v-158h158v-158
2274
-h-158v-158h158v-158h-158v-158h158v-158h-158v-158h158v-158h-158v-158h158v-158h-158v158h-158v-158h-158v158h-158v-158h-158v158h-158v-158h-158zM790 316h-158v-158h158v158zM474 -316h-158v-158h158v158zM474 316h-158v-158h158v158zM632 -158h-158v-158h158v158z
2275
-M790 -316h-158v-158h158v158zM316 -158h-158v-158h158v158zM632 1106h-158v-158h158v158zM948 -158h-158v-158h158v158zM790 632h-158v-158h158v158zM474 1264h-158v-158h158v158zM474 632h-158v-158h158v158zM632 790h-158v-158h158v158zM474 1580h-158v-158h158v158z
2276
-M948 1738h-158v-158h158v158zM316 474h-158v-158h158v158zM948 790h-158v-158h158v158zM316 1738h-158v-158h158v158zM948 158h-158v-158h158v158zM790 948h-158v-158h158v158zM632 1422h-158v-158h158v158zM474 0h-158v-158h158v158zM790 1264h-158v-158h158v158zM948 474
2277
-h-158v-158h158v158zM790 1580h-158v-158h158v158zM474 948h-158v-158h158v158zM948 948v158h-158v-158h158zM474 316h158v158h-158v-158zM158 1264h158v158h-158v-158zM316 790h-158v-158h158v158zM474 1580h158v158h-158v-158zM948 1422h-158v-158h158v158zM790 0h-158
2278
-v-158h158v158zM632 158h-158v-158h158v158zM316 1106h-158v-158h158v158zM316 158h-158v-158h158v158z" />
2279
- <glyph glyph-name="dkshade" unicode="&#x2593;"
2280
-d="M0 0h158v158h-158v474h158v158h-158v474h158v158h-158v474h1106v-2528h-316v158h-158v-158h-158v158h-158v-158h-158v158h-158v474zM158 1738v-158h158v158h-158zM158 474v-158h158v158h-158zM474 1580h158v158h-158v-158zM632 0h158v158h-158v-158zM790 -316h158v158
2281
-h-158v-158zM474 316h158v158h-158v-158zM316 0h158v158h-158v-158zM474 948h158v158h-158v-158zM790 1580h158v158h-158v-158zM632 1264h158v158h-158v-158zM790 948h158v158h-158v-158zM316 1264h158v158h-158v-158zM316 632h158v158h-158v-158zM632 632h158v158h-158v-158
2282
-zM790 316h158v158h-158v-158zM158 1106v-158h158v158h-158zM474 -316h158v158h-158v-158zM158 -158v-158h158v158h-158z" />
2283
- <glyph glyph-name="filledbox" unicode="&#x25a0;"
2284
-d="M158 1106h790v-790h-790v790z" />
2285
- <glyph glyph-name="triagup" unicode="&#x25b2;"
2286
-d="M553 1106l395 -790h-790z" />
2287
- <glyph glyph-name="triagrt" unicode="&#x25ba;"
2288
-d="M948 711l-790 -395v790z" />
2289
- <glyph glyph-name="triagdn" unicode="&#x25bc;"
2290
-d="M553 316.067l395 789.952h-790z" />
2291
- <glyph glyph-name="triaglf" unicode="&#x25c4;"
2292
-d="M158.058 711l789.952 -395v790z" />
2293
- <glyph glyph-name="lozenge" unicode="&#x25ca;"
2294
-d="M158 711l395 711l395 -711l-395 -711zM553 237l237 474l-237 474l-237 -474z" />
2295
- <glyph glyph-name="circle" unicode="&#x25cb;"
2296
-d="M316 711c0 32.667 6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5s63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001
2297
-s-6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001z" />
2298
- <glyph glyph-name="H18533" unicode="&#x25cf;"
2299
-d="M316 711c0 32.667 6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5s63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001
2300
-s-6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001z" />
2301
- <glyph glyph-name="invbullet" unicode="&#x25d8;"
2302
-d="M158 1106h790v-790h-790v790zM316 711c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501
2303
-s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001z" />
2304
- <glyph glyph-name="invcircle" unicode="&#x25d9;"
2305
-d="M158 1106h790v-790h-790v790zM316 711c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501
2306
-s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001z
2307
-M474 711c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
2308
- <glyph glyph-name="uni2639" unicode="&#x2639;"
2309
-d="M0 711c0 76 14.5 147.667 43.5 215s68.5 126 118.5 176s108.667 89.5 176 118.5s139 43.5 215 43.5s147.667 -14.5 215 -43.5s126 -68.5 176 -118.5s89.5 -108.667 118.5 -176s43.5 -139 43.5 -215s-14.5 -147.667 -43.5 -215s-68.5 -126 -118.5 -176
2310
-s-108.667 -89.5 -176 -118.5s-139 -43.5 -215 -43.5s-147.667 14.5 -215 43.5s-126 68.5 -176 118.5s-89.5 108.667 -118.5 176s-43.5 139 -43.5 215zM158 711c0 -54.667 10.333 -106 31 -154s48.834 -89.833 84.501 -125.5s77.5 -63.834 125.5 -84.501s99.333 -31 154 -31
2311
-s106 10.333 154 31s89.833 48.834 125.5 84.501s63.834 77.5 84.501 125.5s31 99.333 31 154s-10.333 106 -31 154s-48.834 89.833 -84.501 125.5s-77.5 63.834 -125.5 84.501s-99.333 31 -154 31s-106 -10.333 -154 -31s-89.833 -48.834 -125.5 -84.501
2312
-s-63.834 -77.5 -84.501 -125.5s-31 -99.333 -31 -154zM553 710c158 0.666992 236.998 -77.999 236.998 -235.999h-79c0 20 -0.833008 39.333 -2.5 58s-7.5 35.5 -17.5 50.5s-25.667 26.833 -47 35.5s-51.666 13 -90.999 13s-69.666 -4.66699 -90.999 -14
2313
-s-37 -21.5 -47 -36.5s-15.833 -31.833 -17.5 -50.5s-2.5 -38 -2.5 -58h-79c0 157.333 79 236.666 237 237.999zM631.998 869.001c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23
2314
-s-40.667 7.66699 -56 23s-23 34 -23 56zM315.998 869.001c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
2315
- <glyph glyph-name="smileface" unicode="&#x263a;"
2316
-d="M0 711c0 76 14.5 147.667 43.5 215s68.5 126 118.5 176s108.667 89.5 176 118.5s139 43.5 215 43.5s147.667 -14.5 215 -43.5s126 -68.5 176 -118.5s89.5 -108.667 118.5 -176s43.5 -139 43.5 -215s-14.5 -147.667 -43.5 -215s-68.5 -126 -118.5 -176
2317
-s-108.667 -89.5 -176 -118.5s-139 -43.5 -215 -43.5s-147.667 14.5 -215 43.5s-126 68.5 -176 118.5s-89.5 108.667 -118.5 176s-43.5 139 -43.5 215zM158 711c0 -54.667 10.333 -106 31 -154s48.834 -89.833 84.501 -125.5s77.5 -63.834 125.5 -84.501s99.333 -31 154 -31
2318
-s106 10.333 154 31s89.833 48.834 125.5 84.501s63.834 77.5 84.501 125.5s31 99.333 31 154s-10.333 106 -31 154s-48.834 89.833 -84.501 125.5s-77.5 63.834 -125.5 84.501s-99.333 31 -154 31s-106 -10.333 -154 -31s-89.833 -48.834 -125.5 -84.501
2319
-s-63.834 -77.5 -84.501 -125.5s-31 -99.333 -31 -154zM553 474c-158 0 -236.998 79 -236.998 237h79c0 -20 0.833008 -39.333 2.5 -58s7.5 -35.5 17.5 -50.5s25.667 -27 47 -36s51.666 -13.5 90.999 -13.5s69.666 4.5 90.999 13.5s37 21 47 36s15.833 31.833 17.5 50.5
2320
-s2.5 38 2.5 58h79c0 -158 -79 -237 -237 -237zM632.002 869c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM316.002 869c0 22 7.66699 40.667 23 56
2321
-s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
2322
- <glyph glyph-name="invsmileface" unicode="&#x263b;"
2323
-d="M0 711c0 76 14.5 147.667 43.5 215s68.5 126 118.5 176s108.667 89.5 176 118.5s139 43.5 215 43.5s147.667 -14.5 215 -43.5s126 -68.5 176 -118.5s89.5 -108.667 118.5 -176s43.5 -139 43.5 -215s-14.5 -147.667 -43.5 -215s-68.5 -126 -118.5 -176
2324
-s-108.667 -89.5 -176 -118.5s-139 -43.5 -215 -43.5s-147.667 14.5 -215 43.5s-126 68.5 -176 118.5s-89.5 108.667 -118.5 176s-43.5 139 -43.5 215zM316 869c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56
2325
-s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56zM632 869c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56zM553 474
2326
-c158 0 236.998 79 236.998 237h-79c0 -20 -0.833008 -39.333 -2.5 -58s-7.5 -35.5 -17.5 -50.5s-25.667 -27 -47 -36s-51.666 -13.5 -90.999 -13.5s-69.666 4.5 -90.999 13.5s-37 21 -47 36s-15.833 31.833 -17.5 50.5s-2.5 38 -2.5 58h-79c0 -158 79 -237 237 -237z" />
2327
- <glyph glyph-name="sun" unicode="&#x263c;"
2328
-d="M474 324c-24.667 4.66699 -48.166 11.499 -70.499 20.499s-43.5 20.167 -63.5 33.5l-122 -122l-120 120l122 122c-13.333 20 -24.5 41.167 -33.5 63.5s-15.833 45.833 -20.5 70.5h-166v158h166c4.66699 24 11.5 47.167 20.5 69.5s20.167 43.5 33.5 63.5l-122 123l120 120
2329
-l122 -123c41.333 26.667 86 45 134 55v166h158v-166c47.333 -10 91.666 -28.333 132.999 -55l123 123l120 -120l-123 -123c26.667 -41.333 45 -85.666 55 -132.999h166v-158h-166c-10 -48 -28.333 -92.667 -55 -134l123 -122l-120 -120l-123 122
2330
-c-20 -13.333 -41.167 -24.5 -63.5 -33.5s-45.5 -15.833 -69.5 -20.5v-166h-158v166zM316.001 710.999c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5
2331
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51
2332
-s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001z" />
2333
- <glyph glyph-name="female" unicode="&#x2640;"
2334
-d="M158 1027c0 54.667 10.3301 106 30.9971 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154c0 -48 -8 -93.333 -24 -136
2335
-s-38.167 -81.167 -66.5 -115.5s-61.833 -63.333 -100.5 -87s-80.334 -39.834 -125.001 -48.501v-166h158v-158h-158v-158h-158v158h-158v158h158v166c-45.333 8.66699 -87.166 24.834 -125.499 48.501s-71.666 52.667 -99.999 87s-50.5 72.833 -66.5 115.5s-24 88 -24 136z
2336
-M315.997 1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001
2337
-s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001z" />
2338
- <glyph glyph-name="male" unicode="&#x2642;"
2339
-d="M632 1106l474.002 -0.00195312v-474h-158v202l-223 -223c20.667 -31.333 36.667 -65.166 48 -101.499s17 -74.5 17 -114.5c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31
2340
-s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154s10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c40 0 78.167 -5.66699 114.5 -17s70.166 -27.333 101.499 -48l223 223h-202v158zM158.002 394.998
2341
-c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001
2342
-s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001z" />
2343
- <glyph glyph-name="spade" unicode="&#x2660;"
2344
-d="M316 158l157.999 0.000976562v180c-23.333 -11.333 -46.5 -17.833 -69.5 -19.5s-39.833 -2.5 -50.5 -2.5c-29.333 0 -56 4.5 -80 13.5s-44.667 21 -62 36s-30.666 31.833 -39.999 50.5s-14 38 -14 58c0 26 4.33301 50.667 13 74s21 47.5 37 72.5s35.5 52 58.5 81
2345
-l78.5 100.5l96.5 131c35 49.333 72.167 107 111.5 173c39.333 -66 76.5 -123.667 111.5 -173l96.5 -131l78.5 -100.5c23 -29 42.5 -56 58.5 -81s28.333 -49.167 37 -72.5s13 -48 13 -74c0 -20 -4.66699 -39.333 -14 -58s-22.833 -35.5 -40.5 -50.5s-38.667 -27 -63 -36
2346
-s-51.5 -13.5 -81.5 -13.5c-5.33301 0 -12.166 0.166992 -20.499 0.5s-17.833 1.16602 -28.5 2.49902s-21.834 3.5 -33.501 6.5s-23.167 7.16699 -34.5 12.5v-180h158v-158h-474v158z" />
2347
- <glyph glyph-name="club" unicode="&#x2663;"
2348
-d="M79 474c0 32.667 6.16602 63.3311 18.499 91.998s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5c23.333 0 47 -3.66699 71 -11c-22 21.333 -39.333 46.333 -52 75s-19 60 -19 94c0 32.667 6.16699 63.334 18.5 92.001
2349
-s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5h6c32 -1.33301 62 -8.33301 90 -21s52.5 -29.667 73.5 -51s37.5 -46.166 49.5 -74.499s18 -58.5 18 -90.5c0 -34 -6.33301 -65.333 -19 -94s-30 -53.667 -52 -75c23.333 7.33301 47 11 71 11
2350
-c32.667 0 63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001s-6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5
2351
-c-30.667 0 -59.334 5.16699 -86.001 15.5s-50.667 25.166 -72 44.499v-139h158v-158h-474v158h158v139c-21.333 -19.333 -45.5 -34.166 -72.5 -44.499s-55.5 -15.5 -85.5 -15.5c-32.667 0 -63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51
2352
-s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001z" />
2353
- <glyph glyph-name="heart" unicode="&#x2665;"
2354
-d="M0 869c0 39.333 8.66699 73.833 26 103.5s38.333 54.334 63 74.001s50.5 34.5 77.5 44.5s50.5 15 70.5 15s43.5 -5 70.5 -15s52.833 -24.833 77.5 -44.5s45.667 -44.334 63 -74.001s26 -64.167 26 -103.5c0 39.333 8.66699 73.833 26 103.5s38.333 54.334 63 74.001
2355
-s50.5 34.5 77.5 44.5s50.5 15 70.5 15s43.5 -5 70.5 -15s52.833 -24.833 77.5 -44.5s45.667 -44.334 63 -74.001s26 -64.167 26 -103.5c0 -59.333 -13.5 -119.5 -40.5 -180.5s-62.833 -126 -107.5 -195l-152 -224.5c-56.667 -80.667 -114.667 -170.334 -174 -269.001
2356
-c-59.333 98.667 -117.333 188.334 -174 269.001l-152 224.5c-44.667 69 -80.5 134 -107.5 195s-40.5 121.167 -40.5 180.5z" />
2357
- <glyph glyph-name="diamond" unicode="&#x2666;"
2358
-d="M158 553l395 553l395 -553l-395 -553z" />
2359
- <glyph glyph-name="uni2669" unicode="&#x2669;"
2360
-d="M158 237c0 32.667 6.16895 63.332 18.502 91.999s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5c26.667 0 53 -4.66699 79 -14v962h158v-1185c0 -32.667 -6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501
2361
-s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001z" />
2362
- <glyph glyph-name="musicalnote" unicode="&#x266a;"
2363
-d="M158 237c0 32.667 6.16895 63.332 18.502 91.999s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5c26.667 0 53 -4.66699 79 -14v962h158l316 -395l-79 -79l-237 275v-986c0 -32.667 -6.16699 -63.334 -18.5 -92.001
2364
-s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001z" />
2365
- <glyph glyph-name="musicalnotedbl" unicode="&#x266b;"
2366
-d="M632 395c0 32.667 6.1709 63.3301 18.5039 91.9971s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5c26.667 0 53 -4.66699 79 -14v590l-474 -237v-892c0 -32.667 -6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501
2367
-s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001s6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51
2368
-s59.334 18.5 92.001 18.5c26.667 0 53 -4.66699 79 -14v777l675 343h115v-1027c0 -32.667 -6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51
2369
-s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001z" />
2370
- <glyph glyph-name="uni2680" unicode="&#x2680;"
2371
-d="M0 790c0 39.333 9 78 27 116s41.833 71.833 71.5 101.5s63.5 53.5 101.5 71.5s76.667 27 116 27h474c39.333 0 78 -9 116 -27s71.833 -41.833 101.5 -71.5s53.5 -63.5 71.5 -101.5s27 -76.667 27 -116v-474c0 -39.333 -9 -78 -27 -116s-41.833 -71.833 -71.5 -101.5
2372
-s-63.5 -53.5 -101.5 -71.5s-76.667 -27 -116 -27h-474c-39.333 0 -78 9 -116 27s-71.833 41.833 -101.5 71.5s-53.5 63.5 -71.5 101.5s-27 76.667 -27 116v474zM474 553c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56
2373
-s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56z" />
2374
- <glyph glyph-name="uni2681" unicode="&#x2681;"
2375
-d="M0 790c0 39.333 9 78 27 116s41.833 71.833 71.5 101.5s63.5 53.5 101.5 71.5s76.667 27 116 27h474c39.333 0 78 -9 116 -27s71.833 -41.833 101.5 -71.5s53.5 -63.5 71.5 -101.5s27 -76.667 27 -116v-474c0 -39.333 -9 -78 -27 -116s-41.833 -71.833 -71.5 -101.5
2376
-s-63.5 -53.5 -101.5 -71.5s-76.667 -27 -116 -27h-474c-39.333 0 -78 9 -116 27s-71.833 41.833 -101.5 71.5s-53.5 63.5 -71.5 101.5s-27 76.667 -27 116v474zM158 869c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56
2377
-s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56zM790 237c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56z" />
2378
- <glyph glyph-name="uni2682" unicode="&#x2682;"
2379
-d="M0 790c0 39.333 9 78 27 116s41.833 71.833 71.5 101.5s63.5 53.5 101.5 71.5s76.667 27 116 27h474c39.333 0 78 -9 116 -27s71.833 -41.833 101.5 -71.5s53.5 -63.5 71.5 -101.5s27 -76.667 27 -116v-474c0 -39.333 -9 -78 -27 -116s-41.833 -71.833 -71.5 -101.5
2380
-s-63.5 -53.5 -101.5 -71.5s-76.667 -27 -116 -27h-474c-39.333 0 -78 9 -116 27s-71.833 41.833 -101.5 71.5s-53.5 63.5 -71.5 101.5s-27 76.667 -27 116v474zM158 869c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56
2381
-s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56zM474 553c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56zM790 237
2382
-c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56z" />
2383
- <glyph glyph-name="uni2683" unicode="&#x2683;"
2384
-d="M0 790c0 39.333 9 78 27 116s41.833 71.833 71.5 101.5s63.5 53.5 101.5 71.5s76.667 27 116 27h474c39.333 0 78 -9 116 -27s71.833 -41.833 101.5 -71.5s53.5 -63.5 71.5 -101.5s27 -76.667 27 -116v-474c0 -39.333 -9 -78 -27 -116s-41.833 -71.833 -71.5 -101.5
2385
-s-63.5 -53.5 -101.5 -71.5s-76.667 -27 -116 -27h-474c-39.333 0 -78 9 -116 27s-71.833 41.833 -101.5 71.5s-53.5 63.5 -71.5 101.5s-27 76.667 -27 116v474zM158 869c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56
2386
-s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56zM790 869c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56zM158 237
2387
-c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56zM790 237c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56
2388
-s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56z" />
2389
- <glyph glyph-name="uni2684" unicode="&#x2684;"
2390
-d="M0 790c0 39.333 9 78 27 116s41.833 71.833 71.5 101.5s63.5 53.5 101.5 71.5s76.667 27 116 27h474c39.333 0 78 -9 116 -27s71.833 -41.833 101.5 -71.5s53.5 -63.5 71.5 -101.5s27 -76.667 27 -116v-474c0 -39.333 -9 -78 -27 -116s-41.833 -71.833 -71.5 -101.5
2391
-s-63.5 -53.5 -101.5 -71.5s-76.667 -27 -116 -27h-474c-39.333 0 -78 9 -116 27s-71.833 41.833 -101.5 71.5s-53.5 63.5 -71.5 101.5s-27 76.667 -27 116v474zM158 869c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56
2392
-s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56zM790 869c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56zM158 237
2393
-c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56zM474 553c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56
2394
-s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56zM790 237c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56z" />
2395
- <glyph glyph-name="uni2685" unicode="&#x2685;"
2396
-d="M0 790c0 39.333 9 78 27 116s41.833 71.833 71.5 101.5s63.5 53.5 101.5 71.5s76.667 27 116 27h474c39.333 0 78 -9 116 -27s71.833 -41.833 101.5 -71.5s53.5 -63.5 71.5 -101.5s27 -76.667 27 -116v-474c0 -39.333 -9 -78 -27 -116s-41.833 -71.833 -71.5 -101.5
2397
-s-63.5 -53.5 -101.5 -71.5s-76.667 -27 -116 -27h-474c-39.333 0 -78 9 -116 27s-71.833 41.833 -101.5 71.5s-53.5 63.5 -71.5 101.5s-27 76.667 -27 116v474zM158 869c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56
2398
-s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56zM790 869c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56zM158 237
2399
-c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56zM158 553c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56
2400
-s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56zM790 237c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56zM790 553
2401
-c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56z" />
2402
- <glyph glyph-name="f_f" unicode="&#xfb00;"
2403
-d="M474 948l158.002 0.00195312v79c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31h79v-158h-79c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
2404
-s-18.5 -59.334 -18.5 -92.001v-79h316v-158h-316v-790h-158v790h-316v-790h-158v790h-158v158h158v79c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31h79v-158h-79c-32.667 0 -63.334 -6.16699 -92.001 -18.5
2405
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79h158z" />
2406
- <glyph glyph-name="fi" unicode="&#xfb01;"
2407
-d="M158 948l158.001 0.000976562v79c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31h237v-158h-237c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
2408
-s-18.5 -59.334 -18.5 -92.001v-79h474v-948h-158v790h-316v-790h-158v790h-158v158z" />
2409
- <glyph glyph-name="fl" unicode="&#xfb02;"
2410
-d="M158 948l157.999 -0.000976562v79c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31h237v-1422h-158v790h-316v-790h-158v790h-158v158zM473.999 947.999l316.002 0.00195312v316h-79
2411
-c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79z" />
2412
- <glyph glyph-name="f_f_i" unicode="&#xfb03;"
2413
-d="M1106 0l-157.998 0.00292969v790h-237v-790h-158v790h-237v-790h-158v790h-158v158h158v79c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31v-158c-32.667 0 -63.334 -6.16699 -92.001 -18.5
2414
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79h237v79c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31v-76c0.666992 21.333 8.66699 39.333 24 54s33.666 22 54.999 22
2415
-c22 0 40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23c-21.333 0 -39.666 7.16699 -54.999 21.5s-23.333 32.166 -24 53.499v-75c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
2416
-s-18.5 -59.334 -18.5 -92.001v-79h395v-948z" />
2417
- <glyph glyph-name="f_f_l" unicode="&#xfb04;"
2418
-d="M948 790h-237v-790h-158v790h-237v-790h-158v790h-158v158h158v79c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31v-158c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51
2419
-s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79h237v79c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31h158v-1422h-158v790zM948 1264c-32.667 0 -63.332 -6.16504 -91.999 -18.498
2420
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79h237v316z" />
2421
- <glyph glyph-name="s_t" unicode="&#xfb06;"
2422
-d="M790 474c0 -39.333 0.833984 -77.999 2.50098 -115.999s7.5 -71.833 17.5 -101.5s25.667 -53.5 47 -71.5s51.666 -27 90.999 -27h158v-158h-158c-59.333 0 -109.166 9.83301 -149.499 29.5s-72.833 49.334 -97.5 89.001s-42.334 89 -53.001 148s-16 128.167 -16 207.5
2423
-v474h-316c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58s0.333008 -39.333 1 -58s3.5 -35.5 8.5 -50.5s12.833 -27 23.5 -36s26 -13.5 46 -13.5c39.333 0 73.833 -9 103.5 -27s54.334 -41.833 74.001 -71.5
2424
-s34.5 -63.334 44.5 -101.001s15 -75.834 15 -114.501c0 -40 -9 -79 -27 -117s-41.833 -72 -71.5 -102s-63.5 -54 -101.5 -72s-76.667 -27 -116 -27h-158v158h158c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58
2425
-c0 19.333 -0.333008 38.333 -1 57s-3.5 35.5 -8.5 50.5s-12.833 27.167 -23.5 36.5s-26 14 -46 14c-39.333 0 -73.833 5.33301 -103.5 16s-54.334 28.334 -74.001 53.001s-34.5 57.167 -44.5 97.5s-15 90.166 -15 149.499c0 39.333 9 78 27 116s41.833 71.833 71.5 101.5
2426
-s63.5 53.5 101.5 71.5s76.667 27 116 27h316v316h158v-316h316v-158h-316v-474z" />
2427
- <glyph glyph-name=".null" horiz-adv-x="0"
2428
- />
2429
- <glyph glyph-name="nonmarkingreturn"
2430
- />
2431
- </font>
2432
-</defs></svg>
fonts/envy_code_r.ttf
... ...
Binary files a/fonts/envy_code_r.ttf and /dev/null differ
fonts/envy_code_r.woff
... ...
Binary files a/fonts/envy_code_r.woff and /dev/null differ
fonts/envy_code_r.woff2
... ...
Binary files a/fonts/envy_code_r.woff2 and /dev/null differ
fonts/goudy_bookletter_1911-webfont.woff
... ...
Binary files a/fonts/goudy_bookletter_1911-webfont.woff and /dev/null differ
fonts/saxmono-webfont.woff
... ...
Binary files a/fonts/saxmono-webfont.woff and /dev/null differ
hardware/arduino.md
... ...
@@ -0,0 +1,38 @@
1
+# arduino
2
+
3
+## ide installation
4
+```
5
+pacman -S arduino arduino-avr-core
6
+usermod -aG uucp,lock pyratebeard
7
+modprobe cdc_acm
8
+```
9
+
10
+## ide configuration
11
+### maltronics
12
+* in preferences add the following url to 'Additional Boards Manager URLs'
13
+** https://raw.githubusercontent.com/jLynx/MalDuino_Boards/master/IDE_Board_Manager/package_malduino_index.json
14
+* in tools > Board: > select Boards Manager and install
15
+** Arduino AVR Boards
16
+** Maltronics Bad Board
17
+* in tools > Manager Libraries install
18
+** Mouse by Arduino
19
+* select Maltronics Lite in boards list
20
+* use [script converter][]
21
+* for UK keyboard download zip
22
+* open lite.ono
23
+ ```
24
+ arduino lite/lite.ono
25
+ ```
26
+* select Sketch > Upload (Ctrl+U)
27
+
28
+[ducky script][]
29
+
30
+[maltronics: how to script][]
31
+
32
+[hak5 payloads][]
33
+
34
+
35
+[script converter]: https://malduino.com/converter/
36
+[ducky script]: https://github.com/hak5darren/USB-Rubber-Ducky/wiki/Duckyscript
37
+[maltronics: how to script]: https://malduino.com/wiki/doku.php?id=scripting_howto
38
+[hak5 payloads]: https://github.com/hak5darren/USB-Rubber-Ducky/wiki/Payloads
hardware/neos_smartcam.md
... ...
@@ -0,0 +1,30 @@
1
+# neos smartcam
2
+
3
+## reqs
4
+* [guide][]
5
+* [repo][]
6
+ * `hacks/cfw/wyzecam_v2/cfw-1.1.bin`
7
+* 16gb sd card
8
+
9
+## process
10
+1. delete any partitions on the sd card and create a single 512MB partition (labelled `0b`)
11
+2. install `dosfstools` (on arch)
12
+3. create fat32 filesystem
13
+```
14
+sudo mkfs.fat -F 32 /dev/sdb1
15
+```
16
+4. mount filesystem
17
+5. copy "cfw-1.1.bin" file to filesystem and rename to "demo.bin"
18
+```
19
+sudo cp cfw-1.1.bin /mnt/demo.bin
20
+```
21
+6. insert sd card into camera
22
+7. while holding down setup button plug in usb
23
+8. continue holding button for 10-20 seconds after the blue light
24
+9. let go and wait for amber light to stay steady (up to 3 minutes)
25
+10. put sdcard back into pc. remove `demo.bin` and copy over all of "firmware_mod"
26
+11. update config/wpa_supplicant.conf
27
+
28
+
29
+[guide]: https://ryanfitton.co.uk/blog/install-dafang-custom-firmware-to-neos-smartcam/
30
+[repo]: https://github.com/EliasKotlyar/Xiaomi-Dafang-Hacks.git
hardware/trezor.md
... ...
@@ -0,0 +1,13 @@
1
+# trezor
2
+
3
+## trezor bridge
4
+https://eli5.it/setting-up-your-trezor-hardware-wallet-on-arch-linux/
5
+
6
+reload udev rules
7
+```
8
+udevadm control --reload
9
+```
10
+To manually force udev to trigger your rules:
11
+```
12
+udevadm trigger
13
+```
linux/alsa.md
... ...
@@ -0,0 +1,12 @@
1
+# alsa
2
+
3
+## change card order
4
+- on a fresh archlinux install on a thinkpad the sound cards were in the 'wrong' order.
5
+- in alsamixer the first card was hdmi, the second was pch
6
+- to change the order add the following to '/etc/modprobe.d/50-alsa.conf' and reboot
7
+```
8
+options snd_hda_intel enable=1 index=0
9
+options snd_hda_intel index=1
10
+```
11
+
12
+- source: https://bbs.archlinux.org/viewtopic.php?pid=1453619#p1453619
linux/apt_dpkg.md
... ...
@@ -0,0 +1,9 @@
1
+# apt / dpkg
2
+
3
+- if error code (1) on `apt-get upgrade` [ref_1](#ref#1)
4
+ ```
5
+ sudo dpkg --configure -a
6
+ ```
7
+
8
+## ref
9
+- :1: https://itsfoss.com/dpkg-returned-an-error-code-1/
linux/at.md
... ...
@@ -0,0 +1,11 @@
1
+# at
2
+
3
+```
4
+at -t MMDDhhmm
5
+at> echo 'hello world'
6
+at> ^D
7
+```
8
+
9
+[ref][]
10
+
11
+[ref]: https://www.computerhope.com/unix/uat.htm
linux/bash.md
... ...
@@ -0,0 +1,41 @@
1
+# bash
2
+
3
+use parameter of previous command ([ref 1](#ref#1))
4
+```
5
+mkdir test
6
+cd $_
7
+```
8
+or
9
+```
10
+mkdir test
11
+cd !$
12
+```
13
+
14
+## `find` examples
15
+```
16
+find . -type f -iname "*regex*" -exec rm -f {} \;
17
+```
18
+
19
+## when was user created [ref_2](#ref#2)
20
+- if user has never logged in after account creation
21
+ ```
22
+ ls -l /home/<user>/.bash_logout
23
+ ```
24
+
25
+## run bg job and log out
26
+after 'ctrl-z'
27
+```
28
+disown -h %1
29
+bg 1
30
+logout
31
+```
32
+_where 1 is the job number_
33
+
34
+; Command 1 ; Command 2 Run command 1 first and then command 2
35
+&& Command 1 && Command 2 Run command 2 only if command 1 ends sucessfully
36
+|| Command 1 || Command 2 Run command 2 only if command 1 fails
37
+
38
+
39
+## ref
40
+- :1: https://unix.stackexchange.com/questions/125385/combined-mkdir-and-cd
41
+- :2: https://it.toolbox.com/question/how-to-find-out-when-a-user-is-created-in-linux-030612
linux/bin.md
... ...
@@ -0,0 +1,14 @@
1
+
2
+
3
+ /bin (and /sbin) were intended for programs that needed to be on a small / partition before the larger /usr, etc. partitions were mounted. These days, it mostly serves as a standard location for key programs like /bin/sh, although the original intent may still be relevant for e.g. installations on small embedded devices.
4
+
5
+ /sbin, as distinct from /bin, is for system management programs (not normally used by ordinary users) needed before /usr is mounted.
6
+
7
+ /usr/bin is for distribution-managed normal user programs.
8
+
9
+ There is a /usr/sbin with the same relationship to /usr/bin as /sbin has to /bin.
10
+
11
+ /usr/local/bin is for normal user programs not managed by the distribution package manager, e.g. locally compiled packages. You should not install them into /usr/bin because future distribution upgrades may modify or delete them without warning.
12
+
13
+ /usr/local/sbin, as you can probably guess at this point, is to /usr/local/bin as /usr/sbin to /usr/bin.
14
+
linux/btrfs.md
... ...
@@ -0,0 +1,7 @@
1
+# btrfs
2
+
3
+## resizing partition
4
+```
5
+sudo btrfs filesystem resize <size> <filepath>
6
+sudo btrfs filesystem resize max /var
7
+```
linux/csgo.md
... ...
@@ -0,0 +1,378 @@
1
+
2
+## log from steam
3
+
4
+GameAction [AppID 730, ActionID 3] : LaunchApp changed task to UpdatingAppInfo with ""
5
+Loaded Config for Local Selection Path for App ID 730, Controller 0: /home/pyratebeard/.local/share/Steam/steamapps/workshop/content/241100/1558469895/943962255079898054_legacy.bin
6
+Loaded Config for Local Override Path for App ID 730, Controller 0: /home/pyratebeard/.local/share/Steam//controller_base/empty.vdf
7
+GameAction [AppID 730, ActionID 3] : LaunchApp changed task to ProcessingInstallScript with ""
8
+GameAction [AppID 730, ActionID 3] : LaunchApp changed task to SynchronizingCloud with ""
9
+GameAction [AppID 730, ActionID 3] : LaunchApp changed task to SiteLicenseSeatCheckout with ""
10
+GameAction [AppID 730, ActionID 3] : LaunchApp changed task to CreatingProcess with ""
11
+GameAction [AppID 730, ActionID 3] : LaunchApp waiting for user response to CreatingProcess ""
12
+GameAction [AppID 730, ActionID 3] : LaunchApp continues with user response "CreatingProcess"
13
+Game update: AppID 730 "", ProcID 3304811, IP 0.0.0.0:0
14
+ERROR: ld.so: object '/home/pyratebeard/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
15
+ERROR: ld.so: object '/home/pyratebeard/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
16
+pid 3304813 != 3304812, skipping destruction (fork without exec?)
17
+ERROR: ld.so: object '/home/pyratebeard/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
18
+ERROR: ld.so: object '/home/pyratebeard/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
19
+Starting app 730
20
+Loaded Config for Local Selection Path for App ID 730, Controller 0: /home/pyratebeard/.local/share/Steam/steamapps/workshop/content/241100/1558469895/943962255079898054_legacy.bin
21
+Loaded Config for Local Override Path for App ID 730, Controller 0: /home/pyratebeard/.local/share/Steam//controller_base/empty.vdf
22
+>>> Adding process 3304811 for game ID 730
23
+GameAction [AppID 730, ActionID 3] : LaunchApp changed task to WaitingGameWindow with ""
24
+>>> Adding process 3304812 for game ID 730
25
+GameAction [AppID 730, ActionID 3] : LaunchApp changed task to Completed with ""
26
+>>> Adding process 3304814 for game ID 730
27
+SDL video target is 'x11'
28
+This system supports the OpenGL extension GL_EXT_framebuffer_object.
29
+This system supports the OpenGL extension GL_EXT_framebuffer_blit.
30
+This system supports the OpenGL extension GL_EXT_framebuffer_multisample.
31
+This system DOES NOT support the OpenGL extension GL_APPLE_fence.
32
+This system DOES NOT support the OpenGL extension GL_NV_fence.
33
+This system supports the OpenGL extension GL_ARB_sync.
34
+This system supports the OpenGL extension GL_EXT_draw_buffers2.
35
+This system DOES NOT support the OpenGL extension GL_EXT_bindable_uniform.
36
+This system DOES NOT support the OpenGL extension GL_APPLE_flush_buffer_range.
37
+This system supports the OpenGL extension GL_ARB_map_buffer_range.
38
+This system supports the OpenGL extension GL_ARB_vertex_buffer_object.
39
+This system supports the OpenGL extension GL_ARB_occlusion_query.
40
+This system DOES NOT support the OpenGL extension GL_APPLE_texture_range.
41
+This system DOES NOT support the OpenGL extension GL_APPLE_client_storage.
42
+This system DOES NOT support the OpenGL extension GL_ARB_uniform_buffer.
43
+This system supports the OpenGL extension GL_ARB_vertex_array_bgra.
44
+This system supports the OpenGL extension GL_EXT_vertex_array_bgra.
45
+This system supports the OpenGL extension GL_ARB_framebuffer_object.
46
+This system DOES NOT support the OpenGL extension GL_GREMEDY_string_marker.
47
+This system supports the OpenGL extension GL_ARB_debug_output.
48
+This system supports the OpenGL extension GL_EXT_direct_state_access.
49
+This system DOES NOT support the OpenGL extension GL_NV_bindless_texture.
50
+This system supports the OpenGL extension GL_AMD_pinned_memory.
51
+This system supports the OpenGL extension GL_EXT_framebuffer_multisample_blit_scaled.
52
+This system supports the OpenGL extension GL_EXT_texture_sRGB_decode.
53
+This system supports the OpenGL extension GL_NVX_gpu_memory_info.
54
+This system supports the OpenGL extension GL_ATI_meminfo.
55
+This system supports the OpenGL extension GL_EXT_texture_compression_s3tc.
56
+This system supports the OpenGL extension GL_EXT_texture_compression_dxt1.
57
+This system supports the OpenGL extension GL_ANGLE_texture_compression_dxt3.
58
+This system supports the OpenGL extension GL_ANGLE_texture_compression_dxt5.
59
+This system supports the OpenGL extension GL_ARB_buffer_storage.
60
+This system DOES NOT support the OpenGL extension GLX_EXT_swap_control_tear.
61
+ failed to dlopen /home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/engine_client.so error=/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/engine_client.so: wrong ELF class: ELFCLASS32
62
+ failed to dlopen /home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/filesystem_stdio_client.so error=/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/filesystem_stdio_client.so: wrong ELF class: ELFCLASS32
63
+ failed to dlopen /home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/inputsystem_client.so error=/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/inputsystem_client.so: wrong ELF class: ELFCLASS32
64
+ failed to dlopen /home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/vphysics_client.so error=/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/vphysics_client.so: wrong ELF class: ELFCLASS32
65
+ failed to dlopen /home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/materialsystem_client.so error=/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/materialsystem_client.so: wrong ELF class: ELFCLASS32
66
+ failed to dlopen /home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/datacache_client.so error=/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/datacache_client.so: wrong ELF class: ELFCLASS32
67
+ failed to dlopen /home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/studiorender_client.so error=/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/studiorender_client.so: wrong ELF class: ELFCLASS32
68
+ failed to dlopen /home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/soundemittersystem_client.so error=/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/soundemittersystem_client.so: wrong ELF class: ELFCLASS32
69
+ failed to dlopen /home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/vscript_client.so error=/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/vscript_client.so: wrong ELF class: ELFCLASS32
70
+ failed to dlopen /home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/vguimatsurface_client.so error=/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/vguimatsurface_client.so: wrong ELF class: ELFCLASS32
71
+ failed to dlopen /home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/vgui2_client.so error=/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/vgui2_client.so: wrong ELF class: ELFCLASS32
72
+ failed to dlopen /home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/shaderapidx9_client.so error=/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/shaderapidx9_client.so: wrong ELF class: ELFCLASS32
73
+ failed to dlopen /home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/localize_client.so error=/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/localize_client.so: wrong ELF class: ELFCLASS32
74
+Created D3D9 device successfully
75
+Using breakpad minidump system 730/13770.1188.JC
76
+Using breakpad crash handler
77
+[S_API] SteamAPI_Init(): Loaded '/home/pyratebeard/.local/share/Steam/linux64/steamclient.so' OK.
78
+Game update: AppID 730 "", ProcID 3304812, IP 0.0.0.0:0
79
+RecordSteamInterfaceCreation (PID 3304812): SteamUtils010 /
80
+Setting breakpad minidump AppID = 730
81
+Forcing breakpad minidump interfaces to load
82
+Looking up breakpad interfaces from steamclient
83
+Calling BreakpadMiniDumpSystemInit
84
+Looking up breakpad interfaces from steamclient
85
+Calling BreakpadMiniDumpSystemInit
86
+RecordSteamInterfaceCreation (PID 3304812): SteamUser021 / User
87
+SteamInternal_SetMinidumpSteamID: Caching Steam ID: 76561198021566913 [API loaded yes]
88
+SteamInternal_SetMinidumpSteamID: Setting Steam ID: 76561198021566913
89
+RecordSteamInterfaceCreation (PID 3304812): SteamUser021 /
90
+RecordSteamInterfaceCreation (PID 3304812): SteamFriends017 /
91
+RecordSteamInterfaceCreation (PID 3304812): SteamUtils010 /
92
+RecordSteamInterfaceCreation (PID 3304812): SteamMatchMaking009 /
93
+RecordSteamInterfaceCreation (PID 3304812): SteamMatchGameSearch001 /
94
+RecordSteamInterfaceCreation (PID 3304812): SteamMatchMakingServers002 /
95
+RecordSteamInterfaceCreation (PID 3304812): STEAMUSERSTATS_INTERFACE_VERSION012 /
96
+RecordSteamInterfaceCreation (PID 3304812): STEAMAPPS_INTERFACE_VERSION008 /
97
+RecordSteamInterfaceCreation (PID 3304812): SteamNetworking006 /
98
+RecordSteamInterfaceCreation (PID 3304812): STEAMREMOTESTORAGE_INTERFACE_VERSION014 /
99
+RecordSteamInterfaceCreation (PID 3304812): STEAMSCREENSHOTS_INTERFACE_VERSION003 /
100
+RecordSteamInterfaceCreation (PID 3304812): STEAMHTTP_INTERFACE_VERSION003 /
101
+RecordSteamInterfaceCreation (PID 3304812): SteamController007 /
102
+RecordSteamInterfaceCreation (PID 3304812): STEAMUGC_INTERFACE_VERSION014 /
103
+RecordSteamInterfaceCreation (PID 3304812): STEAMAPPLIST_INTERFACE_VERSION001 /
104
+RecordSteamInterfaceCreation (PID 3304812): STEAMMUSIC_INTERFACE_VERSION001 /
105
+RecordSteamInterfaceCreation (PID 3304812): STEAMMUSICREMOTE_INTERFACE_VERSION001 /
106
+RecordSteamInterfaceCreation (PID 3304812): STEAMHTMLSURFACE_INTERFACE_VERSION_005 /
107
+RecordSteamInterfaceCreation (PID 3304812): STEAMINVENTORY_INTERFACE_V003 /
108
+RecordSteamInterfaceCreation (PID 3304812): STEAMVIDEO_INTERFACE_V002 /
109
+RecordSteamInterfaceCreation (PID 3304812): STEAMPARENTALSETTINGS_INTERFACE_VERSION001 /
110
+RecordSteamInterfaceCreation (PID 3304812): SteamInput001 /
111
+Initialized low level socket/threading support.
112
+RecordSteamInterfaceCreation (PID 3304812): SteamUtils009 / Utils
113
+RecordSteamInterfaceCreation (PID 3304812): SteamNetworkingSocketsSerialized004 /
114
+RecordSteamInterfaceCreation (PID 3304812): SteamUser020 / User
115
+RecordSteamInterfaceCreation (PID 3304812): STEAMHTTP_INTERFACE_VERSION003 / HTTP
116
+/home/buildbot/buildslave/sdr_public_ubuntu64_linux/build/src/steamnetworkingsockets/clientlib/csteamnetworkingsockets_steam.cpp(138): Assertion Failed: Initted interface twice?
117
+Set SteamNetworkingSockets P2P_STUN_ServerList to '162.254.196.67:3478' as per SteamNetworkingSocketsSerialized
118
+Got ISteamNetworkingSockets user interfaces from standalone lib
119
+Pending ping measurement until network config is obtained.
120
+RelayNetWorkStatus: avail=Attempting config=Attempting anyrelay=Waiting (Attempt #1 to fetch config from https://api.steampowered.com/ISteamApps/GetSDRConfig/v1?appid=730&partner=valve)
121
+AuthStatus (steamid:76561198021566913): Attempting (Requesting cert)
122
+USRLOCAL path using Steam profile data folder:
123
+/home/pyratebeard/.local/share/Steam/userdata/61301185/730/local
124
+Initializing joystick #0 and making it active.
125
+ConVarRef joystick doesn't point to an existing ConVar
126
+RecordSteamInterfaceCreation (PID 3304812): SteamUser021 /
127
+RecordSteamInterfaceCreation (PID 3304812): SteamFriends017 /
128
+RecordSteamInterfaceCreation (PID 3304812): SteamUtils010 /
129
+RecordSteamInterfaceCreation (PID 3304812): SteamMatchMaking009 /
130
+RecordSteamInterfaceCreation (PID 3304812): SteamMatchGameSearch001 /
131
+RecordSteamInterfaceCreation (PID 3304812): SteamMatchMakingServers002 /
132
+RecordSteamInterfaceCreation (PID 3304812): STEAMUSERSTATS_INTERFACE_VERSION012 /
133
+RecordSteamInterfaceCreation (PID 3304812): STEAMAPPS_INTERFACE_VERSION008 /
134
+RecordSteamInterfaceCreation (PID 3304812): SteamNetworking006 /
135
+RecordSteamInterfaceCreation (PID 3304812): STEAMREMOTESTORAGE_INTERFACE_VERSION014 /
136
+RecordSteamInterfaceCreation (PID 3304812): STEAMSCREENSHOTS_INTERFACE_VERSION003 /
137
+RecordSteamInterfaceCreation (PID 3304812): STEAMHTTP_INTERFACE_VERSION003 /
138
+RecordSteamInterfaceCreation (PID 3304812): SteamController007 /
139
+RecordSteamInterfaceCreation (PID 3304812): STEAMUGC_INTERFACE_VERSION014 /
140
+RecordSteamInterfaceCreation (PID 3304812): STEAMAPPLIST_INTERFACE_VERSION001 /
141
+RecordSteamInterfaceCreation (PID 3304812): STEAMMUSIC_INTERFACE_VERSION001 /
142
+RecordSteamInterfaceCreation (PID 3304812): STEAMMUSICREMOTE_INTERFACE_VERSION001 /
143
+RecordSteamInterfaceCreation (PID 3304812): STEAMHTMLSURFACE_INTERFACE_VERSION_005 /
144
+RecordSteamInterfaceCreation (PID 3304812): STEAMINVENTORY_INTERFACE_V003 /
145
+RecordSteamInterfaceCreation (PID 3304812): STEAMVIDEO_INTERFACE_V002 /
146
+RecordSteamInterfaceCreation (PID 3304812): STEAMPARENTALSETTINGS_INTERFACE_VERSION001 /
147
+RecordSteamInterfaceCreation (PID 3304812): SteamInput001 /
148
+RESZ NOT SUPPORTED!
149
+INTZ NOT SUPPORTED!
150
+RESZ NOT SUPPORTED!
151
+INTZ NOT SUPPORTED!
152
+
153
+ ##### swap interval = 0 swap limit = 1 #####
154
+Filesystem successfully switched to safe whitelist mode
155
+ failed to dlopen /home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/csgo/bin/matchmaking_client.so error=/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/csgo/bin/matchmaking_client.so: wrong ELF class: ELFCLASS32
156
+ failed to dlopen /home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/csgo/bin/client_client.so error=/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/csgo/bin/client_client.so: wrong ELF class: ELFCLASS32
157
+RecordSteamInterfaceCreation (PID 3304812): SteamUser021 /
158
+RecordSteamInterfaceCreation (PID 3304812): SteamFriends017 /
159
+RecordSteamInterfaceCreation (PID 3304812): SteamUtils010 /
160
+RecordSteamInterfaceCreation (PID 3304812): SteamMatchMaking009 /
161
+RecordSteamInterfaceCreation (PID 3304812): SteamMatchGameSearch001 /
162
+RecordSteamInterfaceCreation (PID 3304812): SteamMatchMakingServers002 /
163
+RecordSteamInterfaceCreation (PID 3304812): STEAMUSERSTATS_INTERFACE_VERSION012 /
164
+RecordSteamInterfaceCreation (PID 3304812): STEAMAPPS_INTERFACE_VERSION008 /
165
+RecordSteamInterfaceCreation (PID 3304812): SteamNetworking006 /
166
+RecordSteamInterfaceCreation (PID 3304812): STEAMREMOTESTORAGE_INTERFACE_VERSION014 /
167
+RecordSteamInterfaceCreation (PID 3304812): STEAMSCREENSHOTS_INTERFACE_VERSION003 /
168
+RecordSteamInterfaceCreation (PID 3304812): STEAMHTTP_INTERFACE_VERSION003 /
169
+RecordSteamInterfaceCreation (PID 3304812): SteamController007 /
170
+RecordSteamInterfaceCreation (PID 3304812): STEAMUGC_INTERFACE_VERSION014 /
171
+RecordSteamInterfaceCreation (PID 3304812): STEAMAPPLIST_INTERFACE_VERSION001 /
172
+RecordSteamInterfaceCreation (PID 3304812): STEAMMUSIC_INTERFACE_VERSION001 /
173
+RecordSteamInterfaceCreation (PID 3304812): STEAMMUSICREMOTE_INTERFACE_VERSION001 /
174
+RecordSteamInterfaceCreation (PID 3304812): STEAMHTMLSURFACE_INTERFACE_VERSION_005 /
175
+RecordSteamInterfaceCreation (PID 3304812): STEAMINVENTORY_INTERFACE_V003 /
176
+RecordSteamInterfaceCreation (PID 3304812): STEAMVIDEO_INTERFACE_V002 /
177
+RecordSteamInterfaceCreation (PID 3304812): STEAMPARENTALSETTINGS_INTERFACE_VERSION001 /
178
+RecordSteamInterfaceCreation (PID 3304812): SteamInput001 /
179
+CClientSteamContext logged on = 1
180
+ failed to dlopen /home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/csgo/bin/server_client.so error=/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/csgo/bin/server_client.so: wrong ELF class: ELFCLASS32
181
+Game.dll loaded for "Counter-Strike: Global Offensive"
182
+ failed to dlopen /home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/soundemittersystem_client.so error=/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/soundemittersystem_client.so: wrong ELF class: ELFCLASS32
183
+ failed to dlopen /home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/scenefilecache_client.so error=/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/bin/scenefilecache_client.so: wrong ELF class: ELFCLASS32
184
+RecordSteamInterfaceCreation (PID 3304812): SteamUser021 /
185
+RecordSteamInterfaceCreation (PID 3304812): SteamFriends017 /
186
+RecordSteamInterfaceCreation (PID 3304812): SteamUtils010 /
187
+RecordSteamInterfaceCreation (PID 3304812): SteamMatchMaking009 /
188
+RecordSteamInterfaceCreation (PID 3304812): SteamMatchGameSearch001 /
189
+RecordSteamInterfaceCreation (PID 3304812): SteamMatchMakingServers002 /
190
+RecordSteamInterfaceCreation (PID 3304812): STEAMUSERSTATS_INTERFACE_VERSION012 /
191
+RecordSteamInterfaceCreation (PID 3304812): STEAMAPPS_INTERFACE_VERSION008 /
192
+RecordSteamInterfaceCreation (PID 3304812): SteamNetworking006 /
193
+RecordSteamInterfaceCreation (PID 3304812): STEAMREMOTESTORAGE_INTERFACE_VERSION014 /
194
+RecordSteamInterfaceCreation (PID 3304812): STEAMSCREENSHOTS_INTERFACE_VERSION003 /
195
+RecordSteamInterfaceCreation (PID 3304812): STEAMHTTP_INTERFACE_VERSION003 /
196
+RecordSteamInterfaceCreation (PID 3304812): SteamController007 /
197
+RecordSteamInterfaceCreation (PID 3304812): STEAMUGC_INTERFACE_VERSION014 /
198
+RecordSteamInterfaceCreation (PID 3304812): STEAMAPPLIST_INTERFACE_VERSION001 /
199
+RecordSteamInterfaceCreation (PID 3304812): STEAMMUSIC_INTERFACE_VERSION001 /
200
+RecordSteamInterfaceCreation (PID 3304812): STEAMMUSICREMOTE_INTERFACE_VERSION001 /
201
+RecordSteamInterfaceCreation (PID 3304812): STEAMHTMLSURFACE_INTERFACE_VERSION_005 /
202
+RecordSteamInterfaceCreation (PID 3304812): STEAMINVENTORY_INTERFACE_V003 /
203
+RecordSteamInterfaceCreation (PID 3304812): STEAMVIDEO_INTERFACE_V002 /
204
+RecordSteamInterfaceCreation (PID 3304812): STEAMPARENTALSETTINGS_INTERFACE_VERSION001 /
205
+RecordSteamInterfaceCreation (PID 3304812): SteamInput001 /
206
+CGameEventManager::AddListener: event 'server_pre_shutdown' unknown.
207
+CGameEventManager::AddListener: event 'game_newmap' unknown.
208
+CGameEventManager::AddListener: event 'finale_start' unknown.
209
+CGameEventManager::AddListener: event 'round_start' unknown.
210
+CGameEventManager::AddListener: event 'round_end' unknown.
211
+CGameEventManager::AddListener: event 'difficulty_changed' unknown.
212
+CGameEventManager::AddListener: event 'player_death' unknown.
213
+CGameEventManager::AddListener: event 'hltv_replay' unknown.
214
+CGameEventManager::AddListener: event 'player_connect' unknown.
215
+CGameEventManager::AddListener: event 'player_disconnect' unknown.
216
+GameTypes: missing mapgroupsSP entry for game type/mode (custom/custom).
217
+GameTypes: missing mapgroupsSP entry for game type/mode (cooperative/cooperative).
218
+GameTypes: missing mapgroupsSP entry for game type/mode (cooperative/coopmission).
219
+RecordSteamInterfaceCreation (PID 3304812): SteamUser021 /
220
+RecordSteamInterfaceCreation (PID 3304812): SteamFriends017 /
221
+RecordSteamInterfaceCreation (PID 3304812): SteamUtils010 /
222
+RecordSteamInterfaceCreation (PID 3304812): SteamMatchMaking009 /
223
+RecordSteamInterfaceCreation (PID 3304812): SteamMatchGameSearch001 /
224
+RecordSteamInterfaceCreation (PID 3304812): SteamMatchMakingServers002 /
225
+RecordSteamInterfaceCreation (PID 3304812): STEAMUSERSTATS_INTERFACE_VERSION012 /
226
+RecordSteamInterfaceCreation (PID 3304812): STEAMAPPS_INTERFACE_VERSION008 /
227
+RecordSteamInterfaceCreation (PID 3304812): SteamNetworking006 /
228
+RecordSteamInterfaceCreation (PID 3304812): STEAMREMOTESTORAGE_INTERFACE_VERSION014 /
229
+RecordSteamInterfaceCreation (PID 3304812): STEAMSCREENSHOTS_INTERFACE_VERSION003 /
230
+RecordSteamInterfaceCreation (PID 3304812): STEAMHTTP_INTERFACE_VERSION003 /
231
+RecordSteamInterfaceCreation (PID 3304812): SteamController007 /
232
+RecordSteamInterfaceCreation (PID 3304812): STEAMUGC_INTERFACE_VERSION014 /
233
+RecordSteamInterfaceCreation (PID 3304812): STEAMAPPLIST_INTERFACE_VERSION001 /
234
+RecordSteamInterfaceCreation (PID 3304812): STEAMMUSIC_INTERFACE_VERSION001 /
235
+RecordSteamInterfaceCreation (PID 3304812): STEAMMUSICREMOTE_INTERFACE_VERSION001 /
236
+RecordSteamInterfaceCreation (PID 3304812): STEAMHTMLSURFACE_INTERFACE_VERSION_005 /
237
+RecordSteamInterfaceCreation (PID 3304812): STEAMINVENTORY_INTERFACE_V003 /
238
+RecordSteamInterfaceCreation (PID 3304812): STEAMVIDEO_INTERFACE_V002 /
239
+RecordSteamInterfaceCreation (PID 3304812): STEAMPARENTALSETTINGS_INTERFACE_VERSION001 /
240
+RecordSteamInterfaceCreation (PID 3304812): SteamInput001 /
241
+RecordSteamInterfaceCreation (PID 3304812): SteamUser021 /
242
+RecordSteamInterfaceCreation (PID 3304812): SteamFriends017 /
243
+RecordSteamInterfaceCreation (PID 3304812): SteamUtils010 /
244
+RecordSteamInterfaceCreation (PID 3304812): SteamMatchMaking009 /
245
+RecordSteamInterfaceCreation (PID 3304812): SteamMatchGameSearch001 /
246
+RecordSteamInterfaceCreation (PID 3304812): SteamMatchMakingServers002 /
247
+RecordSteamInterfaceCreation (PID 3304812): STEAMUSERSTATS_INTERFACE_VERSION012 /
248
+RecordSteamInterfaceCreation (PID 3304812): STEAMAPPS_INTERFACE_VERSION008 /
249
+RecordSteamInterfaceCreation (PID 3304812): SteamNetworking006 /
250
+RecordSteamInterfaceCreation (PID 3304812): STEAMREMOTESTORAGE_INTERFACE_VERSION014 /
251
+RecordSteamInterfaceCreation (PID 3304812): STEAMSCREENSHOTS_INTERFACE_VERSION003 /
252
+RecordSteamInterfaceCreation (PID 3304812): STEAMHTTP_INTERFACE_VERSION003 /
253
+RecordSteamInterfaceCreation (PID 3304812): SteamController007 /
254
+RecordSteamInterfaceCreation (PID 3304812): STEAMUGC_INTERFACE_VERSION014 /
255
+RecordSteamInterfaceCreation (PID 3304812): STEAMAPPLIST_INTERFACE_VERSION001 /
256
+RecordSteamInterfaceCreation (PID 3304812): STEAMMUSIC_INTERFACE_VERSION001 /
257
+RecordSteamInterfaceCreation (PID 3304812): STEAMMUSICREMOTE_INTERFACE_VERSION001 /
258
+RecordSteamInterfaceCreation (PID 3304812): STEAMHTMLSURFACE_INTERFACE_VERSION_005 /
259
+RecordSteamInterfaceCreation (PID 3304812): STEAMINVENTORY_INTERFACE_V003 /
260
+RecordSteamInterfaceCreation (PID 3304812): STEAMVIDEO_INTERFACE_V002 /
261
+RecordSteamInterfaceCreation (PID 3304812): STEAMPARENTALSETTINGS_INTERFACE_VERSION001 /
262
+RecordSteamInterfaceCreation (PID 3304812): SteamInput001 /
263
+Fontconfig warning: "/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/csgo/panorama/fonts/conf.d/41-repl-os-win.conf", line 148: Having multiple values in <test> isn't supported and may not work as expected
264
+Fontconfig warning: "/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/csgo/panorama/fonts/conf.d/41-repl-os-win.conf", line 160: Having multiple values in <test> isn't supported and may not work as expected
265
+Fontconfig warning: "/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/csgo/panorama/fonts/fonts.conf", line 31: Use of ambiguous path in <dir> element. please add prefix="cwd" if current behavior is desired.
266
+Fontconfig warning: "/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/csgo/panorama/fonts/fonts.conf", line 38: unknown element "fontpattern"
267
+Fontconfig warning: "/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/csgo/panorama/fonts/fonts.conf", line 39: unknown element "fontpattern"
268
+Fontconfig warning: "/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/csgo/panorama/fonts/fonts.conf", line 40: unknown element "fontpattern"
269
+Fontconfig warning: "/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/csgo/panorama/fonts/fonts.conf", line 41: unknown element "fontpattern"
270
+Fontconfig warning: "/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/csgo/panorama/fonts/fonts.conf", line 42: unknown element "fontpattern"
271
+Fontconfig warning: "/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/csgo/panorama/fonts/conf.d/41-repl-os-win.conf", line 148: Having multiple values in <test> isn't supported and may not work as expected
272
+Fontconfig warning: "/home/pyratebeard/lib/games/steam/steamapps/common/Counter-Strike Global Offensive/csgo/panorama/fonts/conf.d/41-repl-os-win.conf", line 160: Having multiple values in <test> isn't supported and may not work as expected
273
+RecordSteamInterfaceCreation (PID 3304812): SteamGameStats001 /
274
+RecordSteamInterfaceCreation (PID 3304812): STEAMREMOTESTORAGE_INTERFACE_VERSION014 /
275
+RecordSteamInterfaceCreation (PID 3304812): SteamAppDisableUpdate001 /
276
+RecordSteamInterfaceCreation (PID 3304812): SteamGameCoordinator001 /
277
+RecordSteamInterfaceCreation (PID 3304812): SteamUser021 / User
278
+RecordSteamInterfaceCreation (PID 3304812): SteamUtils010 / Utils
279
+ERROR: ld.so: object '/home/pyratebeard/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
280
+sh: ifconfig: command not found
281
+RecordSteamInterfaceCreation (PID 3304812): SteamUtils010 /
282
+RecordSteamInterfaceCreation (PID 3304812): SteamController007 /
283
+RecordSteamInterfaceCreation (PID 3304812): SteamInput001 /
284
+RecordSteamInterfaceCreation (PID 3304812): STEAMREMOTESTORAGE_INTERFACE_VERSION014 /
285
+>>> Adding process 3304916 for game ID 730
286
+ERROR: ld.so: object '/home/pyratebeard/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS64): ignored.
287
+assert_20201024204949_1.dmp[3304922]: Uploading dump (out-of-process)
288
+/tmp/dumps/assert_20201024204949_1.dmp
289
+>>> Adding process 3304921 for game ID 730
290
+assert_20201024204949_1.dmp[3304922]: Finished uploading minidump (out-of-process): success = yes
291
+assert_20201024204949_1.dmp[3304922]: response: Discarded=1
292
+assert_20201024204949_1.dmp[3304922]: file ''/tmp/dumps/assert_20201024204949_1.dmp'', upload yes: ''Discarded=1''
293
+pid 3304922 != 3304921, skipping destruction (fork without exec?)
294
+Game removed: AppID 730 "", ProcID 3304812
295
+Game 730 created interface STEAMAPPLIST_INTERFACE_VERSION001 /
296
+Game 730 created interface STEAMAPPS_INTERFACE_VERSION008 /
297
+Game 730 created interface STEAMHTMLSURFACE_INTERFACE_VERSION_005 /
298
+Game 730 created interface STEAMHTTP_INTERFACE_VERSION003 /
299
+Game 730 created interface STEAMHTTP_INTERFACE_VERSION003 / HTTP
300
+Game 730 created interface STEAMINVENTORY_INTERFACE_V003 /
301
+Game 730 created interface STEAMMUSICREMOTE_INTERFACE_VERSION001 /
302
+Game 730 created interface STEAMMUSIC_INTERFACE_VERSION001 /
303
+Game 730 created interface STEAMPARENTALSETTINGS_INTERFACE_VERSION001 /
304
+Game 730 created interface STEAMREMOTESTORAGE_INTERFACE_VERSION014 /
305
+Game 730 created interface STEAMSCREENSHOTS_INTERFACE_VERSION003 /
306
+Game 730 created interface STEAMUGC_INTERFACE_VERSION014 /
307
+Game 730 created interface STEAMUSERSTATS_INTERFACE_VERSION012 /
308
+Game 730 created interface STEAMVIDEO_INTERFACE_V002 /
309
+Game 730 created interface SteamAppDisableUpdate001 /
310
+Game 730 created interface SteamController007 /
311
+Game 730 created interface SteamFriends017 /
312
+Game 730 created interface SteamGameCoordinator001 /
313
+Game 730 created interface SteamGameStats001 /
314
+Game 730 created interface SteamInput001 /
315
+Game 730 created interface SteamMatchGameSearch001 /
316
+Game 730 created interface SteamMatchMaking009 /
317
+Game 730 created interface SteamMatchMakingServers002 /
318
+Game 730 created interface SteamNetworking006 /
319
+Game 730 created interface SteamNetworkingSocketsSerialized004 /
320
+Game 730 created interface SteamUser020 / User
321
+Game 730 created interface SteamUser021 /
322
+Game 730 created interface SteamUser021 / User
323
+Game 730 created interface SteamUtils009 / Utils
324
+Game 730 created interface SteamUtils010 /
325
+Game 730 created interface SteamUtils010 / Utils
326
+Game 730 method call count for IClientUser::BLoggedOn : 8
327
+Game 730 method call count for IClientUser::BIsSubscribedApp : 2
328
+Game 730 method call count for IClientUser::GetUserDataFolder : 1
329
+Game 730 method call count for IClientUser::GetSteamID : 21
330
+Game 730 method call count for IClientUser::BSetDurationControlOnlineState : 1
331
+Game 730 method call count for IClientFriends::GetSmallFriendAvatar : 2
332
+Game 730 method call count for IClientFriends::GetFriendCount : 1
333
+Game 730 method call count for IClientFriends::RequestUserInformation : 1
334
+Game 730 method call count for IClientFriends::GetFriendPersonaState : 13
335
+Game 730 method call count for IClientFriends::GetFriendRelationship : 15
336
+Game 730 method call count for IClientFriends::GetFriendGamePlayed : 13
337
+Game 730 method call count for IClientFriends::GetFriendByIndex : 13
338
+Game 730 method call count for IClientFriends::GetPersonaName : 1
339
+Game 730 method call count for IClientFriends::GetFriendPersonaName_Public : 4
340
+Game 730 method call count for IClientUtils::GetImageRGBA : 2
341
+Game 730 method call count for IClientUtils::IsSteamChina : 2
342
+Game 730 method call count for IClientUtils::InitFilterText : 1
343
+Game 730 method call count for IClientUtils::GetServerRealTime : 2
344
+Game 730 method call count for IClientUtils::GetImageSize : 2
345
+Game 730 method call count for IClientUtils::GetAppID : 156
346
+Game 730 method call count for IClientUtils::GetAPICallResult : 2
347
+Game 730 method call count for IClientUtils::GetConnectedUniverse : 3
348
+Game 730 method call count for IClientUtils::GetLauncherType : 1
349
+Game 730 method call count for IClientUtils::RecordSteamInterfaceCreation : 148
350
+Game 730 method call count for IClientUtils::FilterText : 2
351
+Game 730 method call count for IClientUtils::GetIPCountry : 1
352
+Game 730 method call count for IClientAppManager::GetActiveBeta : 1
353
+Game 730 method call count for IClientAppManager::GetAppStateInfo : 2
354
+Game 730 method call count for IClientAppManager::GetCurrentLanguage : 2
355
+Game 730 method call count for IClientUserStats::RequestCurrentStats : 1
356
+Game 730 method call count for IClientUserStats::GetStat : 289
357
+Game 730 method call count for IClientUserStats::GetAchievement : 167
358
+Game 730 method call count for IClientNetworking::AllowP2PPacketRelay : 2
359
+Game 730 method call count for IClientRemoteStorage::EnumerateUserSubscribedFiles : 1
360
+Game 730 method call count for IClientRemoteStorage::FileRead : 3
361
+Game 730 method call count for IClientRemoteStorage::GetFileSize : 3
362
+Game 730 method call count for IClientRemoteStorage::FileExists : 1
363
+Game 730 method call count for IClientGameCoordinator::SendMessage : 1
364
+Game 730 method call count for IClientGameStats::GetNewSession : 1
365
+Game 730 method call count for IClientHTTP::GetHTTPResponseBodyData : 1
366
+Game 730 method call count for IClientHTTP::ReleaseHTTPRequest : 1
367
+Game 730 method call count for IClientHTTP::SendHTTPRequest : 2
368
+Game 730 method call count for IClientHTTP::SetHTTPRequestHeaderValue : 1
369
+Game 730 method call count for IClientHTTP::CreateHTTPRequest : 2
370
+Game 730 method call count for IClientControllerSerialized::ActivateActionSet : 1
371
+Game 730 method call count for IClientControllerSerialized::HasGameMapping : 1
372
+Game 730 method call count for IClientControllerSerialized::GetActionSetHandle : 1
373
+Game 730 method call count for IClientNetworkingSocketsSerialized::GetSTUNServer : 2
374
+Game 730 method call count for IClientNetworkingSocketsSerialized::GetCertAsync : 1
375
+Game 730 method call count for IClientNetworkingSocketsSerialized::GetCachedRelayTicketCount : 1
376
+Uploaded AppInterfaceStats to Steam
377
+Exiting app 730
378
+No cached sticky mapping in ActivateActionSet.No cached sticky mapping in ActivateActionSet.
linux/dhcpcd.md
... ...
@@ -0,0 +1,8 @@
1
+# dhcpcd
2
+
3
+stop dhcpcd overwriting /etc/resolv.conf by adding the following to /etc/dhcpcd.conf
4
+```
5
+nohook resolv.conf
6
+```
7
+
8
+https://wiki.archlinux.org/index.php/Dhcpcd#/etc/resolv.conf
linux/dig.md
... ...
@@ -0,0 +1,27 @@
1
+# dig
2
+
3
+display all information
4
+```
5
+dig <hostname>
6
+```
7
+
8
+add `+no<section>` to hide info
9
+* comments
10
+* authority
11
+* additional
12
+* answer
13
+* stats
14
+
15
+```
16
+dig +nocomments +noadditional <hostname>
17
+```
18
+
19
+use `+noall` to hide everything, but show answer
20
+```
21
+dig +noall +answer <hostname>
22
+```
23
+
24
+use a list
25
+```
26
+dig -f <file> +noall +answer
27
+```
linux/dmidecode.md
... ...
@@ -0,0 +1,9 @@
1
+# dmidecode
2
+
3
+## how many pci slots (ref_1)[#ref#1]
4
+```
5
+dmidecode -t 9 | grep "System Slot Information" | wc -l
6
+```
7
+
8
+## ref
9
+- :1: https://unix.stackexchange.com/questions/191314/can-i-see-the-number-of-pci-slots-with-a-command
linux/fallout4.md
... ...
@@ -0,0 +1,2 @@
1
+# fallout4
2
+https://steamcommunity.com/app/377160/discussions/0/3220528325725350733/
linux/ffmpeg.md
... ...
@@ -0,0 +1,43 @@
1
+# ffmpeg
2
+
3
+### extract audio from video
4
+```
5
+ffmpeg -i input-video.mkv -q:a 0 -map a output-audio.mp3
6
+```
7
+
8
+### remove audio from a video
9
+```
10
+ffmpeg -i video.mkv -c copy -an video-nosound.mkv
11
+```
12
+
13
+### record a video
14
+without audio
15
+```
16
+ffmpeg -f x11grab -r 15 -i :0.0 -acodec libmp3lame -vcodec mpeg4 -ar 48000 -qscale 0 -framerate 24 outputvideo.avi
17
+```
18
+
19
+with audio
20
+```
21
+ffmpeg -f alsa -ac 2 -i alsa -f x11grab -r 15 -i :0.0 -acodec libmp3lame -vcodec mpeg4 -ar 48000 -qscale 0 -framerate 24 outputvideo.avi
22
+```
23
+
24
+### convert video format
25
+```
26
+ffmpeg -i videofile.mp4 videofile.webm
27
+```
28
+
29
+### adjust crf
30
+adjust constant rate factor to lower bit rate
31
+```
32
+ffmpeg -i input.mp4 -vcodec libx264 -crf 20 output.mp4
33
+```
34
+
35
+### remove id3 tag image and metadata from audio file
36
+```
37
+ffmpeg -i input.mp3 -vn -codec:a copy -map_metadata -1 output.mp3
38
+```
39
+
40
+### trim start and end of video file
41
+```
42
+ffmpeg -i input.mp4 -ss 00:00:10 -to 01:23:14 -async 1 -c copy output.mp4
43
+```
linux/flatpak.md
... ...
@@ -0,0 +1,12 @@
1
+# flatpak
2
+
3
+mount dir
4
+```
5
+flatpak run --filesystem=<location> <flatpak_id>
6
+```
7
+`location` can be:
8
+ - host
9
+ - home
10
+ - xdg-*[/…]
11
+ - ~/dir
12
+ - /dir
linux/fonts.md
... ...
@@ -0,0 +1,25 @@
1
+# fonts
2
+
3
+if font isn't working run `fc-cache -fv`
4
+
5
+```
6
+ 1014 xset +fp /usr/share/fonts/local
7
+ 1015 sudo xset +fp /usr/share/fonts/local
8
+ 1016 ll /usr/lib/X11/fonts/misc/
9
+ 1017 systemctl --all | grep xfs
10
+ 1018 fc-cache -fv
11
+ 1019 xset +fp /usr/share/fonts/local
12
+ 1020 ll /usr/share/fonts
13
+ 1021 ll /usr/share/fonts/local
14
+ 1022 xset +fp /usr/share/fonts/
15
+ 1023 xset +fp /usr/share/fonts/local
16
+ 1024 sudo -i
17
+ cd /usr/share/fonts/local
18
+ mkfontscale
19
+ mkfontdir
20
+ 1025 xset +fp /usr/share/fonts/local
21
+ 1026 xset -q
22
+ 1027 fc-cache -fv
23
+ 1028 xlsfonts | grep -i tamzen
24
+
25
+```
linux/i3lock.md
... ...
@@ -0,0 +1,9 @@
1
+# i3lock
2
+
3
+lockscreen commands (https://www.reddit.com/r/unixporn/comments/8z15f9/i3lock_with_pixeleffect/)
4
+
5
+```zsh
6
+ICON="/home/pyratebeard/tmp/stop2.png" ; TMPBG="/tmp/lockscreen.jpg" ; RES=$(xrandr | grep 'current' | sed -E 's/.*current\s([0-9]+)\sx\s([0-9]+).*/\1x\2/') ; ffmpeg -f x11grab-video_size $RES -y -i $DISPLAY -vf frei0r=pixeliz0r=0.02:0.02 -vframes 1 $TMPBG -loglevel quiet
7
+ICON="/home/pyratebeard/tmp/stop2.png" ; TMPBG="/tmp/lockscreen.jpg" ; RES=$(xrandr | grep 'current' | sed -E 's/.*current\s([0-9]+)\sx\s([0-9]+).*/\1x\2/') ; ffmpeg -f x11grab -video_size $RES -y -i $DISPLAY -i $ICON -filter_complex "boxblur=5:1,overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2" -vframes 1 $TMPBG -loglevel quiet
8
+/home/pyratebeard/src/warez/i3lock-fancy-multimonitor/lock -p
9
+```
linux/index.md
... ...
@@ -0,0 +1,63 @@
1
+# linux
2
+
3
+* [alsa](/linux/alsa)
4
+* [apt_dpkg](/linux/apt_dpkg)
5
+* [at](/linux/at)
6
+* [bash](/linux/bash)
7
+* [bin](/linux/bin)
8
+* [btrfs](/linux/btrfs)
9
+* [csgo](/linux/csgo)
10
+* [dhcpcd](/linux/dhcpcd)
11
+* [dig](/linux/dig)
12
+* [dmidecode](/linux/dmidecode)
13
+* [fallout4](/linux/fallout4)
14
+* [ffmpeg](/linux/ffmpeg)
15
+* [flatpak](/linux/flatpak)
16
+* [fonts](/linux/fonts)
17
+* [i3lock](/linux/i3lock)
18
+* [index](/linux/index)
19
+* [journalctl](/linux/journalctl)
20
+* [keymaps](/linux/keymaps)
21
+* [logrotate](/linux/logrotate)
22
+* [lvm](/linux/lvm)
23
+* [man_pages](/linux/man_pages)
24
+* [mbox](/linux/mbox)
25
+* [mdadm](/linux/mdadm)
26
+* [mount](/linux/mount)
27
+* [mpd](/linux/mpd)
28
+* [mpv](/linux/mpv)
29
+* [nmcli](/linux/nmcli)
30
+* [pacman](/linux/pacman)
31
+* [pacmd](/linux/pacmd)
32
+* [pactl](/linux/pactl)
33
+* [processes](/linux/processes)
34
+* [python](/linux/python)
35
+* [rdp](/linux/rdp)
36
+* [ricing](/linux/ricing)
37
+* [rpm](/linux/rpm)
38
+* [rsync](/linux/rsync)
39
+* [rtv](/linux/rtv)
40
+* [samba](/linux/samba)
41
+* [sar](/linux/sar)
42
+* [sed](/linux/sed)
43
+* [spotifyd](/linux/spotifyd)
44
+* [ssh](/linux/ssh)
45
+* [systemctl](/linux/systemctl)
46
+* [truncate](/linux/truncate)
47
+* [w3m](/linux/w3m)
48
+* [xclip](/linux/xclip)
49
+* [xdotool](/linux/xdotool)
50
+* [xev](/linux/xev)
51
+* [xinput](/linux/xinput)
52
+* [xmodmap](/linux/xmodmap)
53
+* [xprop](/linux/xprop)
54
+
55
+
56
+echo 1 > /sys/class/scsi_device/2:0:1:0/device/rescan
57
+echo "- - -" > /sys/class/scsi_host/host2/scan
58
+
59
+* view keys being pressed
60
+https://unix.stackexchange.com/questions/144390/print-currently-pressed-keys-to-stdout-and-read-them-line-by-line
61
+```
62
+stdbuf -o0 showkey -a | cat -
63
+```
linux/journalctl.md
... ...
@@ -0,0 +1,37 @@
1
+# journalctl
2
+
3
+https://www.loggly.com/ultimate-guide/using-journalctl/
4
+https://www.digitalocean.com/community/tutorials/how-to-use-journalctl-to-view-and-manipulate-systemd-logs
5
+
6
+search by user
7
+```
8
+journalctl _UID=<uid>
9
+```
10
+
11
+search by command
12
+```
13
+journalctl /usr/bin/sudo
14
+journalctl $(which sudo)
15
+journalctl -t sudo
16
+```
17
+ `-t` show syslog identifier
18
+
19
+show all available values for `_SYSTEMD_UNIT`
20
+http://0pointer.de/blog/projects/journalctl.html
21
+```
22
+journalctl -F _SYSTEMD_UNIT
23
+```
24
+
25
+show login attempts
26
+```
27
+journalctl _SYSTEMD_UNIT=systemd-logind.service
28
+journalctl _SYSTEMD_UNIT=systemd-logind.service --since today
29
+journalctl _SYSTEMD_UNIT=systemd-logind.service --since yyyy-mm-dd
30
+```
31
+
32
+```
33
+journalctl _SYSTEMD_UNIT=gdm.service --since yy-mm-dd
34
+sudo grep -A1 "plugin=panel" /home/<user>/.kde/share/config/plasma-desktop-appletsrc
35
+```
36
+
37
+ [systemctl](systemctl)
linux/keymaps.md
... ...
@@ -0,0 +1,21 @@
1
+# keymaps
2
+
3
+## check keymaps
4
+```
5
+localectl status
6
+```
7
+
8
+## changes required to load keys
9
+```
10
+vconsole.conf
11
+/etc/X11/xorg.conf.d/00-keyboard.conf
12
+```
13
+
14
+## use capslock as escape and control
15
+using xcape capslock can be set to 'escape' when tapped and 'ctrl' when help down.
16
+```
17
+setxkbmap -option ctrl:nocaps
18
+xcape -e 'Control_L=Escape'
19
+```
20
+
21
+[ref](https://www.dannyguo.com/blog/remap-caps-lock-to-escape-and-control)
linux/logrotate.md
... ...
@@ -0,0 +1,28 @@
1
+# logrotate
2
+
3
+[guide and functions][]
4
+
5
+## file example
6
+```
7
+/var/log/example.log {
8
+ weekly
9
+ size 500M
10
+ missingok
11
+ rotate 5
12
+ compress
13
+ copytruncate
14
+ notifempty
15
+}
16
+```
17
+
18
+test using debug mode
19
+```
20
+logrotate -d /etc/logrotate.d/example
21
+```
22
+
23
+run manually
24
+```
25
+logrotate -f /etc/logrotate.d/example
26
+```
27
+
28
+[guide and functions]: https://www.techrepublic.com/article/manage-linux-log-files-with-logrotate/
linux/lvm.md
... ...
@@ -0,0 +1,2 @@
1
+# lvm
2
+https://tldp.org/HOWTO/LVM-HOWTO/recipemovevgtonewsys.html
linux/man_pages.md
... ...
@@ -0,0 +1,31 @@
1
+# man pages
2
+
3
+## sections
4
+
5
+taken from `man man`:
6
+```
7
+MANUAL SECTIONS
8
+ The standard sections of the manual include:
9
+
10
+ 1 User Commands
11
+ 2 System Calls
12
+ 3 C Library Functions
13
+ 4 Devices and Special Files
14
+ 5 File Formats and Conventions
15
+ 6 Games et. al.
16
+ 7 Miscellanea
17
+ 8 System Administration tools and Daemons
18
+```
19
+[unix stackexchange](https://unix.stackexchange.com/questions/3586/what-do-the-numbers-in-a-man-page-mean)
20
+
21
+## searching
22
+[cyberciti.biz](https://www.cyberciti.biz/faq/howto-search-all-the-linux-unix-man-pages/)
23
+
24
+`apropos` command
25
+
26
+```bash
27
+apropos "term"
28
+apropos -s 1 "term"
29
+```
30
+
31
+`-s` indicates search only specific section
linux/mbox.md
... ...
@@ -0,0 +1,13 @@
1
+# mbox
2
+
3
+```
4
+mail
5
+```
6
+* `+` open next mail
7
+* `-` open prev mail
8
+* `d` delete mail
9
+ * `d 6 9` delete mail 6 & 9
10
+ * `d 4-40` delete mails 4 to 40
11
+ * `d*` delete all
12
+* `reply`
13
+* `h` print messages
linux/mdadm.md
... ...
@@ -0,0 +1,13 @@
1
+# mdadm
2
+
3
+https://www.tecmint.com/manage-software-raid-devices-in-linux-with-mdadm/
4
+
5
+```
6
+cat /proc/mdstat
7
+cat /etc/mdadm.conf
8
+sudo mdadm --query /dev/md127
9
+sudo mdadm --detail /dev/md127
10
+sudo mdadm --examine /dev/sdb1
11
+sudo mdadm --manage /dev/md127 --re-add /dev/sdb1 # if using same disk
12
+sudo mdadm --manage /dev/md127 --add /dev/sdb1 # if using new disk
13
+```
linux/mount.md
... ...
@@ -0,0 +1,7 @@
1
+# mount
2
+
3
+## mount windows share
4
+_must have cifs-utils installed_
5
+```
6
+sudo mount -t cifs -o username=<win_share_username> //<win_share_ip>/<share> /mnt
7
+```
linux/mpd.md
... ...
@@ -0,0 +1,5 @@
1
+# mpd
2
+
3
+## radio playlist sites
4
+https://www.radionomy.com/
5
+http://www.radiosure.com/stations/
linux/mpv.md
... ...
@@ -0,0 +1,5 @@
1
+# mpv
2
+
3
+```zsh
4
+mpv --video-unscaled=no --geometry=579x326+98%+2% --ontop
5
+```
linux/nmcli.md
... ...
@@ -0,0 +1 @@
1
+# nmcli
linux/pacman.md
... ...
@@ -0,0 +1,14 @@
1
+# pacman
2
+
3
+## find package which contains $filename
4
+```
5
+pacman -Fy
6
+pacman -Fs $filename
7
+```
8
+
9
+## clear package cache
10
+```
11
+pacman -S pacman-contrib
12
+paccache -r
13
+```
14
+
linux/pacmd.md
... ...
@@ -0,0 +1,11 @@
1
+# pacmd
2
+
3
+## fixing sound for bluetooth
4
+* make sure correct profile
5
+```
6
+pacmd set-card-profile 11 a2dp_sink
7
+```
8
+* set latency
9
+```
10
+pacmd set-port-latency-offset $(pacmd list-sinks | grep -Eo 'bluez_card[^>]*') headset-output 125000
11
+```
linux/pactl.md
... ...
@@ -0,0 +1,6 @@
1
+# pactl
2
+
3
+stream pc audio to pulsedroid app
4
+```
5
+pactl load-module module-simple-protocol-tcp rate=48000 format=s16le channels=2 source=alsa_output.pci-0000_08_00.4.analog-surround-21.monitor record=true port=8008 listen=192.168.1.3
6
+```
linux/processes.md
... ...
@@ -0,0 +1,16 @@
1
+# processes
2
+
3
+## zombies
4
+check the number of [zombie processes][]
5
+```
6
+ps aux | awk '$8 ~ /Z/ { print }' | wc -l
7
+```
8
+
9
+## sort by resource usage
10
+find [top processes][] sorted by mem or cpu usage
11
+```
12
+ps -eo pid,ppid,cmd,%mem,%cpu --sort=-%mem | head
13
+```
14
+
15
+[zombie processes]: https://www.howtogeek.com/119815/htg-explains-what-is-a-zombie-process-on-linux/
16
+[top processes]: https://tecmint.com/find-linux-processes-memory-ram-cpu-usage
linux/python.md
... ...
@@ -0,0 +1,18 @@
1
+# python
2
+
3
+## configuring [virtualenv][]
4
+- install package
5
+ ```
6
+ python3 -m pip install --user virtualenv
7
+ ```
8
+- create virtualenv
9
+ ```
10
+ python3 -m virtualenv env_dir
11
+ ```
12
+- activating and leaving virtualenv
13
+ ```
14
+ source env_dir/bin/activate
15
+ deactivate
16
+ ```
17
+
18
+[virtualenv]: https://packaging.python.org/guides/installing-using-pip-and-virtualenv/
linux/rdp.md
... ...
@@ -0,0 +1,7 @@
1
+# rdp
2
+
3
+convert windows saved rdp file to linux editable
4
+```
5
+iconv -f utf-16 -t utf-8 <file>.rdp > <newfile>.rdp
6
+dos2unix <newfile>.rdp
7
+```
linux/ricing.md
... ...
@@ -0,0 +1,27 @@
1
+# ricing
2
+
3
+## xsetroot
4
+```
5
+xsetroot -solid #111111
6
+
7
+xsetroot -bitmap brain.xbm -fg #111111 -bg #222222
8
+```
9
+
10
+reload Xdefaults
11
+```
12
+xrdb ~/.Xdefaults
13
+```
14
+
15
+bitmap files:
16
+- arabic_rug
17
+- bitwize
18
+- brain
19
+- brick_diag_hering.xbm
20
+- cubic_interlock
21
+- cyber_tile
22
+- cyber
23
+- escher_fish
24
+- fish
25
+- hexmaze
26
+- itchy_scratchy
27
+- waves
linux/rpm.md
... ...
@@ -0,0 +1,76 @@
1
+# rpm
2
+
3
+## how to build rpm videos
4
+- [urban pengiun](#ref#3)
5
+ - distributing new repo file
6
+ - create new 'build' account
7
+ - run `rpmdev-setuptree`
8
+ - creates 'rpmbuild' dir structure
9
+ - create SOURCES dir structure
10
+ ```
11
+ cd ~/rpmbuild/SOURCES/
12
+ mkdir tuprepo-1/etc/yum.repos.d
13
+ ```
14
+ *'tuprepo-1' is name and version number*
15
+ - copy across repo file
16
+ ```
17
+ cp /tmp/CentOS-Tup.repo !$
18
+ ```
19
+ *use '!$' for last arg*
20
+ - tar zip dir
21
+ ```
22
+ tar -cvzf tuprepo-1.tar.gz tuprepo-1/
23
+ ```
24
+ - create spec file
25
+ ```
26
+ cd ../SPECS/
27
+ rpmdev-newspec tuprepo.spec
28
+ vi tuprepo.spec
29
+ ```
30
+ - spec file details
31
+ ```
32
+ Name: qradar_bak
33
+ Version: 1
34
+ Release: 1%{?dist}
35
+ Summary: Pull backup data and configuration files for QRadar
36
+
37
+ License: GPL
38
+ URL: https://www.ward.ie
39
+ Source0: qradar_bak-1.tgz
40
+
41
+ BuildRoot: %{_tmppath}/%{name}-buildroot
42
+
43
+ %description
44
+ Pull nightly data backups and weekly configuration files from QRadar master.
45
+ Clean up is carried out weekly
46
+
47
+
48
+ %prep
49
+ %autosetup
50
+
51
+ %install
52
+ mkdir -p "$RPM_BUILD_ROOT"
53
+ cp -R * "$RPM_BUILD_ROOT"
54
+
55
+ %clean
56
+ rm -rf "$RPM_BUILD_ROOT"
57
+
58
+ %files
59
+ %defattr(-,root,root,-)
60
+ /usr/local/bin/backup_pull
61
+ /usr/local/bin/cleanup
62
+ /usr/local/etc/config
63
+
64
+ %changelog
65
+ * Mon Oct 22 2018 rpmbuild
66
+ ```
67
+ - build rpm
68
+ ```
69
+ cd $HOME
70
+ rpmbuild -v -bb rpmbuild/SPECS/tuprepo.spec
71
+ ```
72
+
73
+## ref
74
+- :1: https://docs.fedoraproject.org/en-US/quick-docs/creating-rpm-packages/index.html
75
+- :2: https://rpm-packaging-guide.github.io/
76
+- :3: https://www.youtube.com/watch?v=364Plv6zuBU
linux/rsync.md
... ...
@@ -0,0 +1,6 @@
1
+# rsync
2
+
3
+### copy files over ssh using compression
4
+```
5
+rsync -avz -e ssh --progress pyratebeard@remote_server:/path/to/file ./local/path
6
+```
linux/rtv.md
... ...
@@ -0,0 +1,4 @@
1
+# rtv
2
+
3
+rtv --enable-media (to use mailcap, although it seems to default)
4
+export RTV_BROWSER=qutebrowser
linux/samba.md
... ...
@@ -0,0 +1,9 @@
1
+# samba
2
+
3
+## test from linux system using kerberos
4
+```
5
+kinit <username>
6
+smbclient -L $(hostname) -k
7
+smbclient //$(hostname)/<sharename> -k
8
+smb: \> dir
9
+```
linux/sar.md
... ...
@@ -0,0 +1 @@
1
+# sar
linux/sed.md
... ...
@@ -0,0 +1,34 @@
1
+# sed
2
+
3
+print specific line number from file
4
+```
5
+sed 'n!d' file
6
+```
7
+
8
+add character
9
+```
10
+s/regex/&n/
11
+```
12
+
13
+convert first word before equals symbol from lower to upper
14
+_this is used in config files such as ifcfg to convert all variable names_
15
+```
16
+:%s/^[[:alpha:]_]\{1,\}=/\U&/
17
+```
18
+
19
+append line after match
20
+```
21
+sed '/match/a hello friend' filename
22
+```
23
+
24
+prepend line before match
25
+```
26
+sed '/match/i hello friend' filename
27
+```
28
+
29
+{upper,lower}case test
30
+```
31
+sed 's/[a-z].*=/\U&/' filename
32
+```
33
+_this example is for uppercasing var names in a rhel network config file_
34
+http://bigdatums.net/2017/09/30/how-to-uppercase-lowercase-text-with-sed/
linux/spotifyd.md
... ...
@@ -0,0 +1,21 @@
1
+# spotifyd
2
+
3
+```
4
+pacman -S spotifyd
5
+mkdir ~/.config/spotifyd
6
+vim ~/.config/spotifyd/spotifyd.conf
7
+ [global]
8
+ username = ""
9
+ password = ""
10
+ backend = "alsa"
11
+ device = "default" # Given by `aplay -L` - default is pulse
12
+ mixer = "PCM"
13
+ volume-controller = "alsa" # or alsa_linear, or softvol
14
+ #onevent = command_run_on_playback_event
15
+ device_name = "spotifydkk" # no spaces
16
+ bitrate = 320
17
+ cache_path = "cache_directory"
18
+ volume-normalisation = true
19
+ normalisation-pregain = -10
20
+systemctl --user start spotifyd
21
+```
linux/ssh.md
... ...
@@ -0,0 +1,56 @@
1
+# ssh
2
+
3
+## tunnel
4
+[tunnel][] through jump server
5
+```
6
+ssh -t L7070:localhost:7071 user@jumphost ssh -t -D7071 user@furtherhost
7
+```
8
+
9
+```
10
+ssh -A -t -l user jump-host \
11
+-L 8080:localhost:8080 \
12
+ssh -A -t -l user webserver.dmz \
13
+-L 8080:localhost:8080
14
+```
15
+
16
+open [socks proxy][] on port 443 (hide as https) - requires sudo
17
+```
18
+sudo ssh -o ServerAliveInterval=60 -D443 -l pyratebeard -i ~/lib/key/ssh_tunnel -N -C -q -t -4 -f ftp.pyratebeard.net
19
+```
20
+- `-o ServerAliveInterval=60` -
21
+- `-D443` -
22
+- `-l pyratebeard` -
23
+- `-i ~/lib/key/ssh_tunnel` -
24
+- `-N` - do not execute remote command
25
+- `-C` - compress data
26
+- `-q` - quiet
27
+- `-t` - force pseudo-terminal
28
+- `-4` - use ipv4 only
29
+- `-f` - go to background
30
+
31
+## X11 forwarding
32
+```
33
+ssh -X user@host
34
+```
35
+- on server side `X11Forwarding` must be set to `yes` in '/etc/ssh/sshd_config'
36
+
37
+## ssh host fingerprint
38
+to find the fingerprint of a host
39
+```
40
+sudo ssh-keygen -l -f /etc/ssh/ssh_host_rsa_key
41
+sudo ssh-keygen -l -f /etc/ssh/ssh_host_ecdsa_key
42
+```
43
+
44
+## remote host id has changed
45
+if the fingerprint for the remote host has changed (and you are sure it's not
46
+a mitm attack) run the following to remove from 'known_hosts'
47
+```
48
+ssh-keygen -f $HOME/.ssh/known_hosts -R <hostname>
49
+```
50
+
51
+## ref
52
+[ssh][] guide
53
+
54
+[tunnel]: http://digitalcrunch.com/linux/how-to-use-an-ssh-tunnel-through-a-jump-host/
55
+[socks proxy]: https://ma.ttias.be/socks-proxy-linux-ssh-bypass-content-filters/
56
+[ssh]: http://lackof.org/taggart/hacking/ssh/
linux/systemctl.md
... ...
@@ -0,0 +1,48 @@
1
+# systemctl
2
+
3
+also see [journalctl](journalctl)
4
+
5
+```bash
6
+systemctl list-units [ --all | --type=service ]
7
+```
8
+
9
+- show all enabled and disabled services
10
+```bash
11
+systemctl list-unit-files
12
+```
13
+
14
+#### create service file
15
+```
16
+vi /etc/systemd/system/<name>.service
17
+```
18
+
19
+([manage systemd][])
20
+
21
+## user services
22
+run `systemctl` (without sudo) and with the `--user` option
23
+
24
+service files are created under '$HOME/.config/systemd/user'
25
+
26
+### example user service file
27
+```
28
+[Unit]
29
+Description=This is an example
30
+
31
+[Service]
32
+ExecStart=/path/to/command
33
+
34
+[Install]
35
+WantedBy=default.target
36
+```
37
+([writing user units][])
38
+
39
+enable and start the user service (without sudo)
40
+```
41
+systemctl --user enable <service>
42
+systemctl --user start <service>
43
+systemctl --user status <service>
44
+```
45
+
46
+
47
+[manage systemd]: https://www.digitalocean.com/community/tutorials/how-to-use-systemctl-to-manage-systemd-services-and-units
48
+[writing user units]: https://wiki.archlinux.org/index.php/Systemd/User#Writing_user_units
linux/truncate.md
... ...
@@ -0,0 +1,2 @@
1
+# truncate
2
+https://unix.stackexchange.com/questions/68523/find-and-remove-large-files-that-are-open-but-have-been-deleted
linux/w3m.md
... ...
@@ -0,0 +1,19 @@
1
+# w3m
2
+
3
+```
4
+w3m <url>
5
+```
6
+
7
+## keybindings
8
+
9
+| keybinding | description |
10
+| --- | --- |
11
+| H | show hot keys menu |
12
+| B | exit hot keys menu |
13
+| space | page down |
14
+| b | page up |
15
+| T | open tab |
16
+| {} | switch tabs |
17
+| C-q | close tab |
18
+| U | change current url |
19
+| Esc-U | go to new url |
linux/xclip.md
... ...
@@ -0,0 +1,7 @@
1
+# xclip
2
+
3
+## copy image to clipboard
4
+```bash
5
+xclip -selection clipboard -t image/png -i <image>.png
6
+```
7
+use `image/jpeg` or `image/jpg` for jpeg
linux/xdotool.md
... ...
@@ -0,0 +1,44 @@
1
+# xdotool
2
+
3
+## turn of capslock
4
+```
5
+xdotool key Caps_Lock
6
+```
7
+
8
+: 1594205737:0;hidden -h
9
+: 1594205743:0;hidden -c
10
+: 1594205744:0;hidden -i
11
+: 1594205814:0;psef | grep firefox
12
+: 1594206027:0;which xwininfo
13
+: 1594206035:2;xwininfo
14
+: 1594206390:0;which xwd
15
+: 1594206393:0;which import
16
+: 1594206411:0;import -window 0x1200010 tmp/firefox_scrot.png
17
+: 1594206456:0;which wmctrl
18
+: 1594206538:0;hidden
19
+: 1594206546:5;man hidden
20
+: 1594206577:0;xdotool windowraise
21
+: 1594206600:1;xdotool selectwindow
22
+: 1594206611:0;xdotool windowraise 18874369
23
+: 1594206628:0;xdotool windowfocus 18874369
24
+: 1594206635:0;xdotool windowmap 18874369
25
+: 1594206647:0;xdotool
26
+: 1594206659:0;xdotool windowactivate 18874369
27
+: 1594206761:108;v bin/xctl
28
+: 1594206901:0;xdotool windowunmap 0x1200001
29
+: 1594206905:0;xdotool windowmap 0x1200001
30
+: 1594206926:0;xdotool
31
+: 1594206941:0;xdotool windowreparent 0x1200001
32
+: 1594206948:0;xdotool windowraise 0x1200001
33
+: 1594206962:0;xdotool windowminimize 0x1200001
34
+: 1594206988:0;xdotool windowminimize --help
35
+: 1594206999:0;xdotool windowminimize window=0x1200001
36
+: 1594207007:0;xdotool windowminimize window=%2
37
+: 1594207038:0;xdotool type
38
+: 1594207050:0;xdotool get_desktop
39
+: 1594207064:0;xdotool getwindowname
40
+: 1594207080:64;man xdotool
41
+: 1594207157:0;xdotool search --class firefox
42
+: 1594207165:0;xdotool search --class firefox windowraise
43
+: 1594207176:1;xdotool search --class firefox windowmap
44
+: 1594207259:0;xwininfo -name "Firefox"
linux/xev.md
... ...
@@ -0,0 +1,7 @@
1
+# xev
2
+
3
+print contents of events
4
+
5
+when run it opens a window then prints all events in terminal
6
+
7
+useful for finding key ids etc.
linux/xinput.md
... ...
@@ -0,0 +1,17 @@
1
+# xinput
2
+
3
+* list devices
4
+```
5
+libinput list-devices
6
+xinput list
7
+```
8
+
9
+* list properties
10
+```
11
+xinput list-props <device_id>
12
+```
13
+
14
+* change (set) property
15
+```
16
+xinput set-prop <device_id> <property_id> <value>
17
+```
linux/xmodmap.md
... ...
@@ -0,0 +1,11 @@
1
+# xmodmap
2
+
3
+modifying keymaps and pointer button mappings
4
+
5
+## usage
6
+| option | description |
7
+| --- | --- |
8
+| -pk | show keymap table |
9
+| -pke | show keymap table in expressions |
10
+| -pm | show modifier map (default no args) |
11
+
linux/xprop.md
... ...
@@ -0,0 +1,5 @@
1
+# xprop
2
+
3
+property displayer
4
+
5
+use to find 'WM_CLASS' of window for awesome rc.lua rules
misc/blog_posts.md
... ...
@@ -1,3 +0,0 @@
1
-# blog posts
2
-
3
-- [irc bouncer][irc_bouncer]
misc/comic_wishlist.md
... ...
@@ -1,3 +0,0 @@
1
-# comic wishlist
2
-
3
-- suicide squard #23 - first appearance of oracle
misc/irc_bouncer.md
... ...
@@ -1,14 +0,0 @@
1
-# irc bouncer
2
-
3
-- using [digitalocean][]
4
--
5
-
6
-- create droplet
7
- - using fedora atomic
8
-- log in and configure znc (this auto pulls znc image)
9
- ```
10
- ssh root@<droplet_ip>
11
- ocker run -it -v znc-cfg:/znc-data znc --makeconf
12
- ```
13
-
14
-[digitalocean]: https://digitalocean.com
misc/music.md
... ...
@@ -1,27 +0,0 @@
1
-# music
2
-
3
-- twilight force "flight of the sapphire dragon"
4
-- old wolf "howl"
5
-- old wolf "trail of tears"
6
-- tarchon fist "metal detector"
7
-- vinide "another dimension"
8
-- odr "notte alcolica"
9
-- baphomets blood "command of the inverted cross"
10
-- twins crew "ghost of the seven seas"
11
-- dave esser "in ewigkeit amen"
12
-- when nothing remains "reunited in the grave"
13
-- demons & wizards "the whistler"
14
-- serenity "caught in a myth"
15
-- majesty "die like kings"
16
-- sleepy hollow "shadowlands"
17
-- innerwish "broken"
18
-- spoil engine "black sails"
19
-- eternal champion "invoker"
20
-- bare infinity "hear me out"
21
-- almanac "flames of hate"
22
-- rebellion "the mad shall lead the blind"
23
-- metal church "sky falls in"
24
-- virgin steele "life among the ruins"
25
-- symfonia "pilgrim road"
26
-- jag panzer "children of the sea"
27
-- chastain "the battle of nevermore"
misc/pyratenet.md
... ...
@@ -1,37 +0,0 @@
1
-# pyratenet
2
-
3
-## server
4
-| name | device | os |
5
-| --- | --- | --- |
6
-| mainframe | media | fedora |
7
-| warehouse | ftp | centos |
8
-| blacksun | web/irc | centos |
9
-| grimoire | code/wiki | debian |
10
-| mordhaus | powerzone | debian |
11
-
12
-## devices
13
-| name | device | os |
14
-| --- | --- | --- |
15
-| kraken | pc | fedora |
16
-| artoo | mobile | android |
17
-| swordphish | laptop | arch |
18
-| laundry | pi | raspbian |
19
-
20
-`/etc/issue-pyratenet`
21
-```
22
- // WARNING!
23
- // You are entering a restricted area.
24
- // UNAUTHORISED ENTRY IS PROHIBITED!
25
-
26
-```
27
-
28
-`/etc/profile`
29
-```
30
-if [ -t 1 ] && [ ! -f ~/.hushlogin ] ; then
31
- echo
32
- cat /home/pyratebeard/pyratenet
33
- echo -e "\n// LOGGED IN AS $(whoami | tr 'a-z' 'A-Z')\n"
34
- uptime --pretty
35
- echo
36
-fi
37
-```
misc/unicode_characters.md
... ...
@@ -1,4 +0,0 @@
1
-# unicode characters
2
-
3
- * black skull and crossbones U+1f571 [link](https://unicode-table.com/en/1F571/)
4
- * alchemical symbol for night U+1f76f [link](https://unicode-table.com/en/1F76F/)
programming/android.md
... ...
@@ -0,0 +1,28 @@
1
+# android
2
+
3
+## android debug bridge
4
+
5
+[archwiki][]
6
+
7
+- install `adb`
8
+ ```
9
+ pacman -S android-tools android-udev
10
+ ```
11
+- on android phone
12
+ - settings > system > about phone > tap 'build number' 7 times to become developer
13
+ - settings > system > (advanced) developer options > enable usb debugging
14
+- plug in phone via usb and switch to 'ptp'
15
+- check device is listed
16
+ ```
17
+ adb devices
18
+ ```
19
+
20
+## screencast
21
+```
22
+adb shell screenrecord --output-format=h264 - | ffplay -
23
+adb shell screenrecord --output-format=h264 - | mpv --no-correct-pts --fps=60 -
24
+```
25
+
26
+
27
+
28
+[archwiki]: https://wiki.archlinux.org/index.php/Android_Debug_Bridge
programming/c.md
... ...
@@ -0,0 +1,67 @@
1
+# c
2
+
3
+* create tcp socket using socket()
4
+* establish connection to server using connect()
5
+* communicate using send() and recv()
6
+* close connection using close()
7
+
8
+using address structure
9
+1. sockaddr: generic data type
10
+2. in_addr: internet address
11
+3. sockaddr_in: another view of sockaddr
12
+
13
+struct sockaddr_in {
14
+ unsigned short sin_family; // internet protocol (AF_INET)
15
+ unsigned short sin_port; // address port (16bits)
16
+ struct in_addr sin_addr; // internet address (32bits)
17
+ char sin_zero[8]; // not used
18
+}
19
+
20
+create a socket
21
+
22
+ int socket(int protocolFamily, int type, int protocol)
23
+
24
+- protocolFamily: always PF_INET for tcp/ip sockets
25
+- type: type of socket (SOCK_STREAM or SOCK_DGRAM)
26
+- protocol: socket protocol (IPPROTO_TCP or IPPROTO_UDP)
27
+
28
+* socket() returns the descriptor of the new socket if no error occurs and -1 otherwise
29
+
30
+example
31
+```
32
+#include <sys/types.h>
33
+#include <sys/socket.h>
34
+int servSock;
35
+if ((servSock= socket(PF_INET,SOCK_STREAM,IPPROTO_TCP))<0)
36
+```
37
+
38
+
39
+bind to a socket
40
+
41
+ int bind(int socket, struct sockaddr *localAddress, unsigned int addressLength)
42
+
43
+- socket: socket (returned by socket())
44
+- localAddress: populated sockaddr structure describing local address
45
+- addressLength: number of bytes in sockaddr structure - usually just size of (localAddress)
46
+
47
+* bind() returns 0 if no error and -1 otherwise
48
+
49
+example
50
+```
51
+struct sockaddr_in ServAddr;
52
+ServAddr.sin_family = AF_INET; // internet address family
53
+ServAddr.sin_addr.s_addr = htonl(INADDR_ANY); // any incoming interface
54
+ServAddr.sin_port = htons(ServPort); // local port
55
+
56
+if (bind(servSock, (struct sockaddr *) &ServAddr, sizeof(echoServAddr))<0)
57
+```
58
+
59
+/*
60
+#include <arpa/inet.h> // defins in_addr structure
61
+#include <sys/types.h> //
62
+#include <netdb.h> //
63
+#include <string.h> //
64
+#include <stdlib.h> //
65
+#include <unistd.h> //
66
+#include <errno.h> //
67
+*/
programming/shell_scripts.md
... ...
@@ -0,0 +1,6 @@
1
+# shell scripts
2
+
3
+test for arguments (posix)
4
+```
5
+test $# -gt 0 || { echo "need arguments" ; exit 1 ; }
6
+```
projects/hackthebox.md
... ...
@@ -1,72 +0,0 @@
1
-# hack the box
2
-
3
-- [web](#web)
4
-- [misc](#misc)
5
-
6
-## invite code
7
-url: https://www.hackthebox.eu/invite
8
-
9
-- inspect invite code input box element
10
- - find script 'src="/js/inviteapi.min.js"'
11
-- navigate to script url (https://www.hackthebox.eu/js/inviteapi.min.js)
12
-- run 'makeInviteCode' function in browser console
13
- - expand Object output
14
- - decode data string (base64)
15
- ```
16
- echo <string> | base64 -d -
17
- ```
18
- - output gives '/api/invite/generate'
19
-- use `curl` to send POST request
20
- ```
21
- curl -X POST https://www.hackthebox.eu/api/invite/generate
22
- ```
23
- - output gives us encoded code string
24
-- decode code string
25
- ```
26
- echo <string> | base64 -d -
27
- ```
28
-- copy invite code into input box and submit
29
-
30
-## web
31
-#### lernaean (20 pts)
32
-- open url:port provided from instance
33
-- proxy page through burpsuite
34
- - submit password to see response
35
- - submit root is '/'
36
- - response containse 'Invalid password!' string
37
-- lernaean is the hydra from greek mythology
38
-- hydra is a password bruteforce tool
39
-- run a password list through hydra
40
- ```
41
- hydra -l "" -P <pass_list> -s <port> -f docker.hackthebox.eu http-post-form "/:password=^PASS^:Invalid password\!"
42
- ```
43
- - `-l` : user (blank as no username field)
44
- - `-P` : password file (used common-passwords.txt first with no luck, success with rockyou.txt)
45
- - `-s` : port
46
- - `-f` : exit when creds found
47
- - url (from instance)
48
- - service
49
- - root of submit, tell it to use passwords from file, login failed message (escape the !)
50
-- once password is found submit in field
51
-- this displays a new page
52
-- check response in burp to find HTB flag
53
-
54
-## misc
55
-#### 0ld is g0ld (10 pts)
56
-- download zip file
57
-- unzip a password protected pdf
58
-- use `pdfcrack` to bruteforce password
59
- ```
60
- pdfcrack -f 0ld\ is\ g0ld.pdf -w /path/to/rockyou.txt
61
- ```
62
-- open pdf with password
63
-- scroll to bottom and zoom in a lot to find morse code
64
- ```
65
- .-. .---- .--. ... .- -- ..- ...-- .-.. -- ----- .-. ... ...--
66
- ```
67
-- translate code
68
- ```
69
- R1PSAMU3LM0RS3
70
- ```
71
-- submit flag (wrap with HTB{<string>})
72
-
projects/pyratenet.md
... ...
@@ -1,50 +0,0 @@
1
-# pyratenet
2
-
3
-- web
4
-- git
5
-- ftp
6
-- wiki
7
-
8
-## choices
9
-- one vps with docker
10
-- multi vps
11
-
12
-### one vps with docker
13
-look at using [jenkins ci/cd][] for auto deployment
14
-
15
-### multi vps
16
-use [git hooks][] for deployment - see refs
17
-
18
-#### wiki
19
-- using markdown files in git repo
20
-- following 'makefile' to build html files
21
- ```c
22
- MD_FILES=$(shell find . -name \*.md)
23
- HTML_FILES=$(MD_FILES:.md=.html)
24
- BUILD_HTML_FILES=$(HTML_FILES:%=build/%)
25
-
26
- all: $(BUILD_HTML_FILES)
27
-
28
- build/assets/%: assets/%
29
- @mkdir -p $$(dirname $@)
30
- cp $? $@
31
-
32
- build/%.html: %.md
33
- @mkdir -p $$(dirname $@)
34
- pandoc -o $@ $<
35
-
36
- # run with `make deploy`
37
- deploy:
38
- rsync --recursive --human-readable --delete --info=progress2 \
39
- build/* user@host:dir
40
- ```
41
- - run with `make deploy`
42
-
43
-## ref
44
-[jenkins ci/cd]: https://blog.harveydelaney.com/jenkins-build-test-deploy-node-app/
45
-http://joemaller.com/990/a-web-focused-git-workflow/
46
-http://codesamplez.com/source-control/deployment-with-git-hook
47
-https://www.digitalocean.com/community/tutorials/how-to-use-git-hooks-to-automate-development-and-deployment-tasks
48
-[git hooks]: https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks
49
-https://www.digitalocean.com/community/tutorials/how-to-set-up-automatic-deployment-with-git-with-a-vps
50
-http://toroid.org/git-website-howto
projects/startpage.md
... ...
@@ -1,8 +0,0 @@
1
-# startpage
2
-
3
-## appearance
4
-- comic
5
-
6
-## links to add
7
-- stashmycomics
8
-- wiki
software/bluetooth.md
... ...
@@ -0,0 +1,51 @@
1
+# bluetooth
2
+
3
+## monitor bluetooth with tcpdump
4
+
5
+follow this [guide][]
6
+### pkg reqs
7
+- bluetoothd
8
+- bluetoothctl
9
+- tcpdump
10
+- libpcap
11
+- openssl
12
+
13
+on arch:
14
+```
15
+pacman -S extra/bluez extra/bluez-utils tcpdump libpcap openssl
16
+```
17
+
18
+start bluetooth service
19
+```
20
+systemctl start bluetooth
21
+```
22
+
23
+check state of bluetooth device
24
+```
25
+rfkill list bluetooth
26
+sudo rfkill unblock bluetooth
27
+rfkill list bluetooth
28
+```
29
+
30
+get bluetooth adaptor name
31
+```
32
+tcpdump -D
33
+```
34
+
35
+start tcpdump
36
+```
37
+tcpdump -i <bluetooth_adaptor> -w <output_file>.pcap
38
+```
39
+
40
+connect to bluetooth devices
41
+```
42
+bluetoothctl
43
+[bluetooth]# power on
44
+[bluetooth]# scan on
45
+[bluetooth]# trust <mac_address> # optional
46
+[bluetooth]# pair <mac_address>
47
+```
48
+
49
+
50
+
51
+[guide]: https://www.agnosticdev.com/content/how-capture-bluetooth-traffic-tcpdump-linux
software/certbot.md
... ...
@@ -0,0 +1,10 @@
1
+ # certbot
2
+Congratulations! Your certificate and chain have been saved at:
3
+/etc/letsencrypt/live/dudleyburrows.com/fullchain.pem
4
+Your key file has been saved at:
5
+/etc/letsencrypt/live/dudleyburrows.com/privkey.pem
6
+Your cert will expire on 2020-03-13. To obtain a new or tweaked
7
+version of this certificate in the future, simply run certbot again
8
+with the "certonly" option. To non-interactively renew *all* of
9
+your certificates, run "certbot renew"
10
+
software/django.md
... ...
@@ -0,0 +1,4 @@
1
+# django
2
+
3
+## cms
4
+- [wagtail](wagtail)
software/docker.md
... ...
@@ -0,0 +1,17 @@
1
+# docker
2
+
3
+## pull files from inside container
4
+```
5
+docker cp <container_id>:/path/to/file /path/to/save
6
+```
7
+
8
+## clean up old images
9
+```
10
+docker rmi -f $(docker images --filter "dangling=true" -q)
11
+docker image prune
12
+```
13
+
14
+
15
+## ref
16
+- :1: https://stackoverflow.com/questions/44027873/how-to-create-a-new-docker-image-from-a-running-container-on-amazon
17
+- :2: https://stackoverflow.com/questions/43699368/configure-docker-daemon-port-to-enable-docker-apis/43713435#43713435
software/durdraw.md
... ...
@@ -0,0 +1,9 @@
1
+# durdraw
2
+
3
+```
4
+cd ~/src/warez/durdraw-venv
5
+source bin/activate
6
+../durdraw/durdraw
7
+```
8
+
9
+* `alt-q` to quit
software/envoy.md
... ...
@@ -0,0 +1,36 @@
1
+# envoy
2
+
3
+https://envoyproxy.io
4
+
5
+## envoy architecture
6
+[1][]
7
+
8
+### inbound
9
+
10
+ [ listener ]
11
+ └─┐
12
+ ↓
13
+ [ filter chains ]
14
+ └─┐
15
+ ↓
16
+ [ filter ]
17
+ ├ tcp proxy
18
+ └ http connection manager
19
+
20
+### outbound
21
+
22
+ [ clusters ]
23
+ └─┐
24
+ ↓
25
+ [ endpoints]
26
+ ├ static cluster (load assignment)
27
+ └ dynamic cluster (eds_assignment)
28
+
29
+## protocol specific routing
30
+
31
+ [ envoy ]
32
+ │
33
+ ┌──────┴──────┐
34
+ ↓ ↓
35
+ / /api
36
+ [ front end ] [ api ]
software/esxi.md
... ...
@@ -0,0 +1,61 @@
1
+# esxi
2
+
3
+## list vms
4
+```
5
+esxcli vm process list
6
+```
7
+
8
+```
9
+vim-cmd vmsvc/getallvms
10
+```
11
+
12
+## create vm
13
+[steps taken from here](#ref#2)
14
+
15
+1. create vm folder
16
+ ```
17
+ mkdir /vmfs/volumes/datastore1/hostname/
18
+ ```
19
+
20
+2. create hard disk
21
+ ```
22
+ vmkfstools -c 32G -a lsilogic hostname.vmdk
23
+ ```
24
+ * `-c` - createvirtualdisk
25
+ * `-a` - adaptertype [buslogic|lsilogic|ide|lsisas|pvscsi]
26
+ * `-d` - diskformat [zeroedthick|thin|eagerzeroedthick]
27
+
28
+3. create hostname.vmx file with following ([ref 3](#ref#3) for info on vmx files)
29
+ ```
30
+ config.version = "8"
31
+ virtualHW.version= "7"
32
+ guestOS = "winnetenterprise-64"
33
+ memsize = "1024"
34
+ displayname = "VirtualCenter"
35
+ scsi0.present = "TRUE"
36
+ scsi0.virtualDev = "lsilogic"
37
+ scsi0:0.present = "TRUE"
38
+ scsi0:0.fileName = "VirtualCenter.vmdk"
39
+ ide1:0.present = "true"
40
+ ide1:0.deviceType = "cdrom-image"
41
+ ide1:0.filename = "/vmfs/volumes/4a68046d-2159a120-ebac-001a9253e68f/win2k3_x64.iso"
42
+ ide1:0.startConnected = "TRUE"
43
+ ethernet0.present= "true"
44
+ ethernet0.startConnected = "true"
45
+ ethernet0.virtualDev = "e1000"
46
+ ```
47
+
48
+4. change permissions on vmx file
49
+ ```
50
+ chmod 744 hostname.vmx
51
+ ```
52
+
53
+5. add vm to inventory
54
+ ```
55
+ vim-cmd solo/registervm /vmfs/volumes/datastore/hostname/hostname.vmx hostname
56
+ ```
57
+
58
+## ref
59
+- :1: https://pubs.vmware.com/vsphere-51/index.jsp?topic=%2Fcom.vmware.vsphere.solutions.doc%2FGUID-0A264828-3933-4F4F-82D7-B5006A90CDBA.html
60
+- :2: http://vm-help.com/esx40i/manage_without_VI_client_1.php
61
+- :3: http://sanbarrow.com/vmx.html
software/exim4.md
... ...
@@ -0,0 +1,7 @@
1
+# exim4
2
+
3
+### set up on raspbian
4
+```
5
+sudo apt-get install exim4
6
+sudo dpkg-reconfigure exim4-config
7
+```
software/firewall-cmd.md
... ...
@@ -0,0 +1,15 @@
1
+# firewall-cmd
2
+
3
+## add / remove port
4
+```
5
+firewall-cmd --permanent --add-port=<port_num>/<protocol>
6
+firewall-cmd --permanent --remove-port=<port_num>/<protocol>
7
+
8
+firewall-cmd --permanent --add-port=22/tcp
9
+firewall-cmd --permanent --remove-port=22/tcp
10
+```
11
+
12
+## open port on specific ip
13
+[serverfault answer][]
14
+
15
+[serverfault answer]: https://serverfault.com/questions/684602/how-to-open-port-for-a-specific-ip-address-with-firewall-cmd-on-centos#684603
software/firewalls.md
... ...
@@ -0,0 +1,5 @@
1
+# firewalls
2
+
3
+## linux
4
+- [iptables](iptables)
5
+- [firewall cmd](firewall-cmd)
software/ftp.md
... ...
@@ -0,0 +1,13 @@
1
+# ftp
2
+
3
+```
4
+ftp ftp.pyratebeard.net
5
+ftp> ls
6
+ftp> cd fun/
7
+ftp> ls
8
+ftp> get pirate-virus.gif
9
+```
10
+
11
+## guest login
12
+- username: anonymous
13
+- password: email
software/gollum.md
... ...
@@ -0,0 +1,98 @@
1
+# gollum
2
+
3
+## install and enable
4
+```
5
+gem install gollum
6
+gem install github-markdown #required for tables
7
+```
8
+
9
+navigate to wiki dir and run gollum
10
+```
11
+gollum --css --h1-title
12
+```
13
+- using custom css file and setting first h1 header as page title
14
+- see [gollum config][] docs for options
15
+- look at [omnigollum][] for user auth
16
+- [gollum reverse proxy][]
17
+
18
+## running as a service
19
+enter the following in `/etc/systemd/system/gollum-personal.service`
20
+```
21
+[Unit]
22
+Description=Personal Gollum wiki server
23
+After=network.target
24
+
25
+[Service]
26
+Type=simple
27
+ExecStart=/home/pyratebeard/.gem/ruby/2.5.0/bin/gollum --show-all --live-preview --h1-title --port 4666 --css "/path/to/your/repo"
28
+Restart=on-abort
29
+
30
+[Install]
31
+WantedBy=multi-user.target
32
+```
33
+
34
+## installing gollum on jump-test
35
+https://github.com/gollum/gollum # use --bare
36
+
37
+- configure omnigollum https://github.com/arr2036/omnigollum
38
+- using azuread https://github.com/AzureAD/omniauth-azure-activedirectory
39
+
40
+### steps
41
+- to enable [git server][]
42
+ - install git (duh!)
43
+ - create 'git' user
44
+ ```
45
+ adduser git
46
+ mkdir ~git/.ssh
47
+ chmod 700 ~git/.ssh
48
+ touch ~git/.ssh/authorized_keys
49
+ chmod 600 ~git/.ssh/authorized_keys
50
+ ```
51
+- mkdir 'wiki' dir
52
+ ```
53
+ mkdir /wiki
54
+ chown git. /wiki
55
+ ```
56
+- create git repo - [getting git on server][]
57
+ ```
58
+ su - git
59
+ cd /wiki
60
+ git init --bare --shared
61
+ ```
62
+- clone repo and initial commit (on local machine)
63
+ ```
64
+ git clone git@gitserver:/wiki wiki
65
+ cd wiki/
66
+ echo "# wiki" > README.md
67
+ git add README.md
68
+ git commit -m "Initial commit"
69
+ git push -u origin master
70
+ ```
71
+- install gollum
72
+ ```
73
+ apt install ruby ruby-dev build-essential zlib1g-dev libicu-dev
74
+ gem install gollum
75
+ ```
76
+
77
+ ```
78
+ yum group install "Development Tools"
79
+ yum install ruby ruby-devel libicu libicu-devel zlib zlib-devel
80
+ gem install gollum
81
+ ```
82
+- enable gollum as a service
83
+ ```
84
+ vi /etc/systemd/system/gollum.service
85
+
86
+ [Service]
87
+ ExecStart=/usr/local/bin/gollum --show-all "/wiki"
88
+ ```
89
+- allow traffic
90
+ ```
91
+ iptables -I INPUT -p tcp --dport 4567 -j ACCEPT -m comment --comment "Allow access to wiki"
92
+ ```
93
+
94
+[gollum config]: https://github.com/gollum/gollum#configuration
95
+[omnigollum]: https://github.com/arr2036/omnigollum/blob/master/config.rb.example
96
+[gollum reverse proxy]: https://gist.github.com/spinpx/c46ea0b24157ca5f731f
97
+[git server]: https://git-scm.com/book/en/v2/Git-on-the-Server-Setting-Up-the-Server
98
+[getting git on server]: https://git-scm.com/book/en/v2/Git-on-the-Server-Getting-Git-on-a-Server
software/gopher.md
... ...
@@ -0,0 +1,5 @@
1
+# gopher
2
+
3
+```
4
+sacc gopher://bitreich.org/1/tutorials
5
+```
software/gpg.md
... ...
@@ -0,0 +1,27 @@
1
+# gpg
2
+
3
+## encrypt file
4
+```
5
+gpg -c <filename>
6
+```
7
+
8
+## decrypt file
9
+```
10
+gpg <filename>.gpg
11
+```
12
+
13
+## clearsign message
14
+```
15
+gpg --default-key <key_id> -o <output_file> --clearsign <input_file>
16
+```
17
+
18
+## search keys
19
+```
20
+gpg --search <string>
21
+```
22
+
23
+- [gpg signing][] - traditional vs. pgp/mime
24
+- how to [verify software][]
25
+
26
+[gpg signing]: https://www.phildev.net/pgp/pgp_clear_vs_mime.html
27
+[verify software]: https://www.phildev.net/pgp/pgp_clear_vs_mime.html
software/grafana.md
... ...
@@ -0,0 +1,29 @@
1
+# grafana
2
+
3
+install `kubectl` and `doctl`
4
+
5
+- kubectl: https://kubernetes.io/docs/tasks/tools/install-kubectl/#install-kubectl-on-linux
6
+- doctl: https://github.com/digitalocean/doctl#downloading-a-release-from-github
7
+
8
+## grafana loki
9
+
10
+spin up grafana loki k8s cluster from [do marketplace](https://cloud.digitalocean.com/marketplace/5db68268316b031f2a877a63?i=8738e9).
11
+
12
+save cluster config
13
+```
14
+doctl kubernetes cluster list
15
+doctl kubernetes cluster kubeconfig save <cluster_name>
16
+```
17
+
18
+get console admin passwd
19
+```
20
+kubectl get secret -n loki loki-grafana -o jsonpath="{.data.admin-password}" | base64 --decode
21
+```
22
+
23
+port-forward to access console
24
+```
25
+kubectl -n loki get pods
26
+kubectl -n loki port-forward <loki-grafana_pod_name> 3000
27
+```
28
+
29
+navigate to [grafana loki](http://localhost:3000/explore) console
software/haproxy.md
... ...
@@ -0,0 +1,5 @@
1
+# haproxy
2
+
3
+[config_guide][]
4
+
5
+[config_guide]: http://cbonte.github.io/haproxy-dconv/2.4/configuration.html
software/httpd.md
... ...
@@ -0,0 +1,6 @@
1
+# httpd
2
+
3
+- view modules loaded into server
4
+```
5
+httpd -l
6
+```
software/iptables.md
... ...
@@ -0,0 +1,25 @@
1
+# iptables
2
+
3
+```
4
+iptables -L
5
+```
6
+
7
+```
8
+iptables -S
9
+```
10
+
11
+* drop
12
+```
13
+iptables -L --line-numbers
14
+iptables -D INPUT <number>
15
+```
16
+
17
+## import / export
18
+see [guide][]
19
+
20
+```
21
+iptables-save > filename
22
+iptables-restore < filename
23
+```
24
+
25
+[guide]: https://www.digitalocean.com/community/tutorials/how-to-migrate-iptables-firewall-rules-to-a-new-server
software/kubernetes.md
... ...
@@ -0,0 +1,11 @@
1
+# kubernetes
2
+
3
+- list pods for all namespaces
4
+```
5
+kubectl get pods --all-namespaces
6
+```
7
+
8
+- get list of containers in pod
9
+```
10
+kubectl -n <namespace> get pods <pod_name> -o jsonpath='{.spec.containers[*].name}'
11
+```
software/latex.md
... ...
@@ -0,0 +1 @@
1
+# latex
software/ldap.md
... ...
@@ -0,0 +1,5 @@
1
+# ldap
2
+
3
+```
4
+ldapsearch -v -x -LLL -h host -D "bind DN" -w password -b "OU="
5
+```
software/lxc.md
... ...
@@ -0,0 +1,292 @@
1
+# lxc
2
+
3
+## set up
4
+### arch
5
+[archwiki_setup][]
6
+[redhat_guide][]
7
+[linux_containers_guide][]
8
+
9
+* install `lxc`
10
+```
11
+pacman -S lxc dnsmasq
12
+```
13
+* or on debian
14
+```
15
+apt-get install lxc dnsmasq-base uidmap acl libpam-cgfs
16
+echo "kernel.unprivileged_userns_clone=1" >> /etc/sysctl.conf
17
+reboot
18
+```
19
+* add the following line to '/etc/pam.d/system-login'
20
+* (debian '/etc/pam.d/login')
21
+```
22
+session optional pam_cgfs.so -c freezer,memory,name=systemd,unified
23
+```
24
+* create '/etc/default/lxc-net' config
25
+```
26
+# Leave USE_LXC_BRIDGE as "true" if you want to use lxcbr0 for your
27
+# containers. Set to "false" if you'll use virbr0 or another existing
28
+# bridge, or mavlan to your host's NIC.
29
+USE_LXC_BRIDGE="true"
30
+
31
+# If you change the LXC_BRIDGE to something other than lxcbr0, then
32
+# you will also need to update your /etc/lxc/default.conf as well as the
33
+# configuration (/var/lib/lxc/<container>/config) for any containers
34
+# already created using the default config to reflect the new bridge
35
+# name.
36
+# If you have the dnsmasq daemon installed, you'll also have to update
37
+# /etc/dnsmasq.d/lxc and restart the system wide dnsmasq daemon.
38
+LXC_BRIDGE="lxcbr0"
39
+LXC_ADDR="10.0.3.1"
40
+LXC_NETMASK="255.255.255.0"
41
+LXC_NETWORK="10.0.3.0/24"
42
+LXC_DHCP_RANGE="10.0.3.2,10.0.3.254"
43
+LXC_DHCP_MAX="253"
44
+# Uncomment the next line if you'd like to use a conf-file for the lxcbr0
45
+# dnsmasq. For instance, you can use 'dhcp-host=mail1,10.0.3.100' to have
46
+# container 'mail1' always get ip address 10.0.3.100.
47
+#LXC_DHCP_CONFILE=/etc/lxc/dnsmasq.conf
48
+
49
+# Uncomment the next line if you want lxcbr0's dnsmasq to resolve the .lxc
50
+# domain. You can then add "server=/lxc/10.0.3.1' (or your actual $LXC_ADDR)
51
+# to your system dnsmasq configuration file (normally /etc/dnsmasq.conf,
52
+# or /etc/NetworkManager/dnsmasq.d/lxc.conf on systems that use NetworkManager).
53
+# Once these changes are made, restart the lxc-net and network-manager services.
54
+# 'container1.lxc' will then resolve on your host.
55
+#LXC_DOMAIN="lxc"
56
+```
57
+* add the following lines to '/etc/lxc/default.conf'
58
+```
59
+lxc.net.0.type = veth
60
+lxc.net.0.link = lxcbr0
61
+lxc.net.0.flags = up
62
+lxc.net.0.hwaddr = 00:16:3e:xx:xx:xx
63
+lxc.idmap = u 0 100000 65536
64
+lxc.idmap = g 0 100000 65536
65
+```
66
+* start `lxc-net`
67
+```
68
+systemctl restart lxc-net
69
+```
70
+* check that `lxcbr0` bridge has been created
71
+```
72
+ip a s lxcbr0
73
+```
74
+* create '/etc/subuid'
75
+```
76
+pyratebeard:100000:65536
77
+```
78
+* create '/etc/subgid'
79
+```
80
+pyratebeard:100000:65536
81
+```
82
+* create '/etc/lxc/lxc-usernet' for allowing user to create network devices
83
+```
84
+pyratebeard veth lxcbr0 10
85
+```
86
+ - `veth` - virtual ethernet
87
+ - `lxcbr0` - network bridge
88
+ - `10` - number of devices allowed
89
+* create local dirs
90
+```
91
+mkdir ~/.{config,cache}/lxc
92
+mkdir ~/.local/share
93
+```
94
+* create '~/.config/lxc/default.conf'
95
+```
96
+lxc.net.0.type = veth
97
+lxc.net.0.link = lxcbr0
98
+lxc.net.0.flags = up
99
+lxc.net.0.hwaddr = 00:16:3e:xx:xx:xx
100
+lxc.idmap = u 0 100000 65536
101
+lxc.idmap = g 0 100000 65536
102
+```
103
+* make '~/.local/share' executable and set acls
104
+```
105
+chmod +x ~/.local/share
106
+setfacl -m u:100000:x /home/pyratebeard
107
+setfacl -m u:100000:x /home/pyratebeard/.local
108
+```
109
+
110
+## create container
111
+```
112
+lxc-create -t download -n <name>
113
+# or
114
+lxc-create -n <name> -t download -- --dist alpine --release 3.13 --arch amd64
115
+lxc-start -d -n <name>
116
+lxc-attach -n <name>
117
+```
118
+or
119
+```
120
+vi ~/.local/share/lxc/powerzone/rootfs/etc/shadow
121
+ # remove `!` from root user
122
+lxc-start -n powerzone
123
+lxc-console -n powerzone
124
+```
125
+
126
+* python module for script api [5][]
127
+
128
+## alpine linux config
129
+```
130
+apk update
131
+apk upgrade
132
+passwd
133
+adduser pyratebeard
134
+adduser pyratebeard wheel
135
+apk add doas vim openssh
136
+vim /etc/doas.conf
137
+ permit nopass pyratebeard
138
+rc-update add sshd
139
+rc-service sshd start
140
+rc-status
141
+```
142
+logout (`ctrl-a q` to exit console)
143
+
144
+## debian config
145
+```
146
+passwd
147
+apt-get install openssh-server python3
148
+vi /etc/ssh/sshd_config
149
+ PermitRootLogin yes
150
+systemctl reload sshd
151
+```
152
+
153
+### alpine services
154
+add files to /etc/init.d/
155
+```
156
+#!/sbin/openrc-run
157
+name="test"
158
+command="echo hello"
159
+```
160
+
161
+## known errors
162
+* systemd containers fail to start
163
+```
164
+Failed to mount cgroup at /sys/fs/cgroup/systemd: Operation not permitted
165
+[!!!!!!] Failed to mount API filesystems, freezing.
166
+Freezing execution.
167
+```
168
+ * '/sys/fs/cgroup/systemd' dir doesn't exist
169
+ * to fix, create dir, mount cgroup, set permissions [lxc-users group post][]
170
+```
171
+sudo mkdir /sys/fs/cgroup/systemd
172
+sudo mount -t cgroup -o none,name=systemd systemd /sys/fs/cgroup/systemd
173
+sudo chown pyratebeard:users /sys/fs/cgroup/systemd
174
+```
175
+* keyserver not found on `lxc-create`
176
+ * to fix add `DOWNLOAD_KEYSERVER="hkp://keyserver.ubuntu.com:80"` before `lxc-create` cmd
177
+ * https://github.com/lxc/lxc/issues/3874
178
+ * https://github.com/lxc/lxc/commit/f2a5d95d00a55bed27ef9920d67617cc75fecad8
179
+```
180
+Setting up the GPG keyring
181
+ERROR: Unable to fetch GPG key from keyserver
182
+```
183
+* wait_ondaemonized_startL 833 no such file or directory
184
+ * `lxc-start` in foreground gives segmentation fault
185
+```
186
+lxc-start -n test /bin/sh
187
+```
188
+
189
+## moving containers
190
+[so answer]
191
+```
192
+lxc-stop -n $NAME
193
+cd ~/.local/share/lxc/$NAME
194
+sudo tar --numeric-owner -czvf ../$NAME.tgz ./*
195
+chown pyratebeard: ../$NAME.tgz
196
+rsync -avh $NAME.tgz user@hostname:.local/share/lxc/
197
+ssh user@hostname
198
+mkdir ~/.local/share/lxc/$NAME
199
+cd ~/.local/share/lxc/$NAME
200
+sudo tar --numeric-owner -xzvf ../$NAME.tgz .
201
+```
202
+* tried this between wht-rht-obj and fka
203
+ * container runs (after adding user gid to /etc/subgid)
204
+ * no ip address though. veth is created but ip4 not given
205
+* check dir/file permissions
206
+ * .local/share/lxc/$NAME = 755 100000:100000
207
+ * .local/share/lxc/$NAME/rootfs/* = 100000:100000
208
+ * .local/share/lxc/$NAME/config = pyratebeard:users
209
+
210
+## example
211
+### setting up multiple websites behind haproxy
212
+* install openzfs
213
+* start lx daemon
214
+```
215
+sudo apt install zfsutils-linux
216
+sudo lxd init
217
+```
218
+* answer questions
219
+* launch containers
220
+```
221
+lxc launch ubuntu:18.04 subdomain1
222
+lxc launch ubuntu:18.04 subdomain2
223
+lxc launch ubuntu:18.04 haproxy
224
+lxc list
225
+```
226
+
227
+[archwiki_setup]: https://wiki.archlinux.org/title/Linux_Containers#Setup
228
+[redhat_guide]: https://www.redhat.com/sysadmin/exploring-containers-lxc
229
+[linux_containers_guide]: https://linuxcontainers.org/lxc/getting-started/
230
+[lxc-users group post]: https://groups.google.com/a/lists.linuxcontainers.org/g/lxc-users/c/r_8Eww6i9tA
231
+[so answer]: https://stackoverflow.com/questions/23427129/how-do-i-backup-move-lxc-containers#34194341
232
+[5]: https://github.com/lxc/python3-lxc
233
+
234
+gollum haproxy log pastebin radicale site stagit znc ftp
235
+
236
+## debian test
237
+* debian 10 (aws instance)
238
+ * 'admin' user
239
+* `apt-get install lxc dnsmasq-base uidmap`
240
+* follow setup (see own wiki)
241
+* building debian containers works well
242
+* ansible playbook runs using proxyjump in ssh config
243
+* attempting to run haproxy in container
244
+* iptables rules for prerouting
245
+ * `sudo iptables -t nat -I PREROUTING -i eth0 -p TCP -d <public_ip>/24 --dport 80 -j DNAT --to-destination <haproxy_ip>:80`
246
+ * `sudo iptables -t nat -I PREROUTING -i eth0 -p TCP -d <public_ip>/24 --dport 443 -j DNAT --to-destination <haproxy_ip>:443`
247
+ * `sudo iptables -L -n -t nat`
248
+ * `sudo apt-get install iptables-persistent`
249
+* haproxy container
250
+ * `apt-get install haproxy`
251
+ * add the following to the 'global' section
252
+ ```
253
+ ...
254
+ maxconn 2048
255
+ ...
256
+ tune.ssl.default-dh-param 2048
257
+ ```
258
+ * add the following to the 'defaults' section
259
+ ```
260
+ ...
261
+ option forwardfor
262
+ option http-server-close
263
+ ...
264
+ ```
265
+ * create frontend
266
+ ```
267
+ frontend http_frontend
268
+ bind *:80
269
+ acl infratuxture hdr(host) -i penguin.renre.com
270
+ #acl anotherlxc hdr(host) -i anotherdomain.renre.com
271
+ use_backend penguin if infratuxture
272
+ #use_backend anotherdomain if anotherlxc
273
+ ```
274
+ * create backend
275
+ ```
276
+ backend penguin
277
+ balance leastconn
278
+ http-request set-header X-Client-IP %[src]
279
+ server penguin 10.0.3.162:80 check
280
+
281
+ #backend anotherdomain
282
+ # balance leastconn
283
+ # http-request set-header X-Client-IP %[src]
284
+ # server anotherdomain an.oth.er.ip:80 check
285
+ ```
286
+* infratuxture container
287
+ * `apt-get install git lighttpd`
288
+ * pull git repo in html dir
289
+ ```
290
+ cd /var/www/html
291
+ git clone https://git.renre.com/infrastructure/linux-patching.github.io.git .
292
+ ```
software/mariadb.md
... ...
@@ -0,0 +1,23 @@
1
+# mariadb
2
+[knowledgebase](https://mariadb.com/kb/en/)
3
+
4
+```bash
5
+dnf install mariadb mariadb-server
6
+systemctl start mariadb.service
7
+/usr/bin/mysql_secure_installation
8
+mysql -u root -p
9
+```
10
+
11
+```sql
12
+show databases;
13
+show tables;
14
+show columns from table;
15
+show columns from database.table;
16
+```
17
+
18
+## user
19
+```sql
20
+select user from USER;
21
+create USER username;
22
+drop USER if exists username;
23
+```
software/mastodon.md
... ...
@@ -0,0 +1,6 @@
1
+
2
+postgres db on /mnt
3
+mkdir /mnt/HC_Volume_18997263/postgresql
4
+chown --reference /var/lib/postgresql/14/main /mnt/HC_Volume_18997263/postgresql
5
+# change data_dir in postgres.cfg
6
+# chmod 750 !$
software/mosh.md
... ...
@@ -0,0 +1,27 @@
1
+# mosh
2
+
3
+_mosh must be installed on client and server_
4
+
5
+## install
6
+```
7
+yum install mosh
8
+
9
+apt-get install mosh
10
+```
11
+
12
+## usage
13
+on server allow port through firewall
14
+```
15
+firewall-cmd --permanent --add-port=60001/udp
16
+firewall-cmd --reload
17
+```
18
+
19
+on client
20
+```
21
+mosh user@host
22
+```
23
+
24
+if ssh is listening on different port
25
+```
26
+mosh --ssh="ssh -p 22666" user@host
27
+```
software/nagios.md
... ...
@@ -0,0 +1,7 @@
1
+# nagios
2
+[raspbian install][]
3
+
4
+[raspbian install]: https://support.nagios.com/kb/article/nagios-core-installing-nagios-core-from-source-96.html#Raspbian
5
+
6
+## nrpe
7
+https://linoxide.com/monitor-hosts-nagios-nrpe-debian-9/
software/nginx.md
... ...
@@ -0,0 +1,57 @@
1
+# nginx
2
+
3
+## nginx-proxy
4
+the following details how to use `nginx-proxy` to host multiple docker containers ([nginx-proxy guide][])
5
+
6
+- create docker network
7
+ ```
8
+ docker network create nginx-proxy
9
+ ```
10
+- install nginx-proxy container
11
+ ```
12
+ docker run -d --name nginx-proxy \
13
+ -p 80:80 \
14
+ --net nginx-proxy \
15
+ -v /var/run/docker.sock:/tmp/docker.sock \
16
+ jwilder/nginx-proxy
17
+ ```
18
+
19
+### letsencrypt companion
20
+in order to use the [letsencrypt companion][] container with nginx-proxy we need to modify the nginx-proxy run command slightly
21
+
22
+ ```
23
+ docker run -d --name nginx-proxy \
24
+ -p 80:80 -p 443:443 \
25
+ --net nginx-proxy \
26
+ -v /etc/nginx/certs \
27
+ -v /etc/nginx/vhost.d \
28
+ -v /usr/share/nginx/html \
29
+ -v /var/run/docker.sock:/tmp/docker.sock:ro \
30
+ jwilder/nginx-proxy
31
+ ```
32
+
33
+then we can run the `letsencrypt-nginx-proxy-companion` container
34
+
35
+ ```
36
+ docker run -d --name nginx-proxy-letsencrypt \
37
+ --volumes-from nginx-proxy \
38
+ -v /var/run/docker.sock:/var/run/docker.sock:ro \
39
+ -e "DEFAULT_EMAIL=root@pyratebeard.net" \
40
+ jrcs/letsencrypt-nginx-proxy-companion
41
+ ```
42
+
43
+to start the application containers add the `VIRTUAL_HOST` and `LETSENCRYPT_HOST` variables
44
+_using my log container as an example_
45
+
46
+ ```
47
+ docker run -d --name "$CONTAINER_NAME" \
48
+ --expose 1313 \
49
+ --net nginx-proxy \
50
+ -e VIRTUAL_HOST=log.pyratebeard.net \
51
+ -e LETSENCRYPT_HOST=log.pyratebeard.net \
52
+ -v $(pwd):/src \
53
+ $CI_REGISTRY_IMAGE
54
+ ```
55
+
56
+[nginx-proxy guide]: https://blog.ssdnodes.com/blog/host-multiple-websites-docker-nginx/
57
+[letsencrypt companion]: https://github.com/JrCs/docker-letsencrypt-nginx-proxy-companion
software/ntfy.md
... ...
@@ -0,0 +1,10 @@
1
+# ntfy
2
+
3
+running on devuan 10 lxc container
4
+
5
+```
6
+sudo apt install gnupg apt-transport-https
7
+curl -sSL https://archive.heckel.io/apt/pubkey.txt | sudo apt-key add -
8
+sudo sh -c "echo 'deb [arch=amd64] https://archive.heckel.io/apt debian main' > /etc/apt/sources.list.d/archive.heckel.io.list"
9
+sudo apt update && sudo apt install ntfy
10
+```
software/openssl.md
... ...
@@ -0,0 +1,26 @@
1
+# openssl
2
+
3
+## check https connection
4
+```
5
+openssl s_client -connect domain.com:443
6
+```
7
+
8
+## encrypt file
9
+```
10
+openssl enc -aes-256-cbc -salt -in examplefile -out examplefile.enc
11
+```
12
+
13
+## decrypt file
14
+```
15
+openssl enc -aes-256-cbc -d -in examplefile.enc -out examplefile
16
+```
17
+
18
+## compare {cert,key,csr}
19
+```
20
+openssl x509 -noout -modulus -in example.crt | openssl md5
21
+openssl rsa -noout -modulus -in example.key | openssl md5
22
+openssl req -noout -modulus -in example.csr | openssl md5
23
+```
24
+
25
+## encryption
26
+https://linuxconfig.org/using-openssl-to-encrypt-messages-and-files-on-linux
software/openvpn.md
... ...
@@ -0,0 +1,31 @@
1
+# openvpn
2
+
3
+## setup server
4
+```
5
+sudo apt-get update && sudo apt-get upgrade
6
+sudo apt-get install openvpn easy-rsa
7
+```
8
+... all same until /etc/openvpn/easy-rsa/keys
9
+```
10
+cd /etc/openvpn/easy-rsa/
11
+cp vars.example vars
12
+vi vars
13
+```
14
+- uncomment and modify following lines
15
+```
16
+#set_var EASYRSA_REQ_COUNTRY "US"
17
+#set_var EASYRSA_REQ_PROVINCE "California"
18
+#set_var EASYRSA_REQ_CITY "San Francisco"
19
+#set_var EASYRSA_REQ_ORG "Copyleft Certificate Co"
20
+#set_var EASYRSA_REQ_EMAIL "me@example.net"
21
+#set_var EASYRSA_REQ_OU "My Organizational Unit"
22
+```
23
+- save and close
24
+```
25
+./easyrsa init-pki
26
+```
27
+
28
+when service starts and waits for password in the background use this to enter password
29
+```
30
+sudo systemd-tty-ask-password-agent --query
31
+```
software/oracle.md
... ...
@@ -0,0 +1,11 @@
1
+# oracle
2
+
3
+- show max number of connections allowed
4
+```sql
5
+select name,value from v$parameter where name = 'sessions';
6
+```
7
+
8
+- show current active connections
9
+```sql
10
+select count(*) from v$session;
11
+```
software/pandoc.md
... ...
@@ -0,0 +1,8 @@
1
+# pandoc
2
+
3
+## curl webpages to man ([xero's trick][])
4
+```
5
+curl http://webpage.com | pandoc -s -f html -t man | man -l -
6
+```
7
+
8
+[xero's trick]: https://nixers.net/showthread.php?tid=1679&pid=15789&highlight=pandoc#pid15789
software/peertube.md
... ...
@@ -0,0 +1,93 @@
1
+ https://docs.joinpeertube.org/#/install-any-os
2
+
3
+ 1 sudo -i
4
+ 39 apt-get install curl sudo unzip vim
5
+ 40 getent group wheel
6
+ 41 getent group sudo
7
+ 42 useradd -m /home/pyratebeard -G sudo pyratebeard
8
+ 43 useradd -m -d /home/pyratebeard -G sudo pyratebeard
9
+ 44 passwd pyratebeard
10
+ 45 vim /etc/passwd
11
+ 46 ip a
12
+ 47 l
13
+ 48 visudo
14
+ 49 cat /etc/debian_version
15
+ 50 apt-get install certbot python-certbot-nginx nginx
16
+ 2 sudo certbot --nginx
17
+ 3 apt-cache search nodejs
18
+ 4 curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
19
+ 5 apt-get install -y nodejs
20
+ 6 sudo apt-get install -y nodejs
21
+ 7 sudo apt-get install -y build-essential
22
+ 8 curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
23
+ 9 echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
24
+ 10 sudo apt update && sudo apt install yarn
25
+ 11 sudo apt update
26
+ 12 udo apt install nginx ffmpeg postgresql postgresql-contrib openssl g++ make redis-server git python-dev
27
+ 13 sudo apt install nginx ffmpeg postgresql postgresql-contrib openssl g++ make redis-server git python-dev
28
+ 14 ffmpeg -version
29
+ 15 g++ -v
30
+ 16 sudo systemctl start redis postgresql
31
+ 17 $ sudo useradd -m -d /var/www/peertube -s /bin/bash -p peertube peertube
32
+ 18 sudo useradd -m -d /var/www/peertube -s /bin/bash -p peertube peertube
33
+ 19 sudo passwd peertube
34
+ 20 sudo -u postgres createuser -P peertube
35
+ 21 sudo -u postgres createdb -O peertube -E UTF8 -T template0 peertube_prod
36
+ 22 sudo -u postgres psql -c "CREATE EXTENSION pg_trgm;" peertube_prod
37
+ 23 sudo -u postgres psql -c "CREATE EXTENSION unaccent;" peertube_prod
38
+ 24 VERSION=$(curl -s https://api.github.com/repos/chocobozzz/peertube/releases/latest | grep tag_name | cut -d '"' -f 4) && echo "Latest Peertube version is $VERSION"
39
+ 25 cd /var/www/peertube && sudo -u peertube mkdir config storage versions && cd versions
40
+ 26 sudo -u peertube wget -q "https://github.com/Chocobozzz/PeerTube/releases/download/${VERSION}/peertube-${VERSION}.zip"
41
+ 27 sudo -u peertube unzip peertube-${VERSION}.zip && sudo -u peertube rm peertube-${VERSION}.zip
42
+ 28 cd ../ && sudo -u peertube ln -s versions/peertube-${VERSION} ./peertube-latest
43
+ 29 cd ./peertube-latest && sudo -H -u peertube yarn install --production --pure-lockfile
44
+ 30 cd /var/www/peertube && sudo -u peertube cp peertube-latest/config/production.yaml.example config/production.yaml
45
+ 31 vim config/production.yaml
46
+ 32 sudo vim config/production.yaml
47
+ 33 sudo cp /var/www/peertube/peertube-latest/support/nginx/peertube /etc/nginx/sites-available/peertube
48
+ 34 sudo sed -i 's/peertube.example.com/tube.pyratebeard.net/g' /etc/nginx/sites-available/peertube
49
+ 35 sudo vim /etc/nginx/sites-available/peertube
50
+ 36 ll /var/www/
51
+ 37 ls -l /var/www/
52
+ 38 sudo ln -s /etc/nginx/sites-available/peertube /etc/nginx/sites-enabled/peertube
53
+ 39 sudo systemctl stop nginx
54
+ 40 sudo vim /etc/nginx/sites-available/peertube
55
+ 41 sudo certbot --authenticator standalone --installer nginx --post-hook "systemctl start nginx"
56
+ 42 sudo vim /etc/nginx/sites-available/peertube
57
+ 43 sudo systemctl reload nginx
58
+ 44 sudo cp /var/www/peertube/peertube-latest/support/sysctl.d/30-peertube-tcp.conf /etc/sysctl.d/
59
+ 45 sudo sysctl -p /etc/sysctl.d/30-peertube-tcp.conf
60
+ 46 sudo cp /var/www/peertube/peertube-latest/support/systemd/peertube.service /etc/systemd/system/
61
+ 47 sudo vim /etc/systemd/system/peertube.service
62
+ 48 sudo systemctl daemon-reload
63
+ 49 sudo systemctl enable peertube
64
+ 50 sudo systemctl start peertube
65
+ 51 sudo journalctl -feu peertube
66
+ 52 sudo systemctl stop peertube
67
+ 53 less /var/www/peertube/.npm/_logs/2020-04-14T21_31_22_591Z-debug.log
68
+ 54 vim config/production.yaml
69
+ 55 sudo vim config/production.yaml
70
+ 56 sudo systemctl start peertube
71
+ 57 sudo journalctl -feu peertube
72
+ 58 cd /etc/nginx/sites-available/
73
+ 60 ls -l
74
+ 61 vim peertube
75
+ 62 sudo systemctl reload nginx
76
+ 63 cd -
77
+ 64 sudo vim config/production.yaml
78
+ 65 cd -
79
+ 66 vim peertube
80
+ 67 cd ../
81
+ 68 ll sites-enabled/
82
+ 69 ls -l sites-enabled/
83
+ 70 unlink sites-enabled/default
84
+ 71 sudo unlink sites-enabled/default
85
+ 72 ls -l sites-enabled/
86
+ 73 sudo systemctl reload nginx
87
+ 74 sudo journalctl -feu peertube
88
+ 75 cd -
89
+ 76 cd /var/www/peertube/
90
+ 77 vim config/production.yaml
91
+ 78 sudo vim config/production.yaml
92
+ 79 history
93
+
software/postgresql.md
... ...
@@ -0,0 +1,31 @@
1
+```
2
+psql -U user db
3
+\l # list databases
4
+\c db # connect to database
5
+\dt # list tables
6
+```
7
+
8
+## mastodon
9
+* change user password (doesn't have one by default)
10
+```
11
+psql -p 5432 -U mastodon mastodon_production -w
12
+alter user mastodon with password '<password>';
13
+```
14
+update `.env.production`
15
+
16
+### setting up nagios monitoring
17
+* download check_postgres plugin
18
+```
19
+cd /opt/nagios/custom_plugins
20
+wget "https://bucardo.org/downloads/check_postgres.tar.gz"
21
+tar xf check_postgres.tar.gz
22
+cd check_postgres...
23
+./check_postgres.pl --symlinks
24
+```
25
+* open port on mastodon server
26
+```
27
+iptables -A INPUT -p tcp -s laundry.tilde.gdn --dport 5432 -m state --state NEW,ESTABLISHED -j ACCEPT
28
+```
29
+https://www.digitalocean.com/community/tutorials/how-to-monitor-your-managed-postgresql-database-using-nagios-core-on-ubuntu-18-04
30
+
31
+
software/qemu.md
... ...
@@ -0,0 +1,18 @@
1
+# qemu
2
+
3
+## create vm
4
+```
5
+qemu-img create -f qcow2 <filename> 4g
6
+```
7
+- `create [-f FMT] filename [size]`
8
+ - size is disk image size in bytes
9
+
10
+## install system
11
+```
12
+qemu-system-x86_64 -m 1g -cdrom /path/to/iso -boot order=d -drive file=<filename>,format=qcow2
13
+```
14
+
15
+## start system
16
+```
17
+qemu-system-x86_64 <filename>
18
+```
software/scanning.md
... ...
@@ -0,0 +1,24 @@
1
+# scanning
2
+
3
+[sane docs][]
4
+
5
+## usb scanner on arch linux
6
+```
7
+pacman -S sane ipp-usb
8
+systemctl enable ipp-usb
9
+systemctl start ipp-usb
10
+scanimage -L # check scanner is available
11
+scanimage --format=(pnm|png|tiff|jpeg) --output-file <filename> --progress
12
+scanimage --resolution 1200 >output.pnm
13
+```
14
+
15
+* if no format provided defaults to pnm
16
+* `man scanimage` for more options
17
+
18
+## convert to pdf
19
+* requires `imagemagick`
20
+```
21
+convert <filename> <new_filename>.pdf
22
+```
23
+
24
+[sane docs]: https://tldp.org/HOWTO/Scanner-HOWTO/index.html
software/snmp.md
... ...
@@ -0,0 +1,5 @@
1
+# snmp
2
+
3
+```
4
+snmpwalk -Os -c public -v 1 localhost system
5
+```
software/subnet_cheatsheet.md
... ...
@@ -0,0 +1,263 @@
1
+# subnet cheatsheet
2
+
3
+https://oav.net/mirrors/cidr.html
4
+
5
+```
6
+Netmask Netmask (binary) CIDR Notes
7
+_____________________________________________________________________________
8
+255.255.255.255 11111111.11111111.11111111.11111111 /32 Host (single addr)
9
+255.255.255.254 11111111.11111111.11111111.11111110 /31 Unuseable
10
+255.255.255.252 11111111.11111111.11111111.11111100 /30 2 useable
11
+255.255.255.248 11111111.11111111.11111111.11111000 /29 6 useable
12
+255.255.255.240 11111111.11111111.11111111.11110000 /28 14 useable
13
+255.255.255.224 11111111.11111111.11111111.11100000 /27 30 useable
14
+255.255.255.192 11111111.11111111.11111111.11000000 /26 62 useable
15
+255.255.255.128 11111111.11111111.11111111.10000000 /25 126 useable
16
+255.255.255.0 11111111.11111111.11111111.00000000 /24 "Class C" 254 useable
17
+
18
+255.255.254.0 11111111.11111111.11111110.00000000 /23 2 Class C's
19
+255.255.252.0 11111111.11111111.11111100.00000000 /22 4 Class C's
20
+255.255.248.0 11111111.11111111.11111000.00000000 /21 8 Class C's
21
+255.255.240.0 11111111.11111111.11110000.00000000 /20 16 Class C's
22
+255.255.224.0 11111111.11111111.11100000.00000000 /19 32 Class C's
23
+255.255.192.0 11111111.11111111.11000000.00000000 /18 64 Class C's
24
+255.255.128.0 11111111.11111111.10000000.00000000 /17 128 Class C's
25
+255.255.0.0 11111111.11111111.00000000.00000000 /16 "Class B"
26
+
27
+255.254.0.0 11111111.11111110.00000000.00000000 /15 2 Class B's
28
+255.252.0.0 11111111.11111100.00000000.00000000 /14 4 Class B's
29
+255.248.0.0 11111111.11111000.00000000.00000000 /13 8 Class B's
30
+255.240.0.0 11111111.11110000.00000000.00000000 /12 16 Class B's
31
+255.224.0.0 11111111.11100000.00000000.00000000 /11 32 Class B's
32
+255.192.0.0 11111111.11000000.00000000.00000000 /10 64 Class B's
33
+255.128.0.0 11111111.10000000.00000000.00000000 /9 128 Class B's
34
+255.0.0.0 11111111.00000000.00000000.00000000 /8 "Class A"
35
+
36
+254.0.0.0 11111110.00000000.00000000.00000000 /7
37
+252.0.0.0 11111100.00000000.00000000.00000000 /6
38
+248.0.0.0 11111000.00000000.00000000.00000000 /5
39
+240.0.0.0 11110000.00000000.00000000.00000000 /4
40
+224.0.0.0 11100000.00000000.00000000.00000000 /3
41
+192.0.0.0 11000000.00000000.00000000.00000000 /2
42
+128.0.0.0 10000000.00000000.00000000.00000000 /1
43
+0.0.0.0 00000000.00000000.00000000.00000000 /0 IP space
44
+```
45
+
46
+```
47
+ Net Host Total
48
+Net Addr Addr Addr Number
49
+Class Range NetMask Bits Bits of hosts
50
+----------------------------------------------------------
51
+A 0-127 255.0.0.0 8 24 16777216 (i.e. 114.0.0.0)
52
+B 128-191 255.255.0.0 16 16 65536 (i.e. 150.0.0.0)
53
+C 192-254 255.255.255.0 24 8 256 (i.e. 199.0.0.0)
54
+D 224-239 (multicast)
55
+E 240-255 (reserved)
56
+F 208-215 255.255.255.240 28 4 16
57
+G 216/8 ARIN - North America
58
+G 217/8 RIPE NCC - Europe
59
+G 218-219/8 APNIC
60
+H 220-221 255.255.255.248 29 3 8 (reserved)
61
+K 222-223 255.255.255.254 31 1 2 (reserved)
62
+(ref: RFC1375 & http://www.iana.org/assignments/ipv4-address-space )
63
+( http://www.iana.org/numbers.htm )
64
+----------------------------------------------------------
65
+```
66
+
67
+The current list of special use prefixes:
68
+```
69
+ 0.0.0.0/8
70
+ 127.0.0.0/8
71
+ 192.0.2.0/24
72
+ 10.0.0.0/8
73
+ 172.16.0.0/12
74
+ 192.168.0.0/16
75
+ 169.254.0.0/16
76
+ all D/E space
77
+```
78
+- (ref: RFC1918 http://www.rfc-editor.org/rfc/rfc1918.txt )
79
+- ( or ftp://ftp.isi.edu/in-notes/rfc1918.txt )
80
+- (rfc search: http://www.rfc-editor.org/rfcsearch.html )
81
+- ( http://www.ietf.org/ietf/1id-abstracts.txt )
82
+- ( http://www.ietf.org/shadow.html )
83
+
84
+
85
+Martians: (updates at: www.iana.org/assignments/ipv4-address-space )
86
+```
87
+ no ip source-route
88
+ access-list 100 deny ip host 0.0.0.0 any
89
+ deny ip 0.0.0.0 0.255.255.255 any log ! antispoof
90
+ deny ip 0.0.0.0 0.255.255.255 0.0.0.0 255.255.255.255 ! antispoof
91
+ deny ip any 255.255.255.128 0.0.0.127 ! antispoof
92
+ deny ip host 0.0.0.0 any log ! antispoof
93
+ deny ip host [router intf] [router intf] ! antispoof
94
+ deny ip xxx.xxx.xxx.0 0.0.0.255 any log ! lan area
95
+ deny ip 0/8 0.255.255.255 any log ! IANA - Reserved
96
+ deny ip 1/8 0.255.255.255 any log ! IANA - Reserved
97
+ deny ip 2/8 0.255.255.255 any log ! IANA - Reserved
98
+ deny ip 5/8 0.255.255.255 any log ! IANA - Reserved
99
+ deny ip 7/8 0.255.255.255 any log ! IANA - Reserved
100
+ deny ip 10.0.0.0 0.255.255.255 any log ! IANA - Private Use
101
+ deny ip 23/8 0.255.255.255 any log ! IANA - Reserved
102
+ deny ip 27/8 0.255.255.255 any log ! IANA - Reserved
103
+ deny ip 31/8 0.255.255.255 any log ! IANA - Reserved
104
+ deny ip 36-37/8 0.255.255.255 any log ! IANA - Reserved
105
+ deny ip 39/8 0.255.255.255 any log ! IANA - Reserved
106
+ deny ip 41-42/8 0.255.255.255 any log ! IANA - Reserved
107
+ deny ip 50/8 0.255.255.255 any log ! IANA - Reserved
108
+ deny ip 58-60/8 0.255.255.255 any log ! IANA - Reserved
109
+ deny ip 69-79/8 0.255.255.255 any log ! IANA - Reserved
110
+ deny ip 82-95/8 0.255.255.255 any log ! IANA - Reserved
111
+ deny ip 96-126/8 0.255.255.255 any log ! IANA - Reserved
112
+ deny ip 127/8 0.255.255.255 any log ! IANA - Reserved
113
+ deny ip 169.254.0.0 0.0.255.255 any log ! link-local network
114
+ deny ip 172.16.0.0 0.15.255.255 any log ! reserved
115
+ deny ip 192.168.0.0 0.0.255.255 any log ! reserved
116
+ deny ip 192.0.2.0 0.0.0.255 any log ! test network
117
+ deny ip 197/8 0.255.255.255 any log ! IANA - Reserved
118
+ deny ip 220/8 0.255.255.255 any log ! IANA - Reserved
119
+ deny ip 222-223/8 0.255.255.255 any log ! IANA - Reserved
120
+ deny ip 224.0.0.0 31.255.255.255 any log ! multicast
121
+ deny ip 224.0.0.0 15.255.255.255 any log ! unless MBGP-learned routes
122
+ deny ip 224-239/8 0.255.255.255 any log ! IANA - Multicast
123
+ deny ip 240-255/8 0.255.255.255 any log ! IANA - Reserved
124
+```
125
+
126
+```
127
+filtered source addresses
128
+ 0/8 ! broadcast
129
+ 10/8 ! RFC 1918 private
130
+ 127/8 ! loopback
131
+ 169.254.0/16 ! link local
132
+ 172.16.0.0/12 ! RFC 1918 private
133
+ 192.0.2.0/24 ! TEST-NET
134
+ 192.168.0/16 ! RFC 1918 private
135
+ 224.0.0.0/4 ! class D multicast
136
+ 240.0.0.0/5 ! class E reserved
137
+ 248.0.0.0/5 ! reserved
138
+ 255.255.255.255/32 ! broadcast
139
+```
140
+
141
+ARIN administrated blocks: (http://www.arin.net/regserv/IPStats.html)
142
+```
143
+ 24.0.0.0/8 (portions of)
144
+ 63.0.0.0/8
145
+ 64.0.0.0/8
146
+ 65.0.0.0/8
147
+ 66.0.0.0/8
148
+ 196.0.0.0/8
149
+ 198.0.0.0/8
150
+ 199.0.0.0/8
151
+ 200.0.0.0/8
152
+ 204.0.0.0/8
153
+ 205.0.0.0/8
154
+ 206.0.0.0/8
155
+ 207.0.0.0/8
156
+ 208.0.0.0/8
157
+ 209.0.0.0/8
158
+ 216.0.0.0/8
159
+```
160
+----------------------------------------------------------
161
+
162
+well known ports: (rfc1700.txt)
163
+ - www.iana.org/assignments/port-numbers
164
+
165
+protocol numbers:
166
+ - www.iana.org/assignments/protocol-numbers
167
+ - www.iana.org/numbers.htm
168
+
169
+ICMP(Types/Codes)
170
+```
171
+ Testing Destination Reachability & Status
172
+ (0/0) Echo-Reply
173
+ (8/0) Echo
174
+ Unreachable Destinations
175
+ (3/0) Network Unreachable
176
+ (3/1) Host Unreachable
177
+ (3/2) Protocol Unreachable
178
+ (3/3) Port Unreachable
179
+ (3/4) Fragmentaion Needed and DF set (Pkt too big)
180
+ (3/5) Source Route Failed
181
+ (3/6) Network Unknown
182
+ (3/7) Host Unknown
183
+ (3/9) DOD Net Prohibited
184
+ (3/10) DOD Host Prohibited
185
+ (3/11) Net TOS Unreachable
186
+ (3/12) Host TOS Unreachable
187
+ (3/13) Administratively Prohibited
188
+ (3/14) Host Precedence Unreachable
189
+ (3/15) Precedence Unreachable
190
+ Flow Control
191
+ (4/0) Source-Quench [RFC 1016]
192
+ Route Change Requests from Gateways
193
+ (5/0) Redirect Datagrams for the Net
194
+ (5/1) Redirect Datagrams for the Host
195
+ (5/2) Redirect Datagrams for the TOS and Net
196
+ (5/3) Redirect Datagrams for the TOS and Host
197
+ Router
198
+ (6/-) Alternate-Address
199
+ (9/0) Router-Advertisement
200
+ (10/0) Router-Solicitation
201
+ Detecting Circular or Excessively Long Routes
202
+ (11/0) Time to Live Count Exceeded
203
+ (11/1) Fragment Reassembly Time Exceeded
204
+ Reporting Incorrect Datagram Headers
205
+ (12/0) Parameter-Problem
206
+ (12/1) Option Missing
207
+ (12/2) No Room for Option
208
+ Clock Synchronization and Transit Time Estimation
209
+ (13/0) Timestamp-Request
210
+ (14/0) Timestamp-Reply
211
+ Obtaining a Network Address (RARP Alternative)
212
+ (15/0) Information-Request
213
+ (16/0) Information-Reply
214
+ Obtaining a Subnet Mask [RFC 950]
215
+ (17/0) Address Mask-Request
216
+ (18/0) Address Mask-Reply
217
+ Other
218
+ (30/0) Traceroute
219
+ (31/0) Conversion-Error
220
+ (32/0) Mobile-Redirect
221
+```
222
+
223
+Ref: [RFC 792] [RFC 896] [RFC 950] [RFC 1016]
224
+ www.cisco.com/univercd/cc/td/doc/product/lan/cat6000/sw_5_3/cofigide/qos.htm#19774
225
+
226
+
227
+
228
+```
229
+Decimal system Prefix's
230
+ Factor Exponent Prefix
231
+---------------------------------------------------
232
+ 1 000 000 000 000 000 000 000 000...10^24....yotta
233
+ 1 000 000 000 000 000 000 000...10^21....zetta
234
+ 1 000 000 000 000 000 000...10^18....exa
235
+ 1 000 000 000 000 000...10^15....peta
236
+ 1 000 000 000 000...10^12....tera
237
+ 1 000 000 000...10^9.....giga
238
+ 1 000 000...10^6.....mega
239
+ 1 000...10^3.....kilo
240
+ 100...10^2.....hecto
241
+ 10...10^1.....deka
242
+ 0.1...10^-1....deci
243
+ 0.01...10^-2....centi
244
+ 0.001...10^-3....milli
245
+ 0.000 001...10^-6....micro
246
+ 0.000 000 001...10^-9....nano
247
+ 0.000 000 000 001...10^-12...pico
248
+ 0.000 000 000 000 001...10^-15...femto
249
+ 0.000 000 000 000 000 001...10^-18...atto
250
+ 0.000 000 000 000 000 000 001...10^-21...zepto
251
+ 0.000 000 000 000 000 000 000 001...10^-24...yocto
252
+---------------------------------------------------
253
+
254
+```
255
+- Convert Fahrenheit <> Celsius:
256
+ - Celsius = (Fahrenheit - 32) / 1.8
257
+ - Fahrenheit = (Celsius * 1.8) + 32
258
+
259
+
260
+last updated: 4jul02
261
+
262
+
263
+
software/svn.md
... ...
@@ -0,0 +1,23 @@
1
+# svn
2
+
3
+[dave child cheatsheet][]
4
+
5
+[abbey workshop howto][]
6
+
7
+```
8
+svn checkout --username=pyratebeard http://example.com/svn/repo/trunk localrepo
9
+
10
+svn status
11
+
12
+svn update /path
13
+```
14
+
15
+only need add for new directories or files
16
+```
17
+svn add /path|file
18
+
19
+svn commit -m "message" /path|file
20
+```
21
+
22
+[dave child cheatsheet]: https://www.cheatography.com/davechild/cheat-sheets/subversion/
23
+[abbey workshop howto]: https://www.abbeyworkshop.com/howto/misc/svn01/
software/tcpdump.md
... ...
@@ -0,0 +1,21 @@
1
+# tcpdump
2
+
3
+## capture entire packet
4
+```
5
+tcpdump -nnvvXSs 1514 -i eth0
6
+```
7
+- nn : don't convert hostnames or port names
8
+- vv : verbosity level
9
+- X : payload. shows packet contents in both ASCII and HEX
10
+- S : prints absolute sequence numbers
11
+- s : set snaplen (in this case 1514)
12
+
13
+## read entire packet
14
+```
15
+tcpdump -qns 0 -A -r <filename>
16
+```
17
+- q : quiet
18
+- n : don't convert host names
19
+- s : set snaplen (0 means catch whole packets)
20
+- A : print each packet in ASCII
21
+- r : read from file
software/usenet.md
... ...
@@ -0,0 +1,4 @@
1
+# usenet
2
+
3
+## tin
4
+* hit `g` to subscribe to new group (group list under ~/.tin/<server>/newsgroups)
software/veracrypt.md
... ...
@@ -0,0 +1,9 @@
1
+# veracrypt
2
+
3
+## mount/umount
4
+```
5
+veracrypt /dev/sdb1 /mnt
6
+veracrypt -p $(pass devices/backup_drive/veracrypt) /dev/sdb1 /mnt
7
+veracrypt -d /mnt
8
+```
9
+
software/wagtail.md
... ...
@@ -0,0 +1,15 @@
1
+# wagtail
2
+
3
+[docs][]
4
+
5
+## install
6
+### pre-reqs
7
+- python
8
+- pip
9
+- django
10
+
11
+```
12
+pip3 install wagtail
13
+```
14
+
15
+[docs]: http://docs.wagtail.io/en/v2.3/getting_started/tutorial.html
software/wifi_connect.md
... ...
@@ -0,0 +1,10 @@
1
+
2
+```
3
+ip link show wlp2s0
4
+ip link set wlp2s0 up
5
+iw wlp2s0 link
6
+sudo iw wlp2s0 scan | grep -i ssid
7
+ps -ef | grep wpa_supplicant
8
+sudo kill -9 <pid>
9
+connect lib/doc/wifi/home ; sudo dhclient wlp2s0
10
+```
software/znc.md
... ...
@@ -0,0 +1,15 @@
1
+# znc
2
+
3
+## install
4
+
5
+guide for [installing][] on centos (requires [epel-release][])
6
+```
7
+yum install epel-release
8
+yum install znc
9
+sudo -u znc znc --makeconf
10
+semanage port -a -t http_port_t -p tcp 1666
11
+firewall-cmd --permanent --add-port=1666/tcp
12
+```
13
+
14
+[installing]: https://wiki.znc.in/Installation#Fedora.2FCentOS.2FRed_Hat_Enterprise_Linux
15
+[epel-release]: https://fedoraproject.org/wiki/EPEL#How_can_I_use_these_extra_packages.3F
tech-index.md
... ...
@@ -0,0 +1,82 @@
1
+# tech
2
+## operating systems
3
+* linux
4
+* unix
5
+
6
+## everyday tools
7
+* [vim](/edt/vim)
8
+* [git](/edt/git)
9
+* [tmux](/edt/tmux)
10
+* [mutt](/edt/mutt)
11
+* [vimwiki](/edt/vimwiki)
12
+* [irc](/edt/irc)
13
+* [mail](/edt/mail)
14
+
15
+## programming
16
+* shell_scripts
17
+* python
18
+* [c](/programming/c)
19
+* [android](/programming/android)
20
+
21
+## software
22
+
23
+### vcs
24
+* [svn](/software/svn)
25
+
26
+### containers
27
+* [lxc](/software/lxc)
28
+* [docker](/software/docker)
29
+* [k8s](/software/kubernetes)
30
+
31
+* [durdraw](/software/durdraw)
32
+* [gollum](/software/gollum)
33
+* [pandoc](/software/pandoc)
34
+* [latex](/software/latex)
35
+* [scanning](/software/scanning)
36
+* [grafana](/software/grafana)
37
+* [ldap](/software/ldap)
38
+* [exim4](/software/exim4)
39
+* [ftp](/software/ftp)
40
+* [mosh](/software/mosh)
41
+* [usenet](/software/usenet)
42
+* [znc](/software/znc)
43
+* [mariadb](/software/mariadb)
44
+* [oracle](/software/oracle)
45
+* [postgresql](/software/postgresql)
46
+* [gpg](/software/gpg)
47
+* [openssl](/software/openssl)
48
+* [veracrypt](/software/veracrypt)
49
+* [nagios](/software/nagios)
50
+* [ntfy](/software/ntfy)
51
+* [snmp](/software/snmp)
52
+* [tcpdump](/software/tcpdump)
53
+* [bluetooth](/software/bluetooth)
54
+* [firewalls](/software/firewalls)
55
+* [haproxy](/software/haproxy)
56
+* [openssl](/software/openssl)
57
+* [openvpn](/software/openvpn)
58
+* [envoy](/software/envoy)
59
+* [subnet_cheatsheet](/software/subnet_cheatsheet)
60
+* [wifi_connect](/software/wifi_connect)
61
+* [esxi](/software/esxi)
62
+* [qemu](/software/qemu)
63
+* [certbot](/software/certbot)
64
+* [django](/software/django)
65
+* [gopher](/software/gopher)
66
+* [httpd](/software/httpd)
67
+* [mastodon](/software/mastodon)
68
+* [nginx](/software/nginx)
69
+* [peertube](/software/peertube)
70
+* [wagtail](/software/wagtail)
71
+
72
+iwgetid wlp6s0 -r
73
+
74
+
75
+## hardware
76
+* [arduino](/hardware/arduino)
77
+* [trezor](/hardware/trezor)
78
+* [neos_smartcam](/hardware/neos_smartcam)
79
+
80
+## cloud and saas
81
+* [azure](/cloud_saas/azure)
82
+* [openshift](/cloud_saas/openshift)
technology/authentication/index.md
... ...
@@ -1,3 +0,0 @@
1
-# authentication
2
-
3
-- [ldap](ldap)
technology/authentication/ldap.md
... ...
@@ -1,5 +0,0 @@
1
-# ldap
2
-
3
-```
4
-ldapsearch -v -x -LLL -h host -D "bind DN" -w password -b "OU="
5
-```
technology/automation/ansible.md
... ...
@@ -1 +0,0 @@
1
-# ansible
technology/automation/index.md
... ...
@@ -1,3 +0,0 @@
1
-# automation
2
-
3
-- [ansible](ansible)
technology/cloud/azure.md
... ...
@@ -1,169 +0,0 @@
1
-# azure
2
-
3
-## az cli
4
-[docs][]
5
-
6
-### useful cmds
7
- - show list of resource groups
8
- ```
9
- az group list --output table
10
- ```
11
- - list resources in a resource group
12
- ```
13
- az resource list -g <group_name> --output table
14
- ```
15
-
16
-create debian machine with no public ip and in prebuilt subnet, with tags
17
-```
18
-az vm create -g my-resource-group -n my-debian-vm --vnet-name my-vnet --nsg "" --image Debian --ssh-key-value .ssh/id_rsa.pub --admin-username pyratebeard --tags created-by=pyratebeard --public-ip-address "" --subnet my-subnet
19
-```
20
-
21
-install the azure cli command `az` by running the following
22
-```
23
-curl -L https://aka.ms/InstallAzureCLI | bash
24
-```
25
-
26
-once installed login in to your account with
27
-```
28
-az login
29
-```
30
-
31
-to switch to a different account run
32
-```
33
-az logout
34
-```
35
-
36
-then run the login command again.
37
-
38
-all the following steps _can_ be run from the portal cli as well as your local machine once you have installed `az`.
39
-
40
-### changing subscriptions
41
-
42
-check your subscriptions
43
-```
44
-az account list --output table
45
-```
46
-
47
-show which subscription you're currently using
48
-```
49
-az account show
50
-```
51
-
52
-then to change subscriptions run
53
-```
54
-az account set --subscription "My Other Subscription"
55
-```
56
-
57
-### show vm images
58
-```
59
-az image list
60
-```
61
-
62
-### getting started
63
-
64
-here is a quick run through of spinning up a [centos][] virtual machine
65
-
66
- - create resource group
67
- ```
68
- az group create --name D-TST-RGRP --location northeurope
69
- ```
70
- - create Network Security Group
71
- ```
72
- az network nsg create --resource-group D-TST-RGRP --name D-TST-LAPP01
73
- ```
74
- - create a network rule in an existing security group
75
- ```
76
- az network nsg rule create --resource-group D-TST-RGRP --nsg-name D-TST-NSGP --name allow-access --description "Allow all traffic from my public range" --access Allow --protocol Tcp --direction Inbound --priority 102 --source-address-prefix "97.108.19.240/28" --source-port-range "*" --destination-address-prefix "*" --destination-port-range "*"
77
- ```
78
- - create a virtual machine
79
- ```
80
- az vm create -g D-TST-RGRP -n D-TST-LAPP01 --image CentOS --generate-ssh-keys
81
- ```
82
-
83
-once the VM is successfully created it will output some json. make note of the "publicIpAddress" value, and use this to `ssh` to the server.
84
-
85
-## advanced tools
86
-
87
-the following are a collection of tools which have been played around with. some of these tools may require escalated privileges which your account may not have. if you are unable to action anything and really desperately need to then speak to one of the azure admins.
88
-
89
-you can check your current role with the cli. first you need to make a note of the username for the subscription you're using
90
-```
91
-az account show
92
-{
93
- "environmentName": "AzureCloud",
94
- "id": "",
95
- "isDefault": true,
96
- "name": "My Subscription",
97
- "state": "Enabled",
98
- "tenantId": "",
99
- "user": {
100
- "name": "dudley@onmicrosoft.com",
101
- "type": "user"
102
- }
103
-}
104
-```
105
-copy the value from `"user": "name":`, then run the following replacing `<value>` with the username (usually an email address)
106
-```
107
-az role assignment list --assignee <value>
108
-[
109
- {
110
- "id": "/subscriptions/providers/Microsoft.Authorization/roleAssignments/",
111
- "name": "",
112
- "properties": {
113
- "principalId": "",
114
- "principalName": "dudley@onmicrosoft.com",
115
- "roleDefinitionId": "/subscriptions/providers/Microsoft.Authorization/roleDefinitions/",
116
- "roleDefinitionName": "Contributor",
117
- "scope": "/subscriptions/"
118
- },
119
- "type": "Microsoft.Authorization/roleAssignments"
120
- }
121
-]
122
-```
123
-your current role is under `"properties": "roleDefinitionName":`
124
-
125
-## show all resources in your subscription
126
-```
127
-az group list --output table
128
-```
129
-
130
-## deploy a kubernetes cluster
131
-
132
-we add the `aks` option to manage azure kubernetes services. Currently aks is only available in west europe
133
-```
134
-az group create --name D-K8S-RGRP --location westeurope
135
-az aks create --name D-K8S-KCLU --resource-group D-K8S-RGRP --generate-ssh-keys
136
-az aks get-credentials --name D-K8S-KCLU --resource-group D-K8S-RGRP
137
-az aks browse --name D-K8S-KCLU --resource-group D-K8S-RGRP
138
-az aks show --resource-group pyratebeard-container-demo-rg --name pyratebeard-container-demo-clu --query "servicePrincipalProfile.clientId" --output tsv
139
-```
140
-
141
-## deploy webapp and enable for webhooks
142
-```
143
-az group create --name webapp-rg -l northeurope
144
-az appservice plan create -g webapp-rg -n webapp-srvplan --is-linux
145
-az webapp create -g webapp-rg -p webapp-srvplan -n webapp -i pyratebeard/container-webhook-demo
146
-az webapp deployment container config -n webapp -g webapp-rg --enable-cd true
147
-az webapp deployment container show-cd-url -n D-TST-APP-SRV -g D-TST-APP-RG
148
-```
149
-
150
-run script tool on VMs (under 'Operation')
151
-
152
-## create vpn - [fortinet_cookbook][]
153
-* virtual network
154
-* virtual network gateway
155
-* local network gateway
156
-* public ip
157
-* connection (under virtual network gateway)
158
-* vpn not coming up in fortigate
159
- * running network watcher troubleshooting
160
- * need to add address space to connection
161
-* connect through gateway to website (using peering?)
162
-
163
-
164
-[auto_tagging][]
165
-
166
-[centos]: https://www.centos.org/
167
-[fortinet_cookbook]: https://cookbook.fortinet.com/ipsec-vpn-microsoft-azure-54/
168
-[auto_tagging]: https://gallery.technet.microsoft.com/scriptcenter/Automatically-Azure-fc5f1443
169
-[docs]: https://docs.microsoft.com/en-gb/cli/azure/get-started-with-azure-cli?view=azure-cli-latest
technology/cloud/docker.md
... ...
@@ -1,17 +0,0 @@
1
-# docker
2
-
3
-## pull files from inside container
4
-```
5
-docker cp <container_id>:/path/to/file /path/to/save
6
-```
7
-
8
-## clean up old images
9
-```
10
-docker rmi -f $(docker images --filter "dangling=true" -q)
11
-docker image prune
12
-```
13
-
14
-
15
-## ref
16
-- :1: https://stackoverflow.com/questions/44027873/how-to-create-a-new-docker-image-from-a-running-container-on-amazon
17
-- :2: https://stackoverflow.com/questions/43699368/configure-docker-daemon-port-to-enable-docker-apis/43713435#43713435
technology/cloud/index.md
... ...
@@ -1,6 +0,0 @@
1
-# cloud
2
-
3
-- [azure](azure)
4
-- [docker](docker)
5
-- [kubernetes](kubernetes)
6
-- [openshift](openshift)
technology/cloud/kubernetes.md
... ...
@@ -1,11 +0,0 @@
1
-# kubernetes
2
-
3
-- list pods for all namespaces
4
-```
5
-kubectl get pods --all-namespaces
6
-```
7
-
8
-- get list of containers in pod
9
-```
10
-kubectl -n <namespace> get pods <pod_name> -o jsonpath={.spec.containers[*].name}
11
-```
technology/cloud/openshift.md
... ...
@@ -1,2 +0,0 @@
1
-# openshift
2
-
technology/communication/exim4.md
... ...
@@ -1,7 +0,0 @@
1
-# exim4
2
-
3
-### set up on raspbian
4
-```
5
-sudo apt-get install exim4
6
-sudo dpkg-reconfigure exim4-config
7
-```
technology/communication/ftp.md
... ...
@@ -1,13 +0,0 @@
1
-# ftp
2
-
3
-```
4
-ftp ftp.pyratebeard.net
5
-ftp> ls
6
-ftp> cd fun/
7
-ftp> ls
8
-ftp> get pirate-virus.gif
9
-```
10
-
11
-## guest login
12
-- username: anonymous
13
-- password: email
technology/communication/index.md
... ...
@@ -1,8 +0,0 @@
1
-# communication
2
-
3
-- [exim4](exim4)
4
-- [ftp](ftp)
5
-- [irc](irc)
6
-- [mosh](mosh)
7
-- [mutt](mutt)
8
-- [znc](znc)
technology/communication/irc.md
... ...
@@ -1,19 +0,0 @@
1
-# irc
2
-
3
-## freenode
4
-use the following to search channels
5
-```
6
-/msg alis LIST *searchterm*
7
-```
8
-
9
-## irc.highway.net #ebooks
10
-```
11
-@search Author/Title
12
-/dcc get Search
13
-```
14
-
15
-locate correct file
16
-```
17
-!user filename
18
-/dcc get username
19
-```
technology/communication/mosh.md
... ...
@@ -1,27 +0,0 @@
1
-# mosh
2
-
3
-_mosh must be installed on client and server_
4
-
5
-## install
6
-```
7
-yum install mosh
8
-
9
-apt-get install mosh
10
-```
11
-
12
-## usage
13
-on server allow port through firewall
14
-```
15
-firewall-cmd --permanent --add-port=60001/udp
16
-firewall-cmd --reload
17
-```
18
-
19
-on client
20
-```
21
-mosh user@host
22
-```
23
-
24
-if ssh is listening on different port
25
-```
26
-mosh --ssh="ssh -p 22666" user@host
27
-```
technology/communication/mutt.md
... ...
@@ -1,41 +0,0 @@
1
-# mutt
2
-
3
-search, limit and tagging [patterns][]
4
-* limit new (unread) messages using `~U`
5
-* limit messages either to: or cc: using ~C (useful for mailing lists)
6
-
7
-## index format
8
-default index format is (taken from [muttrc man][])
9
-```
10
-"%4C %Z %{%b %d} %-15.15L (%?l?%4l&%4c?) %s"
11
-```
12
-
13
-current format is
14
-```
15
-"%Z %-30.30L %M %s"
16
-```
17
-_message status, sender, hidden msgs (in thread), subject_
18
-
19
-## threads
20
-collapse threads using `Esc-v`
21
-
22
-[rebind collapse-thread][] to '-'
23
-```
24
-bind index - collapse-thread
25
-```
26
-
27
-configure threads to be collapsed when mailbox opened ([thread_ref][])
28
-```
29
-folder-hook . "push <collapse-all>\n"
30
-```
31
-
32
-download directory macro ([macro source][])
33
-```
34
-macro attach W "<save-entry><bol>~/tmp/<eol>"
35
-```
36
-
37
-[patterns]: http://www.mutt.org/doc/manual/#patterns
38
-[muttrc man]: https://linux.die.net/man/5/muttrc
39
-[rebind collapse-thread]: https://heipei.net/2009/09/10/mutt-threading-like-a-pro/
40
-[thread_ref]: http://compgroups.net/comp.mail.mutt/collapsing-threads-by-default/2550437
41
-[macro source]: https://superuser.com/questions/695541/where-does-mutt-save-attachment
technology/communication/znc.md
... ...
@@ -1,15 +0,0 @@
1
-# znc
2
-
3
-## install
4
-
5
-guide for [installing][] on centos (requires [epel-release][])
6
-```
7
-yum install epel-release
8
-yum install znc
9
-sudo -u znc znc --makeconf
10
-semanage port -a -t http_port_t -p tcp 1666
11
-firewall-cmd --permanent --add-port=1666/tcp
12
-```
13
-
14
-[installing]: https://wiki.znc.in/Installation#Fedora.2FCentOS.2FRed_Hat_Enterprise_Linux
15
-[epel-release]: https://fedoraproject.org/wiki/EPEL#How_can_I_use_these_extra_packages.3F
technology/databases/index.md
... ...
@@ -1,4 +0,0 @@
1
-# databases
2
-
3
-- [mariadb](mariadb)
4
-- [oracle](oracle)
technology/databases/mariadb.md
... ...
@@ -1,23 +0,0 @@
1
-# mariadb
2
-[knowledgebase](https://mariadb.com/kb/en/)
3
-
4
-```bash
5
-dnf install mariadb mariadb-server
6
-systemctl start mariadb.service
7
-/usr/bin/mysql_secure_installation
8
-mysql -u root -p
9
-```
10
-
11
-```sql
12
-show databases;
13
-show tables;
14
-show columns from table;
15
-show columns from database.table;
16
-```
17
-
18
-## user
19
-```sql
20
-select user from USER;
21
-create USER username;
22
-drop USER if exists username;
23
-```
technology/databases/oracle.md
... ...
@@ -1,11 +0,0 @@
1
-# oracle
2
-
3
-- show max number of connections allowed
4
-```sql
5
-select name,value from v$parameter where name = 'sessions';
6
-```
7
-
8
-- show current active connections
9
-```sql
10
-select count(*) from v$session;
11
-```
technology/encryption/gpg.md
... ...
@@ -1,27 +0,0 @@
1
-# gpg
2
-
3
-## encrypt file
4
-```
5
-gpg -c <filename>
6
-```
7
-
8
-## decrypt file
9
-```
10
-gpg <filename>.gpg
11
-```
12
-
13
-## clearsign message
14
-```
15
-gpg --default-key <key_id> -o <output_file> --clearsign <input_file>
16
-```
17
-
18
-## search keys
19
-```
20
-gpg --search <string>
21
-```
22
-
23
-- [gpg signing][] - traditional vs. pgp/mime
24
-- how to [verify software][]
25
-
26
-[gpg signing]: https://www.phildev.net/pgp/pgp_clear_vs_mime.html
27
-[verify software]: https://www.phildev.net/pgp/pgp_clear_vs_mime.html
technology/encryption/index.md
... ...
@@ -1,4 +0,0 @@
1
-# encryption
2
-
3
-- [gpg](gpg)
4
-- [openssl](../networking/openssl#encryption)
technology/index.md
... ...
@@ -1,12 +0,0 @@
1
-# technology
2
-- [automation](automation/index)
3
-- [authentication](authentication/index)
4
-- [cloud](cloud/index)
5
-- [communication](communication/index)
6
-- [databases](databases/index)
7
-- [encryption](encryption/index)
8
-- [linux](linux/index)
9
-- [monitoring](monitoring/index)
10
-- [networking](networking/index)
11
-- [virtualisation](virtualisation/index)
12
-- [websites](websites/index)
technology/linux/archlinux/index.md
... ...
@@ -1,3 +0,0 @@
1
-# archlinux
2
-
3
-- [pacman](pacman)
technology/linux/archlinux/pacman.md
... ...
@@ -1,14 +0,0 @@
1
-# pacman
2
-
3
-## find package which contains $filename
4
-```
5
-pacman -Fy
6
-pacman -Fs $filename
7
-```
8
-
9
-## clear package cache
10
-```
11
-pacman -S pacman-contrib
12
-paccache -r
13
-```
14
-
technology/linux/audio_visual/alsa.md
... ...
@@ -1,12 +0,0 @@
1
-# alsa
2
-
3
-## change card order
4
-- on a fresh archlinux install on a thinkpad the sound cards were in the 'wrong' order.
5
-- in alsamixer the first card was hdmi, the second was pch
6
-- to change the order add the following to '/etc/modprobe.d/50-alsa.conf' and reboot
7
-```
8
-options snd_hda_intel enable=1 index=0
9
-options snd_hda_intel index=1
10
-```
11
-
12
-- source: https://bbs.archlinux.org/viewtopic.php?pid=1453619#p1453619
technology/linux/audio_visual/ffmpeg.md
... ...
@@ -1,38 +0,0 @@
1
-# ffmpeg
2
-
3
-### extract audio from video
4
-```
5
-ffmpeg -i input-video.mkv -q:a 0 -map a output-audio.mp3
6
-```
7
-
8
-### remove audio from a video
9
-```
10
-ffmpeg -i video.mkv -c copy -an video-nosound.mkv
11
-```
12
-
13
-### record a video
14
-without audio
15
-```
16
-ffmpeg -f x11grab -r 15 -i :0.0 -acodec libmp3lame -vcodec mpeg4 -ar 48000 -qscale 0 -framerate 24 outputvideo.avi
17
-```
18
-
19
-with audio
20
-```
21
-ffmpeg -f alsa -ac 2 -i alsa -f x11grab -r 15 -i :0.0 -acodec libmp3lame -vcodec mpeg4 -ar 48000 -qscale 0 -framerate 24 outputvideo.avi
22
-```
23
-
24
-### convert video format
25
-```
26
-ffmpeg -i videofile.mp4 videofile.webm
27
-```
28
-
29
-### adjust crf
30
-adjust constant rate factor to lower bit rate
31
-```
32
-ffmpeg -i input.mp4 -vcodec libx264 -crf 20 output.mp4
33
-```
34
-
35
-### remove id3 tag image and metadata from audio file
36
-```
37
-ffmpeg -i input.mp3 -vn -codec:a copy -map_metadata -1 output.mp3
38
-```
technology/linux/audio_visual/index.md
... ...
@@ -1,6 +0,0 @@
1
-# audio_visual
2
-
3
-- [alsa](alsa)
4
-- [ffmpeg](ffmpeg)
5
-- [mpd](mpd)
6
-- [mpv](mpv)
technology/linux/audio_visual/mpd.md
... ...
@@ -1,5 +0,0 @@
1
-# mpd
2
-
3
-## radio playlist sites
4
-https://www.radionomy.com/
5
-http://www.radiosure.com/stations/
technology/linux/audio_visual/mpv.md
... ...
@@ -1,5 +0,0 @@
1
-# mpv
2
-
3
-```zsh
4
-mpv --video-unscaled=no --geometry=579x326+98%+2% --ontop
5
-```
technology/linux/debian/apt_dpkg.md
... ...
@@ -1,9 +0,0 @@
1
-# apt / dpkg
2
-
3
-- if error code (1) on `apt-get upgrade` [ref_1](#ref#1)
4
- ```
5
- sudo dpkg --configure -a
6
- ```
7
-
8
-## ref
9
-- :1: https://itsfoss.com/dpkg-returned-an-error-code-1/
technology/linux/debian/index.md
technology/linux/general/at.md
... ...
@@ -1,11 +0,0 @@
1
-# at
2
-
3
-```
4
-at -t MMDDhhmm
5
-at> echo 'hello world'
6
-at> ^D
7
-```
8
-
9
-[ref][]
10
-
11
-[ref]: https://www.computerhope.com/unix/uat.htm
technology/linux/general/bash.md
... ...
@@ -1,36 +0,0 @@
1
-# bash
2
-
3
-use parameter of previous command ([ref 1](#ref#1))
4
-```
5
-mkdir test
6
-cd $_
7
-```
8
-or
9
-```
10
-mkdir test
11
-cd !$
12
-```
13
-
14
-## `find` examples
15
-```
16
-find . -type f -iname "*regex*" -exec rm -f {} \;
17
-```
18
-
19
-## when was user created [ref_2](#ref#2)
20
-- if user has never logged in after account creation
21
- ```
22
- ls -l /home/<user>/.bash_logout
23
- ```
24
-
25
-## run bg job and log out
26
-after 'ctrl-z'
27
-```
28
-disown -h %1
29
-bg 1
30
-logout
31
-```
32
-_where 1 is the job number_
33
-
34
-## ref
35
-- :1: https://unix.stackexchange.com/questions/125385/combined-mkdir-and-cd
36
-- :2: https://it.toolbox.com/question/how-to-find-out-when-a-user-is-created-in-linux-030612
technology/linux/general/bin.md
... ...
@@ -1,14 +0,0 @@
1
-
2
-
3
- /bin (and /sbin) were intended for programs that needed to be on a small / partition before the larger /usr, etc. partitions were mounted. These days, it mostly serves as a standard location for key programs like /bin/sh, although the original intent may still be relevant for e.g. installations on small embedded devices.
4
-
5
- /sbin, as distinct from /bin, is for system management programs (not normally used by ordinary users) needed before /usr is mounted.
6
-
7
- /usr/bin is for distribution-managed normal user programs.
8
-
9
- There is a /usr/sbin with the same relationship to /usr/bin as /sbin has to /bin.
10
-
11
- /usr/local/bin is for normal user programs not managed by the distribution package manager, e.g. locally compiled packages. You should not install them into /usr/bin because future distribution upgrades may modify or delete them without warning.
12
-
13
- /usr/local/sbin, as you can probably guess at this point, is to /usr/local/bin as /usr/sbin to /usr/bin.
14
-
technology/linux/general/dmidecode.md
... ...
@@ -1,9 +0,0 @@
1
-# dmidecode
2
-
3
-## how many pci slots (ref_1)[#ref#1]
4
-```
5
-dmidecode -t 9 | grep "System Slot Information" | wc -l
6
-```
7
-
8
-## ref
9
-- :1: https://unix.stackexchange.com/questions/191314/can-i-see-the-number-of-pci-slots-with-a-command
technology/linux/general/i3lock.md
... ...
@@ -1,9 +0,0 @@
1
-# i3lock
2
-
3
-lockscreen commands (https://www.reddit.com/r/unixporn/comments/8z15f9/i3lock_with_pixeleffect/)
4
-
5
-```zsh
6
-ICON="/home/pyratebeard/tmp/stop2.png" ; TMPBG="/tmp/lockscreen.jpg" ; RES=$(xrandr | grep 'current' | sed -E 's/.*current\s([0-9]+)\sx\s([0-9]+).*/\1x\2/') ; ffmpeg -f x11grab-video_size $RES -y -i $DISPLAY -vf frei0r=pixeliz0r=0.02:0.02 -vframes 1 $TMPBG -loglevel quiet
7
-ICON="/home/pyratebeard/tmp/stop2.png" ; TMPBG="/tmp/lockscreen.jpg" ; RES=$(xrandr | grep 'current' | sed -E 's/.*current\s([0-9]+)\sx\s([0-9]+).*/\1x\2/') ; ffmpeg -f x11grab -video_size $RES -y -i $DISPLAY -i $ICON -filter_complex "boxblur=5:1,overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2" -vframes 1 $TMPBG -loglevel quiet
8
-/home/pyratebeard/src/warez/i3lock-fancy-multimonitor/lock -p
9
-```
technology/linux/general/index.md
... ...
@@ -1,28 +0,0 @@
1
-# linux general
2
-
3
-- [at](at)
4
-- [bash](bash)
5
-- [bin](bin)
6
-- [dmidecode](dmidecode)
7
-- [i3lock](i3lock)
8
-- [journalctl](journalctl)
9
-- [keymaps](keymaps)
10
-- [logrotate](logrotate)
11
-- [man_pages](man_pages)
12
-- [mpd](mpd)
13
-- [mpv](mpv)
14
-- [processes](processes)
15
-- [python](python)
16
-- [rdp](rdp)
17
-- [rsync](rsync)
18
-- [rtv](rtv)
19
-- [sed](sed)
20
-- [ssh](ssh)
21
-- [systemctl](systemctl)
22
-- [tmux](tmux)
23
-- [truncate](truncate)
24
-- [xclip](xclip)
25
-- [xdotool](xdotool)
26
-- [xev](xev)
27
-- [xmodmap](xmodmap)
28
-- [xprop](xprop)
technology/linux/general/journalctl.md
... ...
@@ -1,19 +0,0 @@
1
-# journalctl
2
-
3
-https://www.loggly.com/ultimate-guide/using-journalctl/
4
-https://www.digitalocean.com/community/tutorials/how-to-use-journalctl-to-view-and-manipulate-systemd-logs
5
-
6
-search by user
7
-```
8
-journalctl _UID=<uid>
9
-```
10
-
11
-search by command
12
-```
13
-journalctl /usr/bin/sudo
14
-journalctl $(which sudo)
15
-journalctl -t sudo
16
-```
17
- `-t` show syslog identifier
18
-
19
- [systemctl](systemctl)
technology/linux/general/keymaps.md
... ...
@@ -1,21 +0,0 @@
1
-# keymaps
2
-
3
-## check keymaps
4
-```
5
-localectl status
6
-```
7
-
8
-## changes required to load keys
9
-```
10
-vconsole.conf
11
-/etc/X11/xorg.conf.d/00-keyboard.conf
12
-```
13
-
14
-## use capslock as escape and control
15
-using xcape capslock can be set to 'escape' when tapped and 'ctrl' when help down.
16
-```
17
-setxkbmap -option ctrl:nocaps
18
-xcape -e 'Control_L=Escape'
19
-```
20
-
21
-[ref](https://www.dannyguo.com/blog/remap-caps-lock-to-escape-and-control)
technology/linux/general/logrotate.md
... ...
@@ -1,28 +0,0 @@
1
-# logrotate
2
-
3
-[guide and functions][]
4
-
5
-## file example
6
-```
7
-/var/log/example.log {
8
- weekly
9
- size 500M
10
- missingok
11
- rotate 5
12
- compress
13
- copytruncate
14
- notifempty
15
-}
16
-```
17
-
18
-test using debug mode
19
-```
20
-logrotate -d /etc/logrotate.d/example
21
-```
22
-
23
-run manually
24
-```
25
-logrotate -f /etc/logrotate.d/example
26
-```
27
-
28
-[guide and functions]: https://www.techrepublic.com/article/manage-linux-log-files-with-logrotate/
technology/linux/general/man_pages.md
... ...
@@ -1,31 +0,0 @@
1
-# man pages
2
-
3
-## sections
4
-
5
-taken from `man man`:
6
-```
7
-MANUAL SECTIONS
8
- The standard sections of the manual include:
9
-
10
- 1 User Commands
11
- 2 System Calls
12
- 3 C Library Functions
13
- 4 Devices and Special Files
14
- 5 File Formats and Conventions
15
- 6 Games et. al.
16
- 7 Miscellanea
17
- 8 System Administration tools and Daemons
18
-```
19
-[unix stackexchange](https://unix.stackexchange.com/questions/3586/what-do-the-numbers-in-a-man-page-mean)
20
-
21
-## searching
22
-[cyberciti.biz](https://www.cyberciti.biz/faq/howto-search-all-the-linux-unix-man-pages/)
23
-
24
-`apropos` command
25
-
26
-```bash
27
-apropos "term"
28
-apropos -s 1 "term"
29
-```
30
-
31
-`-s` indicates search only specific section
technology/linux/general/processes.md
... ...
@@ -1,9 +0,0 @@
1
-# processes
2
-
3
-## zombies
4
-check the number of [zombie processes][]
5
-```
6
-ps aux | awk '$8 ~ /Z/ { print }' | wc -l
7
-```
8
-
9
-[zombie processes]: https://www.howtogeek.com/119815/htg-explains-what-is-a-zombie-process-on-linux/
technology/linux/general/python.md
... ...
@@ -1,18 +0,0 @@
1
-# python
2
-
3
-## configuring [virtualenv][]
4
-- install package
5
- ```
6
- python3 -m pip install --user virtualenv
7
- ```
8
-- create virtualenv
9
- ```
10
- python3 -m virtualenv env_dir
11
- ```
12
-- activating and leaving virtualenv
13
- ```
14
- source env_dir/bin/activate
15
- deactivate
16
- ```
17
-
18
-[virtualenv]: https://packaging.python.org/guides/installing-using-pip-and-virtualenv/
technology/linux/general/rdp.md
... ...
@@ -1,7 +0,0 @@
1
-# rdp
2
-
3
-convert windows saved rdp file to linux editable
4
-```
5
-iconv -f utf-16 -t utf-8 <file>.rdp > <newfile>.rdp
6
-dos2unix <newfile>.rdp
7
-```
technology/linux/general/rsync.md
... ...
@@ -1,6 +0,0 @@
1
-# rsync
2
-
3
-### copy files over ssh using compression
4
-```
5
-rsync -avz -e ssh --progress pyratebeard@remote_server:/path/to/file ./local/path
6
-```
technology/linux/general/rtv.md
... ...
@@ -1,4 +0,0 @@
1
-# rtv
2
-
3
-rtv --enable-media (to use mailcap, although it seems to default)
4
-export RTV_BROWSER=qutebrowser
technology/linux/general/sed.md
... ...
@@ -1,17 +0,0 @@
1
-# sed
2
-
3
-print specific line number from file
4
-```
5
-sed 'n!d' file
6
-```
7
-
8
-add character
9
-```
10
-s/regex/&n/
11
-```
12
-
13
-convert first word before equals symbol from lower to upper
14
-_this is used in config files such as ifcfg to convert all variable names_
15
-```
16
-:%s/^[[:alpha:]_]\{1,\}=/\U&/
17
-```
technology/linux/general/ssh.md
... ...
@@ -1,56 +0,0 @@
1
-# ssh
2
-
3
-## tunnel
4
-[tunnel][] through jump server
5
-```
6
-ssh -t L7070:localhost:7071 user@jumphost ssh -t -D7071 user@furtherhost
7
-```
8
-
9
-```
10
-ssh -A -t -l user jump-host \
11
--L 8080:localhost:8080 \
12
-ssh -A -t -l user webserver.dmz \
13
--L 8080:localhost:8080
14
-```
15
-
16
-open [socks proxy][] on port 443 (hide as https) - requires sudo
17
-```
18
-sudo ssh -o ServerAliveInterval=60 -D443 -l pyratebeard -i ~/lib/key/ssh_tunnel -N -C -q -t -4 -f ftp.pyratebeard.net
19
-```
20
-- `-o ServerAliveInterval=60` -
21
-- `-D443` -
22
-- `-l pyratebeard` -
23
-- `-i ~/lib/key/ssh_tunnel` -
24
-- `-N` - do not execute remote command
25
-- `-C` - compress data
26
-- `-q` - quiet
27
-- `-t` - force pseudo-terminal
28
-- `-4` - use ipv4 only
29
-- `-f` - go to background
30
-
31
-## X11 forwarding
32
-```
33
-ssh -X user@host
34
-```
35
-- on server side `X11Forwarding` must be set to `yes` in '/etc/ssh/sshd_config'
36
-
37
-## ssh host fingerprint
38
-to find the fingerprint of a host
39
-```
40
-sudo ssh-keygen -l -f /etc/ssh/ssh_host_rsa_key
41
-sudo ssh-keygen -l -f /etc/ssh/ssh_host_ecdsa_key
42
-```
43
-
44
-## remote host id has changed
45
-if the fingerprint for the remote host has changed (and you are sure it's not
46
-a mitm attack) run the following to remove from 'known_hosts'
47
-```
48
-ssh-keygen -f $HOME/.ssh/known_hosts -R <hostname>
49
-```
50
-
51
-## ref
52
-[ssh][] guide
53
-
54
-[tunnel]: http://digitalcrunch.com/linux/how-to-use-an-ssh-tunnel-through-a-jump-host/
55
-[socks proxy]: https://ma.ttias.be/socks-proxy-linux-ssh-bypass-content-filters/
56
-[ssh]: http://lackof.org/taggart/hacking/ssh/
technology/linux/general/systemctl.md
... ...
@@ -1,48 +0,0 @@
1
-# systemctl
2
-
3
-also see [journalctl](journalctl)
4
-
5
-```bash
6
-systemctl list-units [ --all | --type=service ]
7
-```
8
-
9
-- show all enabled and disabled services
10
-```bash
11
-systemctl list-unit-files
12
-```
13
-
14
-#### create service file
15
-```
16
-vi /etc/systemd/system/<name>.service
17
-```
18
-
19
-([manage systemd][])
20
-
21
-## user services
22
-run `systemctl` (without sudo) and with the `--user` option
23
-
24
-service files are created under '$HOME/.config/systemd/user'
25
-
26
-### example user service file
27
-```
28
-[Unit]
29
-Description=This is an example
30
-
31
-[Service]
32
-ExecStart=/path/to/command
33
-
34
-[Install]
35
-WantedBy=default.target
36
-```
37
-([writing user units][])
38
-
39
-enable and start the user service (without sudo)
40
-```
41
-systemctl --user enable <service>
42
-systemctl --user start <service>
43
-systemctl --user status <service>
44
-```
45
-
46
-
47
-[manage systemd]: https://www.digitalocean.com/community/tutorials/how-to-use-systemctl-to-manage-systemd-services-and-units
48
-[writing user units]: https://wiki.archlinux.org/index.php/Systemd/User#Writing_user_units
technology/linux/general/tmux.md
... ...
@@ -1,12 +0,0 @@
1
-# tmux
2
-
3
-all commands used with `prefix`
4
-
5
-| command | description |
6
-| --- | --- |
7
-| `s` | switch tmux sessions |
8
-| `r` | reload config |
9
-| `$` | rename session |
10
-
11
-
12
-
technology/linux/general/truncate.md
... ...
@@ -1,2 +0,0 @@
1
-# truncate
2
-https://unix.stackexchange.com/questions/68523/find-and-remove-large-files-that-are-open-but-have-been-deleted
technology/linux/general/xclip.md
... ...
@@ -1,7 +0,0 @@
1
-# xclip
2
-
3
-## copy image to clipboard
4
-```bash
5
-xclip -selection clipboard -t image/png -i <image>.png
6
-```
7
-use `image/jpeg` or `image/jpg` for jpeg
technology/linux/general/xdotool.md
... ...
@@ -1,6 +0,0 @@
1
-# xdotool
2
-
3
-## turn of capslock
4
-```
5
-xdotool key Caps_Lock
6
-```
technology/linux/general/xev.md
... ...
@@ -1,7 +0,0 @@
1
-# xev
2
-
3
-print contents of events
4
-
5
-when run it opens a window then prints all events in terminal
6
-
7
-useful for finding key ids etc.
technology/linux/general/xmodmap.md
... ...
@@ -1,11 +0,0 @@
1
-# xmodmap
2
-
3
-modifying keymaps and pointer button mappings
4
-
5
-## usage
6
-| option | description |
7
-| --- | --- |
8
-| -pk | show keymap table |
9
-| -pke | show keymap table in expressions |
10
-| -pm | show modifier map (default no args) |
11
-
technology/linux/general/xprop.md
... ...
@@ -1,5 +0,0 @@
1
-# xprop
2
-
3
-property displayer
4
-
5
-use to find 'WM_CLASS' of window for awesome rc.lua rules
technology/linux/index.md
... ...
@@ -1,8 +0,0 @@
1
-# linux
2
-
3
-- [archlinux](archlinux/index)
4
-- [audio_visual](audio_visual/index)
5
-- [debian](debian/index)
6
-- [general](general/index)
7
-- [redhat](redhat/index)
8
-- [ricing](ricing/index)
technology/linux/redhat/index.md
... ...
@@ -1,3 +0,0 @@
1
-# redhat
2
-
3
-- [rpm](rpm)
technology/linux/redhat/rpm.md
... ...
@@ -1,76 +0,0 @@
1
-# rpm
2
-
3
-## how to build rpm videos
4
-- [urban pengiun](#ref#3)
5
- - distributing new repo file
6
- - create new 'build' account
7
- - run `rpmdev-setuptree`
8
- - creates 'rpmbuild' dir structure
9
- - create SOURCES dir structure
10
- ```
11
- cd ~/rpmbuild/SOURCES/
12
- mkdir tuprepo-1/etc/yum.repos.d
13
- ```
14
- *'tuprepo-1' is name and version number*
15
- - copy across repo file
16
- ```
17
- cp /tmp/CentOS-Tup.repo !$
18
- ```
19
- *use '!$' for last arg*
20
- - tar zip dir
21
- ```
22
- tar -cvzf tuprepo-1.tar.gz tuprepo-1/
23
- ```
24
- - create spec file
25
- ```
26
- cd ../SPECS/
27
- rpmdev-newspec tuprepo.spec
28
- vi tuprepo.spec
29
- ```
30
- - spec file details
31
- ```
32
- Name: qradar_bak
33
- Version: 1
34
- Release: 1%{?dist}
35
- Summary: Pull backup data and configuration files for QRadar
36
-
37
- License: GPL
38
- URL: https://www.ward.ie
39
- Source0: qradar_bak-1.tgz
40
-
41
- BuildRoot: %{_tmppath}/%{name}-buildroot
42
-
43
- %description
44
- Pull nightly data backups and weekly configuration files from QRadar master.
45
- Clean up is carried out weekly
46
-
47
-
48
- %prep
49
- %autosetup
50
-
51
- %install
52
- mkdir -p "$RPM_BUILD_ROOT"
53
- cp -R * "$RPM_BUILD_ROOT"
54
-
55
- %clean
56
- rm -rf "$RPM_BUILD_ROOT"
57
-
58
- %files
59
- %defattr(-,root,root,-)
60
- /usr/local/bin/backup_pull
61
- /usr/local/bin/cleanup
62
- /usr/local/etc/config
63
-
64
- %changelog
65
- * Mon Oct 22 2018 rpmbuild
66
- ```
67
- - build rpm
68
- ```
69
- cd $HOME
70
- rpmbuild -v -bb rpmbuild/SPECS/tuprepo.spec
71
- ```
72
-
73
-## ref
74
-- :1: https://docs.fedoraproject.org/en-US/quick-docs/creating-rpm-packages/index.html
75
-- :2: https://rpm-packaging-guide.github.io/
76
-- :3: https://www.youtube.com/watch?v=364Plv6zuBU
technology/monitoring/index.md
... ...
@@ -1,5 +0,0 @@
1
-# monitoring
2
-
3
-- [nagios](nagios)
4
-- [snmp](snmp)
5
-- [tcpdump](tcpdump)
technology/monitoring/nagios.md
... ...
@@ -1,4 +0,0 @@
1
-# nagios
2
-[raspbian install][]
3
-
4
-[raspbian install]: https://support.nagios.com/kb/article/nagios-core-installing-nagios-core-from-source-96.html#Raspbian
technology/monitoring/snmp.md
... ...
@@ -1,5 +0,0 @@
1
-# snmp
2
-
3
-```
4
-snmpwalk -Os -c public -v 1 localhost system
5
-```
technology/monitoring/tcpdump.md
... ...
@@ -1,21 +0,0 @@
1
-# tcpdump
2
-
3
-## capture entire packet
4
-```
5
-tcpdump -nnvvXSs 1514 -i eth0
6
-```
7
-- nn : don't convert hostnames or port names
8
-- vv : verbosity level
9
-- X : payload. shows packet contents in both ASCII and HEX
10
-- S : prints absolute sequence numbers
11
-- s : set snaplen (in this case 1514)
12
-
13
-## read entire packet
14
-```
15
-tcpdump -qns 0 -A -r <filename>
16
-```
17
-- q : quiet
18
-- n : don't convert host names
19
-- s : set snaplen (0 means catch whole packets)
20
-- A : print each packet in ASCII
21
-- r : read from file
technology/networking/firewall-cmd.md
... ...
@@ -1,15 +0,0 @@
1
-# firewall-cmd
2
-
3
-## add / remove port
4
-```
5
-firewall-cmd --permanent --add-port=<port_num>/<protocol>
6
-firewall-cmd --permanent --remove-port=<port_num>/<protocol>
7
-
8
-firewall-cmd --permanent --add-port=22/tcp
9
-firewall-cmd --permanent --remove-port=22/tcp
10
-```
11
-
12
-## open port on specific ip
13
-[serverfault answer][]
14
-
15
-[serverfault answer]: https://serverfault.com/questions/684602/how-to-open-port-for-a-specific-ip-address-with-firewall-cmd-on-centos#684603
technology/networking/firewalls.md
... ...
@@ -1,5 +0,0 @@
1
-# firewalls
2
-
3
-## linux
4
-- [iptables](iptables)
5
-- [firewall cmd](firewall-cmd)
technology/networking/index.md
... ...
@@ -1,7 +0,0 @@
1
-# networks
2
-
3
-- [firewalls](firewalls)
4
-- [openssl](openssl)
5
-- [openvpn](openvpn)
6
-- [subnet_cheatsheet](subnet_cheatsheet)
7
-- [wifi_connect](wifi_connect)
technology/networking/iptables.md
... ...
@@ -1,19 +0,0 @@
1
-# iptables
2
-
3
-```
4
-iptables -L
5
-```
6
-
7
-```
8
-iptables -S
9
-```
10
-
11
-## import / export
12
-see [guide][]
13
-
14
-```
15
-iptables-save > filename
16
-iptables-restore < filename
17
-```
18
-
19
-[guide]: https://www.digitalocean.com/community/tutorials/how-to-migrate-iptables-firewall-rules-to-a-new-server
technology/networking/openssl.md
... ...
@@ -1,19 +0,0 @@
1
-# openssl
2
-
3
-## check https connection
4
-```
5
-openssl s_client -connect domain.com:443
6
-```
7
-
8
-## encrypt file
9
-```
10
-openssl enc -aes-256-cbc -salt -in examplefile -out examplefile.enc
11
-```
12
-
13
-## decrypt file
14
-```
15
-openssl enc -aes-256-cbc -d -in examplefile.enc -out examplefile
16
-```
17
-
18
-## encryption
19
-https://linuxconfig.org/using-openssl-to-encrypt-messages-and-files-on-linux
technology/networking/openvpn.md
... ...
@@ -1,6 +0,0 @@
1
-# openvpn
2
-
3
-when service starts and waits for password in the background use this to enter password
4
-```
5
-sudo systemd-tty-ask-password-agent --query
6
-```
technology/networking/subnet_cheatsheet.md
... ...
@@ -1,263 +0,0 @@
1
-# subnet cheatsheet
2
-
3
-https://oav.net/mirrors/cidr.html
4
-
5
-```
6
-Netmask Netmask (binary) CIDR Notes
7
-_____________________________________________________________________________
8
-255.255.255.255 11111111.11111111.11111111.11111111 /32 Host (single addr)
9
-255.255.255.254 11111111.11111111.11111111.11111110 /31 Unuseable
10
-255.255.255.252 11111111.11111111.11111111.11111100 /30 2 useable
11
-255.255.255.248 11111111.11111111.11111111.11111000 /29 6 useable
12
-255.255.255.240 11111111.11111111.11111111.11110000 /28 14 useable
13
-255.255.255.224 11111111.11111111.11111111.11100000 /27 30 useable
14
-255.255.255.192 11111111.11111111.11111111.11000000 /26 62 useable
15
-255.255.255.128 11111111.11111111.11111111.10000000 /25 126 useable
16
-255.255.255.0 11111111.11111111.11111111.00000000 /24 "Class C" 254 useable
17
-
18
-255.255.254.0 11111111.11111111.11111110.00000000 /23 2 Class C's
19
-255.255.252.0 11111111.11111111.11111100.00000000 /22 4 Class C's
20
-255.255.248.0 11111111.11111111.11111000.00000000 /21 8 Class C's
21
-255.255.240.0 11111111.11111111.11110000.00000000 /20 16 Class C's
22
-255.255.224.0 11111111.11111111.11100000.00000000 /19 32 Class C's
23
-255.255.192.0 11111111.11111111.11000000.00000000 /18 64 Class C's
24
-255.255.128.0 11111111.11111111.10000000.00000000 /17 128 Class C's
25
-255.255.0.0 11111111.11111111.00000000.00000000 /16 "Class B"
26
-
27
-255.254.0.0 11111111.11111110.00000000.00000000 /15 2 Class B's
28
-255.252.0.0 11111111.11111100.00000000.00000000 /14 4 Class B's
29
-255.248.0.0 11111111.11111000.00000000.00000000 /13 8 Class B's
30
-255.240.0.0 11111111.11110000.00000000.00000000 /12 16 Class B's
31
-255.224.0.0 11111111.11100000.00000000.00000000 /11 32 Class B's
32
-255.192.0.0 11111111.11000000.00000000.00000000 /10 64 Class B's
33
-255.128.0.0 11111111.10000000.00000000.00000000 /9 128 Class B's
34
-255.0.0.0 11111111.00000000.00000000.00000000 /8 "Class A"
35
-
36
-254.0.0.0 11111110.00000000.00000000.00000000 /7
37
-252.0.0.0 11111100.00000000.00000000.00000000 /6
38
-248.0.0.0 11111000.00000000.00000000.00000000 /5
39
-240.0.0.0 11110000.00000000.00000000.00000000 /4
40
-224.0.0.0 11100000.00000000.00000000.00000000 /3
41
-192.0.0.0 11000000.00000000.00000000.00000000 /2
42
-128.0.0.0 10000000.00000000.00000000.00000000 /1
43
-0.0.0.0 00000000.00000000.00000000.00000000 /0 IP space
44
-```
45
-
46
-```
47
- Net Host Total
48
-Net Addr Addr Addr Number
49
-Class Range NetMask Bits Bits of hosts
50
-----------------------------------------------------------
51
-A 0-127 255.0.0.0 8 24 16777216 (i.e. 114.0.0.0)
52
-B 128-191 255.255.0.0 16 16 65536 (i.e. 150.0.0.0)
53
-C 192-254 255.255.255.0 24 8 256 (i.e. 199.0.0.0)
54
-D 224-239 (multicast)
55
-E 240-255 (reserved)
56
-F 208-215 255.255.255.240 28 4 16
57
-G 216/8 ARIN - North America
58
-G 217/8 RIPE NCC - Europe
59
-G 218-219/8 APNIC
60
-H 220-221 255.255.255.248 29 3 8 (reserved)
61
-K 222-223 255.255.255.254 31 1 2 (reserved)
62
-(ref: RFC1375 & http://www.iana.org/assignments/ipv4-address-space )
63
-( http://www.iana.org/numbers.htm )
64
-----------------------------------------------------------
65
-```
66
-
67
-The current list of special use prefixes:
68
-```
69
- 0.0.0.0/8
70
- 127.0.0.0/8
71
- 192.0.2.0/24
72
- 10.0.0.0/8
73
- 172.16.0.0/12
74
- 192.168.0.0/16
75
- 169.254.0.0/16
76
- all D/E space
77
-```
78
-- (ref: RFC1918 http://www.rfc-editor.org/rfc/rfc1918.txt )
79
-- ( or ftp://ftp.isi.edu/in-notes/rfc1918.txt )
80
-- (rfc search: http://www.rfc-editor.org/rfcsearch.html )
81
-- ( http://www.ietf.org/ietf/1id-abstracts.txt )
82
-- ( http://www.ietf.org/shadow.html )
83
-
84
-
85
-Martians: (updates at: www.iana.org/assignments/ipv4-address-space )
86
-```
87
- no ip source-route
88
- access-list 100 deny ip host 0.0.0.0 any
89
- deny ip 0.0.0.0 0.255.255.255 any log ! antispoof
90
- deny ip 0.0.0.0 0.255.255.255 0.0.0.0 255.255.255.255 ! antispoof
91
- deny ip any 255.255.255.128 0.0.0.127 ! antispoof
92
- deny ip host 0.0.0.0 any log ! antispoof
93
- deny ip host [router intf] [router intf] ! antispoof
94
- deny ip xxx.xxx.xxx.0 0.0.0.255 any log ! lan area
95
- deny ip 0/8 0.255.255.255 any log ! IANA - Reserved
96
- deny ip 1/8 0.255.255.255 any log ! IANA - Reserved
97
- deny ip 2/8 0.255.255.255 any log ! IANA - Reserved
98
- deny ip 5/8 0.255.255.255 any log ! IANA - Reserved
99
- deny ip 7/8 0.255.255.255 any log ! IANA - Reserved
100
- deny ip 10.0.0.0 0.255.255.255 any log ! IANA - Private Use
101
- deny ip 23/8 0.255.255.255 any log ! IANA - Reserved
102
- deny ip 27/8 0.255.255.255 any log ! IANA - Reserved
103
- deny ip 31/8 0.255.255.255 any log ! IANA - Reserved
104
- deny ip 36-37/8 0.255.255.255 any log ! IANA - Reserved
105
- deny ip 39/8 0.255.255.255 any log ! IANA - Reserved
106
- deny ip 41-42/8 0.255.255.255 any log ! IANA - Reserved
107
- deny ip 50/8 0.255.255.255 any log ! IANA - Reserved
108
- deny ip 58-60/8 0.255.255.255 any log ! IANA - Reserved
109
- deny ip 69-79/8 0.255.255.255 any log ! IANA - Reserved
110
- deny ip 82-95/8 0.255.255.255 any log ! IANA - Reserved
111
- deny ip 96-126/8 0.255.255.255 any log ! IANA - Reserved
112
- deny ip 127/8 0.255.255.255 any log ! IANA - Reserved
113
- deny ip 169.254.0.0 0.0.255.255 any log ! link-local network
114
- deny ip 172.16.0.0 0.15.255.255 any log ! reserved
115
- deny ip 192.168.0.0 0.0.255.255 any log ! reserved
116
- deny ip 192.0.2.0 0.0.0.255 any log ! test network
117
- deny ip 197/8 0.255.255.255 any log ! IANA - Reserved
118
- deny ip 220/8 0.255.255.255 any log ! IANA - Reserved
119
- deny ip 222-223/8 0.255.255.255 any log ! IANA - Reserved
120
- deny ip 224.0.0.0 31.255.255.255 any log ! multicast
121
- deny ip 224.0.0.0 15.255.255.255 any log ! unless MBGP-learned routes
122
- deny ip 224-239/8 0.255.255.255 any log ! IANA - Multicast
123
- deny ip 240-255/8 0.255.255.255 any log ! IANA - Reserved
124
-```
125
-
126
-```
127
-filtered source addresses
128
- 0/8 ! broadcast
129
- 10/8 ! RFC 1918 private
130
- 127/8 ! loopback
131
- 169.254.0/16 ! link local
132
- 172.16.0.0/12 ! RFC 1918 private
133
- 192.0.2.0/24 ! TEST-NET
134
- 192.168.0/16 ! RFC 1918 private
135
- 224.0.0.0/4 ! class D multicast
136
- 240.0.0.0/5 ! class E reserved
137
- 248.0.0.0/5 ! reserved
138
- 255.255.255.255/32 ! broadcast
139
-```
140
-
141
-ARIN administrated blocks: (http://www.arin.net/regserv/IPStats.html)
142
-```
143
- 24.0.0.0/8 (portions of)
144
- 63.0.0.0/8
145
- 64.0.0.0/8
146
- 65.0.0.0/8
147
- 66.0.0.0/8
148
- 196.0.0.0/8
149
- 198.0.0.0/8
150
- 199.0.0.0/8
151
- 200.0.0.0/8
152
- 204.0.0.0/8
153
- 205.0.0.0/8
154
- 206.0.0.0/8
155
- 207.0.0.0/8
156
- 208.0.0.0/8
157
- 209.0.0.0/8
158
- 216.0.0.0/8
159
-```
160
-----------------------------------------------------------
161
-
162
-well known ports: (rfc1700.txt)
163
- - www.iana.org/assignments/port-numbers
164
-
165
-protocol numbers:
166
- - www.iana.org/assignments/protocol-numbers
167
- - www.iana.org/numbers.htm
168
-
169
-ICMP(Types/Codes)
170
-```
171
- Testing Destination Reachability & Status
172
- (0/0) Echo-Reply
173
- (8/0) Echo
174
- Unreachable Destinations
175
- (3/0) Network Unreachable
176
- (3/1) Host Unreachable
177
- (3/2) Protocol Unreachable
178
- (3/3) Port Unreachable
179
- (3/4) Fragmentaion Needed and DF set (Pkt too big)
180
- (3/5) Source Route Failed
181
- (3/6) Network Unknown
182
- (3/7) Host Unknown
183
- (3/9) DOD Net Prohibited
184
- (3/10) DOD Host Prohibited
185
- (3/11) Net TOS Unreachable
186
- (3/12) Host TOS Unreachable
187
- (3/13) Administratively Prohibited
188
- (3/14) Host Precedence Unreachable
189
- (3/15) Precedence Unreachable
190
- Flow Control
191
- (4/0) Source-Quench [RFC 1016]
192
- Route Change Requests from Gateways
193
- (5/0) Redirect Datagrams for the Net
194
- (5/1) Redirect Datagrams for the Host
195
- (5/2) Redirect Datagrams for the TOS and Net
196
- (5/3) Redirect Datagrams for the TOS and Host
197
- Router
198
- (6/-) Alternate-Address
199
- (9/0) Router-Advertisement
200
- (10/0) Router-Solicitation
201
- Detecting Circular or Excessively Long Routes
202
- (11/0) Time to Live Count Exceeded
203
- (11/1) Fragment Reassembly Time Exceeded
204
- Reporting Incorrect Datagram Headers
205
- (12/0) Parameter-Problem
206
- (12/1) Option Missing
207
- (12/2) No Room for Option
208
- Clock Synchronization and Transit Time Estimation
209
- (13/0) Timestamp-Request
210
- (14/0) Timestamp-Reply
211
- Obtaining a Network Address (RARP Alternative)
212
- (15/0) Information-Request
213
- (16/0) Information-Reply
214
- Obtaining a Subnet Mask [RFC 950]
215
- (17/0) Address Mask-Request
216
- (18/0) Address Mask-Reply
217
- Other
218
- (30/0) Traceroute
219
- (31/0) Conversion-Error
220
- (32/0) Mobile-Redirect
221
-```
222
-
223
-Ref: [RFC 792] [RFC 896] [RFC 950] [RFC 1016]
224
- www.cisco.com/univercd/cc/td/doc/product/lan/cat6000/sw_5_3/cofigide/qos.htm#19774
225
-
226
-
227
-
228
-```
229
-Decimal system Prefix's
230
- Factor Exponent Prefix
231
----------------------------------------------------
232
- 1 000 000 000 000 000 000 000 000...10^24....yotta
233
- 1 000 000 000 000 000 000 000...10^21....zetta
234
- 1 000 000 000 000 000 000...10^18....exa
235
- 1 000 000 000 000 000...10^15....peta
236
- 1 000 000 000 000...10^12....tera
237
- 1 000 000 000...10^9.....giga
238
- 1 000 000...10^6.....mega
239
- 1 000...10^3.....kilo
240
- 100...10^2.....hecto
241
- 10...10^1.....deka
242
- 0.1...10^-1....deci
243
- 0.01...10^-2....centi
244
- 0.001...10^-3....milli
245
- 0.000 001...10^-6....micro
246
- 0.000 000 001...10^-9....nano
247
- 0.000 000 000 001...10^-12...pico
248
- 0.000 000 000 000 001...10^-15...femto
249
- 0.000 000 000 000 000 001...10^-18...atto
250
- 0.000 000 000 000 000 000 001...10^-21...zepto
251
- 0.000 000 000 000 000 000 000 001...10^-24...yocto
252
----------------------------------------------------
253
-
254
-```
255
-- Convert Fahrenheit <> Celsius:
256
- - Celsius = (Fahrenheit - 32) / 1.8
257
- - Fahrenheit = (Celsius * 1.8) + 32
258
-
259
-
260
-last updated: 4jul02
261
-
262
-
263
-
technology/networking/wifi_connect.md
... ...
@@ -1,10 +0,0 @@
1
-
2
-```
3
-ip link show wlp2s0
4
-ip link set wlp2s0 up
5
-iw wlp2s0 link
6
-sudo iw wlp2s0 scan | grep -i ssid
7
-ps -ef | grep wpa_supplicant
8
-sudo kill -9 <pid>
9
-connect lib/doc/wifi/home ; sudo dhclient wlp2s0
10
-```
technology/virtualisation/esxi.md
... ...
@@ -1,61 +0,0 @@
1
-# esxi
2
-
3
-## list vms
4
-```
5
-esxcli vm process list
6
-```
7
-
8
-```
9
-vim-cmd vmsvc/getallvms
10
-```
11
-
12
-## create vm
13
-[steps taken from here](#ref#2)
14
-
15
-1. create vm folder
16
- ```
17
- mkdir /vmfs/volumes/datastore1/hostname/
18
- ```
19
-
20
-2. create hard disk
21
- ```
22
- vmkfstools -c 32G -a lsilogic hostname.vmdk
23
- ```
24
- * `-c` - createvirtualdisk
25
- * `-a` - adaptertype [buslogic|lsilogic|ide|lsisas|pvscsi]
26
- * `-d` - diskformat [zeroedthick|thin|eagerzeroedthick]
27
-
28
-3. create hostname.vmx file with following ([ref 3](#ref#3) for info on vmx files)
29
- ```
30
- config.version = "8"
31
- virtualHW.version= "7"
32
- guestOS = "winnetenterprise-64"
33
- memsize = "1024"
34
- displayname = "VirtualCenter"
35
- scsi0.present = "TRUE"
36
- scsi0.virtualDev = "lsilogic"
37
- scsi0:0.present = "TRUE"
38
- scsi0:0.fileName = "VirtualCenter.vmdk"
39
- ide1:0.present = "true"
40
- ide1:0.deviceType = "cdrom-image"
41
- ide1:0.filename = "/vmfs/volumes/4a68046d-2159a120-ebac-001a9253e68f/win2k3_x64.iso"
42
- ide1:0.startConnected = "TRUE"
43
- ethernet0.present= "true"
44
- ethernet0.startConnected = "true"
45
- ethernet0.virtualDev = "e1000"
46
- ```
47
-
48
-4. change permissions on vmx file
49
- ```
50
- chmod 744 hostname.vmx
51
- ```
52
-
53
-5. add vm to inventory
54
- ```
55
- vim-cmd solo/registervm /vmfs/volumes/datastore/hostname/hostname.vmx hostname
56
- ```
57
-
58
-## ref
59
-- :1: https://pubs.vmware.com/vsphere-51/index.jsp?topic=%2Fcom.vmware.vsphere.solutions.doc%2FGUID-0A264828-3933-4F4F-82D7-B5006A90CDBA.html
60
-- :2: http://vm-help.com/esx40i/manage_without_VI_client_1.php
61
-- :3: http://sanbarrow.com/vmx.html
technology/virtualisation/index.md
... ...
@@ -1,3 +0,0 @@
1
-# virtualisation
2
-
3
-- [esxi](esxi)
technology/websites/django.md
... ...
@@ -1,4 +0,0 @@
1
-# django
2
-
3
-## cms
4
-- [wagtail](wagtail)
technology/websites/httpd.md
... ...
@@ -1,6 +0,0 @@
1
-# httpd
2
-
3
-- view modules loaded into server
4
-```
5
-httpd -l
6
-```
technology/websites/index.md
... ...
@@ -1,7 +0,0 @@
1
-# websites
2
-
3
-- [certbot](certbot)
4
-- [django](django)
5
-- [httpd](httpd)
6
-- [nginx](nginx)
7
-- [peertube](peertube)
technology/websites/wagtail.md
... ...
@@ -1,15 +0,0 @@
1
-# wagtail
2
-
3
-[docs][]
4
-
5
-## install
6
-### pre-reqs
7
-- python
8
-- pip
9
-- django
10
-
11
-```
12
-pip3 install wagtail
13
-```
14
-
15
-[docs]: http://docs.wagtail.io/en/v2.3/getting_started/tutorial.html
udmey/docker_master/index.md
... ...
@@ -0,0 +1,11 @@
1
+# docker master: with kubernetes +swarm from a docker captain
2
+
3
+lecturer: [bret fisher][]
4
+
5
+[course repo][]
6
+
7
+* [section3](section3/index) - creating and using containers like a boss
8
+* [section4](section4/index) - container images, where to find them and how to build them
9
+
10
+[bret fisher]: https://bretfisher.com
11
+[course repo]: https://github.com/BretFisher/udemy-docker-mastery.git
udmey/docker_master/section3/cli_app_testing.md
... ...
@@ -0,0 +1,18 @@
1
+# cli app testing
2
+
3
+## requirements
4
+* check `curl` version
5
+* use `centos:7` and `ubuntu:14.04`
6
+ * centos: `yum update curl`
7
+ * ubuntu: `apt-get update && apt-get install curl`
8
+* use `docker container --rm` for easy clean up
9
+
10
+## answers
11
+```
12
+docker container run --rm -it centos:7 bash
13
+ yum update curl
14
+ curl --version
15
+docker container run --rm -it ubuntu:14.04 bash
16
+ apt-get update && apt-get install curl
17
+ curl --version
18
+```
udmey/docker_master/section3/dns_round_robin_test.md
... ...
@@ -0,0 +1,32 @@
1
+# dns rr test
2
+
3
+_note_
4
+use `nslookup search.` with latest alpine image
5
+or use older image like `alpine:3.10`
6
+
7
+## requirements
8
+* know host to use `-it` to get shell
9
+* understand basics of different distros (ubuntu vs. centos)
10
+* know how to run a container
11
+* understand basics of dns records
12
+
13
+## assignment
14
+* since docker engine 1.11 we can have multiple containers on a created network respond to the same dns address
15
+* create a new virtual network (default bridge driver)
16
+* create two containers from `elasticsearch:2` image
17
+* research and use `--network-alias search` when creating them to give an additional dns name to respond to
18
+* run `alpine nslookup search` with `--net` to see the two containers list for the same dns name
19
+* run `centos curl -s search:9200` with `--net` multiple times until you see both "name" fields change
20
+
21
+## answer
22
+```
23
+--network-alias list Add network-scoped alias for the container
24
+```
25
+
26
+```
27
+docker network create search_net
28
+docker network ls
29
+repeat 2 { docker container run -d --net search_net --network-alias search elasticsearch:2 }
30
+docker container run --net search_net -it alpine watch nslookup search.
31
+docker container run --net search_net -it centos curl -s search:9200
32
+```
udmey/docker_master/section3/docker_networks.md
... ...
@@ -0,0 +1,64 @@
1
+# docker networks
2
+## concepts for private and public comms in containers
3
+
4
+* review of `docker container run -p`
5
+* for local dev/testing, networks usually "just work"
6
+* quick port check with `docker container port <container>`
7
+* learn concepts of docker networking
8
+* understand how network packets move around docker
9
+
10
+* each container uses a priv virt net "bridge"
11
+* each virt net routes through nat firewall
12
+* all containers on a virt net can talk without `-p`
13
+* "batteries included, but removable"
14
+ * defaults work well in many cases, but easy to swap out parts to customise it
15
+* make new virt nets
16
+* attach containers to more than one virt net
17
+* skip virt nets and use host (`--net=host`)
18
+* use different docker network drivers to gain new abilities
19
+
20
+
21
+```
22
+docker container run -p 80:80 --name webhost -d nginx
23
+docker container port webhost
24
+```
25
+
26
+* `--format` - a common option for formatting the output of commands using 'go templates'
27
+```
28
+docker container inspect --format '{{ .NetworkSettings.IPAddress }}' webhost
29
+```
30
+
31
+## cli management of virtual networks
32
+| command | description |
33
+| --- | --- |
34
+| `docker network ls` | show networks |
35
+| `docker network inspect` | inspect a network |
36
+| `docker network create --driver` | create a network |
37
+| `docker network connect` | attach a network to a container |
38
+| `docker network disconnect` | detach a network from a container |
39
+
40
+* bridge - default docker network
41
+* host - skip virtual networks but sacrifices security
42
+* none - removes eth0 leaving on localhost interface in container
43
+
44
+```
45
+docker network create <network_name>
46
+```
47
+* uses bridge driver by default
48
+
49
+```
50
+docker container run -d --name <container_name> --network <network_name> <image>
51
+```
52
+
53
+using `connect` and `disconnect` you can add more networks or change networks, like plugging additional nics or switching eth cables.
54
+
55
+## dns and how container find each other
56
+
57
+* understand how dns is the key (can't rely on ips)
58
+ * can't use ip addresses because so dynamic
59
+* see how it works by default with custom networks
60
+* learn how to use `--link` to enable dns on default bridge network
61
+
62
+- containers on the same network have automatically dns resolution with container name
63
+- default bridge network does not have dns by default
64
+ - can use `--link` when starting containers to link in default bridge network
udmey/docker_master/section3/getting_shell_inside_containers.md
... ...
@@ -0,0 +1,9 @@
1
+# getting shell inside containers
2
+
3
+| command | description |
4
+| `docker container run -it` | start new container interactively |
5
+| `docker container exec -it` | run additional command in existing container |
6
+
7
+```
8
+docker container run -it --name proxy nginx bash
9
+```
udmey/docker_master/section3/index.md
... ...
@@ -0,0 +1,21 @@
1
+# section 3
2
+# creating and using containers like a boss
3
+
4
+[starting a nginx web server](starting_a_nginx_web_server)
5
+
6
+`docker <command>`
7
+`docker <management_command> <sub_command>`
8
+
9
+[what happens when we run a container](what_happens_when_we_run_a_container)
10
+
11
+assignment: [manage multiple containers](manage_multiple_containers)
12
+
13
+[what's going on in containers](whats_going_on_in_containers)
14
+
15
+[getting shell inside containers](getting_shell_inside_containers)
16
+
17
+[docker networks](docker_networks)
18
+
19
+assignment: [cli app testing](cli_app_testing)
20
+
21
+assignment: [dns round robin test](dns_round_robin_test)
udmey/docker_master/section3/manage_multiple_containers.md
... ...
@@ -0,0 +1,18 @@
1
+# manage multiple containers
2
+
3
+https://docs.docker.com and `--help` are your friend
4
+
5
+* 3 container app
6
+ * nginx, mysql, httpd
7
+ * run all with `--detach` and `--name`
8
+* nginx on `80:80`
9
+* httpd on `8080:80`
10
+* mysql on `3306:3306`
11
+* when running mysql use `--env` to pass var
12
+ * `MYSQL_RANDOM_ROOT_PASSWORD=yes`
13
+
14
+```
15
+docker container run -d -p 80:80 --name nginx <nginx_image>:latest
16
+docker container run -d -p 8080:80 --name httpd <httpd_image>:latest
17
+docker container run -d -p 3306:3306 --name mysql --env MYSQL_RANDOM_ROOT_PASSWORD=yes <mysql_image>:latest
18
+```
udmey/docker_master/section3/starting_a_nginx_web_server.md
... ...
@@ -0,0 +1,30 @@
1
+# starting a nginx web server
2
+
3
+```
4
+docker container run --publish 80:80 nginx
5
+```
6
+* pulls latest image from docker hub
7
+* starts new container using latest image
8
+* opened port 80
9
+* routes traffic from localhost:80
10
+
11
+list containers
12
+```
13
+docker container ls [-a]
14
+```
15
+
16
+stop container
17
+```
18
+docker container stop <container_id>
19
+```
20
+- only need first few characters of container id
21
+
22
+view container logs
23
+```
24
+docker container logs <container_name>
25
+```
26
+
27
+display running processes
28
+```
29
+docker container top <container_name>
30
+```
udmey/docker_master/section3/what_happens_when_we_run_a_container.md
... ...
@@ -0,0 +1,17 @@
1
+# debrief: what happens when we run a container
2
+
3
+- looks for image locally
4
+- if not locally pulls to from repo (default docker hub)
5
+- downloads latest version by default
6
+- creates new container
7
+- gives a virt ip on private network inside docker engine
8
+- opens up port 80 on host and forwards to port 80 in container
9
+- starts container using the CMD in the image dockerfile
10
+
11
+```
12
+docker container run --publish 8080:80 --name webhost -d nginx:1.11 nginx -T
13
+```
14
+- change host listening port to `8080`
15
+- change version of image to `1.11`
16
+- change CMD run on start with `-T`
17
+
udmey/docker_master/section3/whats_going_on_in_containers.md
... ...
@@ -0,0 +1,17 @@
1
+# what's going on in containers
2
+
3
+| command | description |
4
+| --- | --- |
5
+| `docker container top` | process list in one container |
6
+| `docker container inspect` | details of one container config |
7
+| `docker container stats` | performance stats for all containers |
8
+
9
+```
10
+docker container run -d --name nginx nginx
11
+docker container run -d --name mysql -e MYSQL_RANDOM_ROOT_PASSWORD=true mysql
12
+docker container ls
13
+docker container top mysql
14
+docker container top nginx
15
+docker container inspect nginx
16
+docker container stats
17
+```
udmey/docker_master/section4/build_your_own_dockerfile.md
... ...
@@ -0,0 +1,11 @@
1
+# build you own dockerfile and run containers from it
2
+
3
+* dockerfiles are part process workflow and part art
4
+* take existing node.js app and 'dockerize' it
5
+* make `Dockerfile`. build it. test it. push it. rm it. run it
6
+* expect this to be iterative. don't always get it right first time
7
+* details in `~/src/udemy/docker_mastery/dockerfile-assignment-1/Dockerfile`
8
+* use alpine version of official 'node' 6.x image
9
+* expected result is website at http://localhost
10
+* tag and push to docker hub
11
+* remove your image from local cache, run again from hub
udmey/docker_master/section4/dockerfile_basics.md
... ...
@@ -0,0 +1,20 @@
1
+# dockerfile basics
2
+
3
+/home/pyratebeard/src/udemy/docker_mastery/dockerfile-sample-1
4
+
5
+* 'recipe' for creating images
6
+* use `-f` to specify dockerfile
7
+* must include `FROM` line to start
8
+ * to start with an empty container use `FROM scratch`
9
+* each stanza is another layer in the cache
10
+* point logs to `/dev/{stdout,stderr}`
11
+* `EXPOSE` to open ports, still use `-p`
12
+* `CMD` is required and is run when the container is launched
13
+* `WORKDIR` better than using `cd` command
14
+
15
+## extending official samples
16
+
17
+/home/pyratebeard/src/udemy/docker_mastery/dockerfile-sample-2
18
+
19
+* inherit everything from `FROM`
20
+ * used `CMD` from building image
udmey/docker_master/section4/images_and_their_layers.md
... ...
@@ -0,0 +1,32 @@
1
+# images and their layers
2
+# discover the image cache
3
+
4
+* image layers
5
+* union file system
6
+* `history` and `inspect` commands
7
+* copy on write
8
+
9
+## image layers
10
+```
11
+docker image history <image_name>
12
+```
13
+
14
+* all images start with "scratch"
15
+* each layer gets a unique "sha" (sha256)
16
+* don't need to download layers we already have in cache
17
+* never storing multiple image layers
18
+
19
+view image metadata
20
+```
21
+docker image inspect <image_name>
22
+```
23
+
24
+## image tagging and pushing
25
+* image id vs tag
26
+* image don't have a "name"
27
+ * repository / tag / image id
28
+* tag is not quite a 'version'
29
+* tagging an image
30
+```
31
+docker image tag <source_image>[:tag] <target_name>[:tag]
32
+```
udmey/docker_master/section4/index.md
... ...
@@ -0,0 +1,7 @@
1
+# container images, where to find them and how to build them
2
+
3
+[images and their layers](images_and_their_layers)
4
+
5
+[dockerfile basics](dockerfile_basics)
6
+
7
+assignment: [build your own dockerfile](build_your_own_dockerfile)
udmey/grafana/index.md
... ...
@@ -0,0 +1,7 @@
1
+# grafana and graphite
2
+
3
+instructor: aref k
4
+
5
+* [section2](section2/index) - installing and configuring grafana
6
+* [section3](section3/index) - installing and configuring graphite and statsd
7
+* [section4](section4/index) - using grafana
unix/freebsd.md
... ...
@@ -0,0 +1,58 @@
1
+# freebsd
2
+
3
+## setting up new install
4
+* update
5
+```
6
+freebsd-update fetch install
7
+```
8
+* install package manager
9
+```
10
+pkg update
11
+```
12
+
13
+## check memory
14
+```
15
+dmesg | grep -i memory
16
+```
17
+
18
+* colemak ergonomic alt (colemak.acc.kbd) keymap
19
+* add user to wheel group to be able to `su`
20
+
21
+## post install
22
+```
23
+su
24
+pkg update
25
+pkg install sudo xorg herbstluftwm rxvt-unicode vim git zsh tmux stow unclutter xcape xbindkeys keychain dmenu bash
26
+# edit sudoers to allow wheel group
27
+# g clone tamzen font - follow readme for install
28
+unlink ~/.xserverrc
29
+sudo ln -s /usr/local/bin/zsh /usr/bin/zsh
30
+sudo chsh pyratebeard
31
+ shell > /usr/local/bin/zsh
32
+```
33
+
34
+### wifi config
35
+```
36
+sudo su -
37
+sysctl net.wlan.devices # check device id
38
+vi /etc/wpa_supplicant.conf
39
+ network={
40
+ ssid="ssid"
41
+ psk="passwd"
42
+ }
43
+vi /etc/rc.conf
44
+ wlans_ath0="wlan0"
45
+ ifconfig_wlan0="WPA SYNCDHCP"
46
+vi /boot/loader.conf
47
+ if_ath_load="YES"
48
+ wlan_ccmp_load="YES"
49
+ wlan_tkip_load="YES"
50
+reboot
51
+ifconfig wlan0 create wlandev <device_id>
52
+ifconfig wlan0 up scan
53
+service netif restart
54
+```
55
+
56
+## in vm
57
+* set virt-manager video to VGA for full res
58
+* remove 'tablet' device so mouse capture works
unix/openbsd.md
... ...
@@ -0,0 +1,8 @@
1
+# openbsd
2
+
3
+## setup
4
+
5
+## firewall
6
+```
7
+vi /etc/pf.conf
8
+```
unsorted/funding.md
... ...
@@ -0,0 +1,54 @@
1
+# funding
2
+
3
+## organisations
4
+* eff
5
+ * 100 USD (2020)
6
+ * 103 USD (2021)
7
+* tor
8
+* digital rights ireland
9
+ * 100 EUR (2021)
10
+* open rights group
11
+
12
+## projects
13
+* linux kernel
14
+* arch linux
15
+
16
+## content
17
+* late night linux (4.50 EUR p/m via patreon)
18
+* veronica explains (10.80 EUR p/a via patreon)
19
+
20
+## software
21
+* 2bwm
22
+* rxvt-unicode (no mention of donation on website)
23
+* zsh (no mention of donation on website)
24
+* vim (donations sent to uganda)
25
+* mutt (no mention of donation on website)
26
+* tmux (no mention of donation on website)
27
+* termux (2 EUR p/m via patreon)
28
+* newsboat (no mention of donation on website)
29
+* gpg (no longer requires donations)
30
+* irssi (no mention of donation on website)
31
+* dunst (no mention of donation on website)
32
+* cmus (no mention of donation on website)
33
+* barrier (no mention of donation on website)
34
+* qutebrowser (23 CHF (2017) via kickstarter)
35
+* firefox
36
+* mosh (no mention of donation on website)
37
+* ssh (doesn't require funding?)
38
+* bash (part or gnu, support fsf)
39
+* git (donations to software freedom conservancy)
40
+* andotp (donate to two devs individually)
41
+* keychain (part of funtoo project)
42
+
43
+
44
+
45
+- video: mpv
46
+- image: sxiv
47
+- email: offlineimap
48
+- pdf: zathura
49
+- screenshot: scrot
50
+- gopher: sacc
51
+- password: pass
52
+- bookmarks: buku
53
+- torrents: rtorrent
54
+- other: drist, dtach, at
unsorted/hackthebox.md
... ...
@@ -0,0 +1,93 @@
1
+# hack the box
2
+
3
+- [web](#web)
4
+- [misc](#misc)
5
+
6
+## invite code
7
+url: https://www.hackthebox.eu/invite
8
+
9
+- inspect invite code input box element
10
+ - find script 'src="/js/inviteapi.min.js"'
11
+- navigate to script url (https://www.hackthebox.eu/js/inviteapi.min.js)
12
+- run 'makeInviteCode' function in browser console
13
+ - expand Object output
14
+ - decode data string (base64)
15
+ ```
16
+ echo <string> | base64 -d -
17
+ ```
18
+ - output gives '/api/invite/generate'
19
+- use `curl` to send POST request
20
+ ```
21
+ curl -X POST https://www.hackthebox.eu/api/invite/generate
22
+ ```
23
+ - output gives us encoded code string
24
+- decode code string
25
+ ```
26
+ echo <string> | base64 -d -
27
+ ```
28
+- copy invite code into input box and submit
29
+
30
+## forensics
31
+#### marshal in the middle
32
+- download zip file
33
+- unzip using password
34
+- following files extracted
35
+ ```
36
+ .
37
+ ├── bro/
38
+ │ ├── conn.log
39
+ │ ├── dns.log
40
+ │ ├── files.log
41
+ │ ├── http.log
42
+ │ ├── packet_filter.log
43
+ │ ├── ssl.log
44
+ │ └── weird.log
45
+ ├── bundle.pem
46
+ ├── chalcap.pcapng
47
+ └── secrets.log
48
+ ```
49
+- open pcap file in wireshark
50
+
51
+## web
52
+#### lernaean (20 pts)
53
+- open url:port provided from instance
54
+- proxy page through burpsuite
55
+ - submit password to see response
56
+ - submit root is '/'
57
+ - response containse 'Invalid password!' string
58
+- lernaean is the hydra from greek mythology
59
+- hydra is a password bruteforce tool
60
+- run a password list through hydra
61
+ ```
62
+ hydra -l "" -P <pass_list> -s <port> -f docker.hackthebox.eu http-post-form "/:password=^PASS^:Invalid password\!"
63
+ ```
64
+ - `-l` : user (blank as no username field)
65
+ - `-P` : password file (used common-passwords.txt first with no luck, success with rockyou.txt)
66
+ - `-s` : port
67
+ - `-f` : exit when creds found
68
+ - url (from instance)
69
+ - service
70
+ - root of submit, tell it to use passwords from file, login failed message (escape the !)
71
+- once password is found submit in field
72
+- this displays a new page
73
+- check response in burp to find HTB flag
74
+
75
+## misc
76
+#### 0ld is g0ld (10 pts)
77
+- download zip file
78
+- unzip a password protected pdf
79
+- use `pdfcrack` to bruteforce password
80
+ ```
81
+ pdfcrack -f 0ld\ is\ g0ld.pdf -w /path/to/rockyou.txt
82
+ ```
83
+- open pdf with password
84
+- scroll to bottom and zoom in a lot to find morse code
85
+ ```
86
+ .-. .---- .--. ... .- -- ..- ...-- .-.. -- ----- .-. ... ...--
87
+ ```
88
+- translate code
89
+ ```
90
+ R1PSAMU3LM0RS3
91
+ ```
92
+- submit flag (wrap with HTB{<string>})
93
+
unsorted/longbox.md
... ...
@@ -0,0 +1,26 @@
1
+# longbox
2
+
3
+comic stash app
4
+
5
+* gcd database dump in mysql format
6
+* on arch install mariadb
7
+```
8
+pacman -S mariadb
9
+mariadb-install-db --user=mysql --basedir=/usr --datadir=/var/lib/mysql
10
+systemctl start mariadb
11
+mysql -u root -p # empty password
12
+create user 'gcd'@'localhost' idetified by 'gcddump';
13
+create database gcd;
14
+grant all privileges on gcd.* to 'gcd'@'localhost';
15
+flush privileges;
16
+quit;
17
+```
18
+* download current database from https://www.comics.org/download
19
+* import database
20
+```
21
+cd ~/tmp
22
+unzip current.zip
23
+mysql -u gcd -p
24
+use gcd;
25
+source YYYY-MM-DD.sql
26
+```
unsorted/new_blog.md
... ...
@@ -0,0 +1,308 @@
1
+# new blog
2
+
3
+## setting up docker
4
+- create new centos8 droplet
5
+- log in (as root) and update
6
+ ```
7
+ dnf update
8
+ systemctl reboot
9
+ ```
10
+- set up docker repo
11
+ ```
12
+ dnf config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
13
+ ```
14
+- install `docker` (have to use version 18.09.1 due to version of containerd.io available
15
+ ```
16
+ dnf install docker-ce-18.09.1 docker-ce-cli-18.09.1 containerd.io
17
+ systemctl enable docker
18
+ systemctl start docker
19
+ ```
20
+
21
+## create and register gitlab runner
22
+- install gitlab-runner on server
23
+- register (shell executor)
24
+-
25
+- build and run gitlab-runner image - we need two, one to build and one to deploy (use tags)
26
+ ```
27
+ docker run -d --name gitlab-runner1 --restart always -v /var/run/docker.sock:/var/run/docker.sock -v /srv/gitlab-runner/config:/etc/gitlab-runner:Z gitlab/gitlab-runner:latest
28
+ docker exec -ti gitlab-runner1 gitlab-runner register
29
+ ```
30
+ _need to add --privileged to runner2_
31
+- when prompted enter
32
+ - coordinator URL: https://gitlab.com
33
+ - token: found under ...
34
+ - description: anything you want
35
+ - tags: build/deploy
36
+ - executor: 'docker' for both
37
+ - base image: 'gcr.io/kaniko-project/executor:debug' for 1, 'docker:latest' for 2
38
+
39
+## configure gitlab ci
40
+- build and deploy using simple docker commands
41
+-
42
+- copy the following into a file called 'gitlab-ci.yml' in the project repo
43
+ ```
44
+ build:
45
+ stage: build
46
+ image:
47
+ name: gcr.io/kaniko-project/executor:debug
48
+ entrypoint: [""]
49
+ script:
50
+ - echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json
51
+ - /kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/Dockerfile --destination $CI_REGISTRY_IMAGE:$CI_COMMIT_TAG
52
+ only:
53
+ - tags
54
+ ```
55
+- the env variables need to be added into the gitlab project ci/cd settings
56
+
57
+## setting up static site generator
58
+- requires hugo to be installed
59
+- start a new site, the `--force` option is because we already have files in the project repo
60
+ ```
61
+ hugo new site . --force
62
+ git submodule add https://gitlab.com/pyratebeard/hugo-futuremyth.git themes/futuremyth
63
+ echo 'theme = "futuremyth"' >> config.toml
64
+ hugo new posts/my-first-post.md
65
+ ```
66
+- run server in development mode
67
+ ```
68
+ hugo server -D
69
+ ```
70
+- change 'title' in 'config.toml'
71
+- build static pages
72
+ ```
73
+ hugo -D
74
+ ```
75
+- to deploy drafts update head to say
76
+ ```
77
+ draft: false
78
+ ```
79
+
80
+
81
+#### setting up kubernetes (minikube - single node)
82
+- create new centos8 droplet
83
+- log in (as root) and run `dnf update`
84
+- set up docker repo
85
+ ```
86
+ dnf install device-mapper-persistent-data lvm2
87
+ dnf config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
88
+ ```
89
+- install `docker` (have to use version 18.09.1 due to version of containerd.io available
90
+ ```
91
+ dnf install docker-ce-18.09.1 docker-ce-cli-18.09.1 containerd.io
92
+ systemctl enable docker
93
+ systemctl start docker
94
+ ```
95
+- set up kubernetes repo
96
+ ```
97
+ cat > /etc/yum.repos.d/kubernetes.repo << EOF
98
+ [kubernetes]
99
+ name=Kubernetes
100
+ baseurl=https://packages.cloud.google.com/yum/repos/kubernetes-el7-x86_64
101
+ enabled=1
102
+ gpgcheck=1
103
+ repo_gpgcheck=1
104
+ gpgkey=https://packages.cloud.google.com/yum/doc/yum-key.gpg https://packages.cloud.google.com/yum/doc/rpm-package-key.gpg
105
+ EOF
106
+ ```
107
+- install `kubectl`
108
+ ```
109
+ dnf install kubectl
110
+ ```
111
+
112
+# attempt 2
113
+
114
+- create new empty project on gitlab
115
+- on local machine create new hugo site
116
+ ```
117
+ hugo new site hugo_blog
118
+ cd hugo_blog
119
+ git init
120
+ git remote add origin git@gitlab.com:<username>/<project_name>.git
121
+ ```
122
+- add a theme to your site
123
+ ```
124
+ git submodule add https://github.com/budparr/gohugo-theme-ananke.git themes/ananke
125
+ echo 'theme = "ananke"' >> config.toml
126
+ ```
127
+- change the [resource cache][] so gitlab ci/cd doesn't break
128
+ ```
129
+ cat >> config.toml <<EOF
130
+ [caches.images]
131
+ dir = ":cacheDir/_gen"
132
+ [caches.assets]
133
+ dir = ":cacheDir/_gen"
134
+ EOF
135
+ ```
136
+- create your first new post
137
+ ```
138
+ hugo new posts/initial_post.md
139
+ ```
140
+- to view your site locally run the development server with the `-D` flag
141
+ ```
142
+ hugo server -D
143
+ ```
144
+- to publish your post change the 'draft' header to 'false'
145
+- create a file called '.gitlab-ci.yml' with the following
146
+ ```
147
+ build:
148
+ stage: build
149
+ image: docker:latest
150
+ services:
151
+ - docker:dind
152
+ before_script:
153
+ - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
154
+ script:
155
+ - docker build --pull -t $CI_REGISTRY_IMAGE:latest .
156
+ - docker push $CI_REGISTRY_IMAGE:latest
157
+
158
+ deploy:
159
+ stage: deploy
160
+ image: docker:latest
161
+ services:
162
+ - docker:dind
163
+ tags:
164
+ - deploy
165
+ before_script:
166
+ - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
167
+ script:
168
+ - docker pull $CI_REGISTRY_IMAGE
169
+ - docker run -d --name "blog_test_2" -p 80:1313 -v $(pwd):/site $CI_REGISTRY_IMAGE
170
+ ```
171
+- create a Dockerfile with the following
172
+ ```
173
+ FROM jojomi/hugo
174
+
175
+ COPY . /site
176
+ WORKDIR /site
177
+
178
+ # enable hugo watch to keep container alive
179
+ ENV HUGO_WATCH=true
180
+
181
+ RUN hugo
182
+
183
+ # saw an issue with the resource directory permissions
184
+ RUN chown -R docker: /site/resources/
185
+ ```
186
+- in you gitlab account settings under 'access tokens' add a new personal access token with 'api' scope enabled
187
+- in your gitlab project ci/cd settings under variables add the following
188
+ | key | value |
189
+ | --- | --- |
190
+ | CI_REGISTRY | registry.gitlab.com |
191
+ | CI_REGISTRY_IMAGE | registry.gitlab.com/<username>/<project_name> |
192
+ | CI_REGISTRY_USER | <username> |
193
+ | CI_REGISTRY_PASSWORD | <personal_access_token> |
194
+ | CONTAINER_NAME | <anything> |
195
+- mark the CI_REGISTRY_PASSWORD variable as 'Protected'
196
+- create a [gitlab runner][] on your server. you *must* have docker installed and working for the runner to work
197
+ - use the registration token found under the runners section in the ci/cd settings
198
+ - apply the tag 'deploy'
199
+ - select the 'shell' executor
200
+- make sure you have docker running on your server and add the gitlab-runner user to the docker group
201
+ ```
202
+ sudo usermod -aG docker gitlab-runner
203
+ ```
204
+- you can now commit and push your repo to trigger the pipeline
205
+ ```
206
+ git add .
207
+ git commit -m "initial commit"
208
+ git push -u origin master
209
+ ```
210
+
211
+- update submodule
212
+ ```
213
+ git submodule update --remote
214
+ ```
215
+
216
+[gitlab runner]: https://docs.gitlab.com/runner/install/linux-repository.html
217
+[resource cache]: https://gohugo.io/getting-started/configuration/#configure-file-caches
218
+
219
+
220
+
221
+# final attempt
222
+## Getting setup
223
+Generate a new [Hugo](https://gohugo.io) site, for this example I will be calling my 'pyratelog'
224
+```
225
+hugo new site pyratelog
226
+```
227
+
228
+Navigate into the new directory and initialise it as a git repository
229
+```
230
+cd pyratelog
231
+git init
232
+```
233
+
234
+Create a new project in [Gitlab](https://gitlab.com)
235
+
236
+![new_gitlab_project](img/20200302-hugo_blog-new_project.png#fitwidth)
237
+
238
+Add your new Gitlab project as a remote repo to your Hugo site and make an inital commit if you want
239
+```
240
+git remote add origin git@gitlab.com:pyratebeard/pyratelog.git
241
+git add .
242
+git commit -m "initial commit"
243
+git push -u origin master
244
+```
245
+
246
+Your Gitlab project should now be populated with a `config.toml` file and the 'archetypes' directory.
247
+
248
+![inital_commit](img/20200302-hugo_blog-initial_commit.png#fitwidth)
249
+
250
+I won't keep mentioning when to commit changes to git as we all work differently. We will come to it a bit later when we configure our CI/CD pipeline.
251
+
252
+## Configure Hugo
253
+Let us add a theme to our Hugo project, in this case I will use my own 'futuremyth' theme
254
+```
255
+git submodule add https://gitlab.com/pyratebeard/hugo-futuremyth.git themes/futuremyth
256
+echo 'theme = "futuremyth"' >> config.toml
257
+```
258
+
259
+I have added in the 'pagination' variable to change the default of 10 items to 5, and also set a static directory for use with images in my log entries
260
+```
261
+cat >> config.toml << EOF
262
+pagination = "5"
263
+staticDir = ["static"]
264
+EOF
265
+```
266
+
267
+I found it is a good idea to change some of the cache directories. There was an issue I had in my Gitlab CI/CD pipeline with root permissions being set on a directory, causing the pipeline to fail
268
+```
269
+cat >> config.toml << EOF
270
+[caches.images]
271
+dir = ":cacheDir/_gen"
272
+[caches.assets]
273
+dir = ":cacheDir/_gen"
274
+EOF
275
+```
276
+
277
+You should also edit the 'baseURL' and 'title' variables in your `config.toml`
278
+
279
+You can start Hugo on your local machine in development mode using
280
+```
281
+hugo server -D
282
+```
283
+
284
+If you navigate to http://localhost:1313 you should see a fairly empty page. To add new content you run
285
+```
286
+hugo new posts/hello_world.md
287
+```
288
+You change the path to whatever you want, and it will be created under the 'content' directory.
289
+
290
+If you left your deployment server running you should see that in your browser the site should automatically updates. You first entry should show the title of your post and the date. You can open the markdown file in your favourite editor and start writing below the second set of hyphens (`---`). Everything between the hyphens is metadata for the page. You can add more if you like, I add a 'summary', 'categories', and 'tags' in the following way
291
+```
292
+summary: How I set up a Hugo website and deployed with Gitlab's CI/CD pipeline
293
+categories: [tech]
294
+tags: [website, hugo, devops, gitlab, automation]
295
+```
296
+
297
+We can now build our site by running
298
+```
299
+hugo
300
+```
301
+
302
+This won't include our first post because we have left the `draft` variable as `true`. When you are ready to publish change it to `false` and build the site again. You can build with drafts included by running
303
+```
304
+hugo -D
305
+```
306
+
307
+## AutoDevOps
308
+There a many ways you can host a website, and many ways you can use Gitlab's CI/CD pipeline to automate the process. The method I have opted for is to run my Hugo site in a docker container on a DigitalOcean droplet. I have chosen *not* to use `docker-compose` to include the Nginx reverse proxy as I host other things behind Nginx and don't want it to be controlled by my Hugo container
unsorted/nmcli_create_bond.md
... ...
@@ -0,0 +1,96 @@
1
+# nmcli create bond
2
+
3
+: 1594222329:0;rfkill -l
4
+: 1594222339:0;rfkill unblock 0
5
+
6
+: 1594222690:4;sudo iw dev wlp6s0 scan | grep -i ssid
7
+
8
+: 1594224355:1;nmcli radio wifi on
9
+: 1594224392:0;nmcli dev wifi list
10
+: 1594224399:0;nmcli radio wifi
11
+: 1594224409:0;nmcli dev wifi rescan
12
+: 1594224437:0;nmcli dev disconnect wlp6s0
13
+: 1594224449:0;nmcli dev connect wlp6s0
14
+
15
+: 1594285451:1;nmcli con add type bond ifname kickassbond
16
+: 1594285462:0;nmcli con delete type bond ifname kickassbond
17
+: 1594285468:0;nmcli con delete kickassbond
18
+: 1594285472:1;nmcli con delete bond-kickassbond
19
+: 1594285496:0;nmcli con add type bond ifname kickass
20
+: 1594285517:1;nmcli con add type bond ifname kickass bond.options
21
+: 1594285540:0;nmcli con add type bond ifname kickass bond.options "mode=balance-rr,miimon=100"
22
+: 1594285572:0;nmcli con add type type ethernet ifname enp8s0 master kickass
23
+: 1594285582:1;nmcli con add type ethernet ifname enp8s0 master kickass
24
+: 1594285627:0;nmcli con add type wifi ifname wlp6s0 master kickass
25
+: 1594285730:0;nmcli con add type wifi ssid "o==[]::::::::::::::::>" master kickass
26
+: 1594285738:0;nmcli con add type wifi ssid "o==[]::::::::::::::::>" ifname wlp6s0 master kickass
27
+: 1594285812:0;nmcli con up bond-slave-enp8s0
28
+: 1594285852:10;journalctl -xe NM_CONNECTION=1460fb4b-ad97-41a3-bcec-869282a6d82b + NM_DEVICE=wlp6s0
29
+: 1594285909:0;nmcli device wifi scan
30
+: 1594285913:0;nmcli device wifi list
31
+: 1594286137:0;nmcli con up bond-kickass
32
+: 1594286168:1;nmcli con down bond-kickass
33
+: 1594286174:0;history
34
+: 1594286208:0;nmcli con delete bond-kickass-1
35
+: 1594286228:0;nmcli son sh
36
+: 1594286243:30;nmcli con edit bond-slave-wlp6s0
37
+: 1594286326:12;nmcli connection edit bond-kickass
38
+: 1594286348:11;nmcli connection edit bond-slave-wlp6s0
39
+: 1594286380:0;sudo ip link set wlp6s0 up
40
+: 1594286395:28;nmcli con up bond-slave-wlp6s0
41
+: 1594286882:0;nmcli d wifi list
42
+: 1594286940:0;nmcli connection delete bond-slave-enp8s0
43
+: 1594286944:1;nmcli connection delete bond-slave-wlp6s0
44
+: 1594286948:0;nmcli connection delete bond-kickass
45
+: 1594287033:0;nmcli con add type bond con-name kickass ifname bond0 mode active-backup primary enp8s0 +bond.options "fail_over_mac=active,miimon=100,primary_reselct=always,updelay=200"
46
+: 1594287081:0;nmcli con add type wifi con-name bond-wifi slave-type bond master bond0 ifname wlp6s0 ssid "o==[]::::::::::::::::>"
47
+: 1594287111:0;nmcli c modify bond-wifi wifi-sec.key-mgmt wpa-psk wifi-sec.psk eK6rvvnew2am
48
+: 1594287137:0;nmcli con add type ethernet con-name bond-eth slave-type bond master bond0 ifname enp8s0
49
+: 1594287198:2;watch nmcli dev
50
+: 1594287253:1;watch nmcli con
51
+: 1594287280:0;nmcli
52
+: 1594287383:1;nmcli con down docker0
53
+: 1594290558:2;nmcli con up kickass
54
+: 1594290585:1;nmcli con down kickass
55
+: 1594290598:1;nmcli con del bond-eth
56
+: 1594290601:0;nmcli con del bond-wifi
57
+: 1594290604:0;nmcli con del kickass
58
+: 1594290722:0;ethtool -S enp8s0
59
+: 1594290741:3;nmcli con up o==\[\]::::::::::::::::\>
60
+: 1594284802:0;switchkb us
61
+: 1594284813:0;xrandr --output HDMI-1 --primary --rotate left --output DVI-I-1 --off
62
+: 1594284880:0;rfkill
63
+: 1594284940:39;v tmp/urls-list-1594284599504.txt
64
+: 1594285209:0;ethtool enp8s0
65
+: 1594285340:0;sudo ethtool enp8s0
66
+: 1594286910:3862;v
67
+: 1594290775:0;sudo ethtool -S enp8s0
68
+: 1594291101:1;nmcli con down o==\[\]::::::::::::::::\>
69
+: 1594291116:0;nmcli dev
70
+: 1594291141:4;journalctl -xe NM_CONNECTION=b547c4cc-26e4-35dc-8a44-98dc3e17742e + NM_DEVICE=enp8s0 -f
71
+: 1594291213:0;nmcli con sh
72
+: 1594291216:0;nmcli con sh Wired\ connection\ 1
73
+: 1594291224:0;ip route
74
+: 1594291241:0;cat /etc/resolv.conf
75
+: 1594291253:23;nmcli con edit Wired\ connection\ 1
76
+: 1594291287:0;nmcli con down Wired\ connection\ 1
77
+: 1594291291:0;nmcli con up Wired\ connection\ 1
78
+: 1594291305:8;nslookup pyratebeard.net
79
+: 1594291324:0;netstat -rn
80
+: 1594291361:0;nmcli c down Wired\ connection\ 1
81
+: 1594291365:258;nmcli c edit Wired\ connection\ 1
82
+: 1594291637:5;ping 192.168.1.1
83
+: 1594291663:30;journalctl -u NetworkManager
84
+: 1594291708:78;nmcli con edit o==\[\]::::::::::::::::\>
85
+: 1594291788:0;nmcli
86
+: 1594291962:11;journalctl -xe NM_CONNECTION=b547c4cc-26e4-35dc-8a44-98dc3e17742e + NM_DEVICE=enp8s0
87
+: 1594291976:17;nmcli con edit wired
88
+: 1594292087:2;nmcli con up wired
89
+: 1594292101:0;nmcli con down wired
90
+: 1594292183:0;nmcli con add type bond con-name kickass ifname bond0 mode active-backup primary enp8s0 +bond.options "fail_over_mac=active,miimon=100,primary_reselect=always,updelay=200"
91
+: 1594292263:0;nmcli con add type wifi con-name kickass-wifi slave-type bond master bond0 ifname wlp6s0 ssid "o==[]::::::::::::::::>"
92
+: 1594292289:0;nmcli c modify kickass-wifi wifi-sec.key-mgmt wpa-psk wifi-sec.psk eK6rvvnew2am
93
+: 1594292315:0;nmcli con add type ethernet con-name kickass-eth slave-type bond master bond0 ifname enp8s0
94
+: 1594292318:0;nmcli con
95
+: 1594292321:0;ip a
96
+: 1594292386:58;nmcli con edit kickass
unsorted/pinterest_ignore.md
... ...
@@ -0,0 +1 @@
1
+-site:pinterest.de -site:pinterest.com -site:pinterest.co.uk -site:pinterest.jp -site:pinterest.com.mx -site:pinterest.fr -site:pinterest.se -site:pinterest.jp -site:pinterest.com.au -site:pinterest.ca -site:pinterest.es -site:pinterest.co.kr -site:pinterest.cl -site:pinterest.pt -site:pinterest.ru -site:pinterest.dk -site:pinterest.at -site:pinterest.ch -site:pinterest.nz