game_icons 0.20.0.20151001 → 0.21.0.20151009

Sign up to get free protection for your applications and to get access to all the features.
Files changed (30) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +8 -0
  3. data/README.md +2 -1
  4. data/lib/game_icons/icon.rb +17 -3
  5. data/lib/game_icons/version.rb +1 -1
  6. data/resources/icons/delapouite/originals/svg/babyfoot-players.svg +1 -0
  7. data/resources/icons/delapouite/originals/svg/biceps.svg +1 -0
  8. data/resources/icons/delapouite/originals/svg/entry-door.svg +1 -0
  9. data/resources/icons/delapouite/originals/svg/exit-door.svg +1 -0
  10. data/resources/icons/delapouite/originals/svg/graveyard.svg +1 -0
  11. data/resources/icons/delapouite/originals/svg/hills.svg +1 -0
  12. data/resources/icons/delapouite/originals/svg/jester-hat.svg +1 -0
  13. data/resources/icons/delapouite/originals/svg/lead-pipe.svg +1 -0
  14. data/resources/icons/delapouite/originals/svg/menhir.svg +1 -0
  15. data/resources/icons/delapouite/originals/svg/money-stack.svg +1 -0
  16. data/resources/icons/delapouite/originals/svg/silenced.svg +1 -0
  17. data/resources/icons/delapouite/originals/svg/tortoise.svg +1 -0
  18. data/resources/icons/delapouite/originals/svg/usa-flag.svg +1 -0
  19. data/resources/icons/delapouite/originals/svg/watering-can.svg +1 -0
  20. data/resources/icons/delapouite/originals/svg/well.svg +1 -0
  21. data/resources/icons/delapouite/sports/svg/rugby-conversion.svg +1 -0
  22. data/resources/icons/lorc/originals/svg/chewed-heart.svg +1 -0
  23. data/resources/icons/lorc/originals/svg/explosive-meeting.svg +1 -0
  24. data/resources/icons/lorc/originals/svg/helmet-head-shot.svg +1 -0
  25. data/resources/icons/lorc/originals/svg/lightning-slashes.svg +1 -0
  26. data/resources/icons/lorc/originals/svg/octogonal-eye.svg +1 -0
  27. data/resources/icons/lorc/originals/svg/wrapping-star.svg +1 -0
  28. data/spec/icon_spec.rb +30 -3
  29. data/spec/regression_spec.rb +1 -1
  30. metadata +24 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8bae6deadf14d0201b7c883ae417f8fff6c5faff
4
- data.tar.gz: 83b0455dbd0bb4ba0762a447c468f97f401b8e9a
3
+ metadata.gz: c94e36c7bdf90476bfd2b70b6d7139f5df5bf452
4
+ data.tar.gz: 025099ab2332bbc5bcc7a67a123c60c8d5a4b9dd
5
5
  SHA512:
6
- metadata.gz: 5862dc184c8cf9b85c580b6fcf4c67d19a479af273850d8aab24817d726519c1bfef803bcafa779fbaac39c9cbbaa87ca8c8b3219d827d10c01b9f61b80e3d55
7
- data.tar.gz: b040e8ed6f3ad3b70ce824a5d531d38939c66c40eb7e8fd68663b670d16fb3be840b9d2105fa7cc4c35210801b6592c63841905bcd6f0f516f066a146550c1ac
6
+ metadata.gz: 5af2b34d5c571260db7d61a4c6f7c50db6598c6ea5ca7202488f5a7c2fd674b77d5566d9ab48503738a2814b4f35f14f7bba34a020a1ccffb78afb59cb9a4de9
7
+ data.tar.gz: 8e58375d9e411290a1853e96dd5d64ba8bca58f458eda5caee3a81a60b137db02ee6c9ae032f29db3dfda01f967ef7e5259b0bdda3d0f7d153052ea28e403549
data/CHANGELOG.md CHANGED
@@ -4,6 +4,14 @@ This gem follows [semantic versioning](http://semver.org), with the date of the
4
4
 
5
5
  e.g. "0.1.0.20150413.alpha" has the April 13, 2015 release of game-icons.net
6
6
 
7
+ ## v0.21.0 / 2015-10-12
8
+ * Update for Oct 9 icons
9
+ * Added a correct_pathdata method for correcting some incompatibility issues with Gimp (and sometimes Inkscape).
10
+ * The recolor method now supports opacity with fg_opacity and bg_opacity options.
11
+
12
+ ## v0.20.0 / 2015-10-01
13
+ * Update for Oct 1 icons
14
+
7
15
  ## v0.19.0 / 2015-09-10
8
16
  * Update for Sep 10 icons
9
17
 
data/README.md CHANGED
@@ -28,7 +28,8 @@ GameIcons.get('glass-heart.svg').file # .svg extension allowed too
28
28
  GameIcons.get(:flame).file # symbols work too
29
29
  GameIcons.get('glass-heart').string # the SVG string
30
30
  GameIcons.get('glass-heart').string # the SVG string
31
- GameIcons.get('glass-heart').recolor(fg: '333', bg: 'ccc').string # Recolor the foreground and background to different shades of gray
31
+ GameIcons.get('glass-heart').recolor(fg: '333', bg: 'ccc').string # recolor the foreground and background to different shades of gray
32
+ GameIcons.get('glass-heart').recolor(fg: '333', bg: 'ccc', fg_opacity: 0.25, bg_opacity: 0.75).string # recolor with opacity c
32
33
 
33
34
  GameIcons.names # returns an array of all names
34
35
  ```
@@ -12,14 +12,28 @@ module GameIcons
12
12
  @svgstr ||= File.open(@file) { |f| f.read }
13
13
  end
14
14
 
15
- def recolor(bg: '#000', fg: '#fff')
15
+ # Modify the background and foreground colors and their opacities
16
+ def recolor(bg: '#000', fg: '#fff', bg_opacity: "1.0", fg_opacity: "1.0")
16
17
  OptionalDeps.require_nokogiri
17
18
  doc = Nokogiri::XML(self.string)
18
- doc.css('path')[0]['fill'] = bg # red background
19
- doc.css('path')[1]['fill'] = fg # green background
19
+ doc.css('path')[0]['fill'] = bg # dark backdrop
20
+ doc.css('path')[1]['fill'] = fg # light drawing
21
+ doc.css('path')[0]['fill-opacity'] = bg_opacity.to_s # dark backdrop
22
+ doc.css('path')[1]['fill-opacity'] = fg_opacity.to_s # light drawing
20
23
  @svgstr = doc.to_xml
21
24
  self
22
25
  end
23
26
 
27
+ # Fix an incompatibility issue with Gimp & Inkscape
28
+ # Replaces path strings like "1.5-1.5" with "1.5 -1.5"
29
+ def correct_pathdata
30
+ 10.times do # this is a bit of a hack b/c my regex isn't perfect
31
+ @svgstr = self.string
32
+ .gsub(/(\d)\-/,'\1 -') # separate negatives
33
+ .gsub(/(\.)(\d+)(\.)/,'\1\2 \3') # separate multi-decimals
34
+ end
35
+ self
36
+ end
37
+
24
38
  end
25
39
  end
@@ -3,5 +3,5 @@ module GameIcons
3
3
  # e.g. "0.1.0.20150413.alpha" will eventually become "0.1.0.20150413"
4
4
  # Uses semantic versioning: http://semver.org/
5
5
  # The date after the semver numbers is the build date from game-icons.net
6
- VERSION = '0.20.0.20151001'
6
+ VERSION = '0.21.0.20151009'
7
7
  end
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M128 29.5c-6.557 0-12.898 3.62-18.146 10.924C104.604 47.728 101 58.51 101 70.596c0 12.085 3.605 22.866 8.854 30.17 5.248 7.303 11.59 10.923 18.146 10.923 6.557 0 12.898-3.62 18.146-10.924 5.25-7.304 8.854-18.085 8.854-30.17 0-12.086-3.605-22.868-8.854-30.172C140.898 33.12 134.556 29.5 128 29.5zm256 0c-6.557 0-12.898 3.62-18.146 10.924C360.604 47.728 357 58.51 357 70.596c0 12.085 3.605 22.866 8.854 30.17 5.248 7.303 11.59 10.923 18.146 10.923 6.557 0 12.898-3.62 18.146-10.924 5.25-7.304 8.854-18.085 8.854-30.17 0-12.086-3.605-22.868-8.854-30.172C396.898 33.12 390.556 29.5 384 29.5zm-235.736 93.912c-5.99 3.932-12.87 6.277-20.264 6.277-7.25 0-13.996-2.26-19.902-6.053l-2.67 2.67c.905 4.4 3.467 9.56 7.77 15.298 3.93 5.24 9.223 10.835 14.802 16.532 5.58-5.697 10.87-11.292 14.8-16.532 4.402-5.868 6.963-11.122 7.81-15.584l-2.346-2.608zm215.472 0l-2.345 2.61c.846 4.46 3.408 9.715 7.81 15.583 3.93 5.24 9.22 10.835 14.8 16.532 5.58-5.697 10.87-11.292 14.8-16.532 4.305-5.74 6.867-10.9 7.772-15.298l-2.67-2.67c-5.906 3.792-12.653 6.052-19.902 6.052-7.395 0-14.273-2.346-20.264-6.278zM88.998 134.826l-31.93 10.643c.077 28.387 1.13 55.42 13.496 82.132 43.338 13.938 71.534 13.938 114.872 0 12.367-26.712 13.42-53.745 13.496-82.133l-31.93-10.644c-2.11 6.28-5.692 12.1-9.803 17.58-6.577 8.768-14.837 16.963-22.837 24.963L128 183.733l-6.363-6.365c-8-8-16.26-16.196-22.836-24.964-4.11-5.48-7.693-11.3-9.802-17.58zm256 0l-31.93 10.643c.077 28.387 1.13 55.42 13.496 82.132 43.338 13.938 71.534 13.938 114.872 0 12.367-26.712 13.42-53.745 13.496-82.133l-31.93-10.644c-2.11 6.28-5.692 12.1-9.803 17.58-6.577 8.768-14.837 16.963-22.837 24.963L384 183.733l-6.363-6.365c-8-8-16.26-16.196-22.836-24.964-4.11-5.48-7.693-11.3-9.802-17.58zM18 146.5v36h22.44c-1.203-12.188-1.39-24.202-1.422-36H18zm198.982 0c-.03 11.798-.22 23.812-1.42 36h80.878c-1.203-12.188-1.39-24.202-1.422-36h-78.036zm256 0c-.03 11.798-.22 23.812-1.42 36H494v-36h-21.018zM73 247.24v63.45c5.94 4.56 14.298 7.316 23 7.316 8.627 0 17.07-2.6 23-7.086v-27.914h18v27.914c5.93 4.487 14.373 7.086 23 7.086 8.702 0 17.06-2.757 23-7.317v-63.45c-39.33 11.437-70.67 11.437-110 0zm256 0v63.45c5.94 4.56 14.298 7.316 23 7.316 8.627 0 17.07-2.6 23-7.086v-27.914h18v27.914c5.93 4.487 14.373 7.086 23 7.086 8.702 0 17.06-2.757 23-7.317v-63.45c-39.33 11.437-70.67 11.437-110 0zm-210 84.252c-7.228 3.056-15.142 4.514-23 4.514-7.847 0-15.77-1.42-23-4.45v27.364c5.93 4.487 14.373 7.086 23 7.086s17.07-2.6 23-7.086v-27.428zm18 0v27.428c5.93 4.487 14.373 7.086 23 7.086s17.07-2.6 23-7.086v-27.363c-7.23 3.03-15.153 4.45-23 4.45-7.858 0-15.772-1.46-23-4.515zm238 0c-7.228 3.056-15.142 4.514-23 4.514-7.847 0-15.77-1.42-23-4.45v27.364c5.93 4.487 14.373 7.086 23 7.086s17.07-2.6 23-7.086v-27.428zm18 0v27.428c5.93 4.487 14.373 7.086 23 7.086s17.07-2.6 23-7.086v-27.363c-7.23 3.03-15.153 4.45-23 4.45-7.858 0-15.772-1.46-23-4.515zm-274 48c-7.228 3.056-15.142 4.514-23 4.514-6.4 0-12.813-1.076-18.898-3.068 1.1 3.693 2.132 7.308 3.437 11.222 2.93 8.792 6.073 17.492 7.564 25.846H119v-38.514zm18 0v24.373c4.736-7.94 11.14-14.775 18.723-20.02-6.43-.438-12.806-1.85-18.723-4.353zm238 0c-7.228 3.056-15.142 4.514-23 4.514-6.4 0-12.813-1.076-18.898-3.068 1.1 3.693 2.132 7.308 3.437 11.222 2.93 8.792 6.073 17.492 7.564 25.846H375v-38.514zm18 0v38.514h30.896c1.49-8.354 4.634-17.054 7.565-25.846 1.306-3.914 2.34-7.53 3.438-11.223-6.085 1.993-12.497 3.07-18.898 3.07-7.858 0-15.772-1.46-23-4.515zM192 390.5c-25.512 0-46 20.488-46 46s20.488 46 46 46 46-20.488 46-46-20.488-46-46-46zM89 436.006v44h56.156C134.526 468.57 128 453.274 128 436.5c0-.166.01-.33.012-.494H89zm256 0v44h78v-44h-78z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M211.832 39.06c-15.022 15.31-15.894 22.83-23.473 43.903 2.69 9.14 5.154 16.927 9.148 25.117 5.158.283 10.765.47 15.342.43-6.11-10.208-8.276-19.32-4.733-35.274 4.3 19.05 12.847 29.993 21.203 34.332 3.032-.334 5.957-.714 8.776-1.146-6.255-10.337-8.494-19.47-4.914-35.588 3.897 17.27 11.287 27.876 18.86 32.94 4.658-1.043 9.283-2.243 13.927-3.534-5.517-9.69-7.36-18.692-3.97-33.957 3.357 14.876 9.307 24.81 15.732 30.516 5.095-1.57 9.296-2.898 13.852-4.347-.685-5.782-.416-12.187 1.064-19.115l1.883-8.8 17.603 3.76-1.88 8.804c-3.636 17.008 1.324 24.42 7.306 28.666 5.98 4.244 14.69 3.46 16.03 2.6l7.576-4.86 9.72 15.15c-3.857 2.34-7.9 5.44-11.822 7.06 18.65 27.678 32.183 61.465 24.756 93.55-2.365 9.474-6.03 18.243-11.715 24.986 12.725 12.13 21.215 22.026 31.032 34.5-3.713-2.387-7.586-4.844-11.692-7.37-11.397-7.01-23.832-14.214-34.98-19.802-16.012-7.8-31.367-18.205-47.73-20.523-22.552-2.967-46.27 4.797-73.32 21.06 7.872 8.72 13.282 15.474 20.312 24.288-6.98-4.338-14.652-9.07-23.16-14.23-32.554-17.48-65.39-48.227-100.438-49.99-30.56-1.092-59.952 14.955-89.677 38.568L18 254.293V494h31.963c45.184-17.437 80.287-57.654 97.03-94.52l.25-.564.325-.52c9.463-15.252 11.148-29.688 16.79-44.732 5.645-15.044 16.907-29.718 41.884-38.756 4.353-2.16 5.07-1.415 8.633 1.395 30.468 24.01 57.29 32.02 83.24 32.35 32.61-1.557 58.442-9.882 85.682-19.38-3.966 3.528-8.77 7.21-13.986 10.762-15.323 10.436-34.217 19.928-46.304 24.8-14.716 2.006-28.36 2.416-41.967.616-9.96 12.09-25.574 20.358-37.35 26.673 63.92 14.023 115.88.91 167.386-22.896-9.522-1.817-19.008-3.692-27.994-5.42 31.634-4.422 64.984-3.766 94.705-3.53 4.084-.02 7.213-.453 8.7-.886 14.167-51.072-4.095-97.893-34.294-145.216-30.263-47.425-72.18-94.107-101.896-143.04-21.1-17.257-48.6-31.455-77.522-46.175-20.386 4.25-41.026 9.336-61.443 14.1zm85.385 70.49c-11.678 3.6-23.71 7.425-33.852 10.012 2.527 4.93 3.735 10.664 3.395 16.202 11.028.877 21.082-2.018 28.965-6.356 4.845-2.666 8.74-6.048 11.414-8.96-3.854-2.735-7.26-6.41-9.923-10.9zm-54.213 14.698c-11.76 1.143-24.59 2.362-35.06 2.236 2.39 4.772 3.78 12.067 8.51 14.84 11.18 1.164 20.6 1.997 29.91-1.746 5.435-3.214 1.818-15.058-3.36-15.33zm-34.98 209.332c-17.593 7.233-22.586 15.14-26.813 26.406-3.998 10.66-6.227 25.076-14.48 41.014 32.29-6.38 69.625-21.23 93.852-40.088-17.017-5.098-34.553-13.852-52.557-27.332zm9.318 71.385c-18.723 7.237-40.836 16.144-59.696 14.062C143.774 446.68 124.012 474.03 91.762 494h84.68c21.564-29.798 38.067-56.575 40.9-89.035z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M217 28.098v455.804l142-42.597V70.697zM119 55v160h18V73h62V55zm257.98.03l.02 2.275V87h16V55zM377 105v16h16v-16zm0 34v236h16V139zm-276.564 58.727L42.162 256l58.274 58.273V279h96v-46h-96zM244 232c6.627 0 12 10.745 12 24s-5.373 24-12 24-12-10.745-12-24 5.373-24 12-24zm-125 65v151h18V297zm258 96v14h16v-14zm0 32v23h16v-23zM32 471v18h167v-18zm290.652 0l-60 18H480v-18z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M217 28.098v455.804l142-42.597V70.697zm159.938 26.88l.062 2.327V87h16V55zM119 55v117.27h18V73h62V55zm258 50v16h16v-16zm0 34v236h16V139zm-240 58.727V233H41v46h96v35.273L195.273 256zM244 232c6.627 0 12 10.745 12 24s-5.373 24-12 24-12-10.745-12-24 5.373-24 12-24zM137 339.73h-18V448h18zM377 393v14h16v-14zm0 32v23h16v-23zM32 471v18h167v-18zm290.652 0l-60 18H480v-18z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M128 73c-25.495 0-44.07 6.4-55.97 13.86C60.134 94.32 56 103.84 56 104.63v40.274c6.343 2.532 12.03 5.422 17.023 8.545C89.79 163.94 100 175.957 100 189.542v59.57c8.63-1.35 17.956-2.113 28-2.113s19.37.764 28 2.113v-59.57c0-13.585 10.21-25.604 26.977-36.094 4.992-3.124 10.68-6.014 17.023-8.546V104.63c0-.792-4.133-10.31-16.03-17.77C172.07 79.4 153.494 73 128 73zm256 0c-25.495 0-44.07 6.4-55.97 13.86C316.134 94.32 312 103.84 312 104.63v40.274c6.343 2.532 12.03 5.422 17.023 8.545C345.79 163.94 356 175.957 356 189.542v59.57c8.63-1.35 17.956-2.113 28-2.113s19.37.764 28 2.113v-59.57c0-13.585 10.21-25.604 26.977-36.094 4.992-3.124 10.68-6.014 17.023-8.546V104.63c0-.792-4.133-10.31-16.03-17.77C428.07 79.4 409.494 73 384 73zM119 91.086h18v31.63h45v18h-45v99.34h-18v-99.34H74v-18h45v-31.63zm256 0h18v31.63h45v18h-45v99.34h-18v-99.34h-45v-18h45v-31.63zM256 153c-28.832 0-49.91 7.222-63.477 15.71C178.958 177.195 174 187.946 174 189.542v63.494c12.076 3.43 22.355 8.07 30.77 13.33C222.37 277.367 233 290 233 304v58.715h46V304c0-14 10.63-26.632 28.23-37.633 8.415-5.26 18.694-9.9 30.77-13.33v-63.494c0-1.596-4.958-12.347-18.523-20.834C305.91 160.22 284.832 153 256 153zm-238 1.016v56.888h42.666v18H18v133.81h5V304c0-14 10.63-26.632 28.23-37.633 8.415-5.26 18.694-9.9 30.77-13.33v-63.494c0-1.596-4.958-12.347-18.523-20.834C52.917 162.1 37.78 156.28 18 154.015zm476 0c-19.78 2.263-34.916 8.086-45.477 14.693C434.958 177.195 430 187.946 430 189.542v63.494c12.076 3.43 22.355 8.07 30.77 13.33C478.37 277.367 489 290 489 304v58.715h5v-133.81h-42.666v-18H494v-56.89zM247 174.36h18v36.544h51.666v18H265v112.448h-18V228.904h-51.666v-18H247V174.36zM128 265c-30.5 0-52.83 7.633-67.23 16.633C46.37 290.633 41 302 41 304v183h174V304c0-2-5.37-13.368-19.77-22.367-14.4-9-36.73-16.633-67.23-16.633zm256 0c-30.5 0-52.83 7.633-67.23 16.633C302.37 290.633 297 302 297 304v183h174V304c0-2-5.37-13.368-19.77-22.367-14.4-9-36.73-16.633-67.23-16.633zm-265 23h18v39h55v18h-55v119h-18V345H64v-18h55v-39zm256 0h18v39h55v18h-55v119h-18V345h-55v-18h55v-39z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M416.104 18A88 84.324 0 0 0 494 99.674V18h-77.896zM128 137c-42.657 0-79.727 10.965-110 25.322v128.002c30.184-5.45 59.138-8.394 86.82-9.08 50.9-1.26 97.525 5.05 139.744 17.12 42.768-27.11 86.74-52.815 134.387-73.048C304.435 169.018 211.563 137 128 137zm366 71.98c-85.695 15.81-157.66 53.443-226.953 96.485 22.08 7.666 42.85 16.937 62.283 27.537 73.712 40.21 128.137 99.163 162.81 160.998H494V208.98zm-373.03 90.008c-5.196-.034-10.44.016-15.738.15-27.682.703-56.767 3.78-87.232 9.5V494h453.242c-33.246-55.78-83.587-108.678-150.53-145.195-55.257-30.142-121.817-49.31-199.743-49.817z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M281.49 19.312c-25.16.153-60.41 33.046-86.097 68.937 3.964 3.373 7.804 7.028 11.492 10.948 9.436 10.03 18.148 21.76 26.144 34.612 11.52-18.005 23.463-33.81 35.724-46.87 19.07-20.313 39.165-34.398 60.04-38.75-12.726-17.32-28.263-28.186-47.304-28.878zm62.834 45.406c-.83.004-1.664.017-2.506.04l-.062.003-.063.003c-18.105.263-38.738 12.047-59.816 34.498-21.08 22.452-42.23 55.034-61.672 94.063-28.845 57.905-53.972 129.98-71.225 204.586 5.495 10.445 12.004 20.354 20.075 29.96 4.482-18.25 14.135-38.246 32.02-51.773l11.165-8.445 3.05 13.664c1.618 7.257 7.71 21.177 15.42 34.185 5.756 9.713 12.564 19.186 18.634 25.864 13.73-16.182 20.832-43.925 28.193-62.412l4.42-11.097 9.45 7.308c10.392 8.04 19.526 19.733 26.765 31.813 3.71 6.193 6.887 12.395 9.336 18.402 12.077-14.887 20.38-32.92 27.04-51.215-5.102-12.048-10.1-24.147-14.43-36.09-6.996-19.307-12.32-38.26-13.337-56.4-1.015-18.14 2.522-35.792 13.533-50.525 7.97-10.666 18.658-17.79 30.794-17.98 12.137-.187 23.963 6.146 35.348 17.265 18.01 17.59 36.405 48.284 55.545 94.338 1.338-54.69-3.184-113.508-17.436-161.142-8.99-30.052-21.805-55.49-38.615-72.785-16.285-16.753-35.92-26.245-61.626-26.125zm-205.11 18.18c-4.463.04-8.997.646-13.614 1.85-47.61 12.428-68.494 50.477-77.536 97.667-4.09 21.355-5.4 44.255-5.253 66.65 1.557.036 3.092.16 4.602.368 1.754-6.153 3.62-12.048 5.688-17.498 4.876-12.862 10.612-23.867 19.453-31.336 8.84-7.47 21.574-9.996 34.144-5.492 26.76 9.59 40.14 35.794 45.24 66.176 2.492 14.844 3.214 31.024 2.723 47.744 14.29-44.75 31.076-86.877 49.434-123.73 5.95-11.945 12.066-23.322 18.32-34.076-8.792-15.234-18.415-28.824-28.64-39.692-15.944-16.95-32.47-27.154-50.124-28.486-1.47-.11-2.95-.16-4.437-.146zm232.173 148.27c-5.544.085-10.803 2.923-16.655 10.753-1.167 1.564-2.213 3.172-3.164 4.817 7.204 9.21 14.374 19.512 21.377 30.682 3.887-1.5 8.052-2.428 12.393-2.665-1.107-12.588-2.46-26.452-4.14-40.98-3.758-1.902-7.04-2.65-9.81-2.608zm-329.56 35.87c-12.81 0-23 10.19-23 23s10.19 23 23 23c12.808 0 23-10.19 23-23s-10.192-23-23-23zm345.75 25.652c-12.808 0-23 10.19-23 23s10.192 23 23 23c12.81 0 23-10.19 23-23s-10.19-23-23-23zm82.597 56.465c-12.81 0-23 10.19-23 23s10.19 23 23 23 23-10.19 23-23-10.19-23-23-23zm-99.31 32.643c-8.713 23.945-20.526 48.82-41.428 67.93l-12.512 11.437-2.465-16.77c-.916-6.226-5.35-17.525-11.728-28.167-3.786-6.32-8.287-12.394-12.898-17.62-6.213 19.202-14.643 45.832-34.68 62.348l-5.763 4.75-5.73-4.787c-10.268-8.58-20.073-22.133-28.435-36.24-5.068-8.55-9.358-17.036-12.623-24.948-11.832 14.45-17.72 34.36-18.62 48.398l-1.246 19.457-14-13.568c-18.337-17.774-30.744-36.71-40.152-56.956l-11.453 48.67c-.337 5.734-.657 12.613-.34 18.48.332 6.097 2.332 10.952 1.98 10.55 4.148 4.767 20.086 11.37 42.304 14.553 22.218 3.185 50.507 4.065 80.176 2.844 59.338-2.44 124.766-13.612 159.164-29.15 4.968-2.245 13.87-15.99.5-35.91l-.014-.02z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M440.783 22.424c-2.382.04-4.63.42-6.646 1.178l-148.725 93.875-125.28 165.15c.972 7.275 1.65 13.713 1.65 13.713L145.435 302 52.56 424.432a38.188 26.876 37.184 0 1 30.288 9.912 38.188 26.876 37.184 0 1 18.03 28.566l219.278-289.056-1.943-31.5 12.213 23.632 140.47-88.664c7.383-9.426 8.96-18.574 7.038-26.62l-15.998 5.54L472.48 39.27c-2.533-3.414-5.665-6.433-9.13-8.93-7.054-5.082-15.42-8.035-22.567-7.916zM52.705 438.676a30.876 21.73 37.184 0 0-1.857.023 30.876 21.73 37.184 0 0-14.244 6.763 30.876 21.73 37.184 0 0 11.464 35.974 30.876 21.73 37.184 0 0 37.735 1.348 30.876 21.73 37.184 0 0-11.47-35.973 30.876 21.73 37.184 0 0-21.628-8.136zm1.762 15.146a14.803 10.418 37.184 0 1 .004 0 14.803 10.418 37.184 0 1 11.26 3.89 14.803 10.418 37.184 0 1 5.497 17.247 14.803 10.418 37.184 0 1-18.09-.647 14.803 10.418 37.184 0 1-5.498-17.247 14.803 10.418 37.184 0 1 6.827-3.244z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M226.502 17.773c-44.12.506-112.97 320.03-100.887 386.12 10.002 54.708 84.118 85.005 133.518 89.68 49.062 4.644 114.82-14.037 126.773-100.86l-7.035 4.04c-.863 1.036-4.473 5.37-9.29 11.084-4.864 5.77-9.245 11.08-12.188 14.186l-.01.01c-.295.312-.594.627-.86.892.433-.43.698-.71.853-.88-.13.162-.287.38-.412.656-.39.86-.95 2.25-1.555 3.895-1.213 3.292-2.647 7.642-3.988 11.91-2.684 8.538-5.018 16.766-5.018 16.766l-2.334 8.232-34.18-7.846-22.105 19.13-38.524-7.142 31.445-10.533 24.308-21.038 26.528 6.088c.954-3.25 1.25-4.41 2.71-9.05 1.39-4.423 2.874-8.952 4.27-12.737.697-1.893 1.362-3.59 2.058-5.12.696-1.533.725-2.56 3.22-5.054.074-.077 6.704-7.657 12.022-13.964 5.318-6.307 10.27-12.252 10.27-12.252l1.035-1.238 20.566-11.817c.035-1.1.074-2.198.093-3.317.154-9.013-6.625-36.675-17.723-72.682l-.414 3.11-36.853 7.065-2.662 11.654-17.548-4.01 5.283-23.11 35.654-6.838 3.114-23.37 2.053.275c-5.364-15.942-11.263-32.673-17.592-49.64l-1.83 5.323-17.023-5.85 7.726-22.474 2.678.92c-10.27-26.297-21.314-52.413-32.593-75.998l-3.32 6.482 15.683 23.94-52.146 19.85 26.675-25.882-11.006-16.797 14.15-27.624c-7.455-14.38-14.925-27.348-22.248-38.298l-13.034 8.812.305-25.86c-10.21-11.97-19.914-18.937-28.61-18.837zm82.244 208.148l22.543 18.314-16.194 3.414-12.586 17.08-36.42-.568.28-17.998 27.15.423zm40.95 94.757l15.833 1.582-1.792 17.907-4.035-.402-17.22 31.104-30.75-20.13-31.03 7.79 31.545-28.964 23.877 15.63zM255.6 389.12l25.033 19-22.643 1.122-26.937 18.248-10.096-14.903z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M327.027 65.816L229.79 128.23l9.856 5.397 86.51-55.53 146.735 83.116-84.165 54.023 4.1 2.244v6.848l65.923-42.316 13.836 7.838-79.76 51.195v11.723l64.633-41.487 15.127 8.57-79.76 51.195v11.723l64.633-41.487 15.127 8.57-79.76 51.195v11.723l100.033-64.21-24.828-14.062 24.827-15.937-24.828-14.064 24.827-15.937-23.537-13.333 23.842-15.305-166.135-94.106zm31.067 44.74c-21.038 10.556-49.06 12.342-68.79 4.383l-38.57 24.757 126.903 69.47 36.582-23.48c-14.41-11.376-13.21-28.35 2.942-41.67l-59.068-33.46zM227.504 147.5l-70.688 46.094 135.61 78.066 1.33-.85c2.5-1.61 6.03-3.89 10.242-6.613 8.42-5.443 19.563-12.66 30.674-19.86 16.002-10.37 24.248-15.72 31.916-20.694L227.504 147.5zm115.467 1.17a8.583 14.437 82.068 0 1 .003 0 8.583 14.437 82.068 0 1 8.32 1.945 8.583 14.437 82.068 0 1-.87 12.282 8.583 14.437 82.068 0 1-20.273 1.29 8.583 14.437 82.068 0 1 .87-12.28 8.583 14.437 82.068 0 1 11.95-3.237zm-218.423 47.115L19.143 263.44l23.537 13.333-23.842 15.305 24.828 14.063-24.828 15.938 24.828 14.063-24.828 15.938 166.135 94.106L285.277 381.8V370.08l-99.433 63.824L39.11 350.787l14.255-9.15 131.608 74.547L285.277 351.8V340.08l-99.433 63.824L39.11 320.787l14.255-9.15 131.608 74.547L285.277 321.8V310.08l-99.433 63.824L39.11 290.787l13.27-8.52 132.9 75.28 99.997-64.188v-5.05l-5.48-3.154-93.65 60.11-146.73-83.116 94.76-60.824-9.63-5.543zm20.46 11.78l-46.92 30.115c14.41 11.374 13.21 28.348-2.942 41.67l59.068 33.46c21.037-10.557 49.057-12.342 68.787-4.384l45.965-29.504-123.96-71.358zm229.817 32.19c-8.044 5.217-15.138 9.822-30.363 19.688-11.112 7.203-22.258 14.42-30.69 19.873-4.217 2.725-7.755 5.01-10.278 6.632-.09.06-.127.08-.215.137v85.924l71.547-48.088v-84.166zm-200.99 17.48a8.583 14.437 82.068 0 1 8.32 1.947 8.583 14.437 82.068 0 1-.87 12.28 8.583 14.437 82.068 0 1-20.27 1.29 8.583 14.437 82.068 0 1 .87-12.28 8.583 14.437 82.068 0 1 11.95-3.236z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M256 19.313c-44.404 0-85.098 25.434-115.248 68.124C110.6 130.127 91.594 189.847 91.594 256c0 66.152 19.005 125.87 49.156 168.563 30.15 42.69 70.845 68.125 115.25 68.125 44.402 0 85.068-25.435 115.22-68.125 30.15-42.69 49.186-102.41 49.186-168.563 0-66.152-19.038-125.87-49.19-168.563-30.15-42.69-70.812-68.124-115.214-68.124H256zm-68.047 196.324c21.997.077 43.584 9.43 57.484 32.738C232.475 258.385 219.33 266.34 206 272c1.927-3.868 3-8.23 3-12.844 0-15.93-12.914-28.844-28.846-28.844s-28.84 12.914-28.84 28.844c0 9.317 4.425 17.6 11.28 22.875-.938.036-1.874.058-2.81.068-.937.01-1.874.007-2.815-.006h-.003c-15.953-.208-32.166-3.813-48.717-11.217 5.244-29.73 43.042-55.366 79.703-55.238zm136.094 0c36.66-.128 74.46 25.51 79.703 55.238-16.55 7.404-32.764 11.01-48.717 11.217h-.002c-.94.013-1.877.016-2.813.006-.937-.01-1.873-.032-2.81-.067 6.854-5.273 11.28-13.557 11.28-22.874 0-15.93-12.91-28.844-28.84-28.844-15.933 0-28.847 12.913-28.847 28.844 0 4.615 1.073 8.976 3 12.844-13.33-5.66-26.474-13.614-39.438-23.625 13.9-23.31 35.488-32.66 57.485-32.738zm-113.174 83.96c8.826-.03 18.155 3.6 25.693 11.14L256 330.17l19.434-19.434c7.538-7.538 16.867-11.168 25.693-11.14.588.002 1.175.02 1.758.054 9.33.55 17.723 4.835 23.974 11.086 6.25 6.252 10.536 14.644 11.085 23.975.55 9.332-3.045 19.41-11.086 27.45l-19.434 19.436 19.433 19.433c8.04 8.04 11.634 18.12 11.085 27.45-.55 9.332-4.834 17.724-11.086 23.975-6.252 6.25-14.644 10.537-23.975 11.086-9.33.55-19.41-3.044-27.45-11.085L256 433.02l-19.434 19.435c-8.04 8.04-18.12 11.635-27.45 11.086-9.332-.548-17.724-4.834-23.975-11.085-6.25-6.25-10.536-14.643-11.085-23.975-.55-9.33 3.045-19.41 11.086-27.45l19.434-19.434-19.433-19.436c-8.04-8.04-11.634-18.118-11.085-27.45.55-9.33 4.834-17.722 11.086-23.974 6.252-6.25 14.644-10.537 23.975-11.086.583-.034 1.17-.052 1.758-.054zm.943 18c-.55-.018-1.097-.01-1.644.022-4.374.256-8.882 2.42-12.305 5.843s-5.586 7.93-5.844 12.305c-.257 4.374.986 8.807 5.844 13.666l90.295 90.293c4.86 4.858 9.292 6.103 13.666 5.845 4.374-.257 8.882-2.422 12.305-5.845 3.423-3.423 5.586-7.93 5.844-12.303.257-4.374-.986-8.808-5.844-13.666l-90.295-90.295c-4.25-4.25-8.176-5.733-12.022-5.865zm88.368 0c-3.846.133-7.77 1.615-12.022 5.866l-19.435 19.435 25.97 25.97 19.436-19.434c4.858-4.86 6.1-9.292 5.844-13.666-.258-4.375-2.42-8.882-5.844-12.305-3.423-3.423-7.93-5.587-12.305-5.844-.547-.033-1.095-.04-1.644-.022zm-82.88 76.725l-19.437 19.436c-4.858 4.858-6.1 9.292-5.844 13.666.258 4.374 2.42 8.88 5.844 12.303 3.423 3.423 7.93 5.588 12.305 5.845 4.374.258 8.807-.987 13.666-5.845l19.433-19.434-25.967-25.97z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M194.194 111.78c-3.097-.044-6.237.03-9.416.214 1.532 20.553 2.534 38.96.81 59.37 18.478-2.405 32.978-8.23 44.698-14.655 13.894-9.58 18.14-18.298 23.572-28.737-17.897-9.932-37.758-15.87-59.664-16.192zm-27.307 2.35c-29.826 5.067-52.077 16.196-69.01 30.97 7.64 8.992 14.394 16.763 26.122 22.11 16.26 3.783 30.635 5.342 43.41 5.32 1.91-19.796 1.022-37.515-.523-58.4zm102.217 23.577c-4.756 9.085-10.453 19.305-22.406 29.168 7.877 14.35 15.45 28.907 22.252 43.818 5.255-1.357 10.563-1.964 15.857-2.01 8.26-.076 16.487 1.19 24.418 3 9.054 2.064 17.85 4.825 26.262 7.456-10.515-20.503-23.71-40.41-39.398-57.306-8.36-9.004-17.353-17.146-26.986-24.127zM85.14 157.96c-9.03 10.54-16.17 22.28-21.987 34.603-6.413 13.582-11.024 27.74-14.5 41.626 10.75-3.356 22.516-6.072 35.244-8.24 5.468-15.955 12.998-31.752 23.756-47.14-9.74-6.19-16.522-13.773-22.514-20.85zm146.234 18.405c-12.886 6.1-28.622 11.188-47.584 13.168-1.937 25.253-1.016 48.742.982 71.746 12.733-2.574 24.63-10.07 36.12-19.005 10.754-8.362 20.678-17.838 31.503-24.44-6.373-13.953-13.5-27.73-21.02-41.47zm-106.61 9.48c-9.9 13.446-16.99 27.256-22.238 41.39 15.306 4.297 27.89 11.998 39.24 18.833 8.765 5.28 16.757 9.937 24.737 12.885-1.767-21.747-2.55-44.3-.834-68.54-12.434-.056-26.04-1.43-40.906-4.567zm311.932 21.766c-.597.006-1.193.026-1.79.062-5.72.343-11.406 2.084-17.462 4.59-6.66 2.755-17.278 15.314-25.074 28.093 3.325 6.04 5.727 12.866 7.482 19.942 2.752 11.095 3.78 22.79 2.655 33.224-.123 1.133-.27 2.26-.438 3.382l22.1-9.58 4.23 3.395s6.464 5.178 14.153 10.508c3.845 2.664 7.983 5.348 11.565 7.34 3.582 1.995 6.965 3.158 7.22 3.195 10.052 1.463 18.794-1.512 24.39-6.586 5.595-5.075 8.328-11.846 6.478-20.572-5.486-25.867-10.33-50-26.485-64.06-10.91-9.497-20.064-13-29.024-12.93zM284.723 226.7c-2.924.04-5.764.3-8.517.816 8.844 21.816 15.73 44.48 19.285 68.437 13.224-4.345 25.613-9.584 36.98-15.742.957-.518 1.063-.5 1.43-3.88.365-3.38-.04-8.9-.128-15.13-.086-6.23.166-13.404 3.242-20.563.27-.63.575-1.255.897-1.875-11.124-3.324-22.162-7.13-32.69-9.53-7.223-1.65-14.064-2.622-20.497-2.533zm158.17 1.896c8.57-.263 16.75 10.464 16.31 16.787-.697 7.828-25.746 5.594-29.036-6.83-1.24-4.686 5.955-8.696 11.01-9.754.572-.12 1.145-.187 1.716-.204zm-183.215 6.13c-7.85 5.38-17.27 13.618-27.738 21.758-12.717 9.89-27.56 19.756-45.406 22.82 1.165 10.924 2.453 21.842 3.695 32.843 31.195-.53 60.917-4.168 87.816-11.104-3.162-22.964-9.72-44.908-18.368-66.318zm106.62 4.07c-.288-.008-.584.01-.895.052-.828.114-1.755.404-2.86.857-5.67 2.326-7.588 4.774-8.992 8.04-1.402 3.265-1.852 7.874-1.778 13.206.074 5.334.69 11.156.024 17.318-.667 6.16-3.65 13.92-10.75 17.77-80.39 43.554-200.42 43.636-312.33 12.6-3.75-.612-5.34.15-6.647 1.268-1.328 1.134-2.462 3.23-2.763 5.977-.6 5.492 1.795 11.868 9.22 14.254 41.783 13.427 191.73 65.965 351.646-26.117.694-.4 3.603-4.702 4.437-12.43.834-7.728.042-17.806-2.23-26.96-2.27-9.156-6.162-17.4-10.006-21.675-2.523-2.806-4.066-4.108-6.076-4.16zM97.005 244.48c-5.21 19.116-7.865 38.785-10.235 58.93 28.777 5.173 57.526 8.11 85.35 8.684-1.273-11.16-2.612-22.352-3.8-33.7-13.395-3.27-24.837-10.28-35.84-16.906-11.568-6.967-22.77-13.554-35.475-17.007zm-18.793.864c-12.716 2.537-24.103 5.677-34.002 9.422-2.526 13.664-4.192 26.607-5.635 37.894 10.116 2.708 20.293 5.143 30.492 7.3 2.135-18.04 4.602-36.356 9.145-54.616zM327.53 348.79c-18.762 7.064-37.23 12.427-55.25 16.415 2.895 6.374 6.145 12.806 10.072 18.383 6.947 9.863 13.913 15.26 22.457 14.392 21.308-2.196 39.287-4.164 54.474-7.322-6.138-5.21-12.343-10.69-17.807-16.636-4.766-5.19-8.96-10.685-11.666-16.97-1.11-2.582-1.848-5.386-2.28-8.26zM62.42 359.07c-7.694 12.07-17.75 23.39-29.755 34.106 18.77 6.16 35.73 8.577 58.978 6.09 7.25-10.25 11.96-20.393 15.168-30.64-16.73-2.796-31.615-6.2-44.39-9.556z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M256 18v29h238V18H256zm-208 .002l-9.404 19.053-21.03 3.056 15.217 14.833L29.19 75.89l18.812-9.892 18.807 9.89-3.593-20.945L78.434 40.11l-21.032-3.055L48 18.002zm80 0l-9.404 19.053-21.032 3.056 15.217 14.833-3.59 20.946L128 65.997l18.807 9.89-3.592-20.945 15.217-14.832-21.03-3.055L128 18.002zm80 0l-9.404 19.053-21.032 3.056 15.217 14.833-3.59 20.946L208 65.997l18.807 9.89-3.592-20.945 15.217-14.832-21.03-3.055L208 18.002zm-39.404 54.385L159.19 91.44l-21.028 3.056 15.217 14.832-3.593 20.945 18.81-9.89 18.807 9.89-3.59-20.945 15.215-14.832-21.032-3.057-9.402-19.053zm-79.998 1.998L79.193 93.44l-21.03 3.056 15.218 14.832-3.593 20.945 18.81-9.89 18.807 9.89-3.59-20.945 15.215-14.832L98 93.44l-9.402-19.055zM256 81v30h238V81H256zM48 130.004l-9.404 19.053-21.03 3.056 15.217 14.832-3.592 20.946L48.003 178l18.807 9.89-3.593-20.945 15.217-14.832-21.032-3.056L48 130.004zm80 0l-9.404 19.053-21.032 3.056 15.217 14.832-3.59 20.946L128 178l18.807 9.89-3.592-20.945 15.217-14.832-21.03-3.056L128 130.004zm80 0l-9.404 19.053-21.032 3.056 15.217 14.832-3.59 20.946L208 178l18.807 9.89-3.592-20.945 15.217-14.832-21.03-3.056L208 130.004zM256 145v30h238v-30H256zM88.598 186.385l-9.405 19.054-21.03 3.056 15.218 14.832-3.593 20.945 18.81-9.89 18.807 9.89-3.59-20.945 15.215-14.832L98 205.44l-9.402-19.055zm79.998.002l-9.405 19.052-21.028 3.056 15.217 14.832-3.593 20.945 18.81-9.89 18.807 9.89-3.59-20.945 15.215-14.832-21.032-3.057-9.402-19.053zM256 209v30h238v-30H256zM18 273v30h476v-30H18zm0 64v30h476v-30H18zm0 64v30h476v-30H18zm0 64v29h476v-29H18z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M190.49 76.718c-1.066-.005-2.13.003-3.197.02-28.426.506-56.814 9.317-81.756 23.757-39.907 23.104-71.644 60.824-80.8 104.44-7.826 37.298 1.858 78.55 36.044 115.742-1.35-11.182-2.183-21.875-2.544-32.038-17.66-27.03-21.263-54.363-15.88-80.008 7.845-37.383 36.108-71.663 72.2-92.56 36.094-20.895 79.364-28.2 116.774-13.882 30.495 11.67 58.04 37.605 75.602 84.684 5.683-1.565 11.46-3.154 17.336-4.776-19.17-51.894-50.605-82.98-86.504-96.72-15.325-5.865-31.285-8.592-47.274-8.66zm238.54 65.05c-4.217-.01-8.232.595-11.915 1.813l8.557 40.032 24.4 15.85 39.74-8.582c-1.454-13.915-12.173-28.51-27.056-38.178-10.717-6.962-22.85-10.904-33.725-10.934zm-100.47 57.79c-91.212 25.175-160.583 44.4-250.48 45.51-5.605 44.858.637 110.842 30.324 190.216H288.79c42.614-73.726 52.533-161.183 39.77-235.727zm94.31 3.7l-81.028 145.85c-6.25 26.707-7.854 35.71-13.358 50.758l107.42-188.143zm-21.35 3.047l-52.223 10.66c.688 5.954 1.242 11.968 1.654 18.032l39.058-7.973zm-199.473 77.98s40.436 52.545 32 80c-3.78 12.303-19.128 21.614-32 21.614s-28.22-9.312-32-21.616c-8.436-27.454 32-80 32-80z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M86.236 28.564l-41.248 110h422.024l-41.248-110zm32.764 128v176.07c76.024 28.87 197.976 28.87 274 0v-176.07h-18v137.428c-7.16-3.66-15.96-6.65-26.307-9.236-24.208-6.052-56.74-9.64-92.693-9.64-7.85 0-15.526.18-23 .51-.017-12.01.002-24.02.04-36.032l24.013-60.03H238.05L215 237.194v39.566c-19.528 1.612-37.125 4.354-51.693 7.996-10.346 2.586-19.147 5.577-26.307 9.236V156.564zm89 23v16h4.266l6.4-16zm68.44 0l-25.6 64h17.867l25.602-64zm-196.44 23v18h21v-18zm75 0v18h42v-18zm149.492 0l-16.4 41H304v-23h53v-18zm106.508 0v18h12v80h57v-18h-39v-80zm-155 90.55c34.738 0 66.208 3.575 88.326 9.105 11.06 2.763 19.795 6.09 25.035 9.186 4.377 2.587 5.365 4.425 5.576 4.71.04-.057.064-.074.064 0 0 .073-.023.055-.064 0-.21.283-1.2 2.12-5.575 4.706-5.24 3.098-13.975 6.425-25.034 9.19-22.118 5.53-53.588 9.103-88.326 9.103-34.738 0-66.208-3.574-88.326-9.103-11.06-2.765-19.795-6.092-25.035-9.19-4.377-2.586-5.365-4.423-5.576-4.707-.04.056-.064.074-.064 0 0-.073.023-.056.064 0 .21-.284 1.2-2.122 5.575-4.71 5.24-3.096 13.975-6.422 25.034-9.186 12.965-3.243 29.16-5.805 47.326-7.376v28.72h18v-29.91c7.456-.347 15.138-.54 23-.54zm137 58.665c-32.96 11.616-71.95 18.42-112 20.417v27.45c40.88-2.024 80.4-9.035 112-21.038zm-274 .02v26.83c9.95 3.777 20.683 7.063 32 9.852V361.16c-11.143-2.664-21.856-5.785-32-9.36zm50 13.202v27.408c29.46 5.657 61.842 8.253 94 7.81v-27.447c-31.99.444-64.16-2.134-94-7.77zm224 32.777c-5.196 1.83-10.525 3.553-16 5.146v25.158c5.527-1.687 10.863-3.51 16-5.46zm-274 .01v24.827c27.454 10.426 60.89 17.082 96 19.98v-25.44c-34.372-2.842-67.45-9.302-96-19.366zm240 9.837c-38.988 9.09-83.038 12.637-126 10.67v25.445c43.22 1.968 87.805-1.613 126-10.777zM119 441.78c1.642 9.154 8.428 17.585 16 21.704v-16.558c-5.475-1.593-10.804-3.317-16-5.147zm274 .007c-12.8 4.513-26.5 8.312-40.834 11.373v19.73c16.52-4.255 40.596-15.226 40.834-31.103zm-240 9.84v19.275c33.85 9.257 73.556 12.422 103 12.534 29.185 0 56.113-2.365 78.166-6.493v-20.37c-58.66 9.767-125.146 8.115-181.166-4.946z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M247 18v135.193c5.95-3.097 11.95-6.065 18-8.89V18h-18zm192 0v247.6l-174-.688v-60.457c-6.182 5.902-12.18 11.908-18 18V311h18v-28.088l174 .688V311h18V18h-18zm-80.1 71.914c-7.024-.18-15.588 2.472-20.54 6.463-7.925 6.386-14.468 22.533-9.155 29.127 5.313 6.594 22.48 3.634 30.406-2.752 7.926-6.386 14.47-22.533 9.158-29.127-1.993-2.473-5.653-3.602-9.868-3.71zm-54.125 57.334C168.5 198.266 48.38 324.17 25.043 471.803l17.316 3.365c15.157-100.106 61.737-149.502 92.28-179.856C120.173 337.77 79.376 405.92 78.27 482.145l21.605 4.2c4.238-108.047 78.028-244.59 204.902-339.097zM241.068 329v158h30V329h-30zm191.618 0v158h30V329h-30z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M371.148 21.422c-47.943.474-94.522 30.346-106.605 84.855 23.308 25.97 35.25 59.46 30.36 94.453l-18.51-2.585c6.01-43.03-18.18-83.975-60.573-106.483-30.015-13.248-62.242-15.24-91.802-8.28l-6.82 1.147c.035.21.058.394.093.603-.275.08-.552.152-.827.232.297.04.59.09.887.135 3.047 18.48 3.43 30.233 1.01 38.135-2.465 8.044-7.604 13.897-19.858 21.88l-10.947 7.13 10.287 8.056c21.587 16.905 26.17 33.387 22.36 44.382-3.81 10.995-17.38 20.564-42.932 20.02l-11.91-.254 2.59 11.627c3.902 17.518 2.97 29.854-.3 37.894s-8.532 12.52-16.617 15.308l.006.015-7.91 2.555C112.05 394.053 302.19 431.686 337.77 493.3c0-88.87 183.898-228.256 149.855-373.734-15.838-67.674-66.885-98.634-116.475-98.144zm-233.69 72.246c21.017 14.63 31.41 45.175 15.14 71.9 96.352-16.05 73.76 120.85 5.703 101.38-19.06 41.176-62.37 43.628-87.2 32.82 5.938-4.656 10.792-10.806 13.863-18.36 4.23-10.4 5.16-23.078 3.094-37.998 25.026-2.268 43.544-14.152 49.802-32.21 6.223-17.957-.74-38.94-19.358-57.192 8.663-7.18 14.733-15.126 17.727-24.897 3.145-10.27 3.022-21.51 1.227-35.442z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M313.732 3.545l-60.166 157.62-58.42-48.454 9.838 78.962c-47.68-32.87-93.904-83.845-135.062-172.408H18.57v119.3c41.344 41.93 97.152 66.44 156.826 90.963L23.976 287.33l132.655 9.65-55.253 85.65 116.94-57.478L224.8 462.93l66.706-144.633 65.75 84.558-5.15-83.675c51.68 38.82 96.87 92.806 126.013 175.474h15.84v-149.33c-33.083-36.708-68.22-57.787-104.755-73.648l66.895-29.57-91.668-15.907 113.02-117.993-152.67 47.258-11.05-151.92zM258.6 198.807c5.412-.05 11.044.265 16.832.992 23.154 2.905 44.133 11.763 58.836 23.202 14.702 11.44 22.656 25.008 22.656 37.295 0 12.287-7.196 22.387-21.276 29.807-14.08 7.42-34.734 11.078-57.886 8.17-23.154-2.905-44.132-11.76-58.834-23.198-14.703-11.44-22.658-25.007-22.658-37.295 0-.665.03-1.32.072-1.973l42.642 11.113-8.52 12.11 87.563 13.265-38.8-26.672 15.82-14.785-68.963-26.606c9.236-3.335 20.317-5.312 32.516-5.425z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M73.98 19.324l36.696 67.596L20.3 33.506v.058L122.427 139.94 20.298 93.67v.3l53.856 60.932-53.855-4.072v.014l196.608 95.675-68.502 34.29 76.547 18.104-42.896 55.227 72.892-11.634c5.323-8.462 9.98-16.897 13.958-25.48-18.586-11.336-30.994-31.8-30.994-55.165 0-35.66 28.91-64.57 64.572-64.57 22.323 0 41.986 11.335 53.58 28.556l36.55 2.15 35.013-37.644-59.405 9.334 23.363-78.582-63.15 59.25L306.935 67.96l-21.354 110.425-48.256-53.547 6.737 61.11L74.498 19.325h-.52zm231.106 222.244c-2.274 61.787-26.61 106.513-68.617 156.828l75.126 82.96 41.545-116.155c-6.507 2.467-13.803 3.007-20.984 1.083-18.23-4.885-29.204-23.86-24.32-42.086.206-.77.444-1.522.7-2.265l1.452-22.514 77.674-3.506h.004l65.41 41.467-11.62 24.1c-5.448 17.396-23.93 27.675-41.698 22.915-6.818-1.827-12.62-5.626-16.957-10.618l-22.757 119.707L464.55 459.52c-13.598-67.112-8.595-114.53 21.227-169.622l-83.105-42.59-97.586-5.74zm35.48 75.85c-6.786.15-12.81 4.683-14.668 11.62-2.265 8.455 2.62 16.913 11.098 19.185 8.48 2.272 16.937-2.61 19.203-11.067 2.265-8.456-2.62-16.913-11.098-19.185-1.06-.283-2.12-.455-3.168-.523-.46-.03-.915-.04-1.368-.03zm67.604 18.11c-6.786.15-12.81 4.682-14.67 11.618-2.266 8.456 2.618 16.914 11.098 19.186 8.48 2.272 16.937-2.61 19.203-11.066 2.267-8.456-2.617-16.914-11.097-19.186-1.06-.284-2.12-.456-3.166-.523-.458-.03-.915-.04-1.367-.03z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M140.2 23.414c15.085 32.345 32.656 63.74 52.378 93.875l5.117 6.558-.023-34.914 71.494 120.16 12.21-30.672 62.49 111.574 10.792-23.053 46.98 65.72c28.694 19.943 58.638 37.808 89.563 53.27-9.573-53.755-22.974-106.946-46.167-158.7l-15.385 36.853-60.82-106.8-7.33 21.812-58.623-100.784-9.523 36.104-57.16-69.95-8.792 27.077-87.2-48.13zM32.905 30.65c.498 1.085 1.01 2.16 1.512 3.24l128.55 182.686-15.07 2.442 85.834 57.697-31.3 9.924 138.322 85.465-34.393 16.145 5.4 3.322c-.7-1.014-1.393-2.032-2.098-3.043 4.165 3.215 8.367 6.367 12.584 9.49l109.297 67.22c14.582 7.255 29.39 13.985 44.418 20.156-10.046-21.494-21.62-43.198-34.51-64.898l-83.413-116.693-12.685 27.093-61.118-109.127-11.734 29.474-56.094-94.275.014 21.255-48.426-62.06C123.39 81.91 77.68 52.7 32.904 30.65zM19.557 136.71l29.308 61.67-34.44-.745 81.34 67.69L60.59 275.1l123.84 95.517-44.7 3.76 148.02 83.487-32.973 12.033 117.977 27.077c-11.174-23.545-23.634-46.537-37.254-68.864l-68.41-42.074 34.47-16.183-143.597-88.726 33.185-10.52L98.2 208.132l30.69-4.97C94.145 177.7 57.52 155.358 19.556 136.71z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M256.018 22.963l-61.72 61.723c19.433-6.937 40.36-10.725 62.175-10.725 21.288 0 41.733 3.61 60.767 10.23l-61.222-61.227zM89.47 92.363v86.996c18.093-37.91 48.707-68.695 86.495-86.997H89.47zm247.51 0c37.723 18.27 68.3 48.98 86.403 86.8v-86.8H336.98zm-80.537 4.11C166.855 96.473 94 169.333 94 258.928c0 89.593 72.855 162.453 162.443 162.453 89.59 0 162.444-72.86 162.444-162.452 0-89.594-72.855-162.455-162.444-162.455zm0 21.062c56.318 0 104.84 32.766 127.588 80.315-26.38-29.476-71.3-49.262-122.634-50.473 4.36 7.187 8.307 14.898 11.797 23.047-11.635 7.206-19.388 20.083-19.388 34.775 0 21.123 16.023 38.503 36.578 40.654.245 4.43.377 8.905.377 13.42 0 42.575-11.1 81.19-29.35 111.185 51.34-1.216 96.266-21.01 122.64-50.497-22.74 47.57-71.272 80.357-127.607 80.357-56.247 0-104.718-32.683-127.504-80.134 26.407 29.37 71.254 49.07 122.482 50.273-18.323-29.996-29.33-68.48-29.33-111.187 0-42.716 11.012-81.802 29.342-111.896-51.22 1.2-96.063 20.89-122.475 50.252 22.793-47.43 71.253-80.095 127.483-80.095zM82.246 196.748l-62.17 62.172 62.166 62.172c-6.933-19.43-10.72-40.356-10.72-62.168 0-21.815 3.79-42.743 10.724-62.176zm348.502.14c6.903 19.394 10.674 40.273 10.674 62.036 0 21.76-3.77 42.636-10.67 62.027l62.025-62.03-62.03-62.03zM89.47 338.49v86.99h86.483c-37.782-18.302-68.392-49.084-86.482-86.99zm333.913.198c-18.102 37.815-48.674 68.52-86.39 86.793h86.39v-86.794zM194.31 433.164l61.708 61.715 61.212-61.22c-19.03 6.618-39.472 10.227-60.757 10.227-21.81 0-42.735-3.79-62.164-10.723z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M18.314 20.6v48.117c74.127 6.587 148.202 24.124 209.71 61.125C188.913 78.178 130.196 43.38 72.798 20.6H18.313zm146.846 0c45.057 38.643 74.804 81.436 84.725 123.54 10.946-45.05 6.82-86.505-4.574-123.54h-80.15zm84.725 123.54v.003h.002l-.002-.004zM483.13 20.6c-30.043 75.585-73.05 144.09-126.02 192.76 51.52-20.53 100.206-46.577 136.472-75.14V20.6h-10.45zM89.958 100.443c25.695 40.067 57.678 77.776 94.402 112.12C117.17 260.592 59.893 319.067 18.28 383.79c85.442-22.73 167.34-61.815 238.314-112.313 70.607 50.235 152.024 89.175 236.988 111.955v-1.66c-41.502-63.918-98.275-121.68-164.76-169.208 36.724-34.345 68.706-72.054 94.4-112.12-58.198 15.17-114.433 37.902-166.638 66.66-52.2-28.757-108.43-51.49-166.627-66.66zm56.31 118.678c-48.624 7.847-91.077 22.95-127.953 39.675v90.7c35.14-51.477 79.497-98.29 127.954-130.374zm109.4 83.218c-18.59 70.884-14.394 135.865.466 193.514h115.78c-63.8-60.13-104.78-127.385-116.245-193.514zm14.993.375c55.22 91.766 138.833 152.762 212.29 193.14h10.632v-90.847c-89.222-19.35-167.94-55.118-222.922-102.293z"/></svg>
data/spec/icon_spec.rb CHANGED
@@ -8,14 +8,41 @@ describe GameIcons::Icon do
8
8
  expect(i.string).to eq('<svg><path fill="abc"/><path fill="def"/></svg>')
9
9
  end
10
10
 
11
- it 'recolors properly' do
11
+ it 'recolors regular colors' do
12
+ exp = <<-EOSVG
13
+ <?xml version="1.0"?>
14
+ <svg>
15
+ <path fill="123" fill-opacity="1.0"/>
16
+ <path fill="456" fill-opacity="1.0"/>
17
+ </svg>
18
+ EOSVG
12
19
  i = GameIcons::Icon.new(data('foo.svg'))
13
- expect(i.recolor(bg: '123', fg: '456').string)
14
- .to eq("<?xml version=\"1.0\"?>\n<svg>\n <path fill=\"123\"/>\n <path fill=\"456\"/>\n</svg>\n")
20
+ expect(i.recolor(bg: '123', fg: '456').string).to eq(exp)
21
+ end
22
+
23
+ it 'recolors with fill opacity too' do
24
+ exp = <<-EOSVG
25
+ <?xml version="1.0"?>
26
+ <svg>
27
+ <path fill="123" fill-opacity="0.25"/>
28
+ <path fill="456" fill-opacity="0.12"/>
29
+ </svg>
30
+ EOSVG
31
+ i = GameIcons::Icon.new(data('foo.svg'))
32
+ expect(i.recolor(bg: '123', fg: '456', bg_opacity:'0.25', fg_opacity:'0.12').string).to eq(exp)
15
33
  end
16
34
 
17
35
  it 'returns the file given' do
18
36
  expect(GameIcons::Icon.new('foo.svg').file).to eq('foo.svg')
19
37
  end
20
38
 
39
+ it 'corrects space issue' do
40
+ exp = <<-EOSVG
41
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path d="M371.28 18.906c-40.78 .092 -82.526 21.026 -110.624 65.813 -35.57 -51.667 -93.288 -71.73 -143.5 -61.47 -54.427 11.12 -99.783 58.946 -97.47 134.688 2.17 70.978 43.028 120.858 91.25 168.53 48.225 47.674 104.27 94.2 141.97 159.5L261 500l8.094 -14.03c37.55 -65.042 95.404 -109.375 144.625 -156.064 49.22 -46.69 90.167 -97.202 87.905 -172.53C499.49 86.238 455.06 36.64 401.875 22.81c-9.972 -2.593 -20.252 -3.93 -30.594 -3.906zm-.06 18.532c8.754 .06 17.462 1.233 25.936 3.437 45.197 11.753 83.9 53.345 85.813 117.063 2.054 68.423 -33.94 112.727 -82.095 158.406 -44.992 42.678 -100.275 85.296 -139.844 147 -39.266 -61.85 -92.684 -106.41 -136.936 -150.156 -47.363 -46.823 -83.76 -91.68 -85.72 -155.813C36.29 89.075 74.47 51.05 120.907 41.562c46.437 -9.487 101.338 10.72 131.938 65.844l8.5 15.375 8 -15.655C294.42 57.898 333.28 37.17 371.22 37.437zM358.81 58.343c-1.67 -.023 -3.264 .033 -4.78 .156 -6.066 .49 -10.737 2.085 -13.782 4.156 -3.045 2.07 -4.678 4.384 -5.5 8 -1.644 7.233 2.136 19.413 12.188 32.03 10.05 12.62 25.672 25.346 43.937 34.44 18.265 9.092 35.618 12.667 47.75 11.686 6.066 -.49 10.705 -2.085 13.75 -4.156 3.045 -2.07 4.71 -4.384 5.53 -8 1.645 -7.232 -2.166 -19.38 -12.217 -32 -10.052 -12.62 -25.642 -25.345 -43.907 -34.437 -15.98 -7.957 -31.27 -11.718 -42.967 -11.876zm-210 .03c-1.315 -.017 -2.565 .03 -3.75 .126 -4.736 .38 -8.26 1.594 -10.437 3.063 -2.176 1.468 -3.208 2.934 -3.78 5.437 -1.148 5.006 1.59 14.41 9.593 24.375 8 9.964 20.55 20.132 35.218 27.375 14.667 7.243 28.56 10.04 38.03 9.28 4.738 -.378 8.263 -1.624 10.44 -3.093 2.175 -1.468 3.207 -2.934 3.78 -5.437 1.147 -5.006 -1.592 -14.41 -9.594 -24.375 -8 -9.964 -20.55 -20.1 -35.218 -27.344 -12.834 -6.336 -25.076 -9.28 -34.28 -9.405zm114.313 130c-54.47 0 -103.808 4.458 -138.938 11.5 -17.564 3.523 -31.616 7.76 -40.5 11.97 -4.44 2.105 -7.545 4.263 -9.062 5.75 -.73 .715 -1.024 1.135 -1.156 1.344 .13 .215 .424 .658 1.155 1.375 1.517 1.486 4.62 3.613 9.063 5.718 8.883 4.212 22.935 8.448 40.5 11.97 35.13 7.043 84.466 11.53 138.937 11.53 54.47 0 103.808 -4.487 138.938 -11.53 17.564 -3.522 31.616 -7.758 40.5 -11.97 4.44 -2.104 7.545 -4.23 9.062 -5.718 .73 -.716 1.024 -1.16 1.156 -1.375 -.13 -.208 -.425 -.628 -1.155 -1.343 -1.517 -1.487 -4.62 -3.645 -9.063 -5.75 -8.883 -4.21 -22.935 -8.447 -40.5 -11.97 -35.13 -7.042 -84.466 -11.5 -138.937 -11.5zM452.78 218.94c.144 .225 .095 .203 .095 0 0 -.204 .048 -.232 -.094 0zm-379.31 0c-.143 -.232 -.095 -.204 -.095 0 0 .203 -.05 .225 .094 0zm364.592 29c-9.2 3.16 -20.002 5.93 -32.343 8.406 -36.928 7.403 -87.112 11.875 -142.595 11.875 -55.483 0 -105.7 -4.473 -142.625 -11.876 -11.487 -2.303 -21.663 -4.86 -30.438 -7.75 43.797 57.35 119.452 106.2 170.688 184.937 28.976 -43.9 66.72 -77.32 101.78 -108.374 29.198 -25.858 56.307 -50.194 75.533 -77.22z" fill="#fff"/></svg>
42
+ EOSVG
43
+ exp.strip!
44
+ expect(GameIcons.get('glass-heart').correct_pathdata.string).to eq(exp)
45
+ end
46
+
47
+
21
48
  end
@@ -4,7 +4,7 @@ require 'game_icons'
4
4
  # These are tests that will change with each release, but might find brokenness as we go.
5
5
 
6
6
  describe GameIcons do
7
- it('has the expected number of icons') { expect(GameIcons.names.count).to eq(1944) }
7
+ it('has the expected number of icons') { expect(GameIcons.names.count).to eq(1956) }
8
8
 
9
9
  it 'loads known svg data' do
10
10
  exp = <<-EOSVG
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: game_icons
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.20.0.20151001
4
+ version: 0.21.0.20151009
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andy Meneely
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-10-08 00:00:00.000000000 Z
11
+ date: 2015-10-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -226,6 +226,7 @@ files:
226
226
  - resources/icons/delapouite/originals/svg/aqueduct.svg
227
227
  - resources/icons/delapouite/originals/svg/arm.svg
228
228
  - resources/icons/delapouite/originals/svg/audio-cassette.svg
229
+ - resources/icons/delapouite/originals/svg/babyfoot-players.svg
229
230
  - resources/icons/delapouite/originals/svg/backgammon.svg
230
231
  - resources/icons/delapouite/originals/svg/backpack.svg
231
232
  - resources/icons/delapouite/originals/svg/banana-peel.svg
@@ -237,6 +238,7 @@ files:
237
238
  - resources/icons/delapouite/originals/svg/beach-ball.svg
238
239
  - resources/icons/delapouite/originals/svg/bed.svg
239
240
  - resources/icons/delapouite/originals/svg/beer-bottle.svg
241
+ - resources/icons/delapouite/originals/svg/biceps.svg
240
242
  - resources/icons/delapouite/originals/svg/binoculars.svg
241
243
  - resources/icons/delapouite/originals/svg/black-knight-helm.svg
242
244
  - resources/icons/delapouite/originals/svg/blindfold.svg
@@ -297,8 +299,10 @@ files:
297
299
  - resources/icons/delapouite/originals/svg/earth-asia-oceania.svg
298
300
  - resources/icons/delapouite/originals/svg/elf-ear.svg
299
301
  - resources/icons/delapouite/originals/svg/empty-chessboard.svg
302
+ - resources/icons/delapouite/originals/svg/entry-door.svg
300
303
  - resources/icons/delapouite/originals/svg/ermine.svg
301
304
  - resources/icons/delapouite/originals/svg/european-flag.svg
305
+ - resources/icons/delapouite/originals/svg/exit-door.svg
302
306
  - resources/icons/delapouite/originals/svg/factory.svg
303
307
  - resources/icons/delapouite/originals/svg/falling-rocks.svg
304
308
  - resources/icons/delapouite/originals/svg/female.svg
@@ -318,6 +322,7 @@ files:
318
322
  - resources/icons/delapouite/originals/svg/gold-stack.svg
319
323
  - resources/icons/delapouite/originals/svg/graduate-cap.svg
320
324
  - resources/icons/delapouite/originals/svg/grass.svg
325
+ - resources/icons/delapouite/originals/svg/graveyard.svg
321
326
  - resources/icons/delapouite/originals/svg/greaves.svg
322
327
  - resources/icons/delapouite/originals/svg/greek-temple.svg
323
328
  - resources/icons/delapouite/originals/svg/half-body-crawling.svg
@@ -331,6 +336,7 @@ files:
331
336
  - resources/icons/delapouite/originals/svg/high-grass.svg
332
337
  - resources/icons/delapouite/originals/svg/high-heel.svg
333
338
  - resources/icons/delapouite/originals/svg/hill-conquest.svg
339
+ - resources/icons/delapouite/originals/svg/hills.svg
334
340
  - resources/icons/delapouite/originals/svg/hole-ladder.svg
335
341
  - resources/icons/delapouite/originals/svg/holy-hand-grenade.svg
336
342
  - resources/icons/delapouite/originals/svg/holy-water.svg
@@ -348,6 +354,7 @@ files:
348
354
  - resources/icons/delapouite/originals/svg/island.svg
349
355
  - resources/icons/delapouite/originals/svg/jeep.svg
350
356
  - resources/icons/delapouite/originals/svg/jerrycan.svg
357
+ - resources/icons/delapouite/originals/svg/jester-hat.svg
351
358
  - resources/icons/delapouite/originals/svg/jet-fighter.svg
352
359
  - resources/icons/delapouite/originals/svg/joystick.svg
353
360
  - resources/icons/delapouite/originals/svg/jug.svg
@@ -358,6 +365,7 @@ files:
358
365
  - resources/icons/delapouite/originals/svg/kite.svg
359
366
  - resources/icons/delapouite/originals/svg/klingon.svg
360
367
  - resources/icons/delapouite/originals/svg/ladder.svg
368
+ - resources/icons/delapouite/originals/svg/lead-pipe.svg
361
369
  - resources/icons/delapouite/originals/svg/led.svg
362
370
  - resources/icons/delapouite/originals/svg/life-buoy.svg
363
371
  - resources/icons/delapouite/originals/svg/lighthouse.svg
@@ -375,9 +383,11 @@ files:
375
383
  - resources/icons/delapouite/originals/svg/medieval-pavilion.svg
376
384
  - resources/icons/delapouite/originals/svg/meeple.svg
377
385
  - resources/icons/delapouite/originals/svg/megaphone.svg
386
+ - resources/icons/delapouite/originals/svg/menhir.svg
378
387
  - resources/icons/delapouite/originals/svg/microphone.svg
379
388
  - resources/icons/delapouite/originals/svg/mighty-boosh.svg
380
389
  - resources/icons/delapouite/originals/svg/mine-wagon.svg
390
+ - resources/icons/delapouite/originals/svg/money-stack.svg
381
391
  - resources/icons/delapouite/originals/svg/monk-face.svg
382
392
  - resources/icons/delapouite/originals/svg/monkey-wrench.svg
383
393
  - resources/icons/delapouite/originals/svg/mortar.svg
@@ -461,6 +471,7 @@ files:
461
471
  - resources/icons/delapouite/originals/svg/shotgun-rounds.svg
462
472
  - resources/icons/delapouite/originals/svg/sickle.svg
463
473
  - resources/icons/delapouite/originals/svg/siege-tower.svg
474
+ - resources/icons/delapouite/originals/svg/silenced.svg
464
475
  - resources/icons/delapouite/originals/svg/skeletal-hand.svg
465
476
  - resources/icons/delapouite/originals/svg/slingshot.svg
466
477
  - resources/icons/delapouite/originals/svg/smoking-pipe.svg
@@ -493,6 +504,7 @@ files:
493
504
  - resources/icons/delapouite/originals/svg/tipi.svg
494
505
  - resources/icons/delapouite/originals/svg/torch.svg
495
506
  - resources/icons/delapouite/originals/svg/torpedo.svg
507
+ - resources/icons/delapouite/originals/svg/tortoise.svg
496
508
  - resources/icons/delapouite/originals/svg/toucan.svg
497
509
  - resources/icons/delapouite/originals/svg/traffic-cone.svg
498
510
  - resources/icons/delapouite/originals/svg/traffic-lights-green.svg
@@ -512,6 +524,7 @@ files:
512
524
  - resources/icons/delapouite/originals/svg/udder.svg
513
525
  - resources/icons/delapouite/originals/svg/ufo.svg
514
526
  - resources/icons/delapouite/originals/svg/union-jack.svg
527
+ - resources/icons/delapouite/originals/svg/usa-flag.svg
515
528
  - resources/icons/delapouite/originals/svg/uzi.svg
516
529
  - resources/icons/delapouite/originals/svg/viking-shield.svg
517
530
  - resources/icons/delapouite/originals/svg/village.svg
@@ -520,8 +533,10 @@ files:
520
533
  - resources/icons/delapouite/originals/svg/warp-pipe.svg
521
534
  - resources/icons/delapouite/originals/svg/watch.svg
522
535
  - resources/icons/delapouite/originals/svg/watchtower.svg
536
+ - resources/icons/delapouite/originals/svg/watering-can.svg
523
537
  - resources/icons/delapouite/originals/svg/watermelon.svg
524
538
  - resources/icons/delapouite/originals/svg/weight.svg
539
+ - resources/icons/delapouite/originals/svg/well.svg
525
540
  - resources/icons/delapouite/originals/svg/wheelbarrow.svg
526
541
  - resources/icons/delapouite/originals/svg/whistle.svg
527
542
  - resources/icons/delapouite/originals/svg/windmill.svg
@@ -540,6 +555,7 @@ files:
540
555
  - resources/icons/delapouite/sports/svg/golf-flag.svg
541
556
  - resources/icons/delapouite/sports/svg/ping-pong-bat.svg
542
557
  - resources/icons/delapouite/sports/svg/podium.svg
558
+ - resources/icons/delapouite/sports/svg/rugby-conversion.svg
543
559
  - resources/icons/delapouite/sports/svg/shuttlecock.svg
544
560
  - resources/icons/delapouite/sports/svg/soccer-ball.svg
545
561
  - resources/icons/delapouite/sports/svg/soccer-field.svg
@@ -798,6 +814,7 @@ files:
798
814
  - resources/icons/lorc/originals/svg/chemical-bolt.svg
799
815
  - resources/icons/lorc/originals/svg/chemical-drop.svg
800
816
  - resources/icons/lorc/originals/svg/chemical-tank.svg
817
+ - resources/icons/lorc/originals/svg/chewed-heart.svg
801
818
  - resources/icons/lorc/originals/svg/chicken-leg.svg
802
819
  - resources/icons/lorc/originals/svg/circle-claws.svg
803
820
  - resources/icons/lorc/originals/svg/circle-sparks.svg
@@ -992,6 +1009,7 @@ files:
992
1009
  - resources/icons/lorc/originals/svg/evil-tree.svg
993
1010
  - resources/icons/lorc/originals/svg/explosion-rays.svg
994
1011
  - resources/icons/lorc/originals/svg/explosive-materials.svg
1012
+ - resources/icons/lorc/originals/svg/explosive-meeting.svg
995
1013
  - resources/icons/lorc/originals/svg/extra-lucid.svg
996
1014
  - resources/icons/lorc/originals/svg/eye-shield.svg
997
1015
  - resources/icons/lorc/originals/svg/eyeball.svg
@@ -1161,6 +1179,7 @@ files:
1161
1179
  - resources/icons/lorc/originals/svg/heavy-rain.svg
1162
1180
  - resources/icons/lorc/originals/svg/heavy-thorny-triskelion.svg
1163
1181
  - resources/icons/lorc/originals/svg/heavy-timer.svg
1182
+ - resources/icons/lorc/originals/svg/helmet-head-shot.svg
1164
1183
  - resources/icons/lorc/originals/svg/hidden.svg
1165
1184
  - resources/icons/lorc/originals/svg/high-five.svg
1166
1185
  - resources/icons/lorc/originals/svg/high-shot.svg
@@ -1267,6 +1286,7 @@ files:
1267
1286
  - resources/icons/lorc/originals/svg/lightning-shadow.svg
1268
1287
  - resources/icons/lorc/originals/svg/lightning-shield.svg
1269
1288
  - resources/icons/lorc/originals/svg/lightning-shout.svg
1289
+ - resources/icons/lorc/originals/svg/lightning-slashes.svg
1270
1290
  - resources/icons/lorc/originals/svg/lightning-storm.svg
1271
1291
  - resources/icons/lorc/originals/svg/lightning-tear.svg
1272
1292
  - resources/icons/lorc/originals/svg/lightning-tree.svg
@@ -1371,6 +1391,7 @@ files:
1371
1391
  - resources/icons/lorc/originals/svg/nothing-to-say.svg
1372
1392
  - resources/icons/lorc/originals/svg/oak.svg
1373
1393
  - resources/icons/lorc/originals/svg/oat.svg
1394
+ - resources/icons/lorc/originals/svg/octogonal-eye.svg
1374
1395
  - resources/icons/lorc/originals/svg/octopus.svg
1375
1396
  - resources/icons/lorc/originals/svg/omega.svg
1376
1397
  - resources/icons/lorc/originals/svg/on-target.svg
@@ -1867,6 +1888,7 @@ files:
1867
1888
  - resources/icons/lorc/originals/svg/worried-eyes.svg
1868
1889
  - resources/icons/lorc/originals/svg/wrapped-heart.svg
1869
1890
  - resources/icons/lorc/originals/svg/wrapped-sweet.svg
1891
+ - resources/icons/lorc/originals/svg/wrapping-star.svg
1870
1892
  - resources/icons/lorc/originals/svg/wrecking-ball.svg
1871
1893
  - resources/icons/lorc/originals/svg/wyvern.svg
1872
1894
  - resources/icons/lorc/originals/svg/zebra-shield.svg