ratchet_design 0.1.17 → 0.1.18

Sign up to get free protection for your applications and to get access to all the features.
Files changed (34) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/ratchet/core.js +4 -0
  3. data/app/assets/javascripts/ratchet/shim/object_fit.js +236 -0
  4. data/app/assets/javascripts/ratchet/utility/load_font.js +24 -11
  5. data/app/assets/stylesheets/ratchet/base/_document.scss +8 -30
  6. data/app/assets/stylesheets/ratchet/base/_form.scss +42 -58
  7. data/app/assets/stylesheets/ratchet/base/_section.scss +140 -159
  8. data/app/assets/stylesheets/ratchet/base/_text.scss +1 -1
  9. data/app/assets/stylesheets/ratchet/base/_validation.scss +3 -3
  10. data/app/assets/stylesheets/ratchet/fonts-woff.css +22 -6
  11. data/app/assets/stylesheets/ratchet/fonts-woff2.css +22 -6
  12. data/app/assets/stylesheets/ratchet/utility/_color.scss +80 -54
  13. data/app/assets/stylesheets/ratchet/utility/_global.scss +96 -21
  14. data/app/assets/stylesheets/ratchet/utility/_grid.scss +54 -5
  15. data/app/helpers/ratchet/application_helper.rb +10 -11
  16. data/app/views/layouts/ratchet/default.html.slim +7 -7
  17. data/app/views/shared/ratchet/_defs.html.slim +23 -2
  18. data/app/views/shared/ratchet/_footer.html.slim +2 -4
  19. data/app/views/shared/ratchet/_icons.html.slim +197 -128
  20. data/lib/ratchet_design/version.rb +1 -1
  21. data/public/{core-0.1.17.js → core-0.1.18.js} +68 -64
  22. data/public/core-0.1.18.js.gz +0 -0
  23. data/public/core-0.1.18.map.json +1 -0
  24. data/public/fonts-woff-0.1.18.css +71 -0
  25. data/public/fonts-woff-0.1.18.css.gz +0 -0
  26. data/public/fonts-woff2-0.1.18.css +71 -0
  27. data/public/fonts-woff2-0.1.18.css.gz +0 -0
  28. metadata +10 -9
  29. data/public/core-0.1.17.js.gz +0 -0
  30. data/public/core-0.1.17.map.json +0 -1
  31. data/public/fonts-woff-0.1.17.css +0 -55
  32. data/public/fonts-woff-0.1.17.css.gz +0 -0
  33. data/public/fonts-woff2-0.1.17.css +0 -55
  34. data/public/fonts-woff2-0.1.17.css.gz +0 -0
@@ -26,14 +26,14 @@ html
26
26
  / Ratchet core JS
27
27
  = javascript_tag "core"
28
28
 
29
+ / Site JS
30
+ = yield :javascripts
31
+
29
32
  / Font-loading JS
30
33
  javascript:
31
- document.addEventListener( 'DOMContentLoaded', function() {
34
+ ratchet.event.ready( function(){
32
35
  ratchet.loadFont( 'proxima-nova-', '#{stylesheet_url("fonts-woff.css").first}', '#{stylesheet_url("fonts-woff2.css").first}' )
33
- }, false );
34
-
35
- / Site JS
36
- = yield :javascripts
36
+ })
37
37
 
38
38
  / Site CSS
39
39
  = yield :stylesheets
@@ -41,11 +41,11 @@ html
41
41
  / Head
42
42
  = yield :head
43
43
 
44
- body class=page_class
44
+ body class=page_classes
45
45
 
46
46
  / Icon inclusion
47
47
  = render "shared/ratchet/icons"
48
-
48
+
49
49
  - if content_for?(:blank)
50
50
 
51
51
  = yield :blank
@@ -1,14 +1,17 @@
1
1
  ruby:
2
2
  activeColor = [
3
3
  { "name" => "azure" },
4
+ { "name" => "cerulean" },
4
5
  { "name" => "byzantine" },
5
6
  { "name" => "mulberry" },
6
7
  { "name" => "majorelle" },
7
8
  { "name" => "caribbean" },
8
9
  { "name" => "grass" },
10
+ { "name" => "apple" },
9
11
  { "name" => "gold" },
10
12
  { "name" => "tangelo" },
11
- { "name" => "rusty" }
13
+ { "name" => "rusty" },
14
+ { "name" => "orchid" }
12
15
  ]
13
16
 
14
17
  passiveColor = [
@@ -16,7 +19,9 @@
16
19
  { "name" => "shark" },
17
20
  { "name" => "steel" },
18
21
  { "name" => "pewter" },
22
+ { "name" => "dolphin" },
19
23
  { "name" => "alabaster" },
24
+ { "name" => "isabella" },
20
25
  { "name" => "smoke" },
21
26
  { "name" => "white" }
22
27
  ]
@@ -30,7 +35,15 @@
30
35
  { "name" => "sunset" },
31
36
  { "name" => "berries" },
32
37
  { "name" => "supernova" },
33
- { "name" => "emerald" }
38
+ { "name" => "emerald" },
39
+ { "name" => "aurora" },
40
+ { "name" => "tidal" },
41
+ { "name" => "blackhole" },
42
+ { "name" => "midnight" },
43
+ { "name" => "shady" },
44
+ { "name" => "grayscale" },
45
+ { "name" => "polar" },
46
+ { "name" => "eggshell" }
34
47
  ]
35
48
 
36
49
  defs#svg-defs
@@ -40,11 +53,19 @@
40
53
  linearGradient id="#{a["name"]}" gradientUnits="objectBoundingBox"
41
54
  stop offset="0"
42
55
 
56
+ - activeColor.each do | a |
57
+ linearGradient id="#{a["name"]}-darken" gradientUnits="objectBoundingBox"
58
+ stop offset="0"
59
+
43
60
  // Passive Colors
44
61
  - passiveColor.each do | a |
45
62
  linearGradient id="#{a["name"]}" gradientUnits="objectBoundingBox"
46
63
  stop offset="0"
47
64
 
65
+ - passiveColor.each do | a |
66
+ linearGradient id="#{a["name"]}-darken" gradientUnits="objectBoundingBox"
67
+ stop offset="0"
68
+
48
69
  // Standard Gradients
49
70
  - gradient.each do | a |
50
71
  linearGradient id="#{a["name"]}" gradientUnits="objectBoundingBox" gradientTransform="rotate(55)"
@@ -1,9 +1,7 @@
1
1
  / Render Ratchet footer
2
2
  - if content_for?(:footer)
3
- footer role="contentinfo"
4
- = yield :footer
3
+ = yield :footer
5
4
 
6
5
  / Render Kraken footer
7
6
  - else
8
- footer.kraken role="contentinfo"
9
- = render "pages/kraken/partials/footer"
7
+ = render "pages/kraken/partials/footer"
@@ -1,136 +1,205 @@
1
- svg#icons style="height: 0; width: 0; position: absolute; display: none" xmlns="http://www.w3.org/2000/svg" height="0" width="0"
2
-
1
+ svg#color-defs xmlns="http://www.w3.org/2000/svg" height="0" width="0" style="position: absolute; z-index: -1; visibility: hidden;"
2
+
3
3
  = render "/shared/ratchet/defs"
4
4
 
5
- /! Compose logo (viewBox="0 0 650 122")
6
- symbol#compose-logo fill="currentColor"
7
- path d="M325.4 28.6c-16.7 0-28.7 12.2-28.7 29s12.1 29 28.7 29c16.7 0 28.7-12.2 28.7-29 .1-16.8-12-29-28.7-29zm0 46.7c-9.5 0-16.1-7.3-16.1-17.7 0-10.6 6.5-17.7 16.1-17.7 9.5 0 16.1 7.3 16.1 17.7.1 10.4-6.6 17.7-16.1 17.7z"
8
- polygon points="394.1,50.2 380.7,28.8 365,28.8 365,84.8 378,84.8 378,48.3 394.5,71.4 411,48.3 411,84.8 423,84.8 423,28.8 407.6,28.8"
9
- path d="M461.3 28.8h-25.3v56h12v-18h13.3c11.1 0 18.9-8.3 18.9-19 .1-10.7-7.7-19-18.9-19zm-1.2 27h-12.1v-15h12.1c4.5 0 7.6 3.4 7.6 7.5s-3.1 7.5-7.6 7.5zM516.1 28.6c-16.7 0-28.7 12.2-28.7 29s12.1 29 28.7 29c16.7 0 28.7-12.2 28.7-29 .1-16.8-12-29-28.7-29zm0 46.7c-9.5 0-16.1-7.3-16.1-17.7 0-10.6 6.5-17.7 16.1-17.7 9.5 0 16.1 7.3 16.1 17.7 0 10.4-6.6 17.7-16.1 17.7zM576.9 50.7c-6.5-1.6-10.4-2.8-10.4-5.5 0-3.1 2.9-5.1 7.5-5.1 5.6 0 10.7 2 14.3 5.6l1.2 1.2 7.2-9.4-1-.9c-5.4-5.2-12.5-7.8-21-7.8-12.1 0-20.9 7.2-20.9 17 0 12.3 11 15.1 19.9 17.4 6.9 1.8 11.1 3.1 11.1 6.4 0 2.6-2.4 5.7-9.2 5.7-8.1 0-13.3-4.3-15.7-6.8l-1.3-1.3-7 9.7.9.9c5.5 5.8 13.3 8.9 22.7 8.9 16.3 0 22.1-9.3 22.1-17.9.2-12.9-11.7-15.9-20.4-18.1z"
10
- polygon points="650,40.8 650,28.8 608,28.8 608,84.8 650,84.8 650,73.8 620,73.8 620,61.8 646,61.8 646,50.8 620,50.8 620,40.8"
11
- path d="M238 57.9c0 16.8 11.9 29 29 29 8.9 0 16.4-3.6 21.7-10.7l-8-8c-2.4 4-8.3 7.4-13.2 7.4-9.8 0-16.8-7.6-16.8-17.8 0-10.2 7.1-17.8 16.9-17.8 4.9 0 10.9 3.4 13.3 7.4l8.1-8c-5.3-7.1-13-10.7-21.9-10.7-17.2.2-29.1 12.4-29.1 29.2zM379.2 114.3h-7.5l3.7-9.9 3.8 9.9zm6.7 7.2l-8.2-20.8h-4.6l-8.2 20.8h4.1l1.5-4h9.5l1.5 4h4.4z"
12
- polygon points="407.7,121.5 407.7,100.7 404.1,100.7 404.1,115.1 393.5,100.7 389.7,100.7 389.7,121.5 393.4,121.5 393.4,106.6 404.2,121.5"
13
- rect height="20.8" width="3.6" x="423.3" y="100.7"
14
- path d="M442.6 118.2h-6v-5.8h6c2.1 0 3.2 1.3 3.2 2.9 0 1.9-1.2 2.9-3.2 2.9zm-.2-8.9h-5.8v-5.4h5.8c1.9 0 2.9 1.2 2.9 2.7 0 1.5-1 2.7-2.9 2.7zm1 12.2c3.9 0 6-2.4 6-5.6 0-2.6-1.8-4.8-4-5.1 1.9-.4 3.6-2.2 3.6-4.8 0-2.9-2.1-5.3-5.9-5.3h-10.2v20.8h10.5z"
15
- polygon points="476.3,121.5 476.3,100.7 471.2,100.7 465.5,114.3 459.8,100.7 454.7,100.7 454.7,121.5 458.3,121.5 458.3,106 464.7,121.5 466.3,121.5 472.7,106 472.7,121.5"
16
- path d="M501.8 121.8c4.2 0 6.8-2.2 8.4-4.7l-3.1-1.6c-1 1.7-3 3-5.2 3-4.1 0-7.2-3.1-7.2-7.5s3.1-7.5 7.2-7.5c2.2 0 4.2 1.3 5.2 3l3.1-1.6c-1.6-2.5-4.1-4.7-8.4-4.7-6.1 0-10.9 4.4-10.9 10.8 0 6.5 4.8 10.8 10.9 10.8zM524.4 118.6c-4.2 0-6.9-3.2-6.9-7.5s2.7-7.5 6.9-7.5 6.9 3.2 6.9 7.5c0 4.2-2.7 7.5-6.9 7.5zm0 3.2c6.2 0 10.6-4.6 10.6-10.8s-4.4-10.8-10.6-10.8-10.6 4.6-10.6 10.8 4.3 10.8 10.6 10.8z"
17
- polygon points="561.7,121.5 561.7,100.7 556.6,100.7 550.9,114.3 545.2,100.7 540.1,100.7 540.1,121.5 543.7,121.5 543.7,106 550.1,121.5 551.7,121.5 558.1,106 558.1,121.5"
18
- path d="M576.3 110.5h-5v-6.6h5c2.1 0 3.6 1.3 3.6 3.3s-1.5 3.3-3.6 3.3zm-5 11v-7.8h5.5c4.3 0 6.8-3 6.8-6.5s-2.4-6.5-6.8-6.5h-9.1v20.8h3.6zM597.9 114.3h-7.5l3.7-9.9 3.8 9.9zm6.7 7.2l-8.2-20.8h-4.6l-8.2 20.8h4.1l1.5-4h9.5l1.5 4h4.4z"
19
- polygon points="626.4,121.5 626.4,100.7 622.8,100.7 622.8,115.1 612.1,100.7 608.4,100.7 608.4,121.5 612.1,121.5 612.1,106.6 622.9,121.5"
20
- polygon points="642,121.5 642,112.8 650,100.7 645.8,100.7 640.1,109.6 634.4,100.7 630.2,100.7 638.3,112.8 638.3,121.5"
21
- path d="M158.1 23.1h-.1l-38.8-22.6-38.3 22.3-39.3-22.8-41.6 24.2v44l80.3 46.8 38.4-22.2 39.4 22.8 41.9-24.2v-44l-41.9-24.3zm-.2 45.1l-32.9-19.1 33.2-19.4 32.9 19.3-33.2 19.2zm-77.9-38.8l33.2 19.2-32.8 19.1-33.1-19.3 32.7-19zm72.2-3l-32.5 18.9-33.1-19.2 32.6-19 33 19.3zm-77.5-.6l-6.7 3.9-27.1 15.3-32.3-19.2 33.1-19.2 33 19.2zm-68.9 4.8l32.5 19.6v34.6l-32.5-19.8v-34.4zm39 23l32.5 19.3v34.5l-32.5-19.3v-34.5zm77.3.4l33.1 19.5v34.2l-33.1-19.7v-34z"
22
- g opacity=".5"
23
- polygon points="44.8,88.2 77.3,107.3 77.3,72.9 44.8,53.6"
24
- polygon points="5.8,64.9 38.3,84.7 38.3,50.2 5.8,30.6"
25
- polygon points="122.1,88.1 155.2,107.8 155.2,73.5 122.1,54"
26
-
27
- /! Ratchet logo (viewBox="0 0 600 120")
28
- symbol#ratchet-logo fill="currentColor"
29
- path d="M502.1 2.5h-105.1v39h-20v-39h-37v101.8l-16.8-30.2c-4.5 7.4-12.6 12.4-21.9 12.4-14.2 0-25.7-11.5-25.7-25.7s11.5-25.7 25.7-25.7c8.2 0 15.5 3.8 20.2 9.8l.6-1 18-31.7c-3.1-2.2-6.7-4.2-11-6-3.7-1.6-8-3-13.1-4.3-5-1.3-10.8-1.9-17.3-1.9-8.2 0-16 1.4-23.3 4.2-7.4 2.8-13.8 6.8-19.2 12.1-4.3 4.2-8 9-10.9 14.5 2.2-5.5 5.8-12.5 11.5-18.1 3.8-3.8 8.2-7.2 12.9-9.2h-156.2l-30.7 80.1 13.7 32.9h9.6l2.9-8h36.4l2.9 8h73.7v-77h19.5c-2.1 6.3-3.2 13.1-3.2 20.5 0 8.9 1.5 17.1 4.6 24.4 3.1 7.4 7.4 13.7 12.9 18.9 5.5 5.3 12 9.3 19.5 12.3 7.5 2.9 15.8 4.4 24.7 4.4 6.6 0 12.5-.7 17.7-2.1 5.1-1.4 9.3-2.9 13-4.5 3.6-1.7 7.3-3.5 9.3-5.6v9.6h37v-43h20v43h32l5.8-107.9.6 107.9h67.6v-37h-32v-7h19v-28h-19v-6h31v-36.2l6.3 36.3h23.7v78h38v-78h23.7l6.3-37h-97.9zm-379 71l4.2-10.9 4.2 10.9h-8.4zm19.3-66.4l18.4 32.4h23.2v76.1l-41.6-108.5zm-50.4 36.4c0-22.9-18.5-41-41.4-41h-50.6v114h37v-28.9l16.7 28.9h42.9l-22.4-39.4c10.7-7.4 17.8-19.5 17.8-33.6zm-50.1 13h-4.9v-21h4.9c5.4 0 9.7 4.7 9.8 10.5-.1 5.1-4.5 10.5-9.8 10.5zM293.8 73.7l-7.6-13.2 7.6-13.1h15l7.5 13.1-7.5 13.2h-15z"
30
-
31
- /! Vertical Logo
32
- symbol#vert-logo" fill="currentColor"
33
-
34
- / Compose
35
- g transform="matrix(1,0,0,1,-545.032,-326.868)"
36
- g transform="matrix(0.633757,0,0,0.633757,438.644,493.192)"
37
- path d="M325.442,75.285C315.946,75.285 309.313,68.018 309.313,57.614C309.313,47.045 315.795,39.944 325.442,39.944C334.938,39.944 341.571,47.21 341.571,57.614C341.571,68.018 334.938,75.285 325.442,75.285M325.442,28.643C308.788,28.643 296.7,40.827 296.7,57.614C296.7,74.401 308.788,86.586 325.442,86.586C342.096,86.586 354.183,74.401 354.183,57.614C354.183,40.827 342.096,28.643 325.442,28.643"
38
- g transform="matrix(0.633757,0,0,0.633757,438.644,493.192)"
39
- path d="M394.112,50.175L380.672,28.761L365,28.761L365,84.761L378,84.761L378,48.323L394.501,71.418L411,48.29L411,84.761L423,84.761L423,28.761L407.626,28.761L394.112,50.175Z"
40
- g transform="matrix(0.633757,0,0,0.633757,438.644,493.192)"
41
- path d="M460.059,55.761L448,55.761L448,40.761L460.059,40.761C464.596,40.761 467.644,44.119 467.644,48.261C467.644,52.404 464.596,55.761 460.059,55.761M461.336,28.761L436,28.761L436,84.761L448,84.761L448,66.761L461.336,66.761C472.477,66.761 480.257,58.445 480.257,47.761C480.257,37.077 472.477,28.761 461.336,28.761"
42
- g transform="matrix(0.633757,0,0,0.633757,438.644,493.192)"
43
- path d="M516.109,75.285C506.613,75.285 499.98,68.018 499.98,57.614C499.98,47.045 506.462,39.944 516.109,39.944C525.605,39.944 532.238,47.21 532.238,57.614C532.238,68.018 525.605,75.285 516.109,75.285M516.109,28.643C499.455,28.643 487.368,40.827 487.368,57.614C487.368,74.401 499.455,86.586 516.109,86.586C532.763,86.586 544.851,74.401 544.851,57.614C544.851,40.827 532.763,28.643 516.109,28.643"
44
- g transform="matrix(0.633757,0,0,0.633757,438.644,493.192)"
45
- path d="M576.87,50.658C570.413,49.021 566.493,47.831 566.493,45.118C566.493,41.975 569.369,40.023 573.998,40.023C579.617,40.023 584.709,42.014 588.335,45.629L589.555,46.846L596.784,37.489L595.811,36.55C590.427,31.356 583.356,28.722 574.796,28.722C562.677,28.722 553.88,35.886 553.88,45.755C553.88,58.092 564.92,60.88 573.792,63.122C580.726,64.873 584.937,66.181 584.937,69.553C584.937,72.197 582.532,75.285 575.755,75.285C567.667,75.285 562.421,70.996 560.014,68.439L558.755,67.103L551.759,76.761L552.612,77.67C558.091,83.503 565.956,86.586 575.355,86.586C591.66,86.586 597.47,77.334 597.47,68.677C597.47,55.883 585.564,52.863 576.87,50.658"
46
- g transform="matrix(0.633757,0,0,0.633757,438.644,493.192)"
47
- path d="M650,40.761L650,28.761L608,28.761L608,84.761L650,84.761L650,73.761L620,73.761L620,61.761L646,61.761L646,50.761L620,50.761L620,40.761L650,40.761Z"
48
- g transform="matrix(0.633757,0,0,0.633757,438.644,493.192)"
49
- path d="M238,57.939C238,74.727 249.949,86.941 267.019,86.941C275.946,86.941 283.408,83.379 288.677,76.244L280.717,68.288C278.294,72.318 272.444,75.701 267.518,75.701C257.756,75.701 250.707,68.148 250.707,57.909C250.707,47.67 257.81,40.116 267.571,40.116C272.497,40.116 278.428,43.499 280.851,47.53L288.958,39.574C283.688,32.438 275.944,28.876 267.017,28.876C249.947,28.876 238,41.091 238,57.878L238,57.939Z"
50
-
51
- / An IBM Company
52
- g transform="matrix(0.656956,0,0,0.656956,-327.788,-160.624)"
53
- g transform="matrix(1,0,0,1,263.379,493.817)"
54
- path d="M385.889,121.454L377.72,100.658L373.168,100.658L365,121.454L369.146,121.454L370.674,117.463L380.215,117.463L381.742,121.454L385.889,121.454ZM379.186,114.252L371.703,114.252L375.444,104.337L379.186,114.252Z"
55
- g transform="matrix(1,0,0,1,263.379,493.817)"
56
- path d="M407.745,121.454L407.745,100.658L404.097,100.658L404.097,115.094L393.465,100.658L389.724,100.658L389.724,121.454L393.372,121.454L393.372,106.613L404.222,121.454L407.745,121.454Z"
57
- g transform="matrix(1,0,0,1,263.379,493.817)"
58
- rect x="423.303" y="100.658" width="3.648" height="20.796"
59
- g transform="matrix(1,0,0,1,263.379,493.817)"
60
- path d="M443.444,121.454C447.341,121.454 449.493,119.053 449.493,115.842C449.493,113.285 447.684,111.072 445.471,110.729C447.404,110.323 449.087,108.577 449.087,105.958C449.087,103.028 446.967,100.658 443.163,100.658L432.937,100.658L432.937,121.454L443.444,121.454ZM442.415,109.263L436.585,109.263L436.585,103.869L442.415,103.869C444.286,103.869 445.346,105.023 445.346,106.582C445.346,108.141 444.286,109.263 442.415,109.263M442.571,118.243L436.585,118.243L436.585,112.475L442.571,112.475C444.66,112.475 445.751,113.784 445.751,115.343C445.751,117.151 444.566,118.243 442.571,118.243"
61
- g transform="matrix(1,0,0,1,263.379,493.817)"
62
- path d="M476.306,121.454L476.306,100.658L471.162,100.658L465.487,114.345L459.844,100.658L454.699,100.658L454.699,121.454L458.347,121.454L458.347,106.021L464.708,121.454L466.267,121.454L472.658,106.021L472.658,121.454L476.306,121.454Z"
63
- g transform="matrix(1,0,0,1,263.379,493.817)"
64
- path d="M501.841,121.828C506.05,121.828 508.607,119.646 510.197,117.151L507.079,115.561C506.081,117.307 504.086,118.585 501.841,118.585C497.725,118.585 494.67,115.436 494.67,111.072C494.67,106.707 497.725,103.558 501.841,103.558C504.086,103.558 506.081,104.867 507.079,106.582L510.197,104.992C508.638,102.497 506.05,100.315 501.841,100.315C495.699,100.315 490.929,104.68 490.929,111.072C490.929,117.463 495.699,121.828 501.841,121.828"
65
- g transform="matrix(1,0,0,1,263.379,493.817)"
66
- path d="M524.383,121.828C530.619,121.828 535.015,117.276 535.015,111.072C535.015,104.867 530.619,100.315 524.383,100.315C518.147,100.315 513.751,104.867 513.751,111.072C513.751,117.276 518.147,121.828 524.383,121.828M524.383,118.585C520.174,118.585 517.493,115.343 517.493,111.072C517.493,106.769 520.174,103.558 524.383,103.558C528.561,103.558 531.273,106.769 531.273,111.072C531.273,115.343 528.561,118.585 524.383,118.585"
67
- g transform="matrix(1,0,0,1,263.379,493.817)"
68
- path d="M561.703,121.454L561.703,100.658L556.559,100.658L550.884,114.345L545.241,100.658L540.096,100.658L540.096,121.454L543.744,121.454L543.744,106.021L550.105,121.454L551.664,121.454L558.055,106.021L558.055,121.454L561.703,121.454Z"
69
- g transform="matrix(1,0,0,1,263.379,493.817)"
70
- path d="M571.337,121.454L571.337,113.691L576.824,113.691C581.158,113.691 583.621,110.698 583.621,107.174C583.621,103.651 581.189,100.658 576.824,100.658L567.689,100.658L567.689,121.454L571.337,121.454ZM576.325,110.479L571.337,110.479L571.337,103.869L576.325,103.869C578.383,103.869 579.88,105.179 579.88,107.174C579.88,109.17 578.383,110.479 576.325,110.479"
71
- g transform="matrix(1,0,0,1,263.379,493.817)"
72
- path d="M604.573,121.454L596.405,100.658L591.852,100.658L583.683,121.454L587.831,121.454L589.358,117.463L598.899,117.463L600.426,121.454L604.573,121.454ZM597.87,114.252L590.387,114.252L594.128,104.337L597.87,114.252Z"
73
- g transform="matrix(1,0,0,1,263.379,493.817)"
74
- path d="M626.429,121.454L626.429,100.658L622.781,100.658L622.781,115.094L612.149,100.658L608.408,100.658L608.408,121.454L612.056,121.454L612.056,106.613L622.906,121.454L626.429,121.454Z"
75
- g transform="matrix(1,0,0,1,263.379,493.817)"
76
- path d="M641.956,121.454L641.956,112.818L650,100.658L645.822,100.658L640.147,109.575L634.411,100.658L630.233,100.658L638.308,112.818L638.308,121.454L641.956,121.454Z"
77
-
78
- g transform="matrix(1,0,0,1,74.4342,36.1729)"
5
+ svg#icons xmlns="http://www.w3.org/2000/svg" height="0" width="0" style="position: absolute; top: 0; left: 0; display: none;"
6
+ /! Compose logo (viewBox="0 0 650 122")
7
+ symbol#compose-logo fill="currentColor"
8
+ path d="M325.4 28.6c-16.7 0-28.7 12.2-28.7 29s12.1 29 28.7 29c16.7 0 28.7-12.2 28.7-29 .1-16.8-12-29-28.7-29zm0 46.7c-9.5 0-16.1-7.3-16.1-17.7 0-10.6 6.5-17.7 16.1-17.7 9.5 0 16.1 7.3 16.1 17.7.1 10.4-6.6 17.7-16.1 17.7z"
9
+ polygon points="394.1,50.2 380.7,28.8 365,28.8 365,84.8 378,84.8 378,48.3 394.5,71.4 411,48.3 411,84.8 423,84.8 423,28.8 407.6,28.8"
10
+ path d="M461.3 28.8h-25.3v56h12v-18h13.3c11.1 0 18.9-8.3 18.9-19 .1-10.7-7.7-19-18.9-19zm-1.2 27h-12.1v-15h12.1c4.5 0 7.6 3.4 7.6 7.5s-3.1 7.5-7.6 7.5zM516.1 28.6c-16.7 0-28.7 12.2-28.7 29s12.1 29 28.7 29c16.7 0 28.7-12.2 28.7-29 .1-16.8-12-29-28.7-29zm0 46.7c-9.5 0-16.1-7.3-16.1-17.7 0-10.6 6.5-17.7 16.1-17.7 9.5 0 16.1 7.3 16.1 17.7 0 10.4-6.6 17.7-16.1 17.7zM576.9 50.7c-6.5-1.6-10.4-2.8-10.4-5.5 0-3.1 2.9-5.1 7.5-5.1 5.6 0 10.7 2 14.3 5.6l1.2 1.2 7.2-9.4-1-.9c-5.4-5.2-12.5-7.8-21-7.8-12.1 0-20.9 7.2-20.9 17 0 12.3 11 15.1 19.9 17.4 6.9 1.8 11.1 3.1 11.1 6.4 0 2.6-2.4 5.7-9.2 5.7-8.1 0-13.3-4.3-15.7-6.8l-1.3-1.3-7 9.7.9.9c5.5 5.8 13.3 8.9 22.7 8.9 16.3 0 22.1-9.3 22.1-17.9.2-12.9-11.7-15.9-20.4-18.1z"
11
+ polygon points="650,40.8 650,28.8 608,28.8 608,84.8 650,84.8 650,73.8 620,73.8 620,61.8 646,61.8 646,50.8 620,50.8 620,40.8"
12
+ path d="M238 57.9c0 16.8 11.9 29 29 29 8.9 0 16.4-3.6 21.7-10.7l-8-8c-2.4 4-8.3 7.4-13.2 7.4-9.8 0-16.8-7.6-16.8-17.8 0-10.2 7.1-17.8 16.9-17.8 4.9 0 10.9 3.4 13.3 7.4l8.1-8c-5.3-7.1-13-10.7-21.9-10.7-17.2.2-29.1 12.4-29.1 29.2zM379.2 114.3h-7.5l3.7-9.9 3.8 9.9zm6.7 7.2l-8.2-20.8h-4.6l-8.2 20.8h4.1l1.5-4h9.5l1.5 4h4.4z"
13
+ polygon points="407.7,121.5 407.7,100.7 404.1,100.7 404.1,115.1 393.5,100.7 389.7,100.7 389.7,121.5 393.4,121.5 393.4,106.6 404.2,121.5"
14
+ rect height="20.8" width="3.6" x="423.3" y="100.7"
15
+ path d="M442.6 118.2h-6v-5.8h6c2.1 0 3.2 1.3 3.2 2.9 0 1.9-1.2 2.9-3.2 2.9zm-.2-8.9h-5.8v-5.4h5.8c1.9 0 2.9 1.2 2.9 2.7 0 1.5-1 2.7-2.9 2.7zm1 12.2c3.9 0 6-2.4 6-5.6 0-2.6-1.8-4.8-4-5.1 1.9-.4 3.6-2.2 3.6-4.8 0-2.9-2.1-5.3-5.9-5.3h-10.2v20.8h10.5z"
16
+ polygon points="476.3,121.5 476.3,100.7 471.2,100.7 465.5,114.3 459.8,100.7 454.7,100.7 454.7,121.5 458.3,121.5 458.3,106 464.7,121.5 466.3,121.5 472.7,106 472.7,121.5"
17
+ path d="M501.8 121.8c4.2 0 6.8-2.2 8.4-4.7l-3.1-1.6c-1 1.7-3 3-5.2 3-4.1 0-7.2-3.1-7.2-7.5s3.1-7.5 7.2-7.5c2.2 0 4.2 1.3 5.2 3l3.1-1.6c-1.6-2.5-4.1-4.7-8.4-4.7-6.1 0-10.9 4.4-10.9 10.8 0 6.5 4.8 10.8 10.9 10.8zM524.4 118.6c-4.2 0-6.9-3.2-6.9-7.5s2.7-7.5 6.9-7.5 6.9 3.2 6.9 7.5c0 4.2-2.7 7.5-6.9 7.5zm0 3.2c6.2 0 10.6-4.6 10.6-10.8s-4.4-10.8-10.6-10.8-10.6 4.6-10.6 10.8 4.3 10.8 10.6 10.8z"
18
+ polygon points="561.7,121.5 561.7,100.7 556.6,100.7 550.9,114.3 545.2,100.7 540.1,100.7 540.1,121.5 543.7,121.5 543.7,106 550.1,121.5 551.7,121.5 558.1,106 558.1,121.5"
19
+ path d="M576.3 110.5h-5v-6.6h5c2.1 0 3.6 1.3 3.6 3.3s-1.5 3.3-3.6 3.3zm-5 11v-7.8h5.5c4.3 0 6.8-3 6.8-6.5s-2.4-6.5-6.8-6.5h-9.1v20.8h3.6zM597.9 114.3h-7.5l3.7-9.9 3.8 9.9zm6.7 7.2l-8.2-20.8h-4.6l-8.2 20.8h4.1l1.5-4h9.5l1.5 4h4.4z"
20
+ polygon points="626.4,121.5 626.4,100.7 622.8,100.7 622.8,115.1 612.1,100.7 608.4,100.7 608.4,121.5 612.1,121.5 612.1,106.6 622.9,121.5"
21
+ polygon points="642,121.5 642,112.8 650,100.7 645.8,100.7 640.1,109.6 634.4,100.7 630.2,100.7 638.3,112.8 638.3,121.5"
22
+ path d="M158.1 23.1h-.1l-38.8-22.6-38.3 22.3-39.3-22.8-41.6 24.2v44l80.3 46.8 38.4-22.2 39.4 22.8 41.9-24.2v-44l-41.9-24.3zm-.2 45.1l-32.9-19.1 33.2-19.4 32.9 19.3-33.2 19.2zm-77.9-38.8l33.2 19.2-32.8 19.1-33.1-19.3 32.7-19zm72.2-3l-32.5 18.9-33.1-19.2 32.6-19 33 19.3zm-77.5-.6l-6.7 3.9-27.1 15.3-32.3-19.2 33.1-19.2 33 19.2zm-68.9 4.8l32.5 19.6v34.6l-32.5-19.8v-34.4zm39 23l32.5 19.3v34.5l-32.5-19.3v-34.5zm77.3.4l33.1 19.5v34.2l-33.1-19.7v-34z"
23
+ g opacity=".5"
24
+ polygon points="44.8,88.2 77.3,107.3 77.3,72.9 44.8,53.6"
25
+ polygon points="5.8,64.9 38.3,84.7 38.3,50.2 5.8,30.6"
26
+ polygon points="122.1,88.1 155.2,107.8 155.2,73.5 122.1,54"
27
+
28
+ /! Ratchet logo (viewBox="0 0 600 120")
29
+ symbol#ratchet-logo fill="currentColor"
30
+ path d="M502.1 2.5h-105.1v39h-20v-39h-37v101.8l-16.8-30.2c-4.5 7.4-12.6 12.4-21.9 12.4-14.2 0-25.7-11.5-25.7-25.7s11.5-25.7 25.7-25.7c8.2 0 15.5 3.8 20.2 9.8l.6-1 18-31.7c-3.1-2.2-6.7-4.2-11-6-3.7-1.6-8-3-13.1-4.3-5-1.3-10.8-1.9-17.3-1.9-8.2 0-16 1.4-23.3 4.2-7.4 2.8-13.8 6.8-19.2 12.1-4.3 4.2-8 9-10.9 14.5 2.2-5.5 5.8-12.5 11.5-18.1 3.8-3.8 8.2-7.2 12.9-9.2h-156.2l-30.7 80.1 13.7 32.9h9.6l2.9-8h36.4l2.9 8h73.7v-77h19.5c-2.1 6.3-3.2 13.1-3.2 20.5 0 8.9 1.5 17.1 4.6 24.4 3.1 7.4 7.4 13.7 12.9 18.9 5.5 5.3 12 9.3 19.5 12.3 7.5 2.9 15.8 4.4 24.7 4.4 6.6 0 12.5-.7 17.7-2.1 5.1-1.4 9.3-2.9 13-4.5 3.6-1.7 7.3-3.5 9.3-5.6v9.6h37v-43h20v43h32l5.8-107.9.6 107.9h67.6v-37h-32v-7h19v-28h-19v-6h31v-36.2l6.3 36.3h23.7v78h38v-78h23.7l6.3-37h-97.9zm-379 71l4.2-10.9 4.2 10.9h-8.4zm19.3-66.4l18.4 32.4h23.2v76.1l-41.6-108.5zm-50.4 36.4c0-22.9-18.5-41-41.4-41h-50.6v114h37v-28.9l16.7 28.9h42.9l-22.4-39.4c10.7-7.4 17.8-19.5 17.8-33.6zm-50.1 13h-4.9v-21h4.9c5.4 0 9.7 4.7 9.8 10.5-.1 5.1-4.5 10.5-9.8 10.5zM293.8 73.7l-7.6-13.2 7.6-13.1h15l7.5 13.1-7.5 13.2h-15z"
31
+
32
+ /! Vertical Logo
33
+ symbol#vert-logo" fill="currentColor"
34
+
35
+ / Compose
36
+ g transform="matrix(1,0,0,1,-545.032,-326.868)"
37
+ g transform="matrix(0.633757,0,0,0.633757,438.644,493.192)"
38
+ path d="M325.442,75.285C315.946,75.285 309.313,68.018 309.313,57.614C309.313,47.045 315.795,39.944 325.442,39.944C334.938,39.944 341.571,47.21 341.571,57.614C341.571,68.018 334.938,75.285 325.442,75.285M325.442,28.643C308.788,28.643 296.7,40.827 296.7,57.614C296.7,74.401 308.788,86.586 325.442,86.586C342.096,86.586 354.183,74.401 354.183,57.614C354.183,40.827 342.096,28.643 325.442,28.643"
39
+ g transform="matrix(0.633757,0,0,0.633757,438.644,493.192)"
40
+ path d="M394.112,50.175L380.672,28.761L365,28.761L365,84.761L378,84.761L378,48.323L394.501,71.418L411,48.29L411,84.761L423,84.761L423,28.761L407.626,28.761L394.112,50.175Z"
41
+ g transform="matrix(0.633757,0,0,0.633757,438.644,493.192)"
42
+ path d="M460.059,55.761L448,55.761L448,40.761L460.059,40.761C464.596,40.761 467.644,44.119 467.644,48.261C467.644,52.404 464.596,55.761 460.059,55.761M461.336,28.761L436,28.761L436,84.761L448,84.761L448,66.761L461.336,66.761C472.477,66.761 480.257,58.445 480.257,47.761C480.257,37.077 472.477,28.761 461.336,28.761"
43
+ g transform="matrix(0.633757,0,0,0.633757,438.644,493.192)"
44
+ path d="M516.109,75.285C506.613,75.285 499.98,68.018 499.98,57.614C499.98,47.045 506.462,39.944 516.109,39.944C525.605,39.944 532.238,47.21 532.238,57.614C532.238,68.018 525.605,75.285 516.109,75.285M516.109,28.643C499.455,28.643 487.368,40.827 487.368,57.614C487.368,74.401 499.455,86.586 516.109,86.586C532.763,86.586 544.851,74.401 544.851,57.614C544.851,40.827 532.763,28.643 516.109,28.643"
45
+ g transform="matrix(0.633757,0,0,0.633757,438.644,493.192)"
46
+ path d="M576.87,50.658C570.413,49.021 566.493,47.831 566.493,45.118C566.493,41.975 569.369,40.023 573.998,40.023C579.617,40.023 584.709,42.014 588.335,45.629L589.555,46.846L596.784,37.489L595.811,36.55C590.427,31.356 583.356,28.722 574.796,28.722C562.677,28.722 553.88,35.886 553.88,45.755C553.88,58.092 564.92,60.88 573.792,63.122C580.726,64.873 584.937,66.181 584.937,69.553C584.937,72.197 582.532,75.285 575.755,75.285C567.667,75.285 562.421,70.996 560.014,68.439L558.755,67.103L551.759,76.761L552.612,77.67C558.091,83.503 565.956,86.586 575.355,86.586C591.66,86.586 597.47,77.334 597.47,68.677C597.47,55.883 585.564,52.863 576.87,50.658"
47
+ g transform="matrix(0.633757,0,0,0.633757,438.644,493.192)"
48
+ path d="M650,40.761L650,28.761L608,28.761L608,84.761L650,84.761L650,73.761L620,73.761L620,61.761L646,61.761L646,50.761L620,50.761L620,40.761L650,40.761Z"
49
+ g transform="matrix(0.633757,0,0,0.633757,438.644,493.192)"
50
+ path d="M238,57.939C238,74.727 249.949,86.941 267.019,86.941C275.946,86.941 283.408,83.379 288.677,76.244L280.717,68.288C278.294,72.318 272.444,75.701 267.518,75.701C257.756,75.701 250.707,68.148 250.707,57.909C250.707,47.67 257.81,40.116 267.571,40.116C272.497,40.116 278.428,43.499 280.851,47.53L288.958,39.574C283.688,32.438 275.944,28.876 267.017,28.876C249.947,28.876 238,41.091 238,57.878L238,57.939Z"
51
+
52
+ / An IBM Company
53
+ g transform="matrix(0.656956,0,0,0.656956,-327.788,-160.624)"
54
+ g transform="matrix(1,0,0,1,263.379,493.817)"
55
+ path d="M385.889,121.454L377.72,100.658L373.168,100.658L365,121.454L369.146,121.454L370.674,117.463L380.215,117.463L381.742,121.454L385.889,121.454ZM379.186,114.252L371.703,114.252L375.444,104.337L379.186,114.252Z"
56
+ g transform="matrix(1,0,0,1,263.379,493.817)"
57
+ path d="M407.745,121.454L407.745,100.658L404.097,100.658L404.097,115.094L393.465,100.658L389.724,100.658L389.724,121.454L393.372,121.454L393.372,106.613L404.222,121.454L407.745,121.454Z"
58
+ g transform="matrix(1,0,0,1,263.379,493.817)"
59
+ rect x="423.303" y="100.658" width="3.648" height="20.796"
60
+ g transform="matrix(1,0,0,1,263.379,493.817)"
61
+ path d="M443.444,121.454C447.341,121.454 449.493,119.053 449.493,115.842C449.493,113.285 447.684,111.072 445.471,110.729C447.404,110.323 449.087,108.577 449.087,105.958C449.087,103.028 446.967,100.658 443.163,100.658L432.937,100.658L432.937,121.454L443.444,121.454ZM442.415,109.263L436.585,109.263L436.585,103.869L442.415,103.869C444.286,103.869 445.346,105.023 445.346,106.582C445.346,108.141 444.286,109.263 442.415,109.263M442.571,118.243L436.585,118.243L436.585,112.475L442.571,112.475C444.66,112.475 445.751,113.784 445.751,115.343C445.751,117.151 444.566,118.243 442.571,118.243"
62
+ g transform="matrix(1,0,0,1,263.379,493.817)"
63
+ path d="M476.306,121.454L476.306,100.658L471.162,100.658L465.487,114.345L459.844,100.658L454.699,100.658L454.699,121.454L458.347,121.454L458.347,106.021L464.708,121.454L466.267,121.454L472.658,106.021L472.658,121.454L476.306,121.454Z"
64
+ g transform="matrix(1,0,0,1,263.379,493.817)"
65
+ path d="M501.841,121.828C506.05,121.828 508.607,119.646 510.197,117.151L507.079,115.561C506.081,117.307 504.086,118.585 501.841,118.585C497.725,118.585 494.67,115.436 494.67,111.072C494.67,106.707 497.725,103.558 501.841,103.558C504.086,103.558 506.081,104.867 507.079,106.582L510.197,104.992C508.638,102.497 506.05,100.315 501.841,100.315C495.699,100.315 490.929,104.68 490.929,111.072C490.929,117.463 495.699,121.828 501.841,121.828"
66
+ g transform="matrix(1,0,0,1,263.379,493.817)"
67
+ path d="M524.383,121.828C530.619,121.828 535.015,117.276 535.015,111.072C535.015,104.867 530.619,100.315 524.383,100.315C518.147,100.315 513.751,104.867 513.751,111.072C513.751,117.276 518.147,121.828 524.383,121.828M524.383,118.585C520.174,118.585 517.493,115.343 517.493,111.072C517.493,106.769 520.174,103.558 524.383,103.558C528.561,103.558 531.273,106.769 531.273,111.072C531.273,115.343 528.561,118.585 524.383,118.585"
68
+ g transform="matrix(1,0,0,1,263.379,493.817)"
69
+ path d="M561.703,121.454L561.703,100.658L556.559,100.658L550.884,114.345L545.241,100.658L540.096,100.658L540.096,121.454L543.744,121.454L543.744,106.021L550.105,121.454L551.664,121.454L558.055,106.021L558.055,121.454L561.703,121.454Z"
70
+ g transform="matrix(1,0,0,1,263.379,493.817)"
71
+ path d="M571.337,121.454L571.337,113.691L576.824,113.691C581.158,113.691 583.621,110.698 583.621,107.174C583.621,103.651 581.189,100.658 576.824,100.658L567.689,100.658L567.689,121.454L571.337,121.454ZM576.325,110.479L571.337,110.479L571.337,103.869L576.325,103.869C578.383,103.869 579.88,105.179 579.88,107.174C579.88,109.17 578.383,110.479 576.325,110.479"
72
+ g transform="matrix(1,0,0,1,263.379,493.817)"
73
+ path d="M604.573,121.454L596.405,100.658L591.852,100.658L583.683,121.454L587.831,121.454L589.358,117.463L598.899,117.463L600.426,121.454L604.573,121.454ZM597.87,114.252L590.387,114.252L594.128,104.337L597.87,114.252Z"
74
+ g transform="matrix(1,0,0,1,263.379,493.817)"
75
+ path d="M626.429,121.454L626.429,100.658L622.781,100.658L622.781,115.094L612.149,100.658L608.408,100.658L608.408,121.454L612.056,121.454L612.056,106.613L622.906,121.454L626.429,121.454Z"
76
+ g transform="matrix(1,0,0,1,263.379,493.817)"
77
+ path d="M641.956,121.454L641.956,112.818L650,100.658L645.822,100.658L640.147,109.575L634.411,100.658L630.233,100.658L638.308,112.818L638.308,121.454L641.956,121.454Z"
78
+
79
+ g transform="matrix(1,0,0,1,74.4342,36.1729)"
80
+ path d="M158.1 23.1h-.1l-38.8-22.6-38.3 22.3-39.3-22.8-41.6 24.2v44l80.3 46.8 38.4-22.2 39.4 22.8 41.9-24.2v-44l-41.9-24.3zm-.2 45.1l-32.9-19.1 33.2-19.4 32.9 19.3-33.2 19.2zm-77.9-38.8l33.2 19.2-32.8 19.1-33.1-19.3 32.7-19zm72.2-3l-32.5 18.9-33.1-19.2 32.6-19 33 19.3zm-77.5-.6l-6.7 3.9-27.1 15.3-32.3-19.2 33.1-19.2 33 19.2zm-68.9 4.8l32.5 19.6v34.6l-32.5-19.8v-34.4zm39 23l32.5 19.3v34.5l-32.5-19.3v-34.5zm77.3.4l33.1 19.5v34.2l-33.1-19.7v-34z"
81
+ g opacity=".5"
82
+ polygon points="44.8,88.2 77.3,107.3 77.3,72.9 44.8,53.6"
83
+ polygon points="5.8,64.9 38.3,84.7 38.3,50.2 5.8,30.6"
84
+ polygon points="122.1,88.1 155.2,107.8 155.2,73.5 122.1,54"
85
+
86
+ /! Logomark (viewBox="0 0 210 120")
87
+ symbol#compose-logomark fill="currentColor"
79
88
  path d="M158.1 23.1h-.1l-38.8-22.6-38.3 22.3-39.3-22.8-41.6 24.2v44l80.3 46.8 38.4-22.2 39.4 22.8 41.9-24.2v-44l-41.9-24.3zm-.2 45.1l-32.9-19.1 33.2-19.4 32.9 19.3-33.2 19.2zm-77.9-38.8l33.2 19.2-32.8 19.1-33.1-19.3 32.7-19zm72.2-3l-32.5 18.9-33.1-19.2 32.6-19 33 19.3zm-77.5-.6l-6.7 3.9-27.1 15.3-32.3-19.2 33.1-19.2 33 19.2zm-68.9 4.8l32.5 19.6v34.6l-32.5-19.8v-34.4zm39 23l32.5 19.3v34.5l-32.5-19.3v-34.5zm77.3.4l33.1 19.5v34.2l-33.1-19.7v-34z"
80
89
  g opacity=".5"
81
90
  polygon points="44.8,88.2 77.3,107.3 77.3,72.9 44.8,53.6"
82
91
  polygon points="5.8,64.9 38.3,84.7 38.3,50.2 5.8,30.6"
83
92
  polygon points="122.1,88.1 155.2,107.8 155.2,73.5 122.1,54"
84
93
 
85
- /! Logomark (viewBox="0 0 210 120")
86
- symbol#compose-logomark fill="currentColor"
87
- path d="M158.1 23.1h-.1l-38.8-22.6-38.3 22.3-39.3-22.8-41.6 24.2v44l80.3 46.8 38.4-22.2 39.4 22.8 41.9-24.2v-44l-41.9-24.3zm-.2 45.1l-32.9-19.1 33.2-19.4 32.9 19.3-33.2 19.2zm-77.9-38.8l33.2 19.2-32.8 19.1-33.1-19.3 32.7-19zm72.2-3l-32.5 18.9-33.1-19.2 32.6-19 33 19.3zm-77.5-.6l-6.7 3.9-27.1 15.3-32.3-19.2 33.1-19.2 33 19.2zm-68.9 4.8l32.5 19.6v34.6l-32.5-19.8v-34.4zm39 23l32.5 19.3v34.5l-32.5-19.3v-34.5zm77.3.4l33.1 19.5v34.2l-33.1-19.7v-34z"
88
- g opacity=".5"
89
- polygon points="44.8,88.2 77.3,107.3 77.3,72.9 44.8,53.6"
90
- polygon points="5.8,64.9 38.3,84.7 38.3,50.2 5.8,30.6"
91
- polygon points="122.1,88.1 155.2,107.8 155.2,73.5 122.1,54"
92
-
93
- /! Icon Placeholder (viewBox="0 0 48 48")
94
- symbol id="icon-placeholder" fill="currentColor"
95
- path id="XMLID_1_" class="st0" d="M45,48H3c-1.6,0-3-1.3-3-3V3c0-1.6,1.4-3,3-3h42c1.7,0,3,1.4,3,3v42C48,46.7,46.7,48,45,48z"
96
- /! Search Icon
97
- symbol#search-icon fill="currentColor" viewbox="0 0 38 38"
98
- path d="M26.7 25.1l-3.7-3.8c.7-1.1 1.2-2.4 1.2-3.8-.1-3.6-3-6.5-6.7-6.5-3.6 0-6.6 2.9-6.6 6.6s3 6.6 6.6 6.6c1.4 0 2.7-.5 3.8-1.2l3.7 3.7c.2.2.5.3.9.3.3 0 .6-.1.9-.3.3-.4.3-1.2-.1-1.6m-9.1-2.6c-2.7 0-4.9-2.2-4.9-4.9s2.2-4.9 4.9-4.9 4.9 2.2 4.9 4.9-2.2 4.9-4.9 4.9"
99
-
100
- /! Twitter Icon
101
- symbol#twitter fill="currentColor" viewbox="0 0 38 38"
102
- path d="M27 12.4c-.7.4-1.4.6-2.2.8-.6-.7-1.5-1.1-2.5-1.1-2.3 0-3.9 2.1-3.4 4.3-2.9-.1-5.5-1.5-7.2-3.6-.9 1.5-.4 3.6 1.1 4.6-.6 0-1.1-.1-1.6-.4 0 1.7 1.1 3.2 2.8 3.5-.5.2-1.1.2-1.6.1.4 1.4 1.7 2.4 3.2 2.4-1.5 1.1-3.4 1.6-5.2 1.4 1.5 1 3.3 1.6 5.3 1.6 6.5 0 10.1-5.4 9.9-10.3.7-.5 1.3-1.1 1.9-1.9-.6.2-1.3.4-2 .5.7-.4 1.3-1.2 1.5-1.9z"
103
-
104
- /! Facebook Icon
105
- symbol#facebook fill="currentColor" viewbox="0 0 38 38"
106
- path d="M21.4 12.8h2.1v-3.4h-2.7c-2.9 0-4.2 1.3-4.2 3.7v2.6h-2v3.3h2v9.6h3.9v-9.7h2.7l.3-3.2h-3v-1.8c0-.8.2-1.1.9-1.1z"
107
-
108
- /! Y Combinator Icon
109
- symbol#y-combinator fill="currentColor" viewbox="0 0 38 38"
110
- path d="M22.4 10.9h3.8l-5.3 10v6h-3.3v-6l-5.5-10h3.9l3.3 7 3.1-7z"
111
-
112
- /! LinkedIn Icon
113
- symbol#linkedin fill="currentColor" viewbox="0 0 38 38"
114
- rect x="11.6" y="15.5" width="3.4" height="10.8"
115
- ellipse cx="13.3" cy="12.1" rx="2" ry="2"
116
- path d="M27.5 26.4v-6.9c0-2.9-1.6-4.3-3.9-4.3s-3.3 1.8-3.3 1.8v-1.5h-3.2v10.8h3.2v-5.7c0-1.5.7-2.4 2-2.4 1.2 0 1.8.9 1.8 2.4v5.7h3.4z"
117
-
118
- /! Github Icon
119
- symbol#github fill="currentColor" viewbox="0 0 38 38"
120
- path d="M23 35.9v-4.5c0-1.6-.5-2.5-1.1-3 3.6-.4 7.5-1.8 7.5-8.1 0-1.8-.6-3.3-1.7-4.4.2-.4.7-2.1-.2-4.3 0 0-1.4-.4-4.5 1.6-1.3-.3-2.7-.5-4.2-.5-1.4 0-2.8.2-4.2.5-3.1-2.1-4.5-1.6-4.5-1.6-.9 2.3-.3 3.9-.2 4.3-1 1.1-1.7 2.6-1.7 4.4 0 6.3 3.8 7.7 7.4 8.1-.4.4-.9 1.1-1 2.2-1 .4-3.3 1.1-4.8-1.4 0 0-.9-1.6-2.5-1.7 0 0-1.6 0-.1 1 0 0 1 .5 1.8 2.4 0 0 1 2.9 5.5 1.9v3c0 .4-.3 1-1 .8 1.6.5 3.4.9 5.2.9 1.8 0 3.5-.3 5.2-.9-.6.3-.9-.2-.9-.7z"
121
-
122
- /! Google Plus Icon
123
- symbol#google-plus fill="currentColor" viewBox="0 0 38 38"
124
- path d="M14 18v2.4h3.97c-.16 1.029-1.2 3.02-3.97 3.02-2.39 0-4.34-1.979-4.34-4.42 0-2.44 1.95-4.42 4.34-4.42 1.36 0 2.27.58 2.79 1.08l1.9-1.83c-1.22-1.14-2.8-1.83-4.69-1.83-3.87 0-7 3.13-7 7s3.13 7 7 7c4.04 0 6.721-2.84 6.721-6.84 0-.46-.051-.81-.111-1.16h-6.61zm0 0l17 2h-3v3h-2v-3h-3v-2h3v-3h2v3h3v2l-17-2z"
125
-
126
- /! YouTube Icon
127
- symbol#youtube fill="currentColor" viewBox="0 0 38 38"
128
- path d="M29.3,14.8c0,0-0.2-1.4-0.8-2.1c-0.8-0.8-1.7-0.8-2.1-0.9c-2.9-0.2-7.3-0.2-7.3-0.2h0 c0,0-4.4,0-7.3,0.2c-0.4,0-1.3,0.1-2.1,0.9c-0.6,0.6-0.8,2.1-0.8,2.1s-0.2,1.7-0.2,3.4v1.6c0,1.7,0.2,3.4,0.2,3.4 s0.2,1.4,0.8,2.1c0.8,0.8,1.8,0.8,2.3,0.9c1.7,0.2,7.1,0.2,7.1,0.2s4.4,0,7.3-0.2c0.4,0,1.3-0.1,2.1-0.9c0.6-0.6,0.8-2.1,0.8-2.1 s0.2-1.7,0.2-3.4v-1.6C29.5,16.5,29.3,14.8,29.3,14.8z M16.8,21.7l0-5.9l5.7,3L16.8,21.7z"
129
-
130
- /! Subscribe Icon
131
- symbol#subscribe fill="currentColor" viewBox="0 0 38 38"
132
- path d="M21.6 26.9c0-5.8-4.7-10.5-10.5-10.5v3.2c4 0 7.3 3.3 7.3 7.3h3.2zm-6.2-2.2c0-1.2-1-2.2-2.2-2.2-1.2 0-2.2 1-2.2 2.2s1 2.2 2.2 2.2c1.2 0 2.2-.9 2.2-2.2zm11.6 2.3c0-8.8-7.1-16-15.9-16v3.2c3.4 0 6.6 1.3 9 3.7s3.7 5.6 3.7 9l3.2.1z"
133
-
134
- /! Index Icon
135
- symbol#index" stroke="currentColor" fill="none" stroke-width=".75" stroke-linecap="round" viewBox="0 0 15 13"
136
- path d="M7.5 2.606c0-1.233 3.335-2.231 7.125-2.231v9.939c-3.79 0-7.125.828-7.125 2.061 0-1.233-3.335-2.061-7.125-2.061v-9.939c3.79 0 7.125.998 7.125 2.231zm0 0v9.769m-1.619-9.036c-1.043-.393-2.518-.677-4.211-.79m4.211 2.703c-1.043-.393-2.518-.677-4.211-.791m4.211 2.703c-1.043-.393-2.518-.677-4.211-.79m4.211 2.703c-1.043-.393-2.518-.677-4.211-.791m7.449-4.947c1.044-.393 2.518-.677 4.211-.79m-4.211 2.703c1.044-.393 2.518-.677 4.211-.791m-4.211 2.703c1.044-.393 2.518-.677 4.211-.79m-4.211 2.703c1.044-.393 2.518-.677 4.211-.791"
94
+ /! Icon Placeholder (viewBox="0 0 48 48")
95
+ symbol id="icon-placeholder" fill="currentColor"
96
+ path id="XMLID_1_" class="st0" d="M45,48H3c-1.6,0-3-1.3-3-3V3c0-1.6,1.4-3,3-3h42c1.7,0,3,1.4,3,3v42C48,46.7,46.7,48,45,48z"
97
+ /! Search Icon
98
+ symbol#search-icon fill="currentColor" viewbox="0 0 38 38"
99
+ path d="M26.7 25.1l-3.7-3.8c.7-1.1 1.2-2.4 1.2-3.8-.1-3.6-3-6.5-6.7-6.5-3.6 0-6.6 2.9-6.6 6.6s3 6.6 6.6 6.6c1.4 0 2.7-.5 3.8-1.2l3.7 3.7c.2.2.5.3.9.3.3 0 .6-.1.9-.3.3-.4.3-1.2-.1-1.6m-9.1-2.6c-2.7 0-4.9-2.2-4.9-4.9s2.2-4.9 4.9-4.9 4.9 2.2 4.9 4.9-2.2 4.9-4.9 4.9"
100
+
101
+ /! Twitter Icon
102
+ symbol#twitter fill="currentColor" viewbox="0 0 38 38"
103
+ path d="M27 12.4c-.7.4-1.4.6-2.2.8-.6-.7-1.5-1.1-2.5-1.1-2.3 0-3.9 2.1-3.4 4.3-2.9-.1-5.5-1.5-7.2-3.6-.9 1.5-.4 3.6 1.1 4.6-.6 0-1.1-.1-1.6-.4 0 1.7 1.1 3.2 2.8 3.5-.5.2-1.1.2-1.6.1.4 1.4 1.7 2.4 3.2 2.4-1.5 1.1-3.4 1.6-5.2 1.4 1.5 1 3.3 1.6 5.3 1.6 6.5 0 10.1-5.4 9.9-10.3.7-.5 1.3-1.1 1.9-1.9-.6.2-1.3.4-2 .5.7-.4 1.3-1.2 1.5-1.9z"
104
+
105
+ /! Facebook Icon
106
+ symbol#facebook fill="currentColor" viewbox="0 0 38 38"
107
+ path d="M21.4 12.8h2.1v-3.4h-2.7c-2.9 0-4.2 1.3-4.2 3.7v2.6h-2v3.3h2v9.6h3.9v-9.7h2.7l.3-3.2h-3v-1.8c0-.8.2-1.1.9-1.1z"
108
+
109
+ /! Y Combinator Icon
110
+ symbol#y-combinator fill="currentColor" viewbox="0 0 38 38"
111
+ path d="M22.4 10.9h3.8l-5.3 10v6h-3.3v-6l-5.5-10h3.9l3.3 7 3.1-7z"
112
+
113
+ /! LinkedIn Icon
114
+ symbol#linkedin fill="currentColor" viewbox="0 0 38 38"
115
+ rect x="11.6" y="15.5" width="3.4" height="10.8"
116
+ ellipse cx="13.3" cy="12.1" rx="2" ry="2"
117
+ path d="M27.5 26.4v-6.9c0-2.9-1.6-4.3-3.9-4.3s-3.3 1.8-3.3 1.8v-1.5h-3.2v10.8h3.2v-5.7c0-1.5.7-2.4 2-2.4 1.2 0 1.8.9 1.8 2.4v5.7h3.4z"
118
+
119
+ /! Github Icon
120
+ symbol#github fill="currentColor" viewbox="0 0 38 38"
121
+ path d="M23 35.9v-4.5c0-1.6-.5-2.5-1.1-3 3.6-.4 7.5-1.8 7.5-8.1 0-1.8-.6-3.3-1.7-4.4.2-.4.7-2.1-.2-4.3 0 0-1.4-.4-4.5 1.6-1.3-.3-2.7-.5-4.2-.5-1.4 0-2.8.2-4.2.5-3.1-2.1-4.5-1.6-4.5-1.6-.9 2.3-.3 3.9-.2 4.3-1 1.1-1.7 2.6-1.7 4.4 0 6.3 3.8 7.7 7.4 8.1-.4.4-.9 1.1-1 2.2-1 .4-3.3 1.1-4.8-1.4 0 0-.9-1.6-2.5-1.7 0 0-1.6 0-.1 1 0 0 1 .5 1.8 2.4 0 0 1 2.9 5.5 1.9v3c0 .4-.3 1-1 .8 1.6.5 3.4.9 5.2.9 1.8 0 3.5-.3 5.2-.9-.6.3-.9-.2-.9-.7z"
122
+
123
+ /! Google Plus Icon
124
+ symbol#google-plus fill="currentColor" viewBox="0 0 38 38"
125
+ path d="M14 18v2.4h3.97c-.16 1.029-1.2 3.02-3.97 3.02-2.39 0-4.34-1.979-4.34-4.42 0-2.44 1.95-4.42 4.34-4.42 1.36 0 2.27.58 2.79 1.08l1.9-1.83c-1.22-1.14-2.8-1.83-4.69-1.83-3.87 0-7 3.13-7 7s3.13 7 7 7c4.04 0 6.721-2.84 6.721-6.84 0-.46-.051-.81-.111-1.16h-6.61zm0 0l17 2h-3v3h-2v-3h-3v-2h3v-3h2v3h3v2l-17-2z"
126
+
127
+ /! YouTube Icon
128
+ symbol#youtube fill="currentColor" viewBox="0 0 38 38"
129
+ path d="M29.3,14.8c0,0-0.2-1.4-0.8-2.1c-0.8-0.8-1.7-0.8-2.1-0.9c-2.9-0.2-7.3-0.2-7.3-0.2h0 c0,0-4.4,0-7.3,0.2c-0.4,0-1.3,0.1-2.1,0.9c-0.6,0.6-0.8,2.1-0.8,2.1s-0.2,1.7-0.2,3.4v1.6c0,1.7,0.2,3.4,0.2,3.4 s0.2,1.4,0.8,2.1c0.8,0.8,1.8,0.8,2.3,0.9c1.7,0.2,7.1,0.2,7.1,0.2s4.4,0,7.3-0.2c0.4,0,1.3-0.1,2.1-0.9c0.6-0.6,0.8-2.1,0.8-2.1 s0.2-1.7,0.2-3.4v-1.6C29.5,16.5,29.3,14.8,29.3,14.8z M16.8,21.7l0-5.9l5.7,3L16.8,21.7z"
130
+
131
+ /! Subscribe Icon
132
+ symbol#subscribe fill="currentColor" viewBox="0 0 38 38"
133
+ path d="M21.6 26.9c0-5.8-4.7-10.5-10.5-10.5v3.2c4 0 7.3 3.3 7.3 7.3h3.2zm-6.2-2.2c0-1.2-1-2.2-2.2-2.2-1.2 0-2.2 1-2.2 2.2s1 2.2 2.2 2.2c1.2 0 2.2-.9 2.2-2.2zm11.6 2.3c0-8.8-7.1-16-15.9-16v3.2c3.4 0 6.6 1.3 9 3.7s3.7 5.6 3.7 9l3.2.1z"
134
+
135
+ /! Index Icon
136
+ symbol#index stroke="currentColor" fill="none" stroke-width=".75" stroke-linecap="round" viewBox="0 0 15 13"
137
+ path d="M7.5 2.606c0-1.233 3.335-2.231 7.125-2.231v9.939c-3.79 0-7.125.828-7.125 2.061 0-1.233-3.335-2.061-7.125-2.061v-9.939c3.79 0 7.125.998 7.125 2.231zm0 0v9.769m-1.619-9.036c-1.043-.393-2.518-.677-4.211-.79m4.211 2.703c-1.043-.393-2.518-.677-4.211-.791m4.211 2.703c-1.043-.393-2.518-.677-4.211-.79m4.211 2.703c-1.043-.393-2.518-.677-4.211-.791m7.449-4.947c1.044-.393 2.518-.677 4.211-.79m-4.211 2.703c1.044-.393 2.518-.677 4.211-.791m-4.211 2.703c1.044-.393 2.518-.677 4.211-.79m-4.211 2.703c1.044-.393 2.518-.677 4.211-.791"
138
+
139
+ symbol#icon-mongodb viewBox="0 0 193.4 223.9"
140
+ polygon fill="url(#emerald)" points="6.9,59.8 96.1,8.3 185.3,59.8 185.3,162.8 96.1,214.3 6.9,162.8 "
141
+ / polygon fill="url(#emerald-darken)" points="96,113.9 6.8,62.4 6.8,165.4 96,216.9 185.1,165.4 185.1,62.4 "
142
+ path fill="url(#white)" d="M96.1,216.6L4.9,163.9V58.7L96.1,6l91.2,52.6v105.3L96.1,216.6z M8.9,161.6l87.2,50.3l87.2-50.3V61L96.1,10.6L8.9,61V161.6z"
143
+ g fill="url(#white)"
144
+ path id="XMLID_3_" d="M92.5,127.3V101l-10.6,26.3h-3.5L67.8,101v26.3h-8V89.7H71l9.1,22.7l9.1-22.7h11.3v37.6H92.5z"
145
+ path id="XMLID_5_" d="M107.3,134.3l3.2-5.2c2.2,2.4,5.1,3.4,8.5,3.4c3.4,0,7.5-1.5,7.5-6.9v-2.8c-2.1,2.7-5.1,4.3-8.4,4.3c-6.8,0-12-4.8-12-13.9c0-8.9,5.1-13.9,12-13.9c3.3,0,6.2,1.4,8.4,4.2v-3.5h7.2v25.4c0,10.4-8,12.9-14.7,12.9C114.3,138.4,110.7,137.3,107.3,134.3z M126.5,117.7v-8.8c-1.2-1.8-3.8-3.1-6.1-3.1c-4.1,0-6.9,2.8-6.9,7.5c0,4.7,2.8,7.5,6.9,7.5C122.7,120.8,125.3,119.4,126.5,117.7z"
146
+
147
+ symbol id="icon-elasticsearch" viewBox="0 0 193.4 223.9"
148
+ polygon fill="url(#earthrise)" points="6.9,59.8 96.1,8.3 185.3,59.8 185.3,162.8 96.1,214.3 6.9,162.8 "
149
+ path fill="url(#white)" d="M96.1,216.6L4.9,163.9V58.7L96.1,6l91.2,52.6v105.3L96.1,216.6z M8.9,161.6l87.2,50.3l87.2-50.3V61L96.1,10.6L8.9,61V161.6z"
150
+ g fill="url(#white)"
151
+ path d="M70.5,127.3V89.7h26.6v7H78.5v8h18.2v7H78.5v8.5h18.6v7H70.5z"
152
+ path d="M100.9,123.8l3.1-5c2,1.9,6,3.7,9.4,3.7c3.1,0,4.6-1.2,4.6-2.9c0-4.5-16.2-0.8-16.2-11.6c0-4.6,4-8.6,11.2-8.6c4.6,0,8.3,1.6,11,3.7l-2.9,4.9c-1.6-1.7-4.7-3.2-8.1-3.2c-2.6,0-4.3,1.2-4.3,2.7c0,4.1,16.1,0.7,16.1,11.7c0,5-4.2,8.7-11.8,8.7C108.3,128,103.7,126.4,100.9,123.8z"
153
+
154
+ symbol id="icon-rethinkdb" viewBox="0 0 193.4 223.9"
155
+ polygon fill="url(#lagoon)" points="6.9,59.8 96.1,8.3 185.3,59.8 185.3,162.8 96.1,214.3 6.9,162.8 "
156
+ path fill="url(#white)" d="M96.1,216.6L4.9,163.9V58.7L96.1,6l91.2,52.6v105.3L96.1,216.6z M8.9,161.6l87.2,50.3l87.2-50.3V61L96.1,10.6L8.9,61V161.6z"
157
+ g fill="url(#white)"
158
+ path id="XMLID_3_" d="M94,127.3L86.6,114h-5.9v13.4h-8V89.7h17.6c7.8,0,12.6,5.1,12.6,12.1c0,6.7-4.2,10.2-8.2,11.2l8.5,14.3H94z M94.8,101.9c0-3.2-2.4-5.1-5.6-5.1h-8.4v10.2h8.4C92.4,106.9,94.8,105,94.8,101.9z"
159
+ path id="XMLID_6_" d="M110.2,120.6v-14.2h-4.5v-6.3h4.5v-7.4h7.2v7.4h5.5v6.3h-5.5v12.3c0,1.7,0.9,3,2.5,3c1.1,0,2.1-0.4,2.5-0.8l1.5,5.4c-1.1,1-3,1.7-6,1.7C113,128,110.2,125.4,110.2,120.6z"
160
+
161
+ symbol id="icon-redis" viewBox="0 0 193.4 223.9"
162
+ polygon fill="url(#sunset)" points="6.9,59.8 96.1,8.3 185.3,59.8 185.3,162.8 96.1,214.3 6.9,162.8 "
163
+ path fill="url(#white)" d="M96.1,216.6L4.9,163.9V58.7L96.1,6l91.2,52.6v105.3L96.1,216.6z M8.9,161.6l87.2,50.3l87.2-50.3V61L96.1,10.6L8.9,61V161.6z"
164
+ g fill="url(#white)"
165
+ path id="XMLID_3_" d="M87.9,127.3L80.5,114h-5.9v13.4h-8V89.7h17.6c7.8,0,12.6,5.1,12.6,12.1c0,6.7-4.2,10.2-8.2,11.2l8.5,14.3H87.9z M88.6,101.9c0-3.2-2.4-5.1-5.6-5.1h-8.4v10.2H83C86.2,106.9,88.6,105,88.6,101.9z"
166
+ path id="XMLID_6_" d="M119.7,127.3v-3.5c-2.1,2.7-5.1,4.2-8.4,4.2c-6.9,0-12.1-5.2-12.1-14.3c0-8.9,5.1-14.3,12.1-14.3c3.2,0,6.3,1.4,8.4,4.2V89.7h7.2v37.6H119.7z M119.7,118.5v-9.6c-1.2-1.8-3.8-3.1-6.2-3.1c-4.1,0-6.9,3.2-6.9,8c0,4.7,2.8,7.9,6.9,7.9C115.9,121.6,118.5,120.4,119.7,118.5z"
167
+
168
+ symbol id="icon-postgresql" viewBox="0 0 193.4 223.9"
169
+ polygon fill="url(#pearlescent)" points="6.9,59.8 96.1,8.3 185.3,59.8 185.3,162.8 96.1,214.3 6.9,162.8 "
170
+ path fill="url(#white)" d="M96.1,216.6L4.9,163.9V58.7L96.1,6l91.2,52.6v105.3L96.1,216.6z M8.9,161.6l87.2,50.3l87.2-50.3V61L96.1,10.6L8.9,61V161.6z"
171
+ g fill="url(#white)"
172
+ path d="M66.8,127.3V89.7h17.6c8.2,0,12.6,5.5,12.6,12.1c0,6.5-4.5,12.1-12.6,12.1h-9.6v13.4H66.8zM88.8,101.9c0-3.2-2.4-5.1-5.5-5.1h-8.5v10.2h8.5C86.5,106.9,88.8,105,88.8,101.9z"
173
+ path id="XMLID_6_" d="M100.3,134.3l3.2-5.2c2.2,2.4,5.1,3.4,8.5,3.4s7.5-1.5,7.5-6.9v-2.8c-2.1,2.7-5.1,4.3-8.4,4.3c-6.8,0-12-4.8-12-13.9c0-8.9,5.1-13.9,12-13.9c3.3,0,6.2,1.4,8.4,4.2v-3.5h7.2v25.4c0,10.4-8,12.9-14.7,12.9C107.3,138.4,103.7,137.3,100.3,134.3z M119.5,117.7v-8.8c-1.2-1.8-3.8-3.1-6.1-3.1c-4.1,0-6.9,2.8-6.9,7.5c0,4.7,2.8,7.5,6.9,7.5C115.7,120.8,118.3,119.4,119.5,117.7z"
174
+
175
+
176
+ symbol id="icon-etcd" viewBox="0 0 193.4 223.9"
177
+ polygon fill="url(#berries)" points="6.9,59.8 96.1,8.3 185.3,59.8 185.3,162.8 96.1,214.3 6.9,162.8 "
178
+ path fill="url(#white)" d="M96.1,216.6L4.9,163.9V58.7L96.1,6l91.2,52.6v105.3L96.1,216.6z M8.9,161.6l87.2,50.3l87.2-50.3V61L96.1,10.6L8.9,61V161.6z"
179
+ g fill="url(#white)"
180
+ path id="XMLID_3_" d="M74.4,127.3V89.7h26.6v7H82.4v8h18.2v7H82.4v8.5h18.6v7H74.4z"
181
+ path id="XMLID_5_" d="M108.6,120.6v-14.2H104v-6.3h4.5v-7.4h7.2v7.4h5.5v6.3h-5.5v12.3c0,1.7,0.9,3,2.5,3c1.1,0,2.1-0.4,2.5-0.8l1.5,5.4c-1.1,1-3,1.7-6,1.7C111.3,128,108.6,125.4,108.6,120.6z"
182
+
183
+
184
+ symbol id="icon-rabbitmq" viewBox="0 0 193.4 223.9"
185
+ polygon fill="url(#firestorm)" points="6.9,59.8 96.1,8.3 185.3,59.8 185.3,162.8 96.1,214.3 6.9,162.8 "
186
+ path fill="url(#white)" d="M96.1,216.6L4.9,163.9V58.7L96.1,6l91.2,52.6v105.3L96.1,216.6z M8.9,161.6l87.2,50.3l87.2-50.3V61L96.1,10.6L8.9,61V161.6z"
187
+ g fill="url(#white)"
188
+ path id="XMLID_3_" d="M87,127.3L79.6,114h-5.9v13.4h-8V89.7h17.6c7.8,0,12.6,5.1,12.6,12.1c0,6.7-4.2,10.2-8.2,11.2l8.5,14.3H87z M87.8,101.9c0-3.2-2.4-5.1-5.6-5.1h-8.4v10.2h8.4C85.4,106.9,87.8,105,87.8,101.9z"
189
+ path id="XMLID_6_" d="M101.8,127.3V89.7h7.2v13.9c2.1-2.8,5.2-4.2,8.4-4.2c6.9,0,12.1,5.4,12.1,14.3c0,9.1-5.2,14.3-12.1,14.3c-3.3,0-6.3-1.5-8.4-4.2v3.5H101.8z M115.2,121.6c4.2,0,6.9-3.2,6.9-7.9s-2.8-8-6.9-8c-2.3,0-5,1.4-6.1,3.2v9.6C110.2,120.4,112.8,121.6,115.2,121.6z"
190
+
191
+
192
+ symbol id="icon-scylladb" viewBox="0 0 193.4 223.9"
193
+ polygon fill="url(#royalty)" points="6.9,59.8 96.1,8.3 185.3,59.8 185.3,162.8 96.1,214.3 6.9,162.8 "
194
+ path fill="url(#white)" d="M96.1,216.6L4.9,163.9V58.7L96.1,6l91.2,52.6v105.3L96.1,216.6z M8.9,161.6l87.2,50.3l87.2-50.3V61L96.1,10.6L8.9,61V161.6z"
195
+ g fill="url(#white)"
196
+ path id="XMLID_3_" d="M66.9,122l4.3-6.1c2.7,2.8,6.8,5.1,12,5.1c4.4,0,6.5-2,6.5-4.2c0-6.7-21.7-2.1-21.7-16.2c0-6.3,5.4-11.4,14.3-11.4c6,0,10.9,1.8,14.7,5.2l-4.5,5.9c-3-2.8-7.1-4.1-10.9-4.1c-3.4,0-5.4,1.5-5.4,3.8c0,6,21.6,2,21.6,16c0,6.9-4.9,12.1-15.1,12.1C75.6,128,70.4,125.6,66.9,122z"
197
+ path id="XMLID_5_" d="M101.3,113.7c0-8.3,6-14.3,14.4-14.3c5.6,0,9,2.4,10.8,4.9l-4.7,4.4c-1.3-1.9-3.3-2.9-5.8-2.9c-4.3,0-7.4,3.2-7.4,7.9c0,4.7,3,8,7.4,8c2.5,0,4.5-1.1,5.8-2.9l4.7,4.3c-1.8,2.5-5.2,5-10.8,5C107.4,128,101.3,122.1,101.3,113.7z"
198
+
199
+
200
+ symbol id="icon-mysql" viewBox="0 0 193.4 223.9"
201
+ polygon fill="url(#earthrise)" points="6.9,59.8 96.1,8.3 185.3,59.8 185.3,162.8 96.1,214.3 6.9,162.8 "
202
+ path fill="url(#white)" d="M96.1,216.6L4.9,163.9V58.7L96.1,6l91.2,52.6v105.3L96.1,216.6z M8.9,161.6l87.2,50.3l87.2-50.3V61L96.1,10.6L8.9,61V161.6z"
203
+ g fill="url(#white)"
204
+ path d="M94.5,127.3V101l-10.6,26.3h-3.5L69.8,101v26.3h-8V89.7h11.2l9.1,22.7l9.1-22.7h11.3v37.6H94.5z"
205
+ path d="M110,131.6c0.6,0.3,1.6,0.5,2.3,0.5c1.9,0,3.1-0.5,3.8-2l1-2.3L106,100.1h7.7l7.1,18.9l7.1-18.9h7.7l-12.8,31.7c-2,5.1-5.6,6.5-10.3,6.6c-0.8,0-2.7-0.2-3.6-0.4L110,131.6z"
@@ -1,3 +1,3 @@
1
1
  module RatchetDesign
2
- VERSION = "0.1.17"
2
+ VERSION = "0.1.18"
3
3
  end