decidim-challenges 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (231) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE-AGPLv3.txt +661 -0
  3. data/README.md +49 -0
  4. data/Rakefile +9 -0
  5. data/app/cells/decidim/challenges/challenge_cell.rb +21 -0
  6. data/app/cells/decidim/challenges/challenge_g/show.erb +47 -0
  7. data/app/cells/decidim/challenges/challenge_g_cell.rb +69 -0
  8. data/app/cells/decidim/problems/problem_cell.rb +21 -0
  9. data/app/cells/decidim/problems/problem_g/show.erb +35 -0
  10. data/app/cells/decidim/problems/problem_g_cell.rb +61 -0
  11. data/app/cells/decidim/solutions/solution_cell.rb +21 -0
  12. data/app/cells/decidim/solutions/solution_g/show.erb +30 -0
  13. data/app/cells/decidim/solutions/solution_g_cell.rb +84 -0
  14. data/app/commands/decidim/challenges/admin/create_challenge.rb +67 -0
  15. data/app/commands/decidim/challenges/admin/destroy_challenge.rb +49 -0
  16. data/app/commands/decidim/challenges/admin/export_challenge_surveys.rb +45 -0
  17. data/app/commands/decidim/challenges/admin/publish_challenge.rb +40 -0
  18. data/app/commands/decidim/challenges/admin/unpublish_challenge.rb +40 -0
  19. data/app/commands/decidim/challenges/admin/update_challenge.rb +72 -0
  20. data/app/commands/decidim/challenges/admin/update_surveys.rb +43 -0
  21. data/app/commands/decidim/challenges/survey_challenge.rb +67 -0
  22. data/app/commands/decidim/command_utils.rb +20 -0
  23. data/app/commands/decidim/problems/admin/create_problem.rb +66 -0
  24. data/app/commands/decidim/problems/admin/destroy_problem.rb +49 -0
  25. data/app/commands/decidim/problems/admin/publish_problem.rb +40 -0
  26. data/app/commands/decidim/problems/admin/unpublish_problem.rb +40 -0
  27. data/app/commands/decidim/problems/admin/update_problem.rb +69 -0
  28. data/app/commands/decidim/solutions/admin/create_solution.rb +65 -0
  29. data/app/commands/decidim/solutions/admin/destroy_solution.rb +43 -0
  30. data/app/commands/decidim/solutions/admin/publish_solution.rb +40 -0
  31. data/app/commands/decidim/solutions/admin/unpublish_solution.rb +40 -0
  32. data/app/commands/decidim/solutions/admin/update_solution.rb +67 -0
  33. data/app/commands/decidim/solutions/create_solution.rb +67 -0
  34. data/app/controllers/concerns/decidim/challenges/admin/filterable.rb +27 -0
  35. data/app/controllers/concerns/decidim/challenges/orderable_challenges.rb +37 -0
  36. data/app/controllers/concerns/decidim/problems/admin/filterable.rb +27 -0
  37. data/app/controllers/concerns/decidim/problems/orderable_problems.rb +37 -0
  38. data/app/controllers/concerns/decidim/solutions/admin/filterable.rb +27 -0
  39. data/app/controllers/concerns/decidim/solutions/orderable_solutions.rb +37 -0
  40. data/app/controllers/concerns/decidim/with_default_filters.rb +23 -0
  41. data/app/controllers/concerns/decidim/with_sdgs.rb +19 -0
  42. data/app/controllers/decidim/challenges/admin/application_controller.rb +15 -0
  43. data/app/controllers/decidim/challenges/admin/challenge_publications_controller.rb +53 -0
  44. data/app/controllers/decidim/challenges/admin/challenges_controller.rb +108 -0
  45. data/app/controllers/decidim/challenges/admin/survey_form_controller.rb +43 -0
  46. data/app/controllers/decidim/challenges/admin/surveys_controller.rb +104 -0
  47. data/app/controllers/decidim/challenges/application_controller.rb +13 -0
  48. data/app/controllers/decidim/challenges/challenges_controller.rb +70 -0
  49. data/app/controllers/decidim/challenges/surveys_controller.rb +61 -0
  50. data/app/controllers/decidim/problems/admin/application_controller.rb +15 -0
  51. data/app/controllers/decidim/problems/admin/problem_publications_controller.rb +53 -0
  52. data/app/controllers/decidim/problems/admin/problems_controller.rb +102 -0
  53. data/app/controllers/decidim/problems/application_controller.rb +13 -0
  54. data/app/controllers/decidim/problems/problems_controller.rb +62 -0
  55. data/app/controllers/decidim/sdgs/admin/application_controller.rb +15 -0
  56. data/app/controllers/decidim/sdgs/admin/sdgs_controller.rb +18 -0
  57. data/app/controllers/decidim/sdgs/application_controller.rb +13 -0
  58. data/app/controllers/decidim/sdgs/sdgs_controller.rb +24 -0
  59. data/app/controllers/decidim/solutions/admin/application_controller.rb +15 -0
  60. data/app/controllers/decidim/solutions/admin/solution_publications_controller.rb +53 -0
  61. data/app/controllers/decidim/solutions/admin/solutions_controller.rb +106 -0
  62. data/app/controllers/decidim/solutions/application_controller.rb +13 -0
  63. data/app/controllers/decidim/solutions/solutions_controller.rb +115 -0
  64. data/app/forms/decidim/challenges/admin/challenge_surveys_form.rb +35 -0
  65. data/app/forms/decidim/challenges/admin/challenges_form.rb +78 -0
  66. data/app/forms/decidim/problems/admin/problems_form.rb +90 -0
  67. data/app/forms/decidim/solutions/admin/solutions_form.rb +71 -0
  68. data/app/forms/decidim/solutions/solutions_form.rb +50 -0
  69. data/app/helpers/decidim/challenges/application_helper.rb +25 -0
  70. data/app/helpers/decidim/challenges/challenge_cells_helper.rb +57 -0
  71. data/app/helpers/decidim/challenges/challenges_helper.rb +39 -0
  72. data/app/helpers/decidim/problems/application_helper.rb +10 -0
  73. data/app/helpers/decidim/problems/problem_cells_helper.rb +23 -0
  74. data/app/helpers/decidim/problems/problems_helper.rb +24 -0
  75. data/app/helpers/decidim/sdgs/sdgs_helper.rb +28 -0
  76. data/app/helpers/decidim/show_filters_helper.rb +13 -0
  77. data/app/helpers/decidim/solutions/application_helper.rb +27 -0
  78. data/app/helpers/decidim/solutions/solution_cells_helper.rb +56 -0
  79. data/app/helpers/decidim/solutions/solutions_helper.rb +21 -0
  80. data/app/models/decidim/application_record.rb +8 -0
  81. data/app/models/decidim/challenges/challenge.rb +82 -0
  82. data/app/models/decidim/challenges/survey.rb +19 -0
  83. data/app/models/decidim/problems/problem.rb +118 -0
  84. data/app/models/decidim/sdgs/sdg.rb +47 -0
  85. data/app/models/decidim/solutions/application_record.rb +10 -0
  86. data/app/models/decidim/solutions/solution.rb +69 -0
  87. data/app/packs/entrypoints/decidim_challenges.js +4 -0
  88. data/app/packs/entrypoints/decidim_challenges.scss +1 -0
  89. data/app/packs/entrypoints/decidim_problems.js +1 -0
  90. data/app/packs/entrypoints/decidim_problems.scss +1 -0
  91. data/app/packs/entrypoints/decidim_sdgs.js +6 -0
  92. data/app/packs/entrypoints/decidim_sdgs.scss +3 -0
  93. data/app/packs/entrypoints/decidim_shared.js +1 -0
  94. data/app/packs/entrypoints/decidim_shared.scss +1 -0
  95. data/app/packs/entrypoints/decidim_solutions.js +4 -0
  96. data/app/packs/entrypoints/decidim_solutions.scss +1 -0
  97. data/app/packs/fonts/Oswald-Medium.ttf +0 -0
  98. data/app/packs/images/decidim/challenges/decidim_challenges_icon.svg +1 -0
  99. data/app/packs/images/decidim/sdgs/ods-01.svg +11 -0
  100. data/app/packs/images/decidim/sdgs/ods-02.svg +11 -0
  101. data/app/packs/images/decidim/sdgs/ods-03.svg +11 -0
  102. data/app/packs/images/decidim/sdgs/ods-04.svg +12 -0
  103. data/app/packs/images/decidim/sdgs/ods-05.svg +12 -0
  104. data/app/packs/images/decidim/sdgs/ods-06.svg +20 -0
  105. data/app/packs/images/decidim/sdgs/ods-07.svg +18 -0
  106. data/app/packs/images/decidim/sdgs/ods-08.svg +13 -0
  107. data/app/packs/images/decidim/sdgs/ods-09.svg +25 -0
  108. data/app/packs/images/decidim/sdgs/ods-10.svg +13 -0
  109. data/app/packs/images/decidim/sdgs/ods-11.svg +41 -0
  110. data/app/packs/images/decidim/sdgs/ods-12.svg +11 -0
  111. data/app/packs/images/decidim/sdgs/ods-13.svg +57 -0
  112. data/app/packs/images/decidim/sdgs/ods-14.svg +14 -0
  113. data/app/packs/images/decidim/sdgs/ods-15.svg +11 -0
  114. data/app/packs/images/decidim/sdgs/ods-16.svg +14 -0
  115. data/app/packs/images/decidim/sdgs/ods-17.svg +39 -0
  116. data/app/packs/images/decidim/sdgs/sdg-wheel.png +0 -0
  117. data/app/packs/images/decidim/sdgs/un_emblem_square.png +0 -0
  118. data/app/packs/src/decidim/challenges/add_challenge.js +3 -0
  119. data/app/packs/src/decidim/challenges/admin/challenges_form.js +3 -0
  120. data/app/packs/src/decidim/sdgs/filter.js +75 -0
  121. data/app/packs/stylesheets/decidim/challenges/challenges.scss +3 -0
  122. data/app/packs/stylesheets/decidim/problems/problems.scss +3 -0
  123. data/app/packs/stylesheets/decidim/sdgs/ods.scss +185 -0
  124. data/app/packs/stylesheets/decidim/sdgs/sdgs_filter/button.scss +27 -0
  125. data/app/packs/stylesheets/decidim/sdgs/sdgs_filter/modal.scss +60 -0
  126. data/app/packs/stylesheets/decidim/shared/_cards.scss +52 -0
  127. data/app/packs/stylesheets/decidim/shared/base.scss +9 -0
  128. data/app/packs/stylesheets/decidim/solutions/solutions.scss +3 -0
  129. data/app/permissions/decidim/challenges/admin/permissions.rb +88 -0
  130. data/app/permissions/decidim/challenges/permissions.rb +27 -0
  131. data/app/permissions/decidim/problems/admin/permissions.rb +52 -0
  132. data/app/permissions/decidim/problems/permissions.rb +16 -0
  133. data/app/permissions/decidim/solutions/admin/permissions.rb +58 -0
  134. data/app/permissions/decidim/solutions/permissions.rb +17 -0
  135. data/app/presenters/decidim/challenges/challenge_presenter.rb +134 -0
  136. data/app/presenters/decidim/problems/problem_presenter.rb +108 -0
  137. data/app/presenters/decidim/solutions/solution_presenter.rb +198 -0
  138. data/app/serializers/decidim/challenges/data_serializer.rb +46 -0
  139. data/app/serializers/decidim/challenges/survey_serializer.rb +37 -0
  140. data/app/types/decidim/challenges/challenge_type.rb +28 -0
  141. data/app/types/decidim/challenges/challenges_type.rb +32 -0
  142. data/app/types/decidim/problems/problem_type.rb +29 -0
  143. data/app/types/decidim/problems/problems_type.rb +32 -0
  144. data/app/types/decidim/solutions/solution_type.rb +25 -0
  145. data/app/types/decidim/solutions/solutions_type.rb +32 -0
  146. data/app/views/decidim/challenges/admin/challenges/_form.html.erb +78 -0
  147. data/app/views/decidim/challenges/admin/challenges/edit.html.erb +24 -0
  148. data/app/views/decidim/challenges/admin/challenges/index.html.erb +88 -0
  149. data/app/views/decidim/challenges/admin/challenges/new.html.erb +18 -0
  150. data/app/views/decidim/challenges/admin/surveys/_form.html.erb +9 -0
  151. data/app/views/decidim/challenges/admin/surveys/edit.html.erb +39 -0
  152. data/app/views/decidim/challenges/admin/surveys/index.html.erb +49 -0
  153. data/app/views/decidim/challenges/admin/surveys/show.html.erb +43 -0
  154. data/app/views/decidim/challenges/challenges/_challenge.html.erb +1 -0
  155. data/app/views/decidim/challenges/challenges/_challenges.html.erb +11 -0
  156. data/app/views/decidim/challenges/challenges/_related_problems.html.erb +14 -0
  157. data/app/views/decidim/challenges/challenges/_sidebar_data.html.erb +60 -0
  158. data/app/views/decidim/challenges/challenges/index.html.erb +29 -0
  159. data/app/views/decidim/challenges/challenges/index.js.erb +5 -0
  160. data/app/views/decidim/challenges/challenges/show.html.erb +41 -0
  161. data/app/views/decidim/problems/admin/problems/_form.html.erb +79 -0
  162. data/app/views/decidim/problems/admin/problems/edit.html.erb +24 -0
  163. data/app/views/decidim/problems/admin/problems/index.html.erb +93 -0
  164. data/app/views/decidim/problems/admin/problems/new.html.erb +18 -0
  165. data/app/views/decidim/problems/problems/_problem.html.erb +1 -0
  166. data/app/views/decidim/problems/problems/_problems.html.erb +11 -0
  167. data/app/views/decidim/problems/problems/_sidebar_data.html.erb +70 -0
  168. data/app/views/decidim/problems/problems/index.html.erb +28 -0
  169. data/app/views/decidim/problems/problems/index.js.erb +5 -0
  170. data/app/views/decidim/problems/problems/show.html.erb +38 -0
  171. data/app/views/decidim/sdgs/sdgs/_objectives.html.erb +320 -0
  172. data/app/views/decidim/sdgs/sdgs/_ods.html.erb +132 -0
  173. data/app/views/decidim/sdgs/sdgs/index.html.erb +64 -0
  174. data/app/views/decidim/sdgs/sdgs_filter/_filter_selector.html.erb +7 -0
  175. data/app/views/decidim/sdgs/sdgs_filter/_modal.html.erb +35 -0
  176. data/app/views/decidim/shared/_related_solutions.html.erb +14 -0
  177. data/app/views/decidim/solutions/admin/solutions/_documents.html.erb +13 -0
  178. data/app/views/decidim/solutions/admin/solutions/_form.html.erb +70 -0
  179. data/app/views/decidim/solutions/admin/solutions/_photos.html.erb +13 -0
  180. data/app/views/decidim/solutions/admin/solutions/edit.html.erb +24 -0
  181. data/app/views/decidim/solutions/admin/solutions/index.html.erb +97 -0
  182. data/app/views/decidim/solutions/admin/solutions/new.html.erb +18 -0
  183. data/app/views/decidim/solutions/admin/solutions/show.html.erb +114 -0
  184. data/app/views/decidim/solutions/solutions/_form.html.erb +22 -0
  185. data/app/views/decidim/solutions/solutions/_sidebar_data.html.erb +114 -0
  186. data/app/views/decidim/solutions/solutions/_solution.html.erb +1 -0
  187. data/app/views/decidim/solutions/solutions/_solutions.html.erb +13 -0
  188. data/app/views/decidim/solutions/solutions/index.html.erb +37 -0
  189. data/app/views/decidim/solutions/solutions/index.js.erb +5 -0
  190. data/app/views/decidim/solutions/solutions/new.html.erb +20 -0
  191. data/app/views/decidim/solutions/solutions/show.html.erb +72 -0
  192. data/config/assets.rb +27 -0
  193. data/config/i18n-tasks.yml +10 -0
  194. data/config/locales/ca.yml +1244 -0
  195. data/config/locales/cs.yml +668 -0
  196. data/config/locales/en.yml +1245 -0
  197. data/config/locales/es.yml +1250 -0
  198. data/config/locales/oc.yml +1229 -0
  199. data/db/migrate/20201014125000_create_decidim_challenges_challenges.rb +23 -0
  200. data/db/migrate/20201103155100_create_decidim_problems_problems.rb +25 -0
  201. data/db/migrate/20201116111200_create_decidim_solutions_solutions.rb +21 -0
  202. data/db/migrate/20210413083244_create_decidim_challenges_surveys.rb +14 -0
  203. data/db/migrate/20210413083507_add_survey_attributes_to_challenges.rb +7 -0
  204. data/db/migrate/20210413083604_add_questionnaire_to_existing_challenges.rb +15 -0
  205. data/db/migrate/20210413112229_add_challenge_reference_to_solutions.rb +7 -0
  206. data/db/migrate/20210427091033_remove_require_null_in_problems_for_solutions.rb +7 -0
  207. data/db/migrate/20220407110503_add_card_image_to_challenges.rb +7 -0
  208. data/db/migrate/20240919094714_add_public_fields_to_solutions.rb +10 -0
  209. data/lib/decidim/challenges/admin.rb +10 -0
  210. data/lib/decidim/challenges/admin_engine.rb +37 -0
  211. data/lib/decidim/challenges/component.rb +65 -0
  212. data/lib/decidim/challenges/engine.rb +39 -0
  213. data/lib/decidim/challenges/test/factories.rb +59 -0
  214. data/lib/decidim/challenges/version.rb +14 -0
  215. data/lib/decidim/challenges.rb +13 -0
  216. data/lib/decidim/problems/admin.rb +10 -0
  217. data/lib/decidim/problems/admin_engine.rb +25 -0
  218. data/lib/decidim/problems/component.rb +51 -0
  219. data/lib/decidim/problems/engine.rb +31 -0
  220. data/lib/decidim/problems/test/factories.rb +39 -0
  221. data/lib/decidim/sdgs/admin.rb +10 -0
  222. data/lib/decidim/sdgs/admin_engine.rb +28 -0
  223. data/lib/decidim/sdgs/component.rb +44 -0
  224. data/lib/decidim/sdgs/engine.rb +23 -0
  225. data/lib/decidim/sdgs/test/factories.rb +13 -0
  226. data/lib/decidim/solutions/admin.rb +10 -0
  227. data/lib/decidim/solutions/admin_engine.rb +25 -0
  228. data/lib/decidim/solutions/component.rb +52 -0
  229. data/lib/decidim/solutions/engine.rb +31 -0
  230. data/lib/decidim/solutions/test/factories.rb +28 -0
  231. metadata +316 -0
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
+ <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
+ width="1200.000000pt" height="1200.000000pt" viewBox="0 0 1200.000000 1200.000000"
6
+ preserveAspectRatio="xMidYMid meet">
7
+ <g transform="translate(0.000000,1200.000000) scale(0.100000,-0.100000)"
8
+ fill="#dda83a" stroke="none">
9
+ <path d="M 0 6000 L 0 0 L 6000 0 L 12000 0 L 12000 6000 L 12000 12000 L 6000 12000 L 0 12000 L 0 6000 Z M 1746 10985 C 1838 10968 1948 10917 2007 10866 C 2139 10751 2208 10528 2180 10304 C 2155 10108 2112 10024 1750 9480 C 1585 9232 1450 9027 1450 9025 C 1450 9022 1603 9020 1790 9020 L 2130 9020 L 2130 8850 L 2130 8680 L 1540 8680 L 950 8680 L 950 8833 L 950 8985 L 1291 9510 C 1478 9799 1651 10074 1676 10123 C 1733 10235 1753 10321 1748 10425 C 1740 10580 1674 10645 1545 10626 C 1438 10609 1390 10519 1382 10318 L 1377 10190 L 1162 10190 L 947 10190 L 953 10328 C 963 10540 1004 10676 1096 10801 C 1190 10929 1352 10997 1572 10999 C 1625 11000 1703 10993 1746 10985 Z M 4699 7037 C 4744 7007 4779 6946 4780 6899 C 4780 6884 4767 6848 4750 6819 C 4602 6550 4553 6412 4530 6206 C 4503 5967 4572 5752 4737 5563 C 4911 5363 5009 5180 5051 4975 C 5069 4886 5067 4709 5046 4618 L 5029 4540 L 4818 4540 C 4622 4540 4608 4541 4615 4558 C 4642 4629 4660 4725 4660 4801 C 4660 4994 4587 5153 4396 5376 C 4191 5616 4110 5849 4123 6167 C 4132 6395 4178 6564 4296 6800 C 4409 7025 4462 7074 4591 7068 C 4643 7065 4666 7059 4699 7037 Z M 5928 7055 C 6041 7007 6071 6907 6004 6796 C 5805 6466 5741 6123 5830 5860 C 5867 5749 5901 5687 5969 5605 C 6157 5380 6256 5213 6302 5040 C 6321 4968 6325 4932 6324 4800 C 6323 4698 6318 4628 6308 4595 L 6294 4545 L 6083 4542 L 5871 4540 L 5890 4594 C 5978 4843 5908 5096 5680 5355 C 5375 5700 5305 6099 5465 6577 C 5505 6696 5624 6936 5672 6994 C 5689 7015 5722 7041 5744 7051 C 5794 7074 5878 7075 5928 7055 Z M 7229 7037 C 7274 7007 7309 6946 7310 6899 C 7310 6884 7297 6848 7280 6819 C 7132 6550 7083 6414 7060 6209 C 7040 6033 7077 5849 7160 5709 C 7182 5672 7237 5597 7284 5542 C 7394 5411 7443 5338 7496 5226 C 7594 5017 7620 4789 7568 4583 L 7558 4540 L 7348 4540 C 7152 4540 7138 4541 7145 4558 C 7192 4677 7202 4840 7170 4965 C 7137 5096 7070 5209 6932 5368 C 6810 5509 6731 5655 6684 5822 C 6649 5948 6640 6179 6664 6320 C 6703 6544 6810 6814 6926 6979 C 6991 7071 7136 7099 7229 7037 Z M 9062 4250 C 9097 4215 9097 4215 9054 4021 C 8927 3455 8609 2912 8165 2507 C 7838 2209 7450 1973 7050 1830 L 6945 1792 L 6940 1684 C 6935 1575 6924 1538 6894 1526 C 6886 1523 6415 1520 5849 1520 C 4833 1520 4820 1520 4800 1540 C 4783 1557 4780 1573 4780 1664 L 4780 1767 L 4658 1810 C 3631 2167 2856 2984 2615 3964 C 2559 4191 2558 4237 2608 4264 C 2632 4277 3024 4279 5833 4280 L 9032 4280 L 9062 4250 Z"></path>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
+ <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
+ width="1200.000000pt" height="1200.000000pt" viewBox="0 0 1200.000000 1200.000000"
6
+ preserveAspectRatio="xMidYMid meet">
7
+ <g transform="translate(0.000000,1200.000000) scale(0.100000,-0.100000)"
8
+ fill="#4c9f38" stroke="none">
9
+ <path d="M 0 6000 L 0 0 L 6000 0 L 12000 0 L 12000 6000 L 12000 12000 L 6000 12000 L 0 12000 L 0 6000 Z M 1732 10985 C 1945 10941 2090 10803 2147 10590 C 2172 10497 2171 10277 2146 10195 C 2105 10061 2034 9960 1946 9914 L 1892 9886 L 1938 9859 C 2038 9802 2109 9701 2147 9560 C 2174 9460 2171 9204 2142 9088 C 2087 8867 1970 8726 1792 8669 C 1697 8638 1473 8631 1363 8655 C 1159 8700 1030 8827 970 9042 C 949 9116 923 9369 934 9395 C 938 9408 976 9410 1155 9410 L 1370 9410 L 1370 9378 C 1373 9235 1394 9113 1426 9064 C 1448 9031 1501 9010 1562 9010 C 1633 9010 1675 9036 1703 9098 C 1723 9141 1725 9161 1725 9325 C 1725 9490 1723 9510 1702 9562 C 1679 9620 1638 9663 1591 9682 C 1577 9688 1529 9695 1485 9699 L 1405 9705 L 1405 9865 L 1405 10025 L 1495 10031 C 1622 10039 1659 10061 1702 10155 C 1723 10200 1725 10220 1725 10360 C 1725 10506 1724 10518 1700 10564 C 1668 10625 1625 10650 1550 10650 C 1421 10650 1374 10559 1371 10308 L 1370 10250 L 1149 10250 L 927 10250 L 934 10381 C 938 10453 950 10546 960 10587 C 1013 10792 1147 10926 1354 10980 C 1444 11004 1629 11006 1732 10985 Z M 8134 7476 C 8152 7469 8176 7449 8187 7434 C 8198 7418 8381 7044 8593 6602 C 9006 5747 9001 5759 8960 5693 C 8911 5612 8777 5606 8728 5682 C 8720 5695 8579 5984 8415 6325 C 8251 6666 8115 6947 8113 6949 C 8105 6960 8108 6970 7640 5415 C 7513 4992 7366 4506 7315 4335 C 7181 3890 6838 2750 6704 2305 C 6642 2096 6584 1910 6575 1892 C 6555 1848 6506 1820 6448 1820 C 6409 1820 6394 1826 6365 1851 C 6346 1868 6326 1898 6320 1918 C 6314 1939 6281 2124 6246 2330 C 6095 3212 5899 4358 5892 4395 L 5884 4435 L 5854 4380 C 5837 4350 5687 4072 5520 3762 C 5192 3154 5196 3160 5114 3160 C 5061 3160 5010 3189 4989 3231 C 4977 3254 4928 3573 4834 4233 C 4758 4765 4694 5197 4690 5193 C 4686 5188 4572 4933 4435 4625 C 4299 4317 4177 4054 4166 4041 C 4119 3988 4157 3990 3074 3990 C 2167 3990 2065 3992 2034 4006 C 1943 4049 1926 4164 2001 4236 L 2031 4265 L 3001 4270 L 3971 4275 L 4299 5010 C 4479 5414 4633 5758 4641 5775 C 4688 5872 4840 5874 4886 5777 C 4895 5757 4957 5355 5044 4753 C 5122 4207 5188 3759 5190 3756 C 5193 3754 5335 4010 5505 4327 C 5676 4643 5823 4915 5832 4931 C 5871 4996 5963 5019 6027 4980 C 6086 4945 6072 5007 6240 4025 C 6274 3827 6328 3510 6361 3320 C 6393 3130 6434 2892 6451 2790 C 6469 2688 6486 2602 6490 2597 C 6493 2593 6522 2674 6553 2777 C 6584 2881 6688 3226 6784 3545 C 6880 3864 7063 4472 7190 4895 C 7317 5319 7487 5881 7566 6145 C 7646 6409 7763 6798 7826 7010 C 7890 7222 7949 7408 7958 7424 C 7978 7458 8033 7490 8073 7490 C 8088 7490 8116 7484 8134 7476 Z M 8709 5074 C 8780 5042 8869 4977 8963 4890 L 9040 4818 L 9107 4880 C 9354 5112 9527 5158 9746 5050 C 9940 4955 10060 4742 10060 4496 C 10060 4348 10020 4225 9935 4111 C 9917 4086 9707 3872 9470 3635 L 9040 3205 L 8581 3665 C 8147 4100 8121 4129 8086 4200 C 8067 4241 8043 4302 8035 4335 C 8016 4412 8016 4578 8035 4655 C 8057 4740 8121 4866 8174 4926 C 8313 5084 8545 5148 8709 5074 Z"></path>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
+ <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
+ width="1200.000000pt" height="1200.000000pt" viewBox="0 0 1200.000000 1200.000000"
6
+ preserveAspectRatio="xMidYMid meet">
7
+ <g transform="translate(0.000000,1200.000000) scale(0.100000,-0.100000)"
8
+ fill="#c5192d" stroke="none">
9
+ <path d="M 0 6000 L 0 0 L 6000 0 L 12000 0 L 12000 6000 L 12000 12000 L 6000 12000 L 0 12000 L 0 6000 Z M 1990 10260 L 1990 9550 L 2105 9550 L 2220 9550 L 2220 9385 L 2220 9220 L 2105 9220 L 1990 9220 L 1990 8950 L 1990 8680 L 1790 8680 L 1590 8680 L 1590 8950 L 1590 9220 L 1245 9220 L 900 9220 L 900 9393 L 900 9565 L 1195 10258 C 1357 10639 1492 10955 1495 10960 C 1499 10966 1597 10970 1746 10970 L 1990 10970 L 1990 10260 Z M 9301 7143 C 9361 7112 9413 7051 9430 6992 C 9435 6972 9440 6884 9440 6798 L 9440 6640 L 9185 6640 L 8930 6640 L 8930 6810 C 8930 7002 8936 7029 8998 7094 C 9076 7176 9197 7195 9301 7143 Z M 2920 4683 L 2920 2545 L 3308 2437 C 3689 2331 3812 2297 4805 2020 L 5305 1880 L 5439 1880 L 5572 1880 L 5894 1984 C 6070 2042 6287 2112 6375 2140 C 6711 2248 7838 2613 7900 2633 L 7965 2655 L 7968 4738 C 7969 5884 7974 6820 7978 6818 C 7983 6816 8035 6777 8093 6730 L 8200 6645 L 8200 4565 L 8200 2485 L 8133 2466 C 8060 2445 7865 2384 7570 2290 C 7468 2258 7151 2157 6865 2066 C 6579 1975 6174 1847 5965 1781 L 5586 1660 L 5437 1660 L 5289 1660 L 5057 1724 C 4850 1782 4451 1892 3115 2262 C 2895 2322 2707 2376 2698 2381 C 2681 2390 2680 2502 2680 4515 L 2680 6638 L 2793 6729 C 2854 6778 2908 6819 2913 6819 C 2917 6820 2920 5858 2920 4683 Z M 3602 6554 C 3846 6413 4099 6267 4165 6229 C 4231 6191 4517 6026 4800 5862 L 5315 5565 L 5318 3845 C 5319 2900 5317 2123 5312 2118 C 5308 2114 5275 2120 5240 2131 C 5171 2152 4408 2382 3785 2570 C 3582 2631 3388 2689 3355 2700 C 3322 2710 3262 2728 3223 2740 L 3150 2761 L 3150 4785 C 3150 5899 3152 6810 3154 6810 C 3157 6810 3358 6695 3602 6554 Z M 7740 4787 L 7740 2764 L 7068 2562 C 6698 2451 6208 2304 5980 2235 C 5752 2166 5562 2110 5558 2110 C 5553 2110 5550 2883 5550 3829 C 5550 5192 5553 5550 5563 5558 C 5574 5567 5827 5714 6630 6177 C 6831 6293 7159 6483 7360 6599 C 7561 6715 7728 6810 7733 6810 C 7737 6810 7740 5900 7740 4787 Z M 9440 4637 L 9440 2834 L 9315 2395 C 9246 2154 9187 1954 9185 1952 C 9179 1946 9185 1925 9050 2396 L 8930 2817 L 8930 4629 L 8930 6440 L 9185 6440 L 9440 6440 L 9440 4637 Z"></path>
10
+ <path d="M1541 10378 c-24 -68 -97 -274 -163 -458 -67 -184 -123 -343 -126 -352 -4 -17 9 -18 167 -18 l171 0 0 475 c0 261 -1 475 -3 475 -1 0 -22 -55 -46 -122z"></path>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
+ <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
+ width="1200.000000pt" height="1200.000000pt" viewBox="0 0 1200.000000 1200.000000"
6
+ preserveAspectRatio="xMidYMid meet">
7
+ <g transform="translate(0.000000,1200.000000) scale(0.100000,-0.100000)"
8
+ fill="#ff3a21" stroke="none">
9
+ <path d="M 0 6000 L 0 0 L 6000 0 L 12000 0 L 12000 6000 L 12000 12000 L 6000 12000 L 0 12000 L 0 6000 Z M 2070 10780 L 2070 10590 L 1725 10590 L 1380 10590 L 1376 10568 C 1373 10555 1369 10478 1365 10395 C 1362 10313 1357 10213 1354 10173 L 1348 10101 L 1422 10139 C 1551 10206 1737 10219 1863 10170 C 2108 10076 2219 9675 2144 9157 C 2118 8976 2072 8874 1974 8780 C 1861 8671 1731 8633 1505 8643 C 1359 8650 1300 8663 1211 8711 C 1105 8767 1029 8871 996 9005 C 977 9078 960 9216 960 9287 L 960 9340 L 1174 9340 L 1387 9340 L 1393 9238 C 1400 9113 1420 9044 1460 9005 C 1485 8981 1501 8976 1552 8972 C 1713 8960 1758 9074 1747 9475 C 1739 9788 1700 9870 1559 9870 C 1470 9870 1404 9816 1376 9718 L 1363 9675 L 1171 9672 L 978 9670 L 984 9767 C 987 9821 995 10108 1001 10405 C 1007 10702 1013 10951 1015 10958 C 1019 10967 1133 10970 1545 10970 L 2070 10970 L 2070 10780 Z M 8780 6700 L 8780 5930 L 8513 5932 L 8245 5935 L 8240 6218 L 8235 6500 L 7913 6178 L 7591 5855 L 7642 5775 C 7955 5279 8032 4662 7849 4106 C 7704 3664 7403 3286 7000 3037 C 6831 2933 6572 2830 6387 2794 L 6300 2777 L 6302 2486 L 6305 2195 L 6608 2192 L 6910 2190 L 6908 1907 L 6905 1625 L 6603 1622 L 6300 1620 L 6300 1331 C 6300 1077 6298 1041 6284 1036 C 6275 1033 6150 1030 6006 1030 C 5816 1030 5741 1033 5732 1042 C 5723 1051 5720 1130 5720 1337 L 5720 1620 L 5418 1622 L 5115 1625 L 5115 1905 L 5115 2185 L 5418 2188 L 5720 2190 L 5720 2480 L 5720 2769 L 5673 2775 C 5585 2787 5396 2837 5295 2875 C 4810 3057 4430 3405 4206 3871 C 4081 4131 4025 4355 4013 4640 C 3993 5135 4153 5604 4474 5987 C 4989 6603 5834 6842 6595 6589 C 6786 6526 6996 6418 7140 6310 L 7194 6269 L 7522 6597 L 7850 6925 L 7548 6930 L 7245 6935 L 7242 7203 L 7240 7470 L 8010 7470 L 8780 7470 L 8780 6700 Z"></path>
10
+ <path d="M5810 6159 c-624 -77 -1119 -537 -1252 -1163 -28 -135 -30 -397 -4 -531 107 -545 479 -963 1004 -1129 194 -61 475 -79 667 -42 304 58 562 193 775 406 209 209 338 451 401 750 32 152 31 382 0 540 -109 539 -489 958 -1013 1119 -157 48 -417 71 -578 50z m1065 -1074 l0 -230 -890 0 -890 0 -3 220 c-1 121 0 225 3 232 3 11 179 13 892 11 l888 -3 0 -230z m0 -760 l0 -230 -890 0 -890 0 -3 220 c-1 121 0 225 3 232 3 11 179 13 892 11 l888 -3 0 -230z"></path>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,20 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
+ <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
+ width="1200.000000pt" height="1200.000000pt" viewBox="0 0 1200.000000 1200.000000"
6
+ preserveAspectRatio="xMidYMid meet">
7
+ <g transform="translate(0.000000,1200.000000) scale(0.100000,-0.100000)"
8
+ fill="#26bde2" stroke="none">
9
+ <path d="M 0 6000 L 0 0 L 6000 0 L 12000 0 L 12000 6000 L 12000 12000 L 6000 12000 L 0 12000 L 0 6000 Z M 1794 10975 C 2015 10914 2122 10760 2145 10473 L 2152 10380 L 1943 10380 L 1733 10380 L 1727 10464 C 1716 10615 1681 10660 1572 10660 C 1511 10660 1506 10658 1470 10623 C 1414 10566 1400 10490 1393 10205 L 1387 9975 L 1433 10016 C 1497 10073 1584 10100 1698 10100 C 1899 10100 2028 10022 2105 9855 C 2159 9740 2171 9673 2177 9483 C 2185 9231 2162 9094 2085 8935 C 1988 8734 1835 8648 1570 8647 C 1374 8646 1246 8694 1141 8806 C 1048 8905 995 9022 965 9194 C 943 9322 943 10298 965 10445 C 1016 10781 1148 10942 1412 10990 C 1490 11003 1724 10994 1794 10975 Z M 8226 7158 C 8246 7138 8253 7194 8161 6605 C 8133 6429 8063 5977 8005 5600 C 7947 5223 7852 4609 7794 4235 C 7736 3861 7667 3411 7639 3235 C 7612 3059 7580 2854 7569 2780 C 7553 2672 7545 2642 7528 2628 C 7509 2611 7471 2610 7045 2610 L 6581 2610 L 6575 2557 C 6568 2493 6520 1932 6520 1908 C 6520 1891 6536 1890 6707 1890 L 6895 1890 L 6450 1445 L 6005 1000 L 5568 1437 C 5327 1678 5130 1878 5130 1882 C 5130 1887 5213 1890 5315 1890 C 5500 1890 5500 1890 5500 1912 C 5500 1941 5451 2512 5444 2568 L 5439 2610 L 4985 2610 C 4563 2610 4531 2611 4510 2628 C 4491 2644 4483 2674 4453 2856 C 4434 2971 4354 3459 4274 3940 C 4119 4875 3997 5617 3844 6540 C 3792 6856 3751 7124 3752 7135 C 3759 7182 3673 7180 6007 7177 C 8071 7175 8210 7174 8226 7158 Z"></path><path d="M1516 9758 c-22 -6 -58 -29 -83 -54 l-45 -43 5 -248 c5 -275 14 -326
10
+ 68 -388 57 -64 152 -71 209 -13 55 54 65 114 65 378 0 231 0 236 -25 284 -14
11
+ 28 -36 58 -50 67 -33 23 -95 30 -144 17z"></path><path d="M3950 6968 c-1 -7 36 -206 82 -442 l83 -429 115 6 c161 9 279 36 555
12
+ 129 236 80 242 81 359 86 187 7 297 -19 624 -149 196 -79 348 -127 507 -161
13
+ 97 -20 137 -23 330 -23 176 0 237 4 305 18 170 37 362 97 555 175 174 69 308
14
+ 88 408 58 46 -14 47 -13 52 7 10 42 115 699 115 718 0 19 -38 19 -2045 19
15
+ -1629 0 -2045 -3 -2045 -12z"></path><path d="M5823 5213 c-416 -631 -471 -724 -518 -888 -67 -232 -33 -456 99
16
+ -638 145 -202 354 -291 657 -280 224 7 412 98 531 255 108 141 149 259 149
17
+ 428 0 161 -37 303 -118 450 -67 122 -597 932 -614 938 -5 2 -88 -117 -186
18
+ -265z"></path>
19
+ </g>
20
+ </svg>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
+ <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
+ width="1200.000000pt" height="1200.000000pt" viewBox="0 0 1200.000000 1200.000000"
6
+ preserveAspectRatio="xMidYMid meet">
7
+ <g transform="translate(0.000000,1200.000000) scale(0.100000,-0.100000)"
8
+ fill="#fcc30b" stroke="none">
9
+ <path d="M 0 6000 L 0 0 L 6000 0 L 12000 0 L 12000 6000 L 12000 12000 L 6000 12000 L 0 12000 L 0 6000 Z M 2020 10822 L 2020 10674 L 1926 10284 C 1874 10070 1770 9641 1695 9330 C 1620 9019 1554 8746 1548 8723 L 1538 8680 L 1323 8680 C 1155 8680 1109 8683 1112 8693 C 1115 8699 1177 8948 1250 9245 C 1323 9542 1429 9974 1486 10204 C 1542 10435 1587 10627 1584 10632 C 1581 10636 1442 10640 1274 10640 L 970 10640 L 970 10805 L 970 10970 L 1495 10970 L 2020 10970 L 2020 10822 Z M 6061 6555 C 6077 6546 6100 6525 6110 6507 C 6129 6477 6130 6454 6130 6119 C 6130 5766 6130 5763 6107 5729 C 6094 5710 6068 5689 6046 5681 C 5994 5661 5935 5681 5903 5729 C 5880 5763 5880 5765 5880 6117 C 5880 6508 5881 6512 5943 6550 C 5982 6574 6021 6575 6061 6555 Z M 4845 6198 C 4856 6185 4941 6043 5034 5881 C 5202 5589 5202 5588 5197 5537 C 5191 5466 5151 5430 5080 5430 C 5040 5430 5025 5435 5001 5458 C 4963 5492 4640 6054 4633 6096 C 4630 6116 4635 6141 4649 6168 C 4661 6191 4671 6210 4673 6210 C 4674 6210 4692 6216 4714 6224 C 4762 6241 4817 6230 4845 6198 Z M 7300 6225 C 7345 6202 7370 6163 7370 6115 C 7370 6078 7346 6031 7196 5769 C 7073 5555 7013 5460 6993 5448 C 6978 5438 6945 5430 6921 5430 C 6839 5430 6779 5524 6813 5601 C 6822 5620 6902 5763 6992 5920 C 7133 6165 7160 6207 7190 6222 C 7233 6244 7262 6245 7300 6225 Z M 6265 5415 C 6556 5364 6827 5228 7037 5027 C 7242 4830 7370 4626 7448 4365 C 7489 4231 7499 4174 7508 4039 C 7527 3754 7481 3515 7360 3265 C 7157 2845 6784 2554 6310 2447 C 6229 2429 6183 2426 6005 2426 C 5826 2426 5781 2429 5698 2447 C 5327 2531 5019 2727 4800 3018 C 4413 3534 4392 4236 4749 4766 C 4894 4982 5102 5165 5334 5282 C 5475 5353 5683 5412 5870 5434 C 5939 5442 6177 5431 6265 5415 Z M 4173 5134 C 4342 5037 4487 4948 4495 4936 C 4550 4852 4490 4740 4390 4740 C 4340 4740 3746 5079 3725 5121 C 3705 5158 3706 5220 3726 5249 C 3749 5281 3800 5310 3835 5310 C 3855 5310 3963 5254 4173 5134 Z M 8241 5293 C 8298 5259 8315 5174 8277 5116 C 8263 5095 7710 4770 7650 4747 C 7583 4722 7490 4789 7490 4862 C 7490 4937 7501 4946 7828 5133 C 8157 5323 8177 5331 8241 5293 Z M 4190 4057 C 4257 4034 4289 3946 4256 3881 C 4224 3820 4226 3820 3825 3820 C 3502 3820 3456 3822 3434 3836 C 3355 3889 3366 4017 3454 4056 C 3496 4074 4137 4075 4190 4057 Z M 8550 4057 C 8617 4034 8649 3946 8615 3880 C 8583 3819 8591 3820 8187 3820 C 7783 3820 7786 3820 7754 3881 C 7721 3946 7753 4034 7820 4057 C 7844 4065 7955 4069 8185 4069 C 8415 4069 8526 4065 8550 4057 Z M 4451 3125 C 4488 3105 4520 3055 4520 3014 C 4520 2948 4492 2926 4175 2743 C 3883 2574 3874 2569 3827 2573 C 3762 2579 3720 2619 3713 2681 C 3705 2759 3722 2773 4048 2960 C 4209 3053 4346 3131 4353 3134 C 4378 3144 4422 3140 4451 3125 Z M 7960 2966 C 8287 2779 8300 2769 8300 2693 C 8300 2621 8221 2557 8154 2574 C 8115 2584 7548 2911 7524 2938 C 7455 3011 7513 3140 7614 3140 C 7649 3140 7701 3114 7960 2966 Z M 5159 2424 C 5195 2394 5216 2334 5204 2298 C 5199 2284 5119 2139 5025 1975 C 4860 1686 4854 1676 4811 1657 C 4774 1641 4761 1639 4729 1649 C 4675 1665 4640 1711 4640 1765 C 4640 1802 4663 1848 4813 2110 C 4940 2334 4993 2418 5015 2431 C 5059 2459 5122 2456 5159 2424 Z M 7009 2423 C 7040 2394 7365 1837 7376 1795 C 7385 1760 7363 1704 7329 1675 C 7284 1638 7209 1639 7171 1678 C 7157 1693 7069 1836 6977 1997 C 6827 2260 6810 2294 6810 2336 C 6810 2375 6815 2387 6844 2416 C 6874 2446 6884 2450 6929 2450 C 6970 2450 6985 2445 7009 2423 Z M 6055 2196 C 6074 2188 6099 2166 6110 2148 C 6129 2117 6130 2098 6130 1759 C 6130 1406 6130 1403 6107 1369 C 6094 1350 6068 1329 6046 1321 C 5994 1301 5935 1321 5903 1369 C 5880 1403 5880 1405 5880 1759 C 5880 2098 5881 2117 5900 2148 C 5920 2180 5967 2209 6003 2210 C 6013 2210 6036 2204 6055 2196 Z"></path><path d="M5971 4936 c-19 -6 -44 -24 -55 -39 -20 -27 -21 -42 -24 -303 -3
10
+ -240 -1 -278 14 -309 40 -85 158 -86 198 -1 13 29 16 74 16 295 0 269 -5 308
11
+ -42 339 -28 23 -72 30 -107 18z"></path><path d="M5665 4645 c-207 -104 -353 -279 -417 -501 -32 -113 -32 -295 0 -408
12
+ 80 -278 293 -487 567 -556 109 -28 271 -28 380 0 272 68 489 281 566 556 32
13
+ 112 32 296 0 408 -46 164 -149 318 -277 414 -70 53 -200 122 -228 122 -14 0
14
+ -16 -20 -15 -142 l0 -143 60 -39 c168 -108 252 -329 204 -535 -68 -288 -368
15
+ -460 -650 -373 -405 123 -494 662 -150 907 l65 47 0 139 c0 163 4 158 -105
16
+ 104z"></path>
17
+ </g>
18
+ </svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
+ <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
+ width="1200.000000pt" height="1200.000000pt" viewBox="0 0 1200.000000 1200.000000"
6
+ preserveAspectRatio="xMidYMid meet">
7
+ <g transform="translate(0.000000,1200.000000) scale(0.100000,-0.100000)"
8
+ fill="#a21942" stroke="none">
9
+ <path d="M 0 6000 L 0 0 L 6000 0 L 12000 0 L 12000 6000 L 12000 12000 L 6000 12000 L 0 12000 L 0 6000 Z M 1694 10985 C 1905 10945 2045 10809 2096 10594 C 2107 10548 2112 10483 2112 10400 C 2111 10193 2062 10053 1949 9938 L 1892 9880 L 1925 9860 C 2020 9801 2106 9662 2134 9518 C 2155 9415 2155 9203 2134 9102 C 2093 8902 1995 8767 1839 8696 C 1674 8620 1390 8625 1220 8707 C 1143 8744 1041 8849 1002 8930 C 901 9143 897 9487 994 9677 C 1029 9748 1091 9821 1138 9850 C 1161 9864 1180 9879 1180 9883 C 1180 9887 1164 9905 1144 9922 C 1124 9939 1090 9980 1068 10013 C 984 10137 954 10258 962 10446 C 974 10693 1064 10851 1245 10941 C 1357 10996 1542 11015 1694 10985 Z M 8380 6556 C 8389 6544 8374 6458 8305 6138 C 8258 5916 8215 5725 8210 5713 C 8205 5700 8195 5690 8188 5690 C 8180 5690 8132 5733 8080 5785 C 8028 5837 7981 5880 7975 5880 C 7970 5880 7508 5423 6950 4865 C 6392 4307 5931 3850 5925 3850 C 5920 3850 5727 4038 5498 4267 L 5080 4685 L 4422 4027 C 4061 3666 3758 3370 3749 3370 C 3733 3370 3500 3600 3500 3616 C 3500 3631 5064 5190 5080 5190 C 5088 5190 5282 5003 5510 4775 L 5925 4360 L 6820 5255 L 7715 6150 L 7616 6249 C 7550 6315 7519 6353 7522 6366 C 7524 6381 7589 6398 7930 6476 C 8153 6526 8342 6568 8351 6569 C 8360 6570 8373 6563 8380 6556 Z M 8000 5361 C 8007 5348 8010 4717 8010 3393 C 8010 1725 8008 1441 7996 1424 C 7982 1406 7964 1405 7422 1405 C 6963 1405 6860 1407 6847 1419 C 6831 1431 6830 1544 6830 2860 L 6830 4287 L 6853 4321 C 6876 4356 7827 5270 7913 5340 C 7968 5385 7985 5389 8000 5361 Z M 5022 4083 C 5039 4068 5040 4013 5040 2755 L 5040 1443 L 5019 1424 C 4999 1406 4975 1405 4443 1405 L 3888 1405 L 3869 1429 C 3850 1452 3850 1474 3852 2229 C 3855 2871 3857 3010 3869 3032 C 3877 3047 4090 3257 4343 3497 C 4950 4075 4978 4100 4992 4100 C 4998 4100 5012 4093 5022 4083 Z M 6530 3911 C 6537 3898 6540 3493 6540 2672 C 6540 1486 6539 1452 6521 1429 L 6502 1405 L 5947 1405 C 5415 1405 5391 1406 5371 1424 L 5350 1443 L 5350 2647 C 5350 3458 5353 3858 5360 3871 C 5384 3915 5410 3896 5665 3640 C 5802 3503 5919 3390 5925 3390 C 5930 3390 6056 3512 6205 3660 C 6481 3935 6506 3955 6530 3911 Z"></path><path d="M1485 10660 c-32 -13 -73 -62 -89 -106 -36 -104 -27 -311 19 -411 55
10
+ -122 183 -126 240 -8 61 125 59 388 -3 475 -35 49 -114 72 -167 50z"></path><path d="M1475 9676 c-83 -36 -119 -144 -119 -351 1 -249 55 -355 184 -355 75
11
+ 0 127 42 154 124 36 108 37 355 2 471 -31 102 -129 151 -221 111z"></path>
12
+ </g>
13
+ </svg>
@@ -0,0 +1,25 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
+ <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
+ width="1200.000000pt" height="1200.000000pt" viewBox="0 0 1200.000000 1200.000000"
6
+ preserveAspectRatio="xMidYMid meet">
7
+ <g transform="translate(0.000000,1200.000000) scale(0.100000,-0.100000)"
8
+ fill="#fd6925" stroke="none">
9
+ <path d="M 0 6000 L 0 0 L 6000 0 L 12000 0 L 12000 6000 L 12000 12000 L 6000 12000 L 0 12000 L 0 6000 Z M 1750 10975 C 1973 10907 2103 10737 2145 10460 C 2167 10320 2166 9348 2145 9205 C 2097 8886 1971 8721 1733 8663 C 1642 8642 1429 8642 1337 8664 C 1299 8673 1243 8692 1212 8707 C 1063 8778 969 8955 966 9175 L 965 9265 L 1170 9265 L 1375 9265 L 1381 9179 C 1391 9037 1436 8980 1540 8980 C 1674 8980 1710 9083 1710 9474 L 1710 9662 L 1671 9627 C 1564 9531 1351 9514 1193 9591 C 1044 9663 954 9839 929 10111 C 916 10249 929 10433 961 10557 C 1020 10790 1163 10937 1375 10984 C 1465 11004 1670 10999 1750 10975 Z M 6220 6495 C 6283 6458 6423 6377 6530 6315 C 7224 5915 7376 5826 7387 5811 C 7397 5799 7399 5632 7400 5083 L 7400 4370 L 7427 4353 C 7442 4343 7720 4182 8044 3995 C 8462 3754 8638 3647 8647 3630 C 8665 3594 8665 2146 8647 2111 C 8640 2096 8588 2059 8520 2020 C 7485 1420 7338 1338 7312 1342 C 7297 1344 7011 1505 6676 1698 L 6067 2050 L 5481 1711 C 5159 1525 4881 1366 4863 1356 C 4804 1326 4904 1276 3970 1814 C 3725 1955 3515 2082 3503 2096 L 3480 2121 L 3480 2875 L 3480 3628 L 3508 3652 C 3523 3665 3805 3830 4133 4020 L 4730 4364 L 4730 5076 C 4730 5739 4731 5789 4748 5809 C 4757 5821 5053 5997 5405 6201 C 5941 6511 6050 6570 6075 6566 C 6092 6564 6157 6532 6220 6495 Z"></path><path d="M1464 10652 c-58 -37 -80 -117 -90 -321 -7 -156 8 -318 34 -369 26
10
+ -51 75 -82 128 -82 58 0 92 14 137 58 l37 36 0 226 c0 298 -16 387 -79 444
11
+ -32 29 -126 33 -167 8z"></path><path d="M4900 5040 c0 -313 3 -570 6 -570 11 0 984 563 984 569 0 6 -975 571
12
+ -985 571 -3 0 -5 -256 -5 -570z"></path><path d="M7014 5489 c-115 -67 -330 -191 -479 -276 -148 -86 -275 -161 -282
13
+ -167 -9 -8 32 -36 165 -112 97 -56 318 -183 490 -283 172 -100 317 -181 323
14
+ -181 5 0 9 223 9 570 0 314 -4 570 -8 570 -5 0 -102 -54 -218 -121z"></path><path d="M5485 4606 c-269 -156 -489 -287 -488 -291 1 -4 221 -135 490 -290
15
+ l488 -281 3 289 c1 158 1 416 0 572 l-3 284 -490 -283z"></path><path d="M6150 4314 l0 -576 43 25 c59 34 741 428 857 494 52 31 96 56 98 58
16
+ 1 1 -98 60 -220 130 -123 71 -346 200 -496 287 -151 87 -276 158 -278 158 -2
17
+ 0 -4 -259 -4 -576z"></path><path d="M7089 4087 c-125 -73 -366 -213 -537 -312 -172 -99 -308 -183 -304
18
+ -186 4 -4 189 -113 412 -241 724 -419 655 -381 682 -367 56 30 1044 601 1050
19
+ 608 6 5 -1043 620 -1071 628 -3 1 -108 -58 -232 -130z"></path><path d="M3650 2817 l0 -624 518 -298 c284 -164 527 -305 540 -313 l22 -14 -2
20
+ 628 -3 628 -50 29 c-171 100 -1017 587 -1020 587 -3 0 -5 -281 -5 -623z"></path><path d="M5478 3157 c-268 -155 -488 -284 -488 -287 0 -5 960 -561 981 -568 5
21
+ -2 9 216 9 567 0 314 -3 571 -7 570 -5 0 -227 -127 -495 -282z"></path><path d="M7940 3131 l-535 -309 -3 -621 c-1 -450 1 -621 9 -621 10 0 958 542
22
+ 1042 596 l37 24 0 620 c0 341 -3 620 -7 620 -5 0 -249 -139 -543 -309z"></path><path d="M4900 2144 l0 -576 33 20 c17 11 237 138 487 282 250 144 459 266
23
+ 464 270 4 5 -2 15 -15 23 -34 22 -962 557 -966 557 -2 0 -3 -259 -3 -576z"></path>
24
+ </g>
25
+ </svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
+ <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
+ width="1200.000000pt" height="1200.000000pt" viewBox="0 0 1200.000000 1200.000000"
6
+ preserveAspectRatio="xMidYMid meet">
7
+ <g transform="translate(0.000000,1200.000000) scale(0.100000,-0.100000)"
8
+ fill="#dd1367" stroke="none">
9
+ <path d="M 0 6000 L 0 0 L 6000 0 L 12000 0 L 12000 6000 L 12000 12000 L 6000 12000 L 0 12000 L 0 6000 Z M 2511 10971 C 2685 10915 2802 10783 2862 10574 C 2885 10495 2885 10493 2885 9820 L 2885 9145 L 2862 9065 C 2829 8951 2785 8875 2708 8797 C 2659 8747 2622 8721 2568 8696 C 2471 8651 2412 8640 2276 8640 C 2075 8640 1936 8692 1830 8807 C 1761 8883 1708 8985 1683 9095 C 1667 9168 1665 9230 1665 9820 C 1665 10414 1666 10471 1684 10545 C 1739 10783 1867 10922 2084 10981 C 2184 11008 2414 11003 2511 10971 Z M 1440 9825 L 1440 8680 L 1220 8680 L 1000 8680 L 1000 9596 C 1000 10464 999 10512 983 10507 C 973 10504 903 10479 826 10451 C 750 10423 682 10400 674 10400 C 663 10400 660 10430 660 10558 L 661 10715 L 798 10783 C 873 10820 971 10877 1015 10909 L 1095 10968 L 1268 10969 L 1440 10970 L 1440 9825 Z M 6559 7076 C 6947 6688 7091 6538 7087 6526 C 7081 6511 6982 6510 6010 6510 C 5038 6510 4939 6511 4933 6526 C 4929 6538 5073 6688 5461 7076 C 5755 7370 6002 7610 6010 7610 C 6018 7610 6265 7370 6559 7076 Z M 3964 5534 C 3967 5525 3970 5042 3970 4459 C 3970 3497 3969 3399 3954 3393 C 3942 3389 3792 3533 3404 3921 C 3110 4215 2870 4462 2870 4470 C 2870 4487 3929 5550 3946 5550 C 3953 5550 3961 5543 3964 5534 Z M 8617 5018 C 8910 4725 9150 4478 9150 4470 C 9150 4462 8910 4215 8616 3921 C 8228 3533 8078 3389 8066 3393 C 8051 3399 8050 3497 8050 4468 C 8050 5056 8053 5540 8057 5543 C 8060 5547 8068 5550 8074 5550 C 8080 5550 8325 5310 8617 5018 Z M 7135 5180 L 7135 4825 L 6008 4822 L 4880 4820 L 4880 5173 C 4880 5368 4883 5530 4887 5533 C 4890 5537 5398 5539 6014 5538 L 7135 5535 L 7135 5180 Z M 7135 3760 L 7135 3405 L 6008 3402 L 4880 3400 L 4880 3760 L 4880 4120 L 6008 4118 L 7135 4115 L 7135 3760 Z M 7087 2414 C 7091 2402 6947 2252 6559 1864 C 6265 1570 6018 1330 6010 1330 C 6002 1330 5755 1570 5461 1864 C 5073 2252 4929 2402 4933 2414 C 4939 2429 5038 2430 6010 2430 C 6982 2430 7081 2429 7087 2414 Z"></path><path d="M2223 10609 c-39 -12 -79 -57 -95 -112 -10 -32 -13 -192 -13 -682 l0
10
+ -640 30 -60 c26 -52 36 -63 76 -79 91 -37 172 8 203 114 24 79 24 1245 0 1335
11
+ -17 69 -52 111 -103 125 -42 12 -55 11 -98 -1z"></path>
12
+ </g>
13
+ </svg>
@@ -0,0 +1,41 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
+ <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
+ width="1200.000000pt" height="1200.000000pt" viewBox="0 0 1200.000000 1200.000000"
6
+ preserveAspectRatio="xMidYMid meet">
7
+ <g transform="translate(0.000000,1200.000000) scale(0.100000,-0.100000)"
8
+ fill="#fd9d24" stroke="none">
9
+ <path d="M 0 5986.175 L 0 -13.825 L 6000 -13.825 L 12000 -13.825 L 12000 5986.175 L 12000 11986.175 L 6000 11986.175 L 0 11986.175 L 0 5986.175 Z M 1460 9811.175 L 1460 8666.175 L 1240 8666.175 L 1020 8666.175 L 1020 9582.175 C 1020 10451.175 1019 10498.175 1003 10491.175 C 943 10467.175 713 10386.175 703 10386.175 C 693 10386.175 690 10424.175 690 10544.175 L 690 10702.175 L 843 10778.175 C 930 10822.175 1021 10876.175 1055 10905.175 L 1115 10954.175 L 1288 10955.175 L 1460 10956.175 L 1460 9811.175 Z M 2420 9811.175 L 2420 8666.175 L 2200 8666.175 L 1980 8666.175 L 1980 9582.175 C 1980 10451.175 1979 10498.175 1963 10491.175 C 1903 10467.175 1673 10386.175 1662 10386.175 C 1652 10386.175 1650 10422.175 1652 10547.175 L 1655 10707.175 L 1725 10739.175 C 1846 10794.175 1960 10859.175 2019 10908.175 L 2075 10954.175 L 2248 10955.175 L 2420 10956.175 L 2420 9811.175 Z M 6004 6400.175 C 6007 6391.175 6010 5208.175 6010 3771.175 C 6010 1197.175 6010 1157.175 5991 1146.175 C 5978 1139.175 5715 1136.175 5206 1136.175 C 4524 1136.175 4440 1138.175 4426 1152.175 C 4412 1166.175 4410 1418.175 4410 3780.175 C 4410 5798.175 4413 6395.175 4422 6404.175 C 4431 6413.175 4621 6416.175 5216 6416.175 C 5920 6416.175 5998 6414.175 6004 6400.175 Z M 7807 5436.175 C 7826 5399.175 7821 1163.175 7802 1144.175 C 7792 1134.175 7637 1130.175 7031 1128.175 C 6546 1127.175 6263 1129.175 6246 1136.175 L 6220 1146.175 L 6220 2333.175 L 6220 3521.175 L 6291 3611.175 C 6330 3661.175 6675 4098.175 7058 4584.175 C 7793 5516.175 7776 5497.175 7807 5436.175 Z M 3799 3163.175 C 4020 2878.175 4200 2641.175 4200 2636.175 C 4200 2594.175 4234 2596.175 3380 2596.175 C 2653 2596.175 2571 2598.175 2559 2612.175 C 2548 2625.175 2548 2632.175 2560 2652.175 C 2568 2665.175 2717 2861.175 2890 3088.175 C 3063 3315.175 3236 3543.175 3275 3593.175 C 3335 3673.175 3349 3686.175 3372 3683.175 C 3394 3681.175 3461 3600.175 3799 3163.175 Z M 9615 3086.175 L 9615 2901.175 L 8815 2898.175 C 8072 2896.175 8014 2897.175 8003 2913.175 C 7987 2934.175 7985 3228.175 8000 3257.175 C 8011 3276.175 8028 3276.175 8813 3274.175 L 9615 3271.175 L 9615 3086.175 Z M 9614 2760.175 C 9628 2746.175 9630 2659.175 9630 1955.175 C 9630 1429.175 9627 1158.175 9620 1145.175 C 9610 1126.175 9590 1126.175 8810 1126.175 C 8030 1126.175 8010 1126.175 8000 1145.175 C 7993 1158.175 7990 1429.175 7990 1955.175 C 7990 2659.175 7992 2746.175 8006 2760.175 C 8020 2774.175 8106 2776.175 8810 2776.175 C 9514 2776.175 9600 2774.175 9614 2760.175 Z M 4180 2436.175 C 4200 2416.175 4200 2403.175 4200 1800.175 C 4200 1395.175 4196 1178.175 4190 1165.175 C 4180 1147.175 4166 1146.175 3910 1146.175 L 3640 1146.175 L 3640 1535.175 C 3640 1876.175 3638 1927.175 3624 1940.175 C 3611 1954.175 3573 1956.175 3361 1956.175 C 3182 1956.175 3111 1953.175 3102 1944.175 C 3093 1935.175 3090 1831.175 3090 1539.175 L 3090 1146.175 L 2825 1146.175 C 2574 1146.175 2560 1147.175 2550 1165.175 C 2544 1178.175 2540 1396.175 2540 1805.175 L 2540 2425.175 L 2562 2440.175 C 2582 2454.175 2675 2456.175 3372 2456.175 C 4147 2456.175 4160 2456.175 4180 2436.175 Z"></path><path d="M4680 5510 l0 -210 190 0 190 0 0 210 0 210 -190 0 -190 0 0 -210z"></path><path d="M5365 5707 c-3 -7 -4 -100 -3 -207 l3 -195 190 0 190 0 0 205 0 205
10
+ -188 3 c-147 2 -189 0 -192 -11z"></path><path d="M4680 4620 l0 -210 190 0 190 0 0 210 0 210 -190 0 -190 0 0 -210z"></path><path d="M5365 4817 c-3 -7 -4 -100 -3 -207 l3 -195 190 0 190 0 0 205 0 205
11
+ -188 3 c-147 2 -189 0 -192 -11z"></path><path d="M4684 3927 c-2 -7 -3 -102 -2 -212 l3 -200 185 0 185 0 3 213 2 212
12
+ -185 0 c-141 0 -187 -3 -191 -13z"></path><path d="M5367 3934 c-4 -4 -7 -98 -7 -210 0 -175 2 -203 16 -208 23 -9 347
13
+ -7 362 2 9 7 12 56 10 213 l-3 204 -186 3 c-102 1 -188 -1 -192 -4z"></path><path d="M4685 3037 c-3 -7 -4 -102 -3 -212 l3 -200 185 0 185 0 0 210 0 210
14
+ -183 3 c-142 2 -184 0 -187 -11z"></path><path d="M5365 3037 c-3 -7 -4 -102 -3 -212 l3 -200 190 0 190 0 0 210 0 210
15
+ -188 3 c-147 2 -189 0 -192 -11z"></path><path d="M4692 2152 c-9 -7 -12 -56 -10 -213 l3 -204 188 -3 187 -2 -2 212 -3
16
+ 213 -175 2 c-96 2 -181 -1 -188 -5z"></path><path d="M5371 2146 c-8 -9 -11 -74 -9 -212 l3 -199 190 0 190 0 3 199 c2 138
17
+ -1 203 -9 212 -9 11 -50 14 -184 14 -134 0 -175 -3 -184 -14z"></path><path d="M7553 4878 c-44 -47 -358 -439 -371 -464 -9 -16 -8 -26 4 -42 15 -21
18
+ 22 -22 219 -22 199 0 204 0 219 22 13 19 16 61 16 260 0 225 -1 239 -20 258
19
+ -26 26 -31 26 -67 -12z"></path><path d="M7122 4168 c-8 -8 -12 -60 -12 -170 0 -145 1 -158 19 -168 12 -6 110
20
+ -10 249 -10 209 0 230 2 245 18 14 16 17 43 17 161 0 79 -5 151 -10 162 -10
21
+ 18 -24 19 -253 19 -176 0 -246 -3 -255 -12z"></path><path d="M6682 3763 c-274 -341 -262 -324 -262 -394 0 -52 2 -59 23 -64 12 -3
22
+ 128 -4 257 -3 l235 3 3 344 c2 360 2 360 -40 361 -10 0 -96 -98 -216 -247z"></path><path d="M7128 3649 c-16 -9 -18 -28 -18 -167 0 -110 4 -162 12 -170 9 -9 79
23
+ -12 255 -12 229 0 243 1 253 19 5 11 10 84 10 164 0 127 -2 146 -18 160 -16
24
+ 15 -48 17 -248 17 -137 0 -236 -5 -246 -11z"></path><path d="M6427 3123 c-11 -11 -8 -331 3 -338 5 -3 118 -6 250 -6 132 0 245 3
25
+ 250 6 6 4 10 72 10 170 0 139 -2 164 -16 169 -21 8 -489 8 -497 -1z"></path><path d="M7122 3118 c-14 -14 -17 -305 -3 -326 11 -18 485 -19 507 -1 11 9 14
26
+ 43 14 156 0 80 -5 153 -10 164 -10 18 -24 19 -253 19 -176 0 -246 -3 -255 -12z"></path><path d="M6432 2598 c-8 -8 -12 -60 -12 -168 0 -108 4 -160 12 -168 17 -17
27
+ 479 -17 496 0 8 8 12 60 12 170 0 145 -1 158 -19 168 -29 15 -473 14 -489 -2z"></path><path d="M7128 2599 c-16 -9 -18 -28 -18 -167 0 -110 4 -162 12 -170 9 -9 79
28
+ -12 255 -12 229 0 243 1 253 19 5 11 10 84 10 165 0 118 -3 147 -16 160 -13
29
+ 14 -50 16 -247 16 -139 0 -239 -5 -249 -11z"></path><path d="M6427 2073 c-4 -3 -7 -80 -7 -169 0 -151 1 -164 19 -174 12 -6 108
30
+ -10 241 -10 133 0 229 4 241 10 18 10 19 23 19 174 0 140 -2 165 -16 170 -21
31
+ 8 -489 8 -497 -1z"></path><path d="M7122 2068 c-8 -8 -12 -60 -12 -170 l0 -158 26 -10 c14 -6 123 -10
32
+ 242 -10 181 0 221 3 240 16 21 14 22 22 22 160 0 81 -5 154 -10 165 -10 18
33
+ -24 19 -253 19 -176 0 -246 -3 -255 -12z"></path><path d="M8204 2587 c-2 -7 -3 -85 -2 -172 l3 -160 255 -3 c231 -2 256 -1 268
34
+ 15 15 21 17 285 2 314 -10 18 -24 19 -266 19 -199 0 -256 -3 -260 -13z"></path><path d="M8914 2587 c-2 -7 -3 -85 -2 -172 l3 -160 255 -3 c231 -2 256 -1 268
35
+ 15 15 21 17 285 2 314 -10 18 -24 19 -266 19 -199 0 -256 -3 -260 -13z"></path><path d="M8213 2073 c-10 -3 -13 -47 -13 -168 0 -152 1 -165 19 -175 12 -6
36
+ 110 -10 250 -10 293 0 271 -15 271 184 0 118 -3 147 -16 160 -13 14 -50 16
37
+ -257 15 -133 0 -248 -3 -254 -6z"></path><path d="M8922 2068 c-8 -8 -12 -60 -12 -170 0 -145 1 -158 19 -168 12 -6 110
38
+ -10 250 -10 292 0 271 -14 271 181 0 77 -5 149 -10 160 -10 18 -24 19 -258 19
39
+ -180 0 -251 -3 -260 -12z"></path>
40
+ </g>
41
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
+ <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
+ width="1200.000000pt" height="1200.000000pt" viewBox="0 0 1200.000000 1200.000000"
6
+ preserveAspectRatio="xMidYMid meet">
7
+ <g transform="translate(0.000000,1200.000000) scale(0.100000,-0.100000)"
8
+ fill="#bf8b2e" stroke="none">
9
+ <path d="M 0 6000 L 0 0 L 6000 0 L 12000 0 L 12000 6000 L 12000 12000 L 6000 12000 L 0 12000 L 0 6000 Z M 2535 10976 C 2667 10940 2773 10865 2841 10759 C 2946 10594 2958 10318 2869 10091 C 2827 9985 2793 9930 2478 9458 C 2325 9228 2200 9036 2200 9030 C 2200 9024 2316 9020 2535 9020 L 2870 9020 L 2870 8850 L 2870 8680 L 2285 8680 L 1700 8680 L 1700 8837 L 1700 8994 L 1824 9184 C 1891 9289 2046 9528 2167 9715 C 2467 10178 2490 10227 2490 10405 C 2490 10507 2468 10567 2418 10603 C 2378 10633 2303 10637 2247 10612 C 2166 10576 2133 10493 2123 10308 L 2117 10190 L 1907 10190 L 1698 10190 L 1703 10343 C 1711 10576 1757 10713 1870 10834 C 1953 10922 2052 10971 2195 10993 C 2256 11003 2476 10992 2535 10976 Z M 1450 9825 L 1450 8680 L 1230 8680 L 1010 8680 L 1010 9595 C 1010 10098 1008 10510 1005 10510 C 1003 10510 977 10501 948 10489 C 869 10458 702 10400 690 10400 C 684 10400 680 10455 680 10558 L 680 10716 L 833 10792 C 920 10836 1011 10890 1045 10919 L 1105 10968 L 1278 10969 L 1450 10970 L 1450 9825 Z M 4340 6130 C 4782 6033 5068 5873 5391 5543 C 5691 5236 5920 4897 6230 4300 C 6456 3864 6578 3684 6799 3456 C 6979 3272 7137 3161 7376 3051 C 7824 2846 8250 2850 8614 3065 C 8884 3224 9066 3512 9138 3895 C 9163 4029 9162 4457 9136 4595 C 9099 4798 9023 4989 8924 5127 C 8710 5426 8310 5610 7870 5611 C 7747 5612 7723 5609 7596 5576 C 7201 5473 6925 5274 6597 4855 C 6464 4685 6478 4681 6328 4940 C 6168 5218 6174 5205 6189 5233 C 6208 5269 6381 5460 6484 5560 C 6790 5857 7070 6017 7456 6114 C 7688 6173 7851 6183 8093 6155 C 8562 6100 8949 5918 9236 5617 C 9481 5361 9631 5034 9697 4610 C 9722 4448 9722 4043 9697 3880 C 9658 3631 9608 3465 9510 3265 C 9422 3084 9342 2972 9200 2830 C 8911 2540 8567 2384 8144 2350 C 7856 2326 7520 2384 7233 2506 C 6895 2650 6662 2806 6415 3054 C 6144 3326 5991 3552 5699 4113 C 5384 4718 5095 5107 4795 5333 C 4569 5503 4260 5610 3996 5610 C 3497 5610 3084 5388 2888 5014 C 2759 4767 2702 4437 2728 4092 C 2745 3870 2775 3749 2847 3605 C 3018 3261 3314 3041 3710 2960 C 3900 2921 4180 2934 4365 2991 C 4439 3013 4599 3088 4637 3118 L 4660 3135 L 4525 3258 C 4451 3326 4390 3386 4390 3393 C 4390 3400 4394 3411 4398 3417 C 4402 3424 4552 3470 4730 3520 C 4909 3570 5125 3631 5210 3655 C 5574 3757 5581 3759 5594 3723 C 5602 3703 5413 2540 5399 2523 C 5393 2516 5380 2510 5370 2510 C 5360 2510 5293 2564 5220 2629 L 5088 2748 L 4982 2678 C 4772 2540 4554 2451 4318 2408 C 4150 2378 3788 2375 3635 2404 C 2910 2538 2354 3066 2212 3755 C 2152 4046 2156 4485 2221 4787 C 2393 5582 2983 6084 3840 6164 C 3865 6166 3955 6166 4040 6165 C 4169 6162 4220 6156 4340 6130 Z"></path>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,57 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
+ <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
+ width="1200.000000pt" height="1200.000000pt" viewBox="0 0 1200.000000 1200.000000"
6
+ preserveAspectRatio="xMidYMid meet">
7
+ <g transform="translate(0.000000,1200.000000) scale(0.100000,-0.100000)"
8
+ fill="#3f7e44" stroke="none">
9
+ <path d="M 0 6000 L 0 0 L 6000 0 L 12000 0 L 12000 6000 L 12000 12000 L 6000 12000 L 0 12000 L 0 6000 Z M 2475 10985 C 2618 10954 2750 10868 2820 10760 C 2838 10732 2864 10675 2878 10632 C 2902 10562 2904 10540 2905 10395 C 2905 10224 2898 10186 2843 10076 C 2811 10013 2727 9929 2672 9905 L 2629 9886 L 2667 9867 C 2766 9817 2832 9736 2878 9608 C 2903 9539 2904 9525 2904 9340 C 2904 9173 2901 9134 2883 9069 C 2819 8841 2680 8697 2483 8655 C 2395 8636 2194 8636 2106 8655 C 1949 8688 1838 8771 1767 8907 C 1713 9011 1690 9110 1683 9273 L 1677 9410 L 1896 9408 L 2115 9405 L 2121 9290 C 2134 9077 2176 9010 2300 9010 C 2372 9010 2415 9033 2440 9084 C 2485 9177 2490 9413 2450 9542 C 2417 9650 2342 9700 2215 9700 C 2167 9700 2151 9704 2146 9716 C 2143 9725 2140 9792 2140 9865 C 2140 9938 2143 10005 2146 10014 C 2151 10027 2168 10030 2229 10030 C 2393 10031 2459 10105 2476 10309 C 2483 10397 2467 10520 2441 10569 C 2414 10622 2379 10643 2311 10648 C 2174 10658 2120 10572 2120 10345 L 2120 10250 L 1900 10250 L 1680 10250 L 1680 10359 C 1680 10505 1700 10606 1750 10706 C 1821 10851 1949 10950 2110 10984 C 2197 11003 2387 11003 2475 10985 Z M 1455 10948 C 1458 10935 1459 10421 1458 9805 L 1455 8685 L 1233 8682 L 1010 8680 L 1010 9595 C 1010 10098 1008 10510 1005 10510 C 1003 10510 977 10501 948 10489 C 869 10458 702 10400 690 10400 C 684 10400 680 10455 680 10558 L 680 10716 L 833 10792 C 920 10836 1011 10890 1045 10919 L 1105 10968 L 1277 10969 C 1448 10970 1450 10970 1455 10948 Z M 6375 6700 C 7157 6659 7847 6481 8525 6145 C 8950 5935 9328 5685 9685 5380 C 9847 5241 10182 4904 10310 4750 C 10418 4621 10560 4433 10560 4419 C 10560 4408 10406 4206 10313 4095 C 9736 3412 8961 2854 8132 2526 C 7144 2134 6013 2040 4942 2261 C 4063 2442 3258 2835 2535 3436 C 2368 3574 1993 3949 1860 4109 C 1735 4261 1620 4415 1620 4433 C 1620 4448 1734 4600 1854 4747 C 1972 4890 2374 5290 2525 5416 C 2949 5768 3419 6059 3900 6268 C 4649 6592 5522 6745 6375 6700 Z"></path><path d="M5850 6265 c-215 -30 -384 -82 -586 -181 -136 -66 -187 -102 -129
10
+ -91 71 14 326 29 389 23 71 -7 147 -33 162 -57 5 -8 9 -44 9 -81 0 -60 3 -70
11
+ 30 -98 17 -18 51 -47 78 -67 74 -55 68 -67 -73 -150 -172 -102 -242 -126 -257
12
+ -87 -10 28 9 46 108 99 100 55 118 78 74 95 -42 16 -91 12 -225 -19 -69 -16
13
+ -183 -34 -255 -40 -123 -10 -134 -13 -215 -53 -67 -34 -89 -51 -104 -79 -19
14
+ -35 -19 -38 -2 -64 33 -51 232 -124 298 -110 20 5 56 32 96 71 36 36 76 67 89
15
+ 70 28 7 83 -13 83 -30 0 -7 -29 -36 -65 -64 -36 -29 -65 -57 -65 -62 0 -16
16
+ -85 -60 -116 -60 -16 0 -55 9 -87 20 -110 39 -228 23 -337 -44 -41 -25 -79
17
+ -46 -85 -46 -7 0 -19 -8 -29 -18 -13 -16 -14 -24 -5 -51 10 -29 9 -35 -17 -62
18
+ -28 -30 -86 -41 -99 -19 -12 19 -137 12 -172 -10 -49 -29 -56 -96 -17 -157 18
19
+ -28 43 -29 92 -4 20 10 73 26 117 36 89 19 162 49 214 89 68 51 105 28 180
20
+ -113 63 -117 107 -137 70 -31 -24 69 -24 90 0 90 12 0 35 -21 58 -50 32 -43
21
+ 42 -49 63 -44 14 3 44 8 67 11 38 5 43 3 57 -26 9 -16 16 -39 16 -50 0 -32
22
+ -55 -86 -112 -111 -49 -21 -58 -22 -118 -11 -36 7 -127 37 -204 68 -76 30
23
+ -190 66 -253 80 -113 25 -116 26 -169 9 -39 -12 -58 -25 -68 -44 -8 -15 -35
24
+ -54 -61 -87 l-47 -60 5 -210 c3 -164 9 -234 26 -320 21 -101 91 -335 109 -361
25
+ 4 -6 24 -17 45 -23 36 -12 41 -11 131 38 52 28 104 51 115 51 24 0 129 -81
26
+ 148 -114 7 -12 12 -33 13 -47 0 -39 20 -51 58 -37 44 17 60 -1 73 -81 13 -83
27
+ 34 -132 59 -138 11 -3 20 -8 20 -12 4 -70 22 -220 30 -250 5 -21 20 -51 32
28
+ -66 20 -26 25 -27 79 -22 31 3 84 17 118 32 99 45 155 122 202 275 16 55 31
29
+ 84 57 108 49 47 92 192 92 312 0 78 3 90 28 131 16 24 54 67 85 96 55 51 74
30
+ 91 65 140 -1 10 -32 37 -68 59 -104 66 -157 120 -196 198 -38 78 -55 168 -34
31
+ 181 9 6 51 -31 134 -118 73 -76 131 -128 147 -132 59 -14 182 46 219 107 40
32
+ 66 34 77 -129 240 -148 147 -173 180 -153 200 16 16 54 2 108 -39 27 -21 87
33
+ -58 133 -83 94 -50 118 -76 132 -141 21 -93 70 -133 229 -184 118 -38 175 -69
34
+ 235 -126 29 -27 61 -49 73 -49 25 0 62 46 92 115 17 40 21 62 16 107 -3 32 -3
35
+ 64 0 73 9 23 58 45 98 45 62 0 88 -36 156 -211 33 -87 74 -175 90 -198 31 -43
36
+ 167 -155 224 -186 36 -19 63 -15 73 11 3 9 -18 63 -52 130 l-58 114 17 67 c27
37
+ 111 52 137 156 163 58 15 159 76 171 104 8 17 4 34 -20 80 -30 56 -39 113 -25
38
+ 150 11 29 46 17 101 -35 53 -50 55 -51 105 -47 103 10 134 90 91 238 -184 642
39
+ -711 1146 -1358 1299 -206 49 -474 63 -675 36z"></path><path d="M4772 5760 c-41 -10 -61 -27 -123 -111 -53 -72 -59 -93 -30 -109 33
40
+ -17 73 -11 137 19 73 34 101 67 110 128 6 41 4 49 -16 65 -24 19 -28 20 -78 8z"></path><path d="M4625 5450 c-101 -21 -115 -35 -195 -192 -65 -127 -71 -148 -40 -148
41
+ 35 0 72 26 145 100 39 40 107 97 153 126 45 30 82 61 82 69 0 34 -78 59 -145
42
+ 45z"></path><path d="M7790 4645 c0 -3 9 -23 20 -45 26 -50 25 -62 -4 -104 -57 -84 -55
43
+ -196 4 -321 31 -65 94 -144 105 -133 15 14 36 201 38 338 2 165 -9 206 -72
44
+ 247 -30 20 -91 32 -91 18z"></path><path d="M6437 4226 c-37 -35 -33 -66 13 -88 44 -23 123 -24 144 -2 32 31 -28
45
+ 99 -97 111 -25 4 -38 -1 -60 -21z"></path><path d="M7456 4045 c-15 -14 -26 -33 -24 -42 5 -27 51 -53 103 -59 41 -5 55
46
+ -3 75 14 23 19 24 20 6 46 -22 34 -74 66 -107 66 -14 0 -38 -11 -53 -25z"></path><path d="M7690 3904 c-87 -57 -156 -84 -290 -114 -180 -41 -283 -76 -332 -113
47
+ -59 -45 -121 -140 -137 -210 -13 -60 -11 -83 20 -182 10 -33 25 -86 34 -117
48
+ 21 -77 36 -80 130 -28 61 34 76 39 81 26 3 -8 3 -19 0 -25 -20 -31 30 -55 54
49
+ -26 17 20 49 19 109 -5 l50 -19 76 87 c147 168 329 472 342 572 8 60 -37 176
50
+ -72 186 -5 2 -35 -13 -65 -32z"></path><path d="M5803 3914 c-70 -35 -109 -147 -120 -351 -5 -90 -4 -103 11 -109 25
51
+ -10 40 16 91 167 25 74 57 157 70 184 30 59 32 100 6 115 -24 12 -20 13 -58
52
+ -6z"></path><path d="M6920 2947 c-61 -25 -116 -62 -200 -132 -67 -56 -59 -56 -288 21
53
+ -211 71 -305 93 -423 101 -155 10 -299 -32 -389 -113 -72 -65 -101 -152 -62
54
+ -186 37 -33 273 -77 462 -85 380 -16 779 95 1099 307 76 51 91 64 80 75 -45
55
+ 41 -192 48 -279 12z"></path>
56
+ </g>
57
+ </svg>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
+ <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
+ width="1200.000000pt" height="1200.000000pt" viewBox="0 0 1200.000000 1200.000000"
6
+ preserveAspectRatio="xMidYMid meet">
7
+ <g transform="translate(0.000000,1200.000000) scale(0.100000,-0.100000)"
8
+ fill="#0a97d9" stroke="none">
9
+ <path d="M 0 6000 L 0 0 L 6000 0 L 12000 0 L 12000 6000 L 12000 12000 L 6000 12000 L 0 12000 L 0 6000 Z M 1460 9825 L 1460 8680 L 1240 8680 L 1020 8680 L 1020 9596 C 1020 10428 1019 10512 1004 10506 C 927 10477 708 10400 700 10400 C 694 10400 690 10461 690 10558 L 690 10716 L 833 10788 C 911 10828 1007 10884 1045 10914 L 1115 10968 L 1288 10969 L 1460 10970 L 1460 9825 Z M 2740 10260 L 2740 9550 L 2855 9550 L 2970 9550 L 2970 9385 L 2970 9220 L 2855 9220 L 2740 9220 L 2740 8950 L 2740 8680 L 2540 8680 L 2340 8680 L 2340 8950 L 2340 9220 L 1995 9220 L 1650 9220 L 1650 9392 L 1650 9565 L 1926 10215 C 2078 10572 2213 10889 2226 10918 L 2249 10970 L 2494 10970 L 2740 10970 L 2740 10260 Z M 4327 7179 C 4884 6807 5432 6809 5876 7186 C 5911 7216 5947 7240 5956 7240 C 5965 7240 5997 7218 6027 7190 C 6106 7118 6239 7033 6342 6988 C 6571 6889 6812 6875 7078 6945 C 7251 6991 7460 7091 7612 7201 C 7649 7228 7682 7250 7684 7250 C 7686 7250 7721 7222 7762 7188 C 7976 7008 8195 6912 8438 6892 C 8656 6873 8901 6919 9104 7015 C 9193 7058 9194 7056 9198 6863 L 9200 6703 L 9157 6667 C 9030 6563 8873 6485 8727 6454 C 8634 6434 8466 6434 8368 6455 C 8173 6495 7966 6606 7795 6761 C 7759 6793 7724 6820 7716 6820 C 7709 6820 7679 6799 7649 6773 C 7405 6560 7161 6460 6882 6460 C 6597 6460 6287 6574 6033 6772 C 5998 6798 5964 6820 5956 6820 C 5947 6820 5903 6793 5858 6759 C 5685 6632 5485 6536 5293 6488 C 5219 6469 5177 6466 5030 6465 C 4869 6465 4847 6467 4756 6493 C 4581 6541 4424 6628 4270 6761 C 4232 6793 4196 6820 4190 6820 C 4183 6820 4148 6793 4112 6759 C 3982 6641 3794 6531 3640 6482 C 3422 6413 3189 6425 2993 6515 C 2900 6558 2760 6650 2726 6691 C 2701 6721 2700 6725 2700 6864 C 2700 7016 2709 7049 2746 7037 C 2756 7034 2808 7013 2861 6991 C 3143 6872 3450 6854 3720 6942 C 3862 6987 4043 7096 4162 7206 C 4188 7230 4212 7250 4215 7250 C 4219 7250 4269 7218 4327 7179 Z M 4269 6221 C 4330 6173 4469 6089 4565 6044 C 4762 5950 4946 5907 5145 5906 C 5411 5905 5622 5984 5850 6168 C 5899 6207 5947 6240 5956 6240 C 5965 6240 5997 6217 6028 6190 C 6201 6036 6419 5937 6643 5909 C 6919 5875 7271 5975 7559 6168 C 7605 6200 7653 6232 7666 6240 C 7687 6253 7692 6251 7747 6204 C 7903 6069 8078 5972 8255 5923 C 8348 5897 8367 5895 8545 5896 C 8724 5897 8742 5898 8850 5927 C 8913 5944 9009 5977 9062 6000 C 9116 6023 9167 6040 9177 6038 C 9193 6035 9195 6018 9198 5868 L 9200 5702 L 9118 5640 C 9026 5571 8870 5492 8770 5464 C 8718 5449 8673 5445 8545 5446 C 8402 5446 8376 5449 8299 5473 C 8121 5527 7935 5633 7798 5759 C 7762 5793 7724 5820 7715 5820 C 7706 5820 7670 5795 7637 5764 C 7501 5641 7315 5539 7142 5493 C 7056 5470 7026 5466 6880 5466 C 6741 5466 6700 5470 6620 5489 C 6403 5542 6176 5656 5978 5812 L 5951 5833 L 5908 5798 C 5715 5641 5435 5512 5210 5475 C 4869 5420 4560 5515 4268 5765 C 4232 5795 4197 5820 4191 5820 C 4184 5820 4146 5791 4106 5756 C 3956 5625 3756 5513 3595 5470 C 3483 5439 3292 5432 3186 5454 C 3036 5485 2841 5584 2738 5682 L 2700 5717 L 2700 5859 C 2700 6000 2708 6040 2734 6040 C 2742 6040 2785 6024 2830 6005 C 3310 5800 3777 5868 4153 6199 C 4185 6227 4216 6250 4222 6250 C 4227 6250 4249 6237 4269 6221 Z M 2868 4665 C 3079 4634 3283 4558 3477 4438 C 3753 4270 4062 3939 4233 3630 L 4250 3598 L 4298 3638 C 4572 3866 5059 4172 5410 4338 C 6057 4643 6588 4739 7120 4649 C 7796 4534 8493 4097 9081 3420 C 9187 3298 9250 3213 9250 3194 C 9249 3149 8920 2777 8721 2596 C 8404 2308 8146 2129 7826 1974 C 7578 1854 7362 1783 7113 1738 C 6940 1707 6546 1705 6377 1733 C 5888 1815 5365 2034 4804 2390 C 4663 2479 4443 2635 4333 2723 C 4293 2754 4257 2780 4252 2780 C 4247 2780 4233 2761 4220 2738 C 4106 2532 3873 2255 3684 2099 C 3515 1961 3303 1843 3110 1780 C 3012 1748 2796 1706 2758 1712 C 2722 1717 2712 1746 2734 1783 C 2962 2174 3111 2571 3166 2929 C 3185 3056 3188 3310 3171 3430 C 3122 3778 2967 4206 2762 4557 C 2716 4636 2712 4654 2738 4669 C 2760 4682 2754 4682 2868 4665 Z"></path><path d="M2327 10477 c-24 -64 -327 -915 -327 -920 0 -4 77 -7 170 -7 l170 0
10
+ 0 470 c0 259 -2 470 -4 470 -2 0 -6 -6 -9 -13z"></path><path d="M7390 3826 c-117 -34 -211 -114 -261 -220 -92 -196 -7 -432 189 -528
11
+ 62 -31 73 -33 172 -33 99 0 110 2 171 32 80 40 159 120 197 200 24 52 27 70
12
+ 27 163 0 99 -2 109 -34 172 -66 132 -194 217 -339 224 -46 2 -95 -2 -122 -10z"></path>
13
+ </g>
14
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
+ <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
+ width="1200.000000pt" height="1200.000000pt" viewBox="0 0 1200.000000 1200.000000"
6
+ preserveAspectRatio="xMidYMid meet">
7
+ <g transform="translate(0.000000,1200.000000) scale(0.100000,-0.100000)"
8
+ fill="#56c02b" stroke="none">
9
+ <path d="M 0 6000 L 0 0 L 6000 0 L 12000 0 L 12000 6000 L 12000 12000 L 6000 12000 L 0 12000 L 0 6000 Z M 1480 9825 L 1480 8680 L 1260 8680 L 1040 8680 L 1040 9595 C 1040 10098 1038 10510 1035 10510 C 1033 10510 1007 10500 978 10489 C 913 10463 729 10400 718 10400 C 714 10400 710 10471 710 10558 L 710 10717 L 825 10773 C 947 10833 1085 10917 1115 10950 C 1132 10969 1146 10970 1307 10970 L 1480 10970 L 1480 9825 Z M 2848 10783 L 2845 10595 L 2498 10592 C 2306 10591 2150 10586 2149 10582 C 2144 10529 2125 10113 2127 10108 C 2129 10104 2147 10112 2167 10126 C 2253 10184 2457 10217 2571 10190 C 2826 10131 2956 9846 2937 9385 C 2924 9072 2872 8903 2753 8784 C 2657 8687 2515 8640 2320 8640 C 2070 8640 1895 8723 1816 8878 C 1770 8969 1730 9170 1730 9311 L 1730 9340 L 1945 9340 L 2160 9340 L 2160 9288 C 2161 9207 2178 9102 2199 9054 C 2225 8996 2269 8970 2340 8970 C 2482 8970 2520 9063 2520 9417 C 2520 9768 2478 9870 2330 9870 C 2241 9870 2174 9813 2147 9713 L 2136 9670 L 1948 9670 L 1760 9670 L 1760 9763 C 1760 9929 1781 10864 1786 10918 L 1791 10970 L 2321 10970 L 2850 10970 L 2848 10783 Z M 5053 6500 C 5188 6466 5322 6388 5411 6293 C 5548 6146 5620 5966 5620 5771 C 5620 5672 5594 5537 5565 5480 C 5557 5464 5550 5449 5550 5446 C 5550 5443 5576 5433 5608 5424 C 5759 5381 5929 5264 6027 5135 C 6408 4634 6150 3927 5535 3789 C 5487 3778 5344 3776 4816 3778 C 4209 3782 4150 3783 4082 3801 C 3944 3836 3827 3919 3743 4042 C 3680 4135 3650 4225 3643 4342 C 3634 4486 3671 4615 3756 4733 L 3793 4784 L 3754 4815 C 3581 4949 3498 5145 3528 5353 C 3544 5465 3600 5578 3679 5658 C 3776 5757 3877 5805 4024 5824 L 4114 5836 L 4126 5905 C 4176 6192 4400 6431 4684 6501 C 4785 6526 4955 6526 5053 6500 Z M 7574 6481 C 7615 6461 7665 6425 7699 6391 L 7756 6334 L 7806 6347 C 7836 6356 7893 6359 7955 6357 C 8041 6355 8063 6350 8110 6326 C 8237 6262 8324 6135 8274 6086 C 8252 6063 8239 6066 8189 6104 C 8092 6179 7946 6195 7810 6146 C 7682 6100 7690 6098 7626 6184 C 7527 6315 7428 6372 7292 6376 C 7207 6378 7180 6389 7180 6420 C 7180 6480 7281 6522 7415 6518 C 7495 6515 7514 6511 7574 6481 Z M 7392 5901 C 7466 5872 7567 5805 7575 5779 C 7595 5718 7547 5685 7489 5717 C 7437 5745 7267 5742 7180 5711 C 7096 5681 7018 5634 6941 5565 C 6907 5535 6870 5510 6859 5510 C 6848 5510 6818 5526 6792 5545 C 6730 5593 6619 5646 6540 5666 C 6443 5691 6310 5682 6238 5647 C 6208 5632 6176 5620 6168 5620 C 6145 5620 6127 5647 6127 5682 C 6127 5706 6137 5722 6176 5756 C 6285 5853 6433 5899 6571 5880 C 6651 5868 6654 5868 6761 5818 L 6847 5778 L 6923 5828 C 6989 5871 7063 5903 7145 5924 C 7193 5936 7336 5922 7392 5901 Z M 7227 4575 C 7302 4557 7396 4516 7474 4466 L 7532 4429 L 7597 4470 C 7666 4514 7727 4543 7800 4566 C 7865 4587 8023 4595 8093 4580 C 8171 4564 8293 4501 8358 4445 C 8400 4407 8410 4393 8410 4366 C 8410 4313 8369 4293 8325 4324 C 8286 4351 8197 4370 8110 4370 C 7932 4370 7755 4300 7605 4170 C 7578 4147 7548 4130 7534 4130 C 7519 4130 7480 4154 7432 4192 C 7339 4266 7204 4332 7096 4355 C 6981 4380 6841 4372 6767 4337 C 6737 4322 6706 4310 6699 4310 C 6674 4310 6660 4332 6660 4371 C 6660 4404 6666 4413 6718 4454 C 6786 4509 6881 4558 6953 4576 C 7024 4593 7152 4593 7227 4575 Z M 5104 3554 C 5113 3530 5111 2777 5102 2762 C 5095 2753 5053 2750 4924 2752 L 4755 2755 L 4752 3150 C 4751 3367 4752 3551 4755 3557 C 4758 3567 4802 3570 4929 3570 C 5074 3570 5099 3568 5104 3554 Z M 8535 2398 C 8538 2385 8539 2305 8538 2220 L 8535 2065 L 5940 2065 L 3345 2065 L 3342 2230 C 3341 2320 3342 2400 3344 2407 C 3348 2418 3835 2420 5939 2420 L 8530 2420 L 8535 2398 Z M 8528 1788 C 8546 1770 8545 1456 8526 1441 C 8516 1433 7831 1431 5929 1432 L 3345 1435 L 3342 1604 C 3340 1720 3343 1777 3351 1786 C 3361 1798 3759 1800 5939 1800 C 7930 1800 8519 1797 8528 1788 Z"></path>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
+ <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
+ width="1200.000000pt" height="1200.000000pt" viewBox="0 0 1200.000000 1200.000000"
6
+ preserveAspectRatio="xMidYMid meet">
7
+ <g transform="translate(0.000000,1200.000000) scale(0.100000,-0.100000)"
8
+ fill="#00689d" stroke="none">
9
+ <path d="M 0 6000 L 0 0 L 6000 0 L 12000 0 L 12000 6000 L 12000 12000 L 6000 12000 L 0 12000 L 0 6000 Z M 2532 10986 C 2789 10940 2918 10778 2937 10478 L 2943 10380 L 2733 10380 L 2522 10380 L 2518 10468 C 2511 10613 2474 10660 2368 10660 C 2226 10660 2191 10569 2190 10197 L 2190 9988 L 2221 10015 C 2299 10080 2391 10105 2529 10098 C 2721 10088 2837 10007 2910 9833 C 2958 9717 2973 9625 2974 9435 C 2974 9201 2946 9060 2873 8918 C 2787 8753 2667 8675 2460 8651 C 2356 8638 2215 8649 2143 8674 C 1939 8746 1820 8899 1763 9161 C 1747 9236 1745 9303 1745 9815 C 1745 10432 1747 10454 1801 10626 C 1883 10882 2053 10997 2355 10999 C 2410 10999 2490 10993 2532 10986 Z M 1500 9825 L 1500 8680 L 1280 8680 L 1060 8680 L 1060 9596 C 1060 10465 1059 10512 1043 10505 C 983 10481 753 10400 743 10400 C 733 10400 730 10438 730 10558 L 730 10716 L 883 10792 C 970 10836 1061 10890 1095 10919 L 1155 10968 L 1328 10969 L 1500 10970 L 1500 9825 Z M 8788 6636 C 8775 6432 8649 6309 8450 6306 L 8375 6305 L 8378 6365 C 8389 6586 8520 6718 8729 6719 L 8793 6720 L 8788 6636 Z M 8084 6601 C 8177 6512 8208 6429 8189 6324 C 8178 6266 8144 6180 8118 6146 C 8103 6128 8102 6128 8058 6158 C 8002 6196 7948 6256 7918 6312 C 7883 6377 7886 6494 7923 6575 C 7968 6672 7977 6682 8003 6668 C 8015 6662 8051 6632 8084 6601 Z M 7766 6267 C 7865 6178 7900 6064 7865 5944 C 7847 5880 7800 5790 7786 5790 C 7767 5790 7668 5873 7639 5913 C 7594 5975 7579 6018 7578 6086 C 7578 6155 7589 6198 7632 6283 L 7660 6340 L 7688 6326 C 7704 6318 7739 6291 7766 6267 Z M 8331 6240 C 8341 6234 8350 6224 8350 6217 C 8350 6196 8261 6089 8123 5944 C 7913 5723 7854 5637 7806 5481 C 7775 5382 7768 5395 7892 5307 L 7968 5253 L 7873 5247 C 7820 5243 7775 5238 7773 5236 C 7758 5221 7821 4881 7855 4798 C 7861 4783 7856 4780 7827 4780 C 7792 4780 7791 4782 7775 4838 C 7749 4925 7721 5066 7714 5148 C 7710 5188 7704 5222 7701 5224 C 7686 5233 7527 5185 7453 5150 C 7280 5066 7179 4913 7139 4672 C 7133 4635 7126 4499 7125 4370 C 7121 4110 7109 4014 7059 3865 C 6959 3565 6736 3331 6398 3170 C 6218 3085 5980 3013 5768 2979 L 5690 2967 L 5690 2684 L 5690 2400 L 5768 2400 C 5810 2400 6015 2395 6222 2390 L 6600 2379 L 6922 2415 C 7099 2434 7245 2450 7247 2450 C 7249 2450 7250 2524 7250 2615 C 7250 2778 7250 2781 7275 2805 L 7299 2830 L 7820 2830 L 8341 2830 L 8365 2805 L 8390 2781 L 8390 2266 C 8390 1983 8387 1744 8384 1735 C 8367 1691 8349 1690 7815 1690 L 7308 1690 L 7279 1719 L 7250 1748 L 7250 1909 L 7250 2069 L 7218 2074 C 7200 2077 7057 2094 6900 2111 L 6616 2142 L 5885 2126 C 5484 2117 5070 2107 4965 2105 C 4861 2102 4555 2095 4285 2090 C 4016 2085 3708 2077 3603 2074 L 3410 2068 L 3410 2259 L 3410 2450 L 3508 2449 C 3561 2449 3954 2441 4380 2431 C 4806 2421 5158 2416 5163 2420 C 5167 2423 5169 2545 5168 2690 L 5165 2954 L 5060 2967 C 4700 3011 4492 3091 4085 3345 C 3981 3410 3843 3490 3780 3523 C 3699 3564 3675 3580 3700 3576 C 3953 3535 4173 3552 4340 3624 C 4381 3641 4498 3711 4599 3778 C 4810 3919 4896 3963 5004 3988 C 5081 4005 5103 4020 5051 4020 C 5001 4020 4836 4067 4757 4103 C 4528 4209 4357 4395 4240 4668 C 4192 4780 4153 4914 4100 5155 C 3986 5668 3883 5884 3700 5992 L 3638 6028 L 3695 6035 C 3800 6049 4116 6034 4223 6011 C 4442 5963 4647 5875 4846 5742 C 4984 5649 5088 5563 5255 5400 C 5480 5181 5645 5080 5857 5029 C 5981 4999 6159 5006 6275 5045 C 6429 5096 6547 5172 6715 5326 C 6914 5509 7088 5633 7213 5679 C 7290 5707 7398 5707 7459 5679 C 7487 5667 7547 5616 7615 5549 L 7727 5439 L 7744 5502 C 7766 5581 7826 5696 7889 5780 C 7916 5816 7998 5909 8072 5986 C 8145 6062 8227 6153 8254 6188 C 8281 6222 8305 6250 8307 6250 C 8309 6250 8320 6245 8331 6240 Z M 8676 6075 C 8714 6056 8754 6032 8764 6021 C 8782 6002 8782 6000 8762 5975 C 8735 5940 8675 5893 8625 5867 C 8565 5835 8462 5837 8390 5872 C 8360 5887 8320 5912 8301 5928 L 8266 5957 L 8311 6002 C 8393 6084 8485 6123 8570 6113 C 8589 6110 8637 6093 8676 6075 Z M 8337 5736 C 8395 5709 8494 5618 8488 5598 C 8481 5576 8390 5521 8332 5504 C 8269 5485 8189 5490 8143 5514 C 8094 5539 8016 5605 8001 5633 C 7988 5658 7988 5662 8006 5675 C 8031 5695 8119 5741 8150 5751 C 8203 5767 8284 5760 8337 5736 Z M 8420 3212 C 8442 3201 8464 3177 8478 3149 C 8516 3077 8497 3009 8426 2956 C 8399 2935 8389 2935 7822 2935 L 7245 2935 L 7212 2958 C 7165 2992 7147 3033 7152 3096 C 7157 3153 7174 3180 7225 3211 C 7253 3229 7287 3230 7820 3230 C 8348 3230 8388 3229 8420 3212 Z M 3245 2528 C 3259 2522 3281 2500 3293 2481 C 3314 2447 3315 2434 3315 2265 C 3315 2106 3313 2081 3296 2054 C 3267 2006 3231 1990 3155 1990 C 3015 1990 2991 2031 2990 2262 C 2990 2442 3002 2489 3054 2521 C 3090 2543 3203 2547 3245 2528 Z M 8437 1562 C 8477 1534 8505 1464 8496 1415 C 8487 1368 8437 1313 8392 1300 C 8369 1294 8151 1290 7815 1290 C 7304 1290 7273 1291 7233 1310 C 7172 1337 7148 1380 7153 1452 C 7156 1513 7172 1538 7225 1572 C 7254 1589 7284 1590 7830 1588 L 8405 1585 L 8437 1562 Z"></path><path d="M2324 9761 c-18 -5 -48 -18 -68 -31 -68 -42 -68 -39 -64 -332 3 -252
10
+ 4 -265 27 -316 29 -64 67 -98 120 -107 91 -15 149 34 177 151 24 98 25 434 1
11
+ 515 -18 59 -70 119 -105 119 -9 0 -26 2 -37 4 -11 3 -34 1 -51 -3z"></path><path d="M5324 2935 c-3 -6 -3 -125 -2 -265 l3 -255 103 -3 102 -3 0 271 0
12
+ 271 -101 -3 c-59 -1 -103 -7 -105 -13z"></path>
13
+ </g>
14
+ </svg>
@@ -0,0 +1,39 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
+ <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
+ width="1200.000000pt" height="1200.000000pt" viewBox="0 0 1200.000000 1200.000000"
6
+ preserveAspectRatio="xMidYMid meet">
7
+ <g transform="translate(0.000000,1200.000000) scale(0.100000,-0.100000)"
8
+ fill="#001b8c" stroke="none">
9
+ <path d="M 0 6000 L 0 0 L 6000 0 L 12000 0 L 12000 6000 L 12000 12000 L 6000 12000 L 0 12000 L 0 6000 Z M 1470 9825 L 1470 8680 L 1250 8680 L 1030 8680 L 1030 9595 C 1030 10098 1028 10510 1026 10510 C 1024 10510 955 10485 872 10455 C 789 10425 716 10400 710 10400 C 704 10400 700 10456 700 10558 L 700 10717 L 815 10773 C 937 10833 1075 10917 1105 10950 C 1122 10969 1136 10970 1297 10970 L 1470 10970 L 1470 9825 Z M 2780 10823 L 2780 10676 L 2559 9761 C 2438 9257 2329 8808 2318 8763 L 2298 8680 L 2085 8680 L 1873 8680 L 1921 8878 C 1947 8986 2055 9423 2159 9849 C 2264 10275 2350 10627 2350 10632 C 2350 10636 2211 10640 2040 10640 L 1730 10640 L 1730 10805 L 1730 10970 L 2255 10970 L 2780 10970 L 2780 10823 Z M 6361 6266 C 6616 6207 6837 6079 7020 5884 C 7129 5768 7210 5640 7279 5478 C 7299 5431 7300 5430 7343 5430 C 7412 5430 7556 5402 7652 5370 C 7848 5304 8008 5204 8161 5051 C 8417 4795 8540 4497 8540 4134 C 8540 3772 8406 3461 8137 3198 L 8048 3112 L 8065 3035 C 8118 2799 8090 2494 7995 2269 C 7790 1782 7323 1470 6801 1470 C 6581 1470 6417 1509 6213 1611 L 6072 1681 L 6033 1657 C 5914 1582 5751 1517 5598 1483 C 5482 1458 5208 1458 5092 1483 C 4574 1596 4188 1980 4074 2495 C 4040 2649 4045 2910 4085 3061 L 4099 3112 L 4002 3205 C 3794 3405 3667 3641 3619 3918 C 3564 4245 3632 4572 3813 4847 C 4028 5175 4385 5393 4764 5428 C 4818 5433 4845 5440 4851 5450 C 4855 5458 4877 5505 4900 5554 C 4922 5603 4966 5682 4997 5729 C 5066 5832 5217 5987 5320 6059 C 5470 6165 5681 6253 5845 6279 C 5884 6285 5926 6292 5940 6294 C 5954 6297 6030 6297 6110 6295 C 6218 6292 6282 6285 6361 6266 Z"></path><path d="M5936 6030 c-216 -34 -410 -126 -568 -269 -69 -62 -168 -192 -209
10
+ -272 -34 -68 -35 -79 -10 -79 41 0 201 -54 297 -99 146 -70 245 -140 365 -260
11
+ 100 -100 190 -220 235 -313 10 -21 21 -38 24 -38 4 0 12 12 19 28 28 62 146
12
+ 226 217 302 166 176 393 309 619 364 39 9 76 19 83 22 10 3 4 22 -23 72 -142
13
+ 259 -382 447 -662 518 -107 27 -293 38 -387 24z"></path><path d="M4740 5163 c-143 -25 -312 -93 -428 -172 -201 -136 -354 -355 -419
14
+ -597 -23 -87 -26 -118 -26 -254 0 -135 3 -168 26 -252 30 -112 86 -239 146
15
+ -326 47 -69 150 -184 161 -180 4 2 36 46 71 98 126 189 340 370 546 460 103
16
+ 45 234 85 316 95 31 4 57 9 57 11 0 2 -23 27 -51 56 -241 250 -363 558 -362
17
+ 916 0 83 -3 151 -6 151 -3 -1 -17 -4 -31 -6z"></path><path d="M7365 5007 c0 -178 -14 -265 -65 -419 -55 -163 -156 -333 -280 -470
18
+ -49 -54 -57 -68 -42 -68 46 0 257 -61 343 -99 243 -108 455 -299 604 -545 l17
19
+ -28 55 53 c111 109 206 280 255 459 31 115 33 365 4 480 -105 422 -425 716
20
+ -861 793 l-30 6 0 -162z"></path><path d="M5044 5124 c-4 -20 -4 -98 -1 -173 6 -147 29 -250 86 -376 111 -245
21
+ 332 -448 591 -544 69 -26 190 -54 198 -46 3 3 8 61 10 128 15 481 -308 907
22
+ -780 1027 -42 11 -81 20 -87 20 -5 0 -13 -16 -17 -36z"></path><path d="M7025 5149 c-385 -90 -681 -376 -782 -758 -22 -82 -26 -119 -27 -248
23
+ -1 -83 2 -155 6 -158 11 -11 170 31 251 66 283 120 507 371 591 662 33 114 50
24
+ 271 39 367 -9 83 -11 84 -78 69z"></path><path d="M6623 3786 c-107 -21 -284 -83 -297 -105 -3 -4 11 -35 30 -67 243
25
+ -404 718 -597 1163 -473 80 21 201 73 201 85 0 4 -18 37 -39 73 -133 224 -371
26
+ 401 -626 467 -124 32 -321 41 -432 20z"></path><path d="M5159 3775 c-300 -57 -550 -237 -718 -517 l-22 -37 38 -19 c50 -25
27
+ 184 -68 253 -81 219 -40 430 -11 635 88 123 61 206 123 310 233 63 67 165 210
28
+ 165 232 0 9 -156 68 -228 88 -102 26 -326 33 -433 13z"></path><path d="M6019 3447 c-180 -211 -274 -489 -255 -750 16 -205 104 -430 231
29
+ -582 37 -44 72 -81 79 -83 27 -6 156 173 212 293 82 177 113 414 80 603 -20
30
+ 112 -67 242 -124 343 -48 84 -156 219 -175 219 -6 -1 -28 -20 -48 -43z"></path><path d="M5419 2953 c-195 -88 -427 -126 -637 -105 -135 13 -275 47 -377 91
31
+ l-70 30 -9 -27 c-5 -15 -9 -97 -9 -182 -1 -132 2 -168 22 -244 101 -387 375
32
+ -661 768 -768 114 -31 354 -31 470 0 92 24 199 64 250 95 l34 19 -26 32 c-168
33
+ 204 -256 375 -306 596 -25 111 -35 311 -20 419 6 46 10 85 9 86 -2 1 -46 -18
34
+ -99 -42z"></path><path d="M6625 2977 c14 -45 18 -315 6 -396 -35 -240 -129 -455 -278 -638 -71
35
+ -88 -74 -81 43 -131 141 -59 232 -77 404 -76 125 0 171 4 237 22 322 84 559
36
+ 280 698 576 71 151 90 242 90 436 0 91 -3 172 -7 181 -6 15 -17 13 -92 -18
37
+ -318 -127 -687 -120 -1007 21 -94 42 -101 43 -94 23z"></path>
38
+ </g>
39
+ </svg>
@@ -0,0 +1,3 @@
1
+ $(() => {
2
+ window.DecidimChallenges = window.DecidimChallenges || {};
3
+ });
@@ -0,0 +1,3 @@
1
+ $(() => {
2
+ const $form = $(".challenge_form_admin");
3
+ });
@@ -0,0 +1,75 @@
1
+ const border_style_selected= "3px solid #555"
2
+ const border_style_unselected= "3px"
3
+
4
+ function toggleSdgFilterCellSelect(cell, selected) {
5
+ if(selected) {
6
+ cell.css("border", border_style_selected);
7
+ } else {
8
+ cell.css("border", border_style_unselected);
9
+ }
10
+ }
11
+
12
+ $(document).ready(function() {
13
+ window.onclick = function(event) {
14
+ let modal = document.querySelector("#sdgs-modal");
15
+
16
+ if (event.target == modal) {
17
+ modal.style.display = "none";
18
+ }
19
+ }
20
+
21
+ /**
22
+ * Setup Sdgs selector
23
+ */
24
+ $('div.sdgs-filter input[type=hidden]').each(function () {
25
+ const input= $(this);
26
+ const current_value= input.val()
27
+
28
+ // initial activation
29
+ if (current_value != "" && (typeof current_value == "string")) {
30
+ const cell= $('#sdgs-modal .sdg-cell[data-value=' + current_value + ']')
31
+ toggleSdgFilterCellSelect(cell, true)
32
+ }
33
+ })
34
+
35
+ /**
36
+ * Configure click event
37
+ */
38
+ $('#sdgs-modal .sdg-cell').each(function (idx) {
39
+ const cell= $(this)
40
+ const current_value= cell.attr("data-value")
41
+
42
+ cell.click(function () {
43
+ let selected= false
44
+
45
+ // toggle inputs
46
+ const inputs= $('div.sdgs-filter input[type=hidden][data-value=' + current_value + ']')
47
+ inputs.each(function () {
48
+ const input= $(this)
49
+ if(input.val() == "") {
50
+ input.val(current_value)
51
+ selected= true
52
+ } else {
53
+ input.val("")
54
+ }
55
+ })
56
+
57
+ // update cell
58
+ toggleSdgFilterCellSelect(cell, selected)
59
+ });
60
+ });
61
+
62
+ /**
63
+ * Send the filter form when done
64
+ */
65
+ let sdgs_opener= null;
66
+ $('.sdgs-filter').click(function() {
67
+ sdgs_opener= $(this)
68
+ });
69
+ $('#sdgs-modal .reveal__footer a.button').click(function() {
70
+ sdgs_opener.parent("form").submit()
71
+ sdgs_opener= null
72
+ });
73
+
74
+
75
+ })
@@ -0,0 +1,3 @@
1
+ @import "stylesheets/decidim/shared/base.scss";
2
+ @import "stylesheets/decidim/sdgs/sdgs_filter/button.scss";
3
+ @import "stylesheets/decidim/sdgs/sdgs_filter/modal.scss";
@@ -0,0 +1,3 @@
1
+ @import "stylesheets/decidim/shared/base.scss";
2
+ @import "stylesheets/decidim/sdgs/sdgs_filter/button.scss";
3
+ @import "stylesheets/decidim/sdgs/sdgs_filter/modal.scss";