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,891 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="639.99994"
6
+ height="640"
7
+ viewBox="0 0 169.33332 169.33333"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.4.4 (dcaf3e7d9e, 2026-05-05)"
11
+ sodipodi:docname="page-with-bits.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="1.4142136"
27
+ inkscape:cx="171.82694"
28
+ inkscape:cy="394.91913"
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="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-5">
121
+ <path
122
+ id="path3-5"
123
+ 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"
124
+ 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"
125
+ sodipodi:nodetypes="sscsssssscsss" />
126
+ </clipPath>
127
+ <clipPath
128
+ clipPathUnits="userSpaceOnUse"
129
+ id="clipPath1">
130
+ <path
131
+ id="path2-3"
132
+ 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"
133
+ 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"
134
+ sodipodi:nodetypes="sscsssssscsss" />
135
+ </clipPath>
136
+ <filter
137
+ inkscape:collect="always"
138
+ style="color-interpolation-filters:sRGB"
139
+ id="filter71-7"
140
+ x="-0.030834845"
141
+ y="-0.015408211"
142
+ width="1.0616697"
143
+ height="1.0308164">
144
+ <feGaussianBlur
145
+ inkscape:collect="always"
146
+ stdDeviation="4.1775707"
147
+ id="feGaussianBlur71-5" />
148
+ </filter>
149
+ <clipPath
150
+ clipPathUnits="userSpaceOnUse"
151
+ id="clipPath2">
152
+ <path
153
+ id="path3-5-3"
154
+ 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"
155
+ 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"
156
+ sodipodi:nodetypes="sscsssssscsss" />
157
+ </clipPath>
158
+ <clipPath
159
+ clipPathUnits="userSpaceOnUse"
160
+ id="clipPath1-5">
161
+ <path
162
+ id="path2-3-6"
163
+ 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"
164
+ 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"
165
+ sodipodi:nodetypes="sscsssssscsss" />
166
+ </clipPath>
167
+ <clipPath
168
+ clipPathUnits="userSpaceOnUse"
169
+ id="clipPath18">
170
+ <rect
171
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.753042;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
172
+ id="rect18"
173
+ width="367.93759"
174
+ height="367.93762"
175
+ x="1134.8713"
176
+ y="-31.248512"
177
+ inkscape:export-filename="page-with-artwork.png"
178
+ inkscape:export-xdpi="96"
179
+ inkscape:export-ydpi="96" />
180
+ </clipPath>
181
+ </defs>
182
+ <g
183
+ inkscape:label="Layer 1"
184
+ inkscape:groupmode="layer"
185
+ id="layer1"
186
+ transform="translate(-87.841888,-84.995934)">
187
+ <rect
188
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.346568;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
189
+ id="artwork"
190
+ width="169.33333"
191
+ height="169.33334"
192
+ x="87.841888"
193
+ y="84.995934"
194
+ inkscape:export-filename="page-with-artwork.png"
195
+ inkscape:export-xdpi="96"
196
+ inkscape:export-ydpi="96" />
197
+ <g
198
+ id="g6"
199
+ transform="matrix(0.46022293,0,0,0.46022293,-434.45197,99.377215)"
200
+ clip-path="url(#clipPath18)">
201
+ <rect
202
+ 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-7);stop-color:#000000"
203
+ id="rect71-1"
204
+ width="346.56506"
205
+ height="693.54449"
206
+ x="1145.5579"
207
+ y="-147.22104"
208
+ inkscape:export-filename="screenshot-sponsors-default-layout.png"
209
+ inkscape:export-xdpi="96"
210
+ inkscape:export-ydpi="96" />
211
+ <rect
212
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:1.32022;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
213
+ id="rect4291-2"
214
+ width="346.56506"
215
+ height="693.54449"
216
+ x="1145.5579"
217
+ y="-147.22104"
218
+ inkscape:export-filename="screenshot-sponsors-default-layout.png"
219
+ inkscape:export-xdpi="96"
220
+ inkscape:export-ydpi="96" />
221
+ <rect
222
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.497636;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
223
+ id="rect4433-7"
224
+ width="334.28003"
225
+ height="19.72998"
226
+ x="1151.7003"
227
+ y="-141.15495"
228
+ inkscape:export-filename="screenshot-sponsors-default-layout.png"
229
+ inkscape:export-xdpi="96"
230
+ inkscape:export-ydpi="96" />
231
+ <g
232
+ id="g1012-0"
233
+ transform="matrix(0.24685874,0,0,0.24685874,1055.5788,-110.40508)"
234
+ style="fill:#f6edf4;stroke-width:3.80952">
235
+ <g
236
+ aria-label="CentOS"
237
+ id="text57015-9"
238
+ 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"
239
+ transform="matrix(0.97560972,0,0,0.97560972,-295.86665,-427.58606)">
240
+ <path
241
+ 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"
242
+ id="path2097-3"
243
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
244
+ <path
245
+ 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"
246
+ id="path2099-6"
247
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
248
+ <path
249
+ 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"
250
+ id="path2101-0"
251
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
252
+ <path
253
+ 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"
254
+ id="path2103-6"
255
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
256
+ <path
257
+ 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"
258
+ id="path2105-2"
259
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
260
+ <path
261
+ 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"
262
+ id="path2107-6"
263
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
264
+ </g>
265
+ <g
266
+ id="g28251-9-1"
267
+ transform="matrix(0.74451128,0.74451128,-0.74451128,0.74451128,6.01137,-157.12384)"
268
+ inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
269
+ inkscape:export-xdpi="10.11"
270
+ inkscape:export-ydpi="10.11"
271
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:3.80952">
272
+ <path
273
+ id="ellipse15079-1-3-8"
274
+ 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"
275
+ 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" />
276
+ </g>
277
+ </g>
278
+ <rect
279
+ style="fill:#ecdce8;fill-opacity:1;stroke:#d9b9d1;stroke-width:0.248818;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
280
+ id="rect119-7"
281
+ width="16.372637"
282
+ height="10.339692"
283
+ x="1444.7072"
284
+ y="-136.45981"
285
+ rx="1.2440896"
286
+ ry="1.2440896" />
287
+ <g
288
+ id="g121-9"
289
+ transform="matrix(0.94041424,0,0,0.94041424,468.13692,5.0201256)"
290
+ style="stroke:#d9b9d1;stroke-opacity:1">
291
+ <path
292
+ style="fill:none;stroke:#d9b9d1;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
293
+ d="m 1040.8931,-147.50672 h 12.5172"
294
+ id="path119-2" />
295
+ <path
296
+ style="fill:none;stroke:#d9b9d1;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
297
+ d="m 1040.8931,-144.94685 h 12.5172"
298
+ id="path120-0" />
299
+ <path
300
+ style="fill:none;stroke:#d9b9d1;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
301
+ d="m 1040.8931,-142.38698 h 12.5172"
302
+ id="path121-2" />
303
+ </g>
304
+ <path
305
+ style="fill:none;stroke:#f6edf4;stroke-width:0.248818px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
306
+ d="m 1220.0741,-137.63646 v 12.69302"
307
+ id="path8-3" />
308
+ <g
309
+ id="g1-7"
310
+ transform="matrix(1.4277799,0,0,1.4277799,92.245493,138.2911)"
311
+ style="fill:#f6edf4">
312
+ <g
313
+ id="use1-3-3-5"
314
+ style="fill:#f6edf4;fill-opacity:1;stroke:#f6f5f4;stroke-opacity:1"
315
+ transform="matrix(0.00800799,0,0,0.00800799,793.73956,-190.8614)">
316
+ <title
317
+ id="title8">align-left</title>
318
+ <path
319
+ 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"
320
+ id="path11" />
321
+ </g>
322
+ </g>
323
+ <g
324
+ id="g4-9"
325
+ transform="translate(0,0.11031407)">
326
+ <rect
327
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.225813;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
328
+ id="rect3425-2"
329
+ width="286.95572"
330
+ height="19.72998"
331
+ x="1175.3623"
332
+ y="5.0763025"
333
+ rx="1.3229167"
334
+ ry="1.3229167" />
335
+ <path
336
+ d="m 1191.7479,10.928523 c 0,-0.231122 -0.1397,-0.440733 -0.3547,-0.530318 -0.215,-0.08959 -0.4605,-0.03939 -0.6253,0.123718 l -0.7811,0.782939 c -0.86,0.859968 -2.0264,1.343726 -3.2429,1.343726 h -0.1558 -0.5734 -1.7199 c -0.6325,0 -1.1466,0.514186 -1.1466,1.146626 v 1.719953 c 0,0.632424 0.5141,1.146626 1.1466,1.146626 v 2.293266 c 0,0.317128 0.2562,0.573314 0.5733,0.573314 h 1.1466 c 0.3172,0 0.5734,-0.256186 0.5734,-0.573314 v -2.293266 h 0.1558 c 1.2165,0 2.3829,0.483729 3.2429,1.343713 l 0.7811,0.781148 c 0.1648,0.164827 0.4103,0.213218 0.6253,0.123717 0.215,-0.08973 0.3547,-0.29742 0.3547,-0.530317 v -2.642642 c 0.3333,-0.157655 0.5733,-0.582272 0.5733,-1.082132 0,-0.49986 -0.24,-0.924477 -0.5733,-1.082132 z m -1.1466,1.374172 v 2.352377 2.352407 c -1.0535,-0.958528 -2.4277,-1.492423 -3.8574,-1.492423 h -0.1558 v -1.719953 h 0.1558 c 1.4297,0 2.8039,-0.533911 3.8574,-1.492408 z"
337
+ id="path3462-2"
338
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.366965" />
339
+ <g
340
+ id="g39-8"
341
+ transform="matrix(0.56558759,0,0,0.56558762,859.02965,83.458463)"
342
+ style="fill:#77767b;fill-opacity:1;stroke:#c795ba;stroke-width:1.13921;stroke-opacity:1">
343
+ <path
344
+ style="fill:none;fill-opacity:1;stroke:#ecdce8;stroke-width:1.50708;stroke-linecap:round;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
345
+ d="m 1044.5533,-124.15749 6.0283,6.02831"
346
+ id="path38-9" />
347
+ <path
348
+ style="fill:none;fill-opacity:1;stroke:#ecdce8;stroke-width:1.50708;stroke-linecap:round;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
349
+ d="m 1050.5816,-124.15749 -6.0283,6.02831"
350
+ id="path39-7" />
351
+ </g>
352
+ </g>
353
+ <g
354
+ id="g37-3"
355
+ transform="translate(362.21843,-278.52956)">
356
+ <rect
357
+ 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"
358
+ id="rect1565-1-7-6"
359
+ width="286.95572"
360
+ height="19.72998"
361
+ x="813.31335"
362
+ y="627.60034" />
363
+ <g
364
+ id="use49-1"
365
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:1.92095"
366
+ transform="matrix(0.02204861,0,0,0.02204861,951.14677,631.82089)">
367
+ <title
368
+ id="title11">Image</title>
369
+ <path
370
+ 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"
371
+ id="path12" />
372
+ </g>
373
+ </g>
374
+ <g
375
+ id="g38-2"
376
+ transform="translate(362.04902,-289.24641)">
377
+ <rect
378
+ 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"
379
+ id="rect1166-9"
380
+ width="286.95578"
381
+ height="19.72998"
382
+ x="813.31335"
383
+ y="667.367" />
384
+ <g
385
+ id="g57-0-3"
386
+ transform="matrix(0.01856725,0,0,0.01856725,952.63218,675.33275)"
387
+ style="fill:#381a32;fill-opacity:1">
388
+ <title
389
+ id="title57-8-1">align-left</title>
390
+ <path
391
+ 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"
392
+ id="path57-1-9"
393
+ style="fill:#ecdce8;fill-opacity:1" />
394
+ </g>
395
+ <path
396
+ sodipodi:type="star"
397
+ 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"
398
+ id="path37-4"
399
+ inkscape:flatsided="false"
400
+ sodipodi:sides="3"
401
+ sodipodi:cx="-499.8125"
402
+ sodipodi:cy="737.32031"
403
+ sodipodi:r1="36.465179"
404
+ sodipodi:r2="18.23259"
405
+ sodipodi:arg1="1.5707963"
406
+ sodipodi:arg2="2.6179939"
407
+ inkscape:rounded="0"
408
+ inkscape:randomized="0"
409
+ 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"
410
+ transform="matrix(0.10519844,0,0,0.10519844,1139.2521,598.70803)"
411
+ inkscape:transform-center-y="1.0197809"
412
+ inkscape:transform-center-x="-6.518711e-05" />
413
+ </g>
414
+ <g
415
+ id="g58-7"
416
+ transform="matrix(0.94041424,0,0,0.94041424,450.97776,468.79144)">
417
+ <rect
418
+ 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"
419
+ id="rect57-8"
420
+ width="305.13763"
421
+ height="20.980095"
422
+ x="770.28247"
423
+ y="-65.525414" />
424
+ <g
425
+ id="g57-4"
426
+ transform="matrix(0.0197437,0,0,0.0197437,918.4287,-57.055009)"
427
+ style="fill:#ffffff">
428
+ <title
429
+ id="title57-5">align-left</title>
430
+ <path
431
+ 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"
432
+ id="path57-0"
433
+ style="fill:#ecdce8" />
434
+ </g>
435
+ </g>
436
+ <rect
437
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.511739;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
438
+ id="rect36-3"
439
+ width="334.27991"
440
+ height="19.72998"
441
+ x="1151.7003"
442
+ y="-23.863195"
443
+ inkscape:export-filename="screenshot-sponsors-default-layout.png"
444
+ inkscape:export-xdpi="96"
445
+ inkscape:export-ydpi="96" />
446
+ <g
447
+ id="g41-6"
448
+ transform="matrix(0.94040116,0,0,0.94040116,482.81707,151.12945)">
449
+ <rect
450
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:15.8106;paint-order:fill markers stroke"
451
+ id="rect40-1"
452
+ width="13.576674"
453
+ height="9.7555847"
454
+ x="1026.684"
455
+ y="-180.47063"
456
+ ry="1.5810586"
457
+ rx="1.5810586" />
458
+ <g
459
+ id="use1-5-0"
460
+ style="fill:#f6edf4;fill-opacity:1;stroke:none"
461
+ transform="matrix(0.00956941,0,0,0.00956941,1031.3285,-178.0426)">
462
+ <title
463
+ id="title12">arrow-right</title>
464
+ <path
465
+ 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"
466
+ id="path17" />
467
+ </g>
468
+ </g>
469
+ <path
470
+ d="m 1185.2006,-18.01102 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.2932741 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.2932741 h 0.156 c 1.2164,0 2.3827,0.483734 3.2428,1.343728 l 0.7811,0.781148 c 0.1649,0.1648298 0.4103,0.2132189 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"
471
+ id="path32-6"
472
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.366966" />
473
+ <g
474
+ id="g101-3"
475
+ transform="translate(351.92843,2.5272502)">
476
+ <path
477
+ id="path31-3-2"
478
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0759096;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
479
+ d="m 1134.052,-123.95228 v 97.561836 H 799.77184 v -97.561836 z"
480
+ sodipodi:nodetypes="ccccc" />
481
+ <path
482
+ id="rect38-0"
483
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.461067;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
484
+ 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"
485
+ sodipodi:nodetypes="sssccss" />
486
+ <circle
487
+ 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"
488
+ id="circle125-7-5-6"
489
+ cx="966.91193"
490
+ cy="-103.76298"
491
+ r="12.213036" />
492
+ <rect
493
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.162613;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
494
+ id="rect274-9-1"
495
+ width="149.16376"
496
+ height="4.8648939"
497
+ x="892.33008"
498
+ y="-83.623833" />
499
+ <rect
500
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.302035;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
501
+ id="rect125-0-5-1-5"
502
+ width="24.557205"
503
+ height="7.9111004"
504
+ x="927.99078"
505
+ y="-38.253174"
506
+ ry="3.4158282" />
507
+ <rect
508
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.302035;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
509
+ id="rect232-2-5"
510
+ width="24.557205"
511
+ height="7.9111004"
512
+ x="954.63312"
513
+ y="-38.253174"
514
+ ry="3.4158282" />
515
+ <rect
516
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.302035;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
517
+ id="rect233-7-4"
518
+ width="24.557205"
519
+ height="7.9111004"
520
+ x="981.27582"
521
+ y="-38.253174"
522
+ ry="3.4158282" />
523
+ <rect
524
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.162613;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
525
+ id="rect246-6-0-7"
526
+ width="149.16376"
527
+ height="4.8648129"
528
+ x="892.33008"
529
+ y="-72.250313" />
530
+ <rect
531
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.375997;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
532
+ id="rect125-0-6-6"
533
+ width="30.57077"
534
+ height="9.8483696"
535
+ x="951.62653"
536
+ y="-59.010605"
537
+ ry="4.252296" />
538
+ </g>
539
+ <g
540
+ id="g91-5"
541
+ transform="translate(351.92843,-117.15947)">
542
+ <rect
543
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.510705;stroke-opacity:1"
544
+ id="rect88-6"
545
+ width="286.95578"
546
+ height="19.72998"
547
+ x="823.84314"
548
+ y="397.68347" />
549
+ <path
550
+ 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"
551
+ id="path1-3-9"
552
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0191128" />
553
+ <g
554
+ id="g41-7-3"
555
+ transform="matrix(0.94041424,0,0,0.94041424,123.99588,572.67846)"
556
+ style="fill:#d9b9d1;fill-opacity:1">
557
+ <rect
558
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:15.8106;paint-order:fill markers stroke"
559
+ id="rect40-5-7"
560
+ width="13.576674"
561
+ height="9.7555847"
562
+ x="1026.684"
563
+ y="-180.47063"
564
+ ry="1.5810586"
565
+ rx="1.5810586" />
566
+ <g
567
+ id="use1-5-3-4"
568
+ style="fill:#f6edf4;fill-opacity:1;stroke:none"
569
+ transform="matrix(0.00956941,0,0,0.00956941,1031.3285,-178.0426)">
570
+ <title
571
+ id="title17">arrow-right</title>
572
+ <path
573
+ 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"
574
+ id="path18" />
575
+ </g>
576
+ </g>
577
+ </g>
578
+ <g
579
+ id="g3-5"
580
+ transform="matrix(0.95856018,0,0,0.95856018,381.76223,-89.184084)"
581
+ style="fill:#f6edf4;fill-opacity:1">
582
+ <text
583
+ xml:space="preserve"
584
+ 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:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.776208;stroke-linejoin:round"
585
+ x="827.53546"
586
+ y="447.32944"
587
+ id="text2-2"><tspan
588
+ sodipodi:role="line"
589
+ id="tspan2-5"
590
+ style="font-weight:bold;fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.776208"
591
+ x="827.53546"
592
+ y="447.32944">Hello world!</tspan></text>
593
+ </g>
594
+ <g
595
+ id="g90-4"
596
+ transform="translate(351.92843,-120.03477)">
597
+ <rect
598
+ 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"
599
+ id="rect1776-7"
600
+ width="31.33754"
601
+ height="4.8648939"
602
+ x="823.60339"
603
+ y="430.90497" />
604
+ <rect
605
+ 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"
606
+ id="rect8-4"
607
+ width="31.33754"
608
+ height="4.8648939"
609
+ x="860.74408"
610
+ y="430.90497" />
611
+ <rect
612
+ 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"
613
+ id="rect9-4"
614
+ width="31.33754"
615
+ height="4.8648939"
616
+ x="897.88477"
617
+ y="430.90497" />
618
+ <path
619
+ style="fill:none;stroke:#ecdce8;stroke-width:0.746454;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
620
+ d="m 856.99792,431.80286 1.59957,1.53969 -1.47978,1.53967"
621
+ id="path9-3"
622
+ sodipodi:nodetypes="ccc" />
623
+ <path
624
+ style="fill:none;stroke:#ecdce8;stroke-width:0.746454;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
625
+ d="m 894.13863,431.80286 1.59957,1.53969 -1.47978,1.53967"
626
+ id="path10-0"
627
+ sodipodi:nodetypes="ccc" />
628
+ </g>
629
+ <rect
630
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.528373;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
631
+ id="rect2416-5-7"
632
+ width="334.27991"
633
+ height="104.78572"
634
+ x="1151.7004"
635
+ y="436.22021"
636
+ inkscape:export-filename="screenshot-sponsors-default-layout.png"
637
+ inkscape:export-xdpi="96"
638
+ inkscape:export-ydpi="96" />
639
+ <rect
640
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.840647;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
641
+ id="rect11-6-8"
642
+ width="90.412331"
643
+ height="36.005371"
644
+ x="1176.6241"
645
+ y="481.15839"
646
+ rx="5.291667" />
647
+ <rect
648
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.793749;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
649
+ id="rect18-2-6"
650
+ width="46.345093"
651
+ height="32.912136"
652
+ x="1415.5762"
653
+ y="484.80432"
654
+ rx="5.291667" />
655
+ <rect
656
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.793749;stroke-linejoin:bevel;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
657
+ id="rect17-9-8"
658
+ width="46.345093"
659
+ height="32.912136"
660
+ x="1415.7633"
661
+ y="447.2334"
662
+ rx="5.291667" />
663
+ <rect
664
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.520624;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
665
+ id="rect59-2-8-8"
666
+ width="69.32869"
667
+ height="2.3428345"
668
+ x="1176.2037"
669
+ y="531.29657"
670
+ rx="1.3229167"
671
+ ry="1.3229167" />
672
+ <rect
673
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.520624;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
674
+ id="rect70-9-4"
675
+ width="8.7390862"
676
+ height="2.3428345"
677
+ x="1248.9325"
678
+ y="531.29657"
679
+ rx="1.3229167"
680
+ ry="1.3229167" />
681
+ <rect
682
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.552583;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
683
+ id="rect71-7-3"
684
+ width="9.8448849"
685
+ height="2.3428345"
686
+ x="1261.0717"
687
+ y="531.29657"
688
+ rx="1.3229167"
689
+ ry="1.3229167" />
690
+ <rect
691
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.552583;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
692
+ id="rect72-3-1"
693
+ width="9.8448849"
694
+ height="2.3428345"
695
+ x="1274.3167"
696
+ y="531.29657"
697
+ rx="1.3229167"
698
+ ry="1.3229167" />
699
+ <rect
700
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.79375;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
701
+ id="rect4-1-4"
702
+ width="118.31165"
703
+ height="70.482971"
704
+ x="1282.2559"
705
+ y="447.23352"
706
+ rx="5.291667" />
707
+ <g
708
+ aria-label="CentOS"
709
+ id="g8-9"
710
+ 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:#ecdce8;fill-opacity:1;stroke-width:2.85397"
711
+ transform="matrix(0.24083779,0,0,0.24083779,982.14465,366.86431)">
712
+ <path
713
+ 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"
714
+ id="path1"
715
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:2.85397" />
716
+ <path
717
+ 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"
718
+ id="path2"
719
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:2.85397" />
720
+ <path
721
+ 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"
722
+ id="path3"
723
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:2.85397" />
724
+ <path
725
+ 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"
726
+ id="path4-2"
727
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:2.85397" />
728
+ <path
729
+ 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"
730
+ id="path6-5-0"
731
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:2.85397" />
732
+ <path
733
+ 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"
734
+ id="path8-4-6"
735
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:2.85397" />
736
+ </g>
737
+ <g
738
+ id="g9-8"
739
+ transform="matrix(0.18378912,0.18378912,-0.18378912,0.18378912,1056.6659,433.63028)"
740
+ inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
741
+ inkscape:export-xdpi="10.11"
742
+ inkscape:export-ydpi="10.11"
743
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:3.80952">
744
+ <path
745
+ id="path9-7-9"
746
+ style="fill:#ecdce8;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"
747
+ 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" />
748
+ </g>
749
+ <circle
750
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.421373;stroke-linejoin:round"
751
+ id="path1-2-2"
752
+ cx="222.07687"
753
+ cy="159.52768"
754
+ r="5.4905419"
755
+ clip-path="url(#clipPath2)"
756
+ transform="matrix(1.223727,0,0,1.223727,1199.4841,330.89284)" />
757
+ <path
758
+ style="fill:none;stroke:#d9b9d1;stroke-width:0.435674;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
759
+ d="m 93.5249,194.106 0.933603,0.89865 -0.863686,0.89865"
760
+ id="path410-0-6"
761
+ sodipodi:nodetypes="ccc"
762
+ clip-path="url(#clipPath1-5)"
763
+ transform="matrix(0,-1.3482231,1.3482231,0,1208.3397,652.93867)" />
764
+ <rect
765
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.483678;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
766
+ id="rect6-6"
767
+ width="91.391617"
768
+ height="2.1766357"
769
+ x="1176.2039"
770
+ y="459.40399"
771
+ rx="0.96735704"
772
+ ry="0.96735704" />
773
+ <rect
774
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:1.14980509;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:0.09198481, 0.09198481;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
775
+ id="rect5-6"
776
+ width="286.95572"
777
+ height="236.96774"
778
+ x="1175.3623"
779
+ y="34.236427"
780
+ inkscape:export-filename="page-with-bits-collapsed.webp"
781
+ inkscape:export-xdpi="96"
782
+ inkscape:export-ydpi="96" />
783
+ <g
784
+ id="g1"
785
+ transform="translate(-7.6293945e-6,-3.6117611)"
786
+ style="fill:#d9b9d1">
787
+ <g
788
+ id="g2"
789
+ style="fill:#d9b9d1">
790
+ <rect
791
+ style="fill:#a14f8c;fill-opacity:1;stroke-width:0.311415;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
792
+ id="rect28-2"
793
+ width="25.319847"
794
+ height="10.918895"
795
+ x="1278.4326"
796
+ y="167.6264"
797
+ ry="3.8333695" />
798
+ <rect
799
+ style="fill:#a14f8c;fill-opacity:1;stroke-width:0.311415;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
800
+ id="rect29-9"
801
+ width="25.319847"
802
+ height="10.918895"
803
+ x="1306.4578"
804
+ y="167.6264"
805
+ ry="3.8333695" />
806
+ <rect
807
+ style="fill:#a14f8c;fill-opacity:1;stroke-width:0.311415;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
808
+ id="rect30-1"
809
+ width="25.319847"
810
+ height="10.918895"
811
+ x="1333.9277"
812
+ y="167.6264"
813
+ ry="3.8333695" />
814
+ <rect
815
+ style="fill:#a14f8c;fill-opacity:1;stroke-width:0.288531;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
816
+ id="rect31-2"
817
+ width="16.110516"
818
+ height="4.8648939"
819
+ x="1419.257"
820
+ y="185.14719" />
821
+ <rect
822
+ style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:0.56493;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
823
+ id="rect32-7"
824
+ width="75.403503"
825
+ height="59.913593"
826
+ x="1203.4978"
827
+ y="196.61398"
828
+ ry="2.8745127"
829
+ rx="2.8745127" />
830
+ <rect
831
+ style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:1.22495;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
832
+ id="rect33-0"
833
+ width="75.403503"
834
+ height="59.913605"
835
+ x="1281.7311"
836
+ y="196.61398"
837
+ ry="2.8745127"
838
+ rx="2.8745127" />
839
+ <rect
840
+ style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:1.22495;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
841
+ id="rect34-9"
842
+ width="75.403503"
843
+ height="59.913605"
844
+ x="1359.9642"
845
+ y="196.61398"
846
+ ry="2.8745127"
847
+ rx="2.8745127" />
848
+ <rect
849
+ style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:1.21656;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
850
+ id="rect35-3"
851
+ width="233.0553"
852
+ height="47.373276"
853
+ x="1202.3125"
854
+ y="113.65122"
855
+ inkscape:export-filename="screenshot-example-1600x1200.webp"
856
+ inkscape:export-xdpi="152.91"
857
+ inkscape:export-ydpi="152.91"
858
+ rx="2.8745127"
859
+ ry="2.8745127" />
860
+ <rect
861
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.297425;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
862
+ id="rect49-6"
863
+ width="233.05534"
864
+ height="4.8648939"
865
+ x="1202.3125"
866
+ y="90.717636" />
867
+ <rect
868
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.364981;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
869
+ id="rect50-2"
870
+ width="233.05531"
871
+ height="4.8648939"
872
+ x="1202.3125"
873
+ y="102.18443" />
874
+ <rect
875
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.297425;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
876
+ id="rect51-6"
877
+ width="211.56012"
878
+ height="4.8648939"
879
+ x="1202.3125"
880
+ y="185.14719" />
881
+ <circle
882
+ style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:1.24437;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:4.97749, 4.97749;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
883
+ id="circle51-1"
884
+ cx="1318.8402"
885
+ cy="70.126137"
886
+ r="13.989605" />
887
+ </g>
888
+ </g>
889
+ </g>
890
+ </g>
891
+ </svg>