jekyll-theme-centos 0.0.0

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 (304) hide show
  1. checksums.yaml +7 -0
  2. data/_config.yml +196 -0
  3. data/_data/base/announcement_schema.yml +49 -0
  4. data/_data/base/artwork_schema.yml +46 -0
  5. data/_data/base/backtotop_schema.yml +59 -0
  6. data/_data/base/bits.yml +96 -0
  7. data/_data/base/bits_schema.yml +185 -0
  8. data/_data/base/breadcrumb_schema.yml +27 -0
  9. data/_data/base/breakingnews_schema.yml +67 -0
  10. data/_data/base/card_schema.yml +146 -0
  11. data/_data/base/color.yml +1042 -0
  12. data/_data/base/color_schema.yml +1036 -0
  13. data/_data/base/configuration_variables_schema.yml +42 -0
  14. data/_data/base/content.yml +2 -0
  15. data/_data/base/content_schema.yml +26 -0
  16. data/_data/base/copyright.yml +12 -0
  17. data/_data/base/copyright_schema.yml +74 -0
  18. data/_data/base/copyvalue_schema.yml +49 -0
  19. data/_data/base/datatable_schema.yml +57 -0
  20. data/_data/base/event_schema.yml +130 -0
  21. data/_data/base/fontawesome_schema.yml +62 -0
  22. data/_data/base/footer.yml +9 -0
  23. data/_data/base/footer_schema.yml +55 -0
  24. data/_data/base/head_schema.yml +19 -0
  25. data/_data/base/heading_anchor.yml +2 -0
  26. data/_data/base/heading_anchor_schema.yml +37 -0
  27. data/_data/base/highlight_schema.yml +98 -0
  28. data/_data/base/image_schema.yml +34 -0
  29. data/_data/base/languages.yml +186 -0
  30. data/_data/base/link_schema.yml +187 -0
  31. data/_data/base/locales_schema.yml +158 -0
  32. data/_data/base/navbar.yml +20 -0
  33. data/_data/base/navbar_schema.yml +129 -0
  34. data/_data/base/navindex_schema.yml +67 -0
  35. data/_data/base/ogp.yml +24 -0
  36. data/_data/base/ogp_schema.yml +192 -0
  37. data/_data/base/project.yml +37 -0
  38. data/_data/base/project_schema.yml +124 -0
  39. data/_data/base/script_schema.yml +41 -0
  40. data/_data/base/shortcut_schema.yml +74 -0
  41. data/_data/base/social.yml +26 -0
  42. data/_data/base/social_schema.yml +57 -0
  43. data/_data/base/sponsors.yml +41 -0
  44. data/_data/base/sponsors_schema.yml +73 -0
  45. data/_data/base/title_schema.yml +49 -0
  46. data/_data/base/toc_schema.yml +114 -0
  47. data/_data/download/cards.yml +309 -0
  48. data/_data/download/navbar.yml +11 -0
  49. data/_includes/base/announcement.html.liquid +65 -0
  50. data/_includes/base/artwork.html.liquid +63 -0
  51. data/_includes/base/backtotop.html.liquid +73 -0
  52. data/_includes/base/bits.html.liquid +152 -0
  53. data/_includes/base/breadcrumb.html.liquid +77 -0
  54. data/_includes/base/breakingnews.html.liquid +90 -0
  55. data/_includes/base/card.html.liquid +110 -0
  56. data/_includes/base/color-table.html.liquid +33 -0
  57. data/_includes/base/configuration_variables-nested.html.liquid +98 -0
  58. data/_includes/base/configuration_variables.html.liquid +98 -0
  59. data/_includes/base/content.html.liquid +7 -0
  60. data/_includes/base/copyright.html.liquid +70 -0
  61. data/_includes/base/copyvalue.html.liquid +82 -0
  62. data/_includes/base/datatable.html.liquid +83 -0
  63. data/_includes/base/event.html.liquid +105 -0
  64. data/_includes/base/fontawesome.html.liquid +91 -0
  65. data/_includes/base/footer.html.liquid +69 -0
  66. data/_includes/base/head.html.liquid +135 -0
  67. data/_includes/base/heading_anchor.html.liquid +67 -0
  68. data/_includes/base/highlight.html.liquid +84 -0
  69. data/_includes/base/image.html.liquid +42 -0
  70. data/_includes/base/link.html.liquid +129 -0
  71. data/_includes/base/locales.html.liquid +78 -0
  72. data/_includes/base/navbar.html.liquid +121 -0
  73. data/_includes/base/navindex.html.liquid +200 -0
  74. data/_includes/base/ogp.html.liquid +144 -0
  75. data/_includes/base/project.html.liquid +104 -0
  76. data/_includes/base/shortcut.html.liquid +77 -0
  77. data/_includes/base/social.html.liquid +76 -0
  78. data/_includes/base/sponsors-cards.html.liquid +69 -0
  79. data/_includes/base/sponsors-carousel.html.liquid +91 -0
  80. data/_includes/base/title.html.liquid +65 -0
  81. data/_includes/base/toc-generator.html.liquid +189 -0
  82. data/_includes/base/toc.html.liquid +95 -0
  83. data/_includes/download/cards-body-commands.html +7 -0
  84. data/_includes/download/cards-body-convert.html +10 -0
  85. data/_includes/download/cards-body-doc.html +9 -0
  86. data/_includes/download/cards-body-documentation.html +11 -0
  87. data/_includes/download/cards-body-eol.html +16 -0
  88. data/_includes/download/cards-body-mirrors.html +8 -0
  89. data/_includes/download/cards-body-screenshot.html +26 -0
  90. data/_includes/download/cards-body-screenshots.html +32 -0
  91. data/_includes/download/cards-body.html +8 -0
  92. data/_includes/download/cards-footer.html +3 -0
  93. data/_includes/download/cards-header-commands.html +8 -0
  94. data/_includes/download/cards-header-convert.html +8 -0
  95. data/_includes/download/cards-header-doc.html +8 -0
  96. data/_includes/download/cards-header-documentation.html +8 -0
  97. data/_includes/download/cards-header-eol.html +8 -0
  98. data/_includes/download/cards-header-mirrors.html +13 -0
  99. data/_includes/download/cards-header-screenshot.html +8 -0
  100. data/_includes/download/cards-header-screenshots.html +8 -0
  101. data/_includes/download/cards-header.html +13 -0
  102. data/_includes/download/cards.html +120 -0
  103. data/_layouts/base/default.html +68 -0
  104. data/_layouts/download/cards.html +7 -0
  105. data/_layouts/download/default.html +7 -0
  106. data/_layouts/people/default.html +68 -0
  107. data/_sass/base/_customization.scss +331 -0
  108. data/_sass/base/_light-dark.scss +10 -0
  109. data/_sass/base/_maps.scss +104 -0
  110. data/_sass/base/_variables.scss +232 -0
  111. data/_sass/bootstrap/_accordion.scss +153 -0
  112. data/_sass/bootstrap/_alert.scss +68 -0
  113. data/_sass/bootstrap/_badge.scss +38 -0
  114. data/_sass/bootstrap/_breadcrumb.scss +40 -0
  115. data/_sass/bootstrap/_button-group.scss +147 -0
  116. data/_sass/bootstrap/_buttons.scss +216 -0
  117. data/_sass/bootstrap/_card.scss +238 -0
  118. data/_sass/bootstrap/_carousel.scss +226 -0
  119. data/_sass/bootstrap/_close.scss +66 -0
  120. data/_sass/bootstrap/_containers.scss +41 -0
  121. data/_sass/bootstrap/_dropdown.scss +250 -0
  122. data/_sass/bootstrap/_forms.scss +9 -0
  123. data/_sass/bootstrap/_functions.scss +302 -0
  124. data/_sass/bootstrap/_grid.scss +39 -0
  125. data/_sass/bootstrap/_helpers.scss +12 -0
  126. data/_sass/bootstrap/_images.scss +42 -0
  127. data/_sass/bootstrap/_list-group.scss +199 -0
  128. data/_sass/bootstrap/_maps.scss +174 -0
  129. data/_sass/bootstrap/_mixins.scss +42 -0
  130. data/_sass/bootstrap/_modal.scss +240 -0
  131. data/_sass/bootstrap/_nav.scss +197 -0
  132. data/_sass/bootstrap/_navbar.scss +289 -0
  133. data/_sass/bootstrap/_offcanvas.scss +147 -0
  134. data/_sass/bootstrap/_pagination.scss +109 -0
  135. data/_sass/bootstrap/_placeholders.scss +51 -0
  136. data/_sass/bootstrap/_popover.scss +196 -0
  137. data/_sass/bootstrap/_progress.scss +68 -0
  138. data/_sass/bootstrap/_reboot.scss +617 -0
  139. data/_sass/bootstrap/_root.scss +187 -0
  140. data/_sass/bootstrap/_spinners.scss +86 -0
  141. data/_sass/bootstrap/_tables.scss +171 -0
  142. data/_sass/bootstrap/_toasts.scss +73 -0
  143. data/_sass/bootstrap/_tooltip.scss +119 -0
  144. data/_sass/bootstrap/_transitions.scss +27 -0
  145. data/_sass/bootstrap/_type.scss +106 -0
  146. data/_sass/bootstrap/_utilities.scss +806 -0
  147. data/_sass/bootstrap/_variables-dark.scss +102 -0
  148. data/_sass/bootstrap/_variables.scss +1753 -0
  149. data/_sass/bootstrap/bootstrap-grid.scss +62 -0
  150. data/_sass/bootstrap/bootstrap-reboot.scss +10 -0
  151. data/_sass/bootstrap/bootstrap-utilities.scss +19 -0
  152. data/_sass/bootstrap/bootstrap.scss +52 -0
  153. data/_sass/bootstrap/forms/_floating-labels.scss +97 -0
  154. data/_sass/bootstrap/forms/_form-check.scss +189 -0
  155. data/_sass/bootstrap/forms/_form-control.scss +214 -0
  156. data/_sass/bootstrap/forms/_form-range.scss +91 -0
  157. data/_sass/bootstrap/forms/_form-select.scss +80 -0
  158. data/_sass/bootstrap/forms/_form-text.scss +11 -0
  159. data/_sass/bootstrap/forms/_input-group.scss +132 -0
  160. data/_sass/bootstrap/forms/_labels.scss +36 -0
  161. data/_sass/bootstrap/forms/_validation.scss +12 -0
  162. data/_sass/bootstrap/helpers/_clearfix.scss +3 -0
  163. data/_sass/bootstrap/helpers/_color-bg.scss +7 -0
  164. data/_sass/bootstrap/helpers/_colored-links.scss +30 -0
  165. data/_sass/bootstrap/helpers/_focus-ring.scss +5 -0
  166. data/_sass/bootstrap/helpers/_icon-link.scss +25 -0
  167. data/_sass/bootstrap/helpers/_position.scss +36 -0
  168. data/_sass/bootstrap/helpers/_ratio.scss +26 -0
  169. data/_sass/bootstrap/helpers/_stacks.scss +15 -0
  170. data/_sass/bootstrap/helpers/_stretched-link.scss +15 -0
  171. data/_sass/bootstrap/helpers/_text-truncation.scss +7 -0
  172. data/_sass/bootstrap/helpers/_visually-hidden.scss +8 -0
  173. data/_sass/bootstrap/helpers/_vr.scss +8 -0
  174. data/_sass/bootstrap/mixins/_alert.scss +18 -0
  175. data/_sass/bootstrap/mixins/_backdrop.scss +14 -0
  176. data/_sass/bootstrap/mixins/_banner.scss +7 -0
  177. data/_sass/bootstrap/mixins/_border-radius.scss +78 -0
  178. data/_sass/bootstrap/mixins/_box-shadow.scss +24 -0
  179. data/_sass/bootstrap/mixins/_breakpoints.scss +127 -0
  180. data/_sass/bootstrap/mixins/_buttons.scss +70 -0
  181. data/_sass/bootstrap/mixins/_caret.scss +69 -0
  182. data/_sass/bootstrap/mixins/_clearfix.scss +9 -0
  183. data/_sass/bootstrap/mixins/_color-mode.scss +21 -0
  184. data/_sass/bootstrap/mixins/_color-scheme.scss +7 -0
  185. data/_sass/bootstrap/mixins/_container.scss +11 -0
  186. data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
  187. data/_sass/bootstrap/mixins/_forms.scss +163 -0
  188. data/_sass/bootstrap/mixins/_gradients.scss +47 -0
  189. data/_sass/bootstrap/mixins/_grid.scss +151 -0
  190. data/_sass/bootstrap/mixins/_image.scss +16 -0
  191. data/_sass/bootstrap/mixins/_list-group.scss +26 -0
  192. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  193. data/_sass/bootstrap/mixins/_pagination.scss +10 -0
  194. data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
  195. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  196. data/_sass/bootstrap/mixins/_table-variants.scss +24 -0
  197. data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
  198. data/_sass/bootstrap/mixins/_transition.scss +26 -0
  199. data/_sass/bootstrap/mixins/_utilities.scss +97 -0
  200. data/_sass/bootstrap/mixins/_visually-hidden.scss +38 -0
  201. data/_sass/bootstrap/utilities/_api.scss +47 -0
  202. data/_sass/bootstrap/vendor/_rfs.scss +348 -0
  203. data/assets/css/base/stylesheet.min.scss +35 -0
  204. data/assets/icons/android-chrome-192.png +0 -0
  205. data/assets/icons/android-chrome-512.png +0 -0
  206. data/assets/icons/apple-touch-icon.png +0 -0
  207. data/assets/icons/favicon-16.png +0 -0
  208. data/assets/icons/favicon-32.png +0 -0
  209. data/assets/icons/favicon.ico +0 -0
  210. data/assets/icons/favicon.svg +1 -0
  211. data/assets/img/anaconda-symbolic.svg +1 -0
  212. data/assets/img/anaconda.svg +1 -0
  213. data/assets/img/base/centos-colors.gpl +55 -0
  214. data/assets/img/base/example-ogp-image.svg +297 -0
  215. data/assets/img/base/example-sponsors-design.svg +226 -0
  216. data/assets/img/base/example-sponsors-logo-1.svg +120 -0
  217. data/assets/img/base/example-sponsors-logo-2.svg +116 -0
  218. data/assets/img/base/example-sponsors-logo-3.svg +123 -0
  219. data/assets/img/base/example-sponsors-logo-4.svg +116 -0
  220. data/assets/img/base/example-sponsors-logo-5.svg +116 -0
  221. data/assets/img/base/example-sponsors-logo-6.svg +116 -0
  222. data/assets/img/base/example-sponsors-logo-7.svg +116 -0
  223. data/assets/img/base/example-sponsors-logo-8.svg +110 -0
  224. data/assets/img/base/page-layout-default.svg +1217 -0
  225. data/assets/img/base/page-with-alert.svg +383 -0
  226. data/assets/img/base/page-with-announcement.svg +956 -0
  227. data/assets/img/base/page-with-artwork.svg +1009 -0
  228. data/assets/img/base/page-with-backtotop.svg +1009 -0
  229. data/assets/img/base/page-with-bits.svg +891 -0
  230. data/assets/img/base/page-with-breadcrumb.svg +676 -0
  231. data/assets/img/base/page-with-breakingnews.svg +957 -0
  232. data/assets/img/base/page-with-color.svg +57 -0
  233. data/assets/img/base/page-with-copyright.svg +1018 -0
  234. data/assets/img/base/page-with-copyvalue.svg +57 -0
  235. data/assets/img/base/page-with-datatable.svg +857 -0
  236. data/assets/img/base/page-with-event.svg +518 -0
  237. data/assets/img/base/page-with-fontawesome.svg +147 -0
  238. data/assets/img/base/page-with-footer.svg +1018 -0
  239. data/assets/img/base/page-with-heading.svg +57 -0
  240. data/assets/img/base/page-with-highlight.svg +86 -0
  241. data/assets/img/base/page-with-image.svg +57 -0
  242. data/assets/img/base/page-with-link.svg +57 -0
  243. data/assets/img/base/page-with-locales.svg +1009 -0
  244. data/assets/img/base/page-with-navbar.svg +958 -0
  245. data/assets/img/base/page-with-navindex.svg +279 -0
  246. data/assets/img/base/page-with-ogp.svg +401 -0
  247. data/assets/img/base/page-with-project.svg +423 -0
  248. data/assets/img/base/page-with-shortcut.svg +937 -0
  249. data/assets/img/base/page-with-social.svg +937 -0
  250. data/assets/img/base/page-with-sponsors.svg +937 -0
  251. data/assets/img/base/page-with-title.svg +584 -0
  252. data/assets/img/base/page-with-toc.svg +399 -0
  253. data/assets/img/base/screenshot-1200x600.svg +114 -0
  254. data/assets/img/centos-dynamicmsg-logo.svg +1 -0
  255. data/assets/img/centos-dynamicmsg-type.svg +1 -0
  256. data/assets/img/centos-dynamicmsg-whitelogo.svg +1 -0
  257. data/assets/img/centos-dynamicmsg-whitetype.svg +1 -0
  258. data/assets/img/centos-gdm-whitelogo.svg +1 -0
  259. data/assets/img/centos-ipa-whiteheader.svg +1 -0
  260. data/assets/img/centos-logo-2bits.svg +1 -0
  261. data/assets/img/centos-logo.svg +1 -0
  262. data/assets/img/centos-message-logo.svg +1 -0
  263. data/assets/img/centos-motif.png +0 -0
  264. data/assets/img/centos-poweredby-logo.svg +1 -0
  265. data/assets/img/centos-social-share.png +0 -0
  266. data/assets/img/centos-symbol-2bits.svg +1 -0
  267. data/assets/img/centos-symbol.svg +1 -0
  268. data/assets/img/centos-type.svg +1 -0
  269. data/assets/img/centos-vertical-logo.svg +1 -0
  270. data/assets/img/centos-vertical-message-logo.svg +1 -0
  271. data/assets/img/centos-whitelogo.svg +1 -0
  272. data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
  273. data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
  274. data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
  275. data/assets/img/download/distribution-release-screenshot-1.png +0 -0
  276. data/assets/img/download/distribution-release-screenshot-2.png +0 -0
  277. data/assets/img/download/distribution-release-screenshot-3.png +0 -0
  278. data/assets/img/download/distribution-release-screenshot-n.png +0 -0
  279. data/assets/img/download/distribution-release-screenshot-n.svg +134 -0
  280. data/assets/img/download/download.svg +421 -0
  281. data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
  282. data/assets/img/people/page.svg +900 -0
  283. data/assets/img/people/page.webp +0 -0
  284. data/assets/img/people/username.webp +0 -0
  285. data/assets/js/base/backtotop.js +20 -0
  286. data/assets/js/base/copyvalue.js +145 -0
  287. data/assets/js/base/datatable.js +41 -0
  288. data/assets/js/base/heading-anchor.js +108 -0
  289. data/assets/js/base/highlight.js +12 -0
  290. data/assets/js/base/init-tooltips.js +12 -0
  291. data/assets/js/bootstrap.bundle.js +6312 -0
  292. data/assets/js/bootstrap.bundle.js.map +1 -0
  293. data/assets/js/bootstrap.bundle.min.js +7 -0
  294. data/assets/js/bootstrap.bundle.min.js.map +1 -0
  295. data/assets/js/bootstrap.esm.js +4447 -0
  296. data/assets/js/bootstrap.esm.js.map +1 -0
  297. data/assets/js/bootstrap.esm.min.js +7 -0
  298. data/assets/js/bootstrap.esm.min.js.map +1 -0
  299. data/assets/js/bootstrap.js +4494 -0
  300. data/assets/js/bootstrap.js.map +1 -0
  301. data/assets/js/bootstrap.min.js +7 -0
  302. data/assets/js/bootstrap.min.js.map +1 -0
  303. data/site.webmanifest +11 -0
  304. metadata +611 -0
@@ -0,0 +1,958 @@
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="640"
7
+ viewBox="0 0 169.33333 169.33333"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.4.4 (dcaf3e7d9e, 2026-05-05)"
11
+ sodipodi:docname="page-with-navbar.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"
27
+ inkscape:cx="217"
28
+ inkscape:cy="267.75"
29
+ inkscape:window-width="3440"
30
+ inkscape:window-height="1403"
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="clipPath20">
41
+ <path
42
+ id="path21"
43
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.591672;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
44
+ d="m 78.479355,232.76563 c -3.233237,0 -7.235171,1.88938 -10.827488,4.11432 v 46.38001 c 3.592317,-2.22494 7.594251,-4.114 10.827488,-4.114 7.862729,0 12.412544,11.17449 20.2754,11.17449 7.862855,0 12.412295,-11.17449 20.275145,-11.17449 7.86286,0 12.41235,11.17449 20.27502,11.17449 7.86305,0 12.41286,-11.17449 20.27591,-11.17449 7.86286,0 12.31715,11.31831 20.27515,11.17449 5.51019,-0.0996 13.1107,-5.90633 17.26476,-9.46881 v -46.38 c -4.15406,3.56247 -11.75457,9.36919 -17.26476,9.4688 -7.95787,0.14382 -12.41229,-11.17481 -20.27515,-11.17481 -7.86305,0 -12.41286,11.17481 -20.27591,11.17481 -7.86267,0 -12.41216,-11.17481 -20.27502,-11.17481 -7.86285,0 -12.41229,11.17481 -20.275145,11.17481 -7.863047,0 -12.412671,-11.17481 -20.2754,-11.17481 z"
45
+ sodipodi:nodetypes="sccssssssccssssss" />
46
+ </clipPath>
47
+ <clipPath
48
+ clipPathUnits="userSpaceOnUse"
49
+ id="clipPath21">
50
+ <path
51
+ id="path22"
52
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.591672;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
53
+ d="m 78.479355,232.76563 c -3.233237,0 -7.235171,1.88938 -10.827488,4.11432 v 46.38001 c 3.592317,-2.22494 7.594251,-4.114 10.827488,-4.114 7.862729,0 12.412544,11.17449 20.2754,11.17449 7.862855,0 12.412295,-11.17449 20.275145,-11.17449 7.86286,0 12.41235,11.17449 20.27502,11.17449 7.86305,0 12.41286,-11.17449 20.27591,-11.17449 7.86286,0 12.31715,11.31831 20.27515,11.17449 5.51019,-0.0996 13.1107,-5.90633 17.26476,-9.46881 v -46.38 c -4.15406,3.56247 -11.75457,9.36919 -17.26476,9.4688 -7.95787,0.14382 -12.41229,-11.17481 -20.27515,-11.17481 -7.86305,0 -12.41286,11.17481 -20.27591,11.17481 -7.86267,0 -12.41216,-11.17481 -20.27502,-11.17481 -7.86285,0 -12.41229,11.17481 -20.275145,11.17481 -7.863047,0 -12.412671,-11.17481 -20.2754,-11.17481 z"
54
+ sodipodi:nodetypes="sccssssssccssssss" />
55
+ </clipPath>
56
+ <filter
57
+ inkscape:collect="always"
58
+ style="color-interpolation-filters:sRGB"
59
+ id="filter71"
60
+ x="-0.030834842"
61
+ y="-0.012744665"
62
+ width="1.0616697"
63
+ height="1.0254893">
64
+ <feGaussianBlur
65
+ inkscape:collect="always"
66
+ stdDeviation="4.1775707"
67
+ id="feGaussianBlur71" />
68
+ </filter>
69
+ <marker
70
+ style="overflow:visible"
71
+ id="marker176"
72
+ refX="0"
73
+ refY="0"
74
+ orient="auto-start-reverse"
75
+ inkscape:stockid="Triangle arrow"
76
+ markerWidth="1"
77
+ markerHeight="1"
78
+ viewBox="0 0 1 1"
79
+ inkscape:isstock="true"
80
+ inkscape:collect="always"
81
+ preserveAspectRatio="xMidYMid">
82
+ <path
83
+ transform="scale(0.5)"
84
+ style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
85
+ d="M 5.77,0 -2.88,5 V -5 Z"
86
+ id="path176" />
87
+ </marker>
88
+ <marker
89
+ style="overflow:visible"
90
+ id="marker175"
91
+ refX="0"
92
+ refY="0"
93
+ orient="auto-start-reverse"
94
+ inkscape:stockid="Triangle arrow"
95
+ markerWidth="1"
96
+ markerHeight="1"
97
+ viewBox="0 0 1 1"
98
+ inkscape:isstock="true"
99
+ inkscape:collect="always"
100
+ preserveAspectRatio="xMidYMid">
101
+ <path
102
+ transform="scale(0.5)"
103
+ style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
104
+ d="M 5.77,0 -2.88,5 V -5 Z"
105
+ id="path175" />
106
+ </marker>
107
+ <clipPath
108
+ clipPathUnits="userSpaceOnUse"
109
+ id="clipPath2">
110
+ <path
111
+ id="path3-5"
112
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.765519;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
113
+ d="m 69.416823,172.50827 c -1.414562,0 -2.553245,-1.13868 -2.553245,-2.55324 V 87.72307 c 4.647798,2.878559 9.825953,5.322979 14.009005,5.322979 10.173,0 16.059513,-14.457992 26.232767,-14.457992 10.17308,0 16.05926,14.457992 26.23243,14.457992 10.17308,0 16.05943,-14.457992 26.23243,-14.457992 10.17316,0 16.05968,14.457992 26.23276,14.457992 10.17317,0 15.93651,-14.644123 26.23243,-14.457992 7.1293,0.128815 16.96313,7.641735 22.3377,12.250881 v 79.116092 c 0,1.41456 -1.13868,2.55324 -2.55308,2.55324 z"
114
+ sodipodi:nodetypes="sscsssssscsss" />
115
+ </clipPath>
116
+ <clipPath
117
+ clipPathUnits="userSpaceOnUse"
118
+ id="clipPath1-2">
119
+ <path
120
+ id="path2-3"
121
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.69483;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
122
+ d="m 82.288168,56.438395 c 0,-1.283941 1.033533,-2.317477 2.317471,-2.317477 h 74.638591 c -2.61275,4.218617 -4.83145,8.918616 -4.83145,12.715401 0,9.233617 13.12292,14.576564 13.12292,23.81041 0,9.23369 -13.12292,14.576331 -13.12292,23.810101 0,9.23369 13.12292,14.57649 13.12292,23.81011 0,9.23376 -13.12292,14.57671 -13.12292,23.8104 0,9.23377 13.29187,14.46492 13.12292,23.81011 -0.11692,6.47097 -6.93609,15.39674 -11.11962,20.27501 H 84.605639 c -1.283938,0 -2.317471,-1.03353 -2.317471,-2.31732 z"
123
+ sodipodi:nodetypes="sscsssssscsss" />
124
+ </clipPath>
125
+ <clipPath
126
+ clipPathUnits="userSpaceOnUse"
127
+ id="clipPath1">
128
+ <path
129
+ id="path2"
130
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.91983;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
131
+ d="m 1142.266,-157.90825 v 367.93769 h 367.9377 v -367.93769 z"
132
+ sodipodi:nodetypes="ccccc" />
133
+ </clipPath>
134
+ </defs>
135
+ <g
136
+ inkscape:label="Layer 1"
137
+ inkscape:groupmode="layer"
138
+ id="layer1"
139
+ transform="translate(275.35122,-12.835077)">
140
+ <rect
141
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.317647;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
142
+ id="navbar"
143
+ width="169.33333"
144
+ height="169.33333"
145
+ x="106.01789"
146
+ y="12.835077"
147
+ inkscape:export-filename="page-with-breadcrumb.png"
148
+ inkscape:export-xdpi="96"
149
+ inkscape:export-ydpi="96"
150
+ transform="scale(-1,1)" />
151
+ <g
152
+ id="g446"
153
+ transform="matrix(0.91155097,0,0,0.91155097,-2198.2736,-307.05717)" />
154
+ <rect
155
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.107291;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
156
+ id="rect920"
157
+ width="107.01064"
158
+ height="10.427561"
159
+ x="78.880959"
160
+ y="221.22701"
161
+ clip-path="url(#clipPath21)" />
162
+ <path
163
+ d="m 133.02546,224.32365 v 0.39946 c 0,0.0882 -0.0716,0.15979 -0.1598,0.15979 h -2.55648 c -0.0882,0 -0.1598,-0.0716 -0.1598,-0.15979 v -0.39946 c 0,-0.0882 0.0716,-0.15973 0.1598,-0.15973 h 2.55648 c 0.0882,0 0.1598,0.0715 0.1598,0.15973 z m -2.87608,1.27824 v 0.39946 c 0,0.0882 0.0716,0.15979 0.1598,0.15979 h 4.15425 c 0.0883,0 0.1598,-0.0716 0.1598,-0.15979 v -0.39946 c 0,-0.0882 -0.0715,-0.15973 -0.1598,-0.15973 h -4.15425 c -0.0882,0 -0.1598,0.0715 -0.1598,0.15973 z m 0.1598,3.11574 h 4.15425 c 0.0883,0 0.1598,-0.0716 0.1598,-0.1598 v -0.39946 c 0,-0.0882 -0.0715,-0.15973 -0.1598,-0.15973 h -4.15425 c -0.0882,0 -0.1598,0.0715 -0.1598,0.15973 v 0.39946 c 0,0.0882 0.0716,0.1598 0.1598,0.1598 z m 2.55648,-1.99723 h -2.55648 c -0.0882,0 -0.1598,0.0715 -0.1598,0.15973 v 0.39946 c 0,0.0882 0.0716,0.1598 0.1598,0.1598 h 2.55648 c 0.0882,0 0.1598,-0.0716 0.1598,-0.1598 v -0.39946 c 0,-0.0882 -0.0716,-0.15973 -0.1598,-0.15973 z"
164
+ id="path920"
165
+ style="fill:#ecdce8;stroke-width:0.00998627"
166
+ clip-path="url(#clipPath20)" />
167
+ <g
168
+ id="g87"
169
+ transform="matrix(0.46022288,0,0,0.46022288,-801.04817,85.508067)"
170
+ clip-path="url(#clipPath1)">
171
+ <rect
172
+ style="fill:#ecdce8;fill-opacity:1;stroke:#a14f8c;stroke-width:1.32022;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;filter:url(#filter71);stop-color:#000000"
173
+ id="rect71"
174
+ width="346.56509"
175
+ height="838.49048"
176
+ x="1152.9523"
177
+ y="-147.22197"
178
+ inkscape:export-filename="screenshot-sponsors-default-layout.png"
179
+ inkscape:export-xdpi="96"
180
+ inkscape:export-ydpi="96" />
181
+ <rect
182
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.32022;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
183
+ id="rect4291"
184
+ width="346.56509"
185
+ height="838.49048"
186
+ x="1152.9523"
187
+ y="-147.22197"
188
+ inkscape:export-filename="screenshot-sponsors-default-layout.png"
189
+ inkscape:export-xdpi="96"
190
+ inkscape:export-ydpi="96" />
191
+ <rect
192
+ style="fill:#a14f8c;fill-opacity:1;stroke-width:0.497636;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
193
+ id="rect4433"
194
+ width="334.28003"
195
+ height="19.72998"
196
+ x="1159.0947"
197
+ y="-141.15588"
198
+ inkscape:export-filename="screenshot-sponsors-default-layout.png"
199
+ inkscape:export-xdpi="96"
200
+ inkscape:export-ydpi="96" />
201
+ <g
202
+ id="g1012"
203
+ transform="matrix(0.24685874,0,0,0.24685874,1062.9732,-110.40602)"
204
+ style="fill:#f6edf4;stroke-width:3.80952">
205
+ <g
206
+ aria-label="CentOS"
207
+ id="text57015"
208
+ style="font-weight:bold;font-size:29.9666px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro Bold';fill:#f6edf4;fill-opacity:1;stroke-width:2.85397"
209
+ transform="matrix(0.97560972,0,0,0.97560972,-295.86665,-427.58606)" />
210
+ <g
211
+ id="g28251-9"
212
+ transform="matrix(0.74451128,0.74451128,-0.74451128,0.74451128,6.01137,-157.12384)"
213
+ inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
214
+ inkscape:export-xdpi="10.11"
215
+ inkscape:export-ydpi="10.11"
216
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:3.80952">
217
+ <g
218
+ id="g2">
219
+ <path
220
+ d="m 865.94059,362.40602 c 3.65593,0 6.68255,-1.31853 8.66035,-3.74583 l -3.11653,-2.87679 c -1.40843,1.64816 -3.17646,2.48723 -5.27412,2.48723 -3.92563,0 -6.71252,-2.75693 -6.71252,-6.71252 0,-3.95559 2.78689,-6.71252 6.71252,-6.71252 2.09766,0 3.86569,0.83906 5.27412,2.45726 l 3.11653,-2.87679 c -1.9778,-2.39733 -5.00442,-3.71586 -8.63038,-3.71586 -6.53272,0 -11.38731,4.52495 -11.38731,10.84791 0,6.32295 4.85459,10.84791 11.35734,10.84791 z"
221
+ id="path2097"
222
+ style="font-weight:bold;font-size:29.9666px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro Bold';fill:#ffffff;fill-opacity:1;stroke-width:2.85397"
223
+ transform="matrix(0.65520144,-0.65520144,0.65520144,0.65520144,-384.37311,21.098276)" />
224
+ <path
225
+ d="m 892.76066,354.04533 c 0,-5.18422 -3.65592,-8.36068 -8.39065,-8.36068 -4.91452,0 -8.60041,3.47613 -8.60041,8.30075 0,4.79466 3.62596,8.30075 9.19974,8.30075 2.90676,0 5.15426,-0.899 6.65259,-2.60709 l -2.48723,-2.697 c -1.10876,1.04883 -2.33739,1.55826 -4.04549,1.55826 -2.45726,0 -4.16536,-1.22863 -4.61486,-3.23639 h 12.19641 c 0.03,-0.38956 0.0899,-0.899 0.0899,-1.2586 z m -8.36068,-4.82462 c 2.09766,0 3.62596,1.31853 3.95559,3.35626 h -7.94115 c 0.32963,-2.06769 1.85793,-3.35626 3.98556,-3.35626 z"
226
+ id="path2099"
227
+ style="font-weight:bold;font-size:29.9666px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro Bold';fill:#ffffff;fill-opacity:1;stroke-width:2.85397"
228
+ transform="matrix(0.65520144,-0.65520144,0.65520144,0.65520144,-384.37311,21.098276)" />
229
+ <path
230
+ d="m 905.67622,345.68465 c -2.18756,0 -4.07545,0.74917 -5.33405,2.12763 v -1.88789 h -4.46502 v 16.12203 h 4.67479 v -7.97112 c 0,-2.96669 1.61819,-4.34516 3.86569,-4.34516 2.06769,0 3.26636,1.19867 3.26636,3.80576 v 8.51052 h 4.67479 v -9.22972 c 0,-4.91452 -2.8768,-7.13205 -6.68256,-7.13205 z"
231
+ id="path2101"
232
+ style="font-weight:bold;font-size:29.9666px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro Bold';fill:#ffffff;fill-opacity:1;stroke-width:2.85397"
233
+ transform="matrix(0.65520144,-0.65520144,0.65520144,0.65520144,-384.37311,21.098276)" />
234
+ <path
235
+ d="m 925.72388,357.97096 c -0.50943,0.38957 -1.19866,0.59933 -1.8879,0.59933 -1.25859,0 -2.00776,-0.74916 -2.00776,-2.12763 v -6.56268 h 4.01553 v -3.59599 h -4.01553 v -3.92563 h -4.67479 v 3.92563 h -2.48723 v 3.59599 h 2.48723 v 6.62262 c 0,3.83572 2.21753,5.78355 6.02329,5.78355 1.4384,0 2.84683,-0.32963 3.80576,-1.01886 z"
236
+ id="path2103"
237
+ style="font-weight:bold;font-size:29.9666px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro Bold';fill:#ffffff;fill-opacity:1;stroke-width:2.85397"
238
+ transform="matrix(0.65520144,-0.65520144,0.65520144,0.65520144,-384.37311,21.098276)" />
239
+ <path
240
+ d="m 940.10783,362.40602 c 6.59266,0 11.47721,-4.58489 11.47721,-10.84791 0,-6.26302 -4.88455,-10.84791 -11.47721,-10.84791 -6.62261,0 -11.4772,4.61485 -11.4772,10.84791 0,6.23305 4.85459,10.84791 11.4772,10.84791 z m 0,-4.13539 c -3.74582,0 -6.56268,-2.72697 -6.56268,-6.71252 0,-3.98556 2.81686,-6.71252 6.56268,-6.71252 3.74583,0 6.56269,2.72696 6.56269,6.71252 0,3.98555 -2.81686,6.71252 -6.56269,6.71252 z"
241
+ id="path2105"
242
+ style="font-weight:bold;font-size:29.9666px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro Bold';fill:#ffffff;fill-opacity:1;stroke-width:2.85397"
243
+ transform="matrix(0.65520144,-0.65520144,0.65520144,0.65520144,-384.37311,21.098276)" />
244
+ <path
245
+ d="m 962.13328,362.40602 c 5.99332,0 8.90008,-2.99666 8.90008,-6.50276 0,-7.70141 -12.19641,-5.03438 -12.19641,-8.90008 0,-1.31853 1.10876,-2.39732 3.98556,-2.39732 1.85793,0 3.86569,0.53939 5.81352,1.64816 l 1.49833,-3.68589 c -1.94783,-1.22863 -4.64482,-1.85793 -7.28188,-1.85793 -5.96336,0 -8.84015,2.96669 -8.84015,6.53272 0,7.79131 12.1964,5.09432 12.1964,9.01994 0,1.28857 -1.16869,2.2475 -4.04549,2.2475 -2.51719,0 -5.15425,-0.899 -6.92228,-2.18756 l -1.64816,3.65592 c 1.85792,1.4384 5.21418,2.4273 8.54048,2.4273 z"
246
+ id="path2107"
247
+ style="font-weight:bold;font-size:29.9666px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro Bold';fill:#ffffff;fill-opacity:1;stroke-width:2.85397"
248
+ transform="matrix(0.65520144,-0.65520144,0.65520144,0.65520144,-384.37311,21.098276)" />
249
+ <path
250
+ id="ellipse15079-1-3"
251
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:5.0397;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
252
+ d="m 372.92961,-303.88054 a 20.103001,20.103493 0 0 0 -4.90893,13.16408 20.103001,20.103493 0 0 0 20.10242,20.10507 20.103001,20.103493 0 0 0 20.10374,-20.10375 20.103001,20.103493 0 0 0 -20.10374,-20.10374 20.103001,20.103493 0 0 0 -15.19349,6.93834 z m 4.43562,2.40753 h 6.30374 l 4.45545,-4.45545 4.45545,4.45545 h 6.3011 v 6.3011 l 4.45677,4.45677 -4.45545,4.45546 -0.001,6.30241 h -6.3011 l -4.45545,4.45546 -4.45678,-4.45678 h -6.30109 v -6.30109 l -4.45545,-4.45546 4.45545,-4.45545 z m 2.27135,4.18311 3.22723,3.22723 1.91307,0.001 10e-4,-1.91307 -3.22855,-3.22855 z m -2.16294,5.22226 0.001,2.70368 h 4.56387 l 1.3525,-1.3525 -1.3525,-1.3525 z m 9.29696,-9.29695 v 4.56386 l 1.3525,1.3525 1.3525,-1.3525 v -4.56386 z m 0.0912,7.606 0.0172,1.79936 -1.79805,-0.0159 1.28243,1.25863 -1.28243,1.26128 1.79805,-0.0159 -0.0145,1.79937 1.25996,-1.28375 1.25995,1.28375 -0.0145,-1.79937 1.79672,0.0145 -1.28243,-1.25864 1.28243,-1.26127 -1.79804,0.0159 0.0159,-1.79804 -1.26127,1.28243 z m -7.22391,9.6169 1.91174,1.91175 3.22723,-3.22723 v -1.91175 h -1.91175 z m 11.83273,-11.83273 v 1.91175 h 1.91174 l 3.22723,-3.22723 -1.91175,-1.91175 z m -4.69872,11.34356 -0.001,4.56518 h 2.705 v -4.56386 l -1.3525,-1.3525 z m 6.08427,-6.08428 1.3525,1.35251 h 4.56386 v -2.70501 h -4.56386 z m -1.38688,3.34622 10e-4,1.91307 3.22722,3.22723 1.91307,-1.91307 -3.22723,-3.22723 z" />
253
+ </g>
254
+ </g>
255
+ </g>
256
+ <rect
257
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.248818;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
258
+ id="rect119"
259
+ width="16.372637"
260
+ height="10.339692"
261
+ x="1452.1016"
262
+ y="-136.46074"
263
+ rx="1.2440896"
264
+ ry="1.2440896" />
265
+ <g
266
+ id="g121"
267
+ transform="matrix(0.94041424,0,0,0.94041424,475.53132,5.0191882)"
268
+ style="stroke:#9a9996;stroke-opacity:1">
269
+ <path
270
+ style="fill:none;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
271
+ d="m 1040.8931,-147.50672 h 12.5172"
272
+ id="path119" />
273
+ <path
274
+ style="fill:none;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
275
+ d="m 1040.8931,-144.94685 h 12.5172"
276
+ id="path120" />
277
+ <path
278
+ style="fill:none;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
279
+ d="m 1040.8931,-142.38698 h 12.5172"
280
+ id="path121" />
281
+ </g>
282
+ <g
283
+ id="g1"
284
+ transform="matrix(1.4277799,0,0,1.4277799,99.63989,136.37013)"
285
+ style="fill:#d9b9d1">
286
+ <g
287
+ id="use1-3-3"
288
+ style="fill:#d9b9d1;fill-opacity:1;stroke:#f6f5f4;stroke-opacity:1"
289
+ transform="matrix(0.00800799,0,0,0.00800799,793.73956,-190.8614)">
290
+ <title
291
+ id="title7">align-left</title>
292
+ </g>
293
+ </g>
294
+ <g
295
+ id="g13"
296
+ transform="matrix(0.94041424,0,0,0.94041424,487.73501,33.070036)"
297
+ style="fill:#f6edf4;fill-opacity:1">
298
+ <rect
299
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.240121;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
300
+ id="rect3425"
301
+ width="305.13757"
302
+ height="20.980095"
303
+ x="739.05914"
304
+ y="-29.768446"
305
+ rx="1.4067383"
306
+ ry="1.4067383" />
307
+ <path
308
+ d="m 756.48292,-23.545422 c 0,-0.245766 -0.14862,-0.468658 -0.37722,-0.563919 -0.22863,-0.09527 -0.48963,-0.04189 -0.66489,0.131557 l -0.83065,0.832546 c -0.91446,0.914457 -2.1547,1.428866 -3.44829,1.428866 h -0.16575 -0.60964 -1.82893 c -0.67252,0 -1.21928,0.546766 -1.21928,1.219278 v 1.828931 c 0,0.672496 0.54676,1.219278 1.21928,1.219278 v 2.43857 c 0,0.337222 0.27243,0.60964 0.60965,0.60964 h 1.21928 c 0.33722,0 0.60964,-0.272418 0.60964,-0.60964 v -2.43857 h 0.16575 c 1.29359,0 2.53383,0.514379 3.44829,1.428852 l 0.83065,0.830643 c 0.17526,0.17527 0.43626,0.226727 0.66489,0.131556 0.22861,-0.09542 0.37722,-0.316265 0.37722,-0.563919 v -2.810083 c 0.35435,-0.167644 0.60965,-0.619165 0.60965,-1.150697 0,-0.531532 -0.2553,-0.983053 -0.60965,-1.150697 z m -1.21928,1.461241 v 2.501427 2.501458 c -1.12024,-1.019261 -2.58148,-1.586985 -4.10177,-1.586985 h -0.16575 v -1.828931 h 0.16575 c 1.52029,0 2.98153,-0.56774 4.10177,-1.586969 z"
309
+ id="path3462"
310
+ style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:0.390216" />
311
+ <g
312
+ id="g39"
313
+ transform="matrix(0.60142389,0,0,0.60142392,402.68323,53.580101)"
314
+ style="fill:#f6edf4;fill-opacity:1;stroke:#ffffff;stroke-width:1.13921;stroke-opacity:1">
315
+ <path
316
+ style="fill:#f6edf4;fill-opacity:1;stroke:#d9b9d1;stroke-width:1.50708;stroke-linecap:round;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
317
+ d="m 1044.5533,-124.15749 6.0283,6.02831"
318
+ id="path38" />
319
+ <path
320
+ style="fill:#f6edf4;fill-opacity:1;stroke:#d9b9d1;stroke-width:1.50708;stroke-linecap:round;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
321
+ d="m 1050.5816,-124.15749 -6.0283,6.02831"
322
+ id="path39" />
323
+ </g>
324
+ </g>
325
+ <g
326
+ id="g37"
327
+ transform="translate(369.61283,-134.06562)">
328
+ <rect
329
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.205124;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
330
+ id="rect1565-1-7"
331
+ width="286.95572"
332
+ height="19.72998"
333
+ x="813.31335"
334
+ y="627.60034" />
335
+ <g
336
+ id="use49"
337
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:1.92095"
338
+ transform="matrix(0.02204861,0,0,0.02204861,951.14677,631.82089)">
339
+ <title
340
+ id="title14">Image</title>
341
+ <path
342
+ 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"
343
+ id="path14" />
344
+ </g>
345
+ </g>
346
+ <g
347
+ id="g38"
348
+ transform="translate(369.44342,-144.89279)">
349
+ <rect
350
+ 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"
351
+ id="rect1166"
352
+ width="286.95578"
353
+ height="19.72998"
354
+ x="813.31335"
355
+ y="667.367" />
356
+ <g
357
+ id="g57-0"
358
+ transform="matrix(0.01856725,0,0,0.01856725,952.63218,675.33275)"
359
+ style="fill:#381a32;fill-opacity:1">
360
+ <title
361
+ id="title57-8">align-left</title>
362
+ <path
363
+ d="m 288,-109.71003 v 39.999996 c 0,8.837 -7.163,16 -16,16 H 16 c -8.837,0 -16,-7.163 -16,-16 v -39.999996 c 0,-8.837 7.163,-16 16,-16 h 256 c 8.837,0 16,7.163 16,16 z M 0,18.289966 v 40.000001 c 0,8.837 7.163,16 16,16 h 416 c 8.837,0 16,-7.163 16,-16 V 18.289966 C 448,9.4529652 440.837,2.2899652 432,2.2899652 H 16 c -8.837,0 -16,7.163 -16,16.0000008 z M 16,330.28997 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 256,-200 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"
364
+ id="path57-1"
365
+ style="fill:#ecdce8;fill-opacity:1" />
366
+ </g>
367
+ <path
368
+ sodipodi:type="star"
369
+ style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:3.12919;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
370
+ id="path37"
371
+ inkscape:flatsided="false"
372
+ sodipodi:sides="3"
373
+ sodipodi:cx="-499.8125"
374
+ sodipodi:cy="737.32031"
375
+ sodipodi:r1="36.465179"
376
+ sodipodi:r2="18.23259"
377
+ sodipodi:arg1="1.5707963"
378
+ sodipodi:arg2="2.6179939"
379
+ inkscape:rounded="0"
380
+ inkscape:randomized="0"
381
+ 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"
382
+ transform="matrix(0.10519844,0,0,0.10519844,1139.2521,598.70803)"
383
+ inkscape:transform-center-y="1.0197809"
384
+ inkscape:transform-center-x="-6.518711e-05" />
385
+ </g>
386
+ <g
387
+ id="g58"
388
+ transform="matrix(0.94041424,0,0,0.94041424,458.37216,613.03475)">
389
+ <rect
390
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.305937;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
391
+ id="rect57"
392
+ width="305.13763"
393
+ height="20.980095"
394
+ x="770.28247"
395
+ y="-65.525414" />
396
+ <g
397
+ id="g57"
398
+ transform="matrix(0.0197437,0,0,0.0197437,918.4287,-57.055009)"
399
+ style="fill:#ffffff">
400
+ <title
401
+ id="title57">align-left</title>
402
+ <path
403
+ d="m 288,-109.70695 v 40.000002 c 0,8.837 -7.163,16 -16,16 H 16 c -8.837,0 -16,-7.163 -16,-16 v -40.000002 c 0,-8.837 7.163,-16 16,-16 h 256 c 8.837,0 16,7.163 16,16 z M 0,18.293052 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 448,9.4560521 440.837,2.2930521 432,2.2930521 H 16 c -8.837,0 -16,7.163 -16,15.9999999 z M 16,330.29305 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 256,-200 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"
404
+ id="path57"
405
+ style="fill:#ecdce8" />
406
+ </g>
407
+ </g>
408
+ <g
409
+ id="use108"
410
+ transform="matrix(1.4488325,0,0,1.4488325,-1571.3439,-475.27474)">
411
+ <rect
412
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.496626;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:0.0397303, 0.0397303;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
413
+ id="rect5"
414
+ width="198.05997"
415
+ height="263.7258"
416
+ x="1900.9103"
417
+ y="351.51724"
418
+ inkscape:export-filename="page-with-bits-collapsed.webp"
419
+ inkscape:export-xdpi="96"
420
+ inkscape:export-ydpi="96" />
421
+ <g
422
+ id="g55"
423
+ transform="translate(0.24830881,-0.15490532)">
424
+ <g
425
+ id="g30"
426
+ transform="matrix(0.56967611,0,0,0.56967611,1211.4474,351.50659)">
427
+ <rect
428
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.377305;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
429
+ id="rect28"
430
+ width="30.677139"
431
+ height="13.229167"
432
+ x="1335.1501"
433
+ y="339.93384"
434
+ rx="4.6444521"
435
+ ry="4.6444521" />
436
+ <rect
437
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.377305;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
438
+ id="rect29"
439
+ width="30.677139"
440
+ height="13.229167"
441
+ x="1369.1049"
442
+ y="339.93384"
443
+ rx="4.6444521"
444
+ ry="4.6444521" />
445
+ <rect
446
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.377305;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
447
+ id="rect30"
448
+ width="30.677139"
449
+ height="13.229167"
450
+ x="1402.3872"
451
+ y="339.93384"
452
+ rx="4.6444521"
453
+ ry="4.6444521" />
454
+ </g>
455
+ <rect
456
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.199147;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
457
+ id="rect31"
458
+ width="11.119654"
459
+ height="7.5955625"
460
+ x="2069.249"
461
+ y="556.12061"
462
+ rx="2.6458335"
463
+ ry="2.6458335" />
464
+ <rect
465
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.389921;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
466
+ id="rect32"
467
+ width="52.044323"
468
+ height="41.353016"
469
+ x="1920.3297"
470
+ y="567.14166"
471
+ rx="2.6458335"
472
+ ry="2.6458335" />
473
+ <rect
474
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.845474;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
475
+ id="rect33"
476
+ width="52.044323"
477
+ height="41.353024"
478
+ x="1974.3271"
479
+ y="567.14166"
480
+ rx="2.6458335"
481
+ ry="2.6458335" />
482
+ <rect
483
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.845474;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
484
+ id="rect34"
485
+ width="52.044323"
486
+ height="41.353024"
487
+ x="2028.3246"
488
+ y="567.14166"
489
+ rx="2.6458335"
490
+ ry="2.6458335" />
491
+ <g
492
+ id="g49"
493
+ transform="matrix(0.56967611,0,0,0.56967611,893.13767,247.87097)">
494
+ <rect
495
+ style="opacity:1;fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:1.39601;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
496
+ id="rect35"
497
+ width="282.36627"
498
+ height="211.7747"
499
+ x="1801.6797"
500
+ y="304.01431"
501
+ inkscape:export-filename="screenshot-example-1600x1200.webp"
502
+ inkscape:export-xdpi="152.91"
503
+ inkscape:export-ydpi="152.91"
504
+ ry="4.6444521"
505
+ rx="4.6444521" />
506
+ <rect
507
+ style="fill:#a14f8c;fill-opacity:0;stroke:none;stroke-width:0.965889;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
508
+ id="rect37"
509
+ width="267.67557"
510
+ height="200.75668"
511
+ x="1809.025"
512
+ y="309.52332"
513
+ inkscape:export-filename="screenshot-example-1600x1200.webp"
514
+ inkscape:export-xdpi="96"
515
+ inkscape:export-ydpi="96" />
516
+ <g
517
+ id="g44"
518
+ style="stroke:#5c2e4f;stroke-width:2.64583;stroke-dasharray:none;stroke-opacity:1"
519
+ transform="matrix(-0.61034383,0,0,0.61034383,3649.9421,159.35745)" />
520
+ <g
521
+ id="g45"
522
+ style="stroke-width:2.64583;stroke-dasharray:none"
523
+ transform="matrix(0.61034383,0,0,0.61034383,235.78356,159.35745)">
524
+ <path
525
+ style="fill:none;stroke:#ecdce8;stroke-width:2.64583;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker176);marker-end:url(#marker175)"
526
+ d="M 3000.8804,258.70397 2592.9478,562.28974"
527
+ id="path45" />
528
+ </g>
529
+ <g
530
+ id="g60"
531
+ style="stroke-width:2.64583;stroke-dasharray:none"
532
+ transform="matrix(-0.61034383,0,0,0.61034383,3649.9421,159.35745)">
533
+ <path
534
+ style="fill:none;stroke:#ecdce8;stroke-width:2.64583;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker176);marker-end:url(#marker175)"
535
+ d="M 3000.8804,258.70397 2592.9478,562.28974"
536
+ id="path55" />
537
+ </g>
538
+ <rect
539
+ style="fill:#a14f8c;fill-opacity:0;stroke:none;stroke-width:0.485467;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
540
+ id="rect46"
541
+ width="267.67557"
542
+ height="50.714802"
543
+ x="1809.025"
544
+ y="384.54428" />
545
+ <g
546
+ id="g47"
547
+ transform="matrix(0.63230446,0,0,0.63230446,459.16835,41.417553)"
548
+ style="fill:#5c2e4f;fill-opacity:1">
549
+ <g
550
+ id="g46"
551
+ transform="translate(-168.48926,4.0104842)"
552
+ style="fill:#5c2e4f;fill-opacity:1" />
553
+ </g>
554
+ </g>
555
+ <circle
556
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.509469;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:2.03788, 2.03788;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
557
+ id="circle49"
558
+ cx="1999.9403"
559
+ cy="390.04993"
560
+ r="5.7276187" />
561
+ <rect
562
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.205286;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
563
+ id="rect49"
564
+ width="160.85735"
565
+ height="7.5363345"
566
+ x="1919.5116"
567
+ y="399.15521"
568
+ ry="2.6458335"
569
+ rx="2.6458335" />
570
+ <rect
571
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.251914;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
572
+ id="rect50"
573
+ width="160.85732"
574
+ height="7.5363407"
575
+ x="1919.5116"
576
+ y="410.06921"
577
+ ry="2.6458335"
578
+ rx="2.6458335" />
579
+ <rect
580
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.205286;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
581
+ id="rect51"
582
+ width="146.0211"
583
+ height="7.5363159"
584
+ x="1919.5116"
585
+ y="556.15027"
586
+ ry="2.6458335"
587
+ rx="2.6458335" />
588
+ <circle
589
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.509469;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:2.03788, 2.03788;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
590
+ id="circle51"
591
+ cx="1999.9403"
592
+ cy="375.21701"
593
+ r="5.7276187" />
594
+ <rect
595
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.205286;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
596
+ id="rect52"
597
+ width="160.85735"
598
+ height="7.5363345"
599
+ x="1919.5116"
600
+ y="358.57538"
601
+ ry="2.6458335"
602
+ rx="2.6458335" />
603
+ </g>
604
+ </g>
605
+ <rect
606
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.511739;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
607
+ id="rect36"
608
+ width="334.27991"
609
+ height="19.72998"
610
+ x="1159.0947"
611
+ y="-23.864132"
612
+ inkscape:export-filename="screenshot-sponsors-default-layout.png"
613
+ inkscape:export-xdpi="96"
614
+ inkscape:export-ydpi="96" />
615
+ <g
616
+ id="g41"
617
+ transform="matrix(0.94040116,0,0,0.94040116,490.21147,151.12851)">
618
+ <rect
619
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:15.8106;paint-order:fill markers stroke"
620
+ id="rect40"
621
+ width="13.576674"
622
+ height="9.7555847"
623
+ x="1026.684"
624
+ y="-180.47063"
625
+ ry="1.5810586"
626
+ rx="1.5810586" />
627
+ <g
628
+ id="use1-5"
629
+ style="fill:#f6edf4;fill-opacity:1;stroke:none"
630
+ transform="matrix(0.00956941,0,0,0.00956941,1031.3285,-178.0426)">
631
+ <title
632
+ id="title11">arrow-right</title>
633
+ <path
634
+ d="m 190.5,66.9 22.2,-22.2 c 9.4,-9.4 24.6,-9.4 33.9,0 L 441,239 c 9.4,9.4 9.4,24.6 0,33.9 L 246.6,467.3 c -9.4,9.4 -24.6,9.4 -33.9,0 l -22.2,-22.2 c -9.5,-9.5 -9.3,-25 0.4,-34.3 L 311.4,296 H 24 C 10.7,296 0,285.3 0,272 V 240 C 0,226.7 10.7,216 24,216 H 311.4 L 190.9,101.2 c -9.8,-9.3 -10,-24.8 -0.4,-34.3 z"
635
+ id="path12"
636
+ style="fill:#f6edf4;fill-opacity:1" />
637
+ </g>
638
+ </g>
639
+ <path
640
+ d="m 1192.595,-18.011957 c 0,-0.231122 -0.1402,-0.440727 -0.3547,-0.530307 -0.215,-0.08952 -0.4604,-0.03939 -0.6253,0.123739 l -0.7811,0.782948 c -0.8601,0.859964 -2.0264,1.343728 -3.2428,1.343728 h -0.156 -0.5734 -1.72 c -0.6325,0 -1.1466,0.514187 -1.1466,1.146629 v 1.719958 c 0,0.632427 0.5141,1.146614 1.1466,1.146614 v 2.2932737 c 0,0.3171347 0.2563,0.5733141 0.5734,0.5733141 h 1.1466 c 0.3171,0 0.5734,-0.2561794 0.5734,-0.5733141 v -2.2932737 h 0.156 c 1.2164,0 2.3827,0.483734 3.2428,1.343728 l 0.7811,0.781148 c 0.1649,0.1648294 0.4103,0.2132185 0.6253,0.123739 0.2149,-0.08968 0.3547,-0.297415 0.3547,-0.530306 v -2.642649 c 0.3332,-0.157661 0.5734,-0.58228 0.5734,-1.082134 0,-0.499867 -0.2402,-0.924488 -0.5734,-1.082135 z m -1.1466,1.374183 v 2.352384 2.352399 c -1.0534,-0.958528 -2.4276,-1.492419 -3.8574,-1.492419 h -0.1561 v -1.719959 h 0.1561 c 1.4298,0 2.804,-0.533907 3.8574,-1.492405 z"
641
+ id="path32"
642
+ style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:0.366966" />
643
+ <g
644
+ id="g101"
645
+ transform="translate(359.32283,2.5263128)">
646
+ <path
647
+ id="path31-3"
648
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0759096;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
649
+ d="m 1134.052,-123.95228 v 97.561836 H 799.77184 v -97.561836 z"
650
+ sodipodi:nodetypes="ccccc" />
651
+ <path
652
+ id="rect38"
653
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.461067;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
654
+ d="m 826.07972,-43.474524 h 281.66398 c 1.4658,0 2.6459,1.180041 2.6459,2.645833 v 14.438247 H 823.43388 v -14.438247 c 0,-1.465792 1.18004,-2.645833 2.64584,-2.645833 z"
655
+ sodipodi:nodetypes="sssccss" />
656
+ <circle
657
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:1.08635;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:4.34539, 4.34539;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
658
+ id="circle125-7-5"
659
+ cx="966.91193"
660
+ cy="-103.76298"
661
+ r="12.213036" />
662
+ <rect
663
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.162613;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
664
+ id="rect274-9"
665
+ width="149.16376"
666
+ height="4.8648129"
667
+ x="892.33008"
668
+ y="-83.623833"
669
+ ry="1.7079141"
670
+ rx="1.7079141" />
671
+ <rect
672
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.302035;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
673
+ id="rect125-0-5-1"
674
+ width="24.557205"
675
+ height="7.9111004"
676
+ x="927.99078"
677
+ y="-38.253174"
678
+ rx="3.4158282"
679
+ ry="3.4158282" />
680
+ <rect
681
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.302035;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
682
+ id="rect232-2"
683
+ width="24.557205"
684
+ height="7.9111004"
685
+ x="954.63312"
686
+ y="-38.253174"
687
+ rx="3.4158282"
688
+ ry="3.4158282" />
689
+ <rect
690
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.302035;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
691
+ id="rect233-7"
692
+ width="24.557205"
693
+ height="7.9111004"
694
+ x="981.27582"
695
+ y="-38.253174"
696
+ rx="3.4158282"
697
+ ry="3.4158282" />
698
+ <rect
699
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.162613;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
700
+ id="rect246-6-0"
701
+ width="149.16376"
702
+ height="4.8648129"
703
+ x="892.33008"
704
+ y="-72.250313"
705
+ ry="1.7079141"
706
+ rx="1.7079141" />
707
+ <rect
708
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.375997;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
709
+ id="rect125-0-6"
710
+ width="30.57077"
711
+ height="9.8483696"
712
+ x="951.62653"
713
+ y="-59.010605"
714
+ rx="4.252296"
715
+ ry="4.252296" />
716
+ </g>
717
+ <g
718
+ id="g91"
719
+ transform="translate(359.32283,27.635416)">
720
+ <rect
721
+ style="fill:#fcedd3;fill-opacity:1;stroke:none;stroke-width:0.510705;stroke-opacity:1"
722
+ id="rect88"
723
+ width="286.95578"
724
+ height="19.72998"
725
+ x="823.84314"
726
+ y="397.68347" />
727
+ <path
728
+ d="m 836.8729,402.96138 c -0.33831,0 -0.61162,0.27331 -0.61162,0.61161 v 0.6116 h -0.61161 c -0.67468,0 -1.22321,0.54855 -1.22321,1.22323 v 0.91742 h 8.56254 v -0.91742 c 0,-0.67468 -0.54853,-1.22323 -1.22321,-1.22323 h -0.61161 v -0.6116 c 0,-0.3383 -0.27331,-0.61161 -0.61162,-0.61161 -0.33829,0 -0.6116,0.27331 -0.6116,0.61161 v 0.6116 h -2.44645 v -0.6116 c 0,-0.3383 -0.27332,-0.61161 -0.61161,-0.61161 z m -2.44644,4.28127 v 3.66968 c 0,0.67467 0.54853,1.22321 1.22321,1.22321 h 6.11612 c 0.67468,0 1.22321,-0.54854 1.22321,-1.22321 v -3.66968 z"
729
+ id="path1-3"
730
+ style="fill:#f5ca7c;fill-opacity:1;stroke-width:0.0191128" />
731
+ <g
732
+ id="g41-7"
733
+ transform="matrix(0.94041424,0,0,0.94041424,123.99588,572.67846)">
734
+ <rect
735
+ style="fill:#f5ca7c;fill-opacity:1;stroke-width:15.8106;paint-order:fill markers stroke"
736
+ id="rect40-5"
737
+ width="13.576674"
738
+ height="9.7555847"
739
+ x="1026.684"
740
+ y="-180.47063"
741
+ ry="1.5810586"
742
+ rx="1.5810586" />
743
+ <g
744
+ id="use1-5-3"
745
+ style="fill:#a36e0c;fill-opacity:1;stroke:none"
746
+ transform="matrix(0.00956941,0,0,0.00956941,1031.3285,-178.0426)">
747
+ <title
748
+ id="title12">arrow-right</title>
749
+ <path
750
+ d="m 190.5,66.9 22.2,-22.2 c 9.4,-9.4 24.6,-9.4 33.9,0 L 441,239 c 9.4,9.4 9.4,24.6 0,33.9 L 246.6,467.3 c -9.4,9.4 -24.6,9.4 -33.9,0 l -22.2,-22.2 c -9.5,-9.5 -9.3,-25 0.4,-34.3 L 311.4,296 H 24 C 10.7,296 0,285.3 0,272 V 240 C 0,226.7 10.7,216 24,216 H 311.4 L 190.9,101.2 c -9.8,-9.3 -10,-24.8 -0.4,-34.3 z"
751
+ id="path13" />
752
+ </g>
753
+ </g>
754
+ </g>
755
+ <g
756
+ id="g3"
757
+ transform="matrix(0.95856018,0,0,0.95856018,389.15663,55.390171)"
758
+ style="fill:#c795ba;fill-opacity:1">
759
+ <text
760
+ xml:space="preserve"
761
+ style="font-size:18.629px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;text-align:start;writing-mode:lr-tb;direction:ltr;text-anchor:start;fill:#c795ba;fill-opacity:1;stroke:none;stroke-width:0.776208;stroke-linejoin:round"
762
+ x="827.53546"
763
+ y="447.32944"
764
+ id="text2"><tspan
765
+ sodipodi:role="line"
766
+ id="tspan2"
767
+ style="font-weight:bold;fill:#c795ba;fill-opacity:1;stroke:none;stroke-width:0.776208"
768
+ x="827.53546"
769
+ y="447.32944">Hello world!</tspan></text>
770
+ </g>
771
+ <g
772
+ id="g90"
773
+ transform="translate(359.32283,24.649804)">
774
+ <rect
775
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.0940932;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
776
+ id="rect1776"
777
+ width="31.33754"
778
+ height="7.4645381"
779
+ x="823.60339"
780
+ y="429.60858"
781
+ rx="5.291667"
782
+ ry="5.291667" />
783
+ <rect
784
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.0940932;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
785
+ id="rect8"
786
+ width="31.33754"
787
+ height="7.4645381"
788
+ x="860.74408"
789
+ y="429.60858"
790
+ rx="5.291667"
791
+ ry="5.291667" />
792
+ <rect
793
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.0940932;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
794
+ id="rect9"
795
+ width="31.33754"
796
+ height="7.4645381"
797
+ x="897.88477"
798
+ y="429.60858"
799
+ rx="5.291667"
800
+ ry="5.291667" />
801
+ <path
802
+ style="fill:none;stroke:#ecdce8;stroke-width:0.746454;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
803
+ d="m 856.99792,431.80286 1.59957,1.53969 -1.47978,1.53967"
804
+ id="path9"
805
+ sodipodi:nodetypes="ccc" />
806
+ <path
807
+ style="fill:none;stroke:#ecdce8;stroke-width:0.746454;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
808
+ d="m 894.13863,431.80286 1.59957,1.53969 -1.47978,1.53967"
809
+ id="path10"
810
+ sodipodi:nodetypes="ccc" />
811
+ </g>
812
+ <rect
813
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.528373;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
814
+ id="rect2416-5"
815
+ width="334.27991"
816
+ height="104.78572"
817
+ x="1159.0948"
818
+ y="580.35321"
819
+ inkscape:export-filename="screenshot-sponsors-default-layout.png"
820
+ inkscape:export-xdpi="96"
821
+ inkscape:export-ydpi="96" />
822
+ <rect
823
+ style="fill:#f6edf4;fill-opacity:1;stroke:#f6edf4;stroke-width:0.840647;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
824
+ id="rect11-6"
825
+ width="90.412331"
826
+ height="36.005371"
827
+ x="1184.0186"
828
+ y="625.29138"
829
+ rx="5.291667" />
830
+ <rect
831
+ style="fill:#f6edf4;fill-opacity:1;stroke:#f6edf4;stroke-width:0.793749;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
832
+ id="rect18-2"
833
+ width="46.345093"
834
+ height="32.912136"
835
+ x="1422.9706"
836
+ y="628.93732"
837
+ rx="5.291667" />
838
+ <rect
839
+ style="fill:#f6edf4;fill-opacity:1;stroke:#f6edf4;stroke-width:0.793749;stroke-linejoin:bevel;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
840
+ id="rect17-9"
841
+ width="46.345093"
842
+ height="32.912136"
843
+ x="1423.1577"
844
+ y="591.36639"
845
+ rx="5.291667" />
846
+ <rect
847
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.520624;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
848
+ id="rect59-2-8"
849
+ width="69.32869"
850
+ height="2.3428345"
851
+ x="1183.5981"
852
+ y="675.42957"
853
+ rx="1.3229167"
854
+ ry="1.3229167" />
855
+ <rect
856
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.520624;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
857
+ id="rect70-9"
858
+ width="8.7390862"
859
+ height="2.3428345"
860
+ x="1256.3269"
861
+ y="675.42957"
862
+ rx="1.3229167"
863
+ ry="1.3229167" />
864
+ <rect
865
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.552583;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
866
+ id="rect71-7"
867
+ width="9.8448849"
868
+ height="2.3428345"
869
+ x="1268.4661"
870
+ y="675.42957"
871
+ rx="1.3229167"
872
+ ry="1.3229167" />
873
+ <rect
874
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.552583;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
875
+ id="rect72-3"
876
+ width="9.8448849"
877
+ height="2.3428345"
878
+ x="1281.7111"
879
+ y="675.42957"
880
+ rx="1.3229167"
881
+ ry="1.3229167" />
882
+ <rect
883
+ style="fill:#f6edf4;fill-opacity:1;stroke:#f6edf4;stroke-width:0.79375;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
884
+ id="rect4-1"
885
+ width="118.31165"
886
+ height="70.482971"
887
+ x="1289.6503"
888
+ y="591.36652"
889
+ rx="5.291667" />
890
+ <g
891
+ aria-label="CentOS"
892
+ id="g8"
893
+ style="font-weight:bold;font-size:29.9666px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro Bold';fill:#f6edf4;fill-opacity:1;stroke-width:2.85397"
894
+ transform="matrix(0.24083779,0,0,0.24083779,989.53905,510.99728)">
895
+ <path
896
+ d="m 865.94059,362.40602 c 3.65593,0 6.68255,-1.31853 8.66035,-3.74583 l -3.11653,-2.87679 c -1.40843,1.64816 -3.17646,2.48723 -5.27412,2.48723 -3.92563,0 -6.71252,-2.75693 -6.71252,-6.71252 0,-3.95559 2.78689,-6.71252 6.71252,-6.71252 2.09766,0 3.86569,0.83906 5.27412,2.45726 l 3.11653,-2.87679 c -1.9778,-2.39733 -5.00442,-3.71586 -8.63038,-3.71586 -6.53272,0 -11.38731,4.52495 -11.38731,10.84791 0,6.32295 4.85459,10.84791 11.35734,10.84791 z"
897
+ id="path3"
898
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
899
+ <path
900
+ d="m 892.76066,354.04533 c 0,-5.18422 -3.65592,-8.36068 -8.39065,-8.36068 -4.91452,0 -8.60041,3.47613 -8.60041,8.30075 0,4.79466 3.62596,8.30075 9.19974,8.30075 2.90676,0 5.15426,-0.899 6.65259,-2.60709 l -2.48723,-2.697 c -1.10876,1.04883 -2.33739,1.55826 -4.04549,1.55826 -2.45726,0 -4.16536,-1.22863 -4.61486,-3.23639 h 12.19641 c 0.03,-0.38956 0.0899,-0.899 0.0899,-1.2586 z m -8.36068,-4.82462 c 2.09766,0 3.62596,1.31853 3.95559,3.35626 h -7.94115 c 0.32963,-2.06769 1.85793,-3.35626 3.98556,-3.35626 z"
901
+ id="path4"
902
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
903
+ <path
904
+ d="m 905.67622,345.68465 c -2.18756,0 -4.07545,0.74917 -5.33405,2.12763 v -1.88789 h -4.46502 v 16.12203 h 4.67479 v -7.97112 c 0,-2.96669 1.61819,-4.34516 3.86569,-4.34516 2.06769,0 3.26636,1.19867 3.26636,3.80576 v 8.51052 h 4.67479 v -9.22972 c 0,-4.91452 -2.8768,-7.13205 -6.68256,-7.13205 z"
905
+ id="path5"
906
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
907
+ <path
908
+ d="m 925.72388,357.97096 c -0.50943,0.38957 -1.19866,0.59933 -1.8879,0.59933 -1.25859,0 -2.00776,-0.74916 -2.00776,-2.12763 v -6.56268 h 4.01553 v -3.59599 h -4.01553 v -3.92563 h -4.67479 v 3.92563 h -2.48723 v 3.59599 h 2.48723 v 6.62262 c 0,3.83572 2.21753,5.78355 6.02329,5.78355 1.4384,0 2.84683,-0.32963 3.80576,-1.01886 z"
909
+ id="path6"
910
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
911
+ <path
912
+ d="m 940.10783,362.40602 c 6.59266,0 11.47721,-4.58489 11.47721,-10.84791 0,-6.26302 -4.88455,-10.84791 -11.47721,-10.84791 -6.62261,0 -11.4772,4.61485 -11.4772,10.84791 0,6.23305 4.85459,10.84791 11.4772,10.84791 z m 0,-4.13539 c -3.74582,0 -6.56268,-2.72697 -6.56268,-6.71252 0,-3.98556 2.81686,-6.71252 6.56268,-6.71252 3.74583,0 6.56269,2.72696 6.56269,6.71252 0,3.98555 -2.81686,6.71252 -6.56269,6.71252 z"
913
+ id="path6-5"
914
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
915
+ <path
916
+ d="m 962.13328,362.40602 c 5.99332,0 8.90008,-2.99666 8.90008,-6.50276 0,-7.70141 -12.19641,-5.03438 -12.19641,-8.90008 0,-1.31853 1.10876,-2.39732 3.98556,-2.39732 1.85793,0 3.86569,0.53939 5.81352,1.64816 l 1.49833,-3.68589 c -1.94783,-1.22863 -4.64482,-1.85793 -7.28188,-1.85793 -5.96336,0 -8.84015,2.96669 -8.84015,6.53272 0,7.79131 12.1964,5.09432 12.1964,9.01994 0,1.28857 -1.16869,2.2475 -4.04549,2.2475 -2.51719,0 -5.15425,-0.899 -6.92228,-2.18756 l -1.64816,3.65592 c 1.85792,1.4384 5.21418,2.4273 8.54048,2.4273 z"
917
+ id="path8-4"
918
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
919
+ </g>
920
+ <g
921
+ id="g9"
922
+ transform="matrix(0.18378912,0.18378912,-0.18378912,0.18378912,1064.0603,577.76325)"
923
+ inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
924
+ inkscape:export-xdpi="10.11"
925
+ inkscape:export-ydpi="10.11"
926
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:3.80952">
927
+ <path
928
+ id="path9-7"
929
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:5.0397;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
930
+ d="m 372.92961,-303.88054 a 20.103001,20.103493 0 0 0 -4.90893,13.16408 20.103001,20.103493 0 0 0 20.10242,20.10507 20.103001,20.103493 0 0 0 20.10374,-20.10375 20.103001,20.103493 0 0 0 -20.10374,-20.10374 20.103001,20.103493 0 0 0 -15.19349,6.93834 z m 4.43562,2.40753 h 6.30374 l 4.45545,-4.45545 4.45545,4.45545 h 6.3011 v 6.3011 l 4.45677,4.45677 -4.45545,4.45546 -0.001,6.30241 h -6.3011 l -4.45545,4.45546 -4.45678,-4.45678 h -6.30109 v -6.30109 l -4.45545,-4.45546 4.45545,-4.45545 z m 2.27135,4.18311 3.22723,3.22723 1.91307,0.001 10e-4,-1.91307 -3.22855,-3.22855 z m -2.16294,5.22226 0.001,2.70368 h 4.56387 l 1.3525,-1.3525 -1.3525,-1.3525 z m 9.29696,-9.29695 v 4.56386 l 1.3525,1.3525 1.3525,-1.3525 v -4.56386 z m 0.0912,7.606 0.0172,1.79936 -1.79805,-0.0159 1.28243,1.25863 -1.28243,1.26128 1.79805,-0.0159 -0.0145,1.79937 1.25996,-1.28375 1.25995,1.28375 -0.0145,-1.79937 1.79672,0.0145 -1.28243,-1.25864 1.28243,-1.26127 -1.79804,0.0159 0.0159,-1.79804 -1.26127,1.28243 z m -7.22391,9.6169 1.91174,1.91175 3.22723,-3.22723 v -1.91175 h -1.91175 z m 11.83273,-11.83273 v 1.91175 h 1.91174 l 3.22723,-3.22723 -1.91175,-1.91175 z m -4.69872,11.34356 -0.001,4.56518 h 2.705 v -4.56386 l -1.3525,-1.3525 z m 6.08427,-6.08428 1.3525,1.35251 h 4.56386 v -2.70501 h -4.56386 z m -1.38688,3.34622 10e-4,1.91307 3.22722,3.22723 1.91307,-1.91307 -3.22723,-3.22723 z" />
931
+ </g>
932
+ <circle
933
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.421373;stroke-linejoin:round"
934
+ id="path1-2"
935
+ cx="222.07687"
936
+ cy="159.52768"
937
+ r="5.4905419"
938
+ clip-path="url(#clipPath2)"
939
+ transform="matrix(1.223727,0,0,1.223727,1206.8785,475.02581)" />
940
+ <path
941
+ style="fill:none;stroke:#d9b9d1;stroke-width:0.435674;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
942
+ d="m 93.5249,194.106 0.933603,0.89865 -0.863686,0.89865"
943
+ id="path410-0"
944
+ sodipodi:nodetypes="ccc"
945
+ clip-path="url(#clipPath1-2)"
946
+ transform="matrix(0,-1.3482231,1.3482231,0,1215.7341,797.07164)" />
947
+ <rect
948
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.483678;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
949
+ id="rect6"
950
+ width="91.391617"
951
+ height="2.1766357"
952
+ x="1183.5983"
953
+ y="603.53699"
954
+ rx="0.96735704"
955
+ ry="0.96735704" />
956
+ </g>
957
+ </g>
958
+ </svg>