ctl_base_ui 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (167) hide show
  1. checksums.yaml +7 -0
  2. data/Rakefile +32 -0
  3. data/app/assets/images/ctl_base_ui/ctl_labs_long_color.svg +79 -0
  4. data/app/assets/images/ctl_base_ui/ctl_labs_run_color.svg +47 -0
  5. data/app/assets/images/ctl_base_ui/ctl_logo_base.svg +48 -0
  6. data/app/assets/images/ctl_base_ui/icon_sprite.svg +161 -0
  7. data/app/assets/images/ctl_base_ui/icon_sprite_blue.svg +161 -0
  8. data/app/assets/images/ctl_base_ui/icon_sprite_green.svg +161 -0
  9. data/app/assets/images/ctl_base_ui/icon_sprite_light_blue.svg +161 -0
  10. data/app/assets/images/ctl_base_ui/icon_sprite_light_green.svg +161 -0
  11. data/app/assets/images/ctl_base_ui/icon_sprite_light_grey.svg +161 -0
  12. data/app/assets/images/ctl_base_ui/icon_sprite_red.svg +161 -0
  13. data/app/assets/images/ctl_base_ui/icon_sprite_white.svg +161 -0
  14. data/app/assets/javascripts/ctl_base_ui/kitchen_sink.js +2 -0
  15. data/app/assets/stylesheets/ctl_base_ui/_colors.scss +19 -0
  16. data/app/assets/stylesheets/ctl_base_ui/_mixins.scss +37 -0
  17. data/app/assets/stylesheets/ctl_base_ui/_variables.scss +2 -0
  18. data/app/assets/stylesheets/ctl_base_ui/application.css +21 -0
  19. data/app/assets/stylesheets/ctl_base_ui/baseline.scss +13 -0
  20. data/app/assets/stylesheets/ctl_base_ui/buttons.scss +81 -0
  21. data/app/assets/stylesheets/ctl_base_ui/forms.scss +111 -0
  22. data/app/assets/stylesheets/ctl_base_ui/icons.scss +131 -0
  23. data/app/assets/stylesheets/ctl_base_ui/modals.scss +77 -0
  24. data/app/assets/stylesheets/ctl_base_ui/notices.scss +41 -0
  25. data/app/assets/stylesheets/ctl_base_ui/reset.scss +48 -0
  26. data/app/assets/stylesheets/ctl_base_ui/styleguide.scss +437 -0
  27. data/app/assets/stylesheets/ctl_base_ui/typography.scss +92 -0
  28. data/app/controllers/ctl_base_ui/application_controller.rb +7 -0
  29. data/app/controllers/ctl_base_ui/styleguide_controller.rb +8 -0
  30. data/app/helpers/ctl_base_ui/application_helper.rb +12 -0
  31. data/app/views/ctl_base_ui/styleguide/_buttons.html.haml +10 -0
  32. data/app/views/ctl_base_ui/styleguide/_century_link_identity.html.haml +3 -0
  33. data/app/views/ctl_base_ui/styleguide/_colors.html.haml +44 -0
  34. data/app/views/ctl_base_ui/styleguide/_forms.html.haml +19 -0
  35. data/app/views/ctl_base_ui/styleguide/_icons.html.haml +11 -0
  36. data/app/views/ctl_base_ui/styleguide/_modals.html.haml +15 -0
  37. data/app/views/ctl_base_ui/styleguide/_notices.html.haml +21 -0
  38. data/app/views/ctl_base_ui/styleguide/_typography.html.haml +30 -0
  39. data/app/views/ctl_base_ui/styleguide/index.html.haml +57 -0
  40. data/app/views/layouts/ctl_base_ui/application.html.haml +12 -0
  41. data/config/routes.rb +3 -0
  42. data/lib/ctl_base_ui/configuration.rb +25 -0
  43. data/lib/ctl_base_ui/engine.rb +8 -0
  44. data/lib/ctl_base_ui/version.rb +3 -0
  45. data/lib/ctl_base_ui.rb +6 -0
  46. data/lib/tasks/ctl_base_ui_tasks.rake +4 -0
  47. data/test/ctl_base_ui_test.rb +7 -0
  48. data/test/dummy/README.rdoc +28 -0
  49. data/test/dummy/Rakefile +6 -0
  50. data/test/dummy/app/assets/javascripts/application.js +13 -0
  51. data/test/dummy/app/controllers/application_controller.rb +5 -0
  52. data/test/dummy/app/helpers/application_helper.rb +2 -0
  53. data/test/dummy/app/views/layouts/application.html.haml +14 -0
  54. data/test/dummy/bin/bundle +3 -0
  55. data/test/dummy/bin/rails +4 -0
  56. data/test/dummy/bin/rake +4 -0
  57. data/test/dummy/config/application.rb +28 -0
  58. data/test/dummy/config/boot.rb +5 -0
  59. data/test/dummy/config/environment.rb +5 -0
  60. data/test/dummy/config/environments/development.rb +27 -0
  61. data/test/dummy/config/environments/production.rb +80 -0
  62. data/test/dummy/config/environments/test.rb +36 -0
  63. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  64. data/test/dummy/config/initializers/ctl_base_ui.rb +3 -0
  65. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  66. data/test/dummy/config/initializers/inflections.rb +16 -0
  67. data/test/dummy/config/initializers/mime_types.rb +5 -0
  68. data/test/dummy/config/initializers/secret_token.rb +12 -0
  69. data/test/dummy/config/initializers/session_store.rb +3 -0
  70. data/test/dummy/config/initializers/wrap_parameters.rb +9 -0
  71. data/test/dummy/config/locales/en.yml +23 -0
  72. data/test/dummy/config/routes.rb +3 -0
  73. data/test/dummy/config.ru +4 -0
  74. data/test/dummy/log/development.log +616 -0
  75. data/test/dummy/public/404.html +58 -0
  76. data/test/dummy/public/422.html +58 -0
  77. data/test/dummy/public/500.html +57 -0
  78. data/test/dummy/public/favicon.ico +0 -0
  79. data/test/dummy/tmp/cache/assets/development/sass/8abd77cf1f8106f52f12194ed1fcc1613b5c14c6/_colors.scssc +0 -0
  80. data/test/dummy/tmp/cache/assets/development/sass/8abd77cf1f8106f52f12194ed1fcc1613b5c14c6/_mixins.scssc +0 -0
  81. data/test/dummy/tmp/cache/assets/development/sass/8abd77cf1f8106f52f12194ed1fcc1613b5c14c6/_variables.scssc +0 -0
  82. data/test/dummy/tmp/cache/assets/development/sass/8abd77cf1f8106f52f12194ed1fcc1613b5c14c6/baseline.scssc +0 -0
  83. data/test/dummy/tmp/cache/assets/development/sass/8abd77cf1f8106f52f12194ed1fcc1613b5c14c6/buttons.scssc +0 -0
  84. data/test/dummy/tmp/cache/assets/development/sass/8abd77cf1f8106f52f12194ed1fcc1613b5c14c6/forms.scssc +0 -0
  85. data/test/dummy/tmp/cache/assets/development/sass/8abd77cf1f8106f52f12194ed1fcc1613b5c14c6/icons.scssc +0 -0
  86. data/test/dummy/tmp/cache/assets/development/sass/8abd77cf1f8106f52f12194ed1fcc1613b5c14c6/modals.scssc +0 -0
  87. data/test/dummy/tmp/cache/assets/development/sass/8abd77cf1f8106f52f12194ed1fcc1613b5c14c6/notices.scssc +0 -0
  88. data/test/dummy/tmp/cache/assets/development/sass/8abd77cf1f8106f52f12194ed1fcc1613b5c14c6/reset.scssc +0 -0
  89. data/test/dummy/tmp/cache/assets/development/sass/8abd77cf1f8106f52f12194ed1fcc1613b5c14c6/styleguide.scssc +0 -0
  90. data/test/dummy/tmp/cache/assets/development/sass/8abd77cf1f8106f52f12194ed1fcc1613b5c14c6/typography.scssc +0 -0
  91. data/test/dummy/tmp/cache/assets/development/sprockets/0303b432eb383e61ba34ea5078f66a48 +0 -0
  92. data/test/dummy/tmp/cache/assets/development/sprockets/0733a75c8a2b4eb73f605ea998af15b5 +0 -0
  93. data/test/dummy/tmp/cache/assets/development/sprockets/0d1b08b26685a1c2b4b97e1f671a4af3 +0 -0
  94. data/test/dummy/tmp/cache/assets/development/sprockets/179b270ea6a97e5d46ff601500a6846d +0 -0
  95. data/test/dummy/tmp/cache/assets/development/sprockets/187cf46ce796ff8dcd272c736d459e99 +0 -0
  96. data/test/dummy/tmp/cache/assets/development/sprockets/1e20264e24c10967027560b2869fb1d3 +0 -0
  97. data/test/dummy/tmp/cache/assets/development/sprockets/270aa30dc683f1dd3c2dfaa993e1321a +0 -0
  98. data/test/dummy/tmp/cache/assets/development/sprockets/2c971479f73bafa4a357b3e08e571167 +0 -0
  99. data/test/dummy/tmp/cache/assets/development/sprockets/2cabf41a81ca2c912333d520cd6902bb +0 -0
  100. data/test/dummy/tmp/cache/assets/development/sprockets/2deb642dada5251ae5b3fe9453bef203 +0 -0
  101. data/test/dummy/tmp/cache/assets/development/sprockets/34e5eaecd93f40aa15f62d46e38d0aec +0 -0
  102. data/test/dummy/tmp/cache/assets/development/sprockets/3864760eed16c23aabbd3714d39731ab +0 -0
  103. data/test/dummy/tmp/cache/assets/development/sprockets/38d0b1e7a58a1fa245500f6cf244ffbe +0 -0
  104. data/test/dummy/tmp/cache/assets/development/sprockets/3b7e3122ce02b3cc004c88ebd07f159f +0 -0
  105. data/test/dummy/tmp/cache/assets/development/sprockets/3d3580db821c9121cb1fb6bdca57973e +0 -0
  106. data/test/dummy/tmp/cache/assets/development/sprockets/49dbb80fd198f03d655ef7ea0d3d102a +0 -0
  107. data/test/dummy/tmp/cache/assets/development/sprockets/4bb25d18d10b2678b08bfcafe0c34e26 +0 -0
  108. data/test/dummy/tmp/cache/assets/development/sprockets/58e530ef4bbbc16c59c12bbc75fdf59e +0 -0
  109. data/test/dummy/tmp/cache/assets/development/sprockets/5e96a4fa7adc21893ef800cb5b4d7b1b +0 -0
  110. data/test/dummy/tmp/cache/assets/development/sprockets/60e0b9f6bc47b7dd0c638e3d9b89710c +0 -0
  111. data/test/dummy/tmp/cache/assets/development/sprockets/62b022ed57ae78bbda6088e9224e7f80 +0 -0
  112. data/test/dummy/tmp/cache/assets/development/sprockets/65d1d5c459b20f2a3e1155ffca39b322 +0 -0
  113. data/test/dummy/tmp/cache/assets/development/sprockets/68d639a7ec8b865c18b91b405f7d1e6f +0 -0
  114. data/test/dummy/tmp/cache/assets/development/sprockets/6d410574ba327d6b66b019a4564d4a3a +0 -0
  115. data/test/dummy/tmp/cache/assets/development/sprockets/713251a5497bb66ab924fea15e9b0284 +0 -0
  116. data/test/dummy/tmp/cache/assets/development/sprockets/7ce45cf5080d9abd1b0e837b4ae20b67 +0 -0
  117. data/test/dummy/tmp/cache/assets/development/sprockets/7d16eef429258a61204ec3a6ff31527a +0 -0
  118. data/test/dummy/tmp/cache/assets/development/sprockets/810fe112337898d76dbdedeb6b1ba9b8 +0 -0
  119. data/test/dummy/tmp/cache/assets/development/sprockets/864adbf04c5ab0d32fa685701ae62f38 +0 -0
  120. data/test/dummy/tmp/cache/assets/development/sprockets/89606f28c3dfd69b84b4d24946538037 +0 -0
  121. data/test/dummy/tmp/cache/assets/development/sprockets/8c7ada169200de41cc4c79475e29fe0b +0 -0
  122. data/test/dummy/tmp/cache/assets/development/sprockets/918faf7a66bb2533d7e0dc594d71debb +0 -0
  123. data/test/dummy/tmp/cache/assets/development/sprockets/9190a159a7c37dd97f3a472206575242 +0 -0
  124. data/test/dummy/tmp/cache/assets/development/sprockets/925baff581c9b50a6419c475485e942b +0 -0
  125. data/test/dummy/tmp/cache/assets/development/sprockets/95ea9c200445fe8fd20e0d6da242ddbd +0 -0
  126. data/test/dummy/tmp/cache/assets/development/sprockets/95fa285c1de558eb3c20f169b844f76c +0 -0
  127. data/test/dummy/tmp/cache/assets/development/sprockets/96b14e59638628abe7a2efb736c23f5e +0 -0
  128. data/test/dummy/tmp/cache/assets/development/sprockets/a0a731c98e68c1444457d754e9093369 +0 -0
  129. data/test/dummy/tmp/cache/assets/development/sprockets/a6bda980439e51cb092fb6d8b7920b49 +0 -0
  130. data/test/dummy/tmp/cache/assets/development/sprockets/a9df84c7eebe716cac74822f5c1db1cb +0 -0
  131. data/test/dummy/tmp/cache/assets/development/sprockets/adee1d66169ed6e8595218f2c42f5f59 +0 -0
  132. data/test/dummy/tmp/cache/assets/development/sprockets/b3396a881ee33e938a6fdb3d9c7593b1 +0 -0
  133. data/test/dummy/tmp/cache/assets/development/sprockets/b3a303ba4385b3991be89acba49ca62c +0 -0
  134. data/test/dummy/tmp/cache/assets/development/sprockets/b652de37608b55f2cb1258e1202297a9 +0 -0
  135. data/test/dummy/tmp/cache/assets/development/sprockets/b65ea5f591919e176212719cb8170eec +0 -0
  136. data/test/dummy/tmp/cache/assets/development/sprockets/b6d2153d7c97d1cf2714e14e24fa7d39 +0 -0
  137. data/test/dummy/tmp/cache/assets/development/sprockets/b7114ea3513dfa680adc1909bc20c89b +0 -0
  138. data/test/dummy/tmp/cache/assets/development/sprockets/bf7625999e0a55773e8afa91f8fa2619 +0 -0
  139. data/test/dummy/tmp/cache/assets/development/sprockets/bfe9a98f3b82d40c3b13aed73ba185c7 +0 -0
  140. data/test/dummy/tmp/cache/assets/development/sprockets/c08bc7cd26f85ce11741ee6e5efebf91 +0 -0
  141. data/test/dummy/tmp/cache/assets/development/sprockets/c0cbe5c4109d439bca0bdc67f0f13246 +0 -0
  142. data/test/dummy/tmp/cache/assets/development/sprockets/c3a0786a7c4480e9754d0b490b216eac +0 -0
  143. data/test/dummy/tmp/cache/assets/development/sprockets/c599b6ae6831d05fb0b54aa099afa193 +0 -0
  144. data/test/dummy/tmp/cache/assets/development/sprockets/c635164eabd3a3b87f718b0eb6288fa6 +0 -0
  145. data/test/dummy/tmp/cache/assets/development/sprockets/c6b006903d4bab49e7e017e830cbcc03 +0 -0
  146. data/test/dummy/tmp/cache/assets/development/sprockets/ca2920c72c4de8e2c6ca165348f1801e +0 -0
  147. data/test/dummy/tmp/cache/assets/development/sprockets/cbf1e5fb527fc7e1febc8068c0e99292 +0 -0
  148. data/test/dummy/tmp/cache/assets/development/sprockets/ceaa26a5cd606fcda7ffbb9963b86c33 +0 -0
  149. data/test/dummy/tmp/cache/assets/development/sprockets/cf05718545630da575a491be1620f58e +0 -0
  150. data/test/dummy/tmp/cache/assets/development/sprockets/d40c55a44bd87cc334c38165c1badb69 +0 -0
  151. data/test/dummy/tmp/cache/assets/development/sprockets/d5188f154ad181a5c1d97d75180144e2 +0 -0
  152. data/test/dummy/tmp/cache/assets/development/sprockets/d896be8cd59389c8d9aa62897e2539aa +0 -0
  153. data/test/dummy/tmp/cache/assets/development/sprockets/d931b88d566c4c1f7413fb6206bc70b9 +0 -0
  154. data/test/dummy/tmp/cache/assets/development/sprockets/db8d11fa2072f99f9b09158ce432cd73 +0 -0
  155. data/test/dummy/tmp/cache/assets/development/sprockets/dda0d76adf30b8d41364feb544dbc43b +0 -0
  156. data/test/dummy/tmp/cache/assets/development/sprockets/de15c0d8d02e8bf92eb8e4a476c15a13 +0 -0
  157. data/test/dummy/tmp/cache/assets/development/sprockets/df073ef92311baf471749246bc63cd9e +0 -0
  158. data/test/dummy/tmp/cache/assets/development/sprockets/dfd377efa43e490bc47ea01a8bc2db63 +0 -0
  159. data/test/dummy/tmp/cache/assets/development/sprockets/e236b528d40f4a291d03a2c07ea4dc45 +0 -0
  160. data/test/dummy/tmp/cache/assets/development/sprockets/e71d9fdfcbb630a0c49ecd9610afe42b +0 -0
  161. data/test/dummy/tmp/cache/assets/development/sprockets/e769263e01360490916801f8cd28c510 +0 -0
  162. data/test/dummy/tmp/cache/assets/development/sprockets/e971944fd6d11922fbfd51283a82fa47 +0 -0
  163. data/test/dummy/tmp/cache/assets/development/sprockets/f2f6c99c1fe4a5298c92950f556aeae1 +0 -0
  164. data/test/dummy/tmp/cache/assets/development/sprockets/f482e693e6b20f9a3d2f77ff8a130086 +0 -0
  165. data/test/integration/navigation_test.rb +9 -0
  166. data/test/test_helper.rb +15 -0
  167. metadata +398 -0
@@ -0,0 +1,161 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="-10 -208 20 2000" enable-background="new -10 -208 20 2000" xml:space="preserve">
6
+ <path fill="#689B47" d="M-2-88.3v2.8c-0.6,0.2-1.2,0.4-1.7,0.7l-1.9-1.9l-2.8,2.8l1.9,1.9c-0.3,0.5-0.5,1.1-0.7,1.7H-10v4h2.8
7
+ c0.2,0.6,0.4,1.2,0.7,1.7l-1.9,1.9l2.8,2.8l1.9-1.9c0.5,0.3,1.1,0.5,1.7,0.7v2.8h4v-2.8c0.6-0.2,1.2-0.4,1.7-0.7l1.9,1.9l2.8-2.8
8
+ l-1.9-1.9c0.3-0.5,0.5-1.1,0.7-1.7H10v-4H7.2C7-80.9,6.8-81.5,6.5-82l1.9-1.9l-2.8-2.8l-1.9,1.9c-0.5-0.3-1.1-0.5-1.7-0.7v-2.8H-2z
9
+ M-4.5-78.3c0-2.5,2-4.5,4.5-4.5s4.5,2,4.5,4.5s-2,4.5-4.5,4.5S-4.5-75.8-4.5-78.3z"/>
10
+ <path fill="#689B47" d="M1.5-48c-4.5,0-8.2,4-8.2,9H-10l4.9,7.2l4.9-7.2h-3.3c0-3,2.2-5.4,4.9-5.4S6.7-42,6.7-39s-2.2,5.4-4.9,5.4
11
+ v3.6c4.5,0,8.2-4,8.2-9S6.1-48,1.5-48z"/>
12
+ <path fill="#689B47" d="M7.4,118.8L10,116l-4-4l-2.8,2.6L7.4,118.8z M-10,127.7v4.3h4.1l12.1-11.9l-4.3-4.3L-10,127.7z M-6,130.7
13
+ h-2.7V128L-6,130.7z"/>
14
+ <polygon fill="#689B47" points="5,445.1 6.1,451.9 0,448.3 -6.1,451.9 -5.1,445.1 -10,439.8 -3.2,439.5 0,432 3.2,439.5 10,439.8
15
+ "/>
16
+ <polygon fill="#689B47" points="6,482 -4.4,472 -7,474.5 0.8,482 -7,489.5 -4.4,492 "/>
17
+ <polygon fill="#689B47" points="-2.6,10 10,-2.8 6.8,-6 -2.6,3.6 -6.8,-0.7 -10,2.5 "/>
18
+ <path fill="#689B47" d="M-7.9,172h3.1h9.2h3.1v-3.1v-4.6H4.4v4.6h-9.2v-4.6h-3.1v4.6L-7.9,172z M-1.8,166.6h3.1v-9l4.2,4.4l1.9-2
19
+ l-7.7-8l-7.7,8l1.9,2l4.2-4.4v9H-1.8z"/>
20
+ <g>
21
+ <rect x="-10" y="353" fill="#689B47" width="20" height="4"/>
22
+ <rect x="-10" y="360" fill="#689B47" width="20" height="4"/>
23
+ <rect x="-10" y="367" fill="#689B47" width="20" height="4"/>
24
+ </g>
25
+ <polygon fill="#689B47" points="10,-200.7 2.7,-200.7 2.7,-208 -2.7,-208 -2.7,-200.7 -10,-200.7 -10,-195.3 -2.7,-195.3 -2.7,-188
26
+ 2.7,-188 2.7,-195.3 10,-195.3 "/>
27
+ <path fill="#689B47" d="M10,89l-4.5-4.5c1.7-3.1,1.2-7.2-1.5-9.9c-3.3-3.3-8.5-3.3-11.7-0.2s-3.1,8.4,0.2,11.7
28
+ c2.7,2.7,6.7,3.2,9.9,1.5L7,92L10,89z M-5,83.5c-1.8-1.8-1.8-4.6-0.1-6.4s4.6-1.7,6.4,0.1c1.8,1.8,1.8,4.6,0.1,6.4S-3.2,85.2-5,83.5
29
+ z"/>
30
+ <g>
31
+ <polygon fill="#689B47" points="-0.8,556.3 -3,556.3 -3,559.3 -5.9,559.3 -5.9,561.4 -3,561.4 -3,564.3 -0.8,564.3 -0.8,561.4
32
+ 2.1,561.4 2.1,559.3 -0.8,559.3 "/>
33
+ <path fill="#689B47" d="M5.5,564.5c1.7-3.1,1.2-7.2-1.5-9.9c-3.3-3.3-8.5-3.3-11.6-0.2c-3.2,3.2-3.1,8.4,0.2,11.6
34
+ c2.7,2.7,6.7,3.2,9.9,1.5L7,572l3-3L5.5,564.5z M2.5,564.6c-2.3,2.3-6.1,2.3-8.5-0.1c-2.4-2.4-2.4-6.2-0.1-8.5
35
+ c2.3-2.3,6.1-2.3,8.5,0.1C4.8,558.5,4.8,562.3,2.5,564.6z"/>
36
+ </g>
37
+ <g>
38
+ <rect x="-5.9" y="599.3" fill="#689B47" width="8" height="2.2"/>
39
+ <path fill="#689B47" d="M5.5,604.5c1.7-3.1,1.2-7.2-1.5-9.9c-3.3-3.3-8.5-3.3-11.6-0.2c-3.2,3.2-3.1,8.4,0.2,11.6
40
+ c2.7,2.7,6.7,3.2,9.9,1.5L7,612l3-3L5.5,604.5z M2.5,604.6c-2.3,2.3-6.1,2.3-8.5-0.1c-2.4-2.4-2.4-6.2-0.1-8.5
41
+ c2.3-2.3,6.1-2.3,8.5,0.1C4.8,598.5,4.8,602.3,2.5,604.6z"/>
42
+ </g>
43
+ <polygon fill="#689B47" points="-7,512 7,522 -7,532 "/>
44
+ <path fill="#689B47" d="M-10,235v14h20v-14H-10z M8,245.6l-4.1-4.1l4.1-4.1V245.6z M0,245.4l2.5-2.5l4.1,4.1H-6.6l4.1-4.1L0,245.4z
45
+ M5.6,237L0,242.6l-5.6-5.6H5.6z M-3.9,241.5l-4.1,4.1v-8.2L-3.9,241.5z"/>
46
+ <polygon fill="#689B47" points="-10,403 -7,403 -7,411 -2,411 -2,405 2,405 2,411 7,411 7,403 10,403 0,392 "/>
47
+ <g>
48
+ <rect x="-10" y="192" fill="#689B47" width="5" height="5"/>
49
+ <rect x="-10" y="199.5" fill="#689B47" width="5" height="5"/>
50
+ <rect x="-10" y="207" fill="#689B47" width="5" height="5"/>
51
+ <rect x="-2.5" y="192" fill="#689B47" width="5" height="5"/>
52
+ <rect x="-2.5" y="199.5" fill="#689B47" width="5" height="5"/>
53
+ <rect x="-2.5" y="207" fill="#689B47" width="5" height="5"/>
54
+ <rect x="5" y="192" fill="#689B47" width="5" height="5"/>
55
+ <rect x="5" y="199.5" fill="#689B47" width="5" height="5"/>
56
+ <rect x="5" y="207" fill="#689B47" width="5" height="5"/>
57
+ </g>
58
+ <g>
59
+ <rect x="-10" y="273" fill="#689B47" width="5" height="4"/>
60
+ <rect x="-10" y="280" fill="#689B47" width="5" height="4"/>
61
+ <rect x="-10" y="287" fill="#689B47" width="5" height="4"/>
62
+ <rect x="-2.5" y="273" fill="#689B47" width="12.5" height="4"/>
63
+ <rect x="-2.5" y="280" fill="#689B47" width="12.5" height="4"/>
64
+ <rect x="-2.5" y="287" fill="#689B47" width="12.5" height="4"/>
65
+ </g>
66
+ <g>
67
+ <path fill="#689B47" d="M-9,32.2v20H9v-20H-9z M6,49.2H-6v-14H6V49.2z"/>
68
+ <rect x="-4" y="37.2" fill="#689B47" width="8" height="2"/>
69
+ <rect x="-4" y="41.2" fill="#689B47" width="8" height="2"/>
70
+ <rect x="-4" y="45.2" fill="#689B47" width="8" height="2"/>
71
+ </g>
72
+ <rect x="-10" y="-160.5" fill="#689B47" width="20" height="5.5"/>
73
+ <polygon fill="#689B47" points="10,-124.7 6.6,-128 0,-121.3 -6.7,-128 -10,-124.7 -3.4,-118 -10,-111.3 -6.7,-108 0,-114.7
74
+ 6.6,-108 10,-111.3 3.3,-118 "/>
75
+ <polygon fill="#689B47" points="-2,314 -10,314 -10,330 10,330 10,316 -1,316 "/>
76
+ <path fill="#689B47" d="M7.5,634.7v10H2H1.2l-0.9,0.5l-2.8,1.9v-2.4h-2h-3v-10H7.5 M10,632.2h-20v15h5v4.8l7-4.8h8V632.2L10,632.2z"
77
+ />
78
+ <path fill="#689B47" d="M0,672c-5.5,0-10,4.5-10,10c0,5.5,4.5,10,10,10s10-4.5,10-10C10,676.5,5.5,672,0,672z M3,677.1
79
+ c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2s-2-0.9-2-2C1,678,1.9,677.1,3,677.1z M-3,677.1c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2s-2-0.9-2-2
80
+ C-5,678-4.1,677.1-3,677.1z M0,689.1c-3.2,0-6-2.2-6.8-5.2h2.1c0.7,1.9,2.5,3.2,4.7,3.2s3.9-1.3,4.7-3.2h2.1
81
+ C6,686.9,3.2,689.1,0,689.1z"/>
82
+ <path fill="#689B47" d="M0,712c-5.5,0-10,4.5-10,10c0,5.5,4.5,10,10,10s10-4.5,10-10C10,716.5,5.5,712,0,712z M3,716.1
83
+ c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2s-2-0.9-2-2C1,717,1.9,716.1,3,716.1z M-3,716.1c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2s-2-0.9-2-2
84
+ C-5,717-4.1,716.1-3,716.1z M4.5,727.7c-0.8-1.7-2.5-2.9-4.5-2.9s-3.7,1.2-4.5,2.9c-0.6-0.4-1-0.9-1.5-1.5c1.2-2,3.4-3.3,5.9-3.3
85
+ s4.7,1.3,5.9,3.3C5.5,726.8,5,727.3,4.5,727.7z"/>
86
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#689B47" d="M10,752H-5v5h-5v15H5v-5h5V752z M2,769h-9v-9h9V769z M7,764H5v-7
87
+ h-7v-2h9V764z"/>
88
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#689B47" d="M5,800c0,0.1,0,0.2,0,0.3c0,3.3-2.5,7.2-7.2,7.2
89
+ c-1.4,0-2.8-0.4-3.9-1.1c0.2,0,0.4,0,0.6,0c1.2,0,2.3-0.4,3.1-1.1c-1.1,0-2-0.8-2.4-1.8c0.2,0,0.3,0,0.5,0c0.2,0,0.5,0,0.7-0.1
90
+ c-1.2-0.2-2-1.2-2-2.5v0c0.3,0.2,0.7,0.3,1.1,0.3c-0.7-0.5-1.1-1.2-1.1-2.1c0-0.5,0.1-0.9,0.3-1.3c1.2,1.5,3.1,2.5,5.2,2.6
91
+ c0-0.2-0.1-0.4-0.1-0.6c0-1.4,1.1-2.5,2.5-2.5c0.7,0,1.4,0.3,1.8,0.8c0.6-0.1,1.1-0.3,1.6-0.6c-0.2,0.6-0.6,1.1-1.1,1.4
92
+ c0.5-0.1,1-0.2,1.4-0.4C6,799.2,5.5,799.6,5,800z M0,792c-5.5,0-10,4.5-10,10c0,5.5,4.5,10,10,10s10-4.5,10-10
93
+ C10,796.5,5.5,792,0,792z"/>
94
+ <g>
95
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#689B47" d="M5.6,846.9c0,0.4-0.4,0.8-0.8,0.8h-9.5c-0.5,0-0.8-0.4-0.8-0.8
96
+ v-9.6c0-0.4,0.4-0.8,0.8-0.8h9.5c0.5,0,0.8,0.4,0.8,0.8V846.9z M0,832c-5.5,0-10,4.5-10,10s4.5,10,10,10s10-4.5,10-10
97
+ S5.5,832,0,832z"/>
98
+ <path fill="#689B47" d="M1.9,840.6c-0.9,0-1.3,0.5-1.5,0.8v0h0l0,0v-0.7h-1.7c0,0.5,0,5.1,0,5.1h1.7V843c0-0.2,0-0.3,0.1-0.4
99
+ c0.1-0.3,0.4-0.6,0.9-0.6c0.6,0,0.9,0.5,0.9,1.1v2.7h1.7v-2.9C3.9,841.4,3,840.6,1.9,840.6z"/>
100
+ <path fill="#689B47" d="M-3,838.3c-0.6,0-1,0.4-1,0.9c0,0.5,0.4,0.9,0.9,0.9h0c0.6,0,1-0.4,1-0.9C-2.1,838.7-2.5,838.3-3,838.3z"/>
101
+ <rect x="-3.9" y="840.8" fill="#689B47" width="1.7" height="5.1"/>
102
+ </g>
103
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#689B47" d="M2.6,882H0.9v6.2h-2.6V882h-1.2v-2.2h1.2v-1.4c0-1,0.5-2.6,2.6-2.6
104
+ l1.9,0v2.1H1.5c-0.2,0-0.5,0.1-0.5,0.6v1.3h2L2.6,882z M0,872c-5.5,0-10,4.5-10,10c0,5.5,4.5,10,10,10s10-4.5,10-10
105
+ C10,876.5,5.5,872,0,872z"/>
106
+ <g>
107
+ <path fill="#689B47" d="M0,919.5L0,919.5L0,919.5C0,919.5,0,919.5,0,919.5z"/>
108
+ <path fill="#689B47" d="M5.9,917H3.3c0,0,1.4,0.9,1.6,2.5h0.9h0c0.9,0,1.6,0.7,1.6,1.6v1.7c0,0.9-0.7,1.7-1.6,1.7H0
109
+ c-0.9,0-1.7-0.8-1.7-1.7v-1.6h-2.5v1.6c0,0.6,0.1,1.2,0.4,1.7C-3.2,926-1.7,927,0,927h5.8c2.3,0,4.1-1.9,4.1-4.2v-1.7
110
+ C10,918.8,8.2,917,5.9,917z"/>
111
+ <path fill="#689B47" d="M3.8,919.5C3.2,918,1.7,917,0,917h-5.8c-2.3,0-4.2,1.8-4.2,4.1v1.7c0,2.3,1.9,4.2,4.2,4.2h2.5
112
+ c0,0-1.3-0.9-1.7-2.5h-0.8c-0.9,0-1.7-0.8-1.7-1.7v-1.7c0-0.9,0.8-1.6,1.7-1.6H0h0c0.9,0,1.6,0.7,1.6,1.6v1.7c0,0,0,0,0,0h2.5
113
+ c0,0,0,0,0,0v-1.7C4.2,920.6,4,920,3.8,919.5z"/>
114
+ </g>
115
+ <g>
116
+ <rect x="-9.5" y="964.2" fill-rule="evenodd" clip-rule="evenodd" fill="#689B47" width="3" height="3"/>
117
+ <rect x="-5.5" y="964.2" fill-rule="evenodd" clip-rule="evenodd" fill="#689B47" width="3" height="3"/>
118
+ <rect x="-1.5" y="964.2" fill-rule="evenodd" clip-rule="evenodd" fill="#689B47" width="3" height="3"/>
119
+ <rect x="2.5" y="964.2" fill-rule="evenodd" clip-rule="evenodd" fill="#689B47" width="3" height="3"/>
120
+ <rect x="-5.5" y="960.2" fill-rule="evenodd" clip-rule="evenodd" fill="#689B47" width="3" height="3"/>
121
+ <rect x="-1.5" y="960.2" fill-rule="evenodd" clip-rule="evenodd" fill="#689B47" width="3" height="3"/>
122
+ <rect x="2.5" y="960.2" fill-rule="evenodd" clip-rule="evenodd" fill="#689B47" width="3" height="3"/>
123
+ <rect x="2.5" y="956.2" fill-rule="evenodd" clip-rule="evenodd" fill="#689B47" width="3" height="3"/>
124
+ <rect x="6.5" y="964.2" fill-rule="evenodd" clip-rule="evenodd" fill="#689B47" width="3" height="3"/>
125
+ </g>
126
+ <g>
127
+ <g>
128
+ <ellipse fill="#689B47" cx="-0.2" cy="994.5" rx="8.8" ry="2.5"/>
129
+ </g>
130
+ <path fill="#689B47" d="M-0.2,998.2c-0.8,0-6.3-0.1-8.8-1.7v3c0,1.4,3.9,2.5,8.8,2.5s8.8-1.1,8.8-2.5v-3
131
+ C6,998.2,0.5,998.2-0.2,998.2z"/>
132
+ <path fill="#689B47" d="M-0.2,1003.2c-0.8,0-6.3-0.1-8.8-1.7v3c0,1.4,3.9,2.5,8.8,2.5s8.8-1.1,8.8-2.5v-3
133
+ C6,1003.2,0.5,1003.2-0.2,1003.2z"/>
134
+ <path fill="#689B47" d="M-0.2,1008.2c-0.8,0-6.3-0.1-8.8-1.7v3c0,1.4,3.9,2.5,8.8,2.5s8.8-1.1,8.8-2.5v-3
135
+ C6,1008.2,0.5,1008.2-0.2,1008.2z"/>
136
+ </g>
137
+ <path fill="#689B47" d="M0,1033.8c-5.5,0-10,4.5-10,10v5h20v-5C10,1038.2,5.5,1033.8,0,1033.8z M-0.1,1036.2c0.7,0,1.2,0.6,1.2,1.2
138
+ c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.6,0.4-0.9,0.4h0c-0.7,0-1.2-0.5-1.2-1.2C-1.3,1036.8-0.8,1036.2-0.1,1036.2z M-7.4,1045.4
139
+ L-7.4,1045.4c-0.5,0-0.8-0.2-1-0.5c-0.2-0.3-0.3-0.6-0.3-0.9c0.1-0.6,0.6-1.1,1.2-1.1l0.1,0c0.3,0,0.6,0.2,0.8,0.5
140
+ c0.2,0.3,0.3,0.6,0.3,0.9C-6.3,1044.9-6.8,1045.4-7.4,1045.4z M-5.2,1041.5c-0.3,0.4-0.6,0.6-1,0.6c-0.3,0-0.5-0.1-0.7-0.2
141
+ c-0.2-0.2-0.4-0.4-0.5-0.8c-0.1-0.3,0-0.7,0.2-0.9c0.4-0.6,1.2-0.7,1.7-0.3C-4.9,1040.2-4.8,1040.9-5.2,1041.5z M-3,1039.5
142
+ c-0.2,0.1-0.4,0.2-0.6,0.2c-0.5,0-0.9-0.3-1.1-0.6c-0.3-0.6-0.1-1.4,0.5-1.7c0.6-0.3,1.4-0.1,1.7,0.5
143
+ C-2.1,1038.4-2.3,1039.2-3,1039.5z M0,1048.1c-1,0-1.9-0.8-1.9-1.9c0-1,0.8-1.9,1.9-1.9s1.9,0.8,1.9,1.9
144
+ C1.9,1047.3,1,1048.1,0,1048.1z M3.8,1038.7l-1.9,5.9c-0.5-0.5-1.1-0.9-1.9-0.9c-0.1,0-0.2,0-0.3,0l3-5.5c0.3-0.6,0.8-1,1.1-0.9
145
+ C4,1037.5,4,1038.1,3.8,1038.7z M5.1,1041.4c-0.2-0.3-0.3-0.6-0.2-0.9c0.1-0.3,0.2-0.6,0.5-0.8c0.6-0.4,1.4-0.2,1.7,0.3
146
+ c0.2,0.3,0.3,0.6,0.2,0.9c-0.1,0.3-0.2,0.6-0.5,0.8c-0.2,0.2-0.5,0.2-0.7,0.2C5.7,1041.9,5.3,1041.7,5.1,1041.4z M8.1,1045.4
147
+ c-0.2,0.2-0.5,0.2-0.7,0.2c-0.4,0-0.8-0.2-1-0.5c-0.2-0.3-0.3-0.6-0.2-0.9c0.1-0.3,0.2-0.6,0.5-0.8c0.6-0.4,1.4-0.2,1.7,0.3
148
+ c0.2,0.3,0.3,0.6,0.2,0.9C8.6,1044.9,8.4,1045.2,8.1,1045.4z"/>
149
+ <polygon fill="#689B47" points="0,1088.5 10,1078.1 7.5,1075.5 0,1083.3 -7.5,1075.5 -10,1078.1 "/>
150
+ <polygon fill="#689B47" points="10,1115 0,1129 -10,1115 "/>
151
+ <polygon fill="#689B47" points="0,1235.5 10,1245.9 7.5,1248.5 0,1240.7 -7.5,1248.5 -10,1245.9 "/>
152
+ <polygon fill="#689B47" points="10,1289 0,1275 -10,1289 "/>
153
+ <polygon fill="#689B47" points="-7.5,1162 2.9,1172 5.5,1169.5 -2.3,1162 5.5,1154.5 2.9,1152 "/>
154
+ <polygon fill="#689B47" points="6,1212 -8,1202 6,1192 "/>
155
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#689B47" d="M0,1312.2c-5.5,0-10,4.5-10,10c0,4.4,2.9,8.2,6.8,9.5
156
+ c0.5,0.1,0.7-0.2,0.7-0.5c0-0.2,0-0.9,0-1.7c-2.8,0.6-3.4-1.3-3.4-1.3c-0.5-1.2-1.1-1.5-1.1-1.5c-0.9-0.6,0.1-0.6,0.1-0.6
157
+ c1,0.1,1.5,1,1.5,1c0.9,1.5,2.3,1.1,2.9,0.8c0.1-0.6,0.3-1.1,0.6-1.3c-2.2-0.3-4.6-1.1-4.6-4.9c0-1.1,0.4-2,1-2.7
158
+ c-0.1-0.3-0.4-1.3,0.1-2.6c0,0,0.8-0.3,2.7,1c0.8-0.2,1.7-0.3,2.5-0.3c0.8,0,1.7,0.1,2.5,0.3c1.9-1.3,2.7-1,2.7-1
159
+ c0.5,1.4,0.2,2.4,0.1,2.6c0.6,0.7,1,1.6,1,2.7c0,3.8-2.3,4.7-4.6,4.9c0.4,0.3,0.7,0.9,0.7,1.9c0,1.3,0,2.4,0,2.7
160
+ c0,0.3,0.2,0.6,0.7,0.5c4-1.3,6.8-5.1,6.8-9.5C10,1316.7,5.5,1312.2,0,1312.2z"/>
161
+ </svg>
@@ -0,0 +1,161 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="-10 -208 20 2000" enable-background="new -10 -208 20 2000" xml:space="preserve">
6
+ <path fill="#229FE5" d="M-2-88.3v2.8c-0.6,0.2-1.2,0.4-1.7,0.7l-1.9-1.9l-2.8,2.8l1.9,1.9c-0.3,0.5-0.5,1.1-0.7,1.7H-10v4h2.8
7
+ c0.2,0.6,0.4,1.2,0.7,1.7l-1.9,1.9l2.8,2.8l1.9-1.9c0.5,0.3,1.1,0.5,1.7,0.7v2.8h4v-2.8c0.6-0.2,1.2-0.4,1.7-0.7l1.9,1.9l2.8-2.8
8
+ l-1.9-1.9c0.3-0.5,0.5-1.1,0.7-1.7H10v-4H7.2C7-80.9,6.8-81.5,6.5-82l1.9-1.9l-2.8-2.8l-1.9,1.9c-0.5-0.3-1.1-0.5-1.7-0.7v-2.8H-2z
9
+ M-4.5-78.3c0-2.5,2-4.5,4.5-4.5s4.5,2,4.5,4.5s-2,4.5-4.5,4.5S-4.5-75.8-4.5-78.3z"/>
10
+ <path fill="#229FE5" d="M1.5-48c-4.5,0-8.2,4-8.2,9H-10l4.9,7.2l4.9-7.2h-3.3c0-3,2.2-5.4,4.9-5.4S6.7-42,6.7-39s-2.2,5.4-4.9,5.4
11
+ v3.6c4.5,0,8.2-4,8.2-9S6.1-48,1.5-48z"/>
12
+ <path fill="#229FE5" d="M7.4,118.8L10,116l-4-4l-2.8,2.6L7.4,118.8z M-10,127.7v4.3h4.1l12.1-11.9l-4.3-4.3L-10,127.7z M-6,130.7
13
+ h-2.7V128L-6,130.7z"/>
14
+ <polygon fill="#229FE5" points="5,445.1 6.1,451.9 0,448.3 -6.1,451.9 -5.1,445.1 -10,439.8 -3.2,439.5 0,432 3.2,439.5 10,439.8
15
+ "/>
16
+ <polygon fill="#229FE5" points="6,482 -4.4,472 -7,474.5 0.8,482 -7,489.5 -4.4,492 "/>
17
+ <polygon fill="#229FE5" points="-2.6,10 10,-2.8 6.8,-6 -2.6,3.6 -6.8,-0.7 -10,2.5 "/>
18
+ <path fill="#229FE5" d="M-7.9,172h3.1h9.2h3.1v-3.1v-4.6H4.4v4.6h-9.2v-4.6h-3.1v4.6L-7.9,172z M-1.8,166.6h3.1v-9l4.2,4.4l1.9-2
19
+ l-7.7-8l-7.7,8l1.9,2l4.2-4.4v9H-1.8z"/>
20
+ <g>
21
+ <rect x="-10" y="353" fill="#229FE5" width="20" height="4"/>
22
+ <rect x="-10" y="360" fill="#229FE5" width="20" height="4"/>
23
+ <rect x="-10" y="367" fill="#229FE5" width="20" height="4"/>
24
+ </g>
25
+ <polygon fill="#229FE5" points="10,-200.7 2.7,-200.7 2.7,-208 -2.7,-208 -2.7,-200.7 -10,-200.7 -10,-195.3 -2.7,-195.3 -2.7,-188
26
+ 2.7,-188 2.7,-195.3 10,-195.3 "/>
27
+ <path fill="#229FE5" d="M10,89l-4.5-4.5c1.7-3.1,1.2-7.2-1.5-9.9c-3.3-3.3-8.5-3.3-11.7-0.2s-3.1,8.4,0.2,11.7
28
+ c2.7,2.7,6.7,3.2,9.9,1.5L7,92L10,89z M-5,83.5c-1.8-1.8-1.8-4.6-0.1-6.4s4.6-1.7,6.4,0.1c1.8,1.8,1.8,4.6,0.1,6.4S-3.2,85.2-5,83.5
29
+ z"/>
30
+ <g>
31
+ <polygon fill="#229FE5" points="-0.8,556.3 -3,556.3 -3,559.3 -5.9,559.3 -5.9,561.4 -3,561.4 -3,564.3 -0.8,564.3 -0.8,561.4
32
+ 2.1,561.4 2.1,559.3 -0.8,559.3 "/>
33
+ <path fill="#229FE5" d="M5.5,564.5c1.7-3.1,1.2-7.2-1.5-9.9c-3.3-3.3-8.5-3.3-11.6-0.2c-3.2,3.2-3.1,8.4,0.2,11.6
34
+ c2.7,2.7,6.7,3.2,9.9,1.5L7,572l3-3L5.5,564.5z M2.5,564.6c-2.3,2.3-6.1,2.3-8.5-0.1c-2.4-2.4-2.4-6.2-0.1-8.5
35
+ c2.3-2.3,6.1-2.3,8.5,0.1C4.8,558.5,4.8,562.3,2.5,564.6z"/>
36
+ </g>
37
+ <g>
38
+ <rect x="-5.9" y="599.3" fill="#229FE5" width="8" height="2.2"/>
39
+ <path fill="#229FE5" d="M5.5,604.5c1.7-3.1,1.2-7.2-1.5-9.9c-3.3-3.3-8.5-3.3-11.6-0.2c-3.2,3.2-3.1,8.4,0.2,11.6
40
+ c2.7,2.7,6.7,3.2,9.9,1.5L7,612l3-3L5.5,604.5z M2.5,604.6c-2.3,2.3-6.1,2.3-8.5-0.1c-2.4-2.4-2.4-6.2-0.1-8.5
41
+ c2.3-2.3,6.1-2.3,8.5,0.1C4.8,598.5,4.8,602.3,2.5,604.6z"/>
42
+ </g>
43
+ <polygon fill="#229FE5" points="-7,512 7,522 -7,532 "/>
44
+ <path fill="#229FE5" d="M-10,235v14h20v-14H-10z M8,245.6l-4.1-4.1l4.1-4.1V245.6z M0,245.4l2.5-2.5l4.1,4.1H-6.6l4.1-4.1L0,245.4z
45
+ M5.6,237L0,242.6l-5.6-5.6H5.6z M-3.9,241.5l-4.1,4.1v-8.2L-3.9,241.5z"/>
46
+ <polygon fill="#229FE5" points="-10,403 -7,403 -7,411 -2,411 -2,405 2,405 2,411 7,411 7,403 10,403 0,392 "/>
47
+ <g>
48
+ <rect x="-10" y="192" fill="#229FE5" width="5" height="5"/>
49
+ <rect x="-10" y="199.5" fill="#229FE5" width="5" height="5"/>
50
+ <rect x="-10" y="207" fill="#229FE5" width="5" height="5"/>
51
+ <rect x="-2.5" y="192" fill="#229FE5" width="5" height="5"/>
52
+ <rect x="-2.5" y="199.5" fill="#229FE5" width="5" height="5"/>
53
+ <rect x="-2.5" y="207" fill="#229FE5" width="5" height="5"/>
54
+ <rect x="5" y="192" fill="#229FE5" width="5" height="5"/>
55
+ <rect x="5" y="199.5" fill="#229FE5" width="5" height="5"/>
56
+ <rect x="5" y="207" fill="#229FE5" width="5" height="5"/>
57
+ </g>
58
+ <g>
59
+ <rect x="-10" y="273" fill="#229FE5" width="5" height="4"/>
60
+ <rect x="-10" y="280" fill="#229FE5" width="5" height="4"/>
61
+ <rect x="-10" y="287" fill="#229FE5" width="5" height="4"/>
62
+ <rect x="-2.5" y="273" fill="#229FE5" width="12.5" height="4"/>
63
+ <rect x="-2.5" y="280" fill="#229FE5" width="12.5" height="4"/>
64
+ <rect x="-2.5" y="287" fill="#229FE5" width="12.5" height="4"/>
65
+ </g>
66
+ <g>
67
+ <path fill="#229FE5" d="M-9,32.2v20H9v-20H-9z M6,49.2H-6v-14H6V49.2z"/>
68
+ <rect x="-4" y="37.2" fill="#229FE5" width="8" height="2"/>
69
+ <rect x="-4" y="41.2" fill="#229FE5" width="8" height="2"/>
70
+ <rect x="-4" y="45.2" fill="#229FE5" width="8" height="2"/>
71
+ </g>
72
+ <rect x="-10" y="-160.5" fill="#229FE5" width="20" height="5.5"/>
73
+ <polygon fill="#229FE5" points="10,-124.7 6.6,-128 0,-121.3 -6.7,-128 -10,-124.7 -3.4,-118 -10,-111.3 -6.7,-108 0,-114.7
74
+ 6.6,-108 10,-111.3 3.3,-118 "/>
75
+ <polygon fill="#229FE5" points="-2,314 -10,314 -10,330 10,330 10,316 -1,316 "/>
76
+ <path fill="#229FE5" d="M7.5,634.7v10H2H1.2l-0.9,0.5l-2.8,1.9v-2.4h-2h-3v-10H7.5 M10,632.2h-20v15h5v4.8l7-4.8h8V632.2L10,632.2z"
77
+ />
78
+ <path fill="#229FE5" d="M0,672c-5.5,0-10,4.5-10,10c0,5.5,4.5,10,10,10s10-4.5,10-10C10,676.5,5.5,672,0,672z M3,677.1
79
+ c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2s-2-0.9-2-2C1,678,1.9,677.1,3,677.1z M-3,677.1c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2s-2-0.9-2-2
80
+ C-5,678-4.1,677.1-3,677.1z M0,689.1c-3.2,0-6-2.2-6.8-5.2h2.1c0.7,1.9,2.5,3.2,4.7,3.2s3.9-1.3,4.7-3.2h2.1
81
+ C6,686.9,3.2,689.1,0,689.1z"/>
82
+ <path fill="#229FE5" d="M0,712c-5.5,0-10,4.5-10,10c0,5.5,4.5,10,10,10s10-4.5,10-10C10,716.5,5.5,712,0,712z M3,716.1
83
+ c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2s-2-0.9-2-2C1,717,1.9,716.1,3,716.1z M-3,716.1c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2s-2-0.9-2-2
84
+ C-5,717-4.1,716.1-3,716.1z M4.5,727.7c-0.8-1.7-2.5-2.9-4.5-2.9s-3.7,1.2-4.5,2.9c-0.6-0.4-1-0.9-1.5-1.5c1.2-2,3.4-3.3,5.9-3.3
85
+ s4.7,1.3,5.9,3.3C5.5,726.8,5,727.3,4.5,727.7z"/>
86
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#229FE5" d="M10,752H-5v5h-5v15H5v-5h5V752z M2,769h-9v-9h9V769z M7,764H5v-7
87
+ h-7v-2h9V764z"/>
88
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#229FE5" d="M5,800c0,0.1,0,0.2,0,0.3c0,3.3-2.5,7.2-7.2,7.2
89
+ c-1.4,0-2.8-0.4-3.9-1.1c0.2,0,0.4,0,0.6,0c1.2,0,2.3-0.4,3.1-1.1c-1.1,0-2-0.8-2.4-1.8c0.2,0,0.3,0,0.5,0c0.2,0,0.5,0,0.7-0.1
90
+ c-1.2-0.2-2-1.2-2-2.5v0c0.3,0.2,0.7,0.3,1.1,0.3c-0.7-0.5-1.1-1.2-1.1-2.1c0-0.5,0.1-0.9,0.3-1.3c1.2,1.5,3.1,2.5,5.2,2.6
91
+ c0-0.2-0.1-0.4-0.1-0.6c0-1.4,1.1-2.5,2.5-2.5c0.7,0,1.4,0.3,1.8,0.8c0.6-0.1,1.1-0.3,1.6-0.6c-0.2,0.6-0.6,1.1-1.1,1.4
92
+ c0.5-0.1,1-0.2,1.4-0.4C6,799.2,5.5,799.6,5,800z M0,792c-5.5,0-10,4.5-10,10c0,5.5,4.5,10,10,10s10-4.5,10-10
93
+ C10,796.5,5.5,792,0,792z"/>
94
+ <g>
95
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#229FE5" d="M5.6,846.9c0,0.4-0.4,0.8-0.8,0.8h-9.5c-0.5,0-0.8-0.4-0.8-0.8
96
+ v-9.6c0-0.4,0.4-0.8,0.8-0.8h9.5c0.5,0,0.8,0.4,0.8,0.8V846.9z M0,832c-5.5,0-10,4.5-10,10s4.5,10,10,10s10-4.5,10-10
97
+ S5.5,832,0,832z"/>
98
+ <path fill="#229FE5" d="M1.9,840.6c-0.9,0-1.3,0.5-1.5,0.8v0h0l0,0v-0.7h-1.7c0,0.5,0,5.1,0,5.1h1.7V843c0-0.2,0-0.3,0.1-0.4
99
+ c0.1-0.3,0.4-0.6,0.9-0.6c0.6,0,0.9,0.5,0.9,1.1v2.7h1.7v-2.9C3.9,841.4,3,840.6,1.9,840.6z"/>
100
+ <path fill="#229FE5" d="M-3,838.3c-0.6,0-1,0.4-1,0.9c0,0.5,0.4,0.9,0.9,0.9h0c0.6,0,1-0.4,1-0.9C-2.1,838.7-2.5,838.3-3,838.3z"/>
101
+ <rect x="-3.9" y="840.8" fill="#229FE5" width="1.7" height="5.1"/>
102
+ </g>
103
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#229FE5" d="M2.6,882H0.9v6.2h-2.6V882h-1.2v-2.2h1.2v-1.4c0-1,0.5-2.6,2.6-2.6
104
+ l1.9,0v2.1H1.5c-0.2,0-0.5,0.1-0.5,0.6v1.3h2L2.6,882z M0,872c-5.5,0-10,4.5-10,10c0,5.5,4.5,10,10,10s10-4.5,10-10
105
+ C10,876.5,5.5,872,0,872z"/>
106
+ <g>
107
+ <path fill="#229FE5" d="M0,919.5L0,919.5L0,919.5C0,919.5,0,919.5,0,919.5z"/>
108
+ <path fill="#229FE5" d="M5.9,917H3.3c0,0,1.4,0.9,1.6,2.5h0.9h0c0.9,0,1.6,0.7,1.6,1.6v1.7c0,0.9-0.7,1.7-1.6,1.7H0
109
+ c-0.9,0-1.7-0.8-1.7-1.7v-1.6h-2.5v1.6c0,0.6,0.1,1.2,0.4,1.7C-3.2,926-1.7,927,0,927h5.8c2.3,0,4.1-1.9,4.1-4.2v-1.7
110
+ C10,918.8,8.2,917,5.9,917z"/>
111
+ <path fill="#229FE5" d="M3.8,919.5C3.2,918,1.7,917,0,917h-5.8c-2.3,0-4.2,1.8-4.2,4.1v1.7c0,2.3,1.9,4.2,4.2,4.2h2.5
112
+ c0,0-1.3-0.9-1.7-2.5h-0.8c-0.9,0-1.7-0.8-1.7-1.7v-1.7c0-0.9,0.8-1.6,1.7-1.6H0h0c0.9,0,1.6,0.7,1.6,1.6v1.7c0,0,0,0,0,0h2.5
113
+ c0,0,0,0,0,0v-1.7C4.2,920.6,4,920,3.8,919.5z"/>
114
+ </g>
115
+ <g>
116
+ <rect x="-9.5" y="964.2" fill-rule="evenodd" clip-rule="evenodd" fill="#229FE5" width="3" height="3"/>
117
+ <rect x="-5.5" y="964.2" fill-rule="evenodd" clip-rule="evenodd" fill="#229FE5" width="3" height="3"/>
118
+ <rect x="-1.5" y="964.2" fill-rule="evenodd" clip-rule="evenodd" fill="#229FE5" width="3" height="3"/>
119
+ <rect x="2.5" y="964.2" fill-rule="evenodd" clip-rule="evenodd" fill="#229FE5" width="3" height="3"/>
120
+ <rect x="-5.5" y="960.2" fill-rule="evenodd" clip-rule="evenodd" fill="#229FE5" width="3" height="3"/>
121
+ <rect x="-1.5" y="960.2" fill-rule="evenodd" clip-rule="evenodd" fill="#229FE5" width="3" height="3"/>
122
+ <rect x="2.5" y="960.2" fill-rule="evenodd" clip-rule="evenodd" fill="#229FE5" width="3" height="3"/>
123
+ <rect x="2.5" y="956.2" fill-rule="evenodd" clip-rule="evenodd" fill="#229FE5" width="3" height="3"/>
124
+ <rect x="6.5" y="964.2" fill-rule="evenodd" clip-rule="evenodd" fill="#229FE5" width="3" height="3"/>
125
+ </g>
126
+ <g>
127
+ <g>
128
+ <ellipse fill="#229FE5" cx="-0.2" cy="994.5" rx="8.8" ry="2.5"/>
129
+ </g>
130
+ <path fill="#229FE5" d="M-0.2,998.2c-0.8,0-6.3-0.1-8.8-1.7v3c0,1.4,3.9,2.5,8.8,2.5s8.8-1.1,8.8-2.5v-3
131
+ C6,998.2,0.5,998.2-0.2,998.2z"/>
132
+ <path fill="#229FE5" d="M-0.2,1003.2c-0.8,0-6.3-0.1-8.8-1.7v3c0,1.4,3.9,2.5,8.8,2.5s8.8-1.1,8.8-2.5v-3
133
+ C6,1003.2,0.5,1003.2-0.2,1003.2z"/>
134
+ <path fill="#229FE5" d="M-0.2,1008.2c-0.8,0-6.3-0.1-8.8-1.7v3c0,1.4,3.9,2.5,8.8,2.5s8.8-1.1,8.8-2.5v-3
135
+ C6,1008.2,0.5,1008.2-0.2,1008.2z"/>
136
+ </g>
137
+ <path fill="#229FE5" d="M0,1033.8c-5.5,0-10,4.5-10,10v5h20v-5C10,1038.2,5.5,1033.8,0,1033.8z M-0.1,1036.2c0.7,0,1.2,0.6,1.2,1.2
138
+ c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.6,0.4-0.9,0.4h0c-0.7,0-1.2-0.5-1.2-1.2C-1.3,1036.8-0.8,1036.2-0.1,1036.2z M-7.4,1045.4
139
+ L-7.4,1045.4c-0.5,0-0.8-0.2-1-0.5c-0.2-0.3-0.3-0.6-0.3-0.9c0.1-0.6,0.6-1.1,1.2-1.1l0.1,0c0.3,0,0.6,0.2,0.8,0.5
140
+ c0.2,0.3,0.3,0.6,0.3,0.9C-6.3,1044.9-6.8,1045.4-7.4,1045.4z M-5.2,1041.5c-0.3,0.4-0.6,0.6-1,0.6c-0.3,0-0.5-0.1-0.7-0.2
141
+ c-0.2-0.2-0.4-0.4-0.5-0.8c-0.1-0.3,0-0.7,0.2-0.9c0.4-0.6,1.2-0.7,1.7-0.3C-4.9,1040.2-4.8,1040.9-5.2,1041.5z M-3,1039.5
142
+ c-0.2,0.1-0.4,0.2-0.6,0.2c-0.5,0-0.9-0.3-1.1-0.6c-0.3-0.6-0.1-1.4,0.5-1.7c0.6-0.3,1.4-0.1,1.7,0.5
143
+ C-2.1,1038.4-2.3,1039.2-3,1039.5z M0,1048.1c-1,0-1.9-0.8-1.9-1.9c0-1,0.8-1.9,1.9-1.9s1.9,0.8,1.9,1.9
144
+ C1.9,1047.3,1,1048.1,0,1048.1z M3.8,1038.7l-1.9,5.9c-0.5-0.5-1.1-0.9-1.9-0.9c-0.1,0-0.2,0-0.3,0l3-5.5c0.3-0.6,0.8-1,1.1-0.9
145
+ C4,1037.5,4,1038.1,3.8,1038.7z M5.1,1041.4c-0.2-0.3-0.3-0.6-0.2-0.9c0.1-0.3,0.2-0.6,0.5-0.8c0.6-0.4,1.4-0.2,1.7,0.3
146
+ c0.2,0.3,0.3,0.6,0.2,0.9c-0.1,0.3-0.2,0.6-0.5,0.8c-0.2,0.2-0.5,0.2-0.7,0.2C5.7,1041.9,5.3,1041.7,5.1,1041.4z M8.1,1045.4
147
+ c-0.2,0.2-0.5,0.2-0.7,0.2c-0.4,0-0.8-0.2-1-0.5c-0.2-0.3-0.3-0.6-0.2-0.9c0.1-0.3,0.2-0.6,0.5-0.8c0.6-0.4,1.4-0.2,1.7,0.3
148
+ c0.2,0.3,0.3,0.6,0.2,0.9C8.6,1044.9,8.4,1045.2,8.1,1045.4z"/>
149
+ <polygon fill="#229FE5" points="0,1088.5 10,1078.1 7.5,1075.5 0,1083.3 -7.5,1075.5 -10,1078.1 "/>
150
+ <polygon fill="#229FE5" points="10,1115 0,1129 -10,1115 "/>
151
+ <polygon fill="#229FE5" points="0,1235.5 10,1245.9 7.5,1248.5 0,1240.7 -7.5,1248.5 -10,1245.9 "/>
152
+ <polygon fill="#229FE5" points="10,1289 0,1275 -10,1289 "/>
153
+ <polygon fill="#229FE5" points="-7.5,1162 2.9,1172 5.5,1169.5 -2.3,1162 5.5,1154.5 2.9,1152 "/>
154
+ <polygon fill="#229FE5" points="6,1212 -8,1202 6,1192 "/>
155
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#229FE5" d="M0,1312.2c-5.5,0-10,4.5-10,10c0,4.4,2.9,8.2,6.8,9.5
156
+ c0.5,0.1,0.7-0.2,0.7-0.5c0-0.2,0-0.9,0-1.7c-2.8,0.6-3.4-1.3-3.4-1.3c-0.5-1.2-1.1-1.5-1.1-1.5c-0.9-0.6,0.1-0.6,0.1-0.6
157
+ c1,0.1,1.5,1,1.5,1c0.9,1.5,2.3,1.1,2.9,0.8c0.1-0.6,0.3-1.1,0.6-1.3c-2.2-0.3-4.6-1.1-4.6-4.9c0-1.1,0.4-2,1-2.7
158
+ c-0.1-0.3-0.4-1.3,0.1-2.6c0,0,0.8-0.3,2.7,1c0.8-0.2,1.7-0.3,2.5-0.3c0.8,0,1.7,0.1,2.5,0.3c1.9-1.3,2.7-1,2.7-1
159
+ c0.5,1.4,0.2,2.4,0.1,2.6c0.6,0.7,1,1.6,1,2.7c0,3.8-2.3,4.7-4.6,4.9c0.4,0.3,0.7,0.9,0.7,1.9c0,1.3,0,2.4,0,2.7
160
+ c0,0.3,0.2,0.6,0.7,0.5c4-1.3,6.8-5.1,6.8-9.5C10,1316.7,5.5,1312.2,0,1312.2z"/>
161
+ </svg>
@@ -0,0 +1,161 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="-10 -208 20 2000" enable-background="new -10 -208 20 2000" xml:space="preserve">
6
+ <path fill="#83BB42" d="M-2-88.3v2.8c-0.6,0.2-1.2,0.4-1.7,0.7l-1.9-1.9l-2.8,2.8l1.9,1.9c-0.3,0.5-0.5,1.1-0.7,1.7H-10v4h2.8
7
+ c0.2,0.6,0.4,1.2,0.7,1.7l-1.9,1.9l2.8,2.8l1.9-1.9c0.5,0.3,1.1,0.5,1.7,0.7v2.8h4v-2.8c0.6-0.2,1.2-0.4,1.7-0.7l1.9,1.9l2.8-2.8
8
+ l-1.9-1.9c0.3-0.5,0.5-1.1,0.7-1.7H10v-4H7.2C7-80.9,6.8-81.5,6.5-82l1.9-1.9l-2.8-2.8l-1.9,1.9c-0.5-0.3-1.1-0.5-1.7-0.7v-2.8H-2z
9
+ M-4.5-78.3c0-2.5,2-4.5,4.5-4.5s4.5,2,4.5,4.5s-2,4.5-4.5,4.5S-4.5-75.8-4.5-78.3z"/>
10
+ <path fill="#83BB42" d="M1.5-48c-4.5,0-8.2,4-8.2,9H-10l4.9,7.2l4.9-7.2h-3.3c0-3,2.2-5.4,4.9-5.4S6.7-42,6.7-39s-2.2,5.4-4.9,5.4
11
+ v3.6c4.5,0,8.2-4,8.2-9S6.1-48,1.5-48z"/>
12
+ <path fill="#83BB42" d="M7.4,118.8L10,116l-4-4l-2.8,2.6L7.4,118.8z M-10,127.7v4.3h4.1l12.1-11.9l-4.3-4.3L-10,127.7z M-6,130.7
13
+ h-2.7V128L-6,130.7z"/>
14
+ <polygon fill="#83BB42" points="5,445.1 6.1,451.9 0,448.3 -6.1,451.9 -5.1,445.1 -10,439.8 -3.2,439.5 0,432 3.2,439.5 10,439.8
15
+ "/>
16
+ <polygon fill="#83BB42" points="6,482 -4.4,472 -7,474.5 0.8,482 -7,489.5 -4.4,492 "/>
17
+ <polygon fill="#83BB42" points="-2.6,10 10,-2.8 6.8,-6 -2.6,3.6 -6.8,-0.7 -10,2.5 "/>
18
+ <path fill="#83BB42" d="M-7.9,172h3.1h9.2h3.1v-3.1v-4.6H4.4v4.6h-9.2v-4.6h-3.1v4.6L-7.9,172z M-1.8,166.6h3.1v-9l4.2,4.4l1.9-2
19
+ l-7.7-8l-7.7,8l1.9,2l4.2-4.4v9H-1.8z"/>
20
+ <g>
21
+ <rect x="-10" y="353" fill="#83BB42" width="20" height="4"/>
22
+ <rect x="-10" y="360" fill="#83BB42" width="20" height="4"/>
23
+ <rect x="-10" y="367" fill="#83BB42" width="20" height="4"/>
24
+ </g>
25
+ <polygon fill="#83BB42" points="10,-200.7 2.7,-200.7 2.7,-208 -2.7,-208 -2.7,-200.7 -10,-200.7 -10,-195.3 -2.7,-195.3 -2.7,-188
26
+ 2.7,-188 2.7,-195.3 10,-195.3 "/>
27
+ <path fill="#83BB42" d="M10,89l-4.5-4.5c1.7-3.1,1.2-7.2-1.5-9.9c-3.3-3.3-8.5-3.3-11.7-0.2s-3.1,8.4,0.2,11.7
28
+ c2.7,2.7,6.7,3.2,9.9,1.5L7,92L10,89z M-5,83.5c-1.8-1.8-1.8-4.6-0.1-6.4s4.6-1.7,6.4,0.1c1.8,1.8,1.8,4.6,0.1,6.4S-3.2,85.2-5,83.5
29
+ z"/>
30
+ <g>
31
+ <polygon fill="#83BB42" points="-0.8,556.3 -3,556.3 -3,559.3 -5.9,559.3 -5.9,561.4 -3,561.4 -3,564.3 -0.8,564.3 -0.8,561.4
32
+ 2.1,561.4 2.1,559.3 -0.8,559.3 "/>
33
+ <path fill="#83BB42" d="M5.5,564.5c1.7-3.1,1.2-7.2-1.5-9.9c-3.3-3.3-8.5-3.3-11.6-0.2c-3.2,3.2-3.1,8.4,0.2,11.6
34
+ c2.7,2.7,6.7,3.2,9.9,1.5L7,572l3-3L5.5,564.5z M2.5,564.6c-2.3,2.3-6.1,2.3-8.5-0.1c-2.4-2.4-2.4-6.2-0.1-8.5
35
+ c2.3-2.3,6.1-2.3,8.5,0.1C4.8,558.5,4.8,562.3,2.5,564.6z"/>
36
+ </g>
37
+ <g>
38
+ <rect x="-5.9" y="599.3" fill="#83BB42" width="8" height="2.2"/>
39
+ <path fill="#83BB42" d="M5.5,604.5c1.7-3.1,1.2-7.2-1.5-9.9c-3.3-3.3-8.5-3.3-11.6-0.2c-3.2,3.2-3.1,8.4,0.2,11.6
40
+ c2.7,2.7,6.7,3.2,9.9,1.5L7,612l3-3L5.5,604.5z M2.5,604.6c-2.3,2.3-6.1,2.3-8.5-0.1c-2.4-2.4-2.4-6.2-0.1-8.5
41
+ c2.3-2.3,6.1-2.3,8.5,0.1C4.8,598.5,4.8,602.3,2.5,604.6z"/>
42
+ </g>
43
+ <polygon fill="#83BB42" points="-7,512 7,522 -7,532 "/>
44
+ <path fill="#83BB42" d="M-10,235v14h20v-14H-10z M8,245.6l-4.1-4.1l4.1-4.1V245.6z M0,245.4l2.5-2.5l4.1,4.1H-6.6l4.1-4.1L0,245.4z
45
+ M5.6,237L0,242.6l-5.6-5.6H5.6z M-3.9,241.5l-4.1,4.1v-8.2L-3.9,241.5z"/>
46
+ <polygon fill="#83BB42" points="-10,403 -7,403 -7,411 -2,411 -2,405 2,405 2,411 7,411 7,403 10,403 0,392 "/>
47
+ <g>
48
+ <rect x="-10" y="192" fill="#83BB42" width="5" height="5"/>
49
+ <rect x="-10" y="199.5" fill="#83BB42" width="5" height="5"/>
50
+ <rect x="-10" y="207" fill="#83BB42" width="5" height="5"/>
51
+ <rect x="-2.5" y="192" fill="#83BB42" width="5" height="5"/>
52
+ <rect x="-2.5" y="199.5" fill="#83BB42" width="5" height="5"/>
53
+ <rect x="-2.5" y="207" fill="#83BB42" width="5" height="5"/>
54
+ <rect x="5" y="192" fill="#83BB42" width="5" height="5"/>
55
+ <rect x="5" y="199.5" fill="#83BB42" width="5" height="5"/>
56
+ <rect x="5" y="207" fill="#83BB42" width="5" height="5"/>
57
+ </g>
58
+ <g>
59
+ <rect x="-10" y="273" fill="#83BB42" width="5" height="4"/>
60
+ <rect x="-10" y="280" fill="#83BB42" width="5" height="4"/>
61
+ <rect x="-10" y="287" fill="#83BB42" width="5" height="4"/>
62
+ <rect x="-2.5" y="273" fill="#83BB42" width="12.5" height="4"/>
63
+ <rect x="-2.5" y="280" fill="#83BB42" width="12.5" height="4"/>
64
+ <rect x="-2.5" y="287" fill="#83BB42" width="12.5" height="4"/>
65
+ </g>
66
+ <g>
67
+ <path fill="#83BB42" d="M-9,32.2v20H9v-20H-9z M6,49.2H-6v-14H6V49.2z"/>
68
+ <rect x="-4" y="37.2" fill="#83BB42" width="8" height="2"/>
69
+ <rect x="-4" y="41.2" fill="#83BB42" width="8" height="2"/>
70
+ <rect x="-4" y="45.2" fill="#83BB42" width="8" height="2"/>
71
+ </g>
72
+ <rect x="-10" y="-160.5" fill="#83BB42" width="20" height="5.5"/>
73
+ <polygon fill="#83BB42" points="10,-124.7 6.6,-128 0,-121.3 -6.7,-128 -10,-124.7 -3.4,-118 -10,-111.3 -6.7,-108 0,-114.7
74
+ 6.6,-108 10,-111.3 3.3,-118 "/>
75
+ <polygon fill="#83BB42" points="-2,314 -10,314 -10,330 10,330 10,316 -1,316 "/>
76
+ <path fill="#83BB42" d="M7.5,634.7v10H2H1.2l-0.9,0.5l-2.8,1.9v-2.4h-2h-3v-10H7.5 M10,632.2h-20v15h5v4.8l7-4.8h8V632.2L10,632.2z"
77
+ />
78
+ <path fill="#83BB42" d="M0,672c-5.5,0-10,4.5-10,10c0,5.5,4.5,10,10,10s10-4.5,10-10C10,676.5,5.5,672,0,672z M3,677.1
79
+ c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2s-2-0.9-2-2C1,678,1.9,677.1,3,677.1z M-3,677.1c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2s-2-0.9-2-2
80
+ C-5,678-4.1,677.1-3,677.1z M0,689.1c-3.2,0-6-2.2-6.8-5.2h2.1c0.7,1.9,2.5,3.2,4.7,3.2s3.9-1.3,4.7-3.2h2.1
81
+ C6,686.9,3.2,689.1,0,689.1z"/>
82
+ <path fill="#83BB42" d="M0,712c-5.5,0-10,4.5-10,10c0,5.5,4.5,10,10,10s10-4.5,10-10C10,716.5,5.5,712,0,712z M3,716.1
83
+ c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2s-2-0.9-2-2C1,717,1.9,716.1,3,716.1z M-3,716.1c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2s-2-0.9-2-2
84
+ C-5,717-4.1,716.1-3,716.1z M4.5,727.7c-0.8-1.7-2.5-2.9-4.5-2.9s-3.7,1.2-4.5,2.9c-0.6-0.4-1-0.9-1.5-1.5c1.2-2,3.4-3.3,5.9-3.3
85
+ s4.7,1.3,5.9,3.3C5.5,726.8,5,727.3,4.5,727.7z"/>
86
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#83BB42" d="M10,752H-5v5h-5v15H5v-5h5V752z M2,769h-9v-9h9V769z M7,764H5v-7
87
+ h-7v-2h9V764z"/>
88
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#83BB42" d="M5,800c0,0.1,0,0.2,0,0.3c0,3.3-2.5,7.2-7.2,7.2
89
+ c-1.4,0-2.8-0.4-3.9-1.1c0.2,0,0.4,0,0.6,0c1.2,0,2.3-0.4,3.1-1.1c-1.1,0-2-0.8-2.4-1.8c0.2,0,0.3,0,0.5,0c0.2,0,0.5,0,0.7-0.1
90
+ c-1.2-0.2-2-1.2-2-2.5v0c0.3,0.2,0.7,0.3,1.1,0.3c-0.7-0.5-1.1-1.2-1.1-2.1c0-0.5,0.1-0.9,0.3-1.3c1.2,1.5,3.1,2.5,5.2,2.6
91
+ c0-0.2-0.1-0.4-0.1-0.6c0-1.4,1.1-2.5,2.5-2.5c0.7,0,1.4,0.3,1.8,0.8c0.6-0.1,1.1-0.3,1.6-0.6c-0.2,0.6-0.6,1.1-1.1,1.4
92
+ c0.5-0.1,1-0.2,1.4-0.4C6,799.2,5.5,799.6,5,800z M0,792c-5.5,0-10,4.5-10,10c0,5.5,4.5,10,10,10s10-4.5,10-10
93
+ C10,796.5,5.5,792,0,792z"/>
94
+ <g>
95
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#83BB42" d="M5.6,846.9c0,0.4-0.4,0.8-0.8,0.8h-9.5c-0.5,0-0.8-0.4-0.8-0.8
96
+ v-9.6c0-0.4,0.4-0.8,0.8-0.8h9.5c0.5,0,0.8,0.4,0.8,0.8V846.9z M0,832c-5.5,0-10,4.5-10,10s4.5,10,10,10s10-4.5,10-10
97
+ S5.5,832,0,832z"/>
98
+ <path fill="#83BB42" d="M1.9,840.6c-0.9,0-1.3,0.5-1.5,0.8v0h0l0,0v-0.7h-1.7c0,0.5,0,5.1,0,5.1h1.7V843c0-0.2,0-0.3,0.1-0.4
99
+ c0.1-0.3,0.4-0.6,0.9-0.6c0.6,0,0.9,0.5,0.9,1.1v2.7h1.7v-2.9C3.9,841.4,3,840.6,1.9,840.6z"/>
100
+ <path fill="#83BB42" d="M-3,838.3c-0.6,0-1,0.4-1,0.9c0,0.5,0.4,0.9,0.9,0.9h0c0.6,0,1-0.4,1-0.9C-2.1,838.7-2.5,838.3-3,838.3z"/>
101
+ <rect x="-3.9" y="840.8" fill="#83BB42" width="1.7" height="5.1"/>
102
+ </g>
103
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#83BB42" d="M2.6,882H0.9v6.2h-2.6V882h-1.2v-2.2h1.2v-1.4c0-1,0.5-2.6,2.6-2.6
104
+ l1.9,0v2.1H1.5c-0.2,0-0.5,0.1-0.5,0.6v1.3h2L2.6,882z M0,872c-5.5,0-10,4.5-10,10c0,5.5,4.5,10,10,10s10-4.5,10-10
105
+ C10,876.5,5.5,872,0,872z"/>
106
+ <g>
107
+ <path fill="#83BB42" d="M0,919.5L0,919.5L0,919.5C0,919.5,0,919.5,0,919.5z"/>
108
+ <path fill="#83BB42" d="M5.9,917H3.3c0,0,1.4,0.9,1.6,2.5h0.9h0c0.9,0,1.6,0.7,1.6,1.6v1.7c0,0.9-0.7,1.7-1.6,1.7H0
109
+ c-0.9,0-1.7-0.8-1.7-1.7v-1.6h-2.5v1.6c0,0.6,0.1,1.2,0.4,1.7C-3.2,926-1.7,927,0,927h5.8c2.3,0,4.1-1.9,4.1-4.2v-1.7
110
+ C10,918.8,8.2,917,5.9,917z"/>
111
+ <path fill="#83BB42" d="M3.8,919.5C3.2,918,1.7,917,0,917h-5.8c-2.3,0-4.2,1.8-4.2,4.1v1.7c0,2.3,1.9,4.2,4.2,4.2h2.5
112
+ c0,0-1.3-0.9-1.7-2.5h-0.8c-0.9,0-1.7-0.8-1.7-1.7v-1.7c0-0.9,0.8-1.6,1.7-1.6H0h0c0.9,0,1.6,0.7,1.6,1.6v1.7c0,0,0,0,0,0h2.5
113
+ c0,0,0,0,0,0v-1.7C4.2,920.6,4,920,3.8,919.5z"/>
114
+ </g>
115
+ <g>
116
+ <rect x="-9.5" y="964.2" fill-rule="evenodd" clip-rule="evenodd" fill="#83BB42" width="3" height="3"/>
117
+ <rect x="-5.5" y="964.2" fill-rule="evenodd" clip-rule="evenodd" fill="#83BB42" width="3" height="3"/>
118
+ <rect x="-1.5" y="964.2" fill-rule="evenodd" clip-rule="evenodd" fill="#83BB42" width="3" height="3"/>
119
+ <rect x="2.5" y="964.2" fill-rule="evenodd" clip-rule="evenodd" fill="#83BB42" width="3" height="3"/>
120
+ <rect x="-5.5" y="960.2" fill-rule="evenodd" clip-rule="evenodd" fill="#83BB42" width="3" height="3"/>
121
+ <rect x="-1.5" y="960.2" fill-rule="evenodd" clip-rule="evenodd" fill="#83BB42" width="3" height="3"/>
122
+ <rect x="2.5" y="960.2" fill-rule="evenodd" clip-rule="evenodd" fill="#83BB42" width="3" height="3"/>
123
+ <rect x="2.5" y="956.2" fill-rule="evenodd" clip-rule="evenodd" fill="#83BB42" width="3" height="3"/>
124
+ <rect x="6.5" y="964.2" fill-rule="evenodd" clip-rule="evenodd" fill="#83BB42" width="3" height="3"/>
125
+ </g>
126
+ <g>
127
+ <g>
128
+ <ellipse fill="#83BB42" cx="-0.2" cy="994.5" rx="8.8" ry="2.5"/>
129
+ </g>
130
+ <path fill="#83BB42" d="M-0.2,998.2c-0.8,0-6.3-0.1-8.8-1.7v3c0,1.4,3.9,2.5,8.8,2.5s8.8-1.1,8.8-2.5v-3
131
+ C6,998.2,0.5,998.2-0.2,998.2z"/>
132
+ <path fill="#83BB42" d="M-0.2,1003.2c-0.8,0-6.3-0.1-8.8-1.7v3c0,1.4,3.9,2.5,8.8,2.5s8.8-1.1,8.8-2.5v-3
133
+ C6,1003.2,0.5,1003.2-0.2,1003.2z"/>
134
+ <path fill="#83BB42" d="M-0.2,1008.2c-0.8,0-6.3-0.1-8.8-1.7v3c0,1.4,3.9,2.5,8.8,2.5s8.8-1.1,8.8-2.5v-3
135
+ C6,1008.2,0.5,1008.2-0.2,1008.2z"/>
136
+ </g>
137
+ <path fill="#83BB42" d="M0,1033.8c-5.5,0-10,4.5-10,10v5h20v-5C10,1038.2,5.5,1033.8,0,1033.8z M-0.1,1036.2c0.7,0,1.2,0.6,1.2,1.2
138
+ c0,0.3-0.1,0.6-0.3,0.9c-0.2,0.2-0.6,0.4-0.9,0.4h0c-0.7,0-1.2-0.5-1.2-1.2C-1.3,1036.8-0.8,1036.2-0.1,1036.2z M-7.4,1045.4
139
+ L-7.4,1045.4c-0.5,0-0.8-0.2-1-0.5c-0.2-0.3-0.3-0.6-0.3-0.9c0.1-0.6,0.6-1.1,1.2-1.1l0.1,0c0.3,0,0.6,0.2,0.8,0.5
140
+ c0.2,0.3,0.3,0.6,0.3,0.9C-6.3,1044.9-6.8,1045.4-7.4,1045.4z M-5.2,1041.5c-0.3,0.4-0.6,0.6-1,0.6c-0.3,0-0.5-0.1-0.7-0.2
141
+ c-0.2-0.2-0.4-0.4-0.5-0.8c-0.1-0.3,0-0.7,0.2-0.9c0.4-0.6,1.2-0.7,1.7-0.3C-4.9,1040.2-4.8,1040.9-5.2,1041.5z M-3,1039.5
142
+ c-0.2,0.1-0.4,0.2-0.6,0.2c-0.5,0-0.9-0.3-1.1-0.6c-0.3-0.6-0.1-1.4,0.5-1.7c0.6-0.3,1.4-0.1,1.7,0.5
143
+ C-2.1,1038.4-2.3,1039.2-3,1039.5z M0,1048.1c-1,0-1.9-0.8-1.9-1.9c0-1,0.8-1.9,1.9-1.9s1.9,0.8,1.9,1.9
144
+ C1.9,1047.3,1,1048.1,0,1048.1z M3.8,1038.7l-1.9,5.9c-0.5-0.5-1.1-0.9-1.9-0.9c-0.1,0-0.2,0-0.3,0l3-5.5c0.3-0.6,0.8-1,1.1-0.9
145
+ C4,1037.5,4,1038.1,3.8,1038.7z M5.1,1041.4c-0.2-0.3-0.3-0.6-0.2-0.9c0.1-0.3,0.2-0.6,0.5-0.8c0.6-0.4,1.4-0.2,1.7,0.3
146
+ c0.2,0.3,0.3,0.6,0.2,0.9c-0.1,0.3-0.2,0.6-0.5,0.8c-0.2,0.2-0.5,0.2-0.7,0.2C5.7,1041.9,5.3,1041.7,5.1,1041.4z M8.1,1045.4
147
+ c-0.2,0.2-0.5,0.2-0.7,0.2c-0.4,0-0.8-0.2-1-0.5c-0.2-0.3-0.3-0.6-0.2-0.9c0.1-0.3,0.2-0.6,0.5-0.8c0.6-0.4,1.4-0.2,1.7,0.3
148
+ c0.2,0.3,0.3,0.6,0.2,0.9C8.6,1044.9,8.4,1045.2,8.1,1045.4z"/>
149
+ <polygon fill="#83BB42" points="0,1088.5 10,1078.1 7.5,1075.5 0,1083.3 -7.5,1075.5 -10,1078.1 "/>
150
+ <polygon fill="#83BB42" points="10,1115 0,1129 -10,1115 "/>
151
+ <polygon fill="#83BB42" points="0,1235.5 10,1245.9 7.5,1248.5 0,1240.7 -7.5,1248.5 -10,1245.9 "/>
152
+ <polygon fill="#83BB42" points="10,1289 0,1275 -10,1289 "/>
153
+ <polygon fill="#83BB42" points="-7.5,1162 2.9,1172 5.5,1169.5 -2.3,1162 5.5,1154.5 2.9,1152 "/>
154
+ <polygon fill="#83BB42" points="6,1212 -8,1202 6,1192 "/>
155
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#83BB42" d="M0,1312.2c-5.5,0-10,4.5-10,10c0,4.4,2.9,8.2,6.8,9.5
156
+ c0.5,0.1,0.7-0.2,0.7-0.5c0-0.2,0-0.9,0-1.7c-2.8,0.6-3.4-1.3-3.4-1.3c-0.5-1.2-1.1-1.5-1.1-1.5c-0.9-0.6,0.1-0.6,0.1-0.6
157
+ c1,0.1,1.5,1,1.5,1c0.9,1.5,2.3,1.1,2.9,0.8c0.1-0.6,0.3-1.1,0.6-1.3c-2.2-0.3-4.6-1.1-4.6-4.9c0-1.1,0.4-2,1-2.7
158
+ c-0.1-0.3-0.4-1.3,0.1-2.6c0,0,0.8-0.3,2.7,1c0.8-0.2,1.7-0.3,2.5-0.3c0.8,0,1.7,0.1,2.5,0.3c1.9-1.3,2.7-1,2.7-1
159
+ c0.5,1.4,0.2,2.4,0.1,2.6c0.6,0.7,1,1.6,1,2.7c0,3.8-2.3,4.7-4.6,4.9c0.4,0.3,0.7,0.9,0.7,1.9c0,1.3,0,2.4,0,2.7
160
+ c0,0.3,0.2,0.6,0.7,0.5c4-1.3,6.8-5.1,6.8-9.5C10,1316.7,5.5,1312.2,0,1312.2z"/>
161
+ </svg>