compass-recipes 0.2.2 → 0.3.0.alpha.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (212) hide show
  1. data/LICENSE +6 -2
  2. data/README.md +103 -29
  3. data/VERSION +1 -1
  4. data/fonts/icons/entypo/entypo-webfont.eot +0 -0
  5. data/fonts/icons/entypo/entypo-webfont.svg +198 -0
  6. data/fonts/icons/entypo/entypo-webfont.ttf +0 -0
  7. data/fonts/icons/entypo/entypo-webfont.woff +0 -0
  8. data/fonts/icons/heydings-controls/SIL Open Font License 1.1.txt +91 -0
  9. data/fonts/icons/heydings-controls/demo.html +33 -0
  10. data/fonts/icons/heydings-controls/heydings_controls-webfont.eot +0 -0
  11. data/fonts/icons/heydings-controls/heydings_controls-webfont.svg +85 -0
  12. data/fonts/icons/heydings-controls/heydings_controls-webfont.ttf +0 -0
  13. data/fonts/icons/heydings-controls/heydings_controls-webfont.woff +0 -0
  14. data/fonts/icons/heydings-controls/stylesheet.css +16 -0
  15. data/fonts/icons/heydings/SIL Open Font License 1.1.txt +91 -0
  16. data/fonts/icons/heydings/demo.html +33 -0
  17. data/fonts/icons/heydings/heydings_icons-webfont.eot +0 -0
  18. data/fonts/icons/heydings/heydings_icons-webfont.svg +94 -0
  19. data/fonts/icons/heydings/heydings_icons-webfont.ttf +0 -0
  20. data/fonts/icons/heydings/heydings_icons-webfont.woff +0 -0
  21. data/fonts/icons/heydings/stylesheet.css +16 -0
  22. data/fonts/icons/icomoon/License.txt +1 -0
  23. data/fonts/icons/icomoon/Read Me.txt +5 -0
  24. data/fonts/icons/icomoon/icomoon.eot +0 -0
  25. data/fonts/icons/icomoon/icomoon.svg +35 -0
  26. data/fonts/icons/icomoon/icomoon.ttf +0 -0
  27. data/fonts/icons/icomoon/icomoon.woff +0 -0
  28. data/fonts/icons/iconic/SIL Open Font License 1.1.txt +91 -0
  29. data/fonts/icons/iconic/demo.html +38 -0
  30. data/fonts/icons/iconic/iconic_fill.eot +0 -0
  31. data/fonts/icons/iconic/iconic_fill.svg +475 -0
  32. data/fonts/icons/iconic/iconic_fill.ttf +0 -0
  33. data/fonts/icons/iconic/iconic_fill.woff +0 -0
  34. data/fonts/icons/iconic/iconic_stroke.eot +0 -0
  35. data/fonts/icons/iconic/iconic_stroke.svg +492 -0
  36. data/fonts/icons/iconic/iconic_stroke.ttf +0 -0
  37. data/fonts/icons/iconic/iconic_stroke.woff +0 -0
  38. data/fonts/icons/iconic/stylesheet.css +28 -0
  39. data/fonts/icons/modern-pictograms/Modern Pictograms SIL OFL Font License 1.1.txt +94 -0
  40. data/fonts/icons/modern-pictograms/demo.html +33 -0
  41. data/fonts/icons/modern-pictograms/modernpics-webfont.eot +0 -0
  42. data/fonts/icons/modern-pictograms/modernpics-webfont.svg +136 -0
  43. data/fonts/icons/modern-pictograms/modernpics-webfont.ttf +0 -0
  44. data/fonts/icons/modern-pictograms/modernpics-webfont.woff +0 -0
  45. data/fonts/icons/modern-pictograms/stylesheet.css +16 -0
  46. data/fonts/icons/socialico/FFF_EULA_license.pdf +0 -0
  47. data/fonts/icons/socialico/Socialico-webfont.otf +0 -0
  48. data/fonts/icons/socialico/socialico-webfont.eot +0 -0
  49. data/fonts/icons/socialico/socialico-webfont.svg +123 -0
  50. data/fonts/icons/socialico/socialico-webfont.ttf +0 -0
  51. data/fonts/icons/socialico/socialico-webfont.woff +0 -0
  52. data/fonts/icons/websymbols/OFL-FAQ.txt +369 -0
  53. data/fonts/icons/websymbols/OFL.txt +97 -0
  54. data/fonts/icons/websymbols/websymbols-regular-webfont.eot +0 -0
  55. data/fonts/icons/websymbols/websymbols-regular-webfont.svg +108 -0
  56. data/fonts/icons/websymbols/websymbols-regular-webfont.ttf +0 -0
  57. data/fonts/icons/websymbols/websymbols-regular-webfont.woff +0 -0
  58. data/lib/compass-recipes.rb +3 -0
  59. data/lib/compass-recipes/sass_extensions.rb +13 -0
  60. data/lib/compass-recipes/sass_extensions/_error.rb +9 -0
  61. data/lib/compass-recipes/sass_extensions/background_noise.rb +48 -0
  62. data/lib/compass-recipes/sass_extensions/gravatar.rb +60 -0
  63. data/lib/compass-recipes/sass_extensions/highres.rb +31 -0
  64. data/lib/compass-recipes/sass_extensions/math.rb +8 -0
  65. data/stylesheets/_recipes.scss +7 -3
  66. data/stylesheets/recipes/_animation.scss +3 -0
  67. data/stylesheets/recipes/_background.scss +15 -0
  68. data/stylesheets/recipes/_base.scss +1 -0
  69. data/stylesheets/recipes/_color.scss +171 -0
  70. data/stylesheets/recipes/_effect.scss +6 -1
  71. data/stylesheets/recipes/_font.scss +32 -0
  72. data/stylesheets/recipes/_google-webfont.scss +15 -0
  73. data/stylesheets/recipes/_icon-font.scss +224 -0
  74. data/stylesheets/recipes/_icons.scss +15 -10
  75. data/stylesheets/recipes/_media-queries.scss +72 -0
  76. data/stylesheets/recipes/_shared.scss +5 -4
  77. data/stylesheets/recipes/_ui.scss +5 -2
  78. data/stylesheets/recipes/animation/_animation.scss +145 -0
  79. data/stylesheets/recipes/animation/_fade.scss +29 -0
  80. data/stylesheets/recipes/animation/_keyframes.scss +17 -0
  81. data/stylesheets/recipes/animation/_timing-function.scss +29 -0
  82. data/stylesheets/recipes/background/_blueprint-grid.scss +52 -0
  83. data/stylesheets/recipes/background/_carbon-fiber.scss +33 -0
  84. data/stylesheets/recipes/background/_checkerboard.scss +61 -0
  85. data/stylesheets/recipes/background/_cicada.scss +42 -0
  86. data/stylesheets/recipes/background/_gradients.scss +81 -0
  87. data/stylesheets/recipes/background/_houndstooth.scss +51 -0
  88. data/stylesheets/recipes/background/_lined-paper.scss +30 -0
  89. data/stylesheets/recipes/background/_madras.scss +84 -0
  90. data/stylesheets/recipes/background/_noise.scss +47 -0
  91. data/stylesheets/recipes/background/_polka-dot.scss +28 -0
  92. data/stylesheets/recipes/background/_radial-overlay.scss +15 -0
  93. data/stylesheets/recipes/background/_rainbow.scss +27 -0
  94. data/stylesheets/recipes/background/_stripes.scss +46 -0
  95. data/stylesheets/recipes/background/_tablecloth.scss +30 -0
  96. data/stylesheets/recipes/background/_tartan.scss +81 -0
  97. data/stylesheets/recipes/base/_normalize.scss +455 -0
  98. data/stylesheets/recipes/color/_name.scss +151 -0
  99. data/stylesheets/recipes/effect/_bevel.scss +37 -0
  100. data/stylesheets/recipes/effect/_corner-folded.scss +26 -0
  101. data/stylesheets/recipes/effect/_corners-tucked.scss +48 -0
  102. data/stylesheets/recipes/effect/_cutout.scss +20 -0
  103. data/stylesheets/recipes/{enhancement/_corner-folded.scss → effect/_folded-corner.scss} +7 -1
  104. data/stylesheets/recipes/effect/_glass.scss +22 -9
  105. data/stylesheets/recipes/effect/_ribbon-tied.scss +133 -0
  106. data/stylesheets/recipes/effect/_ribbon.scss +102 -0
  107. data/stylesheets/recipes/effect/_scatter.scss +22 -0
  108. data/stylesheets/recipes/effect/_tape.scss +43 -0
  109. data/stylesheets/recipes/helper/_gravatar.scss +79 -0
  110. data/stylesheets/recipes/layout/_flexible-box-model.scss +68 -0
  111. data/stylesheets/recipes/shadow/_drop.scss +1 -1
  112. data/stylesheets/recipes/shadow/_top-edge.scss +1 -1
  113. data/stylesheets/recipes/shadow/drop/_curved.scss +5 -3
  114. data/stylesheets/recipes/shadow/drop/_flying.scss +12 -20
  115. data/stylesheets/recipes/shadow/drop/_transform-requirement.scss +3 -1
  116. data/stylesheets/recipes/shape/_polygon.scss +1 -0
  117. data/stylesheets/recipes/shape/_symbol.scss +5 -1
  118. data/stylesheets/recipes/shape/polygon/_rhombus.scss +10 -0
  119. data/stylesheets/recipes/shape/polygon/_star.scss +97 -29
  120. data/stylesheets/recipes/shape/polygon/_triangle.scss +9 -4
  121. data/stylesheets/recipes/shape/symbol/_diamond.scss +33 -0
  122. data/stylesheets/recipes/shape/symbol/_egg.scss +13 -0
  123. data/stylesheets/recipes/shape/symbol/_heart.scss +2 -1
  124. data/stylesheets/recipes/shape/symbol/_infinity.scss +3 -1
  125. data/stylesheets/recipes/shape/symbol/_pacman.scss +18 -0
  126. data/stylesheets/recipes/shape/symbol/_yin-yang.scss +49 -0
  127. data/stylesheets/recipes/shared/_clearfix.scss +28 -14
  128. data/stylesheets/recipes/shared/_pseudo-element.scss +13 -4
  129. data/stylesheets/recipes/shared/_user-select.scss +6 -0
  130. data/stylesheets/recipes/ui/_button.scss +122 -0
  131. data/stylesheets/recipes/ui/_convex.scss +8 -1
  132. data/stylesheets/recipes/ui/_glossy.scss +13 -12
  133. data/stylesheets/recipes/ui/_gradient.scss +4 -0
  134. data/stylesheets/recipes/ui/_helper.scss +1 -0
  135. data/stylesheets/recipes/ui/_keyboard.scss +106 -0
  136. data/stylesheets/recipes/ui/_menu.scss +1 -0
  137. data/stylesheets/recipes/ui/_overlay.scss +22 -0
  138. data/stylesheets/recipes/ui/_separator.scss +37 -0
  139. data/stylesheets/recipes/ui/border/_bevel.scss +3 -0
  140. data/stylesheets/recipes/ui/button/_state-selectors.scss +40 -0
  141. data/stylesheets/recipes/ui/button/style/_default.scss +12 -0
  142. data/stylesheets/recipes/ui/button/style/todo/_bonbon.scss +489 -0
  143. data/stylesheets/recipes/ui/button/style/todo/_bourbon.scss +169 -0
  144. data/stylesheets/recipes/ui/button/style/todo/_fancy.sass +178 -0
  145. data/stylesheets/recipes/ui/button/style/todo/_necolas-animated.scss +81 -0
  146. data/stylesheets/recipes/ui/button/style/todo/_ubuwaits.scss +654 -0
  147. data/stylesheets/recipes/ui/helper/_arrow.scss +72 -0
  148. data/stylesheets/recipes/ui/helper/_tag.scss +14 -0
  149. data/stylesheets/recipes/ui/loader/_pulse.scss +124 -0
  150. data/stylesheets/recipes/ui/{_menu-dropdown.scss → menu/_dropdown.scss} +11 -3
  151. data/templates/gravatar/getElementsByClassName.js +23 -0
  152. data/templates/gravatar/gravatar.js +117 -0
  153. data/templates/gravatar/manifest.rb +19 -0
  154. data/templates/gravatar/md5.js +14 -0
  155. data/templates/icon-fonts/fonts/icons/entypo/entypo-webfont.eot +0 -0
  156. data/templates/icon-fonts/fonts/icons/entypo/entypo-webfont.svg +198 -0
  157. data/templates/icon-fonts/fonts/icons/entypo/entypo-webfont.ttf +0 -0
  158. data/templates/icon-fonts/fonts/icons/entypo/entypo-webfont.woff +0 -0
  159. data/templates/icon-fonts/fonts/icons/heydings-controls/SIL Open Font License 1.1.txt +91 -0
  160. data/templates/icon-fonts/fonts/icons/heydings-controls/demo.html +33 -0
  161. data/templates/icon-fonts/fonts/icons/heydings-controls/heydings_controls-webfont.eot +0 -0
  162. data/templates/icon-fonts/fonts/icons/heydings-controls/heydings_controls-webfont.svg +85 -0
  163. data/templates/icon-fonts/fonts/icons/heydings-controls/heydings_controls-webfont.ttf +0 -0
  164. data/templates/icon-fonts/fonts/icons/heydings-controls/heydings_controls-webfont.woff +0 -0
  165. data/templates/icon-fonts/fonts/icons/heydings-controls/stylesheet.css +16 -0
  166. data/templates/icon-fonts/fonts/icons/heydings/SIL Open Font License 1.1.txt +91 -0
  167. data/templates/icon-fonts/fonts/icons/heydings/demo.html +33 -0
  168. data/templates/icon-fonts/fonts/icons/heydings/heydings_icons-webfont.eot +0 -0
  169. data/templates/icon-fonts/fonts/icons/heydings/heydings_icons-webfont.svg +94 -0
  170. data/templates/icon-fonts/fonts/icons/heydings/heydings_icons-webfont.ttf +0 -0
  171. data/templates/icon-fonts/fonts/icons/heydings/heydings_icons-webfont.woff +0 -0
  172. data/templates/icon-fonts/fonts/icons/heydings/stylesheet.css +16 -0
  173. data/templates/icon-fonts/fonts/icons/icomoon/License.txt +1 -0
  174. data/templates/icon-fonts/fonts/icons/icomoon/Read Me.txt +5 -0
  175. data/templates/icon-fonts/fonts/icons/icomoon/icomoon.eot +0 -0
  176. data/templates/icon-fonts/fonts/icons/icomoon/icomoon.svg +35 -0
  177. data/templates/icon-fonts/fonts/icons/icomoon/icomoon.ttf +0 -0
  178. data/templates/icon-fonts/fonts/icons/icomoon/icomoon.woff +0 -0
  179. data/templates/icon-fonts/fonts/icons/iconic/SIL Open Font License 1.1.txt +91 -0
  180. data/templates/icon-fonts/fonts/icons/iconic/demo.html +38 -0
  181. data/templates/icon-fonts/fonts/icons/iconic/iconic_fill.eot +0 -0
  182. data/templates/icon-fonts/fonts/icons/iconic/iconic_fill.svg +475 -0
  183. data/templates/icon-fonts/fonts/icons/iconic/iconic_fill.ttf +0 -0
  184. data/templates/icon-fonts/fonts/icons/iconic/iconic_fill.woff +0 -0
  185. data/templates/icon-fonts/fonts/icons/iconic/iconic_stroke.eot +0 -0
  186. data/templates/icon-fonts/fonts/icons/iconic/iconic_stroke.svg +492 -0
  187. data/templates/icon-fonts/fonts/icons/iconic/iconic_stroke.ttf +0 -0
  188. data/templates/icon-fonts/fonts/icons/iconic/iconic_stroke.woff +0 -0
  189. data/templates/icon-fonts/fonts/icons/iconic/stylesheet.css +28 -0
  190. data/templates/icon-fonts/fonts/icons/modern-pictograms/Modern Pictograms SIL OFL Font License 1.1.txt +94 -0
  191. data/templates/icon-fonts/fonts/icons/modern-pictograms/demo.html +33 -0
  192. data/templates/icon-fonts/fonts/icons/modern-pictograms/modernpics-webfont.eot +0 -0
  193. data/templates/icon-fonts/fonts/icons/modern-pictograms/modernpics-webfont.svg +136 -0
  194. data/templates/icon-fonts/fonts/icons/modern-pictograms/modernpics-webfont.ttf +0 -0
  195. data/templates/icon-fonts/fonts/icons/modern-pictograms/modernpics-webfont.woff +0 -0
  196. data/templates/icon-fonts/fonts/icons/modern-pictograms/stylesheet.css +16 -0
  197. data/templates/icon-fonts/fonts/icons/socialico/FFF_EULA_license.pdf +0 -0
  198. data/templates/icon-fonts/fonts/icons/socialico/Socialico-webfont.otf +0 -0
  199. data/templates/icon-fonts/fonts/icons/socialico/socialico-webfont.eot +0 -0
  200. data/templates/icon-fonts/fonts/icons/socialico/socialico-webfont.svg +123 -0
  201. data/templates/icon-fonts/fonts/icons/socialico/socialico-webfont.ttf +0 -0
  202. data/templates/icon-fonts/fonts/icons/socialico/socialico-webfont.woff +0 -0
  203. data/templates/icon-fonts/fonts/icons/websymbols/OFL-FAQ.txt +369 -0
  204. data/templates/icon-fonts/fonts/icons/websymbols/OFL.txt +97 -0
  205. data/templates/icon-fonts/fonts/icons/websymbols/websymbols-regular-webfont.eot +0 -0
  206. data/templates/icon-fonts/fonts/icons/websymbols/websymbols-regular-webfont.svg +108 -0
  207. data/templates/icon-fonts/fonts/icons/websymbols/websymbols-regular-webfont.ttf +0 -0
  208. data/templates/icon-fonts/fonts/icons/websymbols/websymbols-regular-webfont.woff +0 -0
  209. data/templates/icon-fonts/manifest.rb +17 -0
  210. metadata +225 -20
  211. data/stylesheets/recipes/_enhancement.scss +0 -1
  212. data/stylesheets/recipes/_pattern.scss +0 -0
@@ -0,0 +1,91 @@
1
+ This Font Software is licensed under the SIL Open Font License, Version 1.1.
2
+ This license is copied below, and is also available with a FAQ at:
3
+ http://scripts.sil.org/OFL
4
+
5
+
6
+ -----------------------------------------------------------
7
+ SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
8
+ -----------------------------------------------------------
9
+
10
+ PREAMBLE
11
+ The goals of the Open Font License (OFL) are to stimulate worldwide
12
+ development of collaborative font projects, to support the font creation
13
+ efforts of academic and linguistic communities, and to provide a free and
14
+ open framework in which fonts may be shared and improved in partnership
15
+ with others.
16
+
17
+ The OFL allows the licensed fonts to be used, studied, modified and
18
+ redistributed freely as long as they are not sold by themselves. The
19
+ fonts, including any derivative works, can be bundled, embedded,
20
+ redistributed and/or sold with any software provided that any reserved
21
+ names are not used by derivative works. The fonts and derivatives,
22
+ however, cannot be released under any other type of license. The
23
+ requirement for fonts to remain under this license does not apply
24
+ to any document created using the fonts or their derivatives.
25
+
26
+ DEFINITIONS
27
+ "Font Software" refers to the set of files released by the Copyright
28
+ Holder(s) under this license and clearly marked as such. This may
29
+ include source files, build scripts and documentation.
30
+
31
+ "Reserved Font Name" refers to any names specified as such after the
32
+ copyright statement(s).
33
+
34
+ "Original Version" refers to the collection of Font Software components as
35
+ distributed by the Copyright Holder(s).
36
+
37
+ "Modified Version" refers to any derivative made by adding to, deleting,
38
+ or substituting -- in part or in whole -- any of the components of the
39
+ Original Version, by changing formats or by porting the Font Software to a
40
+ new environment.
41
+
42
+ "Author" refers to any designer, engineer, programmer, technical
43
+ writer or other person who contributed to the Font Software.
44
+
45
+ PERMISSION & CONDITIONS
46
+ Permission is hereby granted, free of charge, to any person obtaining
47
+ a copy of the Font Software, to use, study, copy, merge, embed, modify,
48
+ redistribute, and sell modified and unmodified copies of the Font
49
+ Software, subject to the following conditions:
50
+
51
+ 1) Neither the Font Software nor any of its individual components,
52
+ in Original or Modified Versions, may be sold by itself.
53
+
54
+ 2) Original or Modified Versions of the Font Software may be bundled,
55
+ redistributed and/or sold with any software, provided that each copy
56
+ contains the above copyright notice and this license. These can be
57
+ included either as stand-alone text files, human-readable headers or
58
+ in the appropriate machine-readable metadata fields within text or
59
+ binary files as long as those fields can be easily viewed by the user.
60
+
61
+ 3) No Modified Version of the Font Software may use the Reserved Font
62
+ Name(s) unless explicit written permission is granted by the corresponding
63
+ Copyright Holder. This restriction only applies to the primary font name as
64
+ presented to the users.
65
+
66
+ 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
67
+ Software shall not be used to promote, endorse or advertise any
68
+ Modified Version, except to acknowledge the contribution(s) of the
69
+ Copyright Holder(s) and the Author(s) or with their explicit written
70
+ permission.
71
+
72
+ 5) The Font Software, modified or unmodified, in part or in whole,
73
+ must be distributed entirely under this license, and must not be
74
+ distributed under any other license. The requirement for fonts to
75
+ remain under this license does not apply to any document created
76
+ using the Font Software.
77
+
78
+ TERMINATION
79
+ This license becomes null and void if any of the above conditions are
80
+ not met.
81
+
82
+ DISCLAIMER
83
+ THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
84
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
85
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
86
+ OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
87
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
88
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
89
+ DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
90
+ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
91
+ OTHER DEALINGS IN THE FONT SOFTWARE.
@@ -0,0 +1,33 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+ <head>
6
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
7
+
8
+ <title>Font Face Demo</title>
9
+ <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8">
10
+ <style type="text/css" media="screen">
11
+ h1.fontface {font: 60px/68px 'HeydingsControlsRegular', Arial, sans-serif;letter-spacing: 0;}
12
+
13
+ p.style1 {font: 18px/27px 'HeydingsControlsRegular', Arial, sans-serif;}
14
+
15
+ #container {
16
+ width: 800px;
17
+ margin-left: auto;
18
+ margin-right: auto;
19
+ }
20
+ </style>
21
+ </head>
22
+
23
+ <body>
24
+ <div id="container">
25
+ <h1 class="fontface">Font-face Demo for the Heydings Controls Font</h1>
26
+
27
+
28
+
29
+ <p class="style1">Heydings Controls Regular - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
30
+
31
+ </div>
32
+ </body>
33
+ </html>
@@ -0,0 +1,85 @@
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 xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>
5
+ This is a custom SVG webfont generated by Font Squirrel.
6
+ Designer : Heydon Pickering
7
+ Foundry URL : http
8
+ </metadata>
9
+ <defs>
10
+ <font id="HeydingsControlsRegular" horiz-adv-x="2048" >
11
+ <font-face units-per-em="2048" ascent="1638" descent="-410" />
12
+ <missing-glyph horiz-adv-x="500" />
13
+ <glyph unicode="+" d="M144 170q-8 -80 44 -132t132 -44t142 70l362 362q70 70 70 158q4 24 0 48l84 86q164 -128 376 -114t362 164q164 164 164 397t-164 398t-397 165t-399 -164q-148 -150 -163 -361t111 -375l-88 -86q-10 2 -22 2q-102 12 -182 -70l-362 -362q-62 -62 -70 -142zM920 1165 q0 165 117 282t282 117t281 -117t116 -282t-116 -281t-281 -116t-282 116t-117 281zM1120 1104v120h400v-120h-400zM1260 964v400h120v-400h-120z" />
14
+ <glyph unicode="-" d="M120 168q-8 -80 44 -131t132 -44t142 69l362 362q70 70 72 158q2 24 -2 50l84 84q164 -126 376 -113t362 163q166 166 166 399t-165 397t-398 164t-399 -164q-148 -150 -162 -360t110 -374l-86 -88q-12 2 -24 2q-100 12 -182 -70l-362 -360q-62 -64 -70 -144zM896 1165 q0 165 117 281t282 116t282 -116t117 -281t-117 -282t-282 -117t-282 117t-117 282zM1096 1102v120h400v-120h-400z" />
15
+ <glyph unicode="1" d="M120 -8v160h1400v-160h-1400zM120 312v160h1760v-160h-1760zM120 632v160h1400v-160h-1400zM120 952v160h1760v-160h-1760zM120 1272v160h1400v-160h-1400zM120 1592v160h1760v-160h-1760z" />
16
+ <glyph unicode="2" d="M120 312h1760v160h-1760v-160zM120 952h1760v160h-1760v-160zM120 1592h1760v160h-1760v-160zM300 -8h1400v160h-1400v-160zM300 632h1400v160h-1400v-160zM300 1272h1400v160h-1400v-160z" />
17
+ <glyph unicode="3" d="M120 312h1760v160h-1760v-160zM120 952h1760v160h-1760v-160zM120 1592h1760v160h-1760v-160zM480 -8h1400v160h-1400v-160zM480 632h1400v160h-1400v-160zM480 1272h1400v160h-1400v-160z" />
18
+ <glyph unicode="4" d="M120 -8h1760v160h-1760v-160zM120 312h1760v160h-1760v-160zM120 632h1760v160h-1760v-160zM120 952h1760v160h-1760v-160zM120 1272h1760v160h-1760v-160zM120 1592h1760v160h-1760v-160z" />
19
+ <glyph unicode="5" d="M160 152q0 -66 47 -113t113 -47t113 47t47 113t-47 113t-113 47t-113 -47t-47 -113zM160 552q0 -66 47 -113t113 -47t113 47t47 113t-47 113t-113 47t-113 -47t-47 -113zM160 952q0 -66 47 -113t113 -47t113 47t47 113t-47 113t-113 47t-113 -47t-47 -113zM160 1352 q0 -66 47 -113t113 -47t113 47t47 113t-47 113t-113 47t-113 -47t-47 -113zM600 72h1240v160h-1240v-160zM600 472h1240v160h-1240v-160zM600 872h1240v160h-1240v-160zM600 1272h1240v160h-1240v-160z" />
20
+ <glyph unicode="6" d="M422 -8h324h92h278q192 0 327 136t135 328q0 134 -71 246t-189 170q118 58 189 170t71 246q0 192 -135 328t-327 136h-278h-92h-324v-138h46h92v-1484h-92h-46v-138zM884 136v636q36 4 72 4q162 0 277 -94t115 -228t-115 -229t-277 -95q-36 0 -72 6zM884 972v636 q36 6 72 6q162 0 277 -95t115 -229t-115 -228t-277 -94q-36 0 -72 4z" />
21
+ <glyph unicode="7" d="M320 -8v100q32 2 107 4t117 5t96 26t90 65h394q78 -108 396 -100v-100h-1200zM480 1652v100h1200v-100q-288 0 -400 -100h-400q-54 44 -166 72t-234 28zM720 152l160 1440h400l-160 -1440h-400z" />
22
+ <glyph unicode="8" d="M120 828q0 -26 2 -54v-11q0 -3 2 -11v-10l4 -32q2 -12 4 -22l2 -10q4 -26 12 -52l4 -20q4 -16 9 -31t11 -29l4 -10l4 -10l4 -10l8 -18l4 -10q4 -10 66 -104q42 32 104 46q-118 198 -130 344h184q6 -130 42 -298h114q-40 148 -44 298h414v-312l56 -122l56 122v312h410 q-8 -170 -44 -308h112q36 152 44 308h188q0 -62 -17 -119t-49 -124t-44 -101q72 -14 102 -46q0 2 28 61t28 61l8 20l4 10l4 10q6 14 11 29t9 31l2 10l2 10l4 10q2 12 4 22l2 10q2 12 4 20q0 2 2 10q4 28 6 54q2 10 2 22v10q2 8 2 12v32v12v22q-2 26 -4 54q-2 20 -6 42 q-2 12 -4 22l-4 20l-2 10l-2 10l-4 10q-4 18 -8 32l-6 20l-2 10q-6 14 -12 30l-4 8l-8 20l-4 10l-12 28l-14 28l-6 10l-14 26l-6 10l-6 8l-6 8l-4 10l-6 8l-6 8l-6 8q-22 30 -46 58l-12 16l-22 22l-14 16l-8 6l-8 8l-30 28l-16 14l-8 6q-26 20 -50 38l-10 4l-26 18l-8 6 l-10 4l-18 12q-204 112 -438 112h-22h-24q-4 -2 -10 -2q-24 0 -44 -4q-6 0 -12 -1t-10 -1t-12 -2l-32 -4q-12 -4 -22 -6l-10 -2q-12 -2 -22 -4l-32 -8l-20 -8l-10 -2q-16 -6 -30 -12l-10 -2l-20 -8l-10 -4l-10 -4l-10 -6l-18 -8l-20 -10l-18 -10l-28 -16l-10 -4l-16 -12 l-10 -6l-18 -10l-8 -6q-18 -14 -34 -26l-8 -6l-16 -14l-30 -28l-24 -20l-14 -16l-8 -6l-6 -8l-14 -16l-6 -8l-14 -16l-12 -16l-8 -8l-12 -18l-6 -8l-12 -16l-10 -18l-6 -8l-6 -10l-4 -8l-6 -10l-10 -18l-4 -10q-12 -22 -22 -46l-4 -10q-8 -14 -12 -28l-4 -10l-4 -10 q-4 -16 -10 -30l-6 -20l-8 -32l-2 -10l-4 -20q-4 -16 -6 -32q-2 -8 -2 -10v-12q-4 -20 -6 -42v-10v-12q-2 -8 -2 -10v-34zM234 882q10 122 56 232q86 40 172 72q-38 -152 -44 -304h-184zM262 196q0 -86 64 -147t152 -61h276q68 0 123 37t79 97h96q22 -60 77 -97t123 -37h276 q90 0 153 61t63 147t-63 148t-153 62h-276q-68 0 -123 -38t-77 -96h-96q-24 58 -79 96t-123 38h-276q-88 0 -152 -62t-64 -148zM362 197q0 47 34 80t82 33h276q50 0 84 -34l4 -4h-128q-32 0 -55 -22t-23 -53t23 -53t55 -22h128q-34 -38 -88 -38h-276q-48 0 -82 33t-34 80z M384 1274l14 16l2 2q22 28 48 54l2 2q20 18 38 34l2 2l6 6l2 2l24 18l2 2l18 12q-24 -54 -42 -110q-58 -18 -116 -40zM530 882q6 172 60 346q176 50 354 56v-402h-414zM632 1350q32 82 74 166q114 44 238 54v-178q-158 -6 -312 -42zM1056 882v402q176 -6 354 -58 q50 -170 56 -344h-410zM1056 1392v178q124 -10 238 -54q42 -84 74 -166q-156 36 -312 42zM1164 122h130q30 0 53 22t23 53t-23 53t-53 22h-130q36 38 88 38h276q50 0 83 -33t33 -80t-33 -80t-83 -33h-276q-52 0 -88 38zM1458 1426l4 -4l6 -4l2 -2l6 -4l8 -6l4 -4l4 -4l4 -2 l14 -12l2 -2l2 -2l6 -6l6 -4l2 -2l6 -4l2 -4l6 -4l2 -4l4 -4l4 -2l4 -6l4 -2l4 -4l4 -4l4 -4l16 -20l4 -4l2 -2l6 -8l2 -2l4 -6l10 -12q-58 24 -116 42q-18 54 -42 112zM1536 1186q86 -32 174 -74l6 -12q40 -104 50 -218h-188q-6 154 -42 304z" />
23
+ <glyph unicode="9" d="M120 -12h58h1644h58v58v1642v60h-58h-1644h-58v-60v-1642v-58zM238 104v1526h1524v-1526h-1524zM374 398h1252v1096h-1252v-1096zM530 906v78h158v-78h-158zM640 642l112 110l54 -56l-110 -110zM640 1250l56 56l110 -112l-54 -54zM780 940q0 92 64 156t156 64t156 -64 t64 -156t-64 -156t-156 -64t-156 64t-64 156zM960 476v156h80v-156h-80zM960 1258v156h80v-156h-80zM1194 696l54 56l112 -110l-56 -56zM1194 1194l110 112l56 -56l-112 -110zM1312 906v78h158v-78h-158z" />
24
+ <glyph unicode="&#x3c;" d="M120 612l822 -620v308h352v626h-352v312zM1372 300h156v626h-156v-626zM1606 300h118v626h-118v-626zM1802 300h78v626h-78v-626z" />
25
+ <glyph unicode="&#x3e;" d="M120 306h78v626h-78v-626zM276 306h118v626h-118v-626zM472 306h156v626h-156v-626zM706 306h352v-314l822 626l-822 622v-308h-352v-626z" />
26
+ <glyph unicode="A" d="M141 727q0 -161 79 -313q84 -156 254 -266t420 -152q32 -5 61 -5q67 0 115 29q76 46 86 154l2 4v4q-2 28 -11 85t-11 79t-2 39.5t2 30.5q4 20 12 28l2 2l4 2q58 64 142 70h8q41 0 174 -16q40 -5 75 -5q78 0 131 25q112 50 172 210l2 2q18 53 18 109q0 75 -33 153 q-57 136 -187 238l-2 2h-2q-218 138 -430 196q-149 42 -288 42q-95 0 -186 -20q-182 -38 -320 -147t-214 -261q-73 -154 -73 -319zM252 732q0 136 62 264q64 130 182 223t276 127q79 17 163 17q124 0 259 -37q192 -54 396 -182q104 -82 147 -185q26 -62 26 -119 q0 -37 -11 -70q-44 -116 -112 -148q-32 -14 -86 -14q-29 0 -64 4q-12 2 -46 7t-49 7t-52 4t-53 -2q-128 -8 -216 -102q-38 -32 -48 -90q-4 -25 -4 -56q0 -21 2 -44q4 -34 13 -88t9 -66q-6 -50 -34 -68q-21 -12 -56 -12q-20 0 -44 4q-228 38 -375 133t-219 229 q-66 128 -66 264zM413 961q17 59 70 89q34 19 70 19q21 0 42 -6q59 -17 89 -71q19 -34 19 -71q0 -21 -6 -42q-17 -59 -71 -89q-34 -19 -71 -19q-20 0 -41 6q-58 17 -88 71q-19 34 -19 71q0 21 6 42zM453 540q15 52 62 78q30 16 62 16q18 0 37 -5q52 -15 78 -62 q16 -30 16 -62q0 -18 -5 -37q-15 -52 -62 -78q-30 -16 -62 -16q-18 0 -37 5q-52 15 -78 62q-16 30 -16 62q0 18 5 37zM803 1154q17 60 71 89q35 19 72 19q20 0 41 -6q59 -16 88 -70q18 -34 18 -70q0 -21 -6 -43q-17 -59 -70 -89q-34 -19 -70 -19q-21 0 -42 6q-59 17 -89 70 q-19 34 -19 71q0 20 6 42zM1229 1094q13 44 53 66q26 14 53 14q15 0 31 -4q44 -12 66 -52q14 -26 14 -54q0 -15 -4 -31q-12 -45 -53 -67q-27 -14 -54 -14q-15 0 -31 4q-44 12 -66 53q-14 26 -14 53q0 16 5 32z" />
27
+ <glyph unicode="B" d="M136 576q0 -4 2 -5t4 -3t6 -4q2 -2 4 -2l12 -10l106 -62l856 -494q13 -3 25 -3q16 0 30 6q23 11 25 37q2 2 2 4v2v16v124q2 292 2 994q-2 20 -14 35t-32 18q-5 1 -9 1q-15 0 -27 -8l-8 -4l-114 -68l-854 -496q-30 -20 -30 -44q0 -16 14 -34zM194 556zM794 576q2 -4 4 -5 t4 -3l4 -4q2 -2 4 -2l14 -10l106 -62l856 -494q13 -3 24 -3q16 0 30 6q24 11 26 37v4v2v16q0 38 2 124v994q0 20 -13 35t-32 18q-4 1 -9 1q-14 0 -28 -8l-6 -4l-116 -68l-854 -496q-29 -20 -29 -44q0 -16 13 -34zM854 556z" />
28
+ <glyph unicode="C" d="M146 184q18 -60 62 -104t104 -66q61 -23 129 -23q58 0 119 17q134 36 212 130q66 80 66 167q0 31 -8 63q-26 94 -118 148q42 8 112 30l28 -8q186 -158 474 -236q88 -24 206 -46q54 -10 98 -12h16q34 0 61 7q33 9 55 17t43 30t30 33t29 37l-850 228l844 226q-14 24 -25 38 t-31 33t-43 29t-56 18q-26 6 -60 6h-17q-44 -2 -100 -12q-118 -22 -206 -46q-286 -78 -472 -236l-24 -6q-86 24 -108 28q92 54 118 148q8 32 8 63q0 87 -66 167q-78 94 -212 130q-60 16 -120 16q-68 0 -127 -22t-104 -66t-61 -104q-9 -33 -9 -65q0 -87 67 -167 q78 -94 210 -128q44 -12 132 -25t132 -25q-46 -12 -135 -26t-133 -26q-134 -34 -212 -128q-66 -81 -66 -169q0 -31 8 -63zM266 217q-3 9 -3 19q0 35 35 76q56 66 156 94q42 10 86 12q54 0 96 -16q62 -24 74 -66q3 -9 3 -19q0 -35 -35 -77q-56 -66 -156 -93q-47 -13 -90 -13 q-48 0 -90 16q-64 24 -76 67zM270 973q12 43 76 67q42 14 94 14q44 0 88 -12q100 -26 154 -92q35 -43 35 -79q0 -9 -2 -17q-11 -42 -75 -66q-43 -16 -91 -16q-43 0 -91 13q-100 27 -156 93q-35 41 -35 76q0 10 3 19z" />
29
+ <glyph unicode="D" d="M158 1664l4 -1600v-56v-20h1680v20v56v1378l-224 222h-80v80h-1080v-80h-150h-150zM362 94v680v60h1280v-20v-720h-1280zM538 1060v604h916v-604h-916zM1098 1172q0 -14 11 -25t27 -11h154q16 0 27 11t11 25v384q0 16 -11 27t-27 11h-154q-16 0 -27 -11t-11 -27v-384z " />
30
+ <glyph unicode="E" d="M254 857q8 -29 35 -43t55 -6l292 84l28 8l16 26l136 254q10 18 10 37t-10 36t-27 26t-37 9t-37 -11t-27 -27l-122 -228l-262 -74q-28 -8 -43 -35q-10 -18 -10 -36q0 -10 3 -20zM536 20q32 -27 86 -27q18 0 39 3q83 12 115 64q56 88 170 299t144 261q2 8 -9 26t-13 22 q0 22 -12 40q-24 38 -70 38q-26 0 -47 -14t-29 -36zM686 1494q0 -68 49 -118t117 -50t117 50t49 118t-49 117t-117 49t-117 -49t-49 -117zM705 1213q0 -28 20 -49q21 -22 51 -22l522 -12l166 -258q16 -26 46 -32t55 10t32 46t-9 54l-188 292q-6 10 -8 14t-7 9l-6 6 q-1 1 -6 4t-7 3t-11 3t-17 5l-558 2q-30 0 -52 -21q-23 -22 -23 -54zM736 1286l154 -666h394l-162 666h-386zM1090 620l124 -304l18 -58h62h370q34 0 59 24t25 59t-25 60q-23 23 -54 23h-5h-310l-86 256q-8 26 -31 42t-51 16q-42 -2 -66 -36q-32 -46 -32 -71q0 -6 2 -11z " />
31
+ <glyph unicode="F" d="M122 46q0 -20 13 -35t32 -18q4 -1 9 -1q14 0 28 8l8 4l114 68l854 494q30 20 30 45q0 17 -14 35q-2 2 -3 4t-4 4t-5 4q-2 0 -4 2l-14 8l-106 62l-854 496q-13 3 -25 3q-16 0 -30 -6q-23 -11 -27 -37v-4v-4v-16v-124q-2 -290 -2 -992zM782 46q0 -20 13 -35t32 -18 q4 -1 9 -1q14 0 26 8l8 4l116 68l854 494q29 20 29 45q0 16 -13 35l-4 4l-4 4l-4 4q-2 0 -4 2l-14 8l-106 62l-856 496q-13 3 -24 3q-16 0 -30 -6q-24 -11 -26 -37v-4v-4v-16q-2 -36 -2 -124v-992zM1136 664h2h-2zM1796 664z" />
32
+ <glyph unicode="G" d="M440 348q0 -148 105 -253t253 -105h314q100 0 208 56t158 130l238 374q36 56 69 167q16 55 16 88q0 34 -17 45q-28 18 -59 18q-13 0 -27 -3q-46 -11 -72 -53l-92 -140q-35 -50 -51 -50q-13 0 -13 34v162v6v6v648q0 52 -33 88t-79 36q-90 0 -90 -112v-49q0 -426 -34 -477 q-3 -4 -6 -4l-26 86q-24 178 -24 578q0 52 -22 82t-68 30t-78 -34t-32 -84q0 -624 -34 -674q-2 -2 -3 -2q-8 0 -15 60q-16 136 -16 466q0 58 -23 96t-67 38q-46 0 -79 -39t-33 -95q0 -376 -34 -498q-6 -20 -12 -20q-8 0 -12 44q-8 68 -8 228q0 112 -90 112q-46 0 -79 -35 t-33 -85v-432v-276v-158z" />
33
+ <glyph unicode="H" d="M112 876q0 -180 70 -344t188 -282t282 -188t344 -70t344 70t282 188t188 282t70 344t-70 344t-188 282t-282 188t-344 70t-344 -70t-282 -188t-188 -282t-70 -344zM322 876q0 182 90 338t246 246t338 90q220 0 396 -130l-940 -940q-130 176 -130 396zM600 332l940 940 q130 -176 130 -396q0 -182 -90 -338t-246 -246t-338 -90q-220 0 -396 130z" />
34
+ <glyph unicode="J" d="M120 408q0 172 121 293t293 121t294 -121t122 -293t-122 -294t-294 -122t-293 122t-121 294zM506 574l782 782l196 -194l-782 -782zM1050 1328q0 172 122 294t294 122t293 -122t121 -294t-121 -293t-293 -121t-294 121t-122 293z" />
35
+ <glyph unicode="L" d="M382 -4l72 42q92 52 356 214t308 186l18 32l470 812l12 22l-10 22l-120 240l-6 12l-12 6l-256 150l-12 6h-14l-268 -18l-24 -2l-12 -22l-482 -834l-6 -10v-12l-12 -762zM480 356zM482 480l6 318l210 14l232 -134l94 -190l-334 -198zM526 894l426 738l228 14l232 -134 l102 -206l-426 -738l-80 162l-8 14l-12 6l-256 148l-12 8l-14 -2zM668 882l80 -46l482 834l-80 46zM926 734l80 -46l482 834l-80 46z" />
36
+ <glyph unicode="M" d="M160 1276l130 130l150 -150l142 142l-150 150l128 128h-400v-400zM164 -8h400l-128 128l150 150l-142 142l-150 -150l-130 130v-400zM540 516q0 -58 41 -99t99 -41h640q58 0 99 41t41 99v640q0 58 -41 99t-99 41h-640q-58 0 -99 -41t-41 -99v-640zM660 516v640 q0 20 20 20h640q20 0 20 -20v-640q0 -20 -20 -20h-640q-20 0 -20 20zM1416 1396l142 -142l150 150l130 -130v400h-400l128 -128zM1420 268l150 -150l-128 -128h400v400l-130 -132l-150 152z" />
37
+ <glyph unicode="O" d="M192 804q0 -218 108 -404t295 -295t405 -109t405 109t295 295t108 404t-108 403t-288 293q-30 18 -66 18q-52 0 -88 -37t-36 -89q0 -30 18 -62t44 -46q124 -76 198 -203t74 -277q0 -232 -162 -394t-394 -162t-394 162t-162 394q0 158 80 289t214 203q28 14 48 47t20 65 q0 52 -36 88t-88 36h-6q-30 0 -56 -14q-194 -104 -311 -295t-117 -419zM888 1014v594q0 56 37 96t89 40t89 -40t37 -96v-594q0 -56 -37 -96t-89 -40t-89 40t-37 96z" />
38
+ <glyph unicode="P" d="M456 48q0 -20 13 -35t32 -18q4 -1 9 -1q14 0 26 8l8 4l116 68l856 496q30 20 30 45q0 17 -14 35l-4 4l-4 4l-4 4q-2 2 -4 2l-14 10l-106 62l-858 496q-13 3 -25 3q-16 0 -30 -6q-23 -11 -25 -37v-4v-4q0 -4 -2 -16v-124v-996zM1472 670z" />
39
+ <glyph unicode="Q" d="M122 472h480l600 -480v1600l-302 -204l80 -80l-200 -220l200 -200l-180 -180l-200 200l-200 -200l-180 180l220 220l-2 4h-316v-640zM306 880l78 -78l214 214l214 -214l78 78l-214 214l214 214l-78 78l-214 -214l-214 214l-78 -78l214 -214zM1302 506l86 -132 q104 68 166 178t62 240t-62 240t-166 178l-86 -132q72 -46 114 -121t42 -165t-42 -165t-114 -121zM1444 284l86 -132q160 104 254 273t94 367t-94 367t-254 273l-86 -132q128 -82 203 -216t75 -292t-75 -292t-203 -216z" />
40
+ <glyph unicode="R" d="M380 612q0 256 182 438t438 182t438 -182t182 -438t-182 -438t-438 -182t-438 182t-182 438z" />
41
+ <glyph unicode="S" d="M380 72v1080q0 34 23 57t57 23h1080q34 0 57 -23t23 -57v-1080q0 -34 -23 -57t-57 -23h-1080q-34 0 -57 23t-23 57z" />
42
+ <glyph unicode="T" d="M320 1400q0 -34 23 -57t57 -23h1200q34 0 57 23t23 57t-23 57t-57 23h-2q2 10 2 20q0 58 -41 99t-99 41h-280v40q0 34 -23 57t-57 23h-200q-34 0 -57 -23t-23 -57v-40h-280q-58 0 -99 -41t-41 -99q0 -10 2 -20h-2q-34 0 -57 -23t-23 -57zM392 1150l240 -1120 q2 -18 16 -29t32 -11h640q18 0 32 11t16 29l240 1120q2 6 2 12q0 15 -11 29q-15 19 -39 19h-1120q-24 0 -39 -19q-11 -14 -11 -29q0 -6 2 -12z" />
43
+ <glyph unicode="U" d="M196 -12q9 -1 64 -1t156 1l640 6q202 2 374 102t273 272t101 373t-101 374t-273 273t-374 100h-160v-374h160q158 0 266 -108t108 -265t-108 -265t-266 -108h-860v-380zM456 1298l440 -350v700z" />
44
+ <glyph unicode="V" d="M170 528q0 -24 16 -42q392 -494 805 -494h3q414 2 820 502q16 20 16 44v10q0 24 -16 44q-392 494 -805 494h-3q-414 -2 -820 -504q-16 -18 -16 -44v-10zM328 534q348 410 678 412h3q328 0 663 -402q-348 -412 -678 -412h-3q-329 0 -663 402zM720 548q0 -116 82 -198 t198 -82t198 82t82 198q0 96 -58 170l-182 -90l70 178q-52 22 -110 22q-116 0 -198 -82t-82 -198z" />
45
+ <glyph unicode="W" d="M500 1356q0 -116 103 -285t199 -239q-96 -72 -198 -240t-102 -284q-2 -29 -2 -56q0 -60 12 -108h980q11 47 11 120q0 21 -1 44q0 116 -103 284t-199 240q96 72 198 240t102 284q2 28 2 54q0 72 -16 134h-978q-12 -50 -12 -114q0 -35 4 -74zM522 1584h950q1 6 1 12 q0 28 -29 66q-36 46 -62 46h-760q-28 0 -64 -45t-36 -79zM524 104q-2 -28 35 -72t63 -44h760q28 0 64 44t34 72h-956zM634 236q-9 36 -9 74q0 103 68 220q93 160 209 218q44 30 44 80t-44 80q-138 106 -223 251q-58 99 -58 191q0 44 13 86h734q8 -34 8 -72q0 -63 -23 -134 q-37 -114 -107 -202t-144 -120q-52 -30 -52 -76t52 -84q279 -246 279 -434q0 -40 -13 -78h-734z" />
46
+ <glyph unicode="X" d="M236 234l284 -282l480 480l480 -480l284 282l-482 482l482 480l-284 282l-480 -480l-480 480l-284 -282l482 -480z" />
47
+ <glyph unicode="a" d="M368 432l238 64l18 -68l-238 -64zM492 182l174 174l50 -48l-174 -174zM708 502q30 -74 114 -120q70 -40 134 -40q13 0 26 2l650 1126q-22 66 -83 116t-133 50q-30 0 -58 -8zM752 10l64 238l68 -18l-64 -238zM960 236l64 -238l68 18l-64 238zM1284 1302l122 212q18 6 34 8 q52 0 72 -68l-122 -212z" />
48
+ <glyph unicode="b" d="M160 -8l812 92l-186 190l374 374l-102 -20l-80 -16l16 80l24 112l-112 -24l-80 -16l16 80l22 112l-106 -20l-316 -318l-192 186zM896 1074l26 4l80 16l-16 -80l-22 -112l112 24l80 16l-16 -80l-24 -112l112 22l70 14l260 260l192 -186l90 812l-812 -90l186 -192z" />
49
+ <glyph unicode="c" d="M120 832v320h240v-320h-240zM200 232v160h720v-160h-720zM280 672v160h640v-160h-640zM280 672v600h160v-600h-160zM280 1112v160h720v-160h-720zM440 -8v320h320v-320h-320zM440 1192v320h320v-320h-320zM760 232v600h160v-600h-160zM880 352v320h200v-320h-200z M1160 -8v240h720v-240h-720z" />
50
+ <glyph unicode="d" d="M140 852l374 -300v188h374v-374h-188l300 -374l300 374h-188v374h374v-188l374 300l-374 300v-188h-374v374h188l-300 374l-300 -374h188v-374h-374v188z" />
51
+ <glyph unicode="e" d="M414 362l12 -22q25 -45 25 -111q0 -48 -13 -107l-8 -30l28 -16l120 -70l28 -16l24 24q94 98 192 98h26l12 20l408 708l60 -34q22 -14 47 -14q8 0 17 2q24 0 44 16q18 12 30 32q13 23 13 48q0 14 -4 28q-11 40 -47 62l-160 92q76 86 168 120q66 26 111 92t58 144 q4 24 4 49q0 55 -20 111q-29 82 -101 134q-48 22 -107 23h-4q-57 0 -115 -27q-60 -28 -109 -70t-77 -106q-23 -53 -23 -108q0 -12 1 -24q6 -28 6 -59q0 -65 -26 -143l-160 92q-23 13 -48 13q-14 0 -28 -4q-40 -11 -60 -47q-12 -20 -14 -42q-4 -24 8 -44q12 -32 42 -50 l62 -34l-410 -708zM538 154q0 10 6 37t8 37t4 32t1 35t-5 31t-12 34l380 658l244 -140l-380 -658q-16 0 -29 -4t-23 -7t-23 -11t-20 -12t-21 -16t-19 -16t-22 -20t-21 -20z" />
52
+ <glyph unicode="g" d="M140 -8h286v192h-286v-192zM140 280h286v190h-286v-190zM140 566h286v192h-286v-192zM140 852h286v192h-286v-192zM140 1140h286v96h-286v-96zM618 -8h286v192h-286v-192zM618 280h286v190h-286v-190zM618 566h286v192h-286v-192zM618 852h286v192h-286v-192zM618 1140 h286v190h-286v-190zM618 1426h286v96h-286v-96zM1096 -8h286v192h-286v-192zM1096 280h286v190h-286v-190zM1096 566h286v192h-286v-192zM1096 852h286v192h-286v-192zM1574 -8h286v192h-286v-192zM1574 280h286v190h-286v-190zM1574 566h286v192h-286v-192zM1574 852h286 v96h-286v-96z" />
53
+ <glyph unicode="j" d="M120 46q0 -20 13 -35t32 -18t37 7l6 4l116 68l456 264v-121v-169q0 -20 12 -35t32 -19h10q14 0 26 8l8 4l114 68l646 374v-352q0 -34 23 -57t57 -23h80q34 0 57 23t23 57v1040q0 32 -23 56t-57 24h-80q-34 0 -57 -24t-23 -56v-352l-766 444q-13 3 -25 3q-16 0 -30 -6 q-23 -11 -25 -37q0 -2 -1 -4t-1 -4v-16v-124v-146l-576 334q-13 3 -26 3q-17 0 -30 -6q-24 -11 -26 -37v-4v-2v-2v-16v-124q-2 -296 -2 -992z" />
54
+ <glyph unicode="l" d="M220 88q0 -80 11 -90t89 -10h1360q80 0 90 11t10 89v720q0 42 -29 72t-71 30t-71 -30t-29 -72v-620h-1160v620q0 42 -30 72t-72 30q-40 -2 -69 -31t-29 -71v-720zM440 974l84 -98l430 -506l46 -54l46 54l430 506l84 98h-130h-198v630v60h-60h-344h-60v-60v-630h-198h-130 zM700 854h128h60v60v630h224v-630v-60h60h128l-300 -354z" />
55
+ <glyph unicode="m" d="M158 1530l150 -150l-128 -128h400v400l-130 -132l-150 152zM162 132l142 -140l150 150l130 -132v398q42 -36 94 -36h640q54 0 94 34v-394l130 132l150 -152l142 142l-150 150l128 128h-394q40 42 40 100v640q0 56 -40 96h398l-128 128l150 152l-142 140l-150 -150 l-130 130v-396q-42 40 -98 40h-640q-56 0 -98 -42t-42 -98v-640q0 -60 44 -102h-398l128 -128zM658 512v640q0 20 20 20h640q20 0 20 -20v-640q0 -20 -20 -20h-640q-20 0 -20 20z" />
56
+ <glyph unicode="o" d="M508 1334h212v-370v-432h212v432v370h210l-312 422zM858 418l312 -422l322 422h-212v370v432h-212v-432v-370h-210z" />
57
+ <glyph unicode="p" d="M120 88q0 -34 23 -57t57 -23h80q34 0 57 23t23 57v350l766 -442q13 -3 25 -3q16 0 30 6q23 11 25 37q2 2 2 3v3v16v124v146l576 -332q13 -3 26 -3q17 0 30 6q24 11 26 37v4v2v16q0 32 2 124v994q0 20 -13 35t-32 18t-37 -7l-6 -4l-116 -68l-456 -264q2 14 2 119v171 q-2 20 -14 35t-32 17q-4 2 -10 2q-14 0 -26 -8l-8 -4l-114 -68l-646 -374v352q0 34 -23 57t-57 23h-80q-34 0 -57 -23t-23 -57v-1040z" />
58
+ <glyph unicode="q" d="M160 -8h400v160h-240v240h-160v-160v-240zM160 552h160v200h-160v-200zM160 912h160v200h-160v-200zM160 1272h160v240h240v160h-400v-240v-160zM720 -8h200v160h-200v-160zM720 1512h200v160h-200v-160zM1080 -8h200v160h-200v-160zM1080 1512h200v160h-200v-160z M1440 -8h400v240v160h-160v-240h-240v-160zM1440 1512h240v-240h160v400h-400v-160zM1680 552h160v200h-160v-200zM1680 912h160v200h-160v-200z" />
59
+ <glyph unicode="r" d="M156 834q0 -160 63 -318t183 -280q162 -162 380 -219q109 -29 218 -29l218 29q218 57 380 219q120 122 183 280t63 318t-63 318t-183 278q-168 168 -398 224l50 190l-512 -174l358 -406l52 194q176 -40 306 -170q188 -190 188 -455t-188 -453t-454 -188t-454 188 t-188 453t188 455l-144 142q-120 -120 -183 -278t-63 -318z" />
60
+ <glyph unicode="s" d="M142 124h532q40 0 68 28l504 504h308v-120l304 216l-304 224v-130h-346q-40 0 -68 -28l-504 -504h-494v-190zM142 656h494l124 -124l134 134l-152 152q-28 28 -68 28h-532v-190zM988 304l152 -152q28 -28 68 -28h346v-128l304 222l-304 218v-122h-308l-124 124z" />
61
+ <glyph unicode="u" d="M420 72v1080q0 34 23 57t57 23h280q34 0 57 -23t23 -57v-1080q0 -34 -23 -57t-57 -23h-280q-34 0 -57 23t-23 57zM1140 72v1080q0 34 23 57t57 23h280q34 0 57 -23t23 -57v-1080q0 -34 -23 -57t-57 -23h-280q-34 0 -57 23t-23 57z" />
62
+ <glyph unicode="w" d="M160 -4h1040v720h-400h-80v80v160h-560v-960zM320 156v480h720v-480h-720zM800 796h1040v960h-1040v-960zM800 796h400v160h-400v-160zM960 956v480h720v-480h-720z" />
63
+ <glyph unicode="&#xad;" d="M120 168q-8 -80 44 -131t132 -44t142 69l362 362q70 70 72 158q2 24 -2 50l84 84q164 -126 376 -113t362 163q166 166 166 399t-165 397t-398 164t-399 -164q-148 -150 -162 -360t110 -374l-86 -88q-12 2 -24 2q-100 12 -182 -70l-362 -360q-62 -64 -70 -144zM896 1165 q0 165 117 281t282 116t282 -116t117 -281t-117 -282t-282 -117t-282 117t-117 282zM1096 1102v120h400v-120h-400z" />
64
+ <glyph unicode="&#x2000;" horiz-adv-x="922" />
65
+ <glyph unicode="&#x2001;" horiz-adv-x="1844" />
66
+ <glyph unicode="&#x2002;" horiz-adv-x="922" />
67
+ <glyph unicode="&#x2003;" horiz-adv-x="1844" />
68
+ <glyph unicode="&#x2004;" horiz-adv-x="614" />
69
+ <glyph unicode="&#x2005;" horiz-adv-x="460" />
70
+ <glyph unicode="&#x2006;" horiz-adv-x="306" />
71
+ <glyph unicode="&#x2007;" horiz-adv-x="306" />
72
+ <glyph unicode="&#x2008;" horiz-adv-x="230" />
73
+ <glyph unicode="&#x2009;" horiz-adv-x="368" />
74
+ <glyph unicode="&#x200a;" horiz-adv-x="102" />
75
+ <glyph unicode="&#x2010;" d="M120 168q-8 -80 44 -131t132 -44t142 69l362 362q70 70 72 158q2 24 -2 50l84 84q164 -126 376 -113t362 163q166 166 166 399t-165 397t-398 164t-399 -164q-148 -150 -162 -360t110 -374l-86 -88q-12 2 -24 2q-100 12 -182 -70l-362 -360q-62 -64 -70 -144zM896 1165 q0 165 117 281t282 116t282 -116t117 -281t-117 -282t-282 -117t-282 117t-117 282zM1096 1102v120h400v-120h-400z" />
76
+ <glyph unicode="&#x2011;" d="M120 168q-8 -80 44 -131t132 -44t142 69l362 362q70 70 72 158q2 24 -2 50l84 84q164 -126 376 -113t362 163q166 166 166 399t-165 397t-398 164t-399 -164q-148 -150 -162 -360t110 -374l-86 -88q-12 2 -24 2q-100 12 -182 -70l-362 -360q-62 -64 -70 -144zM896 1165 q0 165 117 281t282 116t282 -116t117 -281t-117 -282t-282 -117t-282 117t-117 282zM1096 1102v120h400v-120h-400z" />
77
+ <glyph unicode="&#x2012;" d="M120 168q-8 -80 44 -131t132 -44t142 69l362 362q70 70 72 158q2 24 -2 50l84 84q164 -126 376 -113t362 163q166 166 166 399t-165 397t-398 164t-399 -164q-148 -150 -162 -360t110 -374l-86 -88q-12 2 -24 2q-100 12 -182 -70l-362 -360q-62 -64 -70 -144zM896 1165 q0 165 117 281t282 116t282 -116t117 -281t-117 -282t-282 -117t-282 117t-117 282zM1096 1102v120h400v-120h-400z" />
78
+ <glyph unicode="&#x2013;" horiz-adv-x="1024" d="M118 -8v1734h716v-1734h-716z" />
79
+ <glyph unicode="&#x2014;" d="M118 -8v1734h1740v-1734h-1740z" />
80
+ <glyph unicode="&#x202f;" horiz-adv-x="368" />
81
+ <glyph unicode="&#x205f;" horiz-adv-x="460" />
82
+ <glyph unicode="&#x2122;" horiz-adv-x="4096" d="M2208 1276l130 130l150 -150l142 142l-150 150l128 128h-400v-400zM2212 -8h400l-128 128l150 150l-142 142l-150 -150l-130 130v-400zM2588 516q0 -58 41 -99t99 -41h640q58 0 99 41t41 99v640q0 58 -41 99t-99 41h-640q-58 0 -99 -41t-41 -99v-640zM2708 516v640 q0 20 20 20h640q20 0 20 -20v-640q0 -20 -20 -20h-640q-20 0 -20 20zM3464 1396l142 -142l150 150l130 -130v400h-400l128 -128zM3468 268l150 -150l-128 -128h400v400l-130 -132l-150 152zM320 1400q0 -34 23 -57t57 -23h1200q34 0 57 23t23 57t-23 57t-57 23h-2q2 10 2 20 q0 58 -41 99t-99 41h-280v40q0 34 -23 57t-57 23h-200q-34 0 -57 -23t-23 -57v-40h-280q-58 0 -99 -41t-41 -99q0 -10 2 -20h-2q-34 0 -57 -23t-23 -57zM392 1150l240 -1120q2 -18 16 -29t32 -11h640q18 0 32 11t16 29l240 1120q2 6 2 12q0 15 -11 29q-15 19 -39 19h-1120 q-24 0 -39 -19q-11 -14 -11 -29q0 -6 2 -12z" />
83
+ <glyph unicode="&#xe000;" horiz-adv-x="500" d="M0 0v0v0v0v0z" />
84
+ </font>
85
+ </defs></svg>
@@ -0,0 +1,16 @@
1
+ /* Generated by Font Squirrel (http://www.fontsquirrel.com) on March 6, 2012 10:45:52 AM America/New_York */
2
+
3
+
4
+
5
+ @font-face {
6
+ font-family: 'HeydingsControlsRegular';
7
+ src: url('heydings_controls-webfont.eot');
8
+ src: url('heydings_controls-webfont.eot?#iefix') format('embedded-opentype'),
9
+ url('heydings_controls-webfont.woff') format('woff'),
10
+ url('heydings_controls-webfont.ttf') format('truetype'),
11
+ url('heydings_controls-webfont.svg#HeydingsControlsRegular') format('svg');
12
+ font-weight: normal;
13
+ font-style: normal;
14
+
15
+ }
16
+
@@ -0,0 +1,91 @@
1
+ This Font Software is licensed under the SIL Open Font License, Version 1.1.
2
+ This license is copied below, and is also available with a FAQ at:
3
+ http://scripts.sil.org/OFL
4
+
5
+
6
+ -----------------------------------------------------------
7
+ SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
8
+ -----------------------------------------------------------
9
+
10
+ PREAMBLE
11
+ The goals of the Open Font License (OFL) are to stimulate worldwide
12
+ development of collaborative font projects, to support the font creation
13
+ efforts of academic and linguistic communities, and to provide a free and
14
+ open framework in which fonts may be shared and improved in partnership
15
+ with others.
16
+
17
+ The OFL allows the licensed fonts to be used, studied, modified and
18
+ redistributed freely as long as they are not sold by themselves. The
19
+ fonts, including any derivative works, can be bundled, embedded,
20
+ redistributed and/or sold with any software provided that any reserved
21
+ names are not used by derivative works. The fonts and derivatives,
22
+ however, cannot be released under any other type of license. The
23
+ requirement for fonts to remain under this license does not apply
24
+ to any document created using the fonts or their derivatives.
25
+
26
+ DEFINITIONS
27
+ "Font Software" refers to the set of files released by the Copyright
28
+ Holder(s) under this license and clearly marked as such. This may
29
+ include source files, build scripts and documentation.
30
+
31
+ "Reserved Font Name" refers to any names specified as such after the
32
+ copyright statement(s).
33
+
34
+ "Original Version" refers to the collection of Font Software components as
35
+ distributed by the Copyright Holder(s).
36
+
37
+ "Modified Version" refers to any derivative made by adding to, deleting,
38
+ or substituting -- in part or in whole -- any of the components of the
39
+ Original Version, by changing formats or by porting the Font Software to a
40
+ new environment.
41
+
42
+ "Author" refers to any designer, engineer, programmer, technical
43
+ writer or other person who contributed to the Font Software.
44
+
45
+ PERMISSION & CONDITIONS
46
+ Permission is hereby granted, free of charge, to any person obtaining
47
+ a copy of the Font Software, to use, study, copy, merge, embed, modify,
48
+ redistribute, and sell modified and unmodified copies of the Font
49
+ Software, subject to the following conditions:
50
+
51
+ 1) Neither the Font Software nor any of its individual components,
52
+ in Original or Modified Versions, may be sold by itself.
53
+
54
+ 2) Original or Modified Versions of the Font Software may be bundled,
55
+ redistributed and/or sold with any software, provided that each copy
56
+ contains the above copyright notice and this license. These can be
57
+ included either as stand-alone text files, human-readable headers or
58
+ in the appropriate machine-readable metadata fields within text or
59
+ binary files as long as those fields can be easily viewed by the user.
60
+
61
+ 3) No Modified Version of the Font Software may use the Reserved Font
62
+ Name(s) unless explicit written permission is granted by the corresponding
63
+ Copyright Holder. This restriction only applies to the primary font name as
64
+ presented to the users.
65
+
66
+ 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
67
+ Software shall not be used to promote, endorse or advertise any
68
+ Modified Version, except to acknowledge the contribution(s) of the
69
+ Copyright Holder(s) and the Author(s) or with their explicit written
70
+ permission.
71
+
72
+ 5) The Font Software, modified or unmodified, in part or in whole,
73
+ must be distributed entirely under this license, and must not be
74
+ distributed under any other license. The requirement for fonts to
75
+ remain under this license does not apply to any document created
76
+ using the Font Software.
77
+
78
+ TERMINATION
79
+ This license becomes null and void if any of the above conditions are
80
+ not met.
81
+
82
+ DISCLAIMER
83
+ THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
84
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
85
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
86
+ OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
87
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
88
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
89
+ DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
90
+ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
91
+ OTHER DEALINGS IN THE FONT SOFTWARE.
@@ -0,0 +1,33 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+ <head>
6
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
7
+
8
+ <title>Font Face Demo</title>
9
+ <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8">
10
+ <style type="text/css" media="screen">
11
+ h1.fontface {font: 60px/68px 'HeydingsCommonIconsRegular', Arial, sans-serif;letter-spacing: 0;}
12
+
13
+ p.style1 {font: 18px/27px 'HeydingsCommonIconsRegular', Arial, sans-serif;}
14
+
15
+ #container {
16
+ width: 800px;
17
+ margin-left: auto;
18
+ margin-right: auto;
19
+ }
20
+ </style>
21
+ </head>
22
+
23
+ <body>
24
+ <div id="container">
25
+ <h1 class="fontface">Font-face Demo for the Heydings Common Icons Font</h1>
26
+
27
+
28
+
29
+ <p class="style1">Heydings Common Icons Regular - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
30
+
31
+ </div>
32
+ </body>
33
+ </html>
@@ -0,0 +1,94 @@
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 xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>
5
+ This is a custom SVG webfont generated by Font Squirrel.
6
+ Copyright : Copyright c 2011 Heydon Pickering httpwwwheydonworkscom heydonheydonworkscomwith Reserved Font Name Heydings Icons This Font Software is licensed under the SIL Open Font License Version 11This license is available with a FAQ at httpscriptssilorgOFL
7
+ </metadata>
8
+ <defs>
9
+ <font id="HeydingsCommonIconsRegular" horiz-adv-x="2048" >
10
+ <font-face units-per-em="2048" ascent="1638" descent="-410" />
11
+ <missing-glyph horiz-adv-x="500" />
12
+ <glyph unicode="!" d="M122 88q0 -40 25 -68t59 -28h1588q34 0 59 28t25 68q0 26 -12 48l-794 1556q-10 18 -31 32t-41 14t-41 -14t-31 -32l-794 -1556q-12 -22 -12 -48zM352 182l648 1272l648 -1272h-1296zM880 362q0 48 35 83t85 35t85 -35t35 -83t-35 -82t-85 -34t-85 34t-35 82zM920 1076 l28 -506q2 -22 17 -37t39 -15q24 2 40 16t16 36l28 506q4 86 -84 86q-44 0 -67 -22t-17 -64z" />
13
+ <glyph unicode="*" d="M130 728l206 -108l-92 -214l232 -22l-4 -234l224 70l86 -218l180 150l162 -168l110 206l214 -92l22 232l232 -4l-68 224l218 86l-150 180l168 162l-206 108l92 214l-232 22l4 234l-224 -68l-86 216l-180 -148l-162 168l-110 -208l-214 94l-22 -234l-232 4l68 -222 l-218 -86l150 -180z" />
14
+ <glyph unicode="+" d="M120 871q0 -179 70 -342t188 -281t280 -188t342 -70t342 70t280 188t188 281t70 342t-70 342t-188 281t-280 187t-342 69t-342 -69t-280 -187t-188 -281t-70 -342zM534 738v266h332v334h268v-334h332v-266h-332v-334h-268v334h-332z" />
15
+ <glyph unicode="-" d="M120 868q0 -364 258 -622t622 -258t622 258t258 622t-258 622t-622 258t-622 -258t-258 -622zM534 734v268h932v-268h-932z" />
16
+ <glyph unicode="1" d="M120 868q0 -210 94 -394l690 370l-552 612q0 2 -2 4q-110 -118 -170 -271t-60 -321zM274 370q122 -176 313 -279t413 -103q364 0 622 258t258 622q0 230 -109 427t-298 317t-415 134q2 -112 2 -858v-90q-80 -50 -84 -52zM436 1544q4 -4 6 -8l498 -552q0 544 2 762 q-286 -18 -506 -202z" />
17
+ <glyph unicode="2" d="M276 1044q2 -16 6 -30t6 -23t10 -22t12 -18t14 -17t12 -16q-34 -70 -34 -92q2 -26 -1 -31t2 -23t5 -19t7 -19t9 -22q8 -20 45 -35t67 -19q78 -14 164 8q28 6 82 23t78 23q18 4 35 6t36 1t29 -1t32 -3t28 -3l-6 2l-36 4h2q40 -6 73 -44t27 -76q-18 -40 -32 -206 q-42 -40 -50 -140l24 -138q36 -128 142 -126q44 0 50 14v112q0 134 112 334l112 112q24 32 43 75t26 65t21 82t16 72q14 14 26 32q2 22 48 28t101 3t105 1v642q-242 -6 -284 28q-10 16 -28 31t-29 21t-38 19t-33 17q-68 34 -207 48t-275 12t-264 -14q-16 0 -48 -17t-67 -46 t-50 -69t3 -86q-32 -18 -47 -28t-33 -41t-28 -77q0 -56 9 -85t31 -57q-34 -32 -46 -57t-14 -81q-2 -18 0 -34z" />
18
+ <glyph unicode="3" d="M114 25q0 -9 3 -19t14 -13t29 -3h730q66 0 24 88q-8 14 -24 46l-68 134v66h360v-66l-66 -134q-2 -4 -8 -14q-10 -20 -15 -31t-12 -28t-7 -26t3 -19t14 -13t29 -3h730q66 0 24 88q-8 14 -24 46l-68 134v366q0 14 -9 24t-23 10h-534q-14 0 -24 -10t-10 -24v-180h-122v402 h308q64 0 22 86q-6 14 -24 46l-66 134v366q0 14 -10 24t-24 10h-534q-14 0 -23 -10t-9 -24v-366l-68 -134l-6 -12q-10 -22 -15 -32t-12 -28t-7 -27t3 -18t14 -13t29 -2h302v-402h-118v180q0 14 -9 24t-23 10h-534q-14 0 -24 -10t-10 -24v-366l-66 -134q-2 -4 -8 -14 q-10 -20 -15 -31t-12 -28t-7 -26zM320 324v240h404v-240h-404zM796 1178v240h406v-240h-406zM1280 324v240h404v-240h-404z" />
19
+ <glyph unicode="4" d="M120 872q0 -364 258 -622t622 -258t622 258t258 622t-258 622t-622 258t-622 -258t-258 -622zM300 872q0 290 205 495t495 205t495 -205t205 -495q0 -134 -50 -260q-282 198 -550 220l20 -160q120 -58 120 -220q0 -100 -70 -170t-170 -70t-170 70t-70 170q0 162 120 220 l20 160q-264 -24 -550 -220q-50 124 -50 260zM851 504q-23 -62 1 -118q24 -58 85 -84t119 -4q60 20 89 83t5 123q-22 60 -80 88l-50 590q0 28 -10 40t-20 0t-10 -40l-50 -590q-56 -26 -79 -88z" />
20
+ <glyph unicode="5" d="M360 -14h1280v1638v12v34v34h-1280v-34v-34v-12v-1638zM462 120v606h1076v-606h-1076zM462 828v606h1076v-606h-1076zM528 188h944v470h-944v-470zM528 894h944v472h-944v-472zM832 390v134q0 14 10 24t24 10h268q14 0 24 -10t10 -24v-134q0 -14 -10 -24t-24 -10h-268 q-14 0 -24 10t-10 24zM832 1096v136q0 14 10 24t24 10h268q14 0 24 -10t10 -24v-136q0 -14 -10 -24t-24 -10h-268q-14 0 -24 10t-10 24zM1438 1569q0 21 15 35t36 14t35 -14t14 -35t-14 -36t-35 -15t-36 15t-15 36z" />
21
+ <glyph unicode="8" d="M276 162q242 8 284 -26q10 -18 28 -32t29 -21t38 -19t33 -16q68 -34 207 -49t275 -12t264 15q16 0 48 16t67 45t50 69t-3 88q32 16 47 27t33 41t28 78q0 56 -9 85t-31 57q34 32 46 56t14 82q2 18 0 34t-6 30t-6 23t-10 21t-12 17t-14 18t-12 17q34 68 34 92q-2 26 1 31 t-2 23t-5 19t-7 19t-9 22q-8 18 -45 33t-67 21q-78 12 -164 -8q-28 -6 -82 -23t-78 -23q-18 -4 -35 -6t-36 -2t-29 1t-32 3t-28 4l6 -2l36 -6l-2 2q-40 6 -73 44t-27 76q18 40 32 204q42 40 50 142l-24 138q-36 128 -142 126q-44 -2 -50 -16v-110q0 -136 -112 -336 l-112 -110q-24 -34 -43 -76t-26 -65t-21 -83t-16 -70q-14 -16 -26 -32q-2 -22 -48 -29t-101 -3t-105 0v-644z" />
22
+ <glyph unicode="@" d="M80 808h166q34 -256 217 -438t437 -216v-166h200v166q254 34 437 216t217 438h166v200h-166q-34 254 -217 437t-437 217v166h-200v-166q-254 -34 -437 -217t-217 -437h-166v-200zM448 808h334q-22 48 -22 100t22 100h-334q32 172 156 296t296 156v-334q48 22 100 22 t100 -22v334q172 -32 296 -156t156 -296h-72h-262q22 -48 22 -100t-22 -100h262h72q-32 -172 -156 -296t-296 -156v112v222q-48 -22 -100 -22t-100 22v-334q-172 32 -296 156t-156 296z" />
23
+ <glyph unicode="A" d="M334 -48h1360v686q0 40 -12 76t-29 63t-54 57t-65 49t-80 45t-83 40t-91 40q-118 -96 -266 -96q-156 0 -276 104q-72 -28 -117 -49t-103 -55t-92 -70t-60 -88t-32 -116v-686zM658 1380q0 148 104 252t251 104t252 -104t105 -252t-105 -252t-252 -104t-251 104t-104 252z " />
24
+ <glyph unicode="B" d="M578 -24l400 560l400 -560v1400v160l74 -160h166q67 0 67 21q0 15 -27 39l-240 220q-48 46 -91 63t-109 17h-480q-66 0 -113 -47t-47 -113v-160v-1440z" />
25
+ <glyph unicode="C" d="M128 828q2 -72 16 -142l158 -76l-76 -156q32 -64 78 -124l174 2l-2 -174q58 -44 122 -78l158 76l74 -158q72 -14 144 -16l108 138l136 -110q72 18 138 48l38 170l170 -40q54 48 102 104l-40 170l170 38q30 64 48 136l-110 136l138 108q-2 74 -16 144l-158 74l76 158 q-32 62 -78 122l-174 -2l2 176q-60 44 -122 76l-158 -76l-74 158q-72 14 -144 16l-108 -138l-136 110q-72 -18 -138 -48l-38 -170l-170 40q-54 -48 -102 -102l40 -170l-170 -38q-30 -66 -48 -138l110 -136zM520 854q0 198 141 339t339 141t339 -141t141 -339t-141 -339 t-339 -141t-339 141t-141 339z" />
26
+ <glyph unicode="D" d="M308 54q0 -26 18 -44t44 -18h1260q26 0 44 18t18 44v1236q0 26 -16 44l-352 362q-18 20 -44 20h-910q-26 0 -44 -18t-18 -44v-1600zM432 116v1476h788v-322v-40h40h308v-1114h-1136zM560 294h480v120h-480v-120zM560 494h800v120h-800v-120zM560 694h680v120h-680v-120z M560 894h880v120h-880v-120zM1300 1310v232l224 -232h-224z" />
27
+ <glyph unicode="E" d="M122 58q0 -30 22 -51t52 -21h1608q30 0 52 21t22 51v952q0 32 -24 54q-22 18 -78 69t-78 70t-67 59t-70 61t-60 51t-63 52l-56 44q-212 158 -374 168h-24h-5q-164 0 -357 -136q-170 -122 -480 -442q-20 -22 -20 -50v-952zM162 88l68 -60l572 642h396l572 -642l68 60 l-450 508l446 378l-58 70l-450 -380l-72 84l-14 14h-20h-440h-20l-14 -14l-72 -84l-450 380l-58 -70l446 -378zM268 132v848q286 292 440 402q146 106 258 110q8 1 16 1l16 -1q120 -8 298 -140q106 -80 436 -376v-844h-1464z" />
28
+ <glyph unicode="F" d="M118 -16h1764v1108q0 52 -36 88t-86 36h-1520q-50 0 -86 -36t-36 -88v-1108zM240 1330q0 -14 4 -24h1512q4 10 4 24v48q0 40 -24 68t-58 28h-826l-92 134h-240l-102 -134h-96q-34 0 -58 -28t-24 -68v-48z" />
29
+ <glyph unicode="G" d="M147 434q-10 -43 -10 -84q0 -57 19 -110l206 206l148 -8l78 -78l8 -148l-206 -206q54 -19 110 -19q41 0 84 10q102 23 176 97q72 72 96 171q11 44 11 87q0 53 -17 104q230 316 558 546q45 -12 90 -12q47 0 95 13q93 25 163 95q74 72 97 174q10 43 10 84q0 57 -19 110 l-206 -206l-148 8l-78 78l-8 150l206 206q-52 17 -107 17q-42 0 -87 -10q-102 -23 -176 -97q-78 -80 -99 -189q-7 -36 -7 -71q0 -70 28 -136q-226 -320 -516 -530q-67 30 -141 30q-34 0 -69 -6q-112 -20 -192 -100q-74 -74 -97 -176z" />
30
+ <glyph unicode="H" d="M160 828h152l688 688l688 -688h152l-382 406v126v302q0 18 -28 29t-67 11t-67 -11t-28 -29v-234l-268 274zM466 -12h346q-2 18 -2 36v272q0 94 55 160t135 66t135 -66t55 -160v-272q0 -18 -2 -36h346v650v212l-534 550l-534 -550v-252v-610z" />
31
+ <glyph unicode="I" d="M120 70q0 -36 25 -61t61 -25h1588q36 0 61 25t25 61v868q0 36 -25 61t-61 25h-114v40q0 16 -12 28t-28 12h-40h-140q-10 0 -20 4v-4h-40q-16 0 -28 -12t-12 -28v-40h-426l-94 280h-400l-94 -280h-140q-36 0 -61 -25t-25 -61v-868zM240 504q0 166 117 283t283 117 t283 -117t117 -283t-117 -283t-283 -117t-283 117t-117 283zM320 504q0 -132 94 -226t226 -94t226 94t94 226t-94 226t-226 94t-226 -94t-94 -226zM400 504q0 100 70 170t170 70t170 -70t70 -170t-70 -170t-170 -70t-170 70t-70 170zM1320 744v120q0 16 12 28t28 12h320 q16 0 28 -12t12 -28v-120q0 -16 -12 -28t-28 -12h-320q-16 0 -28 12t-12 28z" />
32
+ <glyph unicode="J" d="M198 64q0 -34 23 -57t57 -23h1440q32 0 56 23t24 57l2 320v40v1120q0 34 -23 57t-57 23h-200v82q0 16 -11 27t-27 11h-84q-16 0 -27 -11t-11 -27v-82h-136v74q0 18 -14 32t-32 14h-68q-18 0 -32 -14t-14 -32v-74h-120v74q0 18 -14 32t-32 14h-68q-18 0 -32 -14t-14 -32 v-74h-144v82q0 16 -11 27t-27 11h-84q-16 0 -27 -11t-11 -27v-82h-200q-34 0 -57 -23t-23 -57v-1120zM358 182l2 202v40v1002q0 16 11 27t27 11h82v-82q0 -16 11 -27t27 -11h84q16 0 27 11t11 27v82h144v-74q0 -18 14 -32t32 -14h68q18 0 32 14t14 32v74h120v-74 q0 -18 14 -32t32 -14h68q18 0 32 14t14 32v74h136v-82q0 -16 11 -27t27 -11h84q16 0 27 11t11 27v82h82q16 0 27 -11t11 -27v-1002l-2 -242q0 -16 -11 -27t-27 -11h-1204q-16 0 -27 11t-11 27zM480 304h600v120h-600v-120zM480 504h960v120h-960v-120zM480 704h840v120h-840 v-120zM480 904h720v120h-720v-120zM480 1104h1040v120h-1040v-120z" />
33
+ <glyph unicode="K" d="M546 444q0 -188 133 -322t321 -134t321 134t133 322q0 146 -84 263t-218 165v670l-38 62l-70 116v-2v2l-6 12l-152 -190l2 -2l-24 -26l64 -86v-86l-60 -42v-186l-96 -90v-186q-102 -60 -164 -165t-62 -229zM868 254q0 54 39 93t93 39t93 -39t39 -93t-39 -93t-93 -39 t-93 39t-39 93zM1310 640l2 2v-2h-2z" />
34
+ <glyph unicode="L" d="M240 6q4 -16 19 -19q9 -2 21 -2q8 0 17 1q23 2 33 0h1410q16 6 19 21q2 9 2 21q0 8 -1 16q-2 22 0 32v432v432v10q0 19 -6 24q-8 6 -32 6h-12h-52h-58v71v78q0 25 -3 72t-9 78t-17 69t-29 70q-70 148 -215 238t-311 90q-16 0 -32 -2h-11q-197 0 -359 -135 q-166 -139 -198 -339q-6 -42 -7 -91q0 -24 -0.5 -51.5t0.5 -57.5q1 -60 1 -90h-49h-55h-46q-14 0 -18 -7q-3 -5 -3 -13q0 -10 0.5 -33.5t0.5 -34.5v-886zM599 1077q0 32 -0.5 56.5t0.5 42.5q1 36 13 86t34 90q48 92 141 147q90 53 190 53h7q14 2 30 2q110 0 207 -56 t145 -154q20 -40 30 -89t11 -85q0 -18 0.5 -42t-0.5 -53v-36q0 -33 1 -53h-808q0 28 -1 91zM840 568q0 44 24 82q14 28 40 46q42 34 96 34h10q60 0 98 -48q52 -46 52 -114q0 -46 -26 -85t-66 -57q0 -8 2 -16l40 -196h-230l40 186q4 16 4 30q-38 20 -61 57t-23 81z" />
35
+ <glyph unicode="M" d="M132 166q-1 -11 -1 -21q0 -66 45 -110q46 -45 113 -45q9 0 19 1q80 7 142 69l362 362q70 70 70 158q4 24 0 50l84 84q149 -114 337 -114q19 0 39 1q212 13 362 163q164 166 164 399t-164 397t-397 164t-399 -164q-148 -150 -163 -360q-2 -22 -2 -44q0 -183 113 -332 l-88 -86q-10 2 -22 2q-13 2 -26 2q-87 0 -156 -72l-362 -360q-62 -64 -70 -144zM908 1163q0 165 117 281t282 116t281 -116t116 -281t-116 -282t-281 -117t-282 117t-117 282z" />
36
+ <glyph unicode="N" d="M120 872q0 -180 70 -342t188 -280t280 -188t342 -70q364 0 622 258t258 622q0 180 -70 342t-188 280t-280 188t-342 70t-342 -70t-280 -188t-188 -280t-70 -342zM300 872q0 190 94 351t255 255t351 94t351 -94t255 -255t94 -351q0 -290 -205 -495t-495 -205 q-190 0 -351 94t-255 255t-94 351zM480 872l100 -60h200v120h-200zM542 872l220 -50q12 -58 50 -104t92 -68l96 -418l96 418q54 22 92 69t50 105l220 48l-220 48q-12 60 -52 108t-98 70l-62 294l-26 120l-26 -120l-62 -294q-58 -22 -97 -69t-53 -107zM826 1329q-1 -3 -1 -5 q0 -5 6 -8q9 -4 29 -4h280q22 0 30 5t3 15t-12 18t-21 22l-140 140l-140 -140q-16 -18 -23 -26t-11 -17zM833 423q-4 -4 -4 -9q0 -7 8 -17q13 -17 35 -39q6 -4 8 -6l122 -120l118 120q50 56 50 66q0 14 -50 14h-240q-38 0 -47 -9zM890 872q0 46 32 78t78 32t78 -32t32 -78 t-32 -78t-78 -32t-78 32t-32 78zM1220 812h200l100 60l-100 60h-200v-120z" />
37
+ <glyph unicode="O" d="M120 188q0 -84 58 -142t142 -58h1360q84 0 142 58t58 142v1360q0 84 -58 142t-142 58h-1360q-84 0 -142 -58t-58 -142v-1360zM378 778l130 222q26 -22 99 -87t131 -117t106 -96q108 210 275 399t401 407l120 -200q-228 -210 -382 -417t-252 -459l-82 -208l-144 176 q-44 54 -97 106t-91 86t-107 93t-107 95z" />
38
+ <glyph unicode="P" d="M500 1250q0 -114 49 -215t133 -171l318 -874l318 874q84 70 133 171t49 215q0 208 -146 354t-354 146t-354 -146t-146 -354zM860 1250q0 58 41 99t99 41t99 -41t41 -99t-41 -99t-99 -41t-99 41t-41 99z" />
39
+ <glyph unicode="Q" d="M120 188q0 -84 58 -142t142 -58h1360q84 0 142 58t58 142v1360q0 84 -58 142t-142 58h-1360q-84 0 -142 -58t-58 -142v-1360zM570 1210q24 184 136 282q114 100 298 100q194 0 312 -106q118 -108 118 -262q0 -90 -42 -166q-42 -72 -156 -174q-72 -64 -94 -94 q-20 -26 -28 -62q-10 -36 -12 -124v-2q-2 -52 -36 -80q-26 -23 -61 -23q-5 0 -11 1q-40 4 -70 30q-30 30 -30 72v48q0 94 28 166q20 54 64 108q32 38 114 110q76 66 96 104q20 34 20 76q0 76 -60 135t-150 59q-86 0 -142 -54q-58 -54 -78 -174q-6 -50 -43 -81 q-33 -27 -73 -27h-10q-48 2 -74 38q-20 28 -20 66q0 16 4 34zM860 279q0 59 42 101t101 42t101 -42t42 -101t-42 -101t-101 -42t-101 42t-42 101z" />
40
+ <glyph unicode="R" d="M120 168q0 -84 58 -142t142 -58h1360q84 0 142 58t58 142v1360q0 84 -58 142t-142 58h-1360q-84 0 -142 -58t-58 -142v-1360zM400 404q0 66 47 113t113 47t113 -47t47 -113t-47 -113t-113 -47t-113 47t-47 113zM456 1216l8 260q236 -8 450 -106t369 -258t246 -378 t91 -458v-36l-258 8v28q0 252 -121 466t-329 341t-456 133zM458 762l12 260q194 -10 355 -112t255 -270t94 -364q0 -20 -2 -38l-258 14v24q0 196 -132 336t-324 150z" />
41
+ <glyph unicode="S" d="M154 726q0 -12 4 -22l274 -680q6 -16 22 -27t34 -11h1024q18 0 34 11t22 27l274 680q4 10 4 22q0 24 -18 42t-42 18h-1572q-24 0 -42 -18t-18 -42zM302 666h1396l-226 -560h-944zM350 454h1300v68h-1300v-68zM372 748l94 -44l190 414h688l190 -414l94 44l-206 442 q-14 30 -46 30h-752q-32 0 -46 -30zM416 290h68v410h-68v-410zM420 250h1160v68h-1160v-68zM658 46h68v680h-68v-680zM770 1100q0 -12 8 -20t20 -8h410q12 0 20 8t8 20v136q0 12 -8 20t-20 8h-410q-12 0 -20 -8t-8 -20v-136zM826 1128v80h354v-80h-354zM966 46h68v680h-68 v-680zM1240 46h68v680h-68v-680zM1512 114h68v612h-68v-612z" />
42
+ <glyph unicode="T" d="M280 716q0 -196 96 -362t262 -262t362 -96t362 96t262 262t96 362q0 264 -171 465t-429 245v122h10q30 0 50 20t20 50t-20 50t-50 20h-260q-30 0 -50 -20t-20 -50t20 -50t50 -20h10v-122q-258 -44 -429 -245t-171 -465zM428 715q0 237 167 405t405 168t405 -168t167 -405 t-167 -405t-405 -168t-405 168t-167 405zM934 674q0 -16 12 -28t30 -12h8h16h40l262 226l30 112l-116 -14l-150 -132v300l-66 96l-66 -96v-428v-16v-8z" />
43
+ <glyph unicode="U" d="M320 52q0 -26 19 -45t45 -19h1232q26 0 45 19t19 45v1552q0 26 -19 45t-45 19h-1232q-26 0 -45 -19t-19 -45v-1552zM480 1268v240h1040v-240h-1040zM560 148v160h160v-160h-160zM560 388v160h160v-160h-160zM560 628v160h160v-160h-160zM560 868v160h160v-160h-160z M800 148v160h160v-160h-160zM800 388v160h160v-160h-160zM800 628v160h160v-160h-160zM800 868v160h160v-160h-160zM1040 148v160h160v-160h-160zM1040 388v160h160v-160h-160zM1040 628v160h160v-160h-160zM1040 868v160h160v-160h-160zM1280 148v400h160v-400h-160z M1280 628v160h160v-160h-160zM1280 868v160h160v-160h-160z" />
44
+ <glyph unicode="V" d="M212 1426l58 -314l1494 278l-58 314zM268 -8h1520v780h-1520v-780zM268 752h1520v320h-1520v-320zM342 1166l74 258l118 22l-74 -258zM348 632v60h1360v-60h-650v-560h-60v560h-650zM348 792l120 240h120l-120 -240h-120zM616 1218l74 258l118 22l-74 -258zM628 792 l120 240h120l-120 -240h-120zM892 1268l74 258l118 22l-74 -258zM908 792l120 240h120l-120 -240h-120zM1168 1320l74 258l118 22l-74 -258zM1188 792l120 240h120l-120 -240h-120zM1442 1372l74 256l118 22l-74 -256zM1468 792l120 240h120l-120 -240h-120z" />
45
+ <glyph unicode="W" d="M160 -12h1680l-320 1040h-460v66q96 22 158 98t62 176q0 116 -82 198t-198 82t-198 -82t-82 -198q0 -100 62 -176t158 -98v-66h-460zM856 1368q0 60 42 102t102 42t102 -42t42 -102q0 -44 -23 -79t-61 -53v4q0 28 -18 48t-42 20t-42 -20t-18 -48v-4q-38 18 -61 53t-23 79 z" />
46
+ <glyph unicode="X" d="M122 188q0 -84 58 -142t142 -58h1360q84 0 142 58t58 142v1360q0 84 -58 142t-142 58h-1360q-84 0 -142 -58t-58 -142v-1360zM366 430l438 438l-438 438l198 198l438 -438l438 438l198 -198l-438 -438l438 -438l-198 -198l-438 438l-438 -438z" />
47
+ <glyph unicode="Y" d="M136 72q0 -36 24 -60t60 -24h1560q36 0 60 24t24 60v668q0 36 -24 61t-59 25t-60 -25t-25 -61v-584h-1392v584q0 36 -25 61t-61 25q-34 -2 -58 -26t-24 -60v-668zM400 1008h1190l10 400q-230 -144 -542 -214t-658 -74v-112zM406 258h1188v110h-1188v-110zM406 444h1188 v110h-1188v-110zM406 630h1188v110h-1188v-110zM406 814h1188v112h-1188v-112z" />
48
+ <glyph unicode="Z" d="M116 -16h1766v1108q0 52 -36 88t-88 36h-1518q-52 0 -88 -36t-36 -88v-1108zM240 1330q0 -12 2 -24h1514q2 12 2 24v48q0 40 -24 68t-58 28h-824l-92 134h-240l-104 -134h-94q-34 0 -58 -28t-24 -68v-48zM1240 144v120h320v-120h-320zM1240 544v120h320v-120h-320z M1240 944v120h320v-120h-320zM1360 344v120h320v-120h-320zM1360 744v120h320v-120h-320z" />
49
+ <glyph unicode="a" d="M152 298q0 -130 90 -221t220 -91t222 92l282 282q70 70 86 166q5 28 5 56q0 65 -27 126l98 96q59 -26 124 -26q29 0 58 5q96 17 166 87l282 282q90 90 90 220t-90 221t-220 91t-222 -90l-282 -284q-70 -68 -86 -165q-5 -29 -5 -56q0 -66 27 -125l-98 -98q-59 26 -124 26 q-29 0 -58 -5q-96 -17 -166 -85l-282 -284q-90 -90 -90 -220zM294 297q0 69 50 119l282 284q50 50 120 50q2 0 10 -2l-132 -130q-32 -32 -32 -79t32 -80t79 -33t79 34l132 130v-10q0 -68 -50 -118l-282 -284q-50 -50 -119 -50t-119 50t-50 119zM1086 1080v10q0 68 50 118 l282 284q50 50 119 50t119 -50t50 -119t-50 -119l-282 -284q-49 -49 -115 -49q-7 0 -15 1l132 130q32 34 32 81t-32 79t-79 32t-79 -32z" />
50
+ <glyph unicode="b" d="M120 728q0 -88 64 -153t154 -65h398l194 -480q8 -18 27 -31t37 -13q20 0 38 12t26 30l214 482h400q88 0 153 65t65 153v780q0 90 -65 154t-153 64h-1334q-90 0 -154 -64t-64 -154v-780zM260 728v780q0 34 22 56t56 22h1334q32 0 55 -22t23 -56v-780q0 -32 -23 -55 t-55 -23h-446q-18 0 -37 -12t-25 -28l-166 -376l-152 374q-6 18 -25 30t-39 12h-444q-34 0 -56 23t-22 55z" />
51
+ <glyph unicode="c" d="M200 72q0 -34 23 -57t57 -23h1440q34 0 57 23t23 57v1360q0 34 -23 57t-57 23h-200v82q0 16 -11 27t-27 11h-84q-16 0 -27 -11t-11 -27v-82h-136v74q0 18 -14 32t-32 14h-68q-18 0 -32 -14t-14 -32v-74h-120v74q0 18 -14 32t-32 14h-68q-18 0 -32 -14t-14 -32v-74h-144 v82q0 16 -11 27t-27 11h-84q-16 0 -27 -11t-11 -27v-82h-200q-34 0 -57 -23t-23 -57v-1360zM360 190v1124q0 16 11 27t27 11h82v-82q0 -16 11 -27t27 -11h84q16 0 27 11t11 27v82h144v-74q0 -18 14 -32t32 -14h68q18 0 32 14t14 32v74h120v-74q0 -18 14 -32t32 -14h68 q18 0 32 14t14 32v74h136v-82q0 -16 11 -27t27 -11h84q16 0 27 11t11 27v82h82q16 0 27 -11t11 -27v-1124q0 -16 -11 -27t-27 -11h-1204q-16 0 -27 11t-11 27zM486 272v840h1040v-840h-1040z" />
52
+ <glyph unicode="d" d="M600 624l400 -640l400 640h-240v1120h-320v-1120h-240z" />
53
+ <glyph unicode="e" d="M132 78q0 -38 27 -64t63 -26h1290q36 0 63 26t27 64v854l-180 -178v-586h-1110v1044h644l180 180h-914q-36 0 -63 -26t-27 -64v-1224zM780 902l326 -326l542 542l168 -172l52 734l-708 -80l162 -156z" />
54
+ <glyph unicode="f" d="M338 1667q0 45 32 77t76 32t76 -32t32 -77t-32 -77t-76 -32t-76 32t-32 77zM384 50v1370q0 28 18 46t44 18t45 -18t19 -46v-1370q0 -26 -19 -45t-45 -19t-44 19t-18 45zM610 714v728q110 94 246 97h8q133 0 292 -97q70 -36 128 -56t123 -28q18 -2 36 -2q47 0 93 15 q64 21 126 71v-728q-103 -76 -229.5 -76t-276.5 76q-10 4 -53 20t-58 21t-55 18t-61 15t-59 7q-17 2 -32 2q-18 0 -33 -3q-27 -6 -62 -13t-67 -25t-66 -42z" />
55
+ <glyph unicode="g" d="M124 28q0 -16 10 -28t24 -12h702q14 0 24 12t10 28v240q0 16 -10 28t-24 12h-138l180 240h196l180 -240h-138q-14 0 -24 -12t-10 -28v-240q0 -16 10 -28t24 -12h702q14 0 24 12t10 28v240q0 16 -10 28t-24 12h-422l-192 240h122q16 0 26 12t10 28v240q0 16 -10 28t-26 12 h-290v240h290q16 0 26 12t10 28v240q0 16 -10 28t-26 12h-700q-16 0 -26 -12t-10 -28v-240q0 -16 10 -28t26 -12h290v-240h-290q-16 0 -26 -12t-10 -28v-240q0 -16 10 -28t26 -12h122l-192 -240h-422q-14 0 -24 -12t-10 -28v-240z" />
56
+ <glyph unicode="h" d="M146 1020v-18q0 -87 35 -176q39 -98 101 -178t159 -172t182 -160t199 -160t182 -154q62 50 156 125t155 124t141 119t131 122t107 121t87 129t52 132t21 146q0 180 -121 305t-299 125q-66 0 -135 -36t-120 -88t-93 -103t-62 -87l-22 -36q-8 14 -22 38t-60 84t-93 106 t-116 84t-135 38q-178 0 -304 -126t-126 -304z" />
57
+ <glyph unicode="i" d="M120 188q0 -84 58 -142t142 -58h1360q84 0 142 58t58 142v1360q0 84 -58 142t-142 58h-1360q-84 0 -142 -58t-58 -142v-1360zM720 188v120h160v680h-120v80h320h40v-760h160v-120h-560zM820 1344q0 74 53 127t127 53t127 -53t53 -127t-53 -127t-127 -53t-127 53t-53 127z " />
58
+ <glyph unicode="k" d="M120 -12h820v440h-820v-440zM120 548h320v440h-320v-440zM120 1108h820v440h-820v-440zM560 548h880v440h-880v-440zM1060 -12h820v440h-820v-440zM1060 1108h820v440h-820v-440zM1560 548h320v440h-320v-440z" />
59
+ <glyph unicode="l" d="M440 1184q0 -214 144 -372v-2q4 -6 6 -10q10 -14 22 -34q28 -50 50 -98q22 -52 38 -104q4 -14 8 -30t5 -23l1 -7v-52v-64h64h52h340h52h64v64v52v3q0 3 1 9t3 13t4 17t6 18q16 52 38 104t46 94q10 18 20 34q6 8 8 10q148 160 148 378q0 230 -165 393t-395 163t-395 -163 t-165 -393zM568 1184q0 178 127 303t305 125t305 -125t127 -303q0 -168 -114 -290q-8 -8 -20 -28q-14 -20 -26 -40q-26 -48 -52 -106t-44 -118q-16 -56 -18 -86h-316q-2 30 -18 86q-20 60 -46 118q-24 54 -56 110q-12 22 -22 40q-14 18 -22 28q-110 122 -110 286zM752 1096 l102 -202l44 -92l46 92l56 112l56 -112l46 -92l44 92l102 202l-90 46l-56 -112l-56 112l-46 90l-46 -90l-56 -112l-56 112zM778 332l20 -148h404l18 148h-442zM864 130q8 -60 46 -100t90 -40t90 40t46 100h-272z" />
60
+ <glyph unicode="m" d="M122 466h480l600 -480v1600l-600 -480h-480v-640zM1302 498l86 -132q104 68 166 179t62 240t-62 240t-166 179l-86 -132q72 -46 114 -122t42 -165t-42 -165t-114 -122zM1444 278l86 -132q160 104 254 273t94 366t-94 367t-254 274l-86 -132q128 -82 203 -217t75 -292 t-75 -291t-203 -216z" />
61
+ <glyph unicode="n" d="M440 72q0 -34 23 -57t57 -23h960q34 0 57 23t23 57v1520q0 34 -23 57t-57 23h-960q-34 0 -57 -23t-23 -57v-1520zM600 472v1040h800v-1040h-800zM880 232q0 50 35 85t85 35t85 -35t35 -85t-35 -85t-85 -35t-85 35t-35 85z" />
62
+ <glyph unicode="o" d="M322 -10h60h1236h60v60v1304v60h-60h-316q-10 10 -22 20q-50 44 -120 68q18 40 18 84q0 80 -53 136t-128 56t-128 -56t-53 -136q0 -44 18 -84q-70 -24 -120 -68q-10 -8 -20 -20h-312h-60v-60v-1304v-60zM486 1294h178q-2 -8 -2 -18q0 -18 4 -34l6 -34h32h584h32l6 34 q4 16 4 34q0 10 -2 18h182v-1124h-790q-240 359 -240 930q0 94 6 194zM752 1304q8 34 42 64q80 76 206 76q122 0 196 -76q36 -30 42 -64h2v-2h-486v2h-2zM913 1597q0 29 23 51q26 26 62 26q34 0 58 -25t24 -61q-6 -48 -44 -67q-19 -10 -38.5 -9.5t-38.5 9.5q-46 22 -46 76z " />
63
+ <glyph unicode="p" d="M134 278q0 -36 25 -62t57 -20q7 2 14 2q28 0 54 -26q32 -32 49 -73t39 -65t42 -4v166h92v-166q0 -16 12 -29t28 -13h908q16 0 28 13t12 29v166h96v-166q36 4 60 32t34 59t35 54q23 21 59 21h6q32 -4 57 21t25 61v658q0 36 -24 60t-58 24h-290v658q0 18 -12 30t-28 12 h-908q-16 0 -28 -12t-12 -30v-658h-290q-34 0 -58 -24t-24 -60v-658zM600 88v280h800v-280h-800zM600 808v800h800v-800h-800zM1590 762q0 30 21 51t51 21t51 -21t21 -51t-21 -51t-51 -21t-51 21t-21 51z" />
64
+ <glyph unicode="q" d="M252 979q12 -137 64 -275q34 -92 86 -184q54 -94 130 -192q120 -154 277 -243t330 -97q14 -1 27 -1q159 0 316 87q102 48 138 106l-330 486q-108 -44 -172 -102t-122 -168q-393 213 -393 638q0 19 1 38q28 -2 53 -2q93 0 160 23q85 29 169 99q-108 238 -256 530 q-66 -14 -160 -68q-122 -72 -199 -179t-104 -233q-19 -87 -19 -180q0 -41 4 -83zM824 1748l244 -510l64 62l-212 454zM1378 696l320 -466l54 80l-288 412z" />
65
+ <glyph unicode="r" d="M374 8l1186 920l-360 80l426 680l-1186 -880l360 -80z" />
66
+ <glyph unicode="s" d="M136 1006l518 -394l-188 -622l534 372l532 -372l-186 622l518 392l-650 14l-214 614l-214 -614z" />
67
+ <glyph unicode="t" d="M140 864l504 -872l1030 594l180 478l-180 312l-504 82zM1422 1112q12 44 51 67q26 15 53 15q14 0 30 -4q44 -12 67 -51q15 -26 15 -53q0 -14 -4 -30q-12 -44 -51 -67q-26 -15 -53 -15q-14 0 -30 4q-44 12 -67 51q-15 26 -15 53q0 15 4 30z" />
68
+ <glyph unicode="u" d="M600 1108h240v-1120h320v1120h240l-400 640z" />
69
+ <glyph unicode="v" d="M160 -16v120h1680v-120h-1680zM160 24v1600h120v-1600h-120zM400 104v720h400v-720h-400zM920 104v1280h400v-1280h-400zM1440 104v400h400v-400h-400z" />
70
+ <glyph unicode="w" d="M172 12l370 370q-4 13 -4 25q0 27 22 49q20 20 50 20t51 -21t21 -51t-20 -50q-14 -16 -39 -20t-43 2l-360 -370l398 36q38 224 188 414q14 -10 27 -10q17 0 33 16q14 14 14 34t-14 34l-170 170q-14 14 -34 14t-34 -14q-16 -16 -16 -34q0 -13 8 -26q-54 -40 -131 -77 t-127 -56t-152 -55zM774 700l136 -136q25 -26 59 -26t77 26q90 52 172 117t140 119t132 142t115 141t123 161q8 14 32 52q124 217 124 310q0 68 -68 68q-92 0 -310 -124q-38 -24 -52 -34q-246 -184 -397 -328t-283 -352q-26 -42 -26 -76t26 -60z" />
71
+ <glyph unicode="y" d="M122 868q0 -178 70 -340t188 -280t280 -188t340 -70t340 70t280 188t188 280t70 340t-70 341t-188 280t-280 187t-340 70t-340 -70t-280 -187t-188 -280t-70 -341zM258 868q0 202 99 373t270 270t373 99t373 -99t270 -270t99 -373t-99 -373t-270 -270t-373 -99t-373 99 t-270 270t-99 373zM480 988q0 -20 6 -40h308q6 20 6 40q0 66 -47 113t-113 47t-113 -47t-47 -113zM538 676q40 -116 115 -199t163 -123t187 -40t187 38t161 121t111 203h-592h-332zM1200 988q0 -20 6 -40h308q6 20 6 40q0 66 -47 113t-113 47t-113 -47t-47 -113z" />
72
+ <glyph unicode="&#xad;" d="M120 868q0 -364 258 -622t622 -258t622 258t258 622t-258 622t-622 258t-622 -258t-258 -622zM534 734v268h932v-268h-932z" />
73
+ <glyph unicode="&#x2000;" horiz-adv-x="914" />
74
+ <glyph unicode="&#x2001;" horiz-adv-x="1828" />
75
+ <glyph unicode="&#x2002;" horiz-adv-x="914" />
76
+ <glyph unicode="&#x2003;" horiz-adv-x="1828" />
77
+ <glyph unicode="&#x2004;" horiz-adv-x="608" />
78
+ <glyph unicode="&#x2005;" horiz-adv-x="456" />
79
+ <glyph unicode="&#x2006;" horiz-adv-x="304" />
80
+ <glyph unicode="&#x2007;" horiz-adv-x="304" />
81
+ <glyph unicode="&#x2008;" horiz-adv-x="228" />
82
+ <glyph unicode="&#x2009;" horiz-adv-x="364" />
83
+ <glyph unicode="&#x200a;" horiz-adv-x="100" />
84
+ <glyph unicode="&#x2010;" d="M120 868q0 -364 258 -622t622 -258t622 258t258 622t-258 622t-622 258t-622 -258t-258 -622zM534 734v268h932v-268h-932z" />
85
+ <glyph unicode="&#x2011;" d="M120 868q0 -364 258 -622t622 -258t622 258t258 622t-258 622t-622 258t-622 -258t-258 -622zM534 734v268h932v-268h-932z" />
86
+ <glyph unicode="&#x2012;" d="M120 868q0 -364 258 -622t622 -258t622 258t258 622t-258 622t-622 258t-622 -258t-258 -622zM534 734v268h932v-268h-932z" />
87
+ <glyph unicode="&#x2013;" horiz-adv-x="1024" d="M120 -12v1760h736v-1760h-736z" />
88
+ <glyph unicode="&#x2014;" d="M120 -12v1760h1760v-1760h-1760z" />
89
+ <glyph unicode="&#x202f;" horiz-adv-x="364" />
90
+ <glyph unicode="&#x205f;" horiz-adv-x="456" />
91
+ <glyph unicode="&#x2122;" horiz-adv-x="4096" d="M2180 166q-1 -11 -1 -21q0 -66 45 -110q46 -45 113 -45q9 0 19 1q80 7 142 69l362 362q70 70 70 158q4 24 0 50l84 84q149 -114 337 -114q19 0 39 1q212 13 362 163q164 166 164 399t-164 397t-397 164t-399 -164q-148 -150 -163 -360q-2 -22 -2 -44q0 -183 113 -332 l-88 -86q-10 2 -22 2q-13 2 -26 2q-87 0 -156 -72l-362 -360q-62 -64 -70 -144zM2956 1163q0 165 117 281t282 116t281 -116t116 -281t-116 -282t-281 -117t-282 117t-117 282zM280 716q0 -196 96 -362t262 -262t362 -96t362 96t262 262t96 362q0 264 -171 465t-429 245v122 h10q30 0 50 20t20 50t-20 50t-50 20h-260q-30 0 -50 -20t-20 -50t20 -50t50 -20h10v-122q-258 -44 -429 -245t-171 -465zM428 715q0 237 167 405t405 168t405 -168t167 -405t-167 -405t-405 -168t-405 168t-167 405zM934 674q0 -16 12 -28t30 -12h8h16h40l262 226l30 112 l-116 -14l-150 -132v300l-66 96l-66 -96v-428v-16v-8z" />
92
+ <glyph unicode="&#xe000;" horiz-adv-x="500" d="M0 0v0v0v0v0z" />
93
+ </font>
94
+ </defs></svg>