jekyll-theme-centos 2.52.0.beta.4 → 2.52.0.beta.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (315) hide show
  1. checksums.yaml +4 -4
  2. data/_data/base/announcement_schema.yml +50 -0
  3. data/_data/base/artwork_schema.yml +46 -0
  4. data/_data/base/backtotop_schema.yml +53 -0
  5. data/_data/base/bits.yml +96 -0
  6. data/_data/base/bits_schema.yml +183 -0
  7. data/_data/base/breadcrumb_schema.yml +14 -0
  8. data/_data/base/breakingnews_schema.yml +59 -0
  9. data/_data/base/color.yml +1042 -0
  10. data/_data/base/color_schema.yml +1036 -0
  11. data/_data/base/content.yml +2 -0
  12. data/_data/base/content_schema.yml +26 -0
  13. data/_data/base/converter_link_schema.yml +48 -0
  14. data/_data/base/copyright.yml +12 -0
  15. data/_data/base/copyright_schema.yml +34 -0
  16. data/_data/base/copyvalue_schema.yml +49 -0
  17. data/_data/base/datatable_schema.yml +57 -0
  18. data/_data/base/event_schema.yml +122 -0
  19. data/_data/base/fontawesome_schema.yml +49 -0
  20. data/_data/base/highlight_schema.yml +68 -0
  21. data/_data/base/languages.yml +186 -0
  22. data/_data/base/link_schema.yml +153 -0
  23. data/_data/base/locales_schema.yml +25 -0
  24. data/_data/base/navbar.yml +20 -0
  25. data/_data/base/navbar_schema.yml +121 -0
  26. data/_data/base/navindex_schema.yml +67 -0
  27. data/_data/base/ogp_schema.yml +186 -0
  28. data/_data/base/project.yml +37 -0
  29. data/_data/base/project_schema.yml +120 -0
  30. data/_data/base/shortcut_schema.yml +74 -0
  31. data/_data/base/social.yml +25 -0
  32. data/_data/base/social_schema.yml +53 -0
  33. data/_data/base/title_schema.yml +49 -0
  34. data/_data/base/toc_schema.yml +100 -0
  35. data/_data/download/cards.yml +309 -0
  36. data/_data/download/navbar.yml +11 -0
  37. data/_data/sponsors/carousel.yml +37 -0
  38. data/_data/sponsors/navbar.yml +6 -0
  39. data/_includes/base/announcement.html.liquid +51 -0
  40. data/_includes/base/artwork.html.liquid +49 -0
  41. data/_includes/base/backtotop.html.liquid +51 -0
  42. data/_includes/base/bits.html.liquid +135 -0
  43. data/_includes/base/breadcrumb.html.liquid +37 -0
  44. data/_includes/base/breakingnews.html.liquid +74 -0
  45. data/_includes/base/card.html.liquid +96 -0
  46. data/_includes/base/copyright.html.liquid +56 -0
  47. data/_includes/base/copyvalue.html.liquid +59 -0
  48. data/_includes/base/datatable.html.liquid +64 -0
  49. data/_includes/base/event.html.liquid +89 -0
  50. data/_includes/base/fontawesome.html.liquid +58 -0
  51. data/_includes/base/head.html.liquid +101 -0
  52. data/_includes/base/highlight.html.liquid +65 -0
  53. data/_includes/base/image.html.liquid +42 -0
  54. data/_includes/base/link.html.liquid +139 -0
  55. data/_includes/base/locales.html.liquid +41 -0
  56. data/_includes/base/navbar.html.liquid +106 -0
  57. data/_includes/base/navindex.html.liquid +162 -0
  58. data/_includes/base/ogp.html.liquid +118 -0
  59. data/_includes/base/project.html.liquid +90 -0
  60. data/_includes/base/script.html.liquid +59 -0
  61. data/_includes/base/shortcut.html.liquid +65 -0
  62. data/_includes/base/social.html.liquid +59 -0
  63. data/_includes/base/title.html.liquid +52 -0
  64. data/_includes/base/toc.html.liquid +91 -0
  65. data/_includes/base/toc_generator.html.liquid +189 -0
  66. data/_includes/download/cards-body-commands.html +7 -0
  67. data/_includes/download/cards-body-convert.html +10 -0
  68. data/_includes/download/cards-body-doc.html +9 -0
  69. data/_includes/download/cards-body-documentation.html +11 -0
  70. data/_includes/download/cards-body-eol.html +16 -0
  71. data/_includes/download/cards-body-mirrors.html +8 -0
  72. data/_includes/download/cards-body-screenshot.html +26 -0
  73. data/_includes/download/cards-body-screenshots.html +32 -0
  74. data/_includes/download/cards-body.html +8 -0
  75. data/_includes/download/cards-footer.html +3 -0
  76. data/_includes/download/cards-header-commands.html +8 -0
  77. data/_includes/download/cards-header-convert.html +8 -0
  78. data/_includes/download/cards-header-doc.html +8 -0
  79. data/_includes/download/cards-header-documentation.html +8 -0
  80. data/_includes/download/cards-header-eol.html +8 -0
  81. data/_includes/download/cards-header-mirrors.html +13 -0
  82. data/_includes/download/cards-header-screenshot.html +8 -0
  83. data/_includes/download/cards-header-screenshots.html +8 -0
  84. data/_includes/download/cards-header.html +13 -0
  85. data/_includes/download/cards.html +120 -0
  86. data/_includes/sponsors/cards.html +11 -0
  87. data/_includes/sponsors/carousel.html +24 -0
  88. data/_layouts/base/default.html +117 -0
  89. data/_layouts/download/cards.html +7 -0
  90. data/_layouts/download/default.html +7 -0
  91. data/_layouts/people/default.html +68 -0
  92. data/_sass/base/_customization.scss +251 -0
  93. data/_sass/base/_light-dark.scss +10 -0
  94. data/_sass/base/_maps.scss +104 -0
  95. data/_sass/base/_variables.scss +232 -0
  96. data/_sass/bootstrap/_accordion.scss +153 -0
  97. data/_sass/bootstrap/_alert.scss +68 -0
  98. data/_sass/bootstrap/_badge.scss +38 -0
  99. data/_sass/bootstrap/_breadcrumb.scss +40 -0
  100. data/_sass/bootstrap/_button-group.scss +147 -0
  101. data/_sass/bootstrap/_buttons.scss +216 -0
  102. data/_sass/bootstrap/_card.scss +238 -0
  103. data/_sass/bootstrap/_carousel.scss +226 -0
  104. data/_sass/bootstrap/_close.scss +66 -0
  105. data/_sass/bootstrap/_containers.scss +41 -0
  106. data/_sass/bootstrap/_dropdown.scss +250 -0
  107. data/_sass/bootstrap/_forms.scss +9 -0
  108. data/_sass/bootstrap/_functions.scss +302 -0
  109. data/_sass/bootstrap/_grid.scss +39 -0
  110. data/_sass/bootstrap/_helpers.scss +12 -0
  111. data/_sass/bootstrap/_images.scss +42 -0
  112. data/_sass/bootstrap/_list-group.scss +199 -0
  113. data/_sass/bootstrap/_maps.scss +174 -0
  114. data/_sass/bootstrap/_mixins.scss +42 -0
  115. data/_sass/bootstrap/_modal.scss +240 -0
  116. data/_sass/bootstrap/_nav.scss +197 -0
  117. data/_sass/bootstrap/_navbar.scss +289 -0
  118. data/_sass/bootstrap/_offcanvas.scss +147 -0
  119. data/_sass/bootstrap/_pagination.scss +109 -0
  120. data/_sass/bootstrap/_placeholders.scss +51 -0
  121. data/_sass/bootstrap/_popover.scss +196 -0
  122. data/_sass/bootstrap/_progress.scss +68 -0
  123. data/_sass/bootstrap/_reboot.scss +617 -0
  124. data/_sass/bootstrap/_root.scss +187 -0
  125. data/_sass/bootstrap/_spinners.scss +86 -0
  126. data/_sass/bootstrap/_tables.scss +171 -0
  127. data/_sass/bootstrap/_toasts.scss +73 -0
  128. data/_sass/bootstrap/_tooltip.scss +119 -0
  129. data/_sass/bootstrap/_transitions.scss +27 -0
  130. data/_sass/bootstrap/_type.scss +106 -0
  131. data/_sass/bootstrap/_utilities.scss +806 -0
  132. data/_sass/bootstrap/_variables-dark.scss +102 -0
  133. data/_sass/bootstrap/_variables.scss +1753 -0
  134. data/_sass/bootstrap/bootstrap-grid.scss +62 -0
  135. data/_sass/bootstrap/bootstrap-reboot.scss +10 -0
  136. data/_sass/bootstrap/bootstrap-utilities.scss +19 -0
  137. data/_sass/bootstrap/bootstrap.scss +52 -0
  138. data/_sass/bootstrap/forms/_floating-labels.scss +97 -0
  139. data/_sass/bootstrap/forms/_form-check.scss +189 -0
  140. data/_sass/bootstrap/forms/_form-control.scss +214 -0
  141. data/_sass/bootstrap/forms/_form-range.scss +91 -0
  142. data/_sass/bootstrap/forms/_form-select.scss +80 -0
  143. data/_sass/bootstrap/forms/_form-text.scss +11 -0
  144. data/_sass/bootstrap/forms/_input-group.scss +132 -0
  145. data/_sass/bootstrap/forms/_labels.scss +36 -0
  146. data/_sass/bootstrap/forms/_validation.scss +12 -0
  147. data/_sass/bootstrap/helpers/_clearfix.scss +3 -0
  148. data/_sass/bootstrap/helpers/_color-bg.scss +7 -0
  149. data/_sass/bootstrap/helpers/_colored-links.scss +30 -0
  150. data/_sass/bootstrap/helpers/_focus-ring.scss +5 -0
  151. data/_sass/bootstrap/helpers/_icon-link.scss +25 -0
  152. data/_sass/bootstrap/helpers/_position.scss +36 -0
  153. data/_sass/bootstrap/helpers/_ratio.scss +26 -0
  154. data/_sass/bootstrap/helpers/_stacks.scss +15 -0
  155. data/_sass/bootstrap/helpers/_stretched-link.scss +15 -0
  156. data/_sass/bootstrap/helpers/_text-truncation.scss +7 -0
  157. data/_sass/bootstrap/helpers/_visually-hidden.scss +8 -0
  158. data/_sass/bootstrap/helpers/_vr.scss +8 -0
  159. data/_sass/bootstrap/mixins/_alert.scss +18 -0
  160. data/_sass/bootstrap/mixins/_backdrop.scss +14 -0
  161. data/_sass/bootstrap/mixins/_banner.scss +7 -0
  162. data/_sass/bootstrap/mixins/_border-radius.scss +78 -0
  163. data/_sass/bootstrap/mixins/_box-shadow.scss +24 -0
  164. data/_sass/bootstrap/mixins/_breakpoints.scss +127 -0
  165. data/_sass/bootstrap/mixins/_buttons.scss +70 -0
  166. data/_sass/bootstrap/mixins/_caret.scss +69 -0
  167. data/_sass/bootstrap/mixins/_clearfix.scss +9 -0
  168. data/_sass/bootstrap/mixins/_color-mode.scss +21 -0
  169. data/_sass/bootstrap/mixins/_color-scheme.scss +7 -0
  170. data/_sass/bootstrap/mixins/_container.scss +11 -0
  171. data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
  172. data/_sass/bootstrap/mixins/_forms.scss +163 -0
  173. data/_sass/bootstrap/mixins/_gradients.scss +47 -0
  174. data/_sass/bootstrap/mixins/_grid.scss +151 -0
  175. data/_sass/bootstrap/mixins/_image.scss +16 -0
  176. data/_sass/bootstrap/mixins/_list-group.scss +26 -0
  177. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  178. data/_sass/bootstrap/mixins/_pagination.scss +10 -0
  179. data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
  180. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  181. data/_sass/bootstrap/mixins/_table-variants.scss +24 -0
  182. data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
  183. data/_sass/bootstrap/mixins/_transition.scss +26 -0
  184. data/_sass/bootstrap/mixins/_utilities.scss +97 -0
  185. data/_sass/bootstrap/mixins/_visually-hidden.scss +38 -0
  186. data/_sass/bootstrap/utilities/_api.scss +47 -0
  187. data/_sass/bootstrap/vendor/_rfs.scss +348 -0
  188. data/assets/css/base/stylesheet.min.scss +35 -0
  189. data/assets/icons/android-chrome-192.png +0 -0
  190. data/assets/icons/android-chrome-512.png +0 -0
  191. data/assets/icons/apple-touch-icon.png +0 -0
  192. data/assets/icons/favicon-16.png +0 -0
  193. data/assets/icons/favicon-32.png +0 -0
  194. data/assets/icons/favicon.ico +0 -0
  195. data/assets/icons/favicon.svg +1 -0
  196. data/assets/img/anaconda-symbolic.svg +1 -0
  197. data/assets/img/anaconda.svg +1 -0
  198. data/assets/img/base/centos-colors.gpl +55 -0
  199. data/assets/img/base/page-layout-default.png +0 -0
  200. data/assets/img/base/page-layout-default.svg +1158 -0
  201. data/assets/img/base/page-with-alert.png +0 -0
  202. data/assets/img/base/page-with-alert.svg +359 -0
  203. data/assets/img/base/page-with-announcement.png +0 -0
  204. data/assets/img/base/page-with-announcement.svg +499 -0
  205. data/assets/img/base/page-with-artwork.png +0 -0
  206. data/assets/img/base/page-with-artwork.svg +368 -0
  207. data/assets/img/base/page-with-backtotop.png +0 -0
  208. data/assets/img/base/page-with-backtotop.svg +275 -0
  209. data/assets/img/base/page-with-bits.png +0 -0
  210. data/assets/img/base/page-with-bits.svg +311 -0
  211. data/assets/img/base/page-with-breadcrumb.png +0 -0
  212. data/assets/img/base/page-with-breadcrumb.svg +676 -0
  213. data/assets/img/base/page-with-breakingnews.png +0 -0
  214. data/assets/img/base/page-with-breakingnews.svg +903 -0
  215. data/assets/img/base/page-with-color.png +0 -0
  216. data/assets/img/base/page-with-color.svg +57 -0
  217. data/assets/img/base/page-with-copyright.png +0 -0
  218. data/assets/img/base/page-with-copyright.svg +233 -0
  219. data/assets/img/base/page-with-copyvalue.png +0 -0
  220. data/assets/img/base/page-with-copyvalue.svg +57 -0
  221. data/assets/img/base/page-with-datatable.png +0 -0
  222. data/assets/img/base/page-with-datatable.svg +857 -0
  223. data/assets/img/base/page-with-event.png +0 -0
  224. data/assets/img/base/page-with-event.svg +522 -0
  225. data/assets/img/base/page-with-fontawesome.png +0 -0
  226. data/assets/img/base/page-with-fontawesome.svg +147 -0
  227. data/assets/img/base/page-with-heading.png +0 -0
  228. data/assets/img/base/page-with-heading.svg +57 -0
  229. data/assets/img/base/page-with-highlight.png +0 -0
  230. data/assets/img/base/page-with-highlight.svg +86 -0
  231. data/assets/img/base/page-with-link.png +0 -0
  232. data/assets/img/base/page-with-link.svg +395 -0
  233. data/assets/img/base/page-with-locales.png +0 -0
  234. data/assets/img/base/page-with-locales.svg +724 -0
  235. data/assets/img/base/page-with-navbar.png +0 -0
  236. data/assets/img/base/page-with-navbar.svg +438 -0
  237. data/assets/img/base/page-with-navindex.png +0 -0
  238. data/assets/img/base/page-with-navindex.svg +279 -0
  239. data/assets/img/base/page-with-ogp.png +0 -0
  240. data/assets/img/base/page-with-ogp.svg +368 -0
  241. data/assets/img/base/page-with-project.png +0 -0
  242. data/assets/img/base/page-with-project.svg +822 -0
  243. data/assets/img/base/page-with-shortcut.png +0 -0
  244. data/assets/img/base/page-with-shortcut.svg +233 -0
  245. data/assets/img/base/page-with-social.png +0 -0
  246. data/assets/img/base/page-with-social.svg +233 -0
  247. data/assets/img/base/page-with-title.png +0 -0
  248. data/assets/img/base/page-with-title.svg +584 -0
  249. data/assets/img/base/page-with-toc.png +0 -0
  250. data/assets/img/base/page-with-toc.svg +438 -0
  251. data/assets/img/base/screenshot-example-1200x600.png +0 -0
  252. data/assets/img/base/screenshot-example-1200x600.svg +114 -0
  253. data/assets/img/centos-dynamicmsg-logo.svg +1 -0
  254. data/assets/img/centos-dynamicmsg-type.svg +1 -0
  255. data/assets/img/centos-dynamicmsg-whitelogo.svg +1 -0
  256. data/assets/img/centos-dynamicmsg-whitetype.svg +1 -0
  257. data/assets/img/centos-gdm-whitelogo.svg +1 -0
  258. data/assets/img/centos-ipa-whiteheader.svg +1 -0
  259. data/assets/img/centos-logo-2bits.svg +1 -0
  260. data/assets/img/centos-logo.svg +1 -0
  261. data/assets/img/centos-message-logo.svg +1 -0
  262. data/assets/img/centos-motif.png +0 -0
  263. data/assets/img/centos-poweredby-logo.svg +1 -0
  264. data/assets/img/centos-social-share.png +0 -0
  265. data/assets/img/centos-symbol-2bits.svg +1 -0
  266. data/assets/img/centos-symbol.svg +1 -0
  267. data/assets/img/centos-type.svg +1 -0
  268. data/assets/img/centos-vertical-logo.svg +1 -0
  269. data/assets/img/centos-vertical-message-logo.svg +1 -0
  270. data/assets/img/centos-whitelogo.svg +1 -0
  271. data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
  272. data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
  273. data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
  274. data/assets/img/download/distribution-release-screenshot-1.png +0 -0
  275. data/assets/img/download/distribution-release-screenshot-2.png +0 -0
  276. data/assets/img/download/distribution-release-screenshot-3.png +0 -0
  277. data/assets/img/download/distribution-release-screenshot-n.png +0 -0
  278. data/assets/img/download/distribution-release-screenshot-n.svg +134 -0
  279. data/assets/img/download/download.svg +421 -0
  280. data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
  281. data/assets/img/people/page.svg +900 -0
  282. data/assets/img/people/page.webp +0 -0
  283. data/assets/img/people/username.webp +0 -0
  284. data/assets/img/sponsors/screenshot-sponsors-cards-layout.png +0 -0
  285. data/assets/img/sponsors/screenshot-sponsors-cards.png +0 -0
  286. data/assets/img/sponsors/screenshot-sponsors-carousel.png +0 -0
  287. data/assets/img/sponsors/screenshot-sponsors-default-layout.png +0 -0
  288. data/assets/img/sponsors/screenshot-sponsors-logo.png +0 -0
  289. data/assets/img/sponsors/sponsor-logo-1.png +0 -0
  290. data/assets/img/sponsors/sponsor-logo-2.png +0 -0
  291. data/assets/img/sponsors/sponsor-logo-3.png +0 -0
  292. data/assets/img/sponsors/sponsor-logo-4.png +0 -0
  293. data/assets/img/sponsors/sponsor-logo-5.png +0 -0
  294. data/assets/img/sponsors/sponsor-logo-6.png +0 -0
  295. data/assets/img/sponsors/sponsor-logo-7.png +0 -0
  296. data/assets/img/sponsors/sponsor-logo-8.png +0 -0
  297. data/assets/img/sponsors/sponsors-logo.svg +563 -0
  298. data/assets/js/base/backtotop.js +23 -0
  299. data/assets/js/base/copyvalue.js +251 -0
  300. data/assets/js/base/datatable.js +55 -0
  301. data/assets/js/base/highlight.js +6 -0
  302. data/assets/js/base/init-tooltips.js +5 -0
  303. data/assets/js/bootstrap.bundle.js +6312 -0
  304. data/assets/js/bootstrap.bundle.js.map +1 -0
  305. data/assets/js/bootstrap.bundle.min.js +7 -0
  306. data/assets/js/bootstrap.bundle.min.js.map +1 -0
  307. data/assets/js/bootstrap.esm.js +4447 -0
  308. data/assets/js/bootstrap.esm.js.map +1 -0
  309. data/assets/js/bootstrap.esm.min.js +7 -0
  310. data/assets/js/bootstrap.esm.min.js.map +1 -0
  311. data/assets/js/bootstrap.js +4494 -0
  312. data/assets/js/bootstrap.js.map +1 -0
  313. data/assets/js/bootstrap.min.js +7 -0
  314. data/assets/js/bootstrap.min.js.map +1 -0
  315. metadata +314 -1
@@ -0,0 +1,368 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="640"
6
+ height="361.86899"
7
+ viewBox="0 0 169.33334 95.744504"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
11
+ sodipodi:docname="page-with-artwork.svg"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ xmlns:svg="http://www.w3.org/2000/svg">
16
+ <sodipodi:namedview
17
+ id="namedview1"
18
+ pagecolor="#ffffff"
19
+ bordercolor="#000000"
20
+ borderopacity="0.25"
21
+ inkscape:showpageshadow="2"
22
+ inkscape:pageopacity="0.0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#d1d1d1"
25
+ inkscape:document-units="px"
26
+ inkscape:zoom="2.8284271"
27
+ inkscape:cx="256.67976"
28
+ inkscape:cy="167.05398"
29
+ inkscape:window-width="3440"
30
+ inkscape:window-height="1371"
31
+ inkscape:window-x="0"
32
+ inkscape:window-y="0"
33
+ inkscape:window-maximized="1"
34
+ inkscape:current-layer="layer1"
35
+ showgrid="false" />
36
+ <defs
37
+ id="defs1">
38
+ <clipPath
39
+ clipPathUnits="userSpaceOnUse"
40
+ id="clipPath367">
41
+ <path
42
+ id="path368"
43
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
44
+ d="m 2776.1967,152.2322 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 V 267.8928 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 155.32074 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
45
+ </clipPath>
46
+ <clipPath
47
+ clipPathUnits="userSpaceOnUse"
48
+ id="clipPath366">
49
+ <path
50
+ id="path367"
51
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
52
+ d="m 2776.1967,152.2322 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 V 267.8928 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 155.32074 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
53
+ </clipPath>
54
+ <clipPath
55
+ clipPathUnits="userSpaceOnUse"
56
+ id="clipPath365">
57
+ <path
58
+ id="path366"
59
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
60
+ d="m 2776.1967,152.2322 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 V 267.8928 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 155.32074 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
61
+ </clipPath>
62
+ <clipPath
63
+ clipPathUnits="userSpaceOnUse"
64
+ id="clipPath364">
65
+ <path
66
+ id="path365"
67
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
68
+ d="m 2776.1967,152.2322 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 V 267.8928 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 155.32074 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
69
+ </clipPath>
70
+ <clipPath
71
+ clipPathUnits="userSpaceOnUse"
72
+ id="clipPath363">
73
+ <path
74
+ id="path364"
75
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
76
+ d="m 2776.1967,152.2322 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 V 267.8928 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 155.32074 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
77
+ </clipPath>
78
+ <clipPath
79
+ clipPathUnits="userSpaceOnUse"
80
+ id="clipPath362">
81
+ <path
82
+ id="path363"
83
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
84
+ d="m 2776.1967,152.2322 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 V 267.8928 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 155.32074 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
85
+ </clipPath>
86
+ <clipPath
87
+ clipPathUnits="userSpaceOnUse"
88
+ id="clipPath361">
89
+ <path
90
+ id="path362"
91
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
92
+ d="m 2776.1967,152.2322 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 V 267.8928 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 155.32074 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
93
+ </clipPath>
94
+ <clipPath
95
+ clipPathUnits="userSpaceOnUse"
96
+ id="clipPath360">
97
+ <path
98
+ id="path361"
99
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
100
+ d="m 2776.1967,152.2322 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 V 267.8928 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 155.32074 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
101
+ </clipPath>
102
+ <clipPath
103
+ clipPathUnits="userSpaceOnUse"
104
+ id="clipPath352">
105
+ <path
106
+ id="path353"
107
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
108
+ d="m 2776.1967,152.2322 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 V 267.8928 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 V 155.32074 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
109
+ </clipPath>
110
+ <clipPath
111
+ clipPathUnits="userSpaceOnUse"
112
+ id="clipPath351">
113
+ <path
114
+ id="path352"
115
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:1.40674;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
116
+ d="m 712.48627,-301.09918 c -3.11726,0 -5.62691,2.50965 -5.62691,5.62696 v 205.093688 c 10.24337,-6.344434 21.6555,-11.731438 30.87459,-11.731438 22.42056,0 35.39383,31.864274 57.81472,31.864274 22.4207,0 35.39344,-31.864274 57.81414,-31.864274 22.4207,0 35.39364,31.864274 57.81415,31.864274 22.42089,0 35.39421,-31.864274 57.81491,-31.864274 22.4207,0 35.12273,32.274347 57.81413,31.864274 15.7123,-0.28397 37.3852,-16.841796 49.2303,-27.000044 v -198.22648 c 0,-3.11731 -2.5096,-5.62696 -5.6269,-5.62696 z" />
117
+ </clipPath>
118
+ <clipPath
119
+ clipPathUnits="userSpaceOnUse"
120
+ id="clipPath2">
121
+ <path
122
+ id="path3"
123
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926038;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
124
+ d="m 3066.5968,1368.271 c -5.0603,0 -11.3238,2.957 -16.9463,6.4394 v 73.3387 c 5.6225,-3.4823 11.886,-6.4388 16.9463,-6.4388 12.3062,0 19.427,17.4893 31.7335,17.4893 12.3063,0 19.4266,-17.4893 31.7329,-17.4893 12.3063,0 19.4268,17.4893 31.733,17.4893 12.3064,0 19.4276,-17.4893 31.7339,-17.4893 12.3063,0 19.278,17.7144 31.733,17.4893 8.6242,-0.1558 20.52,-9.2441 27.0215,-14.8197 v -73.3389 c -6.5015,5.5757 -18.3973,14.664 -27.0215,14.8199 -12.455,0.225 -19.4267,-17.4899 -31.733,-17.4899 -12.3063,0 -19.4275,17.4899 -31.7339,17.4899 -12.3062,0 -19.4267,-17.4899 -31.733,-17.4899 -12.3063,0 -19.4266,17.4899 -31.7329,17.4899 -12.3065,0 -19.4273,-17.4899 -31.7335,-17.4899 z"
125
+ sodipodi:nodetypes="sccssssssccssssss" />
126
+ </clipPath>
127
+ </defs>
128
+ <g
129
+ inkscape:label="Layer 1"
130
+ inkscape:groupmode="layer"
131
+ id="layer1"
132
+ transform="translate(-87.841888,-84.995934)">
133
+ <rect
134
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.2606;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
135
+ id="artwork"
136
+ width="169.33333"
137
+ height="95.744507"
138
+ x="87.841888"
139
+ y="84.995934"
140
+ inkscape:export-filename="page-with-artwork.png"
141
+ inkscape:export-xdpi="96"
142
+ inkscape:export-ydpi="96" />
143
+ <g
144
+ id="g785"
145
+ clip-path="url(#clipPath2)"
146
+ transform="matrix(0.82406032,0,0,0.82406032,-2424.0788,-1032.2394)">
147
+ <g
148
+ id="use49-5"
149
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:1.92095"
150
+ transform="matrix(0.07778693,0,0,0.07778693,3131.3089,1403.6265)">
151
+ <title
152
+ id="title1">Image</title>
153
+ <path
154
+ d="M 464,64 H 48 C 21.49,64 0,85.49 0,112 v 288 c 0,26.51 21.49,48 48,48 h 416 c 26.51,0 48,-21.49 48,-48 V 112 C 512,85.49 490.51,64 464,64 Z m -6,336 H 54 a 6,6 0 0 1 -6,-6 V 118 a 6,6 0 0 1 6,-6 h 404 a 6,6 0 0 1 6,6 v 276 a 6,6 0 0 1 -6,6 z M 128,152 c -22.091,0 -40,17.909 -40,40 0,22.091 17.909,40 40,40 22.091,0 40,-17.909 40,-40 0,-22.091 -17.909,-40 -40,-40 z M 96,352 h 320 v -80 l -87.515,-87.515 c -4.686,-4.686 -12.284,-4.686 -16.971,0 L 192,304 152.485,264.485 c -4.686,-4.686 -12.284,-4.686 -16.971,0 L 96,304 Z"
155
+ id="path1"
156
+ style="fill:#f6edf4;fill-opacity:1" />
157
+ </g>
158
+ <path
159
+ id="path124"
160
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.0443053;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
161
+ d="m 2971.9782,178.5001 v 58.85376 H 2776.8726 V 178.5001 Z"
162
+ sodipodi:nodetypes="ccccc"
163
+ clip-path="url(#clipPath367)"
164
+ transform="translate(276.54216,1140.0983)" />
165
+ <path
166
+ id="path125"
167
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.269106;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
168
+ d="m 2792.2274,227.38258 h 164.3958 c 0.8555,0 1.5443,0.68875 1.5443,1.54427 v 8.42701 h -167.4844 v -8.42701 c 0,-0.85552 0.6888,-1.54427 1.5443,-1.54427 z"
169
+ sodipodi:nodetypes="sssccss"
170
+ clip-path="url(#clipPath366)"
171
+ transform="translate(276.54216,1140.0983)" />
172
+ <circle
173
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.634058;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:2.53623, 2.53623;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
174
+ id="circle125"
175
+ cx="2874.4253"
176
+ cy="192.19469"
177
+ r="7.1282477"
178
+ clip-path="url(#clipPath365)"
179
+ transform="translate(276.54216,1140.0983)" />
180
+ <rect
181
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.0949105;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
182
+ id="rect125"
183
+ width="87.06076"
184
+ height="2.8393915"
185
+ x="2830.895"
186
+ y="203.94908"
187
+ ry="0.99683934"
188
+ rx="0.99683934"
189
+ clip-path="url(#clipPath364)"
190
+ transform="translate(276.54216,1140.0983)" />
191
+ <rect
192
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.176285;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
193
+ id="rect126"
194
+ width="14.333033"
195
+ height="4.6173844"
196
+ x="2851.7087"
197
+ y="230.43008"
198
+ rx="1.9936787"
199
+ ry="1.9936787"
200
+ clip-path="url(#clipPath363)"
201
+ transform="translate(276.54216,1140.0983)" />
202
+ <rect
203
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.176285;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
204
+ id="rect127"
205
+ width="14.333033"
206
+ height="4.6173844"
207
+ x="2867.2588"
208
+ y="230.43008"
209
+ rx="1.9936787"
210
+ ry="1.9936787"
211
+ clip-path="url(#clipPath362)"
212
+ transform="translate(276.54216,1140.0983)" />
213
+ <rect
214
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.176285;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
215
+ id="rect137"
216
+ width="14.333033"
217
+ height="4.6173844"
218
+ x="2882.8091"
219
+ y="230.43008"
220
+ rx="1.9936787"
221
+ ry="1.9936787"
222
+ clip-path="url(#clipPath361)"
223
+ transform="translate(276.54216,1140.0983)" />
224
+ <rect
225
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.0949105;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
226
+ id="rect138"
227
+ width="87.06076"
228
+ height="2.8393915"
229
+ x="2830.895"
230
+ y="210.58734"
231
+ ry="0.99683934"
232
+ rx="0.99683934"
233
+ clip-path="url(#clipPath360)"
234
+ transform="translate(276.54216,1140.0983)" />
235
+ <rect
236
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.219454;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
237
+ id="rect154"
238
+ width="17.842903"
239
+ height="5.7480888"
240
+ x="2865.5039"
241
+ y="218.31482"
242
+ rx="2.4818907"
243
+ ry="2.4818907"
244
+ clip-path="url(#clipPath352)"
245
+ transform="translate(276.54216,1140.0983)" />
246
+ <g
247
+ id="g161"
248
+ transform="matrix(0.54888119,0,0,0.54888119,2661.6685,1449.1221)"
249
+ clip-path="url(#clipPath351)">
250
+ <rect
251
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.100055;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
252
+ id="rect156"
253
+ width="33.323124"
254
+ height="7.9375"
255
+ x="739.05914"
256
+ y="-125.37652"
257
+ rx="1.3229167"
258
+ ry="1.3229167" />
259
+ <path
260
+ d="m 1030.6073,-124.05361 c 0,-0.72966 0.5932,-1.32291 1.323,-1.32291 h 3.9686 0.9922 0.3308 5.2917 c 0.7296,0 1.3228,0.59325 1.3228,1.32291 v 5.29167 c 0,0.72967 -0.5932,1.32292 -1.3228,1.32292 h -5.2917 -0.3308 -0.9922 -3.9686 c -0.7298,0 -1.323,-0.59325 -1.323,-1.32292 z m 6.6146,0 v 5.29167 h 5.2917 v -5.29167 z m -2.929,0.99012 c -0.066,-0.14883 -0.215,-0.24597 -0.3783,-0.24597 -0.1633,0 -0.3122,0.0971 -0.3783,0.24597 l -1.323,2.97656 c -0.093,0.20878 0,0.45269 0.2109,0.54571 0.2088,0.0931 0.4527,-0.002 0.5457,-0.21084 l 0.184,-0.41548 h 1.5214 l 0.184,0.41548 c 0.093,0.20876 0.3369,0.30179 0.5456,0.21084 0.2088,-0.0909 0.3018,-0.33693 0.2109,-0.54571 z m -0.3783,1.18442 0.3927,0.88471 h -0.7854 z m 5.9531,-1.43039 c 0.2274,0 0.4134,0.18603 0.4134,0.41341 v 0.0827 h 0.9095 0.3308 c 0.2273,0 0.4134,0.18604 0.4134,0.41341 0,0.22738 -0.1861,0.41341 -0.4134,0.41341 h -0.042 l -0.033,0.0931 c -0.184,0.50436 -0.463,0.96325 -0.8185,1.35185 0.019,0.0124 0.037,0.0227 0.056,0.0331 l 0.3907,0.23358 c 0.1963,0.11782 0.2583,0.37206 0.1426,0.56637 -0.1158,0.1943 -0.3721,0.25838 -0.5664,0.14262 l -0.3906,-0.23357 c -0.093,-0.0558 -0.182,-0.1137 -0.2709,-0.1757 -0.219,0.15503 -0.4526,0.28939 -0.7027,0.40101 l -0.074,0.0331 c -0.2087,0.0931 -0.4527,-0.002 -0.5456,-0.21084 -0.093,-0.20877 0,-0.45268 0.2108,-0.54571 l 0.074,-0.0331 c 0.1323,-0.06 0.2604,-0.12609 0.3825,-0.20258 l -0.2523,-0.25218 c -0.1612,-0.16122 -0.1612,-0.42374 0,-0.58497 0.1613,-0.16123 0.4237,-0.16123 0.585,0 l 0.3018,0.30179 0.011,0.0103 c 0.2563,-0.27079 0.4651,-0.58498 0.616,-0.93017 h -0.7277 -1.4882 c -0.2274,0 -0.4135,-0.18603 -0.4135,-0.41341 0,-0.22738 0.1861,-0.41342 0.4135,-0.41342 h 1.0749 v -0.0827 c 0,-0.22737 0.1859,-0.41341 0.4133,-0.41341 z"
261
+ id="path158"
262
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0206705" />
263
+ <rect
264
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.100055;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
265
+ id="rect158"
266
+ width="33.323124"
267
+ height="7.9375"
268
+ x="778.5531"
269
+ y="-125.37652"
270
+ rx="1.3229167"
271
+ ry="1.3229167" />
272
+ <rect
273
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.100055;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
274
+ id="rect160"
275
+ width="33.323124"
276
+ height="7.9375"
277
+ x="818.04712"
278
+ y="-125.37652"
279
+ rx="1.3229167"
280
+ ry="1.3229167" />
281
+ <path
282
+ style="fill:none;stroke:#ecdce8;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
283
+ d="m 774.56963,-123.04318 1.70092,1.63724 -1.57354,1.63723"
284
+ id="path160"
285
+ sodipodi:nodetypes="ccc" />
286
+ <path
287
+ style="fill:none;stroke:#ecdce8;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
288
+ d="m 814.06362,-123.04318 1.70092,1.63724 -1.57354,1.63723"
289
+ id="path161"
290
+ sodipodi:nodetypes="ccc" />
291
+ </g>
292
+ <g
293
+ id="g169"
294
+ transform="matrix(0.58365847,0,0,0.58365847,2592.5282,1067.2434)">
295
+ <rect
296
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.287708;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
297
+ id="rect169"
298
+ width="286.95578"
299
+ height="27.962162"
300
+ x="813.31335"
301
+ y="548.73132"
302
+ rx="4.583961"
303
+ ry="4.583961" />
304
+ <path
305
+ d="m 958.50508,557.03528 v 1.07115 c 0,0.23665 -0.19182,0.42846 -0.42846,0.42846 h -6.85538 c -0.23664,0 -0.42846,-0.19181 -0.42846,-0.42846 v -1.07115 c 0,-0.23665 0.19182,-0.42846 0.42846,-0.42846 h 6.85538 c 0.23664,0 0.42846,0.19181 0.42846,0.42846 z m -7.7123,3.42769 v 1.07115 c 0,0.23664 0.19182,0.42846 0.42846,0.42846 h 11.13999 c 0.23664,0 0.42846,-0.19182 0.42846,-0.42846 v -1.07115 c 0,-0.23665 -0.19182,-0.42846 -0.42846,-0.42846 h -11.13999 c -0.23664,0 -0.42846,0.19181 -0.42846,0.42846 z m 0.42846,8.35499 h 11.13999 c 0.23664,0 0.42846,-0.19182 0.42846,-0.42846 v -1.07116 c 0,-0.23664 -0.19182,-0.42846 -0.42846,-0.42846 h -11.13999 c -0.23664,0 -0.42846,0.19182 -0.42846,0.42846 v 1.07116 c 0,0.23664 0.19182,0.42846 0.42846,0.42846 z m 6.85538,-5.35577 h -6.85538 c -0.23664,0 -0.42846,0.19182 -0.42846,0.42847 v 1.07115 c 0,0.23664 0.19182,0.42846 0.42846,0.42846 h 6.85538 c 0.23664,0 0.42846,-0.19182 0.42846,-0.42846 v -1.07115 c 0,-0.23665 -0.19182,-0.42847 -0.42846,-0.42847 z"
306
+ id="path169"
307
+ style="fill:#ecdce8;stroke-width:0.0267788" />
308
+ </g>
309
+ <g
310
+ id="g38-6"
311
+ transform="matrix(0.58365847,0,0,0.58365847,2592.5282,1053.73)">
312
+ <rect
313
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.248818;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
314
+ id="rect1166-2"
315
+ width="286.95578"
316
+ height="27.962162"
317
+ x="813.31335"
318
+ y="667.367"
319
+ rx="4.9763589"
320
+ ry="4.9763589" />
321
+ <g
322
+ id="g57-0-9"
323
+ transform="matrix(0.02677882,0,0,0.02677882,950.79278,674.49279)"
324
+ style="fill:#381a32;fill-opacity:1">
325
+ <title
326
+ id="title57-8-1">align-left</title>
327
+ <path
328
+ d="m 288,44 v 40 c 0,8.837 -7.163,16 -16,16 H 16 C 7.163,100 0,92.837 0,84 V 44 C 0,35.163 7.163,28 16,28 h 256 c 8.837,0 16,7.163 16,16 z M 0,172 v 40 c 0,8.837 7.163,16 16,16 h 416 c 8.837,0 16,-7.163 16,-16 v -40 c 0,-8.837 -7.163,-16 -16,-16 H 16 c -8.837,0 -16,7.163 -16,16 z m 16,312 h 416 c 8.837,0 16,-7.163 16,-16 v -40 c 0,-8.837 -7.163,-16 -16,-16 H 16 c -8.837,0 -16,7.163 -16,16 v 40 c 0,8.837 7.163,16 16,16 z M 272,284 H 16 c -8.837,0 -16,7.163 -16,16 v 40 c 0,8.837 7.163,16 16,16 h 256 c 8.837,0 16,-7.163 16,-16 v -40 c 0,-8.837 -7.163,-16 -16,-16 z"
329
+ id="path57-1-2"
330
+ style="fill:#ecdce8;fill-opacity:1" />
331
+ </g>
332
+ <path
333
+ sodipodi:type="star"
334
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:3.12919;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
335
+ id="path37-7"
336
+ inkscape:flatsided="false"
337
+ sodipodi:sides="3"
338
+ sodipodi:cx="-499.8125"
339
+ sodipodi:cy="737.32031"
340
+ sodipodi:r1="36.465179"
341
+ sodipodi:r2="18.23259"
342
+ sodipodi:arg1="1.5707963"
343
+ sodipodi:arg2="2.6179939"
344
+ inkscape:rounded="0"
345
+ inkscape:randomized="0"
346
+ d="m -499.8125,773.78549 -15.78989,-27.34888 -15.78988,-27.34889 31.57977,0 31.57977,0 -15.78988,27.34889 z"
347
+ transform="matrix(0.10519844,0,0,0.10519844,1139.2521,602.82419)"
348
+ inkscape:transform-center-y="1.0197809"
349
+ inkscape:transform-center-x="-6.518711e-05" />
350
+ </g>
351
+ </g>
352
+ <path
353
+ id="path785"
354
+ style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.763112;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
355
+ d="m 102.98194,95.443165 c -4.169992,0 -9.331494,2.436746 -13.964773,5.306455 v 60.43554 c 4.633279,-2.86962 9.794781,-5.30595 13.964773,-5.30595 10.14105,0 16.00902,14.41223 26.15032,14.41223 10.14113,0 16.00869,-14.41223 26.14982,-14.41223 10.14114,0 16.00886,14.41223 26.14991,14.41223 10.14121,0 16.00951,-14.41223 26.15065,-14.41223 10.14113,0 15.88623,14.59773 26.1499,14.41223 7.10686,-0.12839 16.90972,-7.61769 22.26735,-12.21232 V 97.643488 c -5.35763,4.594632 -15.16049,12.083932 -22.26735,12.212402 -10.26367,0.18542 -16.00877,-14.412725 -26.1499,-14.412725 -10.14114,0 -16.00944,14.412725 -26.15065,14.412725 -10.14105,0 -16.00877,-14.412725 -26.14991,-14.412725 -10.14113,0 -16.00869,14.412725 -26.14982,14.412725 -10.1413,0 -16.00927,-14.412725 -26.15032,-14.412725 z"
356
+ sodipodi:nodetypes="sccssssssccssssss" />
357
+ <path
358
+ id="path11"
359
+ style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linejoin:bevel;stroke-dasharray:1.58749, 1.58749;stroke-dashoffset:0;paint-order:fill markers stroke;stop-color:#000000"
360
+ d="m 88.924,85.969 v 12.4651 c 4.6385,-2.8728 9.8057,-5.3118 13.9804,-5.3118 10.1522,0 16.0269,14.4283 26.1795,14.4283 10.1524,0 16.0265,-14.4283 26.179,-14.4283 10.1523,0 16.0268,14.4283 26.1791,14.4283 10.1526,0 16.0273,-14.4283 26.18,-14.4283 10.1524,0 15.9037,14.6139 26.179,14.4283 7.1149,-0.1291 16.9286,-7.6262 22.2922,-12.2261 V 85.969"
361
+ sodipodi:nodetypes="ccsssssscc" />
362
+ <path
363
+ id="path12"
364
+ style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linejoin:bevel;stroke-dasharray:1.58751, 1.58751;stroke-dashoffset:0;paint-order:fill markers stroke;stop-color:#000000"
365
+ d="m 256.0932,179.85012 v -18.8214 c -5.3636,4.5997 -15.1774,12.0973 -22.2922,12.226 -10.2751,0.1856 -16.0266,-14.4289 -26.179,-14.4289 -10.1527,0 -16.0274,14.4289 -26.18,14.4289 -10.1523,0 -16.0268,-14.4289 -26.1791,-14.4289 -10.1525,0 -16.0266,14.4289 -26.179,14.4289 -10.1527,0 -16.0273,-14.4289 -26.1795,-14.4289 -4.1747,0 -9.3419,2.4395 -13.9804,5.3123 v 15.712"
366
+ sodipodi:nodetypes="ccsssssscc" />
367
+ </g>
368
+ </svg>