decidim-proposals 0.27.6 → 0.28.0.rc4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (278) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/proposals/collaborative_draft_cell.rb +1 -1
  3. data/app/cells/decidim/proposals/collaborative_draft_l_cell.rb +16 -0
  4. data/app/cells/decidim/proposals/collaborative_draft_link_to_proposal/show.erb +4 -12
  5. data/app/cells/decidim/proposals/collaborative_draft_link_to_proposal_cell.rb +0 -29
  6. data/app/cells/decidim/proposals/collaborative_draft_metadata_cell.rb +30 -0
  7. data/app/cells/decidim/proposals/content_blocks/highlighted_proposals_cell.rb +2 -8
  8. data/app/cells/decidim/proposals/cost_report/show.erb +5 -34
  9. data/app/cells/decidim/proposals/cost_report_cell.rb +0 -13
  10. data/app/cells/decidim/proposals/highlighted_proposals_for_component/show.erb +29 -17
  11. data/app/cells/decidim/proposals/highlighted_proposals_for_component_cell.rb +34 -8
  12. data/app/cells/decidim/proposals/irreversible_action_modal/show.erb +9 -17
  13. data/app/cells/decidim/proposals/irreversible_action_modal_cell.rb +7 -9
  14. data/app/cells/decidim/proposals/participatory_text_proposal/buttons.erb +21 -31
  15. data/app/cells/decidim/proposals/participatory_text_proposal/show.erb +5 -9
  16. data/app/cells/decidim/proposals/participatory_text_proposal_cell.rb +0 -9
  17. data/app/cells/decidim/proposals/proposal_activity_cell.rb +1 -12
  18. data/app/cells/decidim/proposals/proposal_cell.rb +6 -1
  19. data/app/cells/decidim/proposals/proposal_l_cell.rb +47 -0
  20. data/app/cells/decidim/proposals/proposal_link_to_collaborative_draft_cell.rb +6 -4
  21. data/app/cells/decidim/proposals/proposal_link_to_rejected_emendation_cell.rb +9 -7
  22. data/app/cells/decidim/proposals/proposal_linked_resources/show.erb +3 -8
  23. data/app/cells/decidim/proposals/proposal_metadata_cell.rb +61 -0
  24. data/app/cells/decidim/proposals/proposal_s_cell.rb +21 -0
  25. data/app/cells/decidim/proposals/proposals_picker/show.erb +13 -13
  26. data/app/cells/decidim/proposals/proposals_picker_cell.rb +15 -38
  27. data/app/commands/decidim/proposals/accept_access_to_collaborative_draft.rb +1 -1
  28. data/app/commands/decidim/proposals/admin/answer_proposal.rb +1 -1
  29. data/app/commands/decidim/proposals/admin/assign_proposals_to_valuator.rb +3 -3
  30. data/app/commands/decidim/proposals/admin/create_proposal.rb +2 -2
  31. data/app/commands/decidim/proposals/admin/create_proposal_note.rb +4 -4
  32. data/app/commands/decidim/proposals/admin/discard_participatory_text.rb +1 -1
  33. data/app/commands/decidim/proposals/admin/import_participatory_text.rb +1 -1
  34. data/app/commands/decidim/proposals/admin/import_proposals.rb +2 -13
  35. data/app/commands/decidim/proposals/admin/merge_proposals.rb +1 -1
  36. data/app/commands/decidim/proposals/admin/notify_proposal_answer.rb +3 -3
  37. data/app/commands/decidim/proposals/admin/publish_answers.rb +1 -1
  38. data/app/commands/decidim/proposals/admin/publish_participatory_text.rb +2 -2
  39. data/app/commands/decidim/proposals/admin/split_proposals.rb +1 -1
  40. data/app/commands/decidim/proposals/admin/unassign_proposals_from_valuator.rb +2 -2
  41. data/app/commands/decidim/proposals/admin/update_participatory_text.rb +1 -1
  42. data/app/commands/decidim/proposals/admin/update_proposal.rb +5 -1
  43. data/app/commands/decidim/proposals/admin/update_proposal_scope.rb +1 -1
  44. data/app/commands/decidim/proposals/create_collaborative_draft.rb +13 -3
  45. data/app/commands/decidim/proposals/create_proposal.rb +14 -5
  46. data/app/commands/decidim/proposals/hashtags_methods.rb +1 -1
  47. data/app/commands/decidim/proposals/publish_proposal.rb +1 -1
  48. data/app/commands/decidim/proposals/reject_access_to_collaborative_draft.rb +1 -1
  49. data/app/commands/decidim/proposals/request_access_to_collaborative_draft.rb +1 -1
  50. data/app/commands/decidim/proposals/unvote_proposal.rb +2 -2
  51. data/app/commands/decidim/proposals/update_collaborative_draft.rb +12 -2
  52. data/app/commands/decidim/proposals/update_proposal.rb +16 -14
  53. data/app/commands/decidim/proposals/vote_proposal.rb +2 -2
  54. data/app/controllers/concerns/decidim/proposals/admin/filterable.rb +4 -13
  55. data/app/controllers/decidim/proposals/admin/proposal_answers_controller.rb +2 -2
  56. data/app/controllers/decidim/proposals/admin/proposal_notes_controller.rb +1 -1
  57. data/app/controllers/decidim/proposals/admin/proposals_controller.rb +2 -2
  58. data/app/controllers/decidim/proposals/collaborative_drafts_controller.rb +3 -9
  59. data/app/controllers/decidim/proposals/proposal_votes_controller.rb +3 -3
  60. data/app/controllers/decidim/proposals/proposals_controller.rb +42 -12
  61. data/app/events/decidim/proposals/accepted_proposal_event.rb +1 -1
  62. data/app/events/decidim/proposals/admin/proposal_note_created_event.rb +1 -1
  63. data/app/events/decidim/proposals/admin/update_proposal_category_event.rb +1 -1
  64. data/app/events/decidim/proposals/admin/update_proposal_scope_event.rb +1 -1
  65. data/app/events/decidim/proposals/collaborative_draft_access_accepted_event.rb +1 -1
  66. data/app/events/decidim/proposals/collaborative_draft_access_rejected_event.rb +1 -1
  67. data/app/events/decidim/proposals/collaborative_draft_access_request_event.rb +1 -1
  68. data/app/events/decidim/proposals/collaborative_draft_access_requested_event.rb +1 -1
  69. data/app/events/decidim/proposals/collaborative_draft_access_requester_accepted_event.rb +1 -1
  70. data/app/events/decidim/proposals/collaborative_draft_access_requester_rejected_event.rb +1 -1
  71. data/app/events/decidim/proposals/collaborative_draft_withdrawn_event.rb +1 -1
  72. data/app/events/decidim/proposals/evaluating_proposal_event.rb +1 -1
  73. data/app/events/decidim/proposals/proposal_endorsed_event.rb +1 -1
  74. data/app/events/decidim/proposals/proposal_mentioned_event.rb +1 -1
  75. data/app/events/decidim/proposals/publish_proposal_event.rb +1 -1
  76. data/app/events/decidim/proposals/rejected_proposal_event.rb +1 -1
  77. data/app/forms/decidim/proposals/admin/import_participatory_text_form.rb +1 -1
  78. data/app/forms/decidim/proposals/admin/proposal_base_form.rb +2 -2
  79. data/app/forms/decidim/proposals/admin/proposal_form.rb +1 -1
  80. data/app/forms/decidim/proposals/admin/proposals_fork_form.rb +1 -1
  81. data/app/forms/decidim/proposals/admin/valuation_assignment_form.rb +1 -1
  82. data/app/forms/decidim/proposals/proposal_form.rb +9 -27
  83. data/app/helpers/decidim/proposals/admin/proposal_bulk_actions_helper.rb +1 -1
  84. data/app/helpers/decidim/proposals/admin/proposals_helper.rb +13 -13
  85. data/app/helpers/decidim/proposals/application_helper.rb +79 -27
  86. data/app/helpers/decidim/proposals/collaborative_draft_helper.rb +44 -4
  87. data/app/helpers/decidim/proposals/map_helper.rb +3 -4
  88. data/app/helpers/decidim/proposals/participatory_texts_helper.rb +1 -9
  89. data/app/helpers/decidim/proposals/proposal_cells_helper.rb +1 -1
  90. data/app/helpers/decidim/proposals/proposal_votes_helper.rb +2 -24
  91. data/app/helpers/decidim/proposals/proposal_wizard_helper.rb +14 -81
  92. data/app/helpers/decidim/proposals/proposals_helper.rb +0 -12
  93. data/app/jobs/decidim/proposals/hide_all_created_by_author_job.rb +20 -0
  94. data/app/jobs/decidim/proposals/notify_proposals_mentioned_job.rb +1 -1
  95. data/app/jobs/decidim/proposals/settings_change_job.rb +2 -2
  96. data/app/models/decidim/proposals/collaborative_draft.rb +4 -16
  97. data/app/models/decidim/proposals/proposal.rb +33 -16
  98. data/app/models/decidim/proposals/proposal_vote.rb +3 -3
  99. data/app/models/decidim/proposals/valuation_assignment.rb +1 -2
  100. data/app/packs/documents/decidim/proposals/participatory_texts/participatory_text.md +9 -4
  101. data/app/packs/entrypoints/decidim_proposals.js +4 -0
  102. data/app/packs/entrypoints/decidim_proposals_admin.js +0 -1
  103. data/app/packs/images/decidim/gamification/badges/decidim_gamification_badges_accepted_proposals.svg +68 -1
  104. data/app/packs/images/decidim/gamification/badges/decidim_gamification_badges_proposal_votes.svg +34 -1
  105. data/app/packs/images/decidim/gamification/badges/decidim_gamification_badges_proposals.svg +64 -1
  106. data/app/packs/src/decidim/proposals/add_proposal.js +25 -39
  107. data/app/packs/src/decidim/proposals/admin/proposals.js +0 -7
  108. data/app/packs/src/decidim/proposals/choose_proposals.js +20 -0
  109. data/app/packs/stylesheets/decidim/proposals/proposals.scss +97 -0
  110. data/app/permissions/decidim/proposals/admin/permissions.rb +3 -3
  111. data/app/permissions/decidim/proposals/permissions.rb +1 -10
  112. data/app/presenters/decidim/proposals/admin_log/proposal_note_presenter.rb +2 -2
  113. data/app/presenters/decidim/proposals/admin_log/proposal_presenter.rb +2 -2
  114. data/app/presenters/decidim/proposals/admin_log/valuation_assignment_presenter.rb +2 -2
  115. data/app/presenters/decidim/proposals/proposal_presenter.rb +6 -2
  116. data/app/services/decidim/proposals/diff_renderer.rb +3 -3
  117. data/app/services/decidim/proposals/proposal_builder.rb +6 -6
  118. data/app/views/decidim/proposals/admin/participatory_texts/_article-preview.html.erb +2 -4
  119. data/app/views/decidim/proposals/admin/participatory_texts/_bulk-actions.html.erb +2 -2
  120. data/app/views/decidim/proposals/admin/participatory_texts/index.html.erb +58 -46
  121. data/app/views/decidim/proposals/admin/participatory_texts/new_import.html.erb +31 -33
  122. data/app/views/decidim/proposals/admin/proposal_answers/_form.html.erb +17 -11
  123. data/app/views/decidim/proposals/admin/proposal_notes/_form.html.erb +5 -6
  124. data/app/views/decidim/proposals/admin/proposal_notes/_proposal_notes.html.erb +28 -36
  125. data/app/views/decidim/proposals/admin/proposals/_bulk-actions.html.erb +27 -30
  126. data/app/views/decidim/proposals/admin/proposals/_documents.html.erb +13 -0
  127. data/app/views/decidim/proposals/admin/proposals/_endorsers.html.erb +25 -0
  128. data/app/views/decidim/proposals/admin/proposals/_form.html.erb +70 -90
  129. data/app/views/decidim/proposals/admin/proposals/_meetings.html.erb +13 -0
  130. data/app/views/decidim/proposals/admin/proposals/_photos.html.erb +13 -0
  131. data/app/views/decidim/proposals/admin/proposals/_proposal-tr.html.erb +31 -25
  132. data/app/views/decidim/proposals/admin/proposals/bulk_actions/_assign_to_valuator.html.erb +3 -3
  133. data/app/views/decidim/proposals/admin/proposals/bulk_actions/_dropdown.html.erb +3 -2
  134. data/app/views/decidim/proposals/admin/proposals/bulk_actions/_merge.html.erb +4 -4
  135. data/app/views/decidim/proposals/admin/proposals/bulk_actions/_publish_answers.html.erb +3 -3
  136. data/app/views/decidim/proposals/admin/proposals/bulk_actions/_recategorize.html.erb +3 -3
  137. data/app/views/decidim/proposals/admin/proposals/bulk_actions/_scope-change.html.erb +4 -8
  138. data/app/views/decidim/proposals/admin/proposals/bulk_actions/_split.html.erb +3 -3
  139. data/app/views/decidim/proposals/admin/proposals/bulk_actions/_unassign_from_valuator.html.erb +3 -3
  140. data/app/views/decidim/proposals/admin/proposals/edit.html.erb +17 -7
  141. data/app/views/decidim/proposals/admin/proposals/index.html.erb +50 -63
  142. data/app/views/decidim/proposals/admin/proposals/new.html.erb +16 -6
  143. data/app/views/decidim/proposals/admin/proposals/publish_answers.js.erb +2 -2
  144. data/app/views/decidim/proposals/admin/proposals/show.html.erb +204 -162
  145. data/app/views/decidim/proposals/admin/proposals/update_attribute.js.erb +5 -6
  146. data/app/views/decidim/proposals/admin/proposals_imports/new.html.erb +48 -34
  147. data/app/views/decidim/proposals/collaborative_drafts/_accept_request_access_form.html.erb +1 -1
  148. data/app/views/decidim/proposals/collaborative_drafts/_actions.html.erb +7 -0
  149. data/app/views/decidim/proposals/collaborative_drafts/_collaborative_draft_aside.html.erb +53 -0
  150. data/app/views/decidim/proposals/collaborative_drafts/_collaborative_drafts.html.erb +12 -13
  151. data/app/views/decidim/proposals/collaborative_drafts/_collaborator_requests.html.erb +8 -12
  152. data/app/views/decidim/proposals/collaborative_drafts/_edit_form_fields.html.erb +26 -54
  153. data/app/views/decidim/proposals/collaborative_drafts/_reject_request_access_form.html.erb +1 -3
  154. data/app/views/decidim/proposals/collaborative_drafts/_request_access_form.html.erb +1 -1
  155. data/app/views/decidim/proposals/collaborative_drafts/edit.html.erb +23 -25
  156. data/app/views/decidim/proposals/collaborative_drafts/index.html.erb +30 -22
  157. data/app/views/decidim/proposals/collaborative_drafts/index.js.erb +0 -5
  158. data/app/views/decidim/proposals/collaborative_drafts/new.html.erb +22 -18
  159. data/app/views/decidim/proposals/collaborative_drafts/show.html.erb +39 -109
  160. data/app/views/decidim/proposals/proposal_votes/update_buttons_and_counters.js.erb +2 -2
  161. data/app/views/decidim/proposals/proposals/_actions.html.erb +13 -0
  162. data/app/views/decidim/proposals/proposals/_edit_form_fields.html.erb +31 -70
  163. data/app/views/decidim/proposals/proposals/_linked_proposals.html.erb +3 -35
  164. data/app/views/decidim/proposals/proposals/_proposal_aside.html.erb +40 -0
  165. data/app/views/decidim/proposals/proposals/_proposals.html.erb +18 -39
  166. data/app/views/decidim/proposals/proposals/_proposals_picker.html.erb +5 -0
  167. data/app/views/decidim/proposals/proposals/_remaining_votes_count.html.erb +3 -3
  168. data/app/views/decidim/proposals/proposals/_vote_button.html.erb +16 -17
  169. data/app/views/decidim/proposals/proposals/_votes_count.html.erb +3 -6
  170. data/app/views/decidim/proposals/proposals/_voting_rules.html.erb +28 -41
  171. data/app/views/decidim/proposals/proposals/_wizard_header.html.erb +19 -25
  172. data/app/views/decidim/proposals/proposals/compare.html.erb +17 -16
  173. data/app/views/decidim/proposals/proposals/complete.html.erb +26 -21
  174. data/app/views/decidim/proposals/proposals/edit.html.erb +32 -27
  175. data/app/views/decidim/proposals/proposals/edit_draft.html.erb +21 -19
  176. data/app/views/decidim/proposals/proposals/index.html.erb +56 -47
  177. data/app/views/decidim/proposals/proposals/index.js.erb +0 -5
  178. data/app/views/decidim/proposals/proposals/new.html.erb +30 -35
  179. data/app/views/decidim/proposals/proposals/participatory_texts/_proposal_vote_button.html.erb +5 -5
  180. data/app/views/decidim/proposals/proposals/participatory_texts/_view_index.html.erb +15 -8
  181. data/app/views/decidim/proposals/proposals/participatory_texts/participatory_text.html.erb +32 -15
  182. data/app/views/decidim/proposals/proposals/preview.html.erb +37 -34
  183. data/app/views/decidim/proposals/proposals/show.html.erb +90 -108
  184. data/app/views/decidim/proposals/versions/show.html.erb +13 -5
  185. data/config/assets.rb +0 -1
  186. data/config/brakeman.ignore +31 -56
  187. data/config/locales/ar.yml +21 -157
  188. data/config/locales/bg.yml +2 -184
  189. data/config/locales/ca.yml +87 -145
  190. data/config/locales/cs.yml +74 -134
  191. data/config/locales/de.yml +71 -129
  192. data/config/locales/el.yml +57 -121
  193. data/config/locales/en.yml +76 -134
  194. data/config/locales/es-MX.yml +75 -133
  195. data/config/locales/es-PY.yml +75 -133
  196. data/config/locales/es.yml +82 -140
  197. data/config/locales/eu.yml +74 -132
  198. data/config/locales/fi-plain.yml +68 -126
  199. data/config/locales/fi.yml +67 -125
  200. data/config/locales/fr-CA.yml +72 -131
  201. data/config/locales/fr.yml +76 -135
  202. data/config/locales/ga-IE.yml +0 -39
  203. data/config/locales/gl.yml +10 -130
  204. data/config/locales/hu.yml +43 -148
  205. data/config/locales/id-ID.yml +8 -114
  206. data/config/locales/is-IS.yml +3 -60
  207. data/config/locales/it.yml +12 -145
  208. data/config/locales/ja.yml +78 -141
  209. data/config/locales/lb.yml +0 -5
  210. data/config/locales/lt.yml +64 -126
  211. data/config/locales/lv.yml +12 -144
  212. data/config/locales/nl.yml +14 -147
  213. data/config/locales/no.yml +10 -134
  214. data/config/locales/pl.yml +15 -177
  215. data/config/locales/pt-BR.yml +13 -199
  216. data/config/locales/pt.yml +10 -142
  217. data/config/locales/ro-RO.yml +12 -146
  218. data/config/locales/ru.yml +4 -70
  219. data/config/locales/sk.yml +18 -145
  220. data/config/locales/sr-CS.yml +0 -23
  221. data/config/locales/sv.yml +25 -145
  222. data/config/locales/tr-TR.yml +14 -148
  223. data/config/locales/uk.yml +4 -70
  224. data/config/locales/zh-CN.yml +8 -135
  225. data/config/locales/zh-TW.yml +34 -107
  226. data/db/migrate/20170307085300_migrate_proposal_reports_data_to_reports.rb +1 -1
  227. data/db/migrate/20230427105700_change_states_on_collaborative_drafts.rb +34 -0
  228. data/db/migrate/20230427105700_change_states_on_proposals.rb +34 -0
  229. data/lib/decidim/api/proposals_type.rb +2 -2
  230. data/lib/decidim/proposals/component.rb +11 -289
  231. data/lib/decidim/proposals/doc_to_markdown.rb +0 -4
  232. data/lib/decidim/proposals/engine.rb +43 -7
  233. data/lib/decidim/proposals/import/proposal_answer_creator.rb +1 -1
  234. data/lib/decidim/proposals/import/proposal_creator.rb +10 -10
  235. data/lib/decidim/proposals/markdown_to_proposals.rb +8 -2
  236. data/lib/decidim/proposals/proposal_serializer.rb +4 -5
  237. data/lib/decidim/proposals/seeds.rb +278 -0
  238. data/lib/decidim/proposals/test/factories.rb +105 -72
  239. data/lib/decidim/proposals/valuatable.rb +1 -2
  240. data/lib/decidim/proposals/version.rb +1 -1
  241. metadata +57 -69
  242. data/app/cells/decidim/proposals/collaborative_draft_m/footer.erb +0 -6
  243. data/app/cells/decidim/proposals/collaborative_draft_m/tags.erb +0 -1
  244. data/app/cells/decidim/proposals/collaborative_draft_m_cell.rb +0 -44
  245. data/app/cells/decidim/proposals/content_blocks/highlighted_proposals/elements.erb +0 -5
  246. data/app/cells/decidim/proposals/content_blocks/highlighted_proposals/heading.erb +0 -1
  247. data/app/cells/decidim/proposals/proposal_link_to_rejected_emendation/show.erb +0 -9
  248. data/app/cells/decidim/proposals/proposal_m/footer.erb +0 -26
  249. data/app/cells/decidim/proposals/proposal_m/tags.erb +0 -1
  250. data/app/cells/decidim/proposals/proposal_m_cell.rb +0 -151
  251. data/app/cells/decidim/proposals/proposal_tags/show.erb +0 -33
  252. data/app/cells/decidim/proposals/proposal_tags_cell.rb +0 -35
  253. data/app/cells/decidim/proposals/proposals_picker/proposals.erb +0 -12
  254. data/app/controllers/concerns/decidim/proposals/admin/picker.rb +0 -21
  255. data/app/controllers/decidim/proposals/widgets_controller.rb +0 -29
  256. data/app/helpers/decidim/proposals/admin/filterable_helper.rb +0 -17
  257. data/app/helpers/decidim/proposals/admin/proposals_picker_helper.rb +0 -30
  258. data/app/packs/src/decidim/proposals/admin/proposals_picker.js +0 -50
  259. data/app/packs/stylesheets/decidim/proposals/_proposals.scss +0 -1
  260. data/app/packs/stylesheets/decidim/proposals/proposals/_preview.scss +0 -3
  261. data/app/views/decidim/proposals/collaborative_drafts/_count.html.erb +0 -1
  262. data/app/views/decidim/proposals/collaborative_drafts/_filters.html.erb +0 -32
  263. data/app/views/decidim/proposals/collaborative_drafts/_filters_small_view.html.erb +0 -18
  264. data/app/views/decidim/proposals/collaborative_drafts/_new_collaborative_draft_button.html.erb +0 -11
  265. data/app/views/decidim/proposals/collaborative_drafts/_wizard_aside.html.erb +0 -13
  266. data/app/views/decidim/proposals/collaborative_drafts/_wizard_header.html.erb +0 -14
  267. data/app/views/decidim/proposals/proposals/_count.html.erb +0 -1
  268. data/app/views/decidim/proposals/proposals/_dynamic_map_instructions.html.erb +0 -4
  269. data/app/views/decidim/proposals/proposals/_filters.html.erb +0 -48
  270. data/app/views/decidim/proposals/proposals/_filters_small_view.html.erb +0 -18
  271. data/app/views/decidim/proposals/proposals/_proposal_similar.html.erb +0 -22
  272. data/app/views/decidim/proposals/proposals/_wizard_aside.html.erb +0 -20
  273. data/app/views/decidim/proposals/proposals/participatory_texts/_index.html.erb +0 -19
  274. data/app/views/decidim/proposals/versions/index.html.erb +0 -16
  275. data/config/locales/he-IL.yml +0 -1
  276. data/db/migrate/20240404202756_add_valuation_assignments_count_to_decidim_proposals_proposals.rb +0 -16
  277. data/decidim-proposals.gemspec +0 -40
  278. data/lib/decidim/proposals/test/capybara_proposals_picker.rb +0 -59
@@ -31,7 +31,7 @@ module Decidim
31
31
 
32
32
  translatable_fields :title, :body
33
33
 
34
- POSSIBLE_STATES = %w(not_answered evaluating accepted rejected withdrawn).freeze
34
+ STATES = { not_answered: 0, evaluating: 10, accepted: 20, rejected: -10, withdrawn: -20 }.freeze
35
35
 
36
36
  fingerprint fields: [:title, :body]
37
37
 
@@ -55,18 +55,19 @@ module Decidim
55
55
 
56
56
  geocoded_by :address
57
57
 
58
- scope :answered, -> { where.not(answered_at: nil) }
59
- scope :not_answered, -> { where(answered_at: nil) }
60
-
61
- scope :state_not_published, -> { where(state_published_at: nil) }
62
- scope :state_published, -> { where.not(state_published_at: nil).where.not(state: nil) }
58
+ enum state: STATES, _default: "not_answered"
63
59
 
64
60
  scope :accepted, -> { state_published.where(state: "accepted") }
65
61
  scope :rejected, -> { state_published.where(state: "rejected") }
66
62
  scope :evaluating, -> { state_published.where(state: "evaluating") }
67
- scope :withdrawn, -> { where(state: "withdrawn") }
68
- scope :except_rejected, -> { where.not(state: "rejected").or(state_not_published) }
69
- scope :except_withdrawn, -> { where.not(state: "withdrawn").or(where(state: nil)) }
63
+
64
+ scope :answered, -> { where.not(answered_at: nil) }
65
+ scope :not_answered, -> { where(answered_at: nil) }
66
+
67
+ scope :state_not_published, -> { where(state_published_at: nil) }
68
+ scope :state_published, -> { where.not(state_published_at: nil) }
69
+ scope :except_rejected, -> { not_rejected.or(state_not_published) }
70
+ scope :except_withdrawn, -> { not_withdrawn }
70
71
  scope :drafts, -> { where(published_at: nil) }
71
72
  scope :published, -> { where.not(published_at: nil) }
72
73
  scope :order_by_most_recent, -> { order(created_at: :desc) }
@@ -96,17 +97,17 @@ module Decidim
96
97
  }
97
98
 
98
99
  scope :sort_by_valuation_assignments_count_asc, lambda {
99
- order(valuation_assignments_count: :asc)
100
+ order(Arel.sql("#{sort_by_valuation_assignments_count_nulls_last_query} ASC NULLS FIRST").to_s)
100
101
  }
101
102
 
102
103
  scope :sort_by_valuation_assignments_count_desc, lambda {
103
- order(valuation_assignments_count: :desc)
104
+ order(Arel.sql("#{sort_by_valuation_assignments_count_nulls_last_query} DESC NULLS LAST").to_s)
104
105
  }
105
106
 
106
- scope_search_multi :with_any_state, [:accepted, :rejected, :evaluating, :state_not_published]
107
+ scope_search_multi :with_any_state, [:accepted, :rejected, :evaluating, :state_not_published, :state_published]
107
108
 
108
109
  def self.with_valuation_assigned_to(user, space)
109
- valuator_roles = space.user_roles(:valuator).where(user: user)
110
+ valuator_roles = space.user_roles(:valuator).where(user:)
110
111
 
111
112
  includes(:valuation_assignments)
112
113
  .where(decidim_proposals_valuation_assignments: { valuator_role_id: valuator_roles })
@@ -139,7 +140,7 @@ module Decidim
139
140
  end
140
141
 
141
142
  def self.retrieve_proposals_for(component)
142
- Decidim::Proposals::Proposal.where(component: component).joins(:coauthorships)
143
+ Decidim::Proposals::Proposal.where(component:).joins(:coauthorships)
143
144
  .includes(:votes, :endorsements)
144
145
  .where(decidim_coauthorships: { decidim_author_type: "Decidim::UserBaseEntity" })
145
146
  .not_hidden
@@ -267,7 +268,7 @@ module Decidim
267
268
  end
268
269
 
269
270
  # Public: Overrides the `reported_searchable_content_extras` Reportable concern method.
270
- # Returns authors name or title in case it's a meeting
271
+ # Returns authors name or title in case it is a meeting
271
272
  def reported_searchable_content_extras
272
273
  [authors.map { |p| p.respond_to?(:name) ? p.name : p.title }.join("\n")]
273
274
  end
@@ -333,6 +334,18 @@ module Decidim
333
334
  ProposalSearch.new(self, params, options)
334
335
  end
335
336
 
337
+ # Defines the base query so that ransack can actually sort by this value
338
+ def self.sort_by_valuation_assignments_count_nulls_last_query
339
+ <<-SQL.squish
340
+ (
341
+ SELECT COUNT(decidim_proposals_valuation_assignments.id)
342
+ FROM decidim_proposals_valuation_assignments
343
+ WHERE decidim_proposals_valuation_assignments.decidim_proposal_id = decidim_proposals_proposals.id
344
+ GROUP BY decidim_proposals_valuation_assignments.decidim_proposal_id
345
+ )
346
+ SQL
347
+ end
348
+
336
349
  # method to filter by assigned valuator role ID
337
350
  def self.valuator_role_ids_has(value)
338
351
  query = <<-SQL.squish
@@ -343,7 +356,7 @@ module Decidim
343
356
  )
344
357
  )
345
358
  SQL
346
- where(query, value: value)
359
+ where(query, value:)
347
360
  end
348
361
 
349
362
  def self.ransackable_scopes(auth_object = nil)
@@ -389,6 +402,10 @@ module Decidim
389
402
  Arel.sql(%{cast("decidim_proposals_proposals"."id" as text)})
390
403
  end
391
404
 
405
+ ransacker :state, formatter: proc { |v| STATES[v.to_sym] } do |parent|
406
+ parent.table[:state]
407
+ end
408
+
392
409
  ransacker :is_emendation do |_parent|
393
410
  query = <<-SQL.squish
394
411
  (
@@ -15,13 +15,13 @@ module Decidim
15
15
  after_destroy :update_proposal_votes_count
16
16
 
17
17
  # Temporary votes are used when a minimum amount of votes is configured in
18
- # a component. They aren't taken into account unless the amount of votes
19
- # exceeds a threshold - meanwhile, they're marked as temporary.
18
+ # a component. They are not taken into account unless the amount of votes
19
+ # exceeds a threshold - meanwhile, they are marked as temporary.
20
20
  def self.temporary
21
21
  where(temporary: true)
22
22
  end
23
23
 
24
- # Final votes are votes that will be taken into account, that is, they're
24
+ # Final votes are votes that will be taken into account, that is, they are
25
25
  # not temporary.
26
26
  def self.final
27
27
  where(temporary: false)
@@ -9,8 +9,7 @@ module Decidim
9
9
  include Decidim::Traceable
10
10
  include Decidim::Loggable
11
11
 
12
- belongs_to :proposal, foreign_key: "decidim_proposal_id", class_name: "Decidim::Proposals::Proposal",
13
- counter_cache: true
12
+ belongs_to :proposal, foreign_key: "decidim_proposal_id", class_name: "Decidim::Proposals::Proposal"
14
13
  belongs_to :valuator_role, polymorphic: true
15
14
 
16
15
  def self.log_presenter_class_for(_log)
@@ -1,13 +1,17 @@
1
+ <!-- markdownlint-disable-file single-h1 strong-style emphasis-style -->
2
+
1
3
  # Section title 1: grouping content
2
4
 
3
5
  Participatory texts relay on the parsing of Markdown texts to produce a structured document.
4
6
 
5
7
  Participatory texts are divided into 3 types of blocks:
8
+
6
9
  - Section: produced by main headers (paragraphs starting with "# ")
7
10
  - Subsection: produced by secondary headers (paragraphs starting more than one "#") until 6 levels.
8
11
  - Article: produced by paragraphs and lists.
9
12
 
10
13
  ## Subsection title 1.1
14
+
11
15
  Parsing of Markdown is strict.
12
16
  This means that, for paragraphs and lists, all blocks should be separated by a blank line between them.
13
17
  The first, second and this third paragraphs, for example, will be grouped into a single participatory text article.
@@ -19,7 +23,8 @@ This paragraph also, will produce a third participatory text article.
19
23
  ## Subsection title 1.2
20
24
 
21
25
  Inside a paragraph list or a list, **bold text** is supported, *italics text* is supported, __underlined text__ is supported.
22
- As explained [here](https://daringfireball.net/projects/markdown/syntax#em) Markdown treats asterisks (\*) and underscores (\_) as indicators of emphasis. Text wrapped with one \* or \_ will be wrapped with an HTML <em> tag; double \*’s or \_’s will be wrapped with an HTML &lt;strong> tag. E.g., this input:
26
+ As explained [here](https://daringfireball.net/projects/markdown/syntax#em) Markdown treats asterisks (\*) and underscores (\_) as indicators of emphasis. Text wrapped with these characters will be wrapped with an HTML \<em> tag; double \*’s or \_’s will be wrapped with an HTML \<strong> tag. E.g., this input:
27
+
23
28
  - *single asterisks*
24
29
  - _single underscores_
25
30
  - **double asterisks**
@@ -37,11 +42,11 @@ Lists will be parsed as one block:
37
42
  - consensus by imposing whatever the organization wants: to be used at will.
38
43
  - consensus by ignoring whatever resulted from the previous consensus: to be used when organization don't like the results of another consensus system.
39
44
 
40
- Ordered lists reset numberings to the correct order (1,2,3,4,5 in this case):
45
+ Ordered lists will be parsed too:
41
46
 
42
47
  1. one
43
- 2. two
44
- 3. three
48
+ 1. two
49
+ 1. three
45
50
  1. four
46
51
  1. five
47
52
 
@@ -1,8 +1,12 @@
1
1
  import "src/decidim/proposals/utils"
2
2
  import "src/decidim/proposals/add_proposal"
3
+ import "src/decidim/proposals/choose_proposals"
3
4
 
4
5
  // Images
5
6
  require.context("../images", true)
6
7
 
7
8
  // Documents
8
9
  require.context("../documents", true)
10
+
11
+ // CSS
12
+ import "stylesheets/decidim/proposals/proposals.scss"
@@ -1,3 +1,2 @@
1
1
  import "src/decidim/proposals/admin/proposals"
2
2
  import "src/decidim/proposals/admin/proposals_form"
3
- import "src/decidim/proposals/admin/proposals_picker"
@@ -1 +1,68 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="accepted-svg" width="1080" height="1080" x="0" y="0" enable-background="new 0 0 1080 1080" version="1.1" viewBox="0 0 1080 1080" xml:space="preserve"><g id="accepted" class="stroke-primary"><g id="sleeve_1_"><rect id="_x32_5-pct_3_" width="215" height="286" x="404.5" y="775.5" fill="#31536E" fill-opacity=".25" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16" class="fill-primary"/><rect width="215" height="208" x="404.5" y="875.5" fill="#31536E" stroke="#31536E" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16" class="fill-primary"/><line x1="431.5" x2="431.5" y1="775.5" y2="853.5" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16"/><line x1="463.5" x2="463.5" y1="775.5" y2="853.5" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16"/><line x1="495.5" x2="495.5" y1="775.5" y2="853.5" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16"/><line x1="527.5" x2="527.5" y1="775.5" y2="853.5" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16"/><line x1="559.5" x2="559.5" y1="775.5" y2="853.5" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16"/><line x1="591.5" x2="591.5" y1="775.5" y2="853.5" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16"/></g><g><g id="hand_1_"><polygon fill="#31536E" points="423.5 770.5 601.107 770.5 601.107 667.825 658.61 634.993 696.29 599.501 725.957 559.263 725.957 448.536 696.29 447.586 669.706 465.309 638.964 527.5 566.675 560.819 510 516.5 480.5 460.928 557.167 370.5 619.5 404.5 647.629 438.5 684.541 447.184 716.285 430.5 675.5 351.599 569.5 283.836 527.5 287.634 441.5 341.5 366.931 422.676 352.489 461.459 361.5 559.543 413.81 669.5 421.5 698.5" class="fill-primary" opacity=".1"/><path fill="#FFF" d="M727.875,451.459h-20.676c0,0-9.086,51.541,0,53.326s20.505,0,20.505,0"/><path fill="#FFF" d="M695.802,395.398c-10.302,6.279-11.942,16.53-11.052,20.102s16.611,27.104,16.611,27.104l14.924-4.782 L695.802,395.398z"/><path fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16" d="M592.395,671.5c61.525-25.129,97.612-56.398,133.562-112.237c0,0,4.314-90.188,0-110.727 c-19.493,1.786-56.957-21.036-86.993,83.572c-23.964,5.392-52.964,26.559-90,32.964"/><line x1="418.5" x2="418.5" y1="775.5" y2="677.5" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16"/><line x1="604.5" x2="604.5" y1="669.5" y2="775.5" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16"/><path fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16" d="M572.321,554.571c0,0-87.773-39.071-88.75-93.646c16.068-10.714,63.068-69,73.596-83.286 c10.524,7.143,57.627,28.263,60.368,31.786c12.19,15.667,61.25,56.072,98.75,28.396c-4.465-19.646-24.821-52.679-28.396-60.714 c-3.569-8.035-11.604-22.536-23.214-29.679c-11.604-7.143-60-40.857-85.179-53.357s-49.821-3.571-56.071,0 c-6.25,3.571-99.82,65-129.929,96.25C363.392,421.571,352.5,447.5,352.5,447.5s-2.401,136.587,64.531,226.439"/><path id="_x32_5-pct_4_" fill="#31536E" fill-opacity=".25" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16" d="M370.5,418.321c18.5-44.646,59.535-181.464,63.107-193.964c3.569-12.5,30-20,62.143-24.464s94.286-17.429,108.75-19.214 c14.464-1.785,25.179,5.358,43.929,16.072s47.286,23.214,79.446,35.714c-5.34,48.214-30.339,55.876-41.946,55.17 c-11.604-0.706-42.68,4.008-88.215-29.027c0,0-24.464,2.964-87.714,19.036l-3.909,27.584" class="fill-primary"/><path id="_x35_0-pct_3_" fill="#31536E" fill-opacity=".5" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16" d="M484.548,201.858C513.608,161.5,573.429,92.286,585.929,79.786c19.646,15.178,47.357,46.428,5.571,100.893" class="fill-primary"/><path fill="#FFF" fill-opacity=".5" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="8" d="M722.875,236.465l-46.55-19.335c-2.54,8.62-13.532,24.692,0,27.37s43.572,8.656,43.572,8.656L722.875,236.465z"/><path fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="8" d="M707.199,451.459c0,0-9.086,51.541,0,53.326s20.505,0,20.505,0"/><path fill="#FFF" fill-opacity=".5" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="8" d="M586.929,84.786l-26.049,30.076c9.979,9.209,16.312,10.862,20.787,4c3.773-5.786,3.806-6.09,17.079-21.401L586.929,84.786z"/></g></g><path fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16" d="M522.011,422.676c1.989,14.646,6.312,40.896,1.85,41.788c6.25,9.822,27.142,45.127,24.643,73.036"/><path id="_x35_0-pct" fill="#31536E" fill-opacity=".5" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16" d="M522.011,422.676c1.989,14.646,6.312,40.896,1.85,41.788c6.25,9.822,27.142,45.127,24.643,73.036l-45.705-31.921l-19.225-44.651 L522.011,422.676z" class="fill-primary"/><line x1="525.678" x2="523.429" y1="273.6" y2="294.071" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16" opacity=".1"/><path fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="8" d="M695.802,395.398c-10.302,6.279-11.942,16.53-11.052,20.102s16.611,27.104,16.611,27.104"/><line x1="638.964" x2="656.295" y1="532.108" y2="550.628" fill="none" stroke="#31536E" stroke-linecap="round" stroke-miterlimit="10" stroke-width="8"/><line x1="557.167" x2="557.167" y1="377.642" y2="351.599" fill="none" stroke="#31536E" stroke-linecap="round" stroke-miterlimit="10" stroke-width="8"/><line x1="597.714" x2="604.5" y1="252.608" y2="231.143" fill="none" stroke="#31536E" stroke-linecap="round" stroke-miterlimit="10" stroke-width="8"/><line x1="483.571" x2="455.093" y1="460.928" y2="461.459" fill="none" stroke="#31536E" stroke-linecap="round" stroke-miterlimit="10" stroke-width="8"/><line x1="510" x2="495.591" y1="277.644" y2="264.603" fill="none" stroke="#31536E" stroke-linecap="round" stroke-miterlimit="10" stroke-width="8"/><g id="stars_3" class="stars"><path fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4" d="M178.645,872.483c0-14.688-18.667-35.354-35.355-35.354c15.355-0.001,35.355-20.334,35.355-35.356 c0,15.022,16.667,35.355,35.355,35.355C194.978,837.129,178.645,857.796,178.645,872.483z"/><g><circle cx="267.833" cy="219.444" r="13.5" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="268" x2="268" y1="195.944" y2="165.944" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="268" x2="268" y1="243.944" y2="273.944" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="291" x2="321" y1="219.944" y2="219.944" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="244" x2="214" y1="219.944" y2="219.944" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/></g><g><line x1="878.875" x2="852.713" y1="649.072" y2="675.234" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="843.521" x2="817.357" y1="684.429" y2="710.592" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="878.168" x2="852.005" y1="710.592" y2="684.429" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="842.813" x2="816.65" y1="675.234" y2="649.072" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/></g><path fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4" d="M488.591,88.553c0,0-24.603,4.604-30.249,10.249c-5.646,5.646-10.249,30.249-10.249,30.249s-4.603-24.603-10.249-30.249 c-5.646-5.646-30.249-10.249-30.249-10.249s25.188-5.187,30.249-10.249c5.062-5.062,10.249-30.249,10.249-30.249 s4.604,24.603,10.249,30.249C463.988,83.95,488.591,88.553,488.591,88.553z"/><g><circle cx="814.929" cy="165.944" r="18.5" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><circle cx="774.929" cy="165.944" r="7.166" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><circle cx="814.929" cy="205.944" r="7.166" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><circle cx="854.929" cy="165.944" r="7.166" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><circle cx="814.929" cy="125.944" r="7.166" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/></g><g><line x1="133.832" x2="188.735" y1="444.075" y2="498.98" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="188.735" x2="133.832" y1="444.075" y2="498.98" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="143.086" x2="116.086" y1="471.103" y2="471.103" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="181.086" x2="208.086" y1="471.103" y2="471.103" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="162.086" x2="162.086" y1="490.103" y2="517.103" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="162.086" x2="162.086" y1="452.103" y2="425.103" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/></g><g><line x1="912.5" x2="912.5" y1="845.944" y2="924.944" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="951.5" x2="872.5" y1="885.944" y2="885.944" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><circle cx="892.5" cy="905.444" r="7.039" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><circle cx="892.5" cy="865.444" r="7.039" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><circle cx="932.5" cy="905.444" r="7.039" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><circle cx="932.5" cy="865.444" r="7.039" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/></g></g></g></svg>
1
+ <svg width="540" height="540" viewBox="0 0 540 540" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_7225_132761)">
3
+ <path d="M309.75 387.75H202.25V530.75H309.75V387.75Z" fill="#3E4C5C" fill-opacity="0.25" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M309.75 437.75H202.25V541.75H309.75V437.75Z" fill="#3E4C5C" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linejoin="round"/>
5
+ <path d="M215.75 387.75V426.75" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M231.75 387.75V426.75" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M247.75 387.75V426.75" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path d="M263.75 387.75V426.75" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
9
+ <path d="M279.75 387.75V426.75" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
10
+ <path d="M295.75 387.75V426.75" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
11
+ <path opacity="0.1" d="M211.75 385.25H300.553V333.912L329.305 317.496L348.145 299.75L362.978 279.631V224.268L348.145 223.793L334.853 232.654L319.482 263.75L283.337 280.409L255 258.25L240.25 230.464L278.583 185.25L309.75 202.25L323.814 219.25L342.27 223.592L358.142 215.25L337.75 175.799L284.75 141.918L263.75 143.817L220.75 170.75L183.465 211.338L176.244 230.729L180.75 279.771L206.905 334.75L210.75 349.25L211.75 385.25Z" fill="#3E4C5C"/>
12
+ <path d="M363.937 225.729H353.599C353.599 225.729 349.056 251.499 353.599 252.392C358.142 253.284 363.852 252.392 363.852 252.392" fill="white"/>
13
+ <path d="M347.9 197.699C342.749 200.839 341.929 205.964 342.374 207.75C342.819 209.536 350.68 221.302 350.68 221.302L358.142 218.911L347.9 197.699Z" fill="white"/>
14
+ <path d="M296.198 335.75C326.96 323.186 345.004 307.551 362.979 279.632C362.979 279.632 365.136 234.538 362.979 224.268C353.232 225.161 334.5 213.75 319.482 266.054C307.5 268.75 293 279.334 274.482 282.536" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
15
+ <path d="M209.25 387.75V338.75" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
16
+ <path d="M302.25 334.75V387.75" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
17
+ <path d="M286.16 277.285C286.16 277.285 242.274 257.75 241.785 230.462C249.819 225.105 273.319 195.962 278.583 188.819C283.845 192.391 307.397 202.951 308.767 204.712C314.862 212.546 339.392 232.748 358.142 218.91C355.91 209.087 345.732 192.571 343.944 188.553C342.16 184.536 338.142 177.285 332.337 173.714C326.535 170.142 302.337 153.285 289.748 147.035C277.158 140.785 264.837 145.25 261.712 147.035C258.587 148.821 211.802 179.535 196.748 195.16C181.696 210.785 176.25 223.75 176.25 223.75C176.25 223.75 175.049 292.043 208.515 336.969" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
18
+ <path d="M185.25 209.161C194.5 186.838 215.017 118.429 216.803 112.179C218.588 105.929 231.803 102.179 247.875 99.9468C263.947 97.7148 295.018 91.2323 302.25 90.3398C309.482 89.4473 314.84 93.0188 324.215 98.3758C333.59 103.733 347.858 109.983 363.938 116.233C361.267 140.34 348.768 144.171 342.965 143.818C337.163 143.465 321.624 145.822 298.857 129.304C298.857 129.304 286.625 130.786 255 138.822L253.046 152.614" fill="#3E4C5C" fill-opacity="0.25"/>
19
+ <path d="M185.25 209.161C194.5 186.838 215.017 118.429 216.803 112.179C218.588 105.929 231.803 102.179 247.875 99.9468C263.947 97.7148 295.018 91.2323 302.25 90.3398C309.482 89.4473 314.84 93.0188 324.215 98.3758C333.59 103.733 347.858 109.983 363.938 116.233C361.267 140.34 348.768 144.171 342.965 143.818C337.163 143.465 321.624 145.822 298.857 129.304C298.857 129.304 286.625 130.786 255 138.822L253.046 152.614" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
20
+ <path d="M242.273 100.929C256.803 80.7496 286.714 46.1426 292.964 39.8926C302.787 47.4816 316.642 63.1066 295.749 90.3391" fill="#3E4C5C" fill-opacity="0.5"/>
21
+ <path d="M242.273 100.929C256.803 80.7496 286.714 46.1426 292.964 39.8926C302.787 47.4816 316.642 63.1066 295.749 90.3391" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
22
+ <path d="M361.436 118.232L338.161 108.564C336.891 112.874 331.395 120.91 338.161 122.249C344.927 123.588 359.947 126.577 359.947 126.577L361.436 118.232Z" fill="white" fill-opacity="0.5" stroke="#3E4C5C" stroke-width="4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
23
+ <path d="M353.599 225.729C353.599 225.729 349.056 251.499 353.599 252.392C358.142 253.284 363.852 252.392 363.852 252.392" stroke="#3E4C5C" stroke-width="4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
24
+ <path d="M293.464 42.3926L280.439 57.4306C285.429 62.0351 288.595 62.8616 290.833 59.4306C292.719 56.5376 292.736 56.3856 299.372 48.7301L293.464 42.3926Z" fill="white" fill-opacity="0.5" stroke="#3E4C5C" stroke-width="4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
25
+ <path d="M261.006 211.338C262 218.661 264.162 231.786 261.931 232.232C265.056 237.143 275.502 254.795 274.252 268.75" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
26
+ <path d="M261.006 211.338C262 218.661 264.162 231.786 261.931 232.232C265.056 237.143 275.502 254.795 274.252 268.75L251.4 252.789L241.787 230.464L261.006 211.338Z" fill="#3E4C5C" fill-opacity="0.5" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
27
+ <path opacity="0.1" d="M262.839 136.799L261.715 147.034" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
28
+ <path d="M347.9 197.699C342.749 200.839 341.929 205.964 342.374 207.75C342.819 209.536 350.68 221.302 350.68 221.302" stroke="#3E4C5C" stroke-width="4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
29
+ <path d="M319.482 266.055L328.148 275.315" stroke="#3E4C5C" stroke-width="4" stroke-miterlimit="10" stroke-linecap="round"/>
30
+ <path d="M278.584 188.82V175.799" stroke="#3E4C5C" stroke-width="4" stroke-miterlimit="10" stroke-linecap="round"/>
31
+ <path d="M298.857 126.303L302.25 115.57" stroke="#3E4C5C" stroke-width="4" stroke-miterlimit="10" stroke-linecap="round"/>
32
+ <path d="M241.786 230.463L227.547 230.728" stroke="#3E4C5C" stroke-width="4" stroke-miterlimit="10" stroke-linecap="round"/>
33
+ <path d="M254.999 138.821L247.795 132.301" stroke="#3E4C5C" stroke-width="4" stroke-miterlimit="10" stroke-linecap="round"/>
34
+ <path d="M89.322 436.242C89.322 428.898 79.9885 418.565 71.6445 418.565C79.322 418.564 89.322 408.398 89.322 400.887C89.322 408.398 97.6555 418.564 107 418.564C97.4885 418.565 89.322 428.898 89.322 436.242Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
35
+ <path d="M133.916 116.473C137.644 116.473 140.666 113.451 140.666 109.723C140.666 105.995 137.644 102.973 133.916 102.973C130.188 102.973 127.166 105.995 127.166 109.723C127.166 113.451 130.188 116.473 133.916 116.473Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
36
+ <path d="M134 97.9727V82.9727" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
37
+ <path d="M134 121.973V136.973" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
38
+ <path d="M145.5 109.973H160.5" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
39
+ <path d="M122 109.973H107" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
40
+ <path d="M439.436 324.535L426.355 337.616" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
41
+ <path d="M421.76 342.213L408.678 355.294" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
42
+ <path d="M439.083 355.294L426.002 342.213" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
43
+ <path d="M421.406 337.616L408.324 324.535" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
44
+ <path d="M244.295 44.2763C244.295 44.2763 231.993 46.5783 229.17 49.4008C226.347 52.2238 224.046 64.5253 224.046 64.5253C224.046 64.5253 221.744 52.2238 218.921 49.4008C216.098 46.5778 203.797 44.2763 203.797 44.2763C203.797 44.2763 216.391 41.6828 218.921 39.1518C221.452 36.6208 224.046 24.0273 224.046 24.0273C224.046 24.0273 226.348 36.3288 229.17 39.1518C231.993 41.9748 244.295 44.2763 244.295 44.2763Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
45
+ <path d="M407.465 92.2227C412.573 92.2227 416.715 88.0813 416.715 82.9727C416.715 77.864 412.573 73.7227 407.465 73.7227C402.356 73.7227 398.215 77.864 398.215 82.9727C398.215 88.0813 402.356 92.2227 407.465 92.2227Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
46
+ <path d="M387.464 86.5547C389.443 86.5547 391.047 84.9505 391.047 82.9717C391.047 80.9928 389.443 79.3887 387.464 79.3887C385.485 79.3887 383.881 80.9928 383.881 82.9717C383.881 84.9505 385.485 86.5547 387.464 86.5547Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
47
+ <path d="M407.464 106.555C409.443 106.555 411.047 104.951 411.047 102.972C411.047 100.993 409.443 99.3887 407.464 99.3887C405.485 99.3887 403.881 100.993 403.881 102.972C403.881 104.951 405.485 106.555 407.464 106.555Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
48
+ <path d="M427.464 86.5547C429.443 86.5547 431.047 84.9505 431.047 82.9717C431.047 80.9928 429.443 79.3887 427.464 79.3887C425.485 79.3887 423.881 80.9928 423.881 82.9717C423.881 84.9505 425.485 86.5547 427.464 86.5547Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
49
+ <path d="M407.464 66.5547C409.443 66.5547 411.047 64.9505 411.047 62.9717C411.047 60.9928 409.443 59.3887 407.464 59.3887C405.485 59.3887 403.881 60.9928 403.881 62.9717C403.881 64.9505 405.485 66.5547 407.464 66.5547Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
50
+ <path d="M66.916 222.037L94.3675 249.49" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
51
+ <path d="M94.3675 222.037L66.916 249.49" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
52
+ <path d="M71.543 235.551H58.043" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
53
+ <path d="M90.543 235.551H104.043" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
54
+ <path d="M81.043 245.051V258.551" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
55
+ <path d="M81.043 226.051V212.551" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
56
+ <path d="M456.25 422.973V462.473" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
57
+ <path d="M475.75 442.973H436.25" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
58
+ <path d="M446.25 456.242C448.194 456.242 449.769 454.666 449.769 452.723C449.769 450.779 448.194 449.203 446.25 449.203C444.306 449.203 442.73 450.779 442.73 452.723C442.73 454.666 444.306 456.242 446.25 456.242Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
59
+ <path d="M446.25 436.242C448.194 436.242 449.769 434.666 449.769 432.723C449.769 430.779 448.194 429.203 446.25 429.203C444.306 429.203 442.73 430.779 442.73 432.723C442.73 434.666 444.306 436.242 446.25 436.242Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
60
+ <path d="M466.25 456.242C468.194 456.242 469.769 454.666 469.769 452.723C469.769 450.779 468.194 449.203 466.25 449.203C464.306 449.203 462.73 450.779 462.73 452.723C462.73 454.666 464.306 456.242 466.25 456.242Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
61
+ <path d="M466.25 436.242C468.194 436.242 469.769 434.666 469.769 432.723C469.769 430.779 468.194 429.203 466.25 429.203C464.306 429.203 462.73 430.779 462.73 432.723C462.73 434.666 464.306 436.242 466.25 436.242Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
62
+ </g>
63
+ <defs>
64
+ <clipPath id="clip0_7225_132761">
65
+ <rect width="540" height="540" fill="white"/>
66
+ </clipPath>
67
+ </defs>
68
+ </svg>
@@ -1 +1,34 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="supports-svg" width="1080" height="1080" x="0" y="0" enable-background="new 0 0 1080 1080" version="1.1" viewBox="0 0 1080 1080" xml:space="preserve"><g id="supports" class="stroke-primary"><g id="thumb-up"><rect id="_x35_0-pct_10_" width="169.596" height="357.296" x="269.861" y="593.333" fill="#31536E" fill-opacity=".5" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16" class="fill-primary"/><path fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16" d="M441.917,625.219c77.063,0,110.925-67.804,117.19-105.751c5.192-31.435-0.575-127.921-0.575-127.921s86.541-11.506,92.469,53.694 c5.927,65.199,1.793,176.676,1.793,176.676h-65.201l156.71,1.21c0,0,64.839-6.822,64.839,43.559c0,50.387,0,155.638,0,207.458 c0,63.782-2.858,76.485-57.391,76.485c-38.522,0-184.904,0-223.43,0c-38.53,0-44.453-30.489-44.453-30.489h-39.646"/><g><path id="_x32_5-pct_10_" fill="#31536E" fill-opacity=".25" d="M751.75,893.462c-38.522,0-184.904,0-223.43,0 c-38.53,0-44.453-30.489-44.453-30.489h-39.646l-1.858-237.761c-0.149,0.001-0.296,0.007-0.446,0.007l2.305,294.921h39.646 c0,0,5.922,30.489,44.453,30.489c38.526,0,184.908,0,223.43,0c54.532,0,57.391-12.703,57.391-76.485c0-15.319,0-35.308,0-57.167 C809.141,880.759,806.282,893.462,751.75,893.462z" class="fill-primary"/></g></g><path fill="#31536E" d="M708.884,149.655c-28.163-28.162-73.823-28.162-101.985,0l-18.359,18.359l-18.358-18.358 c-28.163-28.163-73.824-28.163-101.986,0c-28.163,28.163-28.163,73.824,0,101.986l120.344,120.344l0,0l0.001,0.001l58.044-58.044 l43.943-43.942L690.525,270l18.358-18.359C737.047,223.479,737.047,177.818,708.884,149.655z" class="fill-primary"/><g id="stars_7" class="stars"><path fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4" d="M213.313,169.895c0-12.963-16.474-31.2-31.2-31.2c13.551,0,31.2-17.944,31.2-31.201c0,13.257,14.707,31.201,31.2,31.201 C227.727,138.695,213.313,156.932,213.313,169.895z"/><g><circle cx="932.273" cy="132.884" r="11.913" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="917.715" x2="898.994" y1="118.116" y2="99.396" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="947.667" x2="966.387" y1="148.068" y2="166.788" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="947.043" x2="965.763" y1="118.739" y2="100.02" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="917.715" x2="898.994" y1="148.068" y2="166.788" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/></g><g><line x1="227.091" x2="204.003" y1="584.43" y2="607.52" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="195.892" x2="172.803" y1="615.631" y2="638.719" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="226.467" x2="203.379" y1="638.719" y2="615.631" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="195.268" x2="172.18" y1="607.52" y2="584.43" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/></g><path fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4" d="M927.763,911.402c0,0-19.032,3.562-23.397,7.929c-4.366,4.367-7.928,23.396-7.928,23.396s-3.562-19.03-7.93-23.396 c-4.366-4.366-23.396-7.929-23.396-7.929s19.479-4.013,23.396-7.929s7.93-23.396,7.93-23.396s3.562,19.03,7.928,23.396 C908.73,907.841,927.763,911.402,927.763,911.402z"/><g><circle cx="917.977" cy="493.158" r="14.653" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><circle cx="886.293" cy="493.158" r="5.676" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><circle cx="917.977" cy="524.839" r="5.676" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><circle cx="949.657" cy="493.158" r="5.676" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><circle cx="917.977" cy="461.475" r="5.676" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/></g><g><line x1="142.49" x2="190.941" y1="864.953" y2="913.405" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="190.941" x2="142.49" y1="864.953" y2="913.405" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="150" x2="127" y1="888.475" y2="888.475" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="185" x2="208" y1="888.475" y2="888.475" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="167" x2="167" y1="905.475" y2="929.475" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="167" x2="167" y1="872.475" y2="848.475" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/></g><g><line x1="127" x2="127" y1="328.475" y2="398.475" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="161" x2="92" y1="364.475" y2="364.475" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><circle cx="109.181" cy="380.935" r="6.212" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><circle cx="109.181" cy="345.636" r="6.212" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><circle cx="144.479" cy="380.935" r="6.212" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><circle cx="144.479" cy="345.636" r="6.212" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/></g></g></g></svg>
1
+ <svg width="540" height="540" viewBox="0 0 540 540" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M219.728 296.668H134.93V475.316H219.728V296.668Z" fill="#3E4C5C" fill-opacity="0.5" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M220.957 312.61C259.489 312.61 276.42 278.708 279.552 259.735C282.148 244.017 279.265 195.774 279.265 195.774C279.265 195.774 322.535 190.021 325.499 222.621C328.463 255.221 326.396 310.959 326.396 310.959H293.795L372.15 311.564C372.15 311.564 404.57 308.153 404.57 333.344C404.57 358.537 404.57 411.163 404.57 437.073C404.57 468.964 403.141 475.315 375.874 475.315C356.613 475.315 283.422 475.315 264.159 475.315C244.894 475.315 241.933 460.071 241.933 460.071H222.11" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M375.874 446.732C356.613 446.732 283.422 446.732 264.159 446.732C244.894 446.732 241.932 431.488 241.932 431.488H222.109L221.18 312.607C221.106 312.608 221.032 312.611 220.957 312.611L222.11 460.071H241.933C241.933 460.071 244.894 475.316 264.159 475.316C283.422 475.316 356.613 475.316 375.874 475.316C403.14 475.316 404.57 468.964 404.57 437.073C404.57 429.414 404.57 419.419 404.57 408.49C404.569 440.381 403.14 446.732 375.874 446.732Z" fill="#3E4C5C" fill-opacity="0.25"/>
5
+ <path d="M354.442 74.8264C340.361 60.7454 317.531 60.7454 303.45 74.8264L294.27 84.0059L285.091 74.8269C271.01 60.7454 248.179 60.7454 234.098 74.8269C220.017 88.9084 220.017 111.739 234.098 125.82L294.27 185.992L294.271 185.992L323.293 156.97L345.264 134.999L345.263 134.999L354.442 125.819C368.524 111.738 368.524 88.9079 354.442 74.8264Z" fill="#3E4C5C"/>
6
+ <path d="M106.657 84.9466C106.657 78.4651 98.4196 69.3466 91.0566 69.3466C97.8321 69.3466 106.657 60.3746 106.657 53.7461C106.657 60.3746 114.01 69.3466 122.257 69.3466C113.864 69.3466 106.657 78.4651 106.657 84.9466Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M466.136 72.3974C469.426 72.3974 472.093 69.7306 472.093 66.4409C472.093 63.1512 469.426 60.4844 466.136 60.4844C462.847 60.4844 460.18 63.1512 460.18 66.4409C460.18 69.7306 462.847 72.3974 466.136 72.3974Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path d="M458.857 59.0573L449.496 49.6973" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
9
+ <path d="M473.832 74.0332L483.192 83.3932" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
10
+ <path d="M473.52 59.3693L482.88 50.0098" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
11
+ <path d="M458.857 74.0332L449.496 83.3932" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
12
+ <path d="M113.546 292.215L102.002 303.76" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
13
+ <path d="M97.9468 307.816L86.4023 319.36" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
14
+ <path d="M113.233 319.36L101.689 307.816" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
15
+ <path d="M97.6339 303.76L86.0898 292.215" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
16
+ <path d="M463.882 455.702C463.882 455.702 454.366 457.483 452.184 459.666C450.001 461.85 448.22 471.364 448.22 471.364C448.22 471.364 446.439 461.849 444.255 459.666C442.072 457.483 432.557 455.702 432.557 455.702C432.557 455.702 442.296 453.695 444.255 451.737C446.213 449.779 448.22 440.039 448.22 440.039C448.22 440.039 450.001 449.554 452.184 451.737C454.366 453.921 463.882 455.702 463.882 455.702Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
17
+ <path d="M458.989 253.905C463.035 253.905 466.315 250.625 466.315 246.578C466.315 242.532 463.035 239.252 458.989 239.252C454.942 239.252 451.662 242.532 451.662 246.578C451.662 250.625 454.942 253.905 458.989 253.905Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
18
+ <path d="M443.147 249.416C444.714 249.416 445.985 248.146 445.985 246.578C445.985 245.011 444.714 243.74 443.147 243.74C441.579 243.74 440.309 245.011 440.309 246.578C440.309 248.146 441.579 249.416 443.147 249.416Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
19
+ <path d="M458.988 265.256C460.556 265.256 461.826 263.985 461.826 262.418C461.826 260.851 460.556 259.58 458.988 259.58C457.421 259.58 456.15 260.851 456.15 262.418C456.15 263.985 457.421 265.256 458.988 265.256Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
20
+ <path d="M474.828 249.416C476.396 249.416 477.666 248.146 477.666 246.578C477.666 245.011 476.396 243.74 474.828 243.74C473.261 243.74 471.99 245.011 471.99 246.578C471.99 248.146 473.261 249.416 474.828 249.416Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
21
+ <path d="M458.988 233.574C460.556 233.574 461.826 232.304 461.826 230.736C461.826 229.169 460.556 227.898 458.988 227.898C457.421 227.898 456.15 229.169 456.15 230.736C456.15 232.304 457.421 233.574 458.988 233.574Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
22
+ <path d="M71.2461 432.477L95.4716 456.703" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
23
+ <path d="M95.4716 432.477L71.2461 456.703" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
24
+ <path d="M75 444.238H63.5" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
25
+ <path d="M92.5 444.238H104" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
26
+ <path d="M83.5 452.738V464.738" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
27
+ <path d="M83.5 436.238V424.238" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
28
+ <path d="M63.5 164.238V199.238" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
29
+ <path d="M80.5 182.238H46" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
30
+ <path d="M54.5904 193.575C56.3058 193.575 57.6964 192.185 57.6964 190.469C57.6964 188.754 56.3058 187.363 54.5904 187.363C52.875 187.363 51.4844 188.754 51.4844 190.469C51.4844 192.185 52.875 193.575 54.5904 193.575Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
31
+ <path d="M54.5904 175.925C56.3058 175.925 57.6964 174.534 57.6964 172.819C57.6964 171.103 56.3058 169.713 54.5904 169.713C52.875 169.713 51.4844 171.103 51.4844 172.819C51.4844 174.534 52.875 175.925 54.5904 175.925Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
32
+ <path d="M72.2388 193.575C73.9542 193.575 75.3448 192.185 75.3448 190.469C75.3448 188.754 73.9542 187.363 72.2388 187.363C70.5234 187.363 69.1328 188.754 69.1328 190.469C69.1328 192.185 70.5234 193.575 72.2388 193.575Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
33
+ <path d="M72.2388 175.925C73.9542 175.925 75.3448 174.534 75.3448 172.819C75.3448 171.103 73.9542 169.713 72.2388 169.713C70.5234 169.713 69.1328 171.103 69.1328 172.819C69.1328 174.534 70.5234 175.925 72.2388 175.925Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
34
+ </svg>
@@ -1 +1,64 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="proposals-svg" width="1080" height="1080" x="0" y="0" enable-background="new 0 0 1080 1080" version="1.1" viewBox="0 0 1080 1080" xml:space="preserve"><g id="proposals" class="stroke-primary"><g id="sleeve"><rect id="_x32_5-pct_1_" width="225" height="286" x="437.5" y="798.5" fill="#31536E" fill-opacity=".25" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16" class="fill-primary"/><rect width="225" height="192" x="437.5" y="892.5" fill="#31536E" class="fill-primary"/><line x1="469.5" x2="469.5" y1="798.5" y2="876.5" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16"/><line x1="501.5" x2="501.5" y1="798.5" y2="876.5" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16"/><line x1="533.5" x2="533.5" y1="798.5" y2="876.5" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16"/><line x1="565.5" x2="565.5" y1="798.5" y2="876.5" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16"/><line x1="597.5" x2="597.5" y1="798.5" y2="876.5" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16"/><line x1="629.5" x2="629.5" y1="798.5" y2="876.5" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16"/></g><g><g id="hand_1_" fill-opacity=".25" class="fill-primary"><path fill="#31536E" fill-opacity=".1" d="M702.979,523.043l-19.699-3.815l-13.889-22.199L640.001,508.5l-29.808-17.167 l-22.892,9.486l-38.948-10.921l-12.906,15.104l-35.937,6.877c0,0-21.511-9.38-24.181-20.584 c9.166-8.183,25.578-12.414,40.17-24.795c33-28,32-81-4-111c-22,12-156,79-156,79l0,0v74c0,17.992-2.5,41,1.577,65.972 C377.942,619.5,401.5,665,466.031,667.689l-8.531-0.627V798.5h189v-123h-0.105c51.605,0,66.62-94.165,72.562-158.237 L702.979,523.043z" class="fill-primary"/><path fill="#FFF" d="M473.499,373.498c0,0,12.987,26.002,22.994,22.002s32.046-23.229,32.046-23.229L511.5,355.5 L473.499,373.498z"/><path fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16" d="M451.324,498.5c0,0,31.176-4,64.176-32s32-81-4-111c-22,12-156,79-156,79l0,0v74c0,17.992-2.5,41,1.577,65.972 C377.942,619.5,401.5,665,466.031,667.689l-8.531-0.627V798.5h189v-123h-0.105c51.605,0,62.62-94.165,68.562-158.237"/><path fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16" d="M505.818,513.229c12.682,29.272,13.403,80.272,8.682,102.271"/><path fill="#31536E" fill-opacity=".1" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16" d="M468.5,377.5v-11.282c0-28.564,17.923-51.718,42.5-51.718l0,0c24.577,0,44.5,23.154,44.5,51.718v95.564 c0,28.562-19.923,51.718-44.5,51.718l0,0c-17.737,0-26.049-4.979-33.199-22.428c0,0,43.033-21.906,53.699-44.572 c8.476-18.011,18-58.892-20-91C496.188,363.522,468.5,377.5,468.5,377.5z" class="fill-primary"/><path fill="#31536E" fill-opacity=".1" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16" d="M548.052,337.583c7.851-8.05,19.034-13.083,31.448-13.083l0,0c23.748,0,43,18.419,43,41.141v94.719 c0,22.721-19.252,41.14-43,41.14l0,0c-11.874,0-22.624-4.605-30.406-12.05" class="fill-primary"/><path fill="#31536E" fill-opacity=".1" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16" d="M621.341,356.167c6.171-4.207,13.628-6.667,21.659-6.667l0,0c21.263,0,38.5,17.237,38.5,38.5v81c0,21.263-17.237,38.5-38.5,38.5 l0,0c-13.871,0-26.029-7.336-32.807-18.34" class="fill-primary"/><path fill="#31536E" fill-opacity=".1" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16" d="M681.973,386.233c4.827-4.194,9.131-6.733,16.027-6.733l0,0c15.188,0,27.5,12.312,27.5,27.5v89c0,15.188-12.312,27.5-27.5,27.5 l0,0c-15.188,0-27.5-12.312-27.5-27.5" class="fill-primary"/><path id="_x32_5-pct_3_" fill="#31536E" fill-opacity=".25" d="M688,523.5c-15.188,0-27.5-12.312-27.5-27.5l0.008-0.075 C653.52,503.064,643.779,507.5,633,507.5c-13.871,0-26.028-7.336-32.807-18.339c-7.805,7.611-18.669,12.339-30.693,12.339 c-11.874,0-22.624-4.605-30.406-12.051l-0.006-0.91C531.29,503.501,517.15,513.5,501,513.5c-10.683,0-18.826-16-27.386-20.245 c-5.651-2.803-13.74,8.544-14.813,0.817l10,35C475.952,546.521,490.26,623.5,524,623.5c16.15,0,18.094-67.051,18.094-67.051 c7.782,7.443,8.532,23.051,20.406,23.051c12.024,0,29.891-47.729,37.693-55.339C606.972,535.164,619.129,542.5,633,542.5 c10.779,0,20.52-4.436,27.508-11.575L660.5,531c0,15.188,12.312,27.5,27.5,27.5s27.5-12.312,27.5-27.5v-35 C715.5,511.188,703.188,523.5,688,523.5z" class="fill-primary"/><path fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="8" d="M473.499,373.498c0,0,12.987,26.002,22.994,22.002s32.046-23.229,32.046-23.229"/><path fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16" d="M542.539,502.5c12.047,5.577,23.875,74.756,22.961,69"/></g></g><path fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16" d="M426.638,477.259"/><path fill="#31536E" fill-opacity=".1" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="16" d="M469.333,369.889V99.028c0-23.58-19.115-42.695-42.695-42.695l0,0c-23.58,0-42.694,19.115-42.694,42.695v320.536" class="fill-primary"/><line x1="404.098" x2="447.455" y1="165.608" y2="165.608" fill="none" stroke="#31536E" stroke-linecap="round" stroke-miterlimit="10" stroke-width="4"/><line x1="404.098" x2="447.455" y1="269.608" y2="269.608" fill="none" stroke="#31536E" stroke-linecap="round" stroke-miterlimit="10" stroke-width="4"/><line x1="404.098" x2="447.455" y1="387.608" y2="387.608" fill="none" stroke="#31536E" stroke-linecap="round" stroke-miterlimit="10" stroke-width="4"/><path fill="#FFF" d="M1404.5,687.5"/><g id="stars_2" class="stars"><path fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4" d="M137.5,645.605c0-14.688-18.667-35.354-35.355-35.354c15.355,0,35.355-20.333,35.355-35.354c0,15.021,16.666,35.354,35.355,35.354 C153.833,610.251,137.5,630.918,137.5,645.605z"/><g><circle cx="1008.882" cy="708.662" r="13.5" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="992.383" x2="971.17" y1="691.927" y2="670.714" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="1026.324" x2="1047.537" y1="725.868" y2="747.081" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="1025.617" x2="1046.83" y1="692.634" y2="671.421" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="992.383" x2="971.17" y1="725.868" y2="747.081" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/></g><g><line x1="212.112" x2="185.95" y1="161.345" y2="187.508" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="176.758" x2="150.595" y1="196.701" y2="222.864" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="211.405" x2="185.242" y1="222.864" y2="196.701" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="176.051" x2="149.888" y1="187.508" y2="161.345" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/></g><path fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4" d="M833.092,333.86c0,0-24.604,4.603-30.25,10.249c-5.646,5.646-10.248,30.249-10.248,30.249s-4.604-24.603-10.25-30.249 c-5.646-5.646-30.248-10.249-30.248-10.249s25.188-5.187,30.248-10.249c5.062-5.062,10.25-30.249,10.25-30.249 s4.604,24.603,10.248,30.249C808.488,329.257,833.092,333.86,833.092,333.86z"/><g><circle cx="978.834" cy="500.751" r="18.5" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><circle cx="938.834" cy="500.751" r="7.166" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><circle cx="978.834" cy="540.751" r="7.166" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><circle cx="1018.834" cy="500.751" r="7.166" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><circle cx="978.834" cy="460.751" r="7.166" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/></g><g><line x1="296.246" x2="351.149" y1="682.224" y2="737.129" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="351.149" x2="296.246" y1="682.224" y2="737.129" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="305.5" x2="278.5" y1="709.251" y2="709.251" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="343.5" x2="370.5" y1="709.251" y2="709.251" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="324.5" x2="324.5" y1="728.251" y2="755.251" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="324.5" x2="324.5" y1="690.251" y2="663.251" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/></g><g><line x1="629.5" x2="629.5" y1="122.251" y2="201.251" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><line x1="668.5" x2="589.5" y1="162.251" y2="162.251" fill="none" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><circle cx="609.5" cy="181.751" r="7.039" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><circle cx="609.5" cy="141.751" r="7.039" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><circle cx="649.5" cy="181.751" r="7.039" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/><circle cx="649.5" cy="141.751" r="7.039" fill="#FFD92B" stroke="#31536E" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"/></g></g></g></svg>
1
+ <svg width="540" height="540" viewBox="0 0 540 540" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_7225_132768)">
3
+ <path d="M331.25 399.25H218.75V542.25H331.25V399.25Z" fill="#3E4C5C" fill-opacity="0.25" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M331.25 446.25H218.75V542.25H331.25V446.25Z" fill="#3E4C5C"/>
5
+ <path d="M234.75 399.25V438.25" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M250.75 399.25V438.25" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M266.75 399.25V438.25" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path d="M282.75 399.25V438.25" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
9
+ <path d="M298.75 399.25V438.25" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
10
+ <path d="M314.75 399.25V438.25" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
11
+ <path d="M351.49 261.522L341.641 259.614L334.696 248.514L320.001 254.25L305.097 245.667L293.651 250.41L274.177 244.949L267.724 252.501L249.756 255.939C249.756 255.939 239 251.25 237.665 245.648C242.248 241.556 250.454 239.44 257.75 233.25C274.25 219.25 273.75 192.75 255.75 177.75C244.75 183.75 177.75 217.25 177.75 217.25V254.25C177.75 263.246 176.5 274.75 178.539 287.236C188.972 309.75 200.751 332.5 233.016 333.845L228.751 333.531V399.25H323.251V337.75H323.198C349.001 337.75 356.508 290.667 359.479 258.632L351.49 261.522Z" fill="#3E4C5C" fill-opacity="0.1"/>
12
+ <path d="M236.75 186.749C236.75 186.749 243.244 199.75 248.247 197.75C253.251 195.75 264.27 186.135 264.27 186.135L255.751 177.75L236.75 186.749Z" fill="white" fill-opacity="0.25"/>
13
+ <path d="M225.662 249.25C225.662 249.25 241.25 247.25 257.75 233.25C274.25 219.25 273.75 192.75 255.75 177.75C244.75 183.75 177.75 217.25 177.75 217.25V254.25C177.75 263.246 176.5 274.75 178.539 287.236C188.971 309.75 200.75 332.5 233.016 333.845L228.75 333.531V399.25H323.25V337.75H323.198C349 337.75 354.508 290.667 357.479 258.632" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
14
+ <path d="M252.91 256.615C259.251 271.251 259.612 296.751 257.251 307.751" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
15
+ <path d="M234.25 188.75V183.109C234.25 168.827 243.212 157.25 255.5 157.25C267.788 157.25 277.75 168.827 277.75 183.109V230.891C277.75 245.172 267.788 256.75 255.5 256.75C246.632 256.75 242.475 254.26 238.9 245.536C238.9 245.536 260.417 234.583 265.75 223.25C269.988 214.245 274.75 193.804 255.75 177.75C248.094 181.761 234.25 188.75 234.25 188.75Z" fill="#3E4C5C" fill-opacity="0.1" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
16
+ <path d="M274.027 168.792C277.953 164.767 283.544 162.25 289.751 162.25C301.625 162.25 311.251 171.459 311.251 182.82V230.18C311.251 241.54 301.625 250.75 289.751 250.75C283.814 250.75 278.439 248.448 274.548 244.725" fill="#3E4C5C" fill-opacity="0.1"/>
17
+ <path d="M274.027 168.792C277.953 164.767 283.544 162.25 289.751 162.25C301.625 162.25 311.251 171.459 311.251 182.82V230.18C311.251 241.54 301.625 250.75 289.751 250.75C283.814 250.75 278.439 248.448 274.548 244.725" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
18
+ <path d="M310.672 178.083C313.757 175.98 317.486 174.75 321.501 174.75C332.133 174.75 340.751 183.368 340.751 194V234.5C340.751 245.132 332.133 253.75 321.501 253.75C314.566 253.75 308.487 250.082 305.098 244.58" fill="#3E4C5C" fill-opacity="0.1"/>
19
+ <path d="M310.672 178.083C313.757 175.98 317.486 174.75 321.501 174.75C332.133 174.75 340.751 183.368 340.751 194V234.5C340.751 245.132 332.133 253.75 321.501 253.75C314.566 253.75 308.487 250.082 305.098 244.58" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
20
+ <path d="M340.987 193.117C343.4 191.02 345.552 189.75 349 189.75C356.594 189.75 362.75 195.906 362.75 203.5V248C362.75 255.594 356.594 261.75 349 261.75C341.406 261.75 335.25 255.594 335.25 248" fill="#3E4C5C" fill-opacity="0.1"/>
21
+ <path d="M340.987 193.117C343.4 191.02 345.552 189.75 349 189.75C356.594 189.75 362.75 195.906 362.75 203.5V248C362.75 255.594 356.594 261.75 349 261.75C341.406 261.75 335.25 255.594 335.25 248" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
22
+ <path d="M344.002 261.75C336.408 261.75 330.252 255.594 330.252 248L330.256 247.963C326.762 251.532 321.891 253.75 316.502 253.75C309.566 253.75 303.488 250.082 300.098 244.581C296.196 248.386 290.764 250.75 284.752 250.75C278.815 250.75 273.44 248.448 269.549 244.725L269.546 244.27C265.647 251.751 258.577 256.75 250.502 256.75C245.16 256.75 241.089 248.75 236.809 246.628C233.983 245.226 229.939 250.9 229.402 247.036L234.402 264.536C237.978 273.261 245.132 311.75 262.002 311.75C270.077 311.75 271.049 278.225 271.049 278.225C274.94 281.946 275.315 289.75 281.252 289.75C287.264 289.75 296.197 265.886 300.098 262.081C303.488 267.582 309.566 271.25 316.502 271.25C321.891 271.25 326.762 269.032 330.256 265.463L330.252 265.5C330.252 273.094 336.408 279.25 344.002 279.25C351.596 279.25 357.752 273.094 357.752 265.5V248C357.752 255.594 351.596 261.75 344.002 261.75Z" fill="#3E4C5C" fill-opacity="0.25"/>
23
+ <path d="M236.75 186.748C236.75 186.748 243.244 199.749 248.247 197.749C253.251 195.749 264.27 186.135 264.27 186.135" stroke="#3E4C5C" stroke-width="4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
24
+ <path d="M271.27 251.25C277.293 254.039 283.207 288.628 282.75 285.75" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
25
+ <path d="M234.667 184.944V49.5135C234.667 37.7235 225.11 28.166 213.32 28.166C201.53 28.166 191.973 37.7235 191.973 49.5135V209.782" fill="#3E4C5C" fill-opacity="0.1"/>
26
+ <path d="M234.667 184.944V49.5135C234.667 37.7235 225.11 28.166 213.32 28.166C201.53 28.166 191.973 37.7235 191.973 49.5135V209.782" stroke="#3E4C5C" stroke-width="8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
27
+ <path d="M202.049 82.8027H223.727" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round"/>
28
+ <path d="M202.049 134.803H223.727" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round"/>
29
+ <path d="M202.049 193.803H223.727" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round"/>
30
+ <path d="M68.7498 322.801C68.7498 315.457 59.4163 305.124 51.0723 305.124C58.7498 305.124 68.7498 294.958 68.7498 287.447C68.7498 294.958 77.0828 305.124 86.4273 305.124C76.9163 305.124 68.7498 315.458 68.7498 322.801Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
31
+ <path d="M504.441 361.08C508.169 361.08 511.191 358.058 511.191 354.33C511.191 350.602 508.169 347.58 504.441 347.58C500.713 347.58 497.691 350.602 497.691 354.33C497.691 358.058 500.713 361.08 504.441 361.08Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
32
+ <path d="M496.192 345.962L485.586 335.355" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
33
+ <path d="M513.164 362.932L523.771 373.538" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
34
+ <path d="M512.809 346.315L523.415 335.709" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
35
+ <path d="M496.192 362.932L485.586 373.538" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
36
+ <path d="M106.058 80.6719L92.9766 93.7534" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
37
+ <path d="M88.3803 98.3496L75.2988 111.431" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
38
+ <path d="M105.705 111.431L92.623 98.3496" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
39
+ <path d="M88.0268 93.7534L74.9453 80.6719" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
40
+ <path d="M416.545 166.929C416.545 166.929 404.243 169.23 401.42 172.053C398.597 174.876 396.296 187.178 396.296 187.178C396.296 187.178 393.994 174.876 391.171 172.053C388.348 169.23 376.047 166.929 376.047 166.929C376.047 166.929 388.641 164.335 391.171 161.804C393.702 159.273 396.296 146.68 396.296 146.68C396.296 146.68 398.598 158.981 401.42 161.804C404.243 164.627 416.545 166.929 416.545 166.929Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
41
+ <path d="M489.418 259.625C494.527 259.625 498.668 255.484 498.668 250.375C498.668 245.266 494.527 241.125 489.418 241.125C484.309 241.125 480.168 245.266 480.168 250.375C480.168 255.484 484.309 259.625 489.418 259.625Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
42
+ <path d="M469.417 253.959C471.396 253.959 473 252.355 473 250.376C473 248.397 471.396 246.793 469.417 246.793C467.438 246.793 465.834 248.397 465.834 250.376C465.834 252.355 467.438 253.959 469.417 253.959Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
43
+ <path d="M489.417 273.959C491.396 273.959 493 272.355 493 270.376C493 268.397 491.396 266.793 489.417 266.793C487.438 266.793 485.834 268.397 485.834 270.376C485.834 272.355 487.438 273.959 489.417 273.959Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
44
+ <path d="M509.417 253.959C511.396 253.959 513 252.355 513 250.376C513 248.397 511.396 246.793 509.417 246.793C507.438 246.793 505.834 248.397 505.834 250.376C505.834 252.355 507.438 253.959 509.417 253.959Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
45
+ <path d="M489.417 233.959C491.396 233.959 493 232.355 493 230.376C493 228.397 491.396 226.793 489.417 226.793C487.438 226.793 485.834 228.397 485.834 230.376C485.834 232.355 487.438 233.959 489.417 233.959Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
46
+ <path d="M148.123 341.111L175.575 368.564" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
47
+ <path d="M175.575 341.111L148.123 368.564" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
48
+ <path d="M152.75 354.625H139.25" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
49
+ <path d="M171.75 354.625H185.25" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
50
+ <path d="M162.25 364.125V377.625" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
51
+ <path d="M162.25 345.125V331.625" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
52
+ <path d="M314.75 61.125V100.625" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
53
+ <path d="M334.25 81.125H294.75" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
54
+ <path d="M304.75 94.3945C306.694 94.3945 308.269 92.8187 308.269 90.875C308.269 88.9312 306.694 87.3555 304.75 87.3555C302.806 87.3555 301.23 88.9312 301.23 90.875C301.23 92.8187 302.806 94.3945 304.75 94.3945Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
55
+ <path d="M304.75 74.3945C306.694 74.3945 308.269 72.8187 308.269 70.875C308.269 68.9312 306.694 67.3555 304.75 67.3555C302.806 67.3555 301.23 68.9312 301.23 70.875C301.23 72.8187 302.806 74.3945 304.75 74.3945Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
56
+ <path d="M324.75 94.3945C326.694 94.3945 328.269 92.8187 328.269 90.875C328.269 88.9312 326.694 87.3555 324.75 87.3555C322.806 87.3555 321.23 88.9312 321.23 90.875C321.23 92.8187 322.806 94.3945 324.75 94.3945Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
57
+ <path d="M324.75 74.3945C326.694 74.3945 328.269 72.8187 328.269 70.875C328.269 68.9312 326.694 67.3555 324.75 67.3555C322.806 67.3555 321.23 68.9312 321.23 70.875C321.23 72.8187 322.806 74.3945 324.75 74.3945Z" fill="#EBC34B" stroke="#3E4C5C" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
58
+ </g>
59
+ <defs>
60
+ <clipPath id="clip0_7225_132768">
61
+ <rect width="540" height="540" fill="white"/>
62
+ </clipPath>
63
+ </defs>
64
+ </svg>