jekyll-theme-centos 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/_config.yml +196 -0
- data/_data/base/announcement_schema.yml +49 -0
- data/_data/base/artwork_schema.yml +46 -0
- data/_data/base/backtotop_schema.yml +59 -0
- data/_data/base/bits.yml +96 -0
- data/_data/base/bits_schema.yml +185 -0
- data/_data/base/breadcrumb_schema.yml +27 -0
- data/_data/base/breakingnews_schema.yml +67 -0
- data/_data/base/card_schema.yml +146 -0
- data/_data/base/color.yml +1042 -0
- data/_data/base/color_schema.yml +1036 -0
- data/_data/base/configuration_variables_schema.yml +42 -0
- data/_data/base/content.yml +2 -0
- data/_data/base/content_schema.yml +26 -0
- data/_data/base/copyright.yml +12 -0
- data/_data/base/copyright_schema.yml +74 -0
- data/_data/base/copyvalue_schema.yml +49 -0
- data/_data/base/datatable_schema.yml +57 -0
- data/_data/base/event_schema.yml +130 -0
- data/_data/base/fontawesome_schema.yml +62 -0
- data/_data/base/footer.yml +9 -0
- data/_data/base/footer_schema.yml +55 -0
- data/_data/base/head_schema.yml +19 -0
- data/_data/base/heading_anchor.yml +2 -0
- data/_data/base/heading_anchor_schema.yml +37 -0
- data/_data/base/highlight_schema.yml +98 -0
- data/_data/base/image_schema.yml +34 -0
- data/_data/base/languages.yml +186 -0
- data/_data/base/link_schema.yml +187 -0
- data/_data/base/locales_schema.yml +158 -0
- data/_data/base/navbar.yml +20 -0
- data/_data/base/navbar_schema.yml +129 -0
- data/_data/base/navindex_schema.yml +67 -0
- data/_data/base/ogp.yml +24 -0
- data/_data/base/ogp_schema.yml +192 -0
- data/_data/base/project.yml +37 -0
- data/_data/base/project_schema.yml +124 -0
- data/_data/base/script_schema.yml +41 -0
- data/_data/base/shortcut_schema.yml +74 -0
- data/_data/base/social.yml +26 -0
- data/_data/base/social_schema.yml +57 -0
- data/_data/base/sponsors.yml +41 -0
- data/_data/base/sponsors_schema.yml +73 -0
- data/_data/base/title_schema.yml +49 -0
- data/_data/base/toc_schema.yml +114 -0
- data/_data/download/cards.yml +309 -0
- data/_data/download/navbar.yml +11 -0
- data/_includes/base/announcement.html.liquid +65 -0
- data/_includes/base/artwork.html.liquid +63 -0
- data/_includes/base/backtotop.html.liquid +73 -0
- data/_includes/base/bits.html.liquid +152 -0
- data/_includes/base/breadcrumb.html.liquid +77 -0
- data/_includes/base/breakingnews.html.liquid +90 -0
- data/_includes/base/card.html.liquid +110 -0
- data/_includes/base/color-table.html.liquid +33 -0
- data/_includes/base/configuration_variables-nested.html.liquid +98 -0
- data/_includes/base/configuration_variables.html.liquid +98 -0
- data/_includes/base/content.html.liquid +7 -0
- data/_includes/base/copyright.html.liquid +70 -0
- data/_includes/base/copyvalue.html.liquid +82 -0
- data/_includes/base/datatable.html.liquid +83 -0
- data/_includes/base/event.html.liquid +105 -0
- data/_includes/base/fontawesome.html.liquid +91 -0
- data/_includes/base/footer.html.liquid +69 -0
- data/_includes/base/head.html.liquid +135 -0
- data/_includes/base/heading_anchor.html.liquid +67 -0
- data/_includes/base/highlight.html.liquid +84 -0
- data/_includes/base/image.html.liquid +42 -0
- data/_includes/base/link.html.liquid +129 -0
- data/_includes/base/locales.html.liquid +78 -0
- data/_includes/base/navbar.html.liquid +121 -0
- data/_includes/base/navindex.html.liquid +200 -0
- data/_includes/base/ogp.html.liquid +144 -0
- data/_includes/base/project.html.liquid +104 -0
- data/_includes/base/shortcut.html.liquid +77 -0
- data/_includes/base/social.html.liquid +76 -0
- data/_includes/base/sponsors-cards.html.liquid +69 -0
- data/_includes/base/sponsors-carousel.html.liquid +91 -0
- data/_includes/base/title.html.liquid +65 -0
- data/_includes/base/toc-generator.html.liquid +189 -0
- data/_includes/base/toc.html.liquid +95 -0
- data/_includes/download/cards-body-commands.html +7 -0
- data/_includes/download/cards-body-convert.html +10 -0
- data/_includes/download/cards-body-doc.html +9 -0
- data/_includes/download/cards-body-documentation.html +11 -0
- data/_includes/download/cards-body-eol.html +16 -0
- data/_includes/download/cards-body-mirrors.html +8 -0
- data/_includes/download/cards-body-screenshot.html +26 -0
- data/_includes/download/cards-body-screenshots.html +32 -0
- data/_includes/download/cards-body.html +8 -0
- data/_includes/download/cards-footer.html +3 -0
- data/_includes/download/cards-header-commands.html +8 -0
- data/_includes/download/cards-header-convert.html +8 -0
- data/_includes/download/cards-header-doc.html +8 -0
- data/_includes/download/cards-header-documentation.html +8 -0
- data/_includes/download/cards-header-eol.html +8 -0
- data/_includes/download/cards-header-mirrors.html +13 -0
- data/_includes/download/cards-header-screenshot.html +8 -0
- data/_includes/download/cards-header-screenshots.html +8 -0
- data/_includes/download/cards-header.html +13 -0
- data/_includes/download/cards.html +120 -0
- data/_layouts/base/default.html +68 -0
- data/_layouts/download/cards.html +7 -0
- data/_layouts/download/default.html +7 -0
- data/_layouts/people/default.html +68 -0
- data/_sass/base/_customization.scss +331 -0
- data/_sass/base/_light-dark.scss +10 -0
- data/_sass/base/_maps.scss +104 -0
- data/_sass/base/_variables.scss +232 -0
- data/_sass/bootstrap/_accordion.scss +153 -0
- data/_sass/bootstrap/_alert.scss +68 -0
- data/_sass/bootstrap/_badge.scss +38 -0
- data/_sass/bootstrap/_breadcrumb.scss +40 -0
- data/_sass/bootstrap/_button-group.scss +147 -0
- data/_sass/bootstrap/_buttons.scss +216 -0
- data/_sass/bootstrap/_card.scss +238 -0
- data/_sass/bootstrap/_carousel.scss +226 -0
- data/_sass/bootstrap/_close.scss +66 -0
- data/_sass/bootstrap/_containers.scss +41 -0
- data/_sass/bootstrap/_dropdown.scss +250 -0
- data/_sass/bootstrap/_forms.scss +9 -0
- data/_sass/bootstrap/_functions.scss +302 -0
- data/_sass/bootstrap/_grid.scss +39 -0
- data/_sass/bootstrap/_helpers.scss +12 -0
- data/_sass/bootstrap/_images.scss +42 -0
- data/_sass/bootstrap/_list-group.scss +199 -0
- data/_sass/bootstrap/_maps.scss +174 -0
- data/_sass/bootstrap/_mixins.scss +42 -0
- data/_sass/bootstrap/_modal.scss +240 -0
- data/_sass/bootstrap/_nav.scss +197 -0
- data/_sass/bootstrap/_navbar.scss +289 -0
- data/_sass/bootstrap/_offcanvas.scss +147 -0
- data/_sass/bootstrap/_pagination.scss +109 -0
- data/_sass/bootstrap/_placeholders.scss +51 -0
- data/_sass/bootstrap/_popover.scss +196 -0
- data/_sass/bootstrap/_progress.scss +68 -0
- data/_sass/bootstrap/_reboot.scss +617 -0
- data/_sass/bootstrap/_root.scss +187 -0
- data/_sass/bootstrap/_spinners.scss +86 -0
- data/_sass/bootstrap/_tables.scss +171 -0
- data/_sass/bootstrap/_toasts.scss +73 -0
- data/_sass/bootstrap/_tooltip.scss +119 -0
- data/_sass/bootstrap/_transitions.scss +27 -0
- data/_sass/bootstrap/_type.scss +106 -0
- data/_sass/bootstrap/_utilities.scss +806 -0
- data/_sass/bootstrap/_variables-dark.scss +102 -0
- data/_sass/bootstrap/_variables.scss +1753 -0
- data/_sass/bootstrap/bootstrap-grid.scss +62 -0
- data/_sass/bootstrap/bootstrap-reboot.scss +10 -0
- data/_sass/bootstrap/bootstrap-utilities.scss +19 -0
- data/_sass/bootstrap/bootstrap.scss +52 -0
- data/_sass/bootstrap/forms/_floating-labels.scss +97 -0
- data/_sass/bootstrap/forms/_form-check.scss +189 -0
- data/_sass/bootstrap/forms/_form-control.scss +214 -0
- data/_sass/bootstrap/forms/_form-range.scss +91 -0
- data/_sass/bootstrap/forms/_form-select.scss +80 -0
- data/_sass/bootstrap/forms/_form-text.scss +11 -0
- data/_sass/bootstrap/forms/_input-group.scss +132 -0
- data/_sass/bootstrap/forms/_labels.scss +36 -0
- data/_sass/bootstrap/forms/_validation.scss +12 -0
- data/_sass/bootstrap/helpers/_clearfix.scss +3 -0
- data/_sass/bootstrap/helpers/_color-bg.scss +7 -0
- data/_sass/bootstrap/helpers/_colored-links.scss +30 -0
- data/_sass/bootstrap/helpers/_focus-ring.scss +5 -0
- data/_sass/bootstrap/helpers/_icon-link.scss +25 -0
- data/_sass/bootstrap/helpers/_position.scss +36 -0
- data/_sass/bootstrap/helpers/_ratio.scss +26 -0
- data/_sass/bootstrap/helpers/_stacks.scss +15 -0
- data/_sass/bootstrap/helpers/_stretched-link.scss +15 -0
- data/_sass/bootstrap/helpers/_text-truncation.scss +7 -0
- data/_sass/bootstrap/helpers/_visually-hidden.scss +8 -0
- data/_sass/bootstrap/helpers/_vr.scss +8 -0
- data/_sass/bootstrap/mixins/_alert.scss +18 -0
- data/_sass/bootstrap/mixins/_backdrop.scss +14 -0
- data/_sass/bootstrap/mixins/_banner.scss +7 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +78 -0
- data/_sass/bootstrap/mixins/_box-shadow.scss +24 -0
- data/_sass/bootstrap/mixins/_breakpoints.scss +127 -0
- data/_sass/bootstrap/mixins/_buttons.scss +70 -0
- data/_sass/bootstrap/mixins/_caret.scss +69 -0
- data/_sass/bootstrap/mixins/_clearfix.scss +9 -0
- data/_sass/bootstrap/mixins/_color-mode.scss +21 -0
- data/_sass/bootstrap/mixins/_color-scheme.scss +7 -0
- data/_sass/bootstrap/mixins/_container.scss +11 -0
- data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
- data/_sass/bootstrap/mixins/_forms.scss +163 -0
- data/_sass/bootstrap/mixins/_gradients.scss +47 -0
- data/_sass/bootstrap/mixins/_grid.scss +151 -0
- data/_sass/bootstrap/mixins/_image.scss +16 -0
- data/_sass/bootstrap/mixins/_list-group.scss +26 -0
- data/_sass/bootstrap/mixins/_lists.scss +7 -0
- data/_sass/bootstrap/mixins/_pagination.scss +10 -0
- data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
- data/_sass/bootstrap/mixins/_resize.scss +6 -0
- data/_sass/bootstrap/mixins/_table-variants.scss +24 -0
- data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
- data/_sass/bootstrap/mixins/_transition.scss +26 -0
- data/_sass/bootstrap/mixins/_utilities.scss +97 -0
- data/_sass/bootstrap/mixins/_visually-hidden.scss +38 -0
- data/_sass/bootstrap/utilities/_api.scss +47 -0
- data/_sass/bootstrap/vendor/_rfs.scss +348 -0
- data/assets/css/base/stylesheet.min.scss +35 -0
- data/assets/icons/android-chrome-192.png +0 -0
- data/assets/icons/android-chrome-512.png +0 -0
- data/assets/icons/apple-touch-icon.png +0 -0
- data/assets/icons/favicon-16.png +0 -0
- data/assets/icons/favicon-32.png +0 -0
- data/assets/icons/favicon.ico +0 -0
- data/assets/icons/favicon.svg +1 -0
- data/assets/img/anaconda-symbolic.svg +1 -0
- data/assets/img/anaconda.svg +1 -0
- data/assets/img/base/centos-colors.gpl +55 -0
- data/assets/img/base/example-ogp-image.svg +297 -0
- data/assets/img/base/example-sponsors-design.svg +226 -0
- data/assets/img/base/example-sponsors-logo-1.svg +120 -0
- data/assets/img/base/example-sponsors-logo-2.svg +116 -0
- data/assets/img/base/example-sponsors-logo-3.svg +123 -0
- data/assets/img/base/example-sponsors-logo-4.svg +116 -0
- data/assets/img/base/example-sponsors-logo-5.svg +116 -0
- data/assets/img/base/example-sponsors-logo-6.svg +116 -0
- data/assets/img/base/example-sponsors-logo-7.svg +116 -0
- data/assets/img/base/example-sponsors-logo-8.svg +110 -0
- data/assets/img/base/page-layout-default.svg +1217 -0
- data/assets/img/base/page-with-alert.svg +383 -0
- data/assets/img/base/page-with-announcement.svg +956 -0
- data/assets/img/base/page-with-artwork.svg +1009 -0
- data/assets/img/base/page-with-backtotop.svg +1009 -0
- data/assets/img/base/page-with-bits.svg +891 -0
- data/assets/img/base/page-with-breadcrumb.svg +676 -0
- data/assets/img/base/page-with-breakingnews.svg +957 -0
- data/assets/img/base/page-with-color.svg +57 -0
- data/assets/img/base/page-with-copyright.svg +1018 -0
- data/assets/img/base/page-with-copyvalue.svg +57 -0
- data/assets/img/base/page-with-datatable.svg +857 -0
- data/assets/img/base/page-with-event.svg +518 -0
- data/assets/img/base/page-with-fontawesome.svg +147 -0
- data/assets/img/base/page-with-footer.svg +1018 -0
- data/assets/img/base/page-with-heading.svg +57 -0
- data/assets/img/base/page-with-highlight.svg +86 -0
- data/assets/img/base/page-with-image.svg +57 -0
- data/assets/img/base/page-with-link.svg +57 -0
- data/assets/img/base/page-with-locales.svg +1009 -0
- data/assets/img/base/page-with-navbar.svg +958 -0
- data/assets/img/base/page-with-navindex.svg +279 -0
- data/assets/img/base/page-with-ogp.svg +401 -0
- data/assets/img/base/page-with-project.svg +423 -0
- data/assets/img/base/page-with-shortcut.svg +937 -0
- data/assets/img/base/page-with-social.svg +937 -0
- data/assets/img/base/page-with-sponsors.svg +937 -0
- data/assets/img/base/page-with-title.svg +584 -0
- data/assets/img/base/page-with-toc.svg +399 -0
- data/assets/img/base/screenshot-1200x600.svg +114 -0
- data/assets/img/centos-dynamicmsg-logo.svg +1 -0
- data/assets/img/centos-dynamicmsg-type.svg +1 -0
- data/assets/img/centos-dynamicmsg-whitelogo.svg +1 -0
- data/assets/img/centos-dynamicmsg-whitetype.svg +1 -0
- data/assets/img/centos-gdm-whitelogo.svg +1 -0
- data/assets/img/centos-ipa-whiteheader.svg +1 -0
- data/assets/img/centos-logo-2bits.svg +1 -0
- data/assets/img/centos-logo.svg +1 -0
- data/assets/img/centos-message-logo.svg +1 -0
- data/assets/img/centos-motif.png +0 -0
- data/assets/img/centos-poweredby-logo.svg +1 -0
- data/assets/img/centos-social-share.png +0 -0
- data/assets/img/centos-symbol-2bits.svg +1 -0
- data/assets/img/centos-symbol.svg +1 -0
- data/assets/img/centos-type.svg +1 -0
- data/assets/img/centos-vertical-logo.svg +1 -0
- data/assets/img/centos-vertical-message-logo.svg +1 -0
- data/assets/img/centos-whitelogo.svg +1 -0
- data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
- data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
- data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
- data/assets/img/download/distribution-release-screenshot-1.png +0 -0
- data/assets/img/download/distribution-release-screenshot-2.png +0 -0
- data/assets/img/download/distribution-release-screenshot-3.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.svg +134 -0
- data/assets/img/download/download.svg +421 -0
- data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
- data/assets/img/people/page.svg +900 -0
- data/assets/img/people/page.webp +0 -0
- data/assets/img/people/username.webp +0 -0
- data/assets/js/base/backtotop.js +20 -0
- data/assets/js/base/copyvalue.js +145 -0
- data/assets/js/base/datatable.js +41 -0
- data/assets/js/base/heading-anchor.js +108 -0
- data/assets/js/base/highlight.js +12 -0
- data/assets/js/base/init-tooltips.js +12 -0
- data/assets/js/bootstrap.bundle.js +6312 -0
- data/assets/js/bootstrap.bundle.js.map +1 -0
- data/assets/js/bootstrap.bundle.min.js +7 -0
- data/assets/js/bootstrap.bundle.min.js.map +1 -0
- data/assets/js/bootstrap.esm.js +4447 -0
- data/assets/js/bootstrap.esm.js.map +1 -0
- data/assets/js/bootstrap.esm.min.js +7 -0
- data/assets/js/bootstrap.esm.min.js.map +1 -0
- data/assets/js/bootstrap.js +4494 -0
- data/assets/js/bootstrap.js.map +1 -0
- data/assets/js/bootstrap.min.js +7 -0
- data/assets/js/bootstrap.min.js.map +1 -0
- data/site.webmanifest +11 -0
- metadata +611 -0
|
@@ -0,0 +1,297 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="784.20868"
|
|
6
|
+
height="468.31464"
|
|
7
|
+
viewBox="0 0 207.48855 123.90824"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
inkscape:version="1.4.4 (dcaf3e7d9e, 2026-05-05)"
|
|
11
|
+
sodipodi:docname="example-ogp-image.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="false"
|
|
25
|
+
inkscape:deskcolor="#d1d1d1"
|
|
26
|
+
inkscape:document-units="px"
|
|
27
|
+
borderlayer="false"
|
|
28
|
+
showborder="false"
|
|
29
|
+
inkscape:zoom="1.4142136"
|
|
30
|
+
inkscape:cx="396.33334"
|
|
31
|
+
inkscape:cy="304.40946"
|
|
32
|
+
inkscape:window-width="3440"
|
|
33
|
+
inkscape:window-height="1403"
|
|
34
|
+
inkscape:window-x="0"
|
|
35
|
+
inkscape:window-y="0"
|
|
36
|
+
inkscape:window-maximized="1"
|
|
37
|
+
inkscape:current-layer="layer1"
|
|
38
|
+
showgrid="false" />
|
|
39
|
+
<defs
|
|
40
|
+
id="defs1">
|
|
41
|
+
<marker
|
|
42
|
+
style="overflow:visible"
|
|
43
|
+
id="Triangle"
|
|
44
|
+
refX="0"
|
|
45
|
+
refY="0"
|
|
46
|
+
orient="auto-start-reverse"
|
|
47
|
+
inkscape:stockid="Triangle arrow"
|
|
48
|
+
markerWidth="1"
|
|
49
|
+
markerHeight="1"
|
|
50
|
+
viewBox="0 0 1 1"
|
|
51
|
+
inkscape:isstock="true"
|
|
52
|
+
inkscape:collect="always"
|
|
53
|
+
preserveAspectRatio="xMidYMid">
|
|
54
|
+
<path
|
|
55
|
+
transform="scale(0.5)"
|
|
56
|
+
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
57
|
+
d="M 5.77,0 -2.88,5 V -5 Z"
|
|
58
|
+
id="path135" />
|
|
59
|
+
</marker>
|
|
60
|
+
<marker
|
|
61
|
+
style="overflow:visible"
|
|
62
|
+
id="Triangle-7"
|
|
63
|
+
refX="0"
|
|
64
|
+
refY="0"
|
|
65
|
+
orient="auto-start-reverse"
|
|
66
|
+
inkscape:stockid="Triangle arrow"
|
|
67
|
+
markerWidth="1"
|
|
68
|
+
markerHeight="1"
|
|
69
|
+
viewBox="0 0 1 1"
|
|
70
|
+
inkscape:isstock="true"
|
|
71
|
+
inkscape:collect="always"
|
|
72
|
+
preserveAspectRatio="xMidYMid">
|
|
73
|
+
<path
|
|
74
|
+
transform="scale(0.5)"
|
|
75
|
+
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
76
|
+
d="M 5.77,0 -2.88,5 V -5 Z"
|
|
77
|
+
id="path135-5" />
|
|
78
|
+
</marker>
|
|
79
|
+
<clipPath
|
|
80
|
+
clipPathUnits="userSpaceOnUse"
|
|
81
|
+
id="clipPath28">
|
|
82
|
+
<path
|
|
83
|
+
id="path29"
|
|
84
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.33797;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
85
|
+
d="m 306.371,-325.03536 c -8.65176,8.97009 -11.52002,30.40853 -12.46598,42.74731 l 89.64143,89.64143 c 2.18643,-9.3018 5.56546,-18.72181 10.73522,-23.89156 12.57262,-12.57263 37.71574,-1.97899 50.28856,-14.55181 12.57279,-12.57279 1.97911,-37.71587 14.55184,-50.28859 12.57274,-12.57274 37.71593,-1.97918 50.28858,-14.55183 12.57282,-12.57282 1.97974,-37.7165 14.55249,-50.28924 12.57276,-12.57276 37.79402,-1.59733 50.28856,-14.55181 8.65178,-8.97012 11.52005,-30.40856 12.46598,-42.74732 l -89.64207,-89.64207 c -2.18647,9.30184 -5.5648,18.72243 -10.73455,23.89218 -12.57265,12.57265 -37.7164,1.97965 -50.28925,14.55249 -12.57272,12.57272 -1.97908,37.71585 -14.55183,50.28859 -12.57272,12.57272 -37.71594,1.97918 -50.28856,14.55181 -12.57288,12.57288 -1.97915,37.7159 -14.55183,50.28858 -12.57279,12.57279 -37.79403,1.59733 -50.28859,14.55184 z"
|
|
86
|
+
sodipodi:nodetypes="cccssssssccsssssc" />
|
|
87
|
+
</clipPath>
|
|
88
|
+
</defs>
|
|
89
|
+
<g
|
|
90
|
+
inkscape:label="Layer 1"
|
|
91
|
+
inkscape:groupmode="layer"
|
|
92
|
+
id="layer1"
|
|
93
|
+
transform="translate(65.93618,-38.073772)">
|
|
94
|
+
<rect
|
|
95
|
+
style="opacity:1;fill:#ffffff;stroke:none;stroke-width:0.437536;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
|
96
|
+
id="rect8"
|
|
97
|
+
width="207.48854"
|
|
98
|
+
height="123.90825"
|
|
99
|
+
x="-65.93618"
|
|
100
|
+
y="38.073772" />
|
|
101
|
+
<g
|
|
102
|
+
id="g9"
|
|
103
|
+
transform="translate(0,17.991666)" />
|
|
104
|
+
<rect
|
|
105
|
+
style="fill:#f6edf4;stroke-width:1.38883;stroke-linecap:round;stroke-linejoin:round"
|
|
106
|
+
id="rect1"
|
|
107
|
+
width="173.21919"
|
|
108
|
+
height="90.940079"
|
|
109
|
+
x="-49.172928"
|
|
110
|
+
y="54.557861" />
|
|
111
|
+
<rect
|
|
112
|
+
style="fill:#ecdce8;stroke-width:0.798653;stroke-linecap:round;stroke-linejoin:round"
|
|
113
|
+
id="rect2"
|
|
114
|
+
width="72.174667"
|
|
115
|
+
height="72.174667"
|
|
116
|
+
x="1.3493359"
|
|
117
|
+
y="63.940567" />
|
|
118
|
+
<g
|
|
119
|
+
id="g12"
|
|
120
|
+
transform="matrix(0.54557227,0,0,0.54557227,-14.32524,-102.55171)">
|
|
121
|
+
<g
|
|
122
|
+
id="g21"
|
|
123
|
+
transform="translate(0,-2.1774013)">
|
|
124
|
+
<g
|
|
125
|
+
id="g8"
|
|
126
|
+
transform="translate(0,34.897769)">
|
|
127
|
+
<path
|
|
128
|
+
style="opacity:1;fill:#c795ba;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;marker-start:url(#Triangle);marker-end:url(#Triangle)"
|
|
129
|
+
d="M 32.334443,238.75956 H 157.28598"
|
|
130
|
+
id="path4"
|
|
131
|
+
sodipodi:nodetypes="cc" />
|
|
132
|
+
<rect
|
|
133
|
+
style="fill:#ffffff;stroke:none;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
|
134
|
+
id="rect7-7"
|
|
135
|
+
width="27.408489"
|
|
136
|
+
height="11.22532"
|
|
137
|
+
x="81.105965"
|
|
138
|
+
y="233.1469" />
|
|
139
|
+
<text
|
|
140
|
+
xml:space="preserve"
|
|
141
|
+
style="font-size:8.35316px;line-height:1.25;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono';writing-mode:lr-tb;direction:ltr;opacity:1;fill:#a14f8c;stroke:none;stroke-width:1.82554;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
|
142
|
+
x="87.384254"
|
|
143
|
+
y="241.42421"
|
|
144
|
+
id="text5"><tspan
|
|
145
|
+
sodipodi:role="line"
|
|
146
|
+
id="tspan5"
|
|
147
|
+
style="font-size:8.35316px;fill:#a14f8c;stroke:none;stroke-width:1.82554"
|
|
148
|
+
x="87.384254"
|
|
149
|
+
y="241.42421">512</tspan></text>
|
|
150
|
+
</g>
|
|
151
|
+
<path
|
|
152
|
+
style="opacity:1;fill:none;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
|
153
|
+
d="m 29.127397,262.85374 v 21.60717"
|
|
154
|
+
id="path9"
|
|
155
|
+
sodipodi:nodetypes="cc" />
|
|
156
|
+
<use
|
|
157
|
+
x="0"
|
|
158
|
+
y="0"
|
|
159
|
+
xlink:href="#path9"
|
|
160
|
+
id="use9"
|
|
161
|
+
transform="translate(131.49792)" />
|
|
162
|
+
</g>
|
|
163
|
+
</g>
|
|
164
|
+
<g
|
|
165
|
+
id="g11"
|
|
166
|
+
transform="matrix(0.54557227,0,0,0.54557227,-14.32524,19.301321)">
|
|
167
|
+
<path
|
|
168
|
+
style="fill:#c795ba;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;marker-start:url(#Triangle);marker-end:url(#Triangle)"
|
|
169
|
+
d="M -61.098001,247.80267 H 250.85072"
|
|
170
|
+
id="path3"
|
|
171
|
+
sodipodi:nodetypes="cc" />
|
|
172
|
+
<rect
|
|
173
|
+
style="fill:#ffffff;stroke:none;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
|
174
|
+
id="rect7"
|
|
175
|
+
width="27.408489"
|
|
176
|
+
height="11.22532"
|
|
177
|
+
x="81.172112"
|
|
178
|
+
y="242.19" />
|
|
179
|
+
<text
|
|
180
|
+
xml:space="preserve"
|
|
181
|
+
style="font-size:8.35316px;line-height:1.25;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono';writing-mode:lr-tb;direction:ltr;fill:#a14f8c;stroke:none;stroke-width:1.82554;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
|
182
|
+
x="84.743973"
|
|
183
|
+
y="250.46733"
|
|
184
|
+
id="text6"><tspan
|
|
185
|
+
sodipodi:role="line"
|
|
186
|
+
id="tspan6"
|
|
187
|
+
style="font-size:8.35316px;fill:#a14f8c;stroke:none;stroke-width:1.82554"
|
|
188
|
+
x="84.743973"
|
|
189
|
+
y="250.46733">1200</tspan></text>
|
|
190
|
+
<use
|
|
191
|
+
x="0"
|
|
192
|
+
y="0"
|
|
193
|
+
xlink:href="#use9"
|
|
194
|
+
id="use10"
|
|
195
|
+
transform="translate(92.604164,-25.85466)" />
|
|
196
|
+
<use
|
|
197
|
+
x="0"
|
|
198
|
+
y="0"
|
|
199
|
+
xlink:href="#use10"
|
|
200
|
+
id="use11"
|
|
201
|
+
transform="translate(-316.70625)" />
|
|
202
|
+
</g>
|
|
203
|
+
<g
|
|
204
|
+
id="g18"
|
|
205
|
+
transform="matrix(0.54557227,0,0,0.54557227,-251.78414,30.964484)">
|
|
206
|
+
<g
|
|
207
|
+
id="g23"
|
|
208
|
+
transform="translate(-5.4337012)">
|
|
209
|
+
<path
|
|
210
|
+
style="fill:#c795ba;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;marker-start:url(#Triangle-7);marker-end:url(#Triangle-7)"
|
|
211
|
+
d="M 360.31531,188.93242 V 64.245455"
|
|
212
|
+
id="path4-6"
|
|
213
|
+
sodipodi:nodetypes="cc" />
|
|
214
|
+
<rect
|
|
215
|
+
style="fill:#ffffff;stroke:none;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
|
216
|
+
id="rect7-0"
|
|
217
|
+
width="22.116842"
|
|
218
|
+
height="12.548244"
|
|
219
|
+
x="349.2569"
|
|
220
|
+
y="120.31481" />
|
|
221
|
+
<path
|
|
222
|
+
style="fill:none;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
|
223
|
+
d="M 349.51173,192.3379 H 371.1189"
|
|
224
|
+
id="use14"
|
|
225
|
+
sodipodi:nodetypes="cc" />
|
|
226
|
+
<use
|
|
227
|
+
x="0"
|
|
228
|
+
y="0"
|
|
229
|
+
xlink:href="#use14"
|
|
230
|
+
id="use15"
|
|
231
|
+
transform="translate(0,-131.49792)" />
|
|
232
|
+
<text
|
|
233
|
+
xml:space="preserve"
|
|
234
|
+
style="font-size:8.35316px;line-height:1.25;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono';text-align:center;writing-mode:lr-tb;direction:ltr;text-anchor:middle;fill:#a14f8c;stroke:none;stroke-width:1.82554;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
|
235
|
+
x="360.4072"
|
|
236
|
+
y="129.2536"
|
|
237
|
+
id="use18"><tspan
|
|
238
|
+
sodipodi:role="line"
|
|
239
|
+
id="tspan18"
|
|
240
|
+
style="font-size:8.35316px;fill:#a14f8c;stroke:none;stroke-width:1.82554"
|
|
241
|
+
x="360.4072"
|
|
242
|
+
y="129.2536">512</tspan></text>
|
|
243
|
+
</g>
|
|
244
|
+
</g>
|
|
245
|
+
<g
|
|
246
|
+
id="g22"
|
|
247
|
+
transform="matrix(0.54557227,0,0,0.54557227,-32.211101,15.224925)">
|
|
248
|
+
<path
|
|
249
|
+
style="fill:#c795ba;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;marker-start:url(#Triangle-7);marker-end:url(#Triangle-7)"
|
|
250
|
+
d="M 303.58294,235.31785 V 75.559279"
|
|
251
|
+
id="path5"
|
|
252
|
+
sodipodi:nodetypes="cc" />
|
|
253
|
+
<rect
|
|
254
|
+
style="fill:#ffffff;stroke:none;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
|
255
|
+
id="rect15"
|
|
256
|
+
width="22.116842"
|
|
257
|
+
height="12.548244"
|
|
258
|
+
x="292.52451"
|
|
259
|
+
y="149.16444" />
|
|
260
|
+
<text
|
|
261
|
+
xml:space="preserve"
|
|
262
|
+
style="font-size:8.35316px;line-height:1.25;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono';text-align:center;writing-mode:lr-tb;direction:ltr;text-anchor:middle;fill:#a14f8c;stroke:none;stroke-width:1.82554;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
|
263
|
+
x="303.55789"
|
|
264
|
+
y="158.10323"
|
|
265
|
+
id="use16"><tspan
|
|
266
|
+
sodipodi:role="line"
|
|
267
|
+
id="tspan16"
|
|
268
|
+
style="font-size:8.35316px;fill:#a14f8c;stroke:none;stroke-width:1.82554"
|
|
269
|
+
x="303.55789"
|
|
270
|
+
y="158.10323">630</tspan></text>
|
|
271
|
+
<path
|
|
272
|
+
style="fill:none;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
|
273
|
+
d="M 292.09857,72.491693 H 315.0673"
|
|
274
|
+
id="use21"
|
|
275
|
+
sodipodi:nodetypes="cc" />
|
|
276
|
+
<use
|
|
277
|
+
x="0"
|
|
278
|
+
y="0"
|
|
279
|
+
xlink:href="#use21"
|
|
280
|
+
id="use22"
|
|
281
|
+
transform="translate(5e-6,165.89375)" />
|
|
282
|
+
</g>
|
|
283
|
+
<g
|
|
284
|
+
id="g27"
|
|
285
|
+
transform="matrix(0.24005696,0.24005696,-0.24005696,0.24005696,-125.52333,100.61498)"
|
|
286
|
+
inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
|
|
287
|
+
inkscape:export-xdpi="10.11"
|
|
288
|
+
inkscape:export-ydpi="10.11"
|
|
289
|
+
style="fill:#ffffff;fill-opacity:1;stroke-width:3.80952"
|
|
290
|
+
clip-path="url(#clipPath28)">
|
|
291
|
+
<path
|
|
292
|
+
id="path27"
|
|
293
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:5.0397;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
294
|
+
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" />
|
|
295
|
+
</g>
|
|
296
|
+
</g>
|
|
297
|
+
</svg>
|
|
@@ -0,0 +1,226 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="169.33333mm"
|
|
6
|
+
height="63.735683mm"
|
|
7
|
+
viewBox="0 0 169.33333 63.735685"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
|
|
11
|
+
sodipodi:docname="example-sponsors-design.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="mm"
|
|
26
|
+
inkscape:zoom="1.4726563"
|
|
27
|
+
inkscape:cx="128"
|
|
28
|
+
inkscape:cy="157.19893"
|
|
29
|
+
inkscape:window-width="3440"
|
|
30
|
+
inkscape:window-height="1371"
|
|
31
|
+
inkscape:window-x="0"
|
|
32
|
+
inkscape:window-y="0"
|
|
33
|
+
inkscape:window-maximized="1"
|
|
34
|
+
inkscape:current-layer="layer1"
|
|
35
|
+
showgrid="false" />
|
|
36
|
+
<defs
|
|
37
|
+
id="defs1">
|
|
38
|
+
<marker
|
|
39
|
+
style="overflow:visible"
|
|
40
|
+
id="marker18"
|
|
41
|
+
refX="0"
|
|
42
|
+
refY="0"
|
|
43
|
+
orient="auto-start-reverse"
|
|
44
|
+
inkscape:stockid="Triangle arrow"
|
|
45
|
+
markerWidth="1"
|
|
46
|
+
markerHeight="1"
|
|
47
|
+
viewBox="0 0 1 1"
|
|
48
|
+
inkscape:isstock="true"
|
|
49
|
+
inkscape:collect="always"
|
|
50
|
+
preserveAspectRatio="xMidYMid">
|
|
51
|
+
<path
|
|
52
|
+
transform="scale(0.5)"
|
|
53
|
+
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
54
|
+
d="M 5.77,0 -2.88,5 V -5 Z"
|
|
55
|
+
id="path18" />
|
|
56
|
+
</marker>
|
|
57
|
+
<marker
|
|
58
|
+
style="overflow:visible"
|
|
59
|
+
id="Triangle"
|
|
60
|
+
refX="0"
|
|
61
|
+
refY="0"
|
|
62
|
+
orient="auto-start-reverse"
|
|
63
|
+
inkscape:stockid="Triangle arrow"
|
|
64
|
+
markerWidth="1"
|
|
65
|
+
markerHeight="1"
|
|
66
|
+
viewBox="0 0 1 1"
|
|
67
|
+
inkscape:isstock="true"
|
|
68
|
+
inkscape:collect="always"
|
|
69
|
+
preserveAspectRatio="xMidYMid">
|
|
70
|
+
<path
|
|
71
|
+
transform="scale(0.5)"
|
|
72
|
+
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
73
|
+
d="M 5.77,0 -2.88,5 V -5 Z"
|
|
74
|
+
id="path135" />
|
|
75
|
+
</marker>
|
|
76
|
+
<marker
|
|
77
|
+
style="overflow:visible"
|
|
78
|
+
id="marker18-2"
|
|
79
|
+
refX="0"
|
|
80
|
+
refY="0"
|
|
81
|
+
orient="auto-start-reverse"
|
|
82
|
+
inkscape:stockid="Triangle arrow"
|
|
83
|
+
markerWidth="1"
|
|
84
|
+
markerHeight="1"
|
|
85
|
+
viewBox="0 0 1 1"
|
|
86
|
+
inkscape:isstock="true"
|
|
87
|
+
inkscape:collect="always"
|
|
88
|
+
preserveAspectRatio="xMidYMid">
|
|
89
|
+
<path
|
|
90
|
+
transform="scale(0.5)"
|
|
91
|
+
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
92
|
+
d="M 5.77,0 -2.88,5 V -5 Z"
|
|
93
|
+
id="path18-6" />
|
|
94
|
+
</marker>
|
|
95
|
+
<marker
|
|
96
|
+
style="overflow:visible"
|
|
97
|
+
id="Triangle-1"
|
|
98
|
+
refX="0"
|
|
99
|
+
refY="0"
|
|
100
|
+
orient="auto-start-reverse"
|
|
101
|
+
inkscape:stockid="Triangle arrow"
|
|
102
|
+
markerWidth="1"
|
|
103
|
+
markerHeight="1"
|
|
104
|
+
viewBox="0 0 1 1"
|
|
105
|
+
inkscape:isstock="true"
|
|
106
|
+
inkscape:collect="always"
|
|
107
|
+
preserveAspectRatio="xMidYMid">
|
|
108
|
+
<path
|
|
109
|
+
transform="scale(0.5)"
|
|
110
|
+
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
111
|
+
d="M 5.77,0 -2.88,5 V -5 Z"
|
|
112
|
+
id="path135-8" />
|
|
113
|
+
</marker>
|
|
114
|
+
</defs>
|
|
115
|
+
<g
|
|
116
|
+
inkscape:label="Layer 1"
|
|
117
|
+
inkscape:groupmode="layer"
|
|
118
|
+
id="layer1"
|
|
119
|
+
transform="translate(-104.24583,25.069433)">
|
|
120
|
+
<rect
|
|
121
|
+
style="fill:#f6edf4;stroke-width:0.416726;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
122
|
+
id="rect13-5"
|
|
123
|
+
width="169.33333"
|
|
124
|
+
height="63.735683"
|
|
125
|
+
x="104.24583"
|
|
126
|
+
y="-25.069433"
|
|
127
|
+
inkscape:export-filename="screenshot-sponsors-logo.png"
|
|
128
|
+
inkscape:export-xdpi="96"
|
|
129
|
+
inkscape:export-ydpi="96" />
|
|
130
|
+
<g
|
|
131
|
+
id="g2"
|
|
132
|
+
transform="translate(-3.1490785e-4,-0.77812999)">
|
|
133
|
+
<path
|
|
134
|
+
style="fill:#0188cc;fill-opacity:1;stroke:#a14f8c;stroke-width:0.490297;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.96118, 1.96118;stroke-dashoffset:0;stroke-opacity:1"
|
|
135
|
+
d="M 180.00667,-6.1547687 V -18.57341"
|
|
136
|
+
id="path19"
|
|
137
|
+
sodipodi:nodetypes="cc" />
|
|
138
|
+
<path
|
|
139
|
+
style="fill:#0188cc;fill-opacity:1;stroke:#a14f8c;stroke-width:0.490297;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.96118, 1.96118;stroke-dashoffset:0;stroke-opacity:1"
|
|
140
|
+
d="m 179.71837,-5.9860515 h 75.88072"
|
|
141
|
+
id="path12-9"
|
|
142
|
+
sodipodi:nodetypes="cc" />
|
|
143
|
+
<path
|
|
144
|
+
style="fill:#0188cc;fill-opacity:1;stroke:#a14f8c;stroke-width:0.490297;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.96118, 1.96118;stroke-dashoffset:0;stroke-opacity:1"
|
|
145
|
+
d="m 238.10918,22.791533 h 17.48991"
|
|
146
|
+
id="path13-1"
|
|
147
|
+
sodipodi:nodetypes="cc" />
|
|
148
|
+
<path
|
|
149
|
+
style="fill:#0188cc;fill-opacity:1;stroke:#a14f8c;stroke-width:0.490297;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.96118, 1.96118;stroke-dashoffset:0;stroke-opacity:1"
|
|
150
|
+
d="M 122.47167,33.726487 V 22.869463"
|
|
151
|
+
id="path14-2"
|
|
152
|
+
sodipodi:nodetypes="cc" />
|
|
153
|
+
<path
|
|
154
|
+
style="fill:#0188cc;fill-opacity:1;stroke:#a14f8c;stroke-width:0.490297;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.96118, 1.96118;stroke-dashoffset:0;stroke-opacity:1"
|
|
155
|
+
d="M 238.08736,33.726487 V -18.57341"
|
|
156
|
+
id="path15-7"
|
|
157
|
+
sodipodi:nodetypes="cc" />
|
|
158
|
+
<text
|
|
159
|
+
xml:space="preserve"
|
|
160
|
+
style="font-size:4.72723px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#a14f8c;fill-opacity:1;stroke-width:0.163432"
|
|
161
|
+
x="173.0667"
|
|
162
|
+
y="30.985672"
|
|
163
|
+
id="text15-9-3"><tspan
|
|
164
|
+
sodipodi:role="line"
|
|
165
|
+
style="fill:#a14f8c;fill-opacity:1;stroke-width:0.163432"
|
|
166
|
+
x="173.0667"
|
|
167
|
+
y="30.985672"
|
|
168
|
+
id="tspan16-6">492px</tspan></text>
|
|
169
|
+
<path
|
|
170
|
+
style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.490297;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker18);marker-end:url(#Triangle)"
|
|
171
|
+
d="m 124.47187,29.775502 h 46.29287 m 18.09949,0 h 47.19646"
|
|
172
|
+
id="path17"
|
|
173
|
+
sodipodi:nodetypes="cccc" />
|
|
174
|
+
<text
|
|
175
|
+
xml:space="preserve"
|
|
176
|
+
style="font-size:4.72723px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#a14f8c;fill-opacity:1;stroke-width:0.163432"
|
|
177
|
+
x="243.37663"
|
|
178
|
+
y="10.057274"
|
|
179
|
+
id="text15-0"><tspan
|
|
180
|
+
sodipodi:role="line"
|
|
181
|
+
id="tspan15-9"
|
|
182
|
+
style="fill:#a14f8c;fill-opacity:1;stroke-width:0.163432"
|
|
183
|
+
x="243.37663"
|
|
184
|
+
y="10.057274">60px</tspan></text>
|
|
185
|
+
<path
|
|
186
|
+
style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.490297;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker18-2);marker-end:url(#Triangle-1)"
|
|
187
|
+
d="m 245.07135,20.764767 v -7.353652 m 0,-8.7208893 v -8.6495115"
|
|
188
|
+
id="path17-2"
|
|
189
|
+
sodipodi:nodetypes="cccc" />
|
|
190
|
+
<g
|
|
191
|
+
id="g1"
|
|
192
|
+
transform="matrix(0.98831555,0,0,0.98831555,7.8450193,5.6592658)">
|
|
193
|
+
<path
|
|
194
|
+
style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.496094;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker18-2);marker-end:url(#Triangle-1)"
|
|
195
|
+
d="M 230.93738,-19.677202 H 212.0195 m -17.0652,0 h -19.06418"
|
|
196
|
+
id="path20"
|
|
197
|
+
sodipodi:nodetypes="cccc" />
|
|
198
|
+
<text
|
|
199
|
+
xml:space="preserve"
|
|
200
|
+
style="font-size:4.78312px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#a14f8c;fill-opacity:1;stroke-width:0.165364"
|
|
201
|
+
x="196.32039"
|
|
202
|
+
y="-18.250635"
|
|
203
|
+
id="text20"><tspan
|
|
204
|
+
sodipodi:role="line"
|
|
205
|
+
id="tspan20"
|
|
206
|
+
style="fill:#a14f8c;fill-opacity:1;stroke-width:0.165364"
|
|
207
|
+
x="196.32039"
|
|
208
|
+
y="-18.250635">242px</tspan></text>
|
|
209
|
+
</g>
|
|
210
|
+
<rect
|
|
211
|
+
style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:0.490297;stroke-linejoin:bevel;stroke-dasharray:1.96118, 1.96118;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
212
|
+
id="rect12-5"
|
|
213
|
+
width="116.10598"
|
|
214
|
+
height="29.267748"
|
|
215
|
+
x="122.22653"
|
|
216
|
+
y="-6.2311997" />
|
|
217
|
+
<rect
|
|
218
|
+
style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:0.490297;stroke-linejoin:bevel;stroke-dasharray:1.96118, 1.96118;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
219
|
+
id="rect18"
|
|
220
|
+
width="58.633358"
|
|
221
|
+
height="29.267881"
|
|
222
|
+
x="179.69916"
|
|
223
|
+
y="-6.2311997" />
|
|
224
|
+
</g>
|
|
225
|
+
</g>
|
|
226
|
+
</svg>
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="63.5mm"
|
|
6
|
+
height="15.875mm"
|
|
7
|
+
viewBox="0 0 63.5 15.875"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
|
|
11
|
+
sodipodi:docname="sponsor-logo-1.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="mm"
|
|
26
|
+
inkscape:zoom="4.0658528"
|
|
27
|
+
inkscape:cx="61.610691"
|
|
28
|
+
inkscape:cy="63.332347"
|
|
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="g7-3"
|
|
35
|
+
showgrid="false" />
|
|
36
|
+
<defs
|
|
37
|
+
id="defs1" />
|
|
38
|
+
<g
|
|
39
|
+
inkscape:label="Layer 1"
|
|
40
|
+
inkscape:groupmode="layer"
|
|
41
|
+
id="layer1"
|
|
42
|
+
transform="translate(-214.04791,-95.514585)">
|
|
43
|
+
<g
|
|
44
|
+
id="layer1-5">
|
|
45
|
+
<g
|
|
46
|
+
id="g7-3"
|
|
47
|
+
transform="translate(305.79321,178.02635)"
|
|
48
|
+
inkscape:export-filename="sponsor-logo-1.png"
|
|
49
|
+
inkscape:export-xdpi="96"
|
|
50
|
+
inkscape:export-ydpi="96">
|
|
51
|
+
<rect
|
|
52
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:0.79375;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
53
|
+
id="rect2-5"
|
|
54
|
+
width="63.5"
|
|
55
|
+
height="15.875"
|
|
56
|
+
x="-91.7453"
|
|
57
|
+
y="-82.511765"
|
|
58
|
+
inkscape:export-filename="sponsor-logo-4.png"
|
|
59
|
+
inkscape:export-xdpi="96"
|
|
60
|
+
inkscape:export-ydpi="96" />
|
|
61
|
+
<text
|
|
62
|
+
xml:space="preserve"
|
|
63
|
+
style="font-size:22.6785px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#f6edf4;fill-opacity:1;stroke-width:1.47902"
|
|
64
|
+
x="-30.807968"
|
|
65
|
+
y="-66.63678"
|
|
66
|
+
id="text1"
|
|
67
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
|
68
|
+
inkscape:export-xdpi="96"
|
|
69
|
+
inkscape:export-ydpi="96"><tspan
|
|
70
|
+
sodipodi:role="line"
|
|
71
|
+
id="tspan1"
|
|
72
|
+
style="font-weight:bold;text-align:center;text-anchor:middle;fill:#f6edf4;fill-opacity:1;stroke-width:1.47902"
|
|
73
|
+
x="-30.807968"
|
|
74
|
+
y="-66.63678">1</tspan></text>
|
|
75
|
+
<text
|
|
76
|
+
xml:space="preserve"
|
|
77
|
+
style="font-size:22.6785px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;opacity:0.5;fill:#f6edf4;fill-opacity:1;stroke-width:1.47902"
|
|
78
|
+
x="-33.453804"
|
|
79
|
+
y="-66.63678"
|
|
80
|
+
id="text2"
|
|
81
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
|
82
|
+
inkscape:export-xdpi="96"
|
|
83
|
+
inkscape:export-ydpi="96"><tspan
|
|
84
|
+
sodipodi:role="line"
|
|
85
|
+
id="tspan2"
|
|
86
|
+
style="font-weight:bold;text-align:center;text-anchor:middle;fill:#f6edf4;fill-opacity:1;stroke-width:1.47902"
|
|
87
|
+
x="-33.453804"
|
|
88
|
+
y="-66.63678">1</tspan></text>
|
|
89
|
+
<text
|
|
90
|
+
xml:space="preserve"
|
|
91
|
+
style="font-size:22.6785px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;opacity:0.3;fill:#f6edf4;fill-opacity:1;stroke-width:1.47902"
|
|
92
|
+
x="-36.09964"
|
|
93
|
+
y="-66.63678"
|
|
94
|
+
id="text3"
|
|
95
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
|
96
|
+
inkscape:export-xdpi="96"
|
|
97
|
+
inkscape:export-ydpi="96"><tspan
|
|
98
|
+
sodipodi:role="line"
|
|
99
|
+
id="tspan3"
|
|
100
|
+
style="font-weight:bold;text-align:center;text-anchor:middle;fill:#f6edf4;fill-opacity:1;stroke-width:1.47902"
|
|
101
|
+
x="-36.09964"
|
|
102
|
+
y="-66.63678">1</tspan></text>
|
|
103
|
+
<text
|
|
104
|
+
xml:space="preserve"
|
|
105
|
+
style="font-size:4.05696px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.264583"
|
|
106
|
+
x="-59.883732"
|
|
107
|
+
y="-73.154327"
|
|
108
|
+
id="text2-6"
|
|
109
|
+
inkscape:export-filename="sponsor-logo-7.png"
|
|
110
|
+
inkscape:export-xdpi="96"
|
|
111
|
+
inkscape:export-ydpi="96"><tspan
|
|
112
|
+
sodipodi:role="line"
|
|
113
|
+
id="tspan2-2"
|
|
114
|
+
style="font-weight:bold;text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.264583"
|
|
115
|
+
x="-59.883732"
|
|
116
|
+
y="-73.154327">SPONSOR-LOGO-1</tspan></text>
|
|
117
|
+
</g>
|
|
118
|
+
</g>
|
|
119
|
+
</g>
|
|
120
|
+
</svg>
|