driftlessmap 1.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (210) hide show
  1. driftlessmap/__init__.py +16 -0
  2. driftlessmap/__main__.py +5 -0
  3. driftlessmap/about.py +24 -0
  4. driftlessmap/allen_downloader.py +908 -0
  5. driftlessmap/app.py +8085 -0
  6. driftlessmap/atlas_downloader.py +370 -0
  7. driftlessmap/atlas_loader.py +526 -0
  8. driftlessmap/atlas_processor.py +784 -0
  9. driftlessmap/atlas_transform.py +111 -0
  10. driftlessmap/atlas_view.py +1435 -0
  11. driftlessmap/cell_detection.py +27 -0
  12. driftlessmap/coordinate_validation.py +19 -0
  13. driftlessmap/czi_reader.py +236 -0
  14. driftlessmap/data/WHS_atlas_labels.pkl +0 -0
  15. driftlessmap/data/allen_mice_atlas_labels.pkl +0 -0
  16. driftlessmap/data/atlas_labels.pkl +0 -0
  17. driftlessmap/data/query.csv +1328 -0
  18. driftlessmap/download_utils.py +85 -0
  19. driftlessmap/herbs.png +0 -0
  20. driftlessmap/icons/backward.svg +15 -0
  21. driftlessmap/icons/dot.svg +11 -0
  22. driftlessmap/icons/down-arrow.svg +10 -0
  23. driftlessmap/icons/fast_backward.svg +14 -0
  24. driftlessmap/icons/fast_forward.svg +14 -0
  25. driftlessmap/icons/forward.svg +14 -0
  26. driftlessmap/icons/layers/add.png +0 -0
  27. driftlessmap/icons/layers/ai.png +0 -0
  28. driftlessmap/icons/layers/eye_off.png +0 -0
  29. driftlessmap/icons/layers/eye_on.png +0 -0
  30. driftlessmap/icons/layers/eye_white.png +0 -0
  31. driftlessmap/icons/layers/hi.png +0 -0
  32. driftlessmap/icons/layers/trash.png +0 -0
  33. driftlessmap/icons/object.svg +22 -0
  34. driftlessmap/icons/sidebar/add.png +0 -0
  35. driftlessmap/icons/sidebar/atlascontrol.png +0 -0
  36. driftlessmap/icons/sidebar/atlascontrol.svg +32 -0
  37. driftlessmap/icons/sidebar/bnd.svg +14 -0
  38. driftlessmap/icons/sidebar/c_section.png +0 -0
  39. driftlessmap/icons/sidebar/c_section2.png +0 -0
  40. driftlessmap/icons/sidebar/cell.svg +24 -0
  41. driftlessmap/icons/sidebar/check.svg +9 -0
  42. driftlessmap/icons/sidebar/compare.svg +18 -0
  43. driftlessmap/icons/sidebar/contour.svg +14 -0
  44. driftlessmap/icons/sidebar/h_section.png +0 -0
  45. driftlessmap/icons/sidebar/info.svg +14 -0
  46. driftlessmap/icons/sidebar/layers.png +0 -0
  47. driftlessmap/icons/sidebar/layers.svg +23 -0
  48. driftlessmap/icons/sidebar/line.svg +10 -0
  49. driftlessmap/icons/sidebar/link.svg +18 -0
  50. driftlessmap/icons/sidebar/link_off.svg +18 -0
  51. driftlessmap/icons/sidebar/merge.svg +11 -0
  52. driftlessmap/icons/sidebar/object.svg +13 -0
  53. driftlessmap/icons/sidebar/probe.png +0 -0
  54. driftlessmap/icons/sidebar/probe.svg +23 -0
  55. driftlessmap/icons/sidebar/rotation_horizontal.svg +14 -0
  56. driftlessmap/icons/sidebar/rotation_vertical.svg +14 -0
  57. driftlessmap/icons/sidebar/s_section.png +0 -0
  58. driftlessmap/icons/sidebar/tool.png +0 -0
  59. driftlessmap/icons/sidebar/tool.svg +19 -0
  60. driftlessmap/icons/sidebar/trash.png +0 -0
  61. driftlessmap/icons/sidebar/tree_checked.svg +10 -0
  62. driftlessmap/icons/sidebar/treeview.png +0 -0
  63. driftlessmap/icons/sidebar/treeview.svg +10 -0
  64. driftlessmap/icons/sidebar/treeview2.png +0 -0
  65. driftlessmap/icons/sidebar/virus.svg +24 -0
  66. driftlessmap/icons/tdown.svg +16 -0
  67. driftlessmap/icons/toolbar/accept.svg +18 -0
  68. driftlessmap/icons/toolbar/accept2.svg +24 -0
  69. driftlessmap/icons/toolbar/aim.svg +44 -0
  70. driftlessmap/icons/toolbar/aim_not.svg +28 -0
  71. driftlessmap/icons/toolbar/anchor.svg +14 -0
  72. driftlessmap/icons/toolbar/anticlockwise_rotation.svg +12 -0
  73. driftlessmap/icons/toolbar/atlas_icon.png +0 -0
  74. driftlessmap/icons/toolbar/boundary_register.svg +18 -0
  75. driftlessmap/icons/toolbar/cancel.svg +32 -0
  76. driftlessmap/icons/toolbar/cell_select.svg +22 -0
  77. driftlessmap/icons/toolbar/cell_select_not.svg +12 -0
  78. driftlessmap/icons/toolbar/check.svg +9 -0
  79. driftlessmap/icons/toolbar/clockwise_rotation.svg +11 -0
  80. driftlessmap/icons/toolbar/closed_path.svg +16 -0
  81. driftlessmap/icons/toolbar/closed_path2 copy.svg +19 -0
  82. driftlessmap/icons/toolbar/closed_path2.svg +20 -0
  83. driftlessmap/icons/toolbar/eraser.png +0 -0
  84. driftlessmap/icons/toolbar/eraser.svg +19 -0
  85. driftlessmap/icons/toolbar/eye.svg +17 -0
  86. driftlessmap/icons/toolbar/eye_closed.svg +19 -0
  87. driftlessmap/icons/toolbar/fill.svg +12 -0
  88. driftlessmap/icons/toolbar/gps.svg +15 -0
  89. driftlessmap/icons/toolbar/h_flip.png +0 -0
  90. driftlessmap/icons/toolbar/handle.png +0 -0
  91. driftlessmap/icons/toolbar/image_icon.png +0 -0
  92. driftlessmap/icons/toolbar/image_icon.svg +25 -0
  93. driftlessmap/icons/toolbar/info.svg +14 -0
  94. driftlessmap/icons/toolbar/inpart.png +0 -0
  95. driftlessmap/icons/toolbar/inpart.svg +17 -0
  96. driftlessmap/icons/toolbar/lasso.png +0 -0
  97. driftlessmap/icons/toolbar/lasso.svg +14 -0
  98. driftlessmap/icons/toolbar/left90.png +0 -0
  99. driftlessmap/icons/toolbar/line.svg +10 -0
  100. driftlessmap/icons/toolbar/line_sites.svg +11 -0
  101. driftlessmap/icons/toolbar/linear_silicon.png +0 -0
  102. driftlessmap/icons/toolbar/linear_silicon.svg +88 -0
  103. driftlessmap/icons/toolbar/list.svg +14 -0
  104. driftlessmap/icons/toolbar/location.svg +14 -0
  105. driftlessmap/icons/toolbar/magic-wand.svg +16 -0
  106. driftlessmap/icons/toolbar/magic_white.png +0 -0
  107. driftlessmap/icons/toolbar/mask.svg +10 -0
  108. driftlessmap/icons/toolbar/match.svg +20 -0
  109. driftlessmap/icons/toolbar/matchbnd.svg +18 -0
  110. driftlessmap/icons/toolbar/matching.svg +36 -0
  111. driftlessmap/icons/toolbar/merge.svg +11 -0
  112. driftlessmap/icons/toolbar/move_down.png +0 -0
  113. driftlessmap/icons/toolbar/move_left.png +0 -0
  114. driftlessmap/icons/toolbar/move_right.png +0 -0
  115. driftlessmap/icons/toolbar/move_up.png +0 -0
  116. driftlessmap/icons/toolbar/moving.png +0 -0
  117. driftlessmap/icons/toolbar/multi-probe.svg +119 -0
  118. driftlessmap/icons/toolbar/multi_pencil.svg +23 -0
  119. driftlessmap/icons/toolbar/multi_probe.png +0 -0
  120. driftlessmap/icons/toolbar/object.svg +13 -0
  121. driftlessmap/icons/toolbar/open_path.svg +22 -0
  122. driftlessmap/icons/toolbar/outpart.png +0 -0
  123. driftlessmap/icons/toolbar/outpart.svg +26 -0
  124. driftlessmap/icons/toolbar/pencil.png +0 -0
  125. driftlessmap/icons/toolbar/pencil.svg +19 -0
  126. driftlessmap/icons/toolbar/plasso.png +0 -0
  127. driftlessmap/icons/toolbar/probe.svg +19 -0
  128. driftlessmap/icons/toolbar/radar.svg +32 -0
  129. driftlessmap/icons/toolbar/rotation.svg +45 -0
  130. driftlessmap/icons/toolbar/rotation_clockwise.svg +18 -0
  131. driftlessmap/icons/toolbar/rotation_counter_clockwise.svg +18 -0
  132. driftlessmap/icons/toolbar/ruler.svg +27 -0
  133. driftlessmap/icons/toolbar/separate_sites.svg +13 -0
  134. driftlessmap/icons/toolbar/single_pencil.svg +16 -0
  135. driftlessmap/icons/toolbar/toa.svg +11 -0
  136. driftlessmap/icons/toolbar/toa_delete.svg +36 -0
  137. driftlessmap/icons/toolbar/toaa.svg +11 -0
  138. driftlessmap/icons/toolbar/toh.svg +11 -0
  139. driftlessmap/icons/toolbar/toh_delete.svg +36 -0
  140. driftlessmap/icons/toolbar/tohh.svg +11 -0
  141. driftlessmap/icons/toolbar/trans.png +0 -0
  142. driftlessmap/icons/toolbar/trans.svg +16 -0
  143. driftlessmap/icons/toolbar/triangulation.svg +10 -0
  144. driftlessmap/icons/toolbar/two_window.png +0 -0
  145. driftlessmap/icons/toolbar/unmerge.svg +16 -0
  146. driftlessmap/icons/toolbar/v_flip.png +0 -0
  147. driftlessmap/icons/toolbar/virus.svg +24 -0
  148. driftlessmap/icons/toolbar/virus_register.svg +31 -0
  149. driftlessmap/icons/toolbar/vis2d.svg +29 -0
  150. driftlessmap/icons/toolbar/window2.png +0 -0
  151. driftlessmap/icons/toolbar/window3.png +0 -0
  152. driftlessmap/icons/toolbar/window4.png +0 -0
  153. driftlessmap/icons/tree_close.svg +14 -0
  154. driftlessmap/icons/tree_open.svg +14 -0
  155. driftlessmap/icons/up-arrow.svg +10 -0
  156. driftlessmap/image_curves.py +579 -0
  157. driftlessmap/image_reader.py +186 -0
  158. driftlessmap/image_stacks.py +359 -0
  159. driftlessmap/image_view.py +646 -0
  160. driftlessmap/images_reader.py +5 -0
  161. driftlessmap/label_tree.py +278 -0
  162. driftlessmap/layer_validation.py +25 -0
  163. driftlessmap/layers_control.py +554 -0
  164. driftlessmap/main_window.ui +883 -0
  165. driftlessmap/movable_points.py +254 -0
  166. driftlessmap/obj_items.py +122 -0
  167. driftlessmap/object_control.py +1762 -0
  168. driftlessmap/persistence.py +376 -0
  169. driftlessmap/popup_message.py +16 -0
  170. driftlessmap/probe_csv.py +319 -0
  171. driftlessmap/probe_reconstruction.py +409 -0
  172. driftlessmap/probe_utiles.py +1442 -0
  173. driftlessmap/qss/atlas_view_group_box.qss +15 -0
  174. driftlessmap/qss/box_label.qss +7 -0
  175. driftlessmap/qss/channel_selector.qss +19 -0
  176. driftlessmap/qss/color_combo.qss +121 -0
  177. driftlessmap/qss/decor_label.qss +9 -0
  178. driftlessmap/qss/dialogs.qss +11 -0
  179. driftlessmap/qss/hidden_line_edit.qss +5 -0
  180. driftlessmap/qss/label_tree.qss +123 -0
  181. driftlessmap/qss/main_window.qss +243 -0
  182. driftlessmap/qss/menu_bar.qss +42 -0
  183. driftlessmap/qss/multi_handle_slider.qss +14 -0
  184. driftlessmap/qss/obj_ctrl_bottom_button.qss +29 -0
  185. driftlessmap/qss/object_text_button.qss +19 -0
  186. driftlessmap/qss/page_control.qss +36 -0
  187. driftlessmap/qss/rotation_button.qss +9 -0
  188. driftlessmap/qss/side_bar.qss +23 -0
  189. driftlessmap/qss/spinbox.qss +106 -0
  190. driftlessmap/qss/tabs.qss +211 -0
  191. driftlessmap/qss/tool_bar.qss +77 -0
  192. driftlessmap/resources.py +34 -0
  193. driftlessmap/roi_analysis.py +375 -0
  194. driftlessmap/run_driftlessmap.py +4 -0
  195. driftlessmap/slice_stacks.py +268 -0
  196. driftlessmap/slice_validation.py +20 -0
  197. driftlessmap/toolbox.py +569 -0
  198. driftlessmap/triangulation.py +517 -0
  199. driftlessmap/triangulation_points.py +108 -0
  200. driftlessmap/user_settings.py +92 -0
  201. driftlessmap/uuuuuu.py +1168 -0
  202. driftlessmap/version.py +3 -0
  203. driftlessmap/widgets_utils.py +140 -0
  204. driftlessmap/wtiles.py +715 -0
  205. driftlessmap-1.1.0.dist-info/METADATA +186 -0
  206. driftlessmap-1.1.0.dist-info/RECORD +210 -0
  207. driftlessmap-1.1.0.dist-info/WHEEL +5 -0
  208. driftlessmap-1.1.0.dist-info/entry_points.txt +2 -0
  209. driftlessmap-1.1.0.dist-info/licenses/LICENSE.txt +23 -0
  210. driftlessmap-1.1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,85 @@
1
+ """Atomic and verifiable HTTP downloads used by atlas dialogs."""
2
+
3
+ import hashlib
4
+ import os
5
+ from pathlib import Path
6
+ import tempfile
7
+ from urllib.parse import urlparse
8
+
9
+ import requests
10
+
11
+
12
+ class DownloadCancelled(Exception):
13
+ pass
14
+
15
+
16
+ def download_file(
17
+ url,
18
+ destination,
19
+ *,
20
+ progress=None,
21
+ cancelled=None,
22
+ expected_sha256=None,
23
+ timeout=(15, 60),
24
+ chunk_size=1024 * 1024,
25
+ request_get=requests.get,
26
+ ):
27
+ """Download ``url`` atomically, validating status, length, and checksum."""
28
+ if urlparse(url).scheme.lower() != "https":
29
+ raise ValueError("Atlas downloads require HTTPS.")
30
+
31
+ destination = Path(destination)
32
+ destination.parent.mkdir(parents=True, exist_ok=True)
33
+ temporary_path = None
34
+ response = None
35
+ try:
36
+ response = request_get(url, stream=True, timeout=timeout)
37
+ response.raise_for_status()
38
+ final_url = getattr(response, "url", url)
39
+ if urlparse(final_url).scheme.lower() != "https":
40
+ raise ValueError("Atlas download redirected to an insecure URL.")
41
+
42
+ content_length = response.headers.get("Content-Length")
43
+ expected_size = int(content_length) if content_length else None
44
+ digest = hashlib.sha256()
45
+ received = 0
46
+ with tempfile.NamedTemporaryFile(
47
+ dir=str(destination.parent),
48
+ prefix=".{}-".format(destination.name),
49
+ suffix=".part",
50
+ delete=False,
51
+ ) as stream:
52
+ temporary_path = Path(stream.name)
53
+ for chunk in response.iter_content(chunk_size=chunk_size):
54
+ if cancelled is not None and cancelled():
55
+ raise DownloadCancelled("Download cancelled.")
56
+ if not chunk:
57
+ continue
58
+ stream.write(chunk)
59
+ digest.update(chunk)
60
+ received += len(chunk)
61
+ if progress is not None and expected_size:
62
+ progress(min(99, int(received / expected_size * 100)))
63
+
64
+ if received == 0:
65
+ raise IOError("Server returned an empty file.")
66
+ if expected_size is not None and received != expected_size:
67
+ raise IOError(
68
+ "Incomplete download: expected {} bytes, received {}.".format(
69
+ expected_size, received
70
+ )
71
+ )
72
+ actual_sha256 = digest.hexdigest()
73
+ if expected_sha256 and actual_sha256.lower() != expected_sha256.lower():
74
+ raise IOError("Downloaded file failed SHA-256 verification.")
75
+
76
+ os.replace(str(temporary_path), str(destination))
77
+ temporary_path = None
78
+ if progress is not None:
79
+ progress(100)
80
+ return actual_sha256
81
+ finally:
82
+ if response is not None and hasattr(response, "close"):
83
+ response.close()
84
+ if temporary_path is not None:
85
+ temporary_path.unlink(missing_ok=True)
driftlessmap/herbs.png ADDED
Binary file
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 432.1 432.1" style="enable-background:new 0 0 432.1 432.1;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;stroke:#FFFFFF;stroke-width:15;stroke-miterlimit:10;}
7
+ </style>
8
+ <g>
9
+ <g>
10
+ <path class="st0" d="M377.4,408.7L35.6,230.1c-3-1.6-4.8-4.4-4.8-7.5s1.8-6,4.8-7.5L377.4,36.4c3-1.6,6.6-1.6,9.6,0
11
+ c3,1.6,4.8,4.4,4.8,7.5v357.3c0,3.1-1.8,6-4.8,7.5c-1.4,0.8-3.2,1.1-4.8,1.1C380.5,410,378.8,409.5,377.4,408.7z M59.5,222.6
12
+ l313,163.6V59L59.5,222.6z"/>
13
+ </g>
14
+ </g>
15
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;fill-opacity:1.000000e-02;}
7
+ .st1{fill:#666666;}
8
+ </style>
9
+ <rect y="0" class="st0" width="48" height="48"/>
10
+ <path class="st1" d="M24,48c13.3,0,24-10.7,24-24S37.3,0,24,0S0,10.7,0,24S10.7,48,24,48z"/>
11
+ </svg>
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 330 330" style="enable-background:new 0 0 330 330;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <path id="XMLID_105_" class="st0" d="M6,120.8l150,112.5c5.3,4,12.7,4,18,0l150-112.5c6.6-5,8-14.4,3-21c-2.9-3.9-7.5-6-12-6
9
+ c-3.1,0-6.3,1-9,3L165,202.5L24,96.8c-6.6-5-16-3.6-21,3S-0.6,115.8,6,120.8z"/>
10
+ </svg>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 461.5 461.5" style="enable-background:new 0 0 461.5 461.5;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <g>
9
+ <path class="st0" d="M0,230.7c0,4.9,2.4,9.5,6.4,12.3l239.3,167.8c4.5,3.2,10.5,3.6,15.5,1c5-2.6,8.1-7.7,8.1-13.3V292.6
10
+ l168.6,118.2c4.5,3.2,10.5,3.6,15.5,1c5-2.6,8.1-7.7,8.1-13.3V62.9c0-5.6-3.1-10.7-8.1-13.3c-4.9-2.6-10.9-2.2-15.5,1L269.3,168.8
11
+ V62.9c0-5.6-3.1-10.7-8.1-13.3c-4.9-2.6-10.9-2.2-15.5,1L6.4,218.4C2.4,221.3,0,225.8,0,230.7z M269.3,205.5L431.5,91.8v277.9
12
+ L269.3,256L269.3,205.5z M41.1,230.8l198.2-139v277.9L41.1,230.8z"/>
13
+ </g>
14
+ </svg>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 461.5 461.5" style="enable-background:new 0 0 461.5 461.5;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <g>
9
+ <path class="st0" d="M455.1,218.4L215.8,50.6c-4.6-3.2-10.6-3.6-15.5-1c-5,2.6-8.1,7.7-8.1,13.3v105.9L23.6,50.6
10
+ C19,47.4,13,47,8.1,49.6C3.1,52.2,0,57.3,0,62.9v335.6c0,5.6,3.1,10.7,8.1,13.3c5,2.6,11,2.2,15.5-1l168.6-118.2v105.9
11
+ c0,5.6,3.1,10.7,8.1,13.3c5,2.6,11,2.2,15.5-1L455.1,243c4-2.8,6.4-7.4,6.4-12.3C461.5,225.8,459.1,221.3,455.1,218.4z M192.2,256
12
+ L30,369.7V91.8l162.2,113.7V256z M222.2,369.7V91.8l198.2,139L222.2,369.7z"/>
13
+ </g>
14
+ </svg>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 432.1 432.1" style="enable-background:new 0 0 432.1 432.1;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;stroke:#FFFFFF;stroke-width:15;stroke-miterlimit:10;}
7
+ </style>
8
+ <g>
9
+ <g>
10
+ <path class="st0" d="M40.4,410c-1.6,0-3.4-0.3-4.8-1.1c-3-1.6-4.8-4.4-4.8-7.5V44c0-3.1,1.8-6,4.8-7.5c3-1.6,6.6-1.6,9.6,0
11
+ l341.8,178.6c3,1.6,4.8,4.4,4.8,7.5s-1.8,6-4.8,7.5L45.2,408.7C43.7,409.5,42,410,40.4,410z M50,59v327.2l313-163.6L50,59z"/>
12
+ </g>
13
+ </g>
14
+ </svg>
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,22 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 60 60" style="enable-background:new 0 0 60 60;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:none;stroke:#FFFFFF;stroke-width:4;stroke-miterlimit:10;}
7
+ </style>
8
+ <g>
9
+ <path class="st0" d="M28.6,29h-3.7c0.6-0.8,0.9-1.9,0.9-2.9c0-2.8-2.3-5.1-5.1-5.1s-5.1,2.3-5.1,5.1c0,1.1,0.3,2.1,0.9,2.9h-4.4
10
+ C10.4,29,9,30.4,9,32.1v6.2c0,0.3,0.2,0.6,0.5,0.7c0.3,0.1,0.6,0,0.8-0.3c0.7-1,1.8-1.6,3.1-1.6c2,0,3.7,1.6,3.7,3.7
11
+ s-1.6,3.7-3.7,3.7c-1.2,0-2.4-0.6-3.1-1.6c-0.2-0.3-0.5-0.4-0.8-0.3C9.2,42.5,9,42.8,9,43.1v5.5c0,1.7,1.4,3.1,3.1,3.1h16.5
12
+ c1.7,0,3.1-1.4,3.1-3.1V44c0-0.3-0.2-0.6-0.4-0.7c-0.3-0.1-0.6-0.1-0.8,0.1c-0.7,0.6-1.5,0.9-2.4,0.9c-2,0-3.7-1.6-3.7-3.7
13
+ S26,37,28.1,37c0.9,0,1.8,0.3,2.4,0.9c0.2,0.2,0.5,0.2,0.8,0.1c0.3-0.1,0.4-0.4,0.4-0.7v-5.4C31.7,30.4,30.3,29,28.6,29z"/>
14
+ <path class="st0" d="M52.7,13.9c-0.3-0.6-0.9-1.1-1.6-1.3L37.9,8.7c-0.2-0.1-0.5-0.1-0.8-0.1c-1.2,0-2.3,0.8-2.6,1.9l-0.8,2.7
15
+ c-0.5-0.6-1.2-1.1-2-1.3c-0.4-0.1-0.8-0.2-1.2-0.2c-1.9,0-3.7,1.3-4.2,3.2c-0.3,1.1-0.2,2.3,0.4,3.3c0.6,1,1.5,1.8,2.6,2.1
16
+ c0.4,0.1,0.8,0.2,1.2,0.2c0.4,0,0.8-0.1,1.2-0.2l-1,3.3c-0.2,0.7-0.1,1.4,0.2,2.1c0.3,0.6,0.9,1.1,1.6,1.3l2.7,0.8
17
+ c-0.6,0.5-1.1,1.2-1.3,2c-0.7,2.3,0.7,4.8,3,5.5c0.4,0.1,0.8,0.2,1.2,0.2c1.9,0,3.7-1.3,4.2-3.2c0.2-0.8,0.2-1.6,0-2.4l3.3,1
18
+ c0.2,0.1,0.5,0.1,0.8,0.1c1.2,0,2.3-0.8,2.6-1.9l1.5-4.9c0.1-0.3,0-0.6-0.3-0.8c-0.3-0.2-0.6-0.2-0.9,0.1c-0.7,0.6-1.8,0.8-2.7,0.6
19
+ c-1.5-0.5-2.4-2.1-2-3.6c0.4-1.2,1.5-2.1,2.8-2.1c0.3,0,0.6,0,0.8,0.1c0.9,0.3,1.7,1,2,1.9c0.1,0.3,0.4,0.5,0.7,0.5c0,0,0,0,0,0
20
+ c0.3,0,0.6-0.2,0.7-0.5l1.3-4.4C53.1,15.3,53,14.5,52.7,13.9z"/>
21
+ </g>
22
+ </svg>
Binary file
@@ -0,0 +1,32 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;stroke:#000000;stroke-miterlimit:10;}
7
+ </style>
8
+ <g>
9
+ <g>
10
+ <path class="st0" d="M437,349.1h-43.8c-7.1-21.8-28.9-37.9-54.9-37.9c-26,0-47.7,16.1-54.9,37.9H75.1c-9,0-16.4,6.8-16.4,15.2
11
+ c0,8.4,7.4,15.1,16.4,15.1h208.3c7.1,21.8,28.9,37.9,54.9,37.9c26,0,47.7-16.1,54.9-37.9h43.8c9.1,0,16.4-6.8,16.4-15.1
12
+ C453.3,356,446.1,349.1,437,349.1z M338.3,387c-13.6,0-24.7-10.2-24.7-22.7c0-12.5,11.1-22.7,24.7-22.7
13
+ c13.6,0,24.7,10.2,24.7,22.7C363,376.8,351.9,387,338.3,387z"/>
14
+ </g>
15
+ </g>
16
+ <g>
17
+ <g>
18
+ <path class="st0" d="M437,106.6h-43.8c-7.2-21.8-28.9-37.9-54.9-37.9c-26,0-47.8,16.1-54.9,37.9H75.1c-9,0-16.4,6.8-16.4,15.1
19
+ s7.4,15.1,16.4,15.1h208.3c7.2,21.8,28.9,37.9,54.9,37.9c26,0,47.7-16.1,54.9-37.9h43.8c9.1,0,16.4-6.8,16.4-15.1
20
+ S446.1,106.6,437,106.6z M338.3,144.4c-13.6,0-24.7-10.2-24.7-22.7S324.7,99,338.3,99c13.6,0,24.7,10.2,24.7,22.7
21
+ S351.9,144.4,338.3,144.4z"/>
22
+ </g>
23
+ </g>
24
+ <g>
25
+ <g>
26
+ <path class="st0" d="M437,227.9H228.7c-7.2-21.8-28.9-37.9-54.9-37.9S126,206,118.9,227.9H75.1c-9,0-16.4,6.8-16.4,15.1
27
+ c0,8.4,7.4,15.1,16.4,15.1h43.8c7.2,21.8,28.9,37.9,54.9,37.9s47.7-16.1,54.9-37.9h208.3c9.1,0,16.4-6.8,16.4-15.1
28
+ C453.4,234.6,446.1,227.9,437,227.9z M173.8,265.7c-13.6,0-24.7-10.2-24.7-22.7c0-12.5,11.1-22.7,24.7-22.7s24.7,10.2,24.7,22.7
29
+ C198.4,255.5,187.4,265.7,173.8,265.7z"/>
30
+ </g>
31
+ </g>
32
+ </svg>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 196.5 196.5" style="enable-background:new 0 0 196.5 196.5;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <path class="st0" d="M48.1,76.5L26.3,65.7c6.3-12.6,15.8-23.4,27.6-31.1l13.4,20.3C59.1,60.3,52.4,67.8,48.1,76.5z M18,101.1
9
+ c0,11.9,2.5,23.3,7.6,33.9l22-10.4c-3.5-7.4-5.2-15.3-5.2-23.6c0-1.6,0.1-3.3,0.2-4.9l-24.2-2.1C18.1,96.4,18,98.8,18,101.1z
10
+ M172.5,73.7c-4.8-13.2-13.1-24.9-24-33.9l-15.5,18.7c7.6,6.3,13.3,14.4,16.7,23.6L172.5,73.7z M153,101.1c0,9.8-2.6,19.5-7.5,27.9
11
+ l21,12.3c7.1-12.1,10.9-26,10.9-40.2L153,101.1L153,101.1z M97.7,45.8c5.9,0,11.8,0.9,17.4,2.8l7.6-23.1c-8-2.7-16.4-4-25-4
12
+ c-5.6,0-11.1,0.6-16.5,1.7l5,23.8C89.9,46.2,93.8,45.8,97.7,45.8z M85,155c-9.5-2.2-18.3-7-25.4-13.7l-16.7,17.6
13
+ c10.3,9.7,22.9,16.6,36.6,19.8L85,155z M132,144.5c-7.7,6.1-16.9,10-26.5,11.4l3.4,24.1c13.9-2,27.2-7.7,38.2-16.4L132,144.5z"/>
14
+ </svg>
Binary file
@@ -0,0 +1,24 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 260 235" style="enable-background:new 0 0 260 235;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <path class="st0" d="M238.4,141.3c-4.4-2.4-13.4-8.1-20.6-14.1c7.3-4.7,15.7-9.1,17.5-9.9c2.2-1,3.2-3.5,2.2-5.7
9
+ c-1-2.2-3.5-3.2-5.7-2.2c-2.6,1.2-15,7.7-23.4,13.8h-15c-4.9,0-9.8-1-14.3-3c-12.6-5.5-20.1-18.6-18.6-32.2c0.5-5,2.2-9.8,4.7-14.2
10
+ l5-8.3c12.2-1.6,24-6.1,34.1-13.1c1.9-1.3,2.7-3.9,1.5-5.9c-1.3-2.3-4.2-2.9-6.3-1.4c-5.2,3.6-13.2,8-23.4,10.5l7.4-12.4
11
+ c1.2-2,0.8-4.6-1.1-5.9c-2.1-1.5-5-0.9-6.3,1.3l-18.7,31.5c-2.5,4.1-5.7,7.7-9.6,10.6c-11.1,8.1-26.1,8.1-37.2,0
12
+ c-4-2.9-7.3-6.7-9.8-11l-9.3-16.5c1.6-10.1-0.5-28-2.5-34.8c-0.7-2.3-2.9-3.7-5.2-3.2c-2.5,0.6-3.9,3.1-3.2,5.5
13
+ c1.7,5.7,3.3,19.7,2.6,28.3c-6.5-1.8-12.8-4.5-16.7-7.2c-1.9-1.3-4.4-1.1-5.9,0.6c-1.7,2-1.3,5,0.8,6.5c5.2,3.6,16.7,7.9,22.9,9.3
14
+ l9,16c2.4,4.3,3.9,9,4.4,13.8l0,0c1.5,13.6-6,26.7-18.6,32.2c-4.5,2-9.4,3-14.3,3H54c-7.3-10.4-9.7-14-9.7-14c-1.3-2-4-2.6-6-1.2
15
+ c-2,1.3-2.6,4-1.2,6c0.1,0.1,1.7,2.5,6.3,9.2H22.5c-2.3,0-4.3,1.7-4.5,3.9c-0.2,2.6,1.8,4.8,4.3,4.8h19.8
16
+ c-4.7,4.9-10.8,10.6-16.2,14.4c-1.7,1.3-2.3,3.6-1.2,5.5l0.1,0.1c1.3,2.3,4.3,2.9,6.3,1.4c8.3-6,17.7-15.3,22.6-21.4h11
17
+ c4.9,0,9.8,1,14.3,3c12.6,5.5,20.1,18.6,18.6,32.2l0,0c-0.5,4.9-2,9.6-4.4,13.9l-8.6,15.4c-14.1,2-27.2,10.3-27.8,10.6
18
+ c-2,1.3-2.6,4-1.3,6c1.6,2.7,4.8,2,6,1.3c0.7-0.4,7.9-5,17.4-7.8l-1.7,3.1c-1.1,2.1-0.4,4.7,1.6,5.9l0,0c2.1,1.2,4.8,0.5,6-1.6
19
+ l6.3-11.3l0,0l9.6-17.1c2.4-4.3,5.7-8.1,9.7-11c11.1-8.1,26.1-8.1,37.2,0c4.6,3.4,8.4,7.8,11,12.9l13.3,26.3c1.1,2.1,3.7,3,5.9,1.9
20
+ s3-3.7,1.9-5.9l-7.7-15.3c6.2,1.4,14.8,4.1,21,9.1c2,1.6,4.8,0.8,6.1-0.7c1.6-1.8,1.2-4.6-0.7-6.1c-10.5-8.4-25.6-11.2-31.4-12.1
21
+ l-3.3-6.6c-1.8-3.5-2.9-7.2-3.3-11c-1.5-13.6,6-26.7,18.6-32.2l0,0c4.5-2,9.4-3,14.3-3h16.5c8,7.3,19.1,14.2,24.3,17.1
22
+ c2.1,1.2,4.8,0.2,5.9-1.7C241.3,145.1,240.5,142.4,238.4,141.3z M114.6,139.5c-8,0-14.5-5.4-14.5-12.1c0-6.7,6.5-12.1,14.5-12.1
23
+ c8,0,14.5,5.4,14.5,12.1C129.1,134.1,122.6,139.5,114.6,139.5z"/>
24
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 240.6 240.6" style="enable-background:new 0 0 240.6 240.6;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <path class="st0" d="M193.9,45.2l26.4,26.4L96.6,195.4l-76.3-76.3l26.4-26.4l49.8,49.8L193.9,45.2z"/>
9
+ </svg>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="designs" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <path class="st0" d="M11.7,26.2H5.9l-0.7-1.5h7.2L11.7,26.2z M21.8,24.7h-1.5v1.5h1.5V24.7L21.8,24.7z M23.3,26.2h-1.5v1.5h1.5V26.2
9
+ L23.3,26.2z M26.2,26.2h-1.5v1.5h0.7L26.2,26.2L26.2,26.2z M21.8,16h-1.5v1.5h1.5V16L21.8,16z M24.7,16h-1.5v1.5h1.5V16L24.7,16z
10
+ M23.3,17.5h-1.5V19h1.5V17.5L23.3,17.5z M26.2,17.5h-1.5V19h1.5V17.5L26.2,17.5z M21.8,18.9h-1.5v1.5h1.5V18.9L21.8,18.9z
11
+ M24.7,18.9h-1.5v1.5h1.5V18.9L24.7,18.9z M23.3,20.4h-1.5v1.5h1.5V20.4L23.3,20.4z M26.2,20.4h-1.5v1.5h1.5V20.4L26.2,20.4z
12
+ M21.8,21.8h-1.5v1.5h1.5V21.8L21.8,21.8z M24.7,21.8h-1.5v1.5h1.5V21.8L24.7,21.8z M23.3,23.3h-1.5v1.5h1.5V23.3L23.3,23.3z
13
+ M26.2,23.3h-1.5v1.5h1.5V23.3L26.2,23.3z M24.7,24.7h-1.5v1.5h1.5V24.7L24.7,24.7z"/>
14
+ <path class="st0" d="M17.5,7.4H19v17.3c0,2.4,1.9,4.4,4.4,4.4s4.4-1.9,4.4-4.4V7.4H29V3H17.5V7.4z M26.2,24.7c0,1.6-1.3,2.9-2.9,2.9
15
+ c-1.6,0-2.9-1.3-2.9-2.9V7.4h5.8C26.2,7.4,26.2,24.7,26.2,24.7z M18.9,4.5h8.6V6h-8.6C18.9,6,18.9,4.5,18.9,4.5z M3,7.4h1.5v17.3
16
+ c0,2.4,1.9,4.4,4.4,4.4s4.4-1.9,4.4-4.4V7.4h1.5V3H3V7.4z M11.7,24.7c0,1.6-1.3,2.9-2.9,2.9s-2.9-1.3-2.9-2.9V7.4h5.8
17
+ C11.7,7.4,11.7,24.7,11.7,24.7z M4.5,4.5h8.6V6H4.5V4.5z"/>
18
+ </svg>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:none;}
7
+ .st1{fill:#FFFFFF;}
8
+ </style>
9
+ <line class="st0" x1="529.4" y1="207.4" x2="558.2" y2="208.2"/>
10
+ <rect id="_Transparent_Rectangle_" x="-7" y="-7" class="st0" width="519" height="519"/>
11
+ <path class="st1" d="M196.7,71.5h-41v41h41V71.5z M114.7,71.4h-41v41h41V71.4z M360.7,71.6h-41v41h41V71.6z M278.7,71.5h-41v41h41
12
+ V71.5z M114.7,153.4h-41v41h41V153.4z M114.6,235.4h-41v41h41V235.4z M442.5,440.6l0.2-369h-41l-0.2,328l-328-0.2v41L442.5,440.6z
13
+ M114.6,317.4h-41v41h41V317.4z"/>
14
+ </svg>
Binary file
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 27.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 488.9 488.9" style="enable-background:new 0 0 488.9 488.9;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <g>
9
+ <g>
10
+ <path class="st0" d="M233.7,53.8c24.9,0,45,20.1,45,45s-20.1,45-45,45s-45-20.1-45-45S208.9,53.8,233.7,53.8z M274.7,172h-1.2
11
+ h-72.4h-2.7c-14.8,0-26.7,12-26.7,26.7l0,0c0,14.8,12,26.7,26.7,26.7h2.7v156h-29.4v53.6H304v-53.6h-29.2L274.7,172L274.7,172z"/>
12
+ </g>
13
+ </g>
14
+ </svg>
Binary file
@@ -0,0 +1,23 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;stroke:#000000;stroke-miterlimit:10;}
7
+ </style>
8
+ <g>
9
+ <g>
10
+ <path class="st0" d="M429.6,305.8l-44.9-23.6l44.9-23.6c10.5-5.5,10.5-20.1,0-25.6l-44.9-23.6l44.9-23.6
11
+ c10.5-5.5,10.5-20.1,0-25.6L263.2,72.6c-4.5-2.4-10-2.4-14.5,0L82.4,160.1c-10.5,5.5-10.5,20.1,0,25.6l44.9,23.6L82.4,233
12
+ c-10.5,5.5-10.5,20.1,0,25.6l44.9,23.6l-44.9,23.6c-10.5,5.5-10.5,20.1,0,25.6L248.8,419c4.5,2.4,10,2.4,14.5,0l166.4-87.5
13
+ C440.1,325.9,440.1,311.4,429.6,305.8z M256,102l134.8,70.9L256,243.7l-134.8-70.9L256,102z M158.9,225.9l89.8,47.2
14
+ c0.3,0.1,0.6,0.3,0.8,0.4c0,0,0,0,0.1,0c0.1,0.1,0.3,0.1,0.4,0.1c0.2,0.1,0.4,0.2,0.6,0.3c0.5,0.2,1,0.3,1.5,0.5
15
+ c0.1,0,0.1,0,0.1,0.1c0.9,0.2,1.8,0.3,2.7,0.4c0.7,0.1,1.3,0.1,2.1,0c0.9-0.1,1.8-0.2,2.7-0.4c0.1,0,0.1,0,0.1-0.1
16
+ c0.5-0.1,1-0.3,1.5-0.5c0.2-0.1,0.4-0.1,0.6-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0,0,0,0,0.1,0c0.3-0.1,0.6-0.3,0.8-0.4l89.9-47.2
17
+ l37.7,19.8L256,316.6l-134.8-70.9L158.9,225.9z M256,389.5l-134.8-70.9l37.7-19.8l89.8,47.2c0.3,0.1,0.6,0.3,0.8,0.4
18
+ c0,0,0,0,0.1,0c0.1,0.1,0.3,0.1,0.4,0.1c0.2,0.1,0.4,0.2,0.6,0.3c0.5,0.2,1,0.3,1.5,0.5c0.1,0,0.1,0,0.1,0.1c0.1,0,0.1,0,0.1,0
19
+ c2.3,0.5,4.8,0.5,7.2,0c0.1,0,0.1,0,0.1,0c0.1,0,0.1,0,0.1-0.1c0.5-0.1,1-0.3,1.5-0.5c0.2-0.1,0.4-0.1,0.6-0.3
20
+ c0.1-0.1,0.3-0.1,0.4-0.1c0,0,0,0,0.1,0c0.3-0.1,0.6-0.3,0.8-0.4l89.8-47.2l37.7,19.8L256,389.5z"/>
21
+ </g>
22
+ </g>
23
+ </svg>
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;stroke:#FFFFFF;stroke-miterlimit:10;}
7
+ </style>
8
+ <path class="st0" d="M20.7,3.3c-0.4-0.3-0.9-0.3-1.3,0l0,0L3.3,19c-0.4,0.3-0.4,0.9,0,1.2l0,0c0.4,0.3,0.9,0.3,1.3,0l0,0L20.7,4.5
9
+ C21.1,4.1,21.1,3.6,20.7,3.3L20.7,3.3z"/>
10
+ </svg>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 283.8 283.8" style="enable-background:new 0 0 283.8 283.8;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <g>
9
+ <path class="st0" d="M261.9,142.4l-0.6-9.2c-1.3-21.5-19.8-37.8-41.2-36.6l-29.8,1.8c-6.7,0.4-11.9,6.2-11.5,12.9l0.1,2.5
10
+ c0.4,6.7,6.2,11.9,12.9,11.5l29.8-1.8c6.6-0.4,12.4,4.7,12.8,11.3l0.6,9.2c0.4,6.6-4.7,12.4-11.3,12.8l-65.1,3.9
11
+ c-5.5,0.3-10.5-3.1-12.2-8.4c-1.8-5.8-7.3-9.5-13.4-9.2l-0.5,0c-4.1,0.2-7.8,2.3-10.1,5.7c-2.3,3.4-2.9,7.5-1.7,11.4
12
+ c1.9,6.2,5.3,11.6,9.6,15.9c7.7,7.7,18.5,12,29.9,11.3l65.1-3.9C246.7,182.4,263.1,163.9,261.9,142.4z"/>
13
+ <path class="st0" d="M105.1,169.5l-0.1-2.5c-0.4-6.7-6.2-11.9-12.9-11.5l-29.7,1.8c-6.6,0.4-12.4-4.7-12.8-11.3l-0.6-9.2
14
+ c-0.4-6.6,4.7-12.4,11.3-12.8l65.1-3.9c5.4-0.3,10.4,3,12.1,8.2c2,5.9,7.8,9.7,14,9.4l0.2,0c4-0.2,7.6-2.3,9.9-5.6
15
+ c2.3-3.3,2.9-7.4,1.8-11.2c-5.2-17.3-21.5-28.7-39.6-27.6l-65.1,3.9l0,0c-21.4,1.3-37.8,19.8-36.6,41.2l0.6,9.2
16
+ c0.6,9.9,4.8,18.7,11.3,25.2c7.6,7.6,18.3,12.1,29.9,11.4l29.8-1.8C100.4,182,105.5,176.2,105.1,169.5z"/>
17
+ </g>
18
+ </svg>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 283.8 283.8" style="enable-background:new 0 0 283.8 283.8;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:none;stroke:#FFFFFF;stroke-width:9;stroke-miterlimit:10;}
7
+ </style>
8
+ <g>
9
+ <path class="st0" d="M261.9,142.4l-0.6-9.2c-1.3-21.5-19.8-37.8-41.2-36.6l-29.8,1.8c-6.7,0.4-11.9,6.2-11.5,12.9l0.1,2.5
10
+ c0.4,6.7,6.2,11.9,12.9,11.5l29.8-1.8c6.6-0.4,12.4,4.7,12.8,11.3l0.6,9.2c0.4,6.6-4.7,12.4-11.3,12.8l-65.1,3.9
11
+ c-5.5,0.3-10.5-3.1-12.2-8.4c-1.8-5.8-7.3-9.5-13.4-9.2h-0.5c-4.1,0.2-7.8,2.3-10.1,5.7c-2.3,3.4-2.9,7.5-1.7,11.4
12
+ c1.9,6.2,5.3,11.6,9.6,15.9c7.7,7.7,18.5,12,29.9,11.3l65.1-3.9C246.7,182.4,263.1,163.9,261.9,142.4z"/>
13
+ <path class="st0" d="M105.1,169.5L105,167c-0.4-6.7-6.2-11.9-12.9-11.5l-29.7,1.8c-6.6,0.4-12.4-4.7-12.8-11.3l-0.6-9.2
14
+ c-0.4-6.6,4.7-12.4,11.3-12.8l65.1-3.9c5.4-0.3,10.4,3,12.1,8.2c2,5.9,7.8,9.7,14,9.4h0.2c4-0.2,7.6-2.3,9.9-5.6
15
+ c2.3-3.3,2.9-7.4,1.8-11.2c-5.2-17.3-21.5-28.7-39.6-27.6l-65.1,3.9l0,0c-21.4,1.3-37.8,19.8-36.6,41.2l0.6,9.2
16
+ c0.6,9.9,4.8,18.7,11.3,25.2c7.6,7.6,18.3,12.1,29.9,11.4l29.8-1.8C100.4,182,105.5,176.2,105.1,169.5z"/>
17
+ </g>
18
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 15 15" style="enable-background:new 0 0 15 15;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <path class="st0" d="M11.4,13.1c1,0,1.8-0.8,1.8-1.9c0-0.9-0.6-1.7-1.5-1.8V5.6c0.8-0.2,1.5-0.9,1.5-1.8c0-1-0.8-1.9-1.8-1.9
9
+ S9.5,2.7,9.5,3.7c0,0.9,0.6,1.7,1.5,1.8v3.8c-0.7,0.1-1.3,0.7-1.4,1.5H6.2c-1,0-1.8-0.8-1.8-1.9V7.8C5.2,7.7,5.9,6.9,5.9,6
10
+ C5.9,5,5,4.1,4,4.1S2.2,5,2.2,6c0,0.9,0.6,1.7,1.5,1.8V9c0,1.5,1.1,2.6,2.6,2.6h3.3C9.7,12.5,10.5,13.1,11.4,13.1z"/>
11
+ </svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:none;stroke:#FFFFFF;stroke-width:5;}
7
+ </style>
8
+ <path class="st0" d="M10.9,28.3l17.4,0.9c0,0,7.8-0.9,1.7-5.2c-4.3-2.6-3.5-13,7-13.9c7-0.6,11.3,2.5,11.3,7.8
9
+ c0,6.1-7.8,7.8-3.5,11.3c1.7,1.7,24.4,0,24.4,0S67.4,47.4,68.3,50c0.9,4.3,6.1,3.5,7.8,0c3.5-5.2,13.9-3.5,14.8,7
10
+ c0.9,7.8-4.3,12.2-7,12.2c-7.8,0-6.1-4.3-11.3-4.3c-3.5,0-3.5,2.6-3.5,7c0,2.6,1.7,14.8,1.7,14.8s-15.7,2.6-19.1,2.6s-7,0.9-7.8-2.6
11
+ c-0.9-3.5,5.2-7.8,0.9-11.3S30,70.9,30,79.6c0,3.5,3.5,5.2,2.6,7.8c-0.9,3.5-6.1,2.6-12.2,1.7c-6.3-0.9-7.8-0.9-7.8-0.9L10,63.1
12
+ c0,0,0-3.5,3.5-3.5s3.5,4.3,7.8,4.3s7-2.6,7-7.8s-6.1-13-13-7S10.9,28.3,10.9,28.3"/>
13
+ </svg>
Binary file
@@ -0,0 +1,23 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;stroke:#000000;stroke-miterlimit:10;}
7
+ </style>
8
+ <g>
9
+ <g>
10
+ <path class="st0" d="M405.5,89.9c-11.1,0-20.1,5.4-20.1,12v173l-121.6,140l-121.6-140v-173c0-6.6-8.9-12-20.1-12
11
+ s-20.1,5.4-20.1,12v175.9c0,1.9,0.7,3.8,2.3,5.5l141.7,163.2c3.4,4,10.4,6.5,17.9,6.5c7.5,0,14.4-2.5,17.9-6.5l141.7-163.2
12
+ c1.4-1.7,2.3-3.6,2.3-5.5V101.9C425.6,95.3,416.5,89.9,405.5,89.9z"/>
13
+ </g>
14
+ </g>
15
+ <rect x="155.8" y="224.6" class="st0" width="45.4" height="46.8"/>
16
+ <rect x="210.8" y="174.6" class="st0" width="45.4" height="46.8"/>
17
+ <rect x="275.4" y="221.5" class="st0" width="45.4" height="46.8"/>
18
+ <rect x="327" y="170.4" class="st0" width="45.4" height="46.8"/>
19
+ <rect x="155.8" y="117.9" class="st0" width="45.4" height="46.8"/>
20
+ <rect x="210.8" y="66.5" class="st0" width="45.4" height="46.8"/>
21
+ <rect x="275.4" y="123.6" class="st0" width="45.4" height="46.8"/>
22
+ <rect x="327" y="71.1" class="st0" width="45.4" height="46.8"/>
23
+ </svg>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:none;stroke:#FFFFFF;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;}
7
+ </style>
8
+ <path class="st0" d="M14.5,27l4.3,4.2l-4.2,4.3"/>
9
+ <path class="st0" d="M32.8,33.1c7.6-1.6,12.8-5.4,12.8-9.8c0-5.6-11.5-10.7-21.3-10.6c-10,0-21.5,5.4-21.3,10.6
10
+ c0.2,4.4,8.3,7.5,12.1,8.7"/>
11
+ <path class="st0" d="M34.5,35.3L30.2,31l4.3-4.2"/>
12
+ <path class="st0" d="M32.9,31.9c3.8-1.3,11.9-4.4,12.1-8.7c0.2-5.3-11.3-10.6-21.3-10.6c-9.7,0-21.3,5.1-21.3,10.6
13
+ c0,4.4,5.2,8.2,12.8,9.8"/>
14
+ </svg>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 48 48" style="enable-background:new 0 0 48 48;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:none;stroke:#FFFFFF;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;}
7
+ </style>
8
+ <path class="st0" d="M27,33.6l4.2-4.3l4.3,4.2"/>
9
+ <path class="st0" d="M33.1,15.3c-1.6-7.6-5.4-12.8-9.8-12.8c-5.6,0-10.7,11.5-10.6,21.3c0,10,5.4,21.5,10.6,21.3
10
+ c4.4-0.2,7.5-8.3,8.7-12.1"/>
11
+ <path class="st0" d="M35.3,13.6L31,17.9l-4.2-4.3"/>
12
+ <path class="st0" d="M31.9,15.2c-1.3-3.8-4.4-11.9-8.7-12.1c-5.3-0.2-10.6,11.3-10.6,21.3c0,9.7,5.1,21.3,10.6,21.3
13
+ c4.4,0,8.2-5.2,9.8-12.8"/>
14
+ </svg>
Binary file
Binary file
@@ -0,0 +1,19 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 293.1 293.1" style="enable-background:new 0 0 293.1 293.1;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;stroke:#000000;stroke-miterlimit:10;}
7
+ </style>
8
+ <g>
9
+ <path class="st0" d="M161.8,143.4c2.5-1.2,5.2-1.9,8.1-1.9c4.8,0,9.2,1.8,12.5,5.1l7.3-7.2c17.9,6.2,38.6,2.2,52.9-11.9
10
+ c12-11.9,16.8-28.2,14.2-43.6c-0.3-1.7-1.5-3.1-3.2-3.6c-1.7-0.5-3.4-0.1-4.7,1.1l-10.8,10.6c-8.7,8.6-22.9,8.6-31.7,0
11
+ s-8.7-22.6,0-31.2l10.8-10.6c1.2-1.2,1.7-3,1.1-4.6c-0.5-1.7-2-2.8-3.7-3.1c-15.6-2.5-32.2,2.2-44.2,14
12
+ c-14.5,14.3-18.4,35.1-11.7,53l-15.7,15.4L161.8,143.4z"/>
13
+ <path class="st0" d="M133.2,171.4l-18.6-18.4l-65.1,64.2c-8.4,8.3-8.4,21.9,0,30.2s22.2,8.3,30.6,0l56.1-55.3
14
+ C130.6,186.6,129.5,178.1,133.2,171.4z"/>
15
+ <path class="st0" d="M174.7,154.3c-1.3-1.3-3.1-2-4.8-2s-3.5,0.7-4.8,2l-3.9,3.8L92,89.9l3.2-3.2c2.9-2.9,2.6-7.7-0.8-10.2L66.2,56
16
+ c-2.7-2-6.5-1.7-8.9,0.7l-12,11.8c-2.4,2.4-2.7,6.1-0.7,8.8l20.8,27.8c2.5,3.3,7.3,3.7,10.3,0.8l3.2-3.2l69.2,68.3l-4.2,4.1
17
+ c-2.6,2.6-2.6,6.9,0,9.5l63.9,63c8.4,8.3,22.2,8.3,30.6,0s8.4-21.9,0-30.2L174.7,154.3z"/>
18
+ </g>
19
+ </svg>
Binary file
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 35.3 35.3" style="enable-background:new 0 0 35.3 35.3;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <path class="st0" d="M28.8,7.3c-0.4-0.4-1.1-0.4-1.5,0L14.6,20L8,13.4c-0.4-0.4-1.1-0.4-1.5,0l-2.3,2.3c-0.4,0.4-0.4,1.1,0,1.5
9
+ l9.6,9.7c0.4,0.4,1.1,0.4,1.5,0l15.8-15.8c0.4-0.4,0.4-1.1,0-1.5L28.8,7.3z"/>
10
+ </svg>
Binary file
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;stroke:#000000;stroke-miterlimit:10;}
7
+ </style>
8
+ <path class="st0" d="M434,289.7V179.4H267.6v42.7h-110v-37.2h72.4V74.6H63.5v110.3h65.1v202.7h138.9v40H434V317.3H267.6V360h-110
9
+ V249.7h110v40H434z M92.4,102.2H201v55.2H92.4V102.2z M296.5,344.8h108.5V400H296.5V344.8z M296.5,207h108.5v55.2H296.5V207z"/>
10
+ </svg>
Binary file