decidim-proposals 0.21.0 → 0.22.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (169) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/config/admin/decidim_proposals_manifest.js +1 -0
  3. data/app/assets/images/decidim/gamification/badges/accepted_proposals.svg +1 -234
  4. data/app/assets/images/decidim/gamification/badges/proposal_votes.svg +1 -95
  5. data/app/assets/images/decidim/gamification/badges/proposals.svg +1 -229
  6. data/app/assets/images/decidim/proposals/icon.svg +1 -3
  7. data/app/assets/javascripts/decidim/proposals/admin/proposals_form.js.es6 +0 -5
  8. data/app/assets/javascripts/decidim/proposals/admin/proposals_picker.js.es6 +35 -0
  9. data/app/cells/decidim/proposals/collaborative_draft_link_to_proposal_cell.rb +1 -1
  10. data/app/cells/decidim/proposals/collaborative_draft_m/footer.erb +1 -1
  11. data/app/cells/decidim/proposals/collaborative_draft_m_cell.rb +1 -1
  12. data/app/cells/decidim/proposals/highlighted_proposals_for_component/show.erb +3 -3
  13. data/app/cells/decidim/proposals/highlighted_proposals_for_component_cell.rb +1 -1
  14. data/app/cells/decidim/proposals/irreversible_action_modal/show.erb +2 -2
  15. data/app/cells/decidim/proposals/irreversible_action_modal_cell.rb +1 -1
  16. data/app/cells/decidim/proposals/participatory_text_proposal/buttons.erb +1 -1
  17. data/app/cells/decidim/proposals/participatory_text_proposal_cell.rb +1 -1
  18. data/app/cells/decidim/proposals/proposal_m/footer.erb +4 -1
  19. data/app/cells/decidim/proposals/proposal_m_cell.rb +28 -8
  20. data/app/cells/decidim/proposals/proposal_tags/show.erb +8 -2
  21. data/app/cells/decidim/proposals/proposals_picker/proposals.erb +12 -0
  22. data/app/cells/decidim/proposals/proposals_picker/show.erb +14 -0
  23. data/app/cells/decidim/proposals/proposals_picker_cell.rb +72 -0
  24. data/app/commands/decidim/proposals/admin/create_proposal.rb +1 -1
  25. data/app/commands/decidim/proposals/admin/create_proposal_note.rb +15 -0
  26. data/app/commands/decidim/proposals/admin/update_proposal.rb +1 -1
  27. data/app/commands/decidim/proposals/create_collaborative_draft.rb +1 -1
  28. data/app/commands/decidim/proposals/create_proposal.rb +1 -1
  29. data/app/commands/decidim/proposals/gallery_methods.rb +2 -51
  30. data/app/commands/decidim/proposals/update_proposal.rb +1 -1
  31. data/app/controllers/concerns/decidim/proposals/admin/picker.rb +21 -0
  32. data/app/controllers/concerns/decidim/proposals/orderable.rb +1 -1
  33. data/app/controllers/decidim/proposals/proposals_controller.rb +4 -5
  34. data/app/controllers/decidim/proposals/versions_controller.rb +8 -18
  35. data/app/events/decidim/proposals/admin/proposal_note_created_event.rb +27 -0
  36. data/app/forms/decidim/proposals/admin/participatory_text_proposal_form.rb +13 -0
  37. data/app/forms/decidim/proposals/admin/preview_participatory_text_form.rb +2 -2
  38. data/app/forms/decidim/proposals/admin/proposal_base_form.rb +129 -0
  39. data/app/forms/decidim/proposals/admin/proposal_form.rb +2 -120
  40. data/app/forms/decidim/proposals/proposal_form.rb +4 -0
  41. data/app/forms/decidim/proposals/proposal_wizard_create_step_form.rb +5 -1
  42. data/app/helpers/decidim/proposals/admin/filterable_helper.rb +2 -2
  43. data/app/helpers/decidim/proposals/admin/proposal_rankings_helper.rb +2 -2
  44. data/app/helpers/decidim/proposals/admin/proposals_picker_helper.rb +30 -0
  45. data/app/helpers/decidim/proposals/application_helper.rb +6 -6
  46. data/app/helpers/decidim/proposals/control_version_helper.rb +1 -37
  47. data/app/helpers/decidim/proposals/proposal_endorsements_helper.rb +0 -145
  48. data/app/helpers/decidim/proposals/proposal_votes_helper.rb +2 -2
  49. data/app/helpers/decidim/proposals/proposal_wizard_helper.rb +24 -7
  50. data/app/helpers/decidim/proposals/proposals_helper.rb +6 -0
  51. data/app/models/decidim/proposals/proposal.rb +4 -14
  52. data/app/permissions/decidim/proposals/permissions.rb +1 -22
  53. data/app/presenters/decidim/proposals/proposal_presenter.rb +14 -2
  54. data/app/queries/decidim/proposals/metrics/accepted_proposals_metric_manage.rb +1 -2
  55. data/app/queries/decidim/proposals/metrics/endorsements_metric_manage.rb +15 -12
  56. data/app/queries/decidim/proposals/metrics/proposal_participants_metric_measure.rb +5 -4
  57. data/app/queries/decidim/proposals/metrics/proposals_metric_manage.rb +2 -8
  58. data/app/queries/decidim/proposals/metrics/votes_metric_manage.rb +3 -9
  59. data/app/services/decidim/proposals/diff_renderer.rb +2 -0
  60. data/app/services/decidim/proposals/proposal_builder.rb +1 -1
  61. data/app/services/decidim/proposals/proposal_search.rb +2 -2
  62. data/app/types/decidim/proposals/proposal_input_sort.rb +1 -7
  63. data/app/types/decidim/proposals/proposal_type.rb +1 -11
  64. data/app/types/decidim/proposals/proposals_type.rb +10 -0
  65. data/app/validators/proposal_length_validator.rb +38 -0
  66. data/app/views/decidim/proposals/admin/participatory_texts/index.html.erb +9 -1
  67. data/app/views/decidim/proposals/admin/proposal_notes/_proposal_notes.html.erb +2 -2
  68. data/app/views/decidim/proposals/admin/proposals/_form.html.erb +3 -23
  69. data/app/views/decidim/proposals/admin/proposals/index.html.erb +1 -1
  70. data/app/views/decidim/proposals/admin/proposals/show.html.erb +1 -1
  71. data/app/views/decidim/proposals/collaborative_drafts/_edit_form_fields.html.erb +6 -4
  72. data/app/views/decidim/proposals/collaborative_drafts/_filters.html.erb +9 -7
  73. data/app/views/decidim/proposals/collaborative_drafts/_new_collaborative_draft_button.html.erb +4 -4
  74. data/app/views/decidim/proposals/collaborative_drafts/_reject_request_access_form.html.erb +1 -1
  75. data/app/views/decidim/proposals/collaborative_drafts/_wizard_aside.html.erb +4 -2
  76. data/app/views/decidim/proposals/collaborative_drafts/compare.html.erb +2 -0
  77. data/app/views/decidim/proposals/collaborative_drafts/complete.html.erb +2 -0
  78. data/app/views/decidim/proposals/collaborative_drafts/edit.html.erb +3 -1
  79. data/app/views/decidim/proposals/collaborative_drafts/index.html.erb +4 -2
  80. data/app/views/decidim/proposals/collaborative_drafts/new.html.erb +4 -0
  81. data/app/views/decidim/proposals/collaborative_drafts/show.html.erb +29 -30
  82. data/app/views/decidim/proposals/proposals/_edit_form_fields.html.erb +5 -3
  83. data/app/views/decidim/proposals/proposals/_endorsements_card_row.html.erb +0 -16
  84. data/app/views/decidim/proposals/proposals/_filters.html.erb +12 -10
  85. data/app/views/decidim/proposals/proposals/_proposal_preview.html.erb +1 -11
  86. data/app/views/decidim/proposals/proposals/_proposal_similar.html.erb +2 -2
  87. data/app/views/decidim/proposals/proposals/_proposals.html.erb +14 -0
  88. data/app/views/decidim/proposals/proposals/_vote_button.html.erb +13 -6
  89. data/app/views/decidim/proposals/proposals/_wizard_aside.html.erb +4 -2
  90. data/app/views/decidim/proposals/proposals/_wizard_header.html.erb +4 -3
  91. data/app/views/decidim/proposals/proposals/compare.html.erb +2 -0
  92. data/app/views/decidim/proposals/proposals/complete.html.erb +2 -0
  93. data/app/views/decidim/proposals/proposals/edit.html.erb +3 -1
  94. data/app/views/decidim/proposals/proposals/edit_draft.html.erb +2 -0
  95. data/app/views/decidim/proposals/proposals/index.html.erb +5 -10
  96. data/app/views/decidim/proposals/proposals/new.html.erb +5 -1
  97. data/app/views/decidim/proposals/proposals/participatory_texts/_index.html.erb +1 -1
  98. data/app/views/decidim/proposals/proposals/participatory_texts/_proposal_vote_button.html.erb +10 -3
  99. data/app/views/decidim/proposals/proposals/participatory_texts/_view_index.html.erb +1 -1
  100. data/app/views/decidim/proposals/proposals/preview.html.erb +7 -8
  101. data/app/views/decidim/proposals/proposals/show.html.erb +52 -34
  102. data/app/views/decidim/proposals/versions/index.html.erb +14 -32
  103. data/app/views/decidim/proposals/versions/show.html.erb +16 -34
  104. data/config/locales/ar.yml +8 -64
  105. data/config/locales/bg-BG.yml +237 -0
  106. data/config/locales/ca.yml +68 -61
  107. data/config/locales/cs.yml +78 -68
  108. data/config/locales/da-DK.yml +1 -0
  109. data/config/locales/de.yml +142 -58
  110. data/config/locales/el.yml +875 -0
  111. data/config/locales/en.yml +74 -67
  112. data/config/locales/es-MX.yml +68 -61
  113. data/config/locales/es-PY.yml +68 -61
  114. data/config/locales/es.yml +68 -61
  115. data/config/locales/et-EE.yml +1 -0
  116. data/config/locales/eu.yml +5 -43
  117. data/config/locales/fi-plain.yml +68 -61
  118. data/config/locales/fi.yml +109 -102
  119. data/config/locales/fr-CA.yml +876 -0
  120. data/config/locales/fr.yml +128 -60
  121. data/config/locales/ga-IE.yml +1 -0
  122. data/config/locales/gl.yml +5 -43
  123. data/config/locales/hr-HR.yml +1 -0
  124. data/config/locales/hu.yml +38 -61
  125. data/config/locales/id-ID.yml +5 -42
  126. data/config/locales/is-IS.yml +1 -27
  127. data/config/locales/it.yml +136 -76
  128. data/config/locales/ja-JP.yml +886 -0
  129. data/config/locales/lt-LT.yml +1 -0
  130. data/config/locales/lv-LV.yml +858 -0
  131. data/config/locales/mt-MT.yml +1 -0
  132. data/config/locales/nl.yml +114 -59
  133. data/config/locales/no.yml +11 -64
  134. data/config/locales/pl.yml +170 -60
  135. data/config/locales/pt-BR.yml +6 -47
  136. data/config/locales/pt.yml +419 -331
  137. data/config/locales/ro-RO.yml +840 -0
  138. data/config/locales/ru.yml +1 -40
  139. data/config/locales/sk-SK.yml +896 -0
  140. data/config/locales/sk.yml +869 -0
  141. data/config/locales/sl.yml +26 -0
  142. data/config/locales/sr-CS.yml +126 -0
  143. data/config/locales/sv.yml +228 -156
  144. data/config/locales/tr-TR.yml +5 -43
  145. data/config/locales/uk.yml +1 -40
  146. data/db/migrate/20181003074440_fix_user_groups_ids_in_proposals_endorsements.rb +4 -0
  147. data/db/migrate/20191206154128_add_endorsements_counter_cache_to_proposals.rb +7 -0
  148. data/db/migrate/20200120215928_move_proposal_endorsements_to_core_endorsements.rb +52 -0
  149. data/db/migrate/20200730131631_move_proposal_endorsed_event_notifications_to_resource_endorsed_event.rb +20 -0
  150. data/lib/decidim/proposals/component.rb +8 -4
  151. data/lib/decidim/proposals/engine.rb +1 -5
  152. data/lib/decidim/proposals/test/capybara_proposals_picker.rb +49 -0
  153. data/lib/decidim/proposals/test/factories.rb +3 -12
  154. data/lib/decidim/proposals/version.rb +1 -1
  155. metadata +55 -34
  156. data/app/assets/javascripts/decidim/proposals/identity_selector_dialog.js.es6 +0 -56
  157. data/app/cells/decidim/proposals/endorsers_list/show.erb +0 -17
  158. data/app/cells/decidim/proposals/endorsers_list_cell.rb +0 -31
  159. data/app/commands/decidim/proposals/attachment_methods.rb +0 -43
  160. data/app/commands/decidim/proposals/endorse_proposal.rb +0 -59
  161. data/app/commands/decidim/proposals/unendorse_proposal.rb +0 -40
  162. data/app/controllers/decidim/proposals/proposal_endorsements_controller.rb +0 -60
  163. data/app/models/decidim/proposals/proposal_endorsement.rb +0 -37
  164. data/app/views/decidim/proposals/proposal_endorsements/_identity.html.erb +0 -9
  165. data/app/views/decidim/proposals/proposal_endorsements/identities.html.erb +0 -12
  166. data/app/views/decidim/proposals/proposal_endorsements/update_buttons_and_counters.js.erb +0 -20
  167. data/app/views/decidim/proposals/proposals/_endorsement_button.html.erb +0 -11
  168. data/app/views/decidim/proposals/proposals/_endorsement_identities_cabin.html.erb +0 -13
  169. data/app/views/decidim/proposals/versions/_version.html.erb +0 -20
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2e2beae792f2e71369afee5770fce30f6ec7b4b2baf3e89da9cd905c2c99a1e9
4
- data.tar.gz: b4faeabfaa6b595a48acb8fb0e320bb404c746da7fb1fe0229b8888efa39b0ad
3
+ metadata.gz: 95ad7328b3adf635200a9499b7e4f8105621aa050c352988f44f9e6263827f70
4
+ data.tar.gz: 381c0320e9e041cd1166a04f6366210abeccd4bcfc07fd4da5369d90202cb31f
5
5
  SHA512:
6
- metadata.gz: 18a69a6b8e6ce11c8a91acb8f6370111140612b3e33f62d73de4424d2834691c2f84074adac3c63fa77049954c4285f66876a12748216c4e2ddba55888253a8e
7
- data.tar.gz: 2dc55deb9e785df8f31b8b3fc940a09049688b2fa96ec38ab55687428edd2b977433e186e6cebafdf4d98205687d65c89c758a39e92d44d6cf11d30657ae7308
6
+ metadata.gz: 0d242419f3ce6cda013d468c047dca8beebe336be6be871e458d2a805b0e4d2272a2d621e4f952546d17b5087629e45738048d8c2392cc10f402a95c11d9c001
7
+ data.tar.gz: be03e252c8ea81291fc8d2931ad348e73d1774e1ccb73550245b4ab8ce1baa8cfa355ee0a15373801df797f6ca70dc38fbe9551cc429c1898056c3b5a65017b5
@@ -1 +1,2 @@
1
1
  //= link decidim/proposals/admin/proposals.js
2
+ //= link decidim/proposals/admin/proposals_picker.js
@@ -1,234 +1 @@
1
- <svg version="1.1" id="accepted-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="1080px" height="1080px" viewBox="0 0 1080 1080" enable-background="new 0 0 1080 1080" xml:space="preserve">
2
- <g id="accepted" class="stroke-primary">
3
- <g id="sleeve_1_">
4
-
5
- <rect class="fill-primary" id="_x32_5-pct_3_" x="404.5" y="775.5" fill="#31536E" fill-opacity="0.25" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" width="215" height="286"/>
6
-
7
- <rect class="fill-primary" x="404.5" y="875.5" fill="#31536E" stroke="#31536E" stroke-width="16" stroke-linejoin="round" stroke-miterlimit="10" width="215" height="208"/>
8
-
9
- <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="431.5" y1="775.5" x2="431.5" y2="853.5"/>
10
-
11
- <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="463.5" y1="775.5" x2="463.5" y2="853.5"/>
12
-
13
- <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="495.5" y1="775.5" x2="495.5" y2="853.5"/>
14
-
15
- <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="527.5" y1="775.5" x2="527.5" y2="853.5"/>
16
-
17
- <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="559.5" y1="775.5" x2="559.5" y2="853.5"/>
18
-
19
- <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="591.5" y1="775.5" x2="591.5" y2="853.5"/>
20
- </g>
21
- <g>
22
- <g id="hand_1_">
23
- <polygon
24
- class="fill-primary"
25
- opacity="0.1"
26
- fill="#31536E"
27
- points="423.5,770.5 601.107,770.5 601.107,667.825 658.61,634.993 696.29,599.501
28
- 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
29
- 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
30
- 366.931,422.676 352.489,461.459 361.5,559.543 413.81,669.5 421.5,698.5 "/>
31
- <path fill="#FFFFFF" d="M727.875,451.459h-20.676c0,0-9.086,51.541,0,53.326s20.505,0,20.505,0"/>
32
- <path fill="#FFFFFF" 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
33
- L695.802,395.398z"/>
34
-
35
- <path
36
- fill="none"
37
- stroke="#31536E"
38
- stroke-width="16"
39
- stroke-linecap="round"
40
- stroke-linejoin="round"
41
- stroke-miterlimit="10"
42
- d="
43
- M592.395,671.5c61.525-25.129,97.612-56.398,133.562-112.237c0,0,4.314-90.188,0-110.727
44
- c-19.493,1.786-56.957-21.036-86.993,83.572c-23.964,5.392-52.964,26.559-90,32.964"/>
45
-
46
- <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="418.5" y1="775.5" x2="418.5" y2="677.5"/>
47
-
48
- <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="604.5" y1="669.5" x2="604.5" y2="775.5"/>
49
-
50
- <path
51
- fill="none"
52
- stroke="#31536E"
53
- stroke-width="16"
54
- stroke-linecap="round"
55
- stroke-linejoin="round"
56
- stroke-miterlimit="10"
57
- d="
58
- M572.321,554.571c0,0-87.773-39.071-88.75-93.646c16.068-10.714,63.068-69,73.596-83.286
59
- 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
60
- 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
61
- 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"/>
62
-
63
- <path
64
- class="fill-primary"
65
- id="_x32_5-pct_4_"
66
- fill="#31536E"
67
- fill-opacity="0.25"
68
- stroke="#31536E"
69
- stroke-width="16"
70
- stroke-linecap="round"
71
- stroke-linejoin="round"
72
- stroke-miterlimit="10"
73
- d="
74
- 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
75
- 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
76
- 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"/>
77
-
78
- <path
79
- class="fill-primary"
80
- id="_x35_0-pct_3_"
81
- fill="#31536E"
82
- fill-opacity="0.5"
83
- stroke="#31536E"
84
- stroke-width="16"
85
- stroke-linecap="round"
86
- stroke-linejoin="round"
87
- stroke-miterlimit="10"
88
- d="
89
- 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"/>
90
-
91
- <path
92
- fill="#FFFFFF"
93
- fill-opacity="0.5"
94
- stroke="#31536E"
95
- stroke-width="8"
96
- stroke-linecap="round"
97
- stroke-linejoin="round"
98
- stroke-miterlimit="10"
99
- d="
100
- 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"/>
101
- <path fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
102
- M707.199,451.459c0,0-9.086,51.541,0,53.326s20.505,0,20.505,0"/>
103
-
104
- <path
105
- fill="#FFFFFF"
106
- fill-opacity="0.5"
107
- stroke="#31536E"
108
- stroke-width="8"
109
- stroke-linecap="round"
110
- stroke-linejoin="round"
111
- stroke-miterlimit="10"
112
- d="
113
- 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"/>
114
- </g>
115
- </g>
116
- <path fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
117
- 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"/>
118
-
119
- <path
120
- class="fill-primary"
121
- id="_x35_0-pct"
122
- fill="#31536E"
123
- fill-opacity="0.5"
124
- stroke="#31536E"
125
- stroke-width="16"
126
- stroke-linecap="round"
127
- stroke-linejoin="round"
128
- stroke-miterlimit="10"
129
- d="
130
- 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
131
- L522.011,422.676z"/>
132
-
133
- <line opacity="0.1" fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="525.678" y1="273.6" x2="523.429" y2="294.071"/>
134
- <path fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
135
- M695.802,395.398c-10.302,6.279-11.942,16.53-11.052,20.102s16.611,27.104,16.611,27.104"/>
136
-
137
- <line fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="638.964" y1="532.108" x2="656.295" y2="550.628"/>
138
-
139
- <line fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="557.167" y1="377.642" x2="557.167" y2="351.599"/>
140
-
141
- <line fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="597.714" y1="252.608" x2="604.5" y2="231.143"/>
142
-
143
- <line fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="483.571" y1="460.928" x2="455.093" y2="461.459"/>
144
-
145
- <line fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="510" y1="277.644" x2="495.591" y2="264.603"/>
146
- <g id="stars_3" class="stars">
147
-
148
- <path
149
- fill="#FFD92B"
150
- stroke="#31536E"
151
- stroke-width="4"
152
- stroke-linecap="round"
153
- stroke-linejoin="round"
154
- stroke-miterlimit="10"
155
- d="
156
- 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
157
- c0,15.022,16.667,35.355,35.355,35.355C194.978,837.129,178.645,857.796,178.645,872.483z"/>
158
- <g>
159
-
160
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="267.833" cy="219.444" r="13.5"/>
161
-
162
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="268" y1="195.944" x2="268" y2="165.944"/>
163
-
164
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="268" y1="243.944" x2="268" y2="273.944"/>
165
-
166
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="291" y1="219.944" x2="321" y2="219.944"/>
167
-
168
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="244" y1="219.944" x2="214" y2="219.944"/>
169
- </g>
170
- <g>
171
-
172
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="878.875" y1="649.072" x2="852.713" y2="675.234"/>
173
-
174
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="843.521" y1="684.429" x2="817.357" y2="710.592"/>
175
-
176
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="878.168" y1="710.592" x2="852.005" y2="684.429"/>
177
-
178
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="842.813" y1="675.234" x2="816.65" y2="649.072"/>
179
- </g>
180
-
181
- <path
182
- fill="#FFD92B"
183
- stroke="#31536E"
184
- stroke-width="4"
185
- stroke-linecap="round"
186
- stroke-linejoin="round"
187
- stroke-miterlimit="10"
188
- d="
189
- 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
190
- 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
191
- s4.604,24.603,10.249,30.249C463.988,83.95,488.591,88.553,488.591,88.553z"/>
192
- <g>
193
-
194
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="814.929" cy="165.944" r="18.5"/>
195
-
196
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="774.929" cy="165.944" r="7.166"/>
197
-
198
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="814.929" cy="205.944" r="7.166"/>
199
-
200
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="854.929" cy="165.944" r="7.166"/>
201
-
202
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="814.929" cy="125.944" r="7.166"/>
203
- </g>
204
- <g>
205
-
206
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="133.832" y1="444.075" x2="188.735" y2="498.98"/>
207
-
208
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="188.735" y1="444.075" x2="133.832" y2="498.98"/>
209
-
210
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="143.086" y1="471.103" x2="116.086" y2="471.103"/>
211
-
212
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="181.086" y1="471.103" x2="208.086" y2="471.103"/>
213
-
214
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="162.086" y1="490.103" x2="162.086" y2="517.103"/>
215
-
216
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="162.086" y1="452.103" x2="162.086" y2="425.103"/>
217
- </g>
218
- <g>
219
-
220
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="912.5" y1="845.944" x2="912.5" y2="924.944"/>
221
-
222
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="951.5" y1="885.944" x2="872.5" y2="885.944"/>
223
-
224
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="892.5" cy="905.444" r="7.039"/>
225
-
226
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="892.5" cy="865.444" r="7.039"/>
227
-
228
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="932.5" cy="905.444" r="7.039"/>
229
-
230
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="932.5" cy="865.444" r="7.039"/>
231
- </g>
232
- </g>
233
- </g>
234
- </svg>
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,95 +1 @@
1
- <svg version="1.1" id="supports-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
2
- y="0px" width="1080px" height="1080px" viewBox="0 0 1080 1080" enable-background="new 0 0 1080 1080" xml:space="preserve">
3
- <g id="supports" class="stroke-primary">
4
- <g id="thumb-up">
5
-
6
- <rect class="fill-primary" id="_x35_0-pct_10_" x="269.861" y="593.333" fill="#31536E" fill-opacity="0.5" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" width="169.596" height="357.296"/>
7
- <path fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
8
- 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
9
- 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
10
- 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"/>
11
- <g>
12
- <path class="fill-primary" id="_x32_5-pct_10_" fill="#31536E" fill-opacity="0.25" d="M751.75,893.462c-38.522,0-184.904,0-223.43,0
13
- 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
14
- 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
15
- C809.141,880.759,806.282,893.462,751.75,893.462z"/>
16
- </g>
17
- </g>
18
- <path class="fill-primary" 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
19
- 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
20
- l43.943-43.942L690.525,270l18.358-18.359C737.047,223.479,737.047,177.818,708.884,149.655z"/>
21
- <g id="stars_7" class="stars">
22
-
23
- <path fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
24
- 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
25
- C227.727,138.695,213.313,156.932,213.313,169.895z"/>
26
- <g>
27
-
28
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="932.273" cy="132.884" r="11.913"/>
29
-
30
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="917.715" y1="118.116" x2="898.994" y2="99.396"/>
31
-
32
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="947.667" y1="148.068" x2="966.387" y2="166.788"/>
33
-
34
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="947.043" y1="118.739" x2="965.763" y2="100.02"/>
35
-
36
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="917.715" y1="148.068" x2="898.994" y2="166.788"/>
37
- </g>
38
- <g>
39
-
40
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="227.091" y1="584.43" x2="204.003" y2="607.52"/>
41
-
42
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="195.892" y1="615.631" x2="172.803" y2="638.719"/>
43
-
44
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="226.467" y1="638.719" x2="203.379" y2="615.631"/>
45
-
46
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="195.268" y1="607.52" x2="172.18" y2="584.43"/>
47
- </g>
48
-
49
- <path fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
50
- 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
51
- 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
52
- C908.73,907.841,927.763,911.402,927.763,911.402z"/>
53
- <g>
54
-
55
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="917.977" cy="493.158" r="14.653"/>
56
-
57
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="886.293" cy="493.158" r="5.676"/>
58
-
59
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="917.977" cy="524.839" r="5.676"/>
60
-
61
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="949.657" cy="493.158" r="5.676"/>
62
-
63
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="917.977" cy="461.475" r="5.676"/>
64
- </g>
65
- <g>
66
-
67
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="142.49" y1="864.953" x2="190.941" y2="913.405"/>
68
-
69
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="190.941" y1="864.953" x2="142.49" y2="913.405"/>
70
-
71
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="150" y1="888.475" x2="127" y2="888.475"/>
72
-
73
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="185" y1="888.475" x2="208" y2="888.475"/>
74
-
75
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="167" y1="905.475" x2="167" y2="929.475"/>
76
-
77
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="167" y1="872.475" x2="167" y2="848.475"/>
78
- </g>
79
- <g>
80
-
81
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="127" y1="328.475" x2="127" y2="398.475"/>
82
-
83
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="161" y1="364.475" x2="92" y2="364.475"/>
84
-
85
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="109.181" cy="380.935" r="6.212"/>
86
-
87
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="109.181" cy="345.636" r="6.212"/>
88
-
89
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="144.479" cy="380.935" r="6.212"/>
90
-
91
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="144.479" cy="345.636" r="6.212"/>
92
- </g>
93
- </g>
94
- </g>
95
- </svg>
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,229 +1 @@
1
- <svg version="1.1" id="proposals-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="1080px" height="1080px" viewBox="0 0 1080 1080" enable-background="new 0 0 1080 1080" xml:space="preserve">
2
- <g id="proposals" class="stroke-primary">
3
- <g id="sleeve">
4
-
5
- <rect class="fill-primary" id="_x32_5-pct_1_" x="437.5" y="798.5" fill="#31536E" fill-opacity="0.25" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" width="225" height="286"/>
6
- <rect class="fill-primary" x="437.5" y="892.5" fill="#31536E" width="225" height="192"/>
7
-
8
- <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="469.5" y1="798.5" x2="469.5" y2="876.5"/>
9
-
10
- <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="501.5" y1="798.5" x2="501.5" y2="876.5"/>
11
-
12
- <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="533.5" y1="798.5" x2="533.5" y2="876.5"/>
13
-
14
- <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="565.5" y1="798.5" x2="565.5" y2="876.5"/>
15
-
16
- <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="597.5" y1="798.5" x2="597.5" y2="876.5"/>
17
-
18
- <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="629.5" y1="798.5" x2="629.5" y2="876.5"/>
19
- </g>
20
- <g>
21
- <g id="hand_1_" class="fill-primary" fill-opacity="0.25">
22
- <path
23
- class="fill-primary"
24
- fill="#31536E"
25
- fill-opacity="0.1"
26
- d="M702.979,523.043l-19.699-3.815l-13.889-22.199L640.001,508.5l-29.808-17.167
27
- 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
28
- 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
29
- 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
30
- L702.979,523.043z"/>
31
- <path fill="#FFFFFF" d="M473.499,373.498c0,0,12.987,26.002,22.994,22.002s32.046-23.229,32.046-23.229L511.5,355.5
32
- L473.499,373.498z"/>
33
-
34
- <path
35
- fill="none"
36
- stroke="#31536E"
37
- stroke-width="16"
38
- stroke-linecap="round"
39
- stroke-linejoin="round"
40
- stroke-miterlimit="10"
41
- d="
42
- 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
43
- 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"/>
44
-
45
- <path fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
46
- M505.818,513.229c12.682,29.272,13.403,80.272,8.682,102.271"/>
47
-
48
- <path
49
- class="fill-primary"
50
- fill="#31536E"
51
- fill-opacity="0.1"
52
- stroke="#31536E"
53
- stroke-width="16"
54
- stroke-linecap="round"
55
- stroke-linejoin="round"
56
- stroke-miterlimit="10"
57
- d="
58
- 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
59
- 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
60
- c8.476-18.011,18-58.892-20-91C496.188,363.522,468.5,377.5,468.5,377.5z"/>
61
-
62
- <path
63
- class="fill-primary"
64
- fill="#31536E"
65
- fill-opacity="0.1"
66
- stroke="#31536E"
67
- stroke-width="16"
68
- stroke-linecap="round"
69
- stroke-linejoin="round"
70
- stroke-miterlimit="10"
71
- d="
72
- 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
73
- c0,22.721-19.252,41.14-43,41.14l0,0c-11.874,0-22.624-4.605-30.406-12.05"/>
74
-
75
- <path
76
- class="fill-primary"
77
- fill="#31536E"
78
- fill-opacity="0.1"
79
- stroke="#31536E"
80
- stroke-width="16"
81
- stroke-linecap="round"
82
- stroke-linejoin="round"
83
- stroke-miterlimit="10"
84
- d="
85
- 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
86
- l0,0c-13.871,0-26.029-7.336-32.807-18.34"/>
87
-
88
- <path
89
- class="fill-primary"
90
- fill="#31536E"
91
- fill-opacity="0.1"
92
- stroke="#31536E"
93
- stroke-width="16"
94
- stroke-linecap="round"
95
- stroke-linejoin="round"
96
- stroke-miterlimit="10"
97
- d="
98
- 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
99
- l0,0c-15.188,0-27.5-12.312-27.5-27.5"/>
100
- <path
101
- class="fill-primary"
102
- id="_x32_5-pct_3_"
103
- fill="#31536E"
104
- fill-opacity="0.25"
105
- d="M688,523.5c-15.188,0-27.5-12.312-27.5-27.5l0.008-0.075
106
- 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
107
- 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
108
- 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
109
- 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
110
- 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
111
- C715.5,511.188,703.188,523.5,688,523.5z"/>
112
- <path fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
113
- M473.499,373.498c0,0,12.987,26.002,22.994,22.002s32.046-23.229,32.046-23.229"/>
114
-
115
- <path fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
116
- M542.539,502.5c12.047,5.577,23.875,74.756,22.961,69"/>
117
- </g>
118
- </g>
119
- <path fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
120
- M426.638,477.259"/>
121
-
122
- <path
123
- class="fill-primary"
124
- fill="#31536E"
125
- fill-opacity="0.1"
126
- stroke="#31536E"
127
- stroke-width="16"
128
- stroke-linecap="round"
129
- stroke-linejoin="round"
130
- stroke-miterlimit="10"
131
- d="
132
- 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"/>
133
-
134
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-miterlimit="10" x1="404.098" y1="165.608" x2="447.455" y2="165.608"/>
135
-
136
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-miterlimit="10" x1="404.098" y1="269.608" x2="447.455" y2="269.608"/>
137
-
138
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-miterlimit="10" x1="404.098" y1="387.608" x2="447.455" y2="387.608"/>
139
- <path fill="#FFFFFF" d="M1404.5,687.5"/>
140
- <g id="stars_2" class="stars">
141
-
142
- <path
143
- fill="#FFD92B"
144
- stroke="#31536E"
145
- stroke-width="4"
146
- stroke-linecap="round"
147
- stroke-linejoin="round"
148
- stroke-miterlimit="10"
149
- d="
150
- 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
151
- C153.833,610.251,137.5,630.918,137.5,645.605z"/>
152
- <g>
153
-
154
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="1008.882" cy="708.662" r="13.5"/>
155
-
156
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="992.383" y1="691.927" x2="971.17" y2="670.714"/>
157
-
158
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="1026.324" y1="725.868" x2="1047.537" y2="747.081"/>
159
-
160
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="1025.617" y1="692.634" x2="1046.83" y2="671.421"/>
161
-
162
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="992.383" y1="725.868" x2="971.17" y2="747.081"/>
163
- </g>
164
- <g>
165
-
166
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="212.112" y1="161.345" x2="185.95" y2="187.508"/>
167
-
168
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="176.758" y1="196.701" x2="150.595" y2="222.864"/>
169
-
170
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="211.405" y1="222.864" x2="185.242" y2="196.701"/>
171
-
172
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="176.051" y1="187.508" x2="149.888" y2="161.345"/>
173
- </g>
174
-
175
- <path
176
- fill="#FFD92B"
177
- stroke="#31536E"
178
- stroke-width="4"
179
- stroke-linecap="round"
180
- stroke-linejoin="round"
181
- stroke-miterlimit="10"
182
- d="
183
- 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
184
- 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
185
- s4.604,24.603,10.248,30.249C808.488,329.257,833.092,333.86,833.092,333.86z"/>
186
- <g>
187
-
188
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="978.834" cy="500.751" r="18.5"/>
189
-
190
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="938.834" cy="500.751" r="7.166"/>
191
-
192
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="978.834" cy="540.751" r="7.166"/>
193
-
194
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="1018.834" cy="500.751" r="7.166"/>
195
-
196
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="978.834" cy="460.751" r="7.166"/>
197
- </g>
198
- <g>
199
-
200
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="296.246" y1="682.224" x2="351.149" y2="737.129"/>
201
-
202
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="351.149" y1="682.224" x2="296.246" y2="737.129"/>
203
-
204
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="305.5" y1="709.251" x2="278.5" y2="709.251"/>
205
-
206
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="343.5" y1="709.251" x2="370.5" y2="709.251"/>
207
-
208
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="324.5" y1="728.251" x2="324.5" y2="755.251"/>
209
-
210
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="324.5" y1="690.251" x2="324.5" y2="663.251"/>
211
- </g>
212
- <g>
213
-
214
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="629.5" y1="122.251" x2="629.5" y2="201.251"/>
215
-
216
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="668.5" y1="162.251" x2="589.5" y2="162.251"/>
217
-
218
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="609.5" cy="181.751" r="7.039"/>
219
-
220
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="609.5" cy="141.751" r="7.039"/>
221
-
222
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="649.5" cy="181.751" r="7.039"/>
223
-
224
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="649.5" cy="141.751" r="7.039"/>
225
- </g>
226
- </g>
227
-
228
- </g>
229
- </svg>
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>