jekyll-theme-centos 0.0.0 → 0.1.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 (516) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +21 -0
  3. data/README.md +66 -0
  4. data/_includes/centos-content/1col.html +11 -0
  5. data/_includes/centos-content/2col.html +15 -0
  6. data/_includes/centos-content/admonition/caution.html +4 -0
  7. data/_includes/centos-content/admonition/idea.html +4 -0
  8. data/_includes/centos-content/admonition/note.html +4 -0
  9. data/_includes/centos-content/admonition/warning.html +4 -0
  10. data/_includes/centos-content/around.html +6 -0
  11. data/_includes/centos-content/breadcrumbs.html +11 -0
  12. data/_includes/centos-content/download/stream-8-doc.html +5 -0
  13. data/_includes/centos-content/download/stream-8-eol.html +5 -0
  14. data/_includes/centos-content/download/stream-8.html +5 -0
  15. data/_includes/centos-content/download/stream.html +16 -0
  16. data/_includes/centos-content/download/table-body-doc.html +6 -0
  17. data/_includes/centos-content/download/table-body-eol.html +4 -0
  18. data/_includes/centos-content/download/table-body.html +7 -0
  19. data/_includes/{download/cards-footer.html → centos-content/download/table-footer.html} +0 -1
  20. data/_includes/centos-content/download/table-header-doc.html +8 -0
  21. data/_includes/centos-content/download/table-header-eol.html +8 -0
  22. data/_includes/centos-content/download/table-header.html +10 -0
  23. data/_includes/centos-content/figure.html +4 -0
  24. data/_includes/centos-content/news.html +15 -0
  25. data/_includes/centos-content/sponsors.html +19 -0
  26. data/_includes/centos-content/toc.html +103 -0
  27. data/_includes/centos-content/video.html +3 -0
  28. data/_includes/centos-footer.html +42 -0
  29. data/_includes/centos-head.html +7 -0
  30. data/_includes/centos-header/home.html +15 -0
  31. data/_includes/centos-header/page.html +12 -0
  32. data/_includes/centos-header.html +7 -0
  33. data/_includes/centos-nav.html +29 -0
  34. data/_includes/centos-styleguide.md +243 -0
  35. data/_layouts/centos-content/1col.html +9 -0
  36. data/_layouts/centos-content/2col.html +9 -0
  37. data/_layouts/centos-content/download-mirror.html +30 -0
  38. data/_layouts/centos-content/download.html +18 -0
  39. data/_layouts/centos-content/sponsors.html +21 -0
  40. data/_layouts/centos-home.html +39 -0
  41. data/_layouts/default.html +18 -0
  42. data/_layouts/{download/cards.html → page.html} +0 -2
  43. data/_layouts/post.html +5 -0
  44. data/_sass/bootstrap/_alert.scss +16 -32
  45. data/_sass/bootstrap/_badge.scss +31 -15
  46. data/_sass/bootstrap/_breadcrumb.scss +27 -23
  47. data/_sass/bootstrap/_button-group.scss +48 -32
  48. data/_sass/bootstrap/_buttons.scss +71 -145
  49. data/_sass/bootstrap/_card.scss +123 -75
  50. data/_sass/bootstrap/_carousel.scss +39 -68
  51. data/_sass/bootstrap/_close.scss +27 -53
  52. data/_sass/bootstrap/_code.scss +48 -0
  53. data/_sass/bootstrap/_custom-forms.scss +524 -0
  54. data/_sass/bootstrap/_dropdown.scss +71 -129
  55. data/_sass/bootstrap/_forms.scss +347 -9
  56. data/_sass/bootstrap/_functions.scss +23 -181
  57. data/_sass/bootstrap/_grid.scss +52 -18
  58. data/_sass/bootstrap/_images.scss +1 -1
  59. data/_sass/bootstrap/_input-group.scss +192 -0
  60. data/_sass/bootstrap/_jumbotron.scss +17 -0
  61. data/_sass/bootstrap/_list-group.scss +48 -93
  62. data/_sass/bootstrap/_media.scss +8 -0
  63. data/_sass/bootstrap/_mixins.scss +15 -10
  64. data/_sass/bootstrap/_modal.scss +112 -112
  65. data/_sass/bootstrap/_nav.scss +29 -103
  66. data/_sass/bootstrap/_navbar.scss +171 -136
  67. data/_sass/bootstrap/_pagination.scss +37 -72
  68. data/_sass/bootstrap/_popover.scss +73 -99
  69. data/_sass/bootstrap/_print.scss +141 -0
  70. data/_sass/bootstrap/_progress.scss +15 -36
  71. data/_sass/bootstrap/_reboot.scss +200 -333
  72. data/_sass/bootstrap/_root.scss +10 -177
  73. data/_sass/bootstrap/_spinners.scss +22 -52
  74. data/_sass/bootstrap/_tables.scss +115 -101
  75. data/_sass/bootstrap/_toasts.scss +27 -54
  76. data/_sass/bootstrap/_tooltip.scss +63 -67
  77. data/_sass/bootstrap/_transitions.scss +1 -8
  78. data/_sass/bootstrap/_type.scss +59 -40
  79. data/_sass/bootstrap/_utilities.scss +18 -806
  80. data/_sass/bootstrap/_variables.scss +611 -1222
  81. data/_sass/bootstrap/bootstrap-grid.scss +20 -53
  82. data/_sass/bootstrap/bootstrap-reboot.scss +7 -5
  83. data/_sass/bootstrap/bootstrap.scss +13 -21
  84. data/_sass/bootstrap/mixins/_alert.scss +6 -11
  85. data/_sass/bootstrap/mixins/_background-variant.scss +23 -0
  86. data/_sass/bootstrap/mixins/_badge.scss +17 -0
  87. data/_sass/bootstrap/mixins/_border-radius.scss +8 -10
  88. data/_sass/bootstrap/mixins/_box-shadow.scss +9 -13
  89. data/_sass/bootstrap/mixins/_breakpoints.scss +16 -20
  90. data/_sass/bootstrap/mixins/_buttons.scss +100 -60
  91. data/_sass/bootstrap/mixins/_caret.scss +27 -34
  92. data/_sass/bootstrap/mixins/_clearfix.scss +0 -2
  93. data/_sass/bootstrap/mixins/_deprecate.scss +0 -0
  94. data/_sass/bootstrap/mixins/_float.scss +14 -0
  95. data/_sass/bootstrap/mixins/_forms.scss +78 -63
  96. data/_sass/bootstrap/mixins/_gradients.scss +11 -13
  97. data/_sass/bootstrap/mixins/_grid-framework.scss +80 -0
  98. data/_sass/bootstrap/mixins/_grid.scss +37 -119
  99. data/_sass/bootstrap/mixins/_hover.scss +37 -0
  100. data/_sass/bootstrap/mixins/_image.scss +21 -1
  101. data/_sass/bootstrap/mixins/_list-group.scss +2 -7
  102. data/_sass/bootstrap/mixins/_lists.scss +1 -1
  103. data/_sass/bootstrap/mixins/_nav-divider.scss +11 -0
  104. data/_sass/bootstrap/mixins/_pagination.scss +19 -7
  105. data/_sass/bootstrap/mixins/_reset-text.scss +3 -3
  106. data/_sass/bootstrap/mixins/_resize.scss +0 -0
  107. data/_sass/bootstrap/mixins/_screen-reader.scss +34 -0
  108. data/_sass/bootstrap/mixins/_size.scss +7 -0
  109. data/_sass/bootstrap/mixins/_table-row.scss +39 -0
  110. data/_sass/bootstrap/mixins/_text-emphasis.scss +17 -0
  111. data/_sass/bootstrap/mixins/_text-hide.scss +11 -0
  112. data/_sass/bootstrap/mixins/_text-truncate.scss +0 -0
  113. data/_sass/bootstrap/mixins/_transition.scss +1 -1
  114. data/_sass/bootstrap/mixins/_visibility.scss +8 -0
  115. data/_sass/bootstrap/utilities/_align.scss +8 -0
  116. data/_sass/bootstrap/utilities/_background.scss +19 -0
  117. data/_sass/bootstrap/utilities/_borders.scss +75 -0
  118. data/_sass/bootstrap/{helpers → utilities}/_clearfix.scss +0 -0
  119. data/_sass/bootstrap/utilities/_display.scss +26 -0
  120. data/_sass/bootstrap/utilities/_embed.scss +39 -0
  121. data/_sass/bootstrap/utilities/_flex.scss +51 -0
  122. data/_sass/bootstrap/utilities/_float.scss +11 -0
  123. data/_sass/bootstrap/utilities/_interactions.scss +5 -0
  124. data/_sass/bootstrap/utilities/_overflow.scss +5 -0
  125. data/_sass/bootstrap/utilities/_position.scss +32 -0
  126. data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
  127. data/_sass/bootstrap/utilities/_shadows.scss +6 -0
  128. data/_sass/bootstrap/utilities/_sizing.scss +20 -0
  129. data/_sass/bootstrap/utilities/_spacing.scss +73 -0
  130. data/_sass/bootstrap/utilities/_stretched-link.scss +19 -0
  131. data/_sass/bootstrap/utilities/_text.scss +72 -0
  132. data/_sass/bootstrap/utilities/_visibility.scss +13 -0
  133. data/_sass/bootstrap/vendor/_rfs.scss +132 -276
  134. data/_sass/centos/_content.scss +101 -0
  135. data/_sass/centos/_datatable.scss +271 -0
  136. data/_sass/centos/_fonts.scss +1 -0
  137. data/_sass/centos/_footer.scss +49 -0
  138. data/_sass/centos/_header.scss +25 -0
  139. data/_sass/centos/_highlighter.scss +360 -0
  140. data/_sass/centos/_mixins.scss +4 -0
  141. data/_sass/centos/_nav.scss +10 -0
  142. data/_sass/centos/_rssfeeds.scss +17 -0
  143. data/_sass/centos/_variables.scss +111 -0
  144. data/_sass/centos/centos.scss +23 -0
  145. data/_sass/centos/content/_1col.scss +32 -0
  146. data/_sass/centos/content/_2col.scss +44 -0
  147. data/_sass/centos/content/_download.scss +17 -0
  148. data/_sass/centos/content/_sponsors.scss +9 -0
  149. data/_sass/centos/fonts/_montserrat.scss +256 -0
  150. data/_sass/centos/header/_home.scss +4 -0
  151. data/_sass/centos/header/_page.scss +4 -0
  152. data/_sass/centos/mixins/_content-card.scss +13 -0
  153. data/_sass/centos/mixins/_content-heading.scss +28 -0
  154. data/_sass/centos/mixins/_content-toc.scss +18 -0
  155. data/_sass/centos/mixins/_footer-link.scss +10 -0
  156. data/_sass/fontawesome/_animated.scss +20 -0
  157. data/_sass/fontawesome/_bordered-pulled.scss +20 -0
  158. data/_sass/fontawesome/_core.scss +21 -0
  159. data/_sass/fontawesome/_fixed-width.scss +6 -0
  160. data/_sass/fontawesome/_icons.scss +1462 -0
  161. data/_sass/fontawesome/_larger.scss +23 -0
  162. data/_sass/fontawesome/_list.scss +18 -0
  163. data/_sass/fontawesome/_mixins.scss +56 -0
  164. data/_sass/fontawesome/_rotated-flipped.scss +24 -0
  165. data/_sass/fontawesome/_screen-reader.scss +5 -0
  166. data/_sass/fontawesome/_shims.scss +2066 -0
  167. data/_sass/fontawesome/_stacked.scss +31 -0
  168. data/_sass/fontawesome/_variables.scss +1479 -0
  169. data/_sass/fontawesome/brands.scss +23 -0
  170. data/_sass/fontawesome/fontawesome.scss +16 -0
  171. data/_sass/fontawesome/regular.scss +23 -0
  172. data/_sass/fontawesome/solid.scss +24 -0
  173. data/_sass/fontawesome/v4-shims.scss +6 -0
  174. data/assets/css/centos.bootstrap.min.scss +4 -0
  175. data/assets/fonts/Montserrat/Montserrat-Black.woff +0 -0
  176. data/assets/fonts/Montserrat/Montserrat-Black.woff2 +0 -0
  177. data/assets/fonts/Montserrat/Montserrat-BlackItalic.woff +0 -0
  178. data/assets/fonts/Montserrat/Montserrat-BlackItalic.woff2 +0 -0
  179. data/assets/fonts/Montserrat/Montserrat-Bold.woff +0 -0
  180. data/assets/fonts/Montserrat/Montserrat-Bold.woff2 +0 -0
  181. data/assets/fonts/Montserrat/Montserrat-BoldItalic.woff +0 -0
  182. data/assets/fonts/Montserrat/Montserrat-BoldItalic.woff2 +0 -0
  183. data/assets/fonts/Montserrat/Montserrat-ExtraBold.woff +0 -0
  184. data/assets/fonts/Montserrat/Montserrat-ExtraBold.woff2 +0 -0
  185. data/assets/fonts/Montserrat/Montserrat-ExtraBoldItalic.woff +0 -0
  186. data/assets/fonts/Montserrat/Montserrat-ExtraBoldItalic.woff2 +0 -0
  187. data/assets/fonts/Montserrat/Montserrat-ExtraLight.woff +0 -0
  188. data/assets/fonts/Montserrat/Montserrat-ExtraLight.woff2 +0 -0
  189. data/assets/fonts/Montserrat/Montserrat-ExtraLightItalic.woff +0 -0
  190. data/assets/fonts/Montserrat/Montserrat-ExtraLightItalic.woff2 +0 -0
  191. data/assets/fonts/Montserrat/Montserrat-Italic.woff +0 -0
  192. data/assets/fonts/Montserrat/Montserrat-Italic.woff2 +0 -0
  193. data/assets/fonts/Montserrat/Montserrat-Light.woff +0 -0
  194. data/assets/fonts/Montserrat/Montserrat-Light.woff2 +0 -0
  195. data/assets/fonts/Montserrat/Montserrat-LightItalic.woff +0 -0
  196. data/assets/fonts/Montserrat/Montserrat-LightItalic.woff2 +0 -0
  197. data/assets/fonts/Montserrat/Montserrat-Medium.woff +0 -0
  198. data/assets/fonts/Montserrat/Montserrat-Medium.woff2 +0 -0
  199. data/assets/fonts/Montserrat/Montserrat-MediumItalic.woff +0 -0
  200. data/assets/fonts/Montserrat/Montserrat-MediumItalic.woff2 +0 -0
  201. data/assets/fonts/Montserrat/Montserrat-Regular.woff +0 -0
  202. data/assets/fonts/Montserrat/Montserrat-Regular.woff2 +0 -0
  203. data/assets/fonts/Montserrat/Montserrat-SemiBold.woff +0 -0
  204. data/assets/fonts/Montserrat/Montserrat-SemiBold.woff2 +0 -0
  205. data/assets/fonts/Montserrat/Montserrat-SemiBoldItalic.woff +0 -0
  206. data/assets/fonts/Montserrat/Montserrat-SemiBoldItalic.woff2 +0 -0
  207. data/assets/fonts/Montserrat/Montserrat-Thin.woff +0 -0
  208. data/assets/fonts/Montserrat/Montserrat-Thin.woff2 +0 -0
  209. data/assets/fonts/Montserrat/Montserrat-ThinItalic.woff +0 -0
  210. data/assets/fonts/Montserrat/Montserrat-ThinItalic.woff2 +0 -0
  211. data/assets/fonts/Montserrat/Montserrat.css +327 -0
  212. data/assets/fonts/Montserrat/MontserratAlternates-Black.woff +0 -0
  213. data/assets/fonts/Montserrat/MontserratAlternates-Black.woff2 +0 -0
  214. data/assets/fonts/Montserrat/MontserratAlternates-BlackItalic.woff +0 -0
  215. data/assets/fonts/Montserrat/MontserratAlternates-BlackItalic.woff2 +0 -0
  216. data/assets/fonts/Montserrat/MontserratAlternates-Bold.woff +0 -0
  217. data/assets/fonts/Montserrat/MontserratAlternates-Bold.woff2 +0 -0
  218. data/assets/fonts/Montserrat/MontserratAlternates-BoldItalic.woff +0 -0
  219. data/assets/fonts/Montserrat/MontserratAlternates-BoldItalic.woff2 +0 -0
  220. data/assets/fonts/Montserrat/MontserratAlternates-ExtraBold.woff +0 -0
  221. data/assets/fonts/Montserrat/MontserratAlternates-ExtraBold.woff2 +0 -0
  222. data/assets/fonts/Montserrat/MontserratAlternates-ExtraBoldItalic.woff +0 -0
  223. data/assets/fonts/Montserrat/MontserratAlternates-ExtraBoldItalic.woff2 +0 -0
  224. data/assets/fonts/Montserrat/MontserratAlternates-ExtraLight.woff +0 -0
  225. data/assets/fonts/Montserrat/MontserratAlternates-ExtraLight.woff2 +0 -0
  226. data/assets/fonts/Montserrat/MontserratAlternates-ExtraLightItalic.woff +0 -0
  227. data/assets/fonts/Montserrat/MontserratAlternates-ExtraLightItalic.woff2 +0 -0
  228. data/assets/fonts/Montserrat/MontserratAlternates-Italic.woff +0 -0
  229. data/assets/fonts/Montserrat/MontserratAlternates-Italic.woff2 +0 -0
  230. data/assets/fonts/Montserrat/MontserratAlternates-Light.woff +0 -0
  231. data/assets/fonts/Montserrat/MontserratAlternates-Light.woff2 +0 -0
  232. data/assets/fonts/Montserrat/MontserratAlternates-LightItalic.woff +0 -0
  233. data/assets/fonts/Montserrat/MontserratAlternates-LightItalic.woff2 +0 -0
  234. data/assets/fonts/Montserrat/MontserratAlternates-Medium.woff +0 -0
  235. data/assets/fonts/Montserrat/MontserratAlternates-Medium.woff2 +0 -0
  236. data/assets/fonts/Montserrat/MontserratAlternates-MediumItalic.woff +0 -0
  237. data/assets/fonts/Montserrat/MontserratAlternates-MediumItalic.woff2 +0 -0
  238. data/assets/fonts/Montserrat/MontserratAlternates-Regular.woff +0 -0
  239. data/assets/fonts/Montserrat/MontserratAlternates-Regular.woff2 +0 -0
  240. data/assets/fonts/Montserrat/MontserratAlternates-SemiBold.woff +0 -0
  241. data/assets/fonts/Montserrat/MontserratAlternates-SemiBold.woff2 +0 -0
  242. data/assets/fonts/Montserrat/MontserratAlternates-SemiBoldItalic.woff +0 -0
  243. data/assets/fonts/Montserrat/MontserratAlternates-SemiBoldItalic.woff2 +0 -0
  244. data/assets/fonts/Montserrat/MontserratAlternates-Thin.woff +0 -0
  245. data/assets/fonts/Montserrat/MontserratAlternates-Thin.woff2 +0 -0
  246. data/assets/fonts/Montserrat/MontserratAlternates-ThinItalic.woff +0 -0
  247. data/assets/fonts/Montserrat/MontserratAlternates-ThinItalic.woff2 +0 -0
  248. data/assets/fonts/Montserrat/README.MD +35 -0
  249. data/assets/fonts/fa-brands-400.eot +0 -0
  250. data/assets/fonts/fa-brands-400.svg +3717 -0
  251. data/assets/fonts/fa-brands-400.ttf +0 -0
  252. data/assets/fonts/fa-brands-400.woff +0 -0
  253. data/assets/fonts/fa-brands-400.woff2 +0 -0
  254. data/assets/fonts/fa-regular-400.eot +0 -0
  255. data/assets/fonts/fa-regular-400.svg +801 -0
  256. data/assets/fonts/fa-regular-400.ttf +0 -0
  257. data/assets/fonts/fa-regular-400.woff +0 -0
  258. data/assets/fonts/fa-regular-400.woff2 +0 -0
  259. data/assets/fonts/fa-solid-900.eot +0 -0
  260. data/assets/fonts/fa-solid-900.svg +5028 -0
  261. data/assets/fonts/fa-solid-900.ttf +0 -0
  262. data/assets/fonts/fa-solid-900.woff +0 -0
  263. data/assets/fonts/fa-solid-900.woff2 +0 -0
  264. data/assets/img/centos-logo-white.png +0 -0
  265. data/assets/img/centos-motif.png +0 -0
  266. data/assets/img/favicon.png +0 -0
  267. data/assets/js/bootstrap.min.js +4 -4
  268. data/assets/js/bootstrap.min.js.map +1 -1
  269. data/assets/js/dataTables.bootstrap4.min.js +14 -0
  270. data/assets/js/jquery.dataTables.min.js +184 -0
  271. data/assets/js/jquery.min.js +2 -0
  272. data/assets/js/jquery.rss.js +11 -0
  273. data/assets/js/moment.min.js +7 -0
  274. metadata +238 -492
  275. data/_config.yml +0 -196
  276. data/_data/base/announcement_schema.yml +0 -49
  277. data/_data/base/artwork_schema.yml +0 -46
  278. data/_data/base/backtotop_schema.yml +0 -59
  279. data/_data/base/bits.yml +0 -96
  280. data/_data/base/bits_schema.yml +0 -185
  281. data/_data/base/breadcrumb_schema.yml +0 -27
  282. data/_data/base/breakingnews_schema.yml +0 -67
  283. data/_data/base/card_schema.yml +0 -146
  284. data/_data/base/color.yml +0 -1042
  285. data/_data/base/color_schema.yml +0 -1036
  286. data/_data/base/configuration_variables_schema.yml +0 -42
  287. data/_data/base/content.yml +0 -2
  288. data/_data/base/content_schema.yml +0 -26
  289. data/_data/base/copyright.yml +0 -12
  290. data/_data/base/copyright_schema.yml +0 -74
  291. data/_data/base/copyvalue_schema.yml +0 -49
  292. data/_data/base/datatable_schema.yml +0 -57
  293. data/_data/base/event_schema.yml +0 -130
  294. data/_data/base/fontawesome_schema.yml +0 -62
  295. data/_data/base/footer.yml +0 -9
  296. data/_data/base/footer_schema.yml +0 -55
  297. data/_data/base/head_schema.yml +0 -19
  298. data/_data/base/heading_anchor.yml +0 -2
  299. data/_data/base/heading_anchor_schema.yml +0 -37
  300. data/_data/base/highlight_schema.yml +0 -98
  301. data/_data/base/image_schema.yml +0 -34
  302. data/_data/base/languages.yml +0 -186
  303. data/_data/base/link_schema.yml +0 -187
  304. data/_data/base/locales_schema.yml +0 -158
  305. data/_data/base/navbar.yml +0 -20
  306. data/_data/base/navbar_schema.yml +0 -129
  307. data/_data/base/navindex_schema.yml +0 -67
  308. data/_data/base/ogp.yml +0 -24
  309. data/_data/base/ogp_schema.yml +0 -192
  310. data/_data/base/project.yml +0 -37
  311. data/_data/base/project_schema.yml +0 -124
  312. data/_data/base/script_schema.yml +0 -41
  313. data/_data/base/shortcut_schema.yml +0 -74
  314. data/_data/base/social.yml +0 -26
  315. data/_data/base/social_schema.yml +0 -57
  316. data/_data/base/sponsors.yml +0 -41
  317. data/_data/base/sponsors_schema.yml +0 -73
  318. data/_data/base/title_schema.yml +0 -49
  319. data/_data/base/toc_schema.yml +0 -114
  320. data/_data/download/cards.yml +0 -309
  321. data/_data/download/navbar.yml +0 -11
  322. data/_includes/base/announcement.html.liquid +0 -65
  323. data/_includes/base/artwork.html.liquid +0 -63
  324. data/_includes/base/backtotop.html.liquid +0 -73
  325. data/_includes/base/bits.html.liquid +0 -152
  326. data/_includes/base/breadcrumb.html.liquid +0 -77
  327. data/_includes/base/breakingnews.html.liquid +0 -90
  328. data/_includes/base/card.html.liquid +0 -110
  329. data/_includes/base/color-table.html.liquid +0 -33
  330. data/_includes/base/configuration_variables-nested.html.liquid +0 -98
  331. data/_includes/base/configuration_variables.html.liquid +0 -98
  332. data/_includes/base/content.html.liquid +0 -7
  333. data/_includes/base/copyright.html.liquid +0 -70
  334. data/_includes/base/copyvalue.html.liquid +0 -82
  335. data/_includes/base/datatable.html.liquid +0 -83
  336. data/_includes/base/event.html.liquid +0 -105
  337. data/_includes/base/fontawesome.html.liquid +0 -91
  338. data/_includes/base/footer.html.liquid +0 -69
  339. data/_includes/base/head.html.liquid +0 -135
  340. data/_includes/base/heading_anchor.html.liquid +0 -67
  341. data/_includes/base/highlight.html.liquid +0 -84
  342. data/_includes/base/image.html.liquid +0 -42
  343. data/_includes/base/link.html.liquid +0 -129
  344. data/_includes/base/locales.html.liquid +0 -78
  345. data/_includes/base/navbar.html.liquid +0 -121
  346. data/_includes/base/navindex.html.liquid +0 -200
  347. data/_includes/base/ogp.html.liquid +0 -144
  348. data/_includes/base/project.html.liquid +0 -104
  349. data/_includes/base/shortcut.html.liquid +0 -77
  350. data/_includes/base/social.html.liquid +0 -76
  351. data/_includes/base/sponsors-cards.html.liquid +0 -69
  352. data/_includes/base/sponsors-carousel.html.liquid +0 -91
  353. data/_includes/base/title.html.liquid +0 -65
  354. data/_includes/base/toc-generator.html.liquid +0 -189
  355. data/_includes/base/toc.html.liquid +0 -95
  356. data/_includes/download/cards-body-commands.html +0 -7
  357. data/_includes/download/cards-body-convert.html +0 -10
  358. data/_includes/download/cards-body-doc.html +0 -9
  359. data/_includes/download/cards-body-documentation.html +0 -11
  360. data/_includes/download/cards-body-eol.html +0 -16
  361. data/_includes/download/cards-body-mirrors.html +0 -8
  362. data/_includes/download/cards-body-screenshot.html +0 -26
  363. data/_includes/download/cards-body-screenshots.html +0 -32
  364. data/_includes/download/cards-body.html +0 -8
  365. data/_includes/download/cards-header-commands.html +0 -8
  366. data/_includes/download/cards-header-convert.html +0 -8
  367. data/_includes/download/cards-header-doc.html +0 -8
  368. data/_includes/download/cards-header-documentation.html +0 -8
  369. data/_includes/download/cards-header-eol.html +0 -8
  370. data/_includes/download/cards-header-mirrors.html +0 -13
  371. data/_includes/download/cards-header-screenshot.html +0 -8
  372. data/_includes/download/cards-header-screenshots.html +0 -8
  373. data/_includes/download/cards-header.html +0 -13
  374. data/_includes/download/cards.html +0 -120
  375. data/_layouts/base/default.html +0 -68
  376. data/_layouts/download/default.html +0 -7
  377. data/_layouts/people/default.html +0 -68
  378. data/_sass/base/_customization.scss +0 -331
  379. data/_sass/base/_light-dark.scss +0 -10
  380. data/_sass/base/_maps.scss +0 -104
  381. data/_sass/base/_variables.scss +0 -232
  382. data/_sass/bootstrap/_accordion.scss +0 -153
  383. data/_sass/bootstrap/_containers.scss +0 -41
  384. data/_sass/bootstrap/_helpers.scss +0 -12
  385. data/_sass/bootstrap/_maps.scss +0 -174
  386. data/_sass/bootstrap/_offcanvas.scss +0 -147
  387. data/_sass/bootstrap/_placeholders.scss +0 -51
  388. data/_sass/bootstrap/_variables-dark.scss +0 -102
  389. data/_sass/bootstrap/bootstrap-utilities.scss +0 -19
  390. data/_sass/bootstrap/forms/_floating-labels.scss +0 -97
  391. data/_sass/bootstrap/forms/_form-check.scss +0 -189
  392. data/_sass/bootstrap/forms/_form-control.scss +0 -214
  393. data/_sass/bootstrap/forms/_form-range.scss +0 -91
  394. data/_sass/bootstrap/forms/_form-select.scss +0 -80
  395. data/_sass/bootstrap/forms/_form-text.scss +0 -11
  396. data/_sass/bootstrap/forms/_input-group.scss +0 -132
  397. data/_sass/bootstrap/forms/_labels.scss +0 -36
  398. data/_sass/bootstrap/forms/_validation.scss +0 -12
  399. data/_sass/bootstrap/helpers/_color-bg.scss +0 -7
  400. data/_sass/bootstrap/helpers/_colored-links.scss +0 -30
  401. data/_sass/bootstrap/helpers/_focus-ring.scss +0 -5
  402. data/_sass/bootstrap/helpers/_icon-link.scss +0 -25
  403. data/_sass/bootstrap/helpers/_position.scss +0 -36
  404. data/_sass/bootstrap/helpers/_ratio.scss +0 -26
  405. data/_sass/bootstrap/helpers/_stacks.scss +0 -15
  406. data/_sass/bootstrap/helpers/_stretched-link.scss +0 -15
  407. data/_sass/bootstrap/helpers/_text-truncation.scss +0 -7
  408. data/_sass/bootstrap/helpers/_visually-hidden.scss +0 -8
  409. data/_sass/bootstrap/helpers/_vr.scss +0 -8
  410. data/_sass/bootstrap/mixins/_backdrop.scss +0 -14
  411. data/_sass/bootstrap/mixins/_banner.scss +0 -7
  412. data/_sass/bootstrap/mixins/_color-mode.scss +0 -21
  413. data/_sass/bootstrap/mixins/_color-scheme.scss +0 -7
  414. data/_sass/bootstrap/mixins/_container.scss +0 -11
  415. data/_sass/bootstrap/mixins/_table-variants.scss +0 -24
  416. data/_sass/bootstrap/mixins/_utilities.scss +0 -97
  417. data/_sass/bootstrap/mixins/_visually-hidden.scss +0 -38
  418. data/_sass/bootstrap/utilities/_api.scss +0 -47
  419. data/assets/css/base/stylesheet.min.scss +0 -35
  420. data/assets/icons/android-chrome-192.png +0 -0
  421. data/assets/icons/android-chrome-512.png +0 -0
  422. data/assets/icons/apple-touch-icon.png +0 -0
  423. data/assets/icons/favicon-16.png +0 -0
  424. data/assets/icons/favicon-32.png +0 -0
  425. data/assets/icons/favicon.ico +0 -0
  426. data/assets/icons/favicon.svg +0 -1
  427. data/assets/img/anaconda-symbolic.svg +0 -1
  428. data/assets/img/anaconda.svg +0 -1
  429. data/assets/img/base/centos-colors.gpl +0 -55
  430. data/assets/img/base/example-ogp-image.svg +0 -297
  431. data/assets/img/base/example-sponsors-design.svg +0 -226
  432. data/assets/img/base/example-sponsors-logo-1.svg +0 -120
  433. data/assets/img/base/example-sponsors-logo-2.svg +0 -116
  434. data/assets/img/base/example-sponsors-logo-3.svg +0 -123
  435. data/assets/img/base/example-sponsors-logo-4.svg +0 -116
  436. data/assets/img/base/example-sponsors-logo-5.svg +0 -116
  437. data/assets/img/base/example-sponsors-logo-6.svg +0 -116
  438. data/assets/img/base/example-sponsors-logo-7.svg +0 -116
  439. data/assets/img/base/example-sponsors-logo-8.svg +0 -110
  440. data/assets/img/base/page-layout-default.svg +0 -1217
  441. data/assets/img/base/page-with-alert.svg +0 -383
  442. data/assets/img/base/page-with-announcement.svg +0 -956
  443. data/assets/img/base/page-with-artwork.svg +0 -1009
  444. data/assets/img/base/page-with-backtotop.svg +0 -1009
  445. data/assets/img/base/page-with-bits.svg +0 -891
  446. data/assets/img/base/page-with-breadcrumb.svg +0 -676
  447. data/assets/img/base/page-with-breakingnews.svg +0 -957
  448. data/assets/img/base/page-with-color.svg +0 -57
  449. data/assets/img/base/page-with-copyright.svg +0 -1018
  450. data/assets/img/base/page-with-copyvalue.svg +0 -57
  451. data/assets/img/base/page-with-datatable.svg +0 -857
  452. data/assets/img/base/page-with-event.svg +0 -518
  453. data/assets/img/base/page-with-fontawesome.svg +0 -147
  454. data/assets/img/base/page-with-footer.svg +0 -1018
  455. data/assets/img/base/page-with-heading.svg +0 -57
  456. data/assets/img/base/page-with-highlight.svg +0 -86
  457. data/assets/img/base/page-with-image.svg +0 -57
  458. data/assets/img/base/page-with-link.svg +0 -57
  459. data/assets/img/base/page-with-locales.svg +0 -1009
  460. data/assets/img/base/page-with-navbar.svg +0 -958
  461. data/assets/img/base/page-with-navindex.svg +0 -279
  462. data/assets/img/base/page-with-ogp.svg +0 -401
  463. data/assets/img/base/page-with-project.svg +0 -423
  464. data/assets/img/base/page-with-shortcut.svg +0 -937
  465. data/assets/img/base/page-with-social.svg +0 -937
  466. data/assets/img/base/page-with-sponsors.svg +0 -937
  467. data/assets/img/base/page-with-title.svg +0 -584
  468. data/assets/img/base/page-with-toc.svg +0 -399
  469. data/assets/img/base/screenshot-1200x600.svg +0 -114
  470. data/assets/img/centos-dynamicmsg-logo.svg +0 -1
  471. data/assets/img/centos-dynamicmsg-type.svg +0 -1
  472. data/assets/img/centos-dynamicmsg-whitelogo.svg +0 -1
  473. data/assets/img/centos-dynamicmsg-whitetype.svg +0 -1
  474. data/assets/img/centos-gdm-whitelogo.svg +0 -1
  475. data/assets/img/centos-ipa-whiteheader.svg +0 -1
  476. data/assets/img/centos-logo-2bits.svg +0 -1
  477. data/assets/img/centos-logo.svg +0 -1
  478. data/assets/img/centos-message-logo.svg +0 -1
  479. data/assets/img/centos-poweredby-logo.svg +0 -1
  480. data/assets/img/centos-social-share.png +0 -0
  481. data/assets/img/centos-symbol-2bits.svg +0 -1
  482. data/assets/img/centos-symbol.svg +0 -1
  483. data/assets/img/centos-type.svg +0 -1
  484. data/assets/img/centos-vertical-logo.svg +0 -1
  485. data/assets/img/centos-vertical-message-logo.svg +0 -1
  486. data/assets/img/centos-whitelogo.svg +0 -1
  487. data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
  488. data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
  489. data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
  490. data/assets/img/download/distribution-release-screenshot-1.png +0 -0
  491. data/assets/img/download/distribution-release-screenshot-2.png +0 -0
  492. data/assets/img/download/distribution-release-screenshot-3.png +0 -0
  493. data/assets/img/download/distribution-release-screenshot-n.png +0 -0
  494. data/assets/img/download/distribution-release-screenshot-n.svg +0 -134
  495. data/assets/img/download/download.svg +0 -421
  496. data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
  497. data/assets/img/people/page.svg +0 -900
  498. data/assets/img/people/page.webp +0 -0
  499. data/assets/img/people/username.webp +0 -0
  500. data/assets/js/base/backtotop.js +0 -20
  501. data/assets/js/base/copyvalue.js +0 -145
  502. data/assets/js/base/datatable.js +0 -41
  503. data/assets/js/base/heading-anchor.js +0 -108
  504. data/assets/js/base/highlight.js +0 -12
  505. data/assets/js/base/init-tooltips.js +0 -12
  506. data/assets/js/bootstrap.bundle.js +0 -6312
  507. data/assets/js/bootstrap.bundle.js.map +0 -1
  508. data/assets/js/bootstrap.bundle.min.js +0 -7
  509. data/assets/js/bootstrap.bundle.min.js.map +0 -1
  510. data/assets/js/bootstrap.esm.js +0 -4447
  511. data/assets/js/bootstrap.esm.js.map +0 -1
  512. data/assets/js/bootstrap.esm.min.js +0 -7
  513. data/assets/js/bootstrap.esm.min.js.map +0 -1
  514. data/assets/js/bootstrap.js +0 -4494
  515. data/assets/js/bootstrap.js.map +0 -1
  516. data/site.webmanifest +0 -11
@@ -1,399 +0,0 @@
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="396.73569"
7
- viewBox="0 0 169.33334 104.96965"
8
- version="1.1"
9
- id="svg1"
10
- inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
11
- sodipodi:docname="page-with-toc.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"
27
- inkscape:cx="9.5"
28
- inkscape:cy="228.5"
29
- inkscape:window-width="3440"
30
- inkscape:window-height="1371"
31
- inkscape:window-x="0"
32
- inkscape:window-y="0"
33
- inkscape:window-maximized="1"
34
- inkscape:current-layer="g1"
35
- showgrid="false" />
36
- <defs
37
- id="defs1">
38
- <clipPath
39
- clipPathUnits="userSpaceOnUse"
40
- id="clipPath423-2-9-2">
41
- <path
42
- id="path424-5-7-9"
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 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 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 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
45
- </clipPath>
46
- <clipPath
47
- clipPathUnits="userSpaceOnUse"
48
- id="clipPath422-7-5-7">
49
- <path
50
- id="path423-4-9-5"
51
- style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:5.35901;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
52
- d="m 384.68765,-240.41958 c -11.87529,0 -21.43587,9.56058 -21.43587,21.43605 v 781.3093 c 39.02239,-24.16927 82.49718,-44.69119 117.61769,-44.69119 85.41146,0 134.83363,121.38771 220.24638,121.38771 85.41219,0 134.83234,-121.38771 220.24454,-121.38771 85.41221,0 134.83291,121.38771 220.24431,121.38771 85.4128,0 134.835,-121.38771 220.2472,-121.38771 85.4122,0 133.8008,122.9499 220.2443,121.38771 59.8565,-1.08179 142.4196,-64.15922 187.5442,-102.85731 v -755.14851 c 0,-11.87547 -9.5606,-21.43605 -21.4359,-21.43605 z" />
53
- </clipPath>
54
- <clipPath
55
- clipPathUnits="userSpaceOnUse"
56
- id="clipPath421-9-7-6">
57
- <path
58
- id="path422-9-8-4"
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 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 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 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
61
- </clipPath>
62
- <clipPath
63
- clipPathUnits="userSpaceOnUse"
64
- id="clipPath420-4-5-6">
65
- <path
66
- id="path421-5-3-3"
67
- 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"
68
- d="m 725.64338,-185.84881 c -3.11727,0 -5.62692,2.50965 -5.62692,5.62696 V 24.871838 c 10.24338,-6.344434 21.65551,-11.731437 30.87465,-11.731437 22.4205,0 35.39382,31.864274 57.81467,31.864274 22.4207,0 35.39349,-31.864274 57.81419,-31.864274 22.4207,0 35.39363,31.864274 57.81414,31.864274 22.42085,0 35.39417,-31.864274 57.81487,-31.864274 22.42072,0 35.12272,32.274346 57.81412,31.864274 15.7123,-0.283971 37.3852,-16.841797 49.2304,-27.000044 V -180.22185 c 0,-3.11731 -2.5097,-5.62696 -5.627,-5.62696 z" />
69
- </clipPath>
70
- <clipPath
71
- clipPathUnits="userSpaceOnUse"
72
- id="clipPath419-9-3-7">
73
- <path
74
- id="path420-3-8-9"
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 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 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 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
77
- </clipPath>
78
- <clipPath
79
- clipPathUnits="userSpaceOnUse"
80
- id="clipPath416-1-7-7">
81
- <path
82
- id="path417-9-8-0"
83
- 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"
84
- d="m 712.48625,-301.09918 c -3.11726,0 -5.62692,2.50965 -5.62692,5.62696 v 205.093688 c 10.24338,-6.344433 21.65551,-11.731438 30.87465,-11.731438 22.42051,0 35.39382,31.864275 57.81467,31.864275 22.4207,0 35.39349,-31.864275 57.81419,-31.864275 22.4207,0 35.39364,31.864275 57.81414,31.864275 22.42085,0 35.39417,-31.864275 57.81487,-31.864275 22.4207,0 35.12275,32.274347 57.81415,31.864275 15.7123,-0.283971 37.3851,-16.841797 49.2303,-27.000044 V -295.47222 c 0,-3.11731 -2.5096,-5.62696 -5.6269,-5.62696 z" />
85
- </clipPath>
86
- <clipPath
87
- clipPathUnits="userSpaceOnUse"
88
- id="clipPath7">
89
- <path
90
- id="path7"
91
- 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"
92
- d="m 325.19865,-106.97735 c -1.41442,0 -2.55314,1.13872 -2.55314,2.55314 v 82.232091 c 4.64781,-2.878669 9.82592,-5.323019 14.00898,-5.323019 10.17304,0 16.05949,14.458021 26.23269,14.458021 10.17312,0 16.05936,-14.458021 26.23246,-14.458021 10.17312,0 16.05944,14.458021 26.23246,14.458021 10.1732,0 16.05968,-14.458021 26.23277,-14.458021 10.17313,0 15.93652,14.6441 26.23246,14.458021 7.12928,-0.128791 16.96305,-7.641722 22.33766,-12.25092 v -79.116173 c 0,-1.41442 -1.13871,-2.55314 -2.55315,-2.55314 z"
93
- sodipodi:nodetypes="sscsssssscsss" />
94
- </clipPath>
95
- <clipPath
96
- clipPathUnits="userSpaceOnUse"
97
- id="clipPath31-5">
98
- <path
99
- id="path32-4"
100
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
101
- d="m 59.448396,117.38544 c -1.710994,0 -3.088494,1.37751 -3.088494,3.08851 v 99.47524 c 5.622398,-3.4823 11.886298,-6.4392 16.946499,-6.4392 12.306202,0 19.427002,17.4897 31.733399,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.3063,0 19.27831,17.7148 31.7333,17.4897 8.62408,-0.1558 20.51998,-9.2441 27.02142,-14.8198 v -95.70594 c 0,-1.711 -1.37742,-3.08851 -3.0885,-3.08851 z"
102
- sodipodi:nodetypes="sscsssssscsss" />
103
- </clipPath>
104
- <clipPath
105
- clipPathUnits="userSpaceOnUse"
106
- id="clipPath18-6">
107
- <path
108
- id="path19-2"
109
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:15.0821;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
110
- d="m -3334.2611,-1042.3606 c -27.8665,0 -50.3014,22.4349 -50.3014,50.30132 V 628.06067 c 91.5701,-56.71503 193.5881,-104.87302 276.0019,-104.87302 200.4268,0 316.4008,284.84871 516.8309,284.84871 200.4285,0 316.3976,-284.84871 516.8261,-284.84871 200.4301,0 316.3976,284.84871 516.826,284.84871 200.4285,0 316.4025,-284.84871 516.831,-284.84871 200.42847,0 313.97901,288.51483 516.82932,284.84871 140.45773,-2.53746 334.20219,-150.55547 440.08825,-241.36497 V -992.05928 c 0,-27.86642 -22.43323,-50.30132 -50.30133,-50.30132 z"
111
- sodipodi:nodetypes="sscsssssscsss" />
112
- </clipPath>
113
- </defs>
114
- <g
115
- inkscape:label="Layer 1"
116
- inkscape:groupmode="layer"
117
- id="layer1"
118
- transform="translate(-336.55017,-30.6131)">
119
- <rect
120
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.250095;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
121
- id="toc"
122
- width="169.33333"
123
- height="104.96965"
124
- x="336.55017"
125
- y="30.6131"
126
- inkscape:export-filename="page-with-breadcrumb.png"
127
- inkscape:export-xdpi="96"
128
- inkscape:export-ydpi="96" />
129
- <path
130
- id="path12-5"
131
- style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linejoin:bevel;stroke-dasharray:1.58751, 1.58751;stroke-dashoffset:0;paint-order:fill markers stroke;stop-color:#000000"
132
- d="m 504.80144,134.59789 v -18.82138 c -5.36361,4.59975 -15.17744,12.09731 -22.29216,12.22604 -10.27518,0.18554 -16.02666,-14.42893 -26.17905,-14.42893 -10.15264,0 -16.02743,14.42893 -26.17994,14.42893 -10.15239,0 -16.02679,-14.42893 -26.17917,-14.42893 -10.15252,0 -16.02653,14.42893 -26.17892,14.42893 -10.15277,0 -16.0273,-14.42893 -26.17956,-14.42893 -4.17468,0 -9.3419,2.43958 -13.98038,5.31235 v 15.71192"
133
- sodipodi:nodetypes="ccsssssscc" />
134
- <g
135
- id="g7"
136
- clip-path="url(#clipPath7)"
137
- transform="translate(14.948891,138.49885)">
138
- <rect
139
- style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.29045;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
140
- id="rect397-2-5-1"
141
- width="195.10553"
142
- height="11.515541"
143
- x="2499.1555"
144
- y="355.19144"
145
- inkscape:export-filename="screenshot-sponsors-default-layout.png"
146
- inkscape:export-xdpi="96"
147
- inkscape:export-ydpi="96"
148
- clip-path="url(#clipPath423-2-9-2)"
149
- transform="matrix(0.82692737,0,0,0.82692737,-1740.8889,-397.51985)" />
150
- <g
151
- id="g404-1-8-5"
152
- transform="matrix(0.11914478,0,0,0.11914478,279.33891,-88.961102)"
153
- style="fill:#f6edf4;stroke-width:3.80952"
154
- clip-path="url(#clipPath422-7-5-7)">
155
- <g
156
- aria-label="CentOS"
157
- id="g402-2-4-5"
158
- 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"
159
- transform="matrix(0.97560972,0,0,0.97560972,-295.86665,-427.58606)">
160
- <path
161
- 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"
162
- id="path397-0-3-4"
163
- style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
164
- <path
165
- 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"
166
- id="path398-7-7-9"
167
- style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
168
- <path
169
- 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"
170
- id="path399-3-1-8"
171
- style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
172
- <path
173
- 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"
174
- id="path400-1-3-3"
175
- style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
176
- <path
177
- 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"
178
- id="path401-1-8-8"
179
- style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
180
- <path
181
- 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"
182
- id="path402-9-0-5"
183
- style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
184
- </g>
185
- <g
186
- id="g403-0-9-2"
187
- transform="matrix(0.74451128,0.74451128,-0.74451128,0.74451128,6.01137,-157.12384)"
188
- inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
189
- inkscape:export-xdpi="10.11"
190
- inkscape:export-ydpi="10.11"
191
- style="fill:#f6edf4;fill-opacity:1;stroke-width:3.80952">
192
- <path
193
- id="path403-5-7-2"
194
- 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"
195
- 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" />
196
- </g>
197
- </g>
198
- <rect
199
- style="fill:#f6edf4;fill-opacity:1;stroke:#f6edf4;stroke-width:0.145225;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
200
- id="rect404-6-9-2"
201
- width="9.556036"
202
- height="6.0348539"
203
- x="2670.1716"
204
- y="357.93179"
205
- rx="0.72612405"
206
- ry="0.72612405"
207
- clip-path="url(#clipPath421-9-7-6)"
208
- transform="matrix(0.82692737,0,0,0.82692737,-1740.8889,-397.51985)" />
209
- <g
210
- id="g406-7-9-7"
211
- transform="matrix(0.45388488,0,0,0.45388488,-4.1862063,-33.251832)"
212
- style="stroke:#9a9996;stroke-opacity:1"
213
- clip-path="url(#clipPath420-4-5-6)">
214
- <path
215
- style="fill:none;stroke:#d9b9d1;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
216
- d="m 1040.8931,-147.50672 h 12.5172"
217
- id="path404-7-3-0" />
218
- <path
219
- style="fill:none;stroke:#d9b9d1;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
220
- d="m 1040.8931,-144.94685 h 12.5172"
221
- id="path405-4-2-3" />
222
- <path
223
- style="fill:none;stroke:#d9b9d1;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
224
- d="m 1040.8931,-142.38698 h 12.5172"
225
- id="path406-0-4-4" />
226
- </g>
227
- <path
228
- style="fill:none;stroke:none;stroke-width:0.145225px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
229
- d="m 2539.0625,357.24501 v 7.40839"
230
- id="path407-6-3-6"
231
- clip-path="url(#clipPath419-9-3-7)"
232
- transform="matrix(0.82692737,0,0,0.82692737,-1740.8889,-397.51985)" />
233
- <g
234
- id="g1">
235
- <g
236
- id="g411-8-2-3"
237
- transform="matrix(0.45388488,0,0,0.45388488,2.3015904,-34.489811)"
238
- clip-path="url(#clipPath416-1-7-7)">
239
- <rect
240
- style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.100055;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
241
- id="rect408-5-0-4"
242
- width="33.323124"
243
- height="7.9375"
244
- x="739.05914"
245
- y="-125.37652"
246
- rx="1.3229167"
247
- ry="1.3229167" />
248
- <rect
249
- style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.100055;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
250
- id="rect409-2-1-3"
251
- width="33.323124"
252
- height="7.9375"
253
- x="778.5531"
254
- y="-125.37652"
255
- rx="1.3229167"
256
- ry="1.3229167" />
257
- <rect
258
- style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.100055;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
259
- id="rect410-6-7-9"
260
- width="33.323124"
261
- height="7.9375"
262
- x="818.04712"
263
- y="-125.37652"
264
- rx="1.3229167"
265
- ry="1.3229167" />
266
- <path
267
- style="fill:none;stroke:#f6edf4;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
268
- d="m 774.56963,-123.04318 1.70092,1.63724 -1.57354,1.63723"
269
- id="path410-0-5-7"
270
- sodipodi:nodetypes="ccc" />
271
- <path
272
- style="fill:none;stroke:#f6edf4;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
273
- d="m 814.06362,-123.04318 1.70092,1.63724 -1.57354,1.63723"
274
- id="path411-6-1-2"
275
- sodipodi:nodetypes="ccc" />
276
- </g>
277
- </g>
278
- <text
279
- xml:space="preserve"
280
- style="font-size:8.99535px;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;stroke:none;stroke-width:0.374807;stroke-linejoin:round"
281
- x="337.71338"
282
- y="-72.728531"
283
- id="text2"><tspan
284
- sodipodi:role="line"
285
- id="tspan2"
286
- style="font-weight:bold;fill:#f6edf4;stroke:none;stroke-width:0.374807"
287
- x="337.71338"
288
- y="-72.728531">Lorem Ipsum</tspan></text>
289
- <text
290
- xml:space="preserve"
291
- style="font-size:3.0489px;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;stroke:none;stroke-width:0.127037;stroke-linejoin:round"
292
- x="337.57336"
293
- y="-67.28476"
294
- id="text3"><tspan
295
- sodipodi:role="line"
296
- id="tspan3"
297
- style="font-style:normal;font-variant:normal;font-weight:100;font-stretch:normal;font-family:Montserrat;-inkscape-font-specification:'Montserrat Thin';fill:#f6edf4;stroke:none;stroke-width:0.127037"
298
- x="337.57336"
299
- y="-67.28476">Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...</tspan></text>
300
- <g
301
- id="g939-1"
302
- transform="matrix(0.48207428,0,0,0.48207428,-54.328089,-383.05759)">
303
- <rect
304
- style="fill:#a14f8c;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"
305
- id="rect937-2"
306
- width="286.95578"
307
- height="27.962162"
308
- x="813.31335"
309
- y="667.367"
310
- rx="4.9763589"
311
- ry="4.9763589" />
312
- <g
313
- id="g938-7"
314
- transform="matrix(0.02677882,0,0,0.02677882,950.79278,674.49279)"
315
- style="fill:#381a32;fill-opacity:1">
316
- <title
317
- id="title937-0">align-left</title>
318
- </g>
319
- <path
320
- sodipodi:type="star"
321
- style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:3.12919;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
322
- id="path939-3"
323
- inkscape:flatsided="false"
324
- sodipodi:sides="3"
325
- sodipodi:cx="-499.8125"
326
- sodipodi:cy="737.32031"
327
- sodipodi:r1="36.465179"
328
- sodipodi:r2="18.23259"
329
- sodipodi:arg1="1.5707963"
330
- sodipodi:arg2="2.6179939"
331
- inkscape:rounded="0"
332
- inkscape:randomized="0"
333
- 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"
334
- transform="matrix(0.10519844,0,0,0.10519844,1139.2521,602.82419)"
335
- inkscape:transform-center-y="1.0197809"
336
- inkscape:transform-center-x="-6.518711e-05" />
337
- </g>
338
- <rect
339
- style="fill:#f6edf4;stroke:none;stroke-width:0.264583;stroke-linejoin:round"
340
- id="rect3"
341
- width="115.24662"
342
- height="3.3675957"
343
- x="337.89185"
344
- y="-42.559658"
345
- rx="1.3229166"
346
- ry="1.3229166" />
347
- <rect
348
- style="fill:#f6edf4;stroke:none;stroke-width:0.264583;stroke-linejoin:round"
349
- id="rect3-2"
350
- width="37.604816"
351
- height="3.3675957"
352
- x="341.8653"
353
- y="-56.281002"
354
- rx="1.3229166"
355
- ry="1.3229166" />
356
- <rect
357
- style="fill:#f6edf4;stroke:none;stroke-width:0.264583;stroke-linejoin:round"
358
- id="rect4"
359
- width="66.603561"
360
- height="3.3675957"
361
- x="337.89185"
362
- y="-36.198643"
363
- rx="1.3229166"
364
- ry="1.3229166" />
365
- <rect
366
- style="fill:#f6edf4;stroke:none;stroke-width:0.264583;stroke-linejoin:round"
367
- id="rect5"
368
- width="84.564072"
369
- height="3.3675957"
370
- x="337.89185"
371
- y="-29.463451"
372
- rx="1.3229166"
373
- ry="1.3229166" />
374
- <rect
375
- style="fill:#f6edf4;stroke:none;stroke-width:0.264583;stroke-linejoin:round"
376
- id="rect6"
377
- width="66.603561"
378
- height="3.3675957"
379
- x="409.4798"
380
- y="-36.198643"
381
- rx="1.3229166"
382
- ry="1.3229166" />
383
- <rect
384
- style="fill:#f6edf4;stroke:none;stroke-width:0.264583;stroke-linejoin:round"
385
- id="rect7"
386
- width="127.59448"
387
- height="3.3675957"
388
- x="337.89185"
389
- y="-22.54117"
390
- rx="1.3229166"
391
- ry="1.3229166" />
392
- </g>
393
- <path
394
- id="path664"
395
- style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.765518;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
396
- d="m 340.01525,31.755727 c -1.41442,0 -2.55314,1.138723 -2.55314,2.553137 v 82.232076 c 4.64781,-2.87867 9.82592,-5.32302 14.00898,-5.32302 10.17303,0 16.0595,14.45802 26.2327,14.45802 10.17312,0 16.05934,-14.45802 26.23246,-14.45802 10.17311,0 16.05942,14.45802 26.23245,14.45802 10.1732,0 16.05967,-14.45802 26.23278,-14.45802 10.17312,0 15.9365,14.6441 26.23246,14.45802 7.12927,-0.12879 16.96304,-7.64172 22.33765,-12.25092 V 34.308864 c 0,-1.414414 -1.13872,-2.553137 -2.55314,-2.553137 z"
397
- sodipodi:nodetypes="sscsssssscsss" />
398
- </g>
399
- </svg>
@@ -1,114 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
-
4
- <svg
5
- width="1200"
6
- height="600"
7
- viewBox="0 0 317.5 158.75"
8
- version="1.1"
9
- id="svg1"
10
- inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
11
- sodipodi:docname="screenshot-example-1200x600.svg"
12
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
- xmlns:xlink="http://www.w3.org/1999/xlink"
15
- xmlns="http://www.w3.org/2000/svg"
16
- xmlns:svg="http://www.w3.org/2000/svg">
17
- <sodipodi:namedview
18
- id="namedview1"
19
- pagecolor="#ffffff"
20
- bordercolor="#000000"
21
- borderopacity="0.25"
22
- inkscape:showpageshadow="false"
23
- inkscape:pageopacity="0.0"
24
- inkscape:pagecheckerboard="true"
25
- inkscape:deskcolor="#d1d1d1"
26
- inkscape:document-units="px"
27
- inkscape:zoom="1"
28
- inkscape:cx="600"
29
- inkscape:cy="380.5"
30
- inkscape:window-width="3440"
31
- inkscape:window-height="1371"
32
- inkscape:window-x="0"
33
- inkscape:window-y="0"
34
- inkscape:window-maximized="1"
35
- inkscape:current-layer="layer1"
36
- showborder="false"
37
- borderlayer="false"
38
- showgrid="false" />
39
- <defs
40
- id="defs1" />
41
- <g
42
- inkscape:label="Layer 1"
43
- inkscape:groupmode="layer"
44
- id="layer1"
45
- transform="translate(-163.5125,-116.41667)">
46
- <g
47
- id="g10">
48
- <rect
49
- style="fill:none;fill-opacity:1;stroke:none;stroke-width:1.28166;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
50
- id="screenshot-example-1200x600"
51
- width="317.5"
52
- height="158.75"
53
- x="163.5125"
54
- y="116.41667"
55
- inkscape:export-filename="screenshot-example-1600x1200.webp"
56
- inkscape:export-xdpi="152.91"
57
- inkscape:export-ydpi="152.91"
58
- ry="2.6458335"
59
- rx="2.6458335" />
60
- <g
61
- id="path1"
62
- style="opacity:1">
63
- <path
64
- id="path8"
65
- style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#ffffff;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
66
- d="M 474.43151 121.30681 L 337.3391 188.0986 L 339.309 188.0986 L 474.81029 122.08196 L 474.43151 121.30681 z M 305.21548 203.74932 L 169.71471 269.76545 L 170.09349 270.54111 L 307.18538 203.74932 L 305.21548 203.74932 z " />
67
- <g
68
- id="g2">
69
- <g
70
- id="path2"
71
- style="opacity:1">
72
- <path
73
- style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#ffffff;fill-rule:evenodd;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
74
- d="m 476.8613,120.60267 -2.4131,3.57824 -1.89199,-3.88334 z"
75
- id="path3" />
76
- <path
77
- style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#ffffff;fill-rule:evenodd;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
78
- d="m 472.07812,119.97461 2.33008,4.78125 2.97071,-4.4043 z m 0.95508,0.64453 3.31055,0.23633 -1.85547,2.75 z"
79
- id="path4" />
80
- </g>
81
- <g
82
- id="path5"
83
- style="opacity:1">
84
- <path
85
- style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#ffffff;fill-rule:evenodd;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
86
- d="m 167.66368,271.24524 2.4131,-3.57824 1.89199,3.88334 z"
87
- id="path6" />
88
- <path
89
- style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#ffffff;fill-rule:evenodd;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
90
- d="m 170.11719,267.0918 -2.97071,4.40625 5.29883,0.375 z m -0.0801,1.15039 1.45312,2.98633 -3.30859,-0.23633 z"
91
- id="path7" />
92
- </g>
93
- </g>
94
- </g>
95
- <text
96
- xml:space="preserve"
97
- style="font-size:15.0735px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.464468"
98
- x="322.60919"
99
- y="201.0674"
100
- id="text207"><tspan
101
- sodipodi:role="line"
102
- id="tspan207"
103
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:15.0735px;font-family:Montserrat;-inkscape-font-specification:'Montserrat Light';text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.464468"
104
- x="322.60919"
105
- y="201.0674">1200x600</tspan></text>
106
- <use
107
- x="0"
108
- y="0"
109
- xlink:href="#path1"
110
- id="use10"
111
- transform="matrix(-1,0,0,1,644.52539,0)" />
112
- </g>
113
- </g>
114
- </svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="650" height="210" viewBox="0 0 171.979 55.562"><g aria-label="CentOS" style="font-weight:700;font-size:29.9666px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:&quot;Montserrat Bold&quot;;fill:#a14f8c;fill-opacity:1;stroke-width:.749167"><path d="M63.997 37.042c3.567 0 6.52-1.287 8.45-3.655l-3.041-2.806c-1.374 1.608-3.1 2.426-5.146 2.426-3.83 0-6.549-2.69-6.549-6.549s2.72-6.548 6.55-6.548c2.046 0 3.77.818 5.145 2.397l3.04-2.807c-1.93-2.339-4.882-3.625-8.42-3.625-6.373 0-11.11 4.415-11.11 10.583 0 6.17 4.737 10.584 11.081 10.584M90.163 28.885c0-5.058-3.567-8.157-8.186-8.157-4.795 0-8.39 3.391-8.39 8.098 0 4.678 3.537 8.099 8.975 8.099 2.835 0 5.028-.877 6.49-2.544l-2.427-2.631c-1.081 1.023-2.28 1.52-3.946 1.52-2.398 0-4.064-1.198-4.503-3.157h11.9c.028-.38.087-.877.087-1.228m-8.157-4.707c2.047 0 3.538 1.286 3.86 3.274h-7.748c.321-2.017 1.812-3.274 3.888-3.274M102.763 20.728c-2.134 0-3.976.731-5.203 2.076v-1.842h-4.357v15.729h4.561v-7.777c0-2.894 1.579-4.239 3.772-4.239 2.017 0 3.186 1.17 3.186 3.713v8.303h4.561v-9.005c0-4.794-2.807-6.958-6.52-6.958M122.322 32.715c-.497.38-1.17.584-1.842.584-1.228 0-1.958-.73-1.958-2.075V24.82h3.917v-3.508h-3.917v-3.83h-4.561v3.83h-2.427v3.508h2.427v6.461c0 3.742 2.163 5.643 5.876 5.643 1.403 0 2.778-.322 3.713-.994zM136.355 37.042c6.432 0 11.198-4.473 11.198-10.584s-4.766-10.583-11.198-10.583c-6.46 0-11.197 4.502-11.197 10.583s4.736 10.584 11.197 10.584m0-4.035c-3.654 0-6.402-2.66-6.402-6.549 0-3.888 2.748-6.548 6.402-6.548s6.403 2.66 6.403 6.548-2.748 6.55-6.403 6.55M157.844 37.042c5.847 0 8.683-2.924 8.683-6.344 0-7.514-11.9-4.912-11.9-8.683 0-1.287 1.082-2.34 3.889-2.34 1.813 0 3.771.527 5.672 1.609l1.461-3.596c-1.9-1.199-4.531-1.813-7.104-1.813-5.818 0-8.624 2.894-8.624 6.373 0 7.602 11.899 4.97 11.899 8.8 0 1.257-1.14 2.193-3.947 2.193-2.456 0-5.029-.877-6.754-2.134l-1.608 3.567c1.813 1.403 5.087 2.368 8.333 2.368"/></g><text xml:space="preserve" x="52.489" y="50.139" style="font-size:10.9634px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:&quot;Montserrat, Normal&quot;;fill:#a14f8c;stroke-width:.274085"><tspan x="52.489" y="50.139" style="font-weight:700;fill:#a14f8c;stroke-width:.274085">=MSG=</tspan></text><g transform="matrix(1.0529 0 0 1.05289 -382.2 271.277)"><circle cx="435.079" cy="-124.144" r="20.103" style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000" transform="rotate(-15)"/><path d="m384.257-249.617-3.875 3.875h-5.479v5.48l-3.875 3.875 3.875 3.874v5.48h5.48l3.874 3.875 3.875-3.875h5.48v-5.48l3.874-3.874-3.875-3.875-5.48-5.48zm1.176 3.875v4.18l-1.176 1.176-1.176-1.176v-4.18zm-6.959 1.908 2.956 2.957v1.662h-1.663l-2.956-2.956zm-3.571 6.27h4.18l1.176 1.177-1.176 1.176h-4.18zm14.434 0h4.18v2.353h-4.18l-1.176-1.176zm-9.503 3.937h1.663v1.663l-2.956 2.956-1.663-1.663zm7.184 0h1.663l2.956 2.956-1.663 1.663-2.956-2.956zm-2.76 1.143 1.175 1.176v4.18h-2.352v-4.18z" style="fill:#fff;fill-opacity:1;stroke-width:7.93746;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/><path d="m385.433-239.09-1.176 1.04-1.176-1.04v1.526h-1.526l1.039 1.177-1.04 1.176h1.527v1.526l1.176-1.04 1.176 1.04v-1.526h1.527l-1.04-1.176 1.04-1.177h-1.527z" style="fill:#efa724;fill-opacity:1;stroke-width:8.59212;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/><path d="m388.135-245.738 1.905 1.905-2.956 2.956v1.663h1.663l2.956-2.956 1.911 1.911-.003-5.483z" style="fill:#efa724;fill-opacity:1;stroke-width:6.14231;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/></g></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="429.392" height="130" viewBox="0 0 113.61 34.396"><g aria-label="CentOS" style="font-weight:700;font-size:29.9666px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:&quot;Montserrat Bold&quot;;fill:#a14f8c;fill-opacity:1;stroke-width:.749167"><path d="M11.08 21.167c3.567 0 6.52-1.287 8.45-3.655l-3.041-2.806c-1.374 1.608-3.1 2.426-5.146 2.426-3.83 0-6.548-2.69-6.548-6.549s2.719-6.548 6.548-6.548c2.047 0 3.772.818 5.146 2.397l3.04-2.807C17.6 1.286 14.647 0 11.11 0 4.737 0 0 4.415 0 10.583c0 6.17 4.736 10.584 11.08 10.584M37.246 13.01c0-5.058-3.567-8.157-8.186-8.157-4.794 0-8.39 3.391-8.39 8.098 0 4.678 3.537 8.099 8.975 8.099 2.836 0 5.029-.877 6.49-2.544l-2.426-2.631c-1.082 1.023-2.28 1.52-3.947 1.52-2.397 0-4.064-1.198-4.502-3.157h11.899c.029-.38.087-.877.087-1.228M29.09 8.303c2.047 0 3.538 1.286 3.86 3.274H25.2c.322-2.017 1.813-3.274 3.888-3.274M49.847 4.853c-2.134 0-3.976.731-5.204 2.076V5.087h-4.356v15.729h4.56v-7.777c0-2.894 1.58-4.24 3.772-4.24 2.017 0 3.187 1.17 3.187 3.714v8.303h4.56V11.81c0-4.794-2.806-6.958-6.52-6.958M69.405 16.84c-.497.38-1.169.584-1.841.584-1.228 0-1.96-.73-1.96-2.075V8.946h3.918V5.438h-3.917v-3.83h-4.56v3.83h-2.427v3.508h2.426v6.461c0 3.742 2.164 5.643 5.876 5.643 1.404 0 2.778-.322 3.713-.994zM83.439 21.167c6.431 0 11.197-4.473 11.197-10.584S89.87 0 83.439 0C76.978 0 72.24 4.502 72.24 10.583s4.737 10.584 11.198 10.584m0-4.035c-3.655 0-6.403-2.66-6.403-6.549 0-3.888 2.748-6.548 6.403-6.548s6.402 2.66 6.402 6.548-2.748 6.55-6.402 6.55M104.927 21.167c5.847 0 8.683-2.924 8.683-6.345 0-7.513-11.9-4.911-11.9-8.683 0-1.286 1.083-2.338 3.89-2.338 1.812 0 3.77.526 5.671 1.608l1.462-3.596C110.833.614 108.2 0 105.629 0c-5.818 0-8.625 2.894-8.625 6.373 0 7.602 11.899 4.97 11.899 8.8 0 1.257-1.14 2.193-3.947 2.193-2.456 0-5.028-.877-6.753-2.134l-1.608 3.567c1.812 1.403 5.087 2.368 8.332 2.368"/></g><text xml:space="preserve" x="-.428" y="34.264" style="font-size:10.9634px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:&quot;Montserrat, Normal&quot;;fill:#a14f8c;stroke-width:.274085"><tspan x="-.428" y="34.264" style="font-weight:700;fill:#a14f8c;stroke-width:.274085">=MSG=</tspan></text></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="650" height="210" viewBox="0 0 171.979 55.562"><g aria-label="CentOS" style="font-weight:700;font-size:29.9666px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:&quot;Montserrat Bold&quot;;fill:#fff;fill-opacity:1;stroke-width:.749167"><path d="M865.94 362.406c3.657 0 6.683-1.319 8.66-3.746l-3.116-2.877c-1.408 1.649-3.176 2.488-5.274 2.488-3.925 0-6.712-2.757-6.712-6.713s2.787-6.712 6.712-6.712c2.098 0 3.866.839 5.274 2.457l3.117-2.877c-1.978-2.397-5.004-3.716-8.63-3.716-6.533 0-11.388 4.525-11.388 10.848s4.855 10.848 11.358 10.848M892.76 354.045c0-5.184-3.655-8.36-8.39-8.36-4.915 0-8.6 3.476-8.6 8.3 0 4.795 3.626 8.301 9.2 8.301 2.906 0 5.154-.899 6.652-2.607l-2.487-2.697c-1.11 1.049-2.338 1.558-4.046 1.558-2.457 0-4.165-1.228-4.615-3.236h12.197c.03-.39.09-.9.09-1.259m-8.36-4.824c2.098 0 3.626 1.318 3.956 3.356h-7.942c.33-2.068 1.858-3.356 3.986-3.356M905.676 345.685c-2.187 0-4.075.749-5.334 2.127v-1.888h-4.465v16.122h4.675v-7.97c0-2.967 1.618-4.346 3.866-4.346 2.067 0 3.266 1.199 3.266 3.806v8.51h4.675v-9.23c0-4.914-2.877-7.131-6.683-7.131M925.724 357.971c-.51.39-1.199.6-1.888.6-1.259 0-2.008-.75-2.008-2.128v-6.563h4.016v-3.596h-4.016v-3.926h-4.675v3.926h-2.487v3.596h2.487v6.623c0 3.835 2.218 5.783 6.024 5.783 1.438 0 2.847-.33 3.805-1.019zM940.108 362.406c6.592 0 11.477-4.585 11.477-10.848s-4.885-10.848-11.477-10.848c-6.623 0-11.477 4.615-11.477 10.848s4.854 10.848 11.477 10.848m0-4.135c-3.746 0-6.563-2.727-6.563-6.713 0-3.985 2.817-6.712 6.563-6.712s6.563 2.727 6.563 6.712c0 3.986-2.817 6.713-6.563 6.713M962.133 362.406c5.994 0 8.9-2.997 8.9-6.503 0-7.701-12.196-5.034-12.196-8.9 0-1.318 1.109-2.397 3.986-2.397 1.857 0 3.865.54 5.813 1.648l1.498-3.686c-1.947-1.228-4.644-1.858-7.282-1.858-5.963 0-8.84 2.967-8.84 6.533 0 7.791 12.197 5.094 12.197 9.02 0 1.288-1.169 2.247-4.046 2.247-2.517 0-5.154-.899-6.922-2.187l-1.648 3.656c1.858 1.438 5.214 2.427 8.54 2.427" style="fill:#fff" transform="translate(-780.823 -316.525)scale(.97561)"/></g><text xml:space="preserve" x="52.489" y="50.139" style="font-size:10.9634px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:&quot;Montserrat, Normal&quot;;fill:#fff;stroke-width:.274085"><tspan x="52.489" y="50.139" style="font-weight:700;fill:#fff;stroke-width:.274085">=MSG=</tspan></text><g transform="matrix(1.0529 0 0 1.05289 -382.2 271.277)"><circle cx="435.079" cy="-124.144" r="20.103" style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000" transform="rotate(-15)"/><path d="m384.257-249.617-3.875 3.875h-5.479v5.48l-3.875 3.875 3.875 3.874v5.48h5.48l3.874 3.875 3.875-3.875h5.48v-5.48l3.874-3.874-3.875-3.875-5.48-5.48zm1.176 3.875v4.18l-1.176 1.176-1.176-1.176v-4.18zm-6.959 1.908 2.956 2.957v1.662h-1.663l-2.956-2.956zm-3.571 6.27h4.18l1.176 1.177-1.176 1.176h-4.18zm14.434 0h4.18v2.353h-4.18l-1.176-1.176zm-9.503 3.937h1.663v1.663l-2.956 2.956-1.663-1.663zm7.184 0h1.663l2.956 2.956-1.663 1.663-2.956-2.956zm-2.76 1.143 1.175 1.176v4.18h-2.352v-4.18z" style="fill:#fff;fill-opacity:1;stroke-width:7.93746;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/><path d="m385.433-239.09-1.176 1.04-1.176-1.04v1.526h-1.526l1.039 1.177-1.04 1.176h1.527v1.526l1.176-1.04 1.176 1.04v-1.526h1.527l-1.04-1.176 1.04-1.177h-1.527z" style="fill:#efa724;fill-opacity:1;stroke-width:8.59212;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/><path d="m388.135-245.738 1.905 1.905-2.956 2.956v1.663h1.663l2.956-2.956 1.911 1.911-.003-5.483z" style="fill:#efa724;fill-opacity:1;stroke-width:6.14231;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/></g></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="429.392" height="130" viewBox="0 0 113.61 34.396"><g aria-label="CentOS" style="font-weight:700;font-size:29.9666px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:&quot;Montserrat Bold&quot;;fill:#fff;fill-opacity:1;stroke-width:.749167"><path d="M865.94 362.406c3.657 0 6.683-1.319 8.66-3.746l-3.116-2.877c-1.408 1.649-3.176 2.488-5.274 2.488-3.925 0-6.712-2.757-6.712-6.713s2.787-6.712 6.712-6.712c2.098 0 3.866.839 5.274 2.457l3.117-2.877c-1.978-2.397-5.004-3.716-8.63-3.716-6.533 0-11.388 4.525-11.388 10.848s4.855 10.848 11.358 10.848M892.76 354.045c0-5.184-3.655-8.36-8.39-8.36-4.915 0-8.6 3.476-8.6 8.3 0 4.795 3.626 8.301 9.2 8.301 2.906 0 5.154-.899 6.652-2.607l-2.487-2.697c-1.11 1.049-2.338 1.558-4.046 1.558-2.457 0-4.165-1.228-4.615-3.236h12.197c.03-.39.09-.9.09-1.259m-8.36-4.824c2.098 0 3.626 1.318 3.956 3.356h-7.942c.33-2.068 1.858-3.356 3.986-3.356M905.676 345.685c-2.187 0-4.075.749-5.334 2.127v-1.888h-4.465v16.122h4.675v-7.97c0-2.967 1.618-4.346 3.866-4.346 2.067 0 3.266 1.199 3.266 3.806v8.51h4.675v-9.23c0-4.914-2.877-7.131-6.683-7.131M925.724 357.971c-.51.39-1.199.6-1.888.6-1.259 0-2.008-.75-2.008-2.128v-6.563h4.016v-3.596h-4.016v-3.926h-4.675v3.926h-2.487v3.596h2.487v6.623c0 3.835 2.218 5.783 6.024 5.783 1.438 0 2.847-.33 3.805-1.019zM940.108 362.406c6.592 0 11.477-4.585 11.477-10.848s-4.885-10.848-11.477-10.848c-6.623 0-11.477 4.615-11.477 10.848s4.854 10.848 11.477 10.848m0-4.135c-3.746 0-6.563-2.727-6.563-6.713 0-3.985 2.817-6.712 6.563-6.712s6.563 2.727 6.563 6.712c0 3.986-2.817 6.713-6.563 6.713M962.133 362.406c5.994 0 8.9-2.997 8.9-6.503 0-7.701-12.196-5.034-12.196-8.9 0-1.318 1.109-2.397 3.986-2.397 1.857 0 3.865.54 5.813 1.648l1.498-3.686c-1.947-1.228-4.644-1.858-7.282-1.858-5.963 0-8.84 2.967-8.84 6.533 0 7.791 12.197 5.094 12.197 9.02 0 1.288-1.169 2.247-4.046 2.247-2.517 0-5.154-.899-6.922-2.187l-1.648 3.656c1.858 1.438 5.214 2.427 8.54 2.427" style="fill:#fff" transform="translate(-833.74 -332.4)scale(.97561)"/></g><text xml:space="preserve" x="-.428" y="34.264" style="font-size:10.9634px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:&quot;Montserrat, Normal&quot;;fill:#fff;stroke-width:.274085"><tspan x="-.428" y="34.264" style="font-weight:700;fill:#fff;stroke-width:.274085">=MSG=</tspan></text></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="609.392" height="160" viewBox="0 0 161.235 42.333"><g aria-label="CentOS" style="font-weight:700;font-size:29.9666px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:&quot;Montserrat Bold&quot;;fill:#fff;fill-opacity:1;stroke-width:.749167"><path d="M865.94 362.406c3.657 0 6.683-1.319 8.66-3.746l-3.116-2.877c-1.408 1.649-3.176 2.488-5.274 2.488-3.925 0-6.712-2.757-6.712-6.713s2.787-6.712 6.712-6.712c2.098 0 3.866.839 5.274 2.457l3.117-2.877c-1.978-2.397-5.004-3.716-8.63-3.716-6.533 0-11.388 4.525-11.388 10.848s4.855 10.848 11.358 10.848M892.76 354.045c0-5.184-3.655-8.36-8.39-8.36-4.915 0-8.6 3.476-8.6 8.3 0 4.795 3.626 8.301 9.2 8.301 2.906 0 5.154-.899 6.652-2.607l-2.487-2.697c-1.11 1.049-2.338 1.558-4.046 1.558-2.457 0-4.165-1.228-4.615-3.236h12.197c.03-.39.09-.9.09-1.259m-8.36-4.824c2.098 0 3.626 1.318 3.956 3.356h-7.942c.33-2.068 1.858-3.356 3.986-3.356M905.676 345.685c-2.187 0-4.075.749-5.334 2.127v-1.888h-4.465v16.122h4.675v-7.97c0-2.967 1.618-4.346 3.866-4.346 2.067 0 3.266 1.199 3.266 3.806v8.51h4.675v-9.23c0-4.914-2.877-7.131-6.683-7.131M925.724 357.971c-.51.39-1.199.6-1.888.6-1.259 0-2.008-.75-2.008-2.128v-6.563h4.016v-3.596h-4.016v-3.926h-4.675v3.926h-2.487v3.596h2.487v6.623c0 3.835 2.218 5.783 6.024 5.783 1.438 0 2.847-.33 3.805-1.019zM940.108 362.406c6.592 0 11.477-4.585 11.477-10.848s-4.885-10.848-11.477-10.848c-6.623 0-11.477 4.615-11.477 10.848s4.854 10.848 11.477 10.848m0-4.135c-3.746 0-6.563-2.727-6.563-6.713 0-3.985 2.817-6.712 6.563-6.712s6.563 2.727 6.563 6.712c0 3.986-2.817 6.713-6.563 6.713M962.133 362.406c5.994 0 8.9-2.997 8.9-6.503 0-7.701-12.196-5.034-12.196-8.9 0-1.318 1.109-2.397 3.986-2.397 1.857 0 3.865.54 5.813 1.648l1.498-3.686c-1.947-1.228-4.644-1.858-7.282-1.858-5.963 0-8.84 2.967-8.84 6.533 0 7.791 12.197 5.094 12.197 9.02 0 1.288-1.169 2.247-4.046 2.247-2.517 0-5.154-.899-6.922-2.187l-1.648 3.656c1.858 1.438 5.214 2.427 8.54 2.427" style="fill:#fff" transform="translate(-786.115 -321.817)scale(.97561)"/></g><g style="fill:#6e5b98;fill-opacity:1" transform="matrix(1.0529 0 0 1.05289 -387.492 265.985)"><circle cx="435.079" cy="-124.144" r="20.103" style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000" transform="rotate(-15)"/><path d="m384.257-249.617-3.875 3.875h-5.479v5.48l-3.875 3.875 3.875 3.874v5.48h5.48l3.874 3.875 3.875-3.875h5.48v-5.48l3.874-3.874-3.875-3.875-5.48-5.48zm1.176 3.875v4.18l-1.176 1.176-1.176-1.176v-4.18zm-6.959 1.908 2.956 2.957v1.662h-1.663l-2.956-2.956zm-3.571 6.27h4.18l1.176 1.177-1.176 1.176h-4.18zm14.434 0h4.18v2.353h-4.18l-1.176-1.176zm-9.503 3.937h1.663v1.663l-2.956 2.956-1.663-1.663zm7.184 0h1.663l2.956 2.956-1.663 1.663-2.956-2.956zm-2.76 1.143 1.175 1.176v4.18h-2.352v-4.18z" style="fill:#fff;fill-opacity:1;stroke-width:7.93746;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/><path d="m385.433-239.09-1.176 1.04-1.176-1.04v1.526h-1.526l1.039 1.177-1.04 1.176h1.527v1.526l1.176-1.04 1.176 1.04v-1.526h1.527l-1.04-1.176 1.04-1.177h-1.527z" style="fill:#efa724;fill-opacity:1;stroke-width:8.59212;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/><path d="m388.135-245.738 1.905 1.905-2.956 2.956v1.663h1.663l2.956-2.956 1.911 1.911-.003-5.483z" style="fill:#efa724;fill-opacity:1;stroke-width:6.14231;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/></g></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="461.382" height="20" viewBox="0 0 122.074 5.292"><defs><filter id="a" width="1" height="1" x="0" y="0" style="color-interpolation-filters:sRGB"><feGaussianBlur/></filter></defs><path d="M2125.969 188.76c.891 0 1.63-.322 2.112-.914l-.76-.702c-.344.402-.775.607-1.287.607-.957 0-1.637-.673-1.637-1.638s.68-1.637 1.637-1.637c.512 0 .943.205 1.287.6l.76-.702c-.483-.585-1.22-.907-2.105-.907-1.594 0-2.778 1.104-2.778 2.646s1.184 2.646 2.77 2.646M2132.51 186.72c0-1.264-.892-2.04-2.046-2.04-1.2 0-2.098.849-2.098 2.025 0 1.17.884 2.025 2.244 2.025.709 0 1.257-.22 1.622-.636l-.606-.658c-.27.256-.57.38-.987.38-.6 0-1.016-.3-1.126-.79h2.975c.01-.094.022-.218.022-.306zm-2.04-1.177c.512 0 .885.322.966.819h-1.937c.08-.504.453-.819.972-.819M2135.66 184.68c-.533 0-.994.183-1.3.52v-.46h-1.09v3.931h1.14v-1.944c0-.723.395-1.06.943-1.06.504 0 .797.293.797.929v2.075h1.14v-2.25c0-1.2-.702-1.74-1.63-1.74M2140.55 187.677a.77.77 0 0 1-.46.147c-.308 0-.49-.183-.49-.52v-1.6h.979v-.877h-.98v-.958h-1.14v.958h-.606v.877h.606v1.615c0 .936.541 1.41 1.47 1.41.35 0 .694-.08.928-.248zM2144.058 188.76c1.608 0 2.8-1.12 2.8-2.647s-1.192-2.646-2.8-2.646c-1.615 0-2.8 1.126-2.8 2.646s1.185 2.646 2.8 2.646m0-1.01c-.913 0-1.6-.665-1.6-1.637s.687-1.637 1.6-1.637c.914 0 1.6.665 1.6 1.637s-.686 1.638-1.6 1.638M2149.43 188.76c1.462 0 2.17-.732 2.17-1.587 0-1.878-2.974-1.228-2.974-2.17 0-.322.27-.585.972-.585.453 0 .943.131 1.418.402l.366-.9c-.475-.299-1.133-.453-1.776-.453-1.455 0-2.157.724-2.157 1.594 0 1.9 2.975 1.242 2.975 2.2 0 .314-.285.548-.987.548-.613 0-1.257-.22-1.688-.534l-.402.892c.453.35 1.272.592 2.083.592" style="font-weight:700;font-size:35.8707px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:&quot;Montserrat Bold&quot;;letter-spacing:0;word-spacing:0;fill:#fff;stroke-width:.0408834" transform="translate(-2123.198 -183.467)"/><g aria-label="IDENTITY MANAGEMENT" style="font-size:7.30893px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:&quot;Montserrat, Normal&quot;;fill:#fff;stroke-width:.182724;filter:url(#a)" transform="translate(501.796 .181)scale(.99974)"><path d="M-470.394 5.023h.373V-.093h-.373zM-468.238 5.023h2.025c1.622 0 2.719-1.067 2.719-2.558s-1.097-2.558-2.72-2.558h-2.024zm.373-.336V.243h1.622c1.448 0 2.376.921 2.376 2.222s-.928 2.222-2.376 2.222zM-461.828 4.687V2.59h2.726v-.33h-2.726V.244h3.048v-.336h-3.42v5.116h3.53v-.336ZM-453.518-.093v4.444l-3.479-4.444h-.314v5.116h.373V.58l3.486 4.443h.307V-.093zM-450.382 5.023h.373V.243h1.841v-.336h-4.056v.336h1.842zM-447.247 5.023h.373V-.093h-.373zM-444.111 5.023h.373V.243h1.841v-.336h-4.056v.336h1.842zM-437.358-.093h-.387l-1.85 3.011-1.848-3.01h-.41l2.061 3.354v1.761h.373V3.262ZM-429.347 5.023l-.007-5.116h-.307l-2.288 3.954-2.288-3.954h-.314v5.116h.366V.66l2.141 3.684h.183l2.141-3.699.007 4.378zM-423.741 5.023h.402l-2.354-5.116h-.372l-2.354 5.116h.402l.65-1.44h2.968zm-3.48-1.754 1.338-2.953 1.345 2.953zM-418.618-.093v4.444l-3.479-4.444h-.314v5.116h.373V.58l3.486 4.443h.307V-.093zM-412.639 5.023h.402l-2.353-5.116h-.373l-2.354 5.116h.402l.65-1.44h2.968zm-3.479-1.754 1.338-2.953 1.344 2.953zM-407.727 4.249c-.417.336-.914.467-1.455.467-1.33 0-2.317-.972-2.317-2.25 0-1.287.987-2.252 2.317-2.252.621 0 1.155.168 1.6.607l.235-.249c-.453-.468-1.104-.701-1.842-.701-1.55 0-2.683 1.103-2.683 2.594s1.133 2.595 2.676 2.595c.701 0 1.366-.22 1.827-.658V2.487h-.358zM-405.36 4.687V2.59h2.727v-.33h-2.726V.244h3.048v-.336h-3.421v5.116h3.53v-.336ZM-395.638 5.023l-.007-5.116h-.307l-2.288 3.954-2.288-3.954h-.314v5.116h.365V.66l2.142 3.684h.183l2.141-3.699.007 4.378zM-393.482 4.687V2.59h2.726v-.33h-2.726V.244h3.048v-.336h-3.421v5.116h3.53v-.336ZM-385.172-.093v4.444l-3.48-4.444h-.313v5.116h.372V.58l3.487 4.443h.307V-.093zM-382.037 5.023h.373V.243h1.842v-.336h-4.056v.336h1.841z" style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:7.30893px;font-family:Montserrat;-inkscape-font-specification:&quot;Montserrat, Light&quot;;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal"/></g></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="609.392" height="160" viewBox="0 0 161.235 42.333"><g aria-label="CentOS" style="font-weight:700;font-size:29.9666px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:&quot;Montserrat Bold&quot;;fill:#000;fill-opacity:1;stroke-width:.749167"><path d="M865.94 362.406c3.657 0 6.683-1.319 8.66-3.746l-3.116-2.877c-1.408 1.649-3.176 2.488-5.274 2.488-3.925 0-6.712-2.757-6.712-6.713s2.787-6.712 6.712-6.712c2.098 0 3.866.839 5.274 2.457l3.117-2.877c-1.978-2.397-5.004-3.716-8.63-3.716-6.533 0-11.388 4.525-11.388 10.848s4.855 10.848 11.358 10.848M892.76 354.045c0-5.184-3.655-8.36-8.39-8.36-4.915 0-8.6 3.476-8.6 8.3 0 4.795 3.626 8.301 9.2 8.301 2.906 0 5.154-.899 6.652-2.607l-2.487-2.697c-1.11 1.049-2.338 1.558-4.046 1.558-2.457 0-4.165-1.228-4.615-3.236h12.197c.03-.39.09-.9.09-1.259m-8.36-4.824c2.098 0 3.626 1.318 3.956 3.356h-7.942c.33-2.068 1.858-3.356 3.986-3.356M905.676 345.685c-2.187 0-4.075.749-5.334 2.127v-1.888h-4.465v16.122h4.675v-7.97c0-2.967 1.618-4.346 3.866-4.346 2.067 0 3.266 1.199 3.266 3.806v8.51h4.675v-9.23c0-4.914-2.877-7.131-6.683-7.131M925.724 357.971c-.51.39-1.199.6-1.888.6-1.259 0-2.008-.75-2.008-2.128v-6.563h4.016v-3.596h-4.016v-3.926h-4.675v3.926h-2.487v3.596h2.487v6.623c0 3.835 2.218 5.783 6.024 5.783 1.438 0 2.847-.33 3.805-1.019zM940.108 362.406c6.592 0 11.477-4.585 11.477-10.848s-4.885-10.848-11.477-10.848c-6.623 0-11.477 4.615-11.477 10.848s4.854 10.848 11.477 10.848m0-4.135c-3.746 0-6.563-2.727-6.563-6.713 0-3.985 2.817-6.712 6.563-6.712s6.563 2.727 6.563 6.712c0 3.986-2.817 6.713-6.563 6.713M962.133 362.406c5.994 0 8.9-2.997 8.9-6.503 0-7.701-12.196-5.034-12.196-8.9 0-1.318 1.109-2.397 3.986-2.397 1.857 0 3.865.54 5.813 1.648l1.498-3.686c-1.947-1.228-4.644-1.858-7.282-1.858-5.963 0-8.84 2.967-8.84 6.533 0 7.791 12.197 5.094 12.197 9.02 0 1.288-1.169 2.247-4.046 2.247-2.517 0-5.154-.899-6.922-2.187l-1.648 3.656c1.858 1.438 5.214 2.427 8.54 2.427" style="fill:#000" transform="translate(-786.115 -321.817)scale(.97561)"/></g><g transform="rotate(45 -180.128 -610.203)scale(1.0529)"><circle cx="388.123" cy="-290.716" r="20.103" style="fill:#000;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000"/><path d="M377.366-301.473v6.301l-4.456 4.456 4.456 4.456v6.302h6.302l4.456 4.456 4.456-4.456h6.301v-6.302l4.456-4.456-4.456-4.456v-6.301h-6.301l-4.456-4.456-4.456 4.456zm2.271 4.183 1.913-1.912 3.227 3.227v1.913h-1.912zm-2.163 5.222h4.565l1.352 1.352-1.352 1.353h-4.564zm9.297-9.297h2.705v4.564l-1.352 1.353-1.353-1.353zm.091 7.607 1.261 1.282 1.26-1.283-.015 1.798 1.798-.016-1.282 1.26 1.283 1.261-1.798-.015.016 1.798-1.26-1.282-1.261 1.283.015-1.799-1.798.016 1.282-1.26-1.283-1.26 1.799.015zm-7.225 9.617 3.228-3.228h1.912v1.913l-3.227 3.227zm11.833-11.834 3.228-3.227 1.913 1.912-3.228 3.228h-1.912zm-4.698 11.345 1.352-1.352 1.352 1.352v4.564h-2.704zm6.085-6.085 1.352-1.353h4.564v2.705h-4.564zm-1.387 3.346h1.913l3.228 3.228-1.913 1.912-3.228-3.227z" style="fill:#fff;fill-opacity:1;stroke-width:9.12808;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000"/></g></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="609.392" height="160" viewBox="0 0 161.235 42.333"><g aria-label="CentOS" style="font-weight:700;font-size:29.9666px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:&quot;Montserrat Bold&quot;;fill:#a14f8c;fill-opacity:1;stroke-width:.749167"><path d="M58.705 31.75c3.567 0 6.52-1.286 8.45-3.654l-3.041-2.807c-1.374 1.608-3.1 2.426-5.146 2.426-3.83 0-6.548-2.69-6.548-6.548 0-3.86 2.719-6.55 6.548-6.55 2.047 0 3.772.82 5.146 2.398l3.04-2.806c-1.93-2.34-4.882-3.626-8.42-3.626-6.373 0-11.109 4.415-11.109 10.584s4.736 10.583 11.08 10.583M84.871 23.593c0-5.058-3.567-8.157-8.186-8.157-4.794 0-8.39 3.392-8.39 8.099 0 4.677 3.537 8.098 8.975 8.098 2.836 0 5.029-.877 6.49-2.543l-2.426-2.632c-1.082 1.024-2.28 1.52-3.947 1.52-2.397 0-4.064-1.198-4.502-3.157h11.899c.029-.38.087-.877.087-1.228m-8.157-4.707c2.047 0 3.538 1.287 3.86 3.275h-7.748c.322-2.018 1.813-3.275 3.888-3.275M97.472 15.436c-2.134 0-3.976.731-5.204 2.076V15.67h-4.356V31.4h4.56v-7.778c0-2.894 1.58-4.239 3.772-4.239 2.017 0 3.187 1.17 3.187 3.713V31.4h4.56v-9.004c0-4.795-2.806-6.959-6.52-6.959M117.03 27.423c-.497.38-1.169.585-1.841.585-1.228 0-1.96-.731-1.96-2.076V19.53h3.918v-3.508h-3.917v-3.83h-4.56v3.83h-2.427v3.508h2.426v6.462c0 3.742 2.164 5.642 5.876 5.642 1.404 0 2.778-.322 3.713-.994zM131.064 31.75c6.431 0 11.197-4.473 11.197-10.583s-4.766-10.584-11.197-10.584c-6.461 0-11.198 4.503-11.198 10.584s4.737 10.583 11.198 10.583m0-4.035c-3.655 0-6.403-2.66-6.403-6.548s2.748-6.55 6.403-6.55 6.402 2.661 6.402 6.55-2.748 6.548-6.402 6.548M152.552 31.75c5.847 0 8.683-2.924 8.683-6.344 0-7.514-11.9-4.912-11.9-8.683 0-1.287 1.083-2.339 3.89-2.339 1.812 0 3.77.526 5.671 1.608l1.462-3.596c-1.9-1.199-4.532-1.813-7.104-1.813-5.818 0-8.625 2.895-8.625 6.374 0 7.601 11.899 4.97 11.899 8.8 0 1.257-1.14 2.192-3.947 2.192-2.456 0-5.028-.877-6.753-2.134l-1.608 3.567c1.812 1.403 5.087 2.368 8.332 2.368"/></g><g transform="matrix(1.0529 0 0 1.05289 -387.492 265.985)"><circle cx="435.079" cy="-124.144" r="20.103" style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000" transform="rotate(-15)"/><path d="m384.257-249.617-3.875 3.875h-5.479v5.48l-3.875 3.875 3.875 3.874v5.48h5.48l3.874 3.875 3.875-3.875h5.48v-5.48l3.874-3.874-3.875-3.875-5.48-5.48zm1.176 3.875v4.18l-1.176 1.176-1.176-1.176v-4.18zm-6.959 1.908 2.956 2.957v1.662h-1.663l-2.956-2.956zm-3.571 6.27h4.18l1.176 1.177-1.176 1.176h-4.18zm14.434 0h4.18v2.353h-4.18l-1.176-1.176zm-9.503 3.937h1.663v1.663l-2.956 2.956-1.663-1.663zm7.184 0h1.663l2.956 2.956-1.663 1.663-2.956-2.956zm-2.76 1.143 1.175 1.176v4.18h-2.352v-4.18z" style="fill:#fff;fill-opacity:1;stroke-width:7.93746;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/><path d="m385.433-239.09-1.176 1.04-1.176-1.04v1.526h-1.526l1.039 1.177-1.04 1.176h1.527v1.526l1.176-1.04 1.176 1.04v-1.526h1.527l-1.04-1.176 1.04-1.177h-1.527z" style="fill:#efa724;fill-opacity:1;stroke-width:8.59212;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/><path d="m388.135-245.738 1.905 1.905-2.956 2.956v1.663h1.663l2.956-2.956 1.911 1.911-.003-5.483z" style="fill:#efa724;fill-opacity:1;stroke-width:6.14231;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/></g></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="710" height="270" viewBox="0 0 187.854 71.437"><g aria-label="CentOS" style="font-weight:700;font-size:29.9666px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:&quot;Montserrat Bold&quot;;fill:#a14f8c;fill-opacity:1;stroke-width:.749167"><path d="M63.997 37.042c3.567 0 6.52-1.287 8.45-3.655l-3.041-2.806c-1.374 1.608-3.1 2.426-5.146 2.426-3.83 0-6.549-2.69-6.549-6.549s2.72-6.548 6.55-6.548c2.046 0 3.77.818 5.145 2.397l3.04-2.807c-1.93-2.339-4.882-3.625-8.42-3.625-6.373 0-11.11 4.415-11.11 10.583 0 6.17 4.737 10.584 11.081 10.584M90.163 28.885c0-5.058-3.567-8.157-8.186-8.157-4.795 0-8.39 3.391-8.39 8.098 0 4.678 3.537 8.099 8.975 8.099 2.835 0 5.028-.877 6.49-2.544l-2.427-2.631c-1.081 1.023-2.28 1.52-3.946 1.52-2.398 0-4.064-1.198-4.503-3.157h11.9c.028-.38.087-.877.087-1.228m-8.157-4.707c2.047 0 3.538 1.286 3.86 3.274h-7.748c.321-2.017 1.812-3.274 3.888-3.274M102.763 20.728c-2.134 0-3.976.731-5.203 2.076v-1.842h-4.357v15.729h4.561v-7.777c0-2.894 1.579-4.239 3.772-4.239 2.017 0 3.186 1.17 3.186 3.713v8.303h4.561v-9.005c0-4.794-2.807-6.958-6.52-6.958M122.322 32.715c-.497.38-1.17.584-1.842.584-1.228 0-1.958-.73-1.958-2.075V24.82h3.917v-3.508h-3.917v-3.83h-4.561v3.83h-2.427v3.508h2.427v6.461c0 3.742 2.163 5.643 5.876 5.643 1.403 0 2.778-.322 3.713-.994zM136.355 37.042c6.432 0 11.198-4.473 11.198-10.584s-4.766-10.583-11.198-10.583c-6.46 0-11.197 4.502-11.197 10.583s4.736 10.584 11.197 10.584m0-4.035c-3.654 0-6.402-2.66-6.402-6.549 0-3.888 2.748-6.548 6.402-6.548s6.403 2.66 6.403 6.548-2.748 6.55-6.403 6.55M157.844 37.042c5.847 0 8.683-2.924 8.683-6.344 0-7.514-11.9-4.912-11.9-8.683 0-1.287 1.082-2.34 3.889-2.34 1.813 0 3.771.527 5.672 1.609l1.461-3.596c-1.9-1.199-4.531-1.813-7.104-1.813-5.818 0-8.624 2.894-8.624 6.373 0 7.602 11.899 4.97 11.899 8.8 0 1.257-1.14 2.193-3.947 2.193-2.456 0-5.029-.877-6.754-2.134l-1.608 3.567c1.813 1.403 5.087 2.368 8.333 2.368"/></g><g aria-label="Community Enterprise" style="font-size:10.9634px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:&quot;Montserrat, Normal&quot;;fill:#a14f8c;stroke-width:.289529"><path d="M57.072 50.27c1.337 0 2.445-.482 3.168-1.37l-1.14-1.052c-.515.603-1.162.91-1.93.91-1.436 0-2.455-1.009-2.455-2.456s1.02-2.456 2.455-2.456c.768 0 1.415.307 1.93.9l1.14-1.053c-.723-.877-1.83-1.36-3.157-1.36-2.39 0-4.166 1.656-4.166 3.97 0 2.312 1.776 3.968 4.155 3.968M63.913 50.227c1.875 0 3.234-1.26 3.234-3.037s-1.36-3.037-3.234-3.037c-1.875 0-3.245 1.261-3.245 3.037s1.37 3.037 3.245 3.037m0-1.403c-.855 0-1.513-.614-1.513-1.634s.658-1.633 1.513-1.633 1.502.614 1.502 1.633-.647 1.634-1.502 1.634M75.841 44.153c-.888 0-1.655.362-2.127.965-.416-.647-1.118-.965-1.94-.965-.757 0-1.415.263-1.853.768v-.68h-1.634v5.898h1.71v-2.96c0-1.052.538-1.546 1.294-1.546.713 0 1.119.439 1.119 1.393v3.113h1.71v-2.96c0-1.052.537-1.546 1.304-1.546.691 0 1.119.439 1.119 1.393v3.113h1.71v-3.376c0-1.798-1.009-2.61-2.412-2.61M87.342 44.153c-.888 0-1.656.362-2.127.965-.417-.647-1.118-.965-1.94-.965-.757 0-1.415.263-1.854.768v-.68h-1.633v5.898h1.71v-2.96c0-1.052.537-1.546 1.294-1.546.713 0 1.118.439 1.118 1.393v3.113h1.71v-2.96c0-1.052.538-1.546 1.305-1.546.69 0 1.118.439 1.118 1.393v3.113h1.71v-3.376c0-1.798-1.008-2.61-2.411-2.61M95.52 47.157c0 1.086-.57 1.59-1.36 1.59-.756 0-1.194-.439-1.194-1.425V44.24h-1.71v3.333c0 1.82 1.041 2.653 2.521 2.653.724 0 1.382-.274 1.831-.79v.702h1.623v-5.898h-1.71zM102.405 44.153c-.8 0-1.49.274-1.951.779v-.691H98.82v5.898h1.71v-2.916c0-1.085.593-1.59 1.415-1.59.756 0 1.195.439 1.195 1.393v3.113h1.71v-3.376c0-1.798-1.052-2.61-2.445-2.61M107.251 43.419c.636 0 1.064-.417 1.064-.987 0-.526-.428-.92-1.064-.92s-1.063.416-1.063.953.427.954 1.063.954m.855 6.72v-5.898h-1.71v5.898zM113.04 48.648c-.186.143-.439.22-.69.22-.461 0-.735-.275-.735-.779v-2.4h1.469v-1.316h-1.47v-1.437h-1.71v1.437h-.91v1.315h.91v2.423c0 1.403.812 2.116 2.204 2.116.526 0 1.042-.12 1.392-.373z" style="font-weight:700;-inkscape-font-specification:Montserrat" transform="translate(0 .132)"/><path d="m116.899 48.243-1.655-4.002h-1.766l2.555 5.942-.022.055c-.23.526-.493.734-.965.734-.34 0-.701-.142-.965-.372l-.624 1.217c.383.34 1.041.537 1.644.537 1.063 0 1.875-.428 2.445-1.853l2.664-6.26h-1.645zM125.9 46.938h3.563v-1.381H125.9V43.89h4.034v-1.425h-5.8v7.674h5.943v-1.425H125.9zM134.956 44.153c-.8 0-1.491.274-1.952.779v-.691h-1.633v5.898h1.71v-2.916c0-1.085.592-1.59 1.414-1.59.757 0 1.195.439 1.195 1.393v3.113h1.71v-3.376c0-1.798-1.052-2.61-2.444-2.61M142.29 48.648c-.186.143-.438.22-.69.22-.46 0-.735-.275-.735-.779v-2.4h1.47v-1.316h-1.47v-1.437h-1.71v1.437h-.91v1.315h.91v2.423c0 1.403.811 2.116 2.203 2.116.527 0 1.042-.12 1.393-.373zM149.307 47.212c0-1.897-1.338-3.059-3.07-3.059-1.798 0-3.146 1.272-3.146 3.037 0 1.754 1.326 3.037 3.365 3.037 1.064 0 1.886-.329 2.434-.954l-.91-.987c-.405.384-.855.57-1.48.57-.899 0-1.524-.449-1.688-1.183h4.462c.01-.143.033-.33.033-.461m-3.059-1.765c.767 0 1.327.482 1.447 1.228h-2.905c.12-.757.68-1.228 1.458-1.228M152.08 44.241h-1.633v5.898h1.71v-2.784c0-1.13.625-1.645 1.568-1.645.132 0 .241.011.384.022v-1.579c-.91 0-1.612.296-2.029.866zM158.615 44.153c-.79 0-1.426.252-1.853.768v-.68h-1.634v8.025h1.71v-2.752c.44.483 1.042.713 1.777.713 1.655 0 2.938-1.184 2.938-3.037s-1.283-3.037-2.938-3.037m-.296 4.67c-.855 0-1.502-.613-1.502-1.633s.647-1.633 1.502-1.633 1.502.614 1.502 1.633-.647 1.634-1.502 1.634M164.327 44.241h-1.634v5.898h1.71v-2.784c0-1.13.625-1.645 1.568-1.645.132 0 .241.011.384.022v-1.579c-.91 0-1.612.296-2.028.866zM168.23 43.419c.635 0 1.063-.417 1.063-.987 0-.526-.428-.92-1.063-.92-.636 0-1.064.416-1.064.953s.428.954 1.064.954m.855 6.72v-5.898h-1.71v5.898zM172.659 50.227c1.765 0 2.784-.778 2.784-1.875 0-2.324-3.563-1.348-3.563-2.357 0-.307.33-.548 1.097-.548.537 0 1.118.11 1.699.438l.57-1.216c-.559-.33-1.458-.516-2.27-.516-1.72 0-2.73.79-2.73 1.908 0 2.357 3.564 1.37 3.564 2.335 0 .329-.296.537-1.085.537-.724 0-1.524-.23-2.05-.57l-.57 1.228c.547.362 1.556.636 2.554.636M182.274 47.212c0-1.897-1.338-3.059-3.07-3.059-1.798 0-3.147 1.272-3.147 3.037 0 1.754 1.327 3.037 3.366 3.037 1.064 0 1.886-.329 2.434-.954l-.91-.987c-.406.384-.855.57-1.48.57-.899 0-1.524-.449-1.688-1.183h4.462c.01-.143.033-.33.033-.461m-3.06-1.765c.768 0 1.327.482 1.448 1.228h-2.905c.12-.757.68-1.228 1.458-1.228" style="font-weight:700;-inkscape-font-specification:Montserrat" transform="translate(0 .132)"/></g><g aria-label="Operating System" style="font-size:10.9634px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:&quot;Montserrat, Normal&quot;;fill:#a14f8c;stroke-width:.289529"><path d="M57.116 63.5c2.412 0 4.199-1.677 4.199-3.969s-1.787-3.969-4.2-3.969c-2.422 0-4.198 1.689-4.198 3.97 0 2.28 1.776 3.968 4.199 3.968m0-1.513c-1.37 0-2.401-.998-2.401-2.456s1.03-2.456 2.4-2.456c1.371 0 2.402.998 2.402 2.456s-1.03 2.456-2.401 2.456M66.018 57.382c-.79 0-1.425.253-1.853.768v-.68h-1.633v8.025h1.71v-2.751c.438.482 1.041.712 1.776.712 1.655 0 2.938-1.184 2.938-3.037s-1.283-3.037-2.938-3.037m-.296 4.67c-.855 0-1.502-.613-1.502-1.633s.647-1.633 1.502-1.633 1.502.614 1.502 1.633-.647 1.634-1.502 1.634M75.874 60.441c0-1.896-1.338-3.059-3.07-3.059-1.798 0-3.146 1.272-3.146 3.037 0 1.754 1.326 3.037 3.366 3.037 1.063 0 1.885-.329 2.433-.954l-.91-.986c-.405.383-.855.57-1.48.57-.899 0-1.524-.45-1.688-1.184h4.462c.011-.143.033-.33.033-.46m-3.059-1.765c.768 0 1.327.482 1.447 1.228h-2.905c.12-.756.68-1.228 1.458-1.228M78.648 57.47h-1.634v5.898h1.71v-2.784c0-1.13.625-1.645 1.568-1.645.132 0 .241.011.384.022v-1.579c-.91 0-1.612.296-2.028.867zM83.69 57.382c-.942 0-1.896.253-2.543.713l.614 1.195c.428-.34 1.075-.548 1.7-.548.92 0 1.36.427 1.36 1.162h-1.36c-1.798 0-2.533.724-2.533 1.765 0 1.02.822 1.787 2.204 1.787.866 0 1.48-.285 1.798-.822v.734h1.6v-3.365c0-1.787-1.041-2.62-2.84-2.62m-.13 4.923c-.604 0-.965-.285-.965-.713 0-.394.252-.69 1.052-.69h1.173v.603c-.197.537-.69.8-1.26.8M91.42 61.877c-.186.143-.438.22-.69.22-.461 0-.735-.274-.735-.779v-2.4h1.469v-1.316h-1.47v-1.437h-1.71v1.437h-.91v1.315h.91v2.423c0 1.404.812 2.116 2.204 2.116.526 0 1.042-.12 1.393-.373zM93.7 56.648c.636 0 1.064-.417 1.064-.987 0-.526-.428-.92-1.064-.92-.635 0-1.063.416-1.063.953s.428.954 1.063.954m.856 6.72V57.47h-1.71v5.898zM99.73 57.382c-.8 0-1.49.275-1.951.779v-.69h-1.634v5.897h1.71v-2.916c0-1.085.593-1.59 1.415-1.59.756 0 1.195.439 1.195 1.393v3.113h1.71v-3.376c0-1.798-1.052-2.61-2.445-2.61M108.227 58.227c-.45-.57-1.13-.845-1.952-.845-1.633 0-2.949 1.13-2.949 2.85 0 1.722 1.316 2.851 2.95 2.851.767 0 1.414-.24 1.863-.734v.252c0 1.063-.526 1.612-1.732 1.612-.756 0-1.579-.264-2.083-.67l-.68 1.229c.69.537 1.776.811 2.895.811 2.126 0 3.31-1.009 3.31-3.201V57.47h-1.622zm-1.612 3.453c-.899 0-1.556-.581-1.556-1.447s.657-1.447 1.556-1.447c.9 0 1.546.58 1.546 1.447 0 .866-.647 1.447-1.546 1.447M117.184 63.5c2.193 0 3.256-1.096 3.256-2.38 0-2.817-4.462-1.84-4.462-3.255 0-.483.406-.877 1.458-.877.68 0 1.414.197 2.127.603l.548-1.349c-.712-.45-1.7-.68-2.664-.68-2.182 0-3.234 1.086-3.234 2.39 0 2.851 4.462 1.864 4.462 3.3 0 .472-.428.823-1.48.823-.921 0-1.886-.33-2.533-.8l-.603 1.337c.68.526 1.908.888 3.125.888M123.97 61.472l-1.655-4.002h-1.765l2.554 5.942-.022.055c-.23.526-.493.735-.964.735-.34 0-.702-.143-.965-.373l-.625 1.217c.384.34 1.041.537 1.644.537 1.064 0 1.875-.428 2.445-1.853l2.664-6.26h-1.644zM129.88 63.456c1.765 0 2.784-.778 2.784-1.875 0-2.324-3.563-1.348-3.563-2.357 0-.307.33-.548 1.097-.548.537 0 1.118.11 1.699.439l.57-1.217c-.56-.33-1.458-.516-2.27-.516-1.72 0-2.73.79-2.73 1.908 0 2.357 3.564 1.37 3.564 2.335 0 .33-.296.537-1.086.537-.723 0-1.524-.23-2.05-.57l-.57 1.228c.548.362 1.557.636 2.555.636M137.06 61.877c-.186.143-.438.22-.69.22-.46 0-.735-.274-.735-.779v-2.4h1.47v-1.316h-1.47v-1.437h-1.71v1.437h-.91v1.315h.91v2.423c0 1.404.811 2.116 2.204 2.116.526 0 1.041-.12 1.392-.373zM144.077 60.441c0-1.896-1.337-3.059-3.07-3.059-1.798 0-3.146 1.272-3.146 3.037 0 1.754 1.326 3.037 3.366 3.037 1.063 0 1.885-.329 2.434-.954l-.91-.986c-.406.383-.856.57-1.48.57-.9 0-1.524-.45-1.689-1.184h4.462c.011-.143.033-.33.033-.46m-3.059-1.765c.768 0 1.327.482 1.448 1.228h-2.906c.12-.756.68-1.228 1.458-1.228M152.771 57.382c-.888 0-1.655.362-2.127.965-.416-.647-1.118-.965-1.94-.965-.757 0-1.415.264-1.853.768v-.68h-1.634v5.898h1.71v-2.96c0-1.052.538-1.546 1.294-1.546.713 0 1.119.439 1.119 1.393v3.113h1.71v-2.96c0-1.052.537-1.546 1.305-1.546.69 0 1.118.439 1.118 1.393v3.113h1.71v-3.376c0-1.798-1.009-2.61-2.412-2.61" style="font-weight:700;-inkscape-font-specification:Montserrat" transform="translate(0 .132)"/></g><g transform="matrix(1.0529 0 0 1.05289 -382.2 271.277)"><circle cx="435.079" cy="-124.144" r="20.103" style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000" transform="rotate(-15)"/><path d="m384.257-249.617-3.875 3.875h-5.479v5.48l-3.875 3.875 3.875 3.874v5.48h5.48l3.874 3.875 3.875-3.875h5.48v-5.48l3.874-3.874-3.875-3.875-5.48-5.48zm1.176 3.875v4.18l-1.176 1.176-1.176-1.176v-4.18zm-6.959 1.908 2.956 2.957v1.662h-1.663l-2.956-2.956zm-3.571 6.27h4.18l1.176 1.177-1.176 1.176h-4.18zm14.434 0h4.18v2.353h-4.18l-1.176-1.176zm-9.503 3.937h1.663v1.663l-2.956 2.956-1.663-1.663zm7.184 0h1.663l2.956 2.956-1.663 1.663-2.956-2.956zm-2.76 1.143 1.175 1.176v4.18h-2.352v-4.18z" style="fill:#fff;fill-opacity:1;stroke-width:7.93746;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/><path d="m385.433-239.09-1.176 1.04-1.176-1.04v1.526h-1.526l1.039 1.177-1.04 1.176h1.527v1.526l1.176-1.04 1.176 1.04v-1.526h1.527l-1.04-1.176 1.04-1.177h-1.527z" style="fill:#efa724;fill-opacity:1;stroke-width:8.59212;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/><path d="m388.135-245.738 1.905 1.905-2.956 2.956v1.663h1.663l2.956-2.956 1.911 1.911-.003-5.483z" style="fill:#efa724;fill-opacity:1;stroke-width:6.14231;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/></g></svg>