@woosmap/ui 3.6.0 → 3.10.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@woosmap/ui",
3
- "version": "3.6.0",
3
+ "version": "3.10.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/WebGeoServices/ui.git"
@@ -29,7 +29,7 @@ class SimpleCard extends Component {
29
29
  {isFavorite && (
30
30
  <Icon
31
31
  className="simplecard__favorite"
32
- title={tr('Favorite project')}
32
+ title={tr('Favorite Project')}
33
33
  icon="star-filled"
34
34
  data-testid={`${testId}-icon`}
35
35
  />
@@ -6,7 +6,7 @@ import DistanceDemo from './DistanceDemo';
6
6
 
7
7
  it('render distance demo', () => {
8
8
  const { container } = render(<DistanceDemo />);
9
- expect(container.firstChild).toHaveClass('demo demo--distance');
9
+ expect(container.firstChild).toHaveClass('demo');
10
10
  });
11
11
 
12
12
  it('test transport button', () => {
@@ -6,5 +6,5 @@ import GeolocationDemo from './GeolocationDemo';
6
6
 
7
7
  it('render geolocation demo', () => {
8
8
  const { container } = render(<GeolocationDemo />);
9
- expect(container.firstChild).toHaveClass('demo demo--geolocation');
9
+ expect(container.firstChild).toHaveClass('demo');
10
10
  });
@@ -7,7 +7,7 @@ import LocalitiesDemo from './LocalitiesDemo';
7
7
 
8
8
  it('renders a LocalitiesDemo', () => {
9
9
  const { container } = render(<LocalitiesDemo />);
10
- expect(container.firstChild).toHaveClass('demo demo--localities');
10
+ expect(container.firstChild).toHaveClass('demo');
11
11
  });
12
12
 
13
13
  it('test Type in', () => {
@@ -7,7 +7,7 @@ import SearchDemo from './SearchDemo';
7
7
 
8
8
  it('renders a SearchDemo', () => {
9
9
  const { container } = render(<SearchDemo />);
10
- expect(container.firstChild).toHaveClass('demo demo--search');
10
+ expect(container.firstChild).toHaveClass('demo');
11
11
  });
12
12
 
13
13
  it('test tagFilter list', () => {
@@ -20,11 +20,7 @@ it('test tagFilter list', () => {
20
20
  fireEvent.focus(input);
21
21
  fireEvent.keyDown(input, { key: 'ArrowDown', code: 40 });
22
22
  fireEvent.click(screen.getByText('In Store Wifi'));
23
- expect(
24
- screen.getByText(
25
- 'query=%28tag%3A%22parking%22%20AND%20tag%3A%22in-store_wi-fi%22%29"'
26
- )
27
- ).toBeVisible();
23
+ expect(screen.getByText('query=%28tag%3A%22parking%22%20AND%20tag%3A%22in-store_wi-fi%22%29"')).toBeVisible();
28
24
  });
29
25
 
30
26
  it('test typeFilter list', () => {
@@ -33,16 +29,12 @@ it('test typeFilter list', () => {
33
29
  fireEvent.focus(input);
34
30
  fireEvent.keyDown(input, { key: 'ArrowDown', code: 40 });
35
31
  fireEvent.click(screen.getByText('Bose Store'));
36
- expect(
37
- screen.getByText('query=%28type%3A%22bose_store%22%29"')
38
- ).toBeVisible();
32
+ expect(screen.getByText('query=%28type%3A%22bose_store%22%29"')).toBeVisible();
39
33
  fireEvent.focus(input);
40
34
  fireEvent.keyDown(input, { key: 'ArrowDown', code: 40 });
41
35
  fireEvent.click(screen.getByText('Bose Factory Store'));
42
36
  expect(
43
- screen.getByText(
44
- 'query=%28type%3A%22bose_store%22%20OR%20type%3A%22bose_factory_store%22%29"'
45
- )
37
+ screen.getByText('query=%28type%3A%22bose_store%22%20OR%20type%3A%22bose_factory_store%22%29"')
46
38
  ).toBeVisible();
47
39
  });
48
40
 
@@ -52,16 +44,10 @@ it('test typeFilter and tagFilter list', () => {
52
44
  fireEvent.focus(typeFilter);
53
45
  fireEvent.keyDown(typeFilter, { key: 'ArrowDown', code: 40 });
54
46
  fireEvent.click(screen.getByText('Bose Store'));
55
- expect(
56
- screen.getByText('query=%28type%3A%22bose_store%22%29"')
57
- ).toBeVisible();
47
+ expect(screen.getByText('query=%28type%3A%22bose_store%22%29"')).toBeVisible();
58
48
  const tagFilter = container.querySelectorAll('input')[2];
59
49
  fireEvent.focus(tagFilter);
60
50
  fireEvent.keyDown(tagFilter, { key: 'ArrowDown', code: 40 });
61
51
  fireEvent.click(screen.getByText('Parking'));
62
- expect(
63
- screen.getByText(
64
- 'query=%28tag%3A%22parking%22%29%20AND%20%28type%3A%22bose_store%22%29"'
65
- )
66
- ).toBeVisible();
52
+ expect(screen.getByText('query=%28tag%3A%22parking%22%29%20AND%20%28type%3A%22bose_store%22%29"')).toBeVisible();
67
53
  });
@@ -6,7 +6,7 @@ import SkeletonDemo from './SkeletonDemo';
6
6
 
7
7
  it('renders a SkeletonDemo component ', () => {
8
8
  const { container } = render(<SkeletonDemo noheader id="skeleton-test" />);
9
- expect(container.firstChild).toHaveAttribute('id', 'skeleton-test');
9
+ expect(container.firstChild).toHaveAttribute('class', 'demo');
10
10
  });
11
11
 
12
12
  it('calls copy exec command when click on copy button', () => {
@@ -1,6 +1,26 @@
1
1
  import React, { Component } from 'react';
2
2
  import cl from 'classnames';
3
3
  import PropTypes from 'prop-types';
4
+ import { ReactComponent as Autocomplete } from '../../icons/autocomplete.svg';
5
+ import { ReactComponent as Buildings } from '../../icons/buildings.svg';
6
+ import { ReactComponent as Battery } from '../../icons/battery.svg';
7
+ import { ReactComponent as Cars } from '../../icons/cars.svg';
8
+ import { ReactComponent as Github } from '../../icons/github.svg';
9
+ import { ReactComponent as Green } from '../../icons/green.svg';
10
+ import { ReactComponent as Integrations } from '../../icons/integrations.svg';
11
+ import { ReactComponent as Like } from '../../icons/like.svg';
12
+ import { ReactComponent as MapHd } from '../../icons/map-hd.svg';
13
+ import { ReactComponent as Markers } from '../../icons/markers.svg';
14
+ import { ReactComponent as Notification } from '../../icons/notification.svg';
15
+ import { ReactComponent as Quote } from '../../icons/quote.svg';
16
+ import { ReactComponent as Position } from '../../icons/position.svg';
17
+ import { ReactComponent as PuzzleStar } from '../../icons/puzzle-star.svg';
18
+ import { ReactComponent as SaveMoney } from '../../icons/save-money.svg';
19
+ import { ReactComponent as Schedule } from '../../icons/schedule.svg';
20
+ import { ReactComponent as Security } from '../../icons/security.svg';
21
+ import { ReactComponent as World } from '../../icons/world.svg';
22
+ import { ReactComponent as Zoom } from '../../icons/zoom.svg';
23
+
4
24
  import { ReactComponent as Access } from '../../icons/access.svg';
5
25
  import { ReactComponent as Add } from '../../icons/add.svg';
6
26
  import { ReactComponent as AddCircle } from '../../icons/add-circle.svg';
@@ -20,12 +40,10 @@ import { ReactComponent as ArrowLink } from '../../icons/arrow-link.svg';
20
40
  import { ReactComponent as Asset } from '../../icons/asset.svg';
21
41
  import { ReactComponent as AssetAddFile } from '../../icons/asset-add-file.svg';
22
42
  import { ReactComponent as AssetAdd } from '../../icons/asset-add.svg';
23
- import { ReactComponent as Autocomplete } from '../../icons/autocomplete.svg';
24
43
  import { ReactComponent as Bank } from '../../icons/bank.svg';
25
44
  import { ReactComponent as Beaker } from '../../icons/beaker.svg';
26
45
  import { ReactComponent as Bell } from '../../icons/bell.svg';
27
46
  import { ReactComponent as Bookmark } from '../../icons/bookmark.svg';
28
- import { ReactComponent as Buildings } from '../../icons/buildings.svg';
29
47
  import { ReactComponent as Bulb } from '../../icons/bulb.svg';
30
48
  import { ReactComponent as CaretBotton } from '../../icons/caret-bottom.svg';
31
49
  import { ReactComponent as CaretLeft } from '../../icons/caret-left.svg';
@@ -57,7 +75,6 @@ import { ReactComponent as Exchange } from '../../icons/exchange.svg';
57
75
  import { ReactComponent as Expand } from '../../icons/expand.svg';
58
76
  import { ReactComponent as Export } from '../../icons/export.svg';
59
77
  import { ReactComponent as Flag } from '../../icons/flag.svg';
60
- import { ReactComponent as Github } from '../../icons/github.svg';
61
78
  import { ReactComponent as Globe } from '../../icons/globe.svg';
62
79
  import { ReactComponent as Home } from '../../icons/home.svg';
63
80
  import { ReactComponent as HomeUser } from '../../icons/home-user.svg';
@@ -79,23 +96,19 @@ import { ReactComponent as Organization } from '../../icons/organization.svg';
79
96
  import { ReactComponent as Organizations } from '../../icons/organizations.svg';
80
97
  import { ReactComponent as Phone } from '../../icons/phone.svg';
81
98
  import { ReactComponent as Platform } from '../../icons/platform.svg';
82
- import { ReactComponent as Position } from '../../icons/position.svg';
83
99
  import { ReactComponent as ProductActivated } from '../../icons/product-activated.svg';
84
100
  import { ReactComponent as ProductAdd } from '../../icons/product-add.svg';
85
101
  import { ReactComponent as Products } from '../../icons/products.svg';
86
102
  import { ReactComponent as Projects } from '../../icons/projects.svg';
87
103
  import { ReactComponent as Puzzle } from '../../icons/puzzle.svg';
88
104
  import { ReactComponent as Question } from '../../icons/question.svg';
89
- import { ReactComponent as Quote } from '../../icons/quote.svg';
90
105
  import { ReactComponent as Receipt } from '../../icons/receipt.svg';
91
- import { ReactComponent as SaveMoney } from '../../icons/save-money.svg';
92
106
  import { ReactComponent as Search } from '../../icons/search.svg';
93
107
  import { ReactComponent as SeePage } from '../../icons/see-page.svg';
94
108
  import { ReactComponent as Settings } from '../../icons/settings.svg';
95
109
  import { ReactComponent as Shield } from '../../icons/shield.svg';
96
110
  import { ReactComponent as Star } from '../../icons/star.svg';
97
111
  import { ReactComponent as StarFilled } from '../../icons/star-filled.svg';
98
- import { ReactComponent as Stores } from '../../icons/stores.svg';
99
112
  import { ReactComponent as Support } from '../../icons/support.svg';
100
113
  import { ReactComponent as Switch } from '../../icons/switch.svg';
101
114
  import { ReactComponent as Team } from '../../icons/team.svg';
@@ -107,19 +120,39 @@ import { ReactComponent as ViewList } from '../../icons/view-list.svg';
107
120
  import { ReactComponent as ViewMiniCard } from '../../icons/view-mini-card.svg';
108
121
  import { ReactComponent as Warning } from '../../icons/warning.svg';
109
122
  import { ReactComponent as Woosmap } from '../../icons/woosmap.svg';
110
- import { ReactComponent as World } from '../../icons/world.svg';
111
123
  import { ReactComponent as Address } from '../../icons/address.svg';
112
124
  import { ReactComponent as Distance } from '../../icons/distance.svg';
113
125
  import { ReactComponent as Geolocation } from '../../icons/geolocation.svg';
114
126
  import { ReactComponent as Localities } from '../../icons/localities.svg';
115
127
  import { ReactComponent as Map } from '../../icons/map.svg';
116
128
  import { ReactComponent as Merchant } from '../../icons/merchant.svg';
129
+ import { ReactComponent as Stores } from '../../icons/stores.svg';
117
130
  import { ReactComponent as Traffic } from '../../icons/traffic.svg';
118
131
  import { ReactComponent as SocialFacebook } from '../../icons/social-facebook.svg';
119
132
  import { ReactComponent as SocialLinkedin } from '../../icons/social-linkedin.svg';
120
133
  import { ReactComponent as SocialTwitter } from '../../icons/social-twitter.svg';
121
134
 
122
135
  const Icons = {
136
+ autocomplete: Autocomplete,
137
+ battery: Battery,
138
+ buildings: Buildings,
139
+ cars: Cars,
140
+ github: Github,
141
+ green: Green,
142
+ integrations: Integrations,
143
+ like: Like,
144
+ 'map-hd': MapHd,
145
+ markers: Markers,
146
+ notification: Notification,
147
+ position: Position,
148
+ 'puzzle-star': PuzzleStar,
149
+ quote: Quote,
150
+ 'save-money': SaveMoney,
151
+ schedule: Schedule,
152
+ security: Security,
153
+ world: World,
154
+ zoom: Zoom,
155
+
123
156
  access: Access,
124
157
  add: Add,
125
158
  'add-circle': AddCircle,
@@ -139,12 +172,10 @@ const Icons = {
139
172
  asset: Asset,
140
173
  'asset-add-file': AssetAddFile,
141
174
  'asset-add': AssetAdd,
142
- autocomplete: Autocomplete,
143
175
  bank: Bank,
144
176
  beaker: Beaker,
145
177
  bell: Bell,
146
178
  bookmark: Bookmark,
147
- buildings: Buildings,
148
179
  bulb: Bulb,
149
180
  'caret-bottom': CaretBotton,
150
181
  'caret-left': CaretLeft,
@@ -177,7 +208,6 @@ const Icons = {
177
208
  export: Export,
178
209
  flag: Flag,
179
210
  globe: Globe,
180
- github: Github,
181
211
  home: Home,
182
212
  'home-user': HomeUser,
183
213
  import: Import,
@@ -198,16 +228,13 @@ const Icons = {
198
228
  organizations: Organizations,
199
229
  phone: Phone,
200
230
  platform: Platform,
201
- position: Position,
202
231
  'product-activated': ProductActivated,
203
232
  'product-add': ProductAdd,
204
233
  products: Products,
205
234
  projects: Projects,
206
235
  puzzle: Puzzle,
207
236
  question: Question,
208
- quote: Quote,
209
237
  receipt: Receipt,
210
- 'save-money': SaveMoney,
211
238
  search: Search,
212
239
  'see-page': SeePage,
213
240
  settings: Settings,
@@ -226,7 +253,6 @@ const Icons = {
226
253
  'view-mini-card': ViewMiniCard,
227
254
  warning: Warning,
228
255
  woosmap: Woosmap,
229
- world: World,
230
256
  address: Address,
231
257
  distance: Distance,
232
258
  geolocation: Geolocation,
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M44.052 78.021a1.5 1.5 0 0 1-1.46-1.84L46.268 60.4h-5.686a1.5 1.5 0 0 1-1.248-2.334l16.543-24.739a1.5 1.5 0 0 1 2.707 1.173l-3.9 16.554h5.836a1.5 1.5 0 0 1 1.237 2.35L45.289 77.371a1.5 1.5 0 0 1-1.237.65ZM43.389 57.4h4.768a1.5 1.5 0 0 1 1.461 1.841l-2.3 9.891 10.36-15.07H52.8a1.5 1.5 0 0 1-1.46-1.844l2.432-10.335Z"/><path d="M66.589 91.007H34.827a7.812 7.812 0 0 1-7.8-7.8v-55.42a7.813 7.813 0 0 1 7.8-7.8h31.762a7.813 7.813 0 0 1 7.8 7.8V83.2a7.812 7.812 0 0 1-7.8 7.807ZM34.827 22.983a4.809 4.809 0 0 0-4.8 4.8V83.2a4.809 4.809 0 0 0 4.8 4.8h31.762a4.809 4.809 0 0 0 4.8-4.8V27.787a4.809 4.809 0 0 0-4.8-4.8Zm23.998-5.256H41.973a1.5 1.5 0 0 1-1.5-1.5v-4a4.6 4.6 0 0 1 4.589-4.589h10.673a4.6 4.6 0 0 1 4.59 4.589v4a1.5 1.5 0 0 1-1.5 1.5Zm-15.352-3h13.852v-2.5a1.591 1.591 0 0 0-1.59-1.589H45.062a1.591 1.591 0 0 0-1.589 1.589Z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15.747H4a.56.56 0 0 0-.56.56 3.213 3.213 0 0 0 3.209 3.209h10.705a3.213 3.213 0 0 0 3.209-3.209.56.56 0 0 0-.563-.56zM17.354 18.4H6.646a2.093 2.093 0 0 1-2.013-1.529h14.734a2.093 2.093 0 0 1-2.013 1.529zM4.97 14.53h14.06a.56.56 0 0 0 .56-.56 7.593 7.593 0 0 0-7.03-7.561V5.6h1.465a.56.56 0 1 0 0-1.12h-4.05a.56.56 0 0 0 0 1.12h1.465v.8a7.593 7.593 0 0 0-7.03 7.57.56.56 0 0 0 .56.56zM12 7.5a6.479 6.479 0 0 1 6.446 5.91H5.554A6.479 6.479 0 0 1 12 7.5z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M49.93 90.14A41.14 41.14 0 1 1 91.07 49a41.186 41.186 0 0 1-41.14 41.14Zm0-79.28A38.14 38.14 0 1 0 88.07 49a38.183 38.183 0 0 0-38.14-38.14Z"/><path d="M49.93 75.891a11.142 11.142 0 0 1-11.13-11.13 1.5 1.5 0 0 1 1.5-1.5h19.259a1.5 1.5 0 0 1 1.5 1.5 11.143 11.143 0 0 1-11.129 11.13Zm-7.991-9.63a8.13 8.13 0 0 0 15.981 0Zm27.191-6.114h-38.4a4.965 4.965 0 0 1 0-9.929h1.91V39.4a17.292 17.292 0 0 1 18.124-17.27A17.5 17.5 0 0 1 67.22 39.845v10.373h1.91a4.965 4.965 0 1 1 0 9.929Zm-38.4-6.929a1.965 1.965 0 0 0 0 3.929h38.4a1.965 1.965 0 1 0 0-3.929h-3.41a1.5 1.5 0 0 1-1.5-1.5V39.845a14.5 14.5 0 0 0-13.6-14.719A14.29 14.29 0 0 0 35.64 39.4v12.318a1.5 1.5 0 0 1-1.5 1.5Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M40.7 51.954h38.284a2.765 2.765 0 0 0 2.523-3.9l-4.392-9.771a4.147 4.147 0 0 0-3.776-2.442H46.347a4.147 4.147 0 0 0-3.776 2.442l-4.392 9.771a2.766 2.766 0 0 0 2.523 3.9Zm4.606-12.441a1.14 1.14 0 0 1 1.039-.672h26.994a1.14 1.14 0 0 1 1.039.672l4.245 9.441h-37.56Z"/><path d="M88.652 45.813 82.39 33.268a7.954 7.954 0 0 0-7.156-4.426H44.558a7.954 7.954 0 0 0-7.158 4.426l-6.259 12.545a16.041 16.041 0 0 0-1.681 7.127v24.418a6.846 6.846 0 0 0 13.692 0l33.488-.007v.007a6.846 6.846 0 1 0 13.692 0V52.94a16.037 16.037 0 0 0-1.68-7.127Zm-1.32 31.545a3.846 3.846 0 1 1-7.692 0v-3.007H40.152v3.007a3.846 3.846 0 1 1-7.692 0V52.94a13.018 13.018 0 0 1 1.365-5.787l6.262-12.546a4.969 4.969 0 0 1 4.471-2.765h30.676a4.969 4.969 0 0 1 4.471 2.765l6.263 12.546a13.024 13.024 0 0 1 1.364 5.787Z"/><path d="M49.134 57.354h-7.973a4.356 4.356 0 1 0 0 8.711h7.973a4.356 4.356 0 1 0 0-8.711Zm0 5.711h-7.973a1.356 1.356 0 1 1 0-2.711h7.973a1.356 1.356 0 1 1 0 2.711Zm29.497-5.711h-7.973a4.356 4.356 0 1 0 0 8.711h7.973a4.356 4.356 0 1 0 0-8.711Zm0 5.711h-7.973a1.356 1.356 0 1 1 0-2.711h7.973a1.356 1.356 0 1 1 0 2.711ZM20.36 64.312a3.846 3.846 0 1 1-7.692 0V39.894a13.024 13.024 0 0 1 1.364-5.787L20.3 21.561a4.967 4.967 0 0 1 4.466-2.761h30.676a4.967 4.967 0 0 1 4.471 2.765l1.634 3.274 2.685-1.34-1.632-3.278a7.955 7.955 0 0 0-7.158-4.421H24.766a7.955 7.955 0 0 0-7.156 4.425l-6.262 12.543a16.027 16.027 0 0 0-1.68 7.126v24.418a6.846 6.846 0 1 0 13.692 0l2-.008v-3h-5Z"/><path d="M25.994 26.188a1.019 1.019 0 0 1 .928-.6h25.752v-3H26.922a4.027 4.027 0 0 0-3.665 2.371l-4.191 9.321a2.708 2.708 0 0 0 2.47 3.818h7.814v-3h-7.362Zm-8.981 22.475a4.361 4.361 0 0 0 4.356 4.356H24.1v-3h-2.73a1.356 1.356 0 1 1 0-2.712h3.986v-3h-3.987a4.361 4.361 0 0 0-4.356 4.356Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M88.83 44.026a7.654 7.654 0 0 0-10.814 0L67.6 54.445a7.654 7.654 0 0 0-7.612-6.965h-7.5v-8.773A5.139 5.139 0 0 1 54 35.051l1.3-1.293a10.206 10.206 0 0 0 6.043 2.012c.162 0 .326 0 .489-.013a11.641 11.641 0 0 0 7.756-3.695c7.111-7.111 5.648-18.529 5.583-19.012l-.153-1.119-1.118-.163c-.479-.071-11.817-1.629-19.027 5.582a11.744 11.744 0 0 0-3.731 7.71 10.042 10.042 0 0 0 2.026 6.586L51.88 32.93a8.141 8.141 0 0 0-1.8 2.729 8.411 8.411 0 0 0-1.65-1.307 7.659 7.659 0 0 0-1.176-5.1 8.881 8.881 0 0 0-5.354-3.64c-7.3-1.957-13.972 3.226-14.252 3.449l-.886.7.427 1.046c.136.332 3.415 8.17 10.614 10.1a10.424 10.424 0 0 0 2.706.376 8.134 8.134 0 0 0 3.765-.9 7.737 7.737 0 0 0 3.168-3.055 5.391 5.391 0 0 1 2.044 4.206v5.946H40.2a15.278 15.278 0 0 0-10 3.72l-7.976 6.9-2.24-3.6-12.875 8.009 16.023 25.763 12.875-8.007-1.741-2.8h22.013a23.806 23.806 0 0 0 16.946-7.019L88.83 54.84a7.654 7.654 0 0 0 0-10.814Zm-34.7-18.8a8.853 8.853 0 0 1 2.857-5.76c4.211-4.211 10.357-4.878 13.829-4.878.569 0 1.066.018 1.471.041.151 2.893.024 10.455-4.829 15.307a8.744 8.744 0 0 1-5.781 2.82 7.236 7.236 0 0 1-4.235-1.153l9.21-9.21-2.121-2.121-9.222 9.228a7.02 7.02 0 0 1-1.176-4.269ZM42.905 37.715a5.9 5.9 0 0 1-4.324.292c-4.338-1.163-7.02-5.285-8.085-7.263 1.893-1.185 6.235-3.412 10.63-2.234a5.973 5.973 0 0 1 3.616 2.39 4.585 4.585 0 0 1 .717 2.308l-8.533-2.287-.777 2.9 8.514 2.279a4.7 4.7 0 0 1-1.758 1.615ZM24.1 84.14 11.241 63.472l7.78-4.839L31.875 79.3Zm62.609-31.421L71.1 68.324a20.828 20.828 0 0 1-14.825 6.14H32.4l-8.57-13.779 8.335-7.212A12.275 12.275 0 0 1 40.2 50.48h19.79a4.647 4.647 0 0 1 0 9.293H47.654v3h12.332a7.541 7.541 0 0 0 1.026-.077v.077a5.99 5.99 0 0 0 4.266-1.767l14.859-14.859a4.647 4.647 0 0 1 6.572 6.572Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M79.267 11.367H20.733a9.393 9.393 0 0 0-9.381 9.383v58.5a9.393 9.393 0 0 0 9.381 9.383h58.534a9.393 9.393 0 0 0 9.381-9.383v-58.5a9.393 9.393 0 0 0-9.381-9.383Zm-27.763 3h27.763a6.389 6.389 0 0 1 6.381 6.383v27.738H75.6a1.5 1.5 0 0 0-1.146.531 1.419 1.419 0 0 0-.105.14 1.5 1.5 0 0 0-.252.831 5.523 5.523 0 0 1-11.045 0 1.5 1.5 0 0 0-.252-.831 1.52 1.52 0 0 0-.375-.388 1.5 1.5 0 0 0-.877-.283H51.5V39.83a8.524 8.524 0 0 0 0-16.781Zm-30.771 0H48.5v10.047a1.5 1.5 0 0 0 .072.432 1.48 1.48 0 0 0 .274.511l.018.024.017.016a1.4 1.4 0 0 0 .095.109c.017.016.041.022.058.037a1.474 1.474 0 0 0 .382.243c.031.013.062.02.094.032a1.5 1.5 0 0 0 .482.092h.009a5.523 5.523 0 0 1 0 11.045h-.009a1.5 1.5 0 0 0-.481.092c-.033.012-.065.019-.1.033a1.481 1.481 0 0 0-.379.242c-.019.015-.043.022-.06.038a1.215 1.215 0 0 0-.095.109l-.016.015-.017.022a1.515 1.515 0 0 0-.276.514 1.5 1.5 0 0 0-.072.433v10.035h-8.682a8.524 8.524 0 0 0-16.781 0h-8.681V20.75a6.389 6.389 0 0 1 6.381-6.383ZM48.5 85.633H20.733a6.389 6.389 0 0 1-6.381-6.383V51.512H24.4a1.5 1.5 0 0 0 1.146-.531 1.419 1.419 0 0 0 .105-.14 1.5 1.5 0 0 0 .252-.831 5.523 5.523 0 0 1 11.045 0 1.5 1.5 0 0 0 .252.831 1.52 1.52 0 0 0 .375.388 1.5 1.5 0 0 0 .877.283H48.5v8.658a8.524 8.524 0 0 0 0 16.781Zm30.771 0H51.5V75.586a1.5 1.5 0 0 0-.072-.432 1.48 1.48 0 0 0-.274-.511l-.018-.024-.017-.016a1.4 1.4 0 0 0-.095-.109c-.017-.016-.041-.022-.058-.037a1.474 1.474 0 0 0-.382-.243c-.031-.013-.062-.02-.094-.032a1.5 1.5 0 0 0-.482-.092h-.009a5.523 5.523 0 0 1 0-11.045h.009a1.5 1.5 0 0 0 .481-.092c.033-.012.065-.019.1-.033a1.486 1.486 0 0 0 .38-.242c.018-.016.042-.022.059-.038a1.4 1.4 0 0 0 .095-.109l.016-.015.017-.022a1.515 1.515 0 0 0 .276-.514 1.5 1.5 0 0 0 .072-.433V51.512h8.682a8.524 8.524 0 0 0 16.781 0h8.681V79.25a6.389 6.389 0 0 1-6.381 6.383Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M89.723 57.705a11.57 11.57 0 0 0-1.155-11.14l-1.238-1.786a11.625 11.625 0 0 0-9.554-5h-12.2a2.363 2.363 0 0 1-2.248-3.093l4.075-12.565a13.19 13.19 0 0 0-2.924-13.092l-1.458-1.562a1.5 1.5 0 0 0-1.082-.474h-.012a1.5 1.5 0 0 0-1.077.456l-31.6 32.606a1.5 1.5 0 0 0-1.07-.451H17.263a7.909 7.909 0 0 0-7.9 7.9v33.6a7.909 7.909 0 0 0 7.9 7.9h10.913a1.494 1.494 0 0 0 1.071-.451 1.5 1.5 0 0 0 1.071.451h37.639a11.6 11.6 0 0 0 10.708-7.1l2.341-5.547.008-.018Zm-72.46 30.3a4.906 4.906 0 0 1-4.9-4.9v-33.6a4.907 4.907 0 0 1 4.9-4.9h10.913a1.485 1.485 0 0 0 .642-.149v43.7a1.485 1.485 0 0 0-.642-.15ZM75.9 82.737a8.6 8.6 0 0 1-7.944 5.27H31.818V43.712l30.091-31.045.385.411a10.192 10.192 0 0 1 2.259 10.114l-4.075 12.565a5.363 5.363 0 0 0 5.1 7.019h12.2a8.625 8.625 0 0 1 7.088 3.712l1.234 1.786a8.616 8.616 0 0 1 1.438 3.677H70.03a1.5 1.5 0 0 0 0 3h17.41a8.667 8.667 0 0 1-.481 1.587l-3.223 7.638a1.48 1.48 0 0 0-.423-.068H70.03a1.5 1.5 0 0 0 0 3H82.5l-3.865 9.156h-8.6a1.5 1.5 0 0 0 0 3h7.337Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M87.036 27.275 66.6 19.33a10.3 10.3 0 0 0-7.484 0l-19.322 7.514a7.316 7.316 0 0 1-5.308 0l-18.062-7.023a4.773 4.773 0 0 0-6.5 4.448v47.045a4.744 4.744 0 0 0 3.043 4.448L33.4 83.708a10.305 10.305 0 0 0 7.482 0l19.325-7.514a7.316 7.316 0 0 1 5.308 0l18.062 7.023a4.772 4.772 0 0 0 6.5-4.448V31.724a4.745 4.745 0 0 0-3.041-4.449Zm.043 51.494a1.772 1.772 0 0 1-2.415 1.652L66.6 73.4a10.377 10.377 0 0 0-2.251-.584c0-.028.008-.054.008-.082v-5.676a1.5 1.5 0 1 0-3 0v5.674c0 .028.007.054.009.082a10.368 10.368 0 0 0-2.25.584l-19.322 7.514a7.415 7.415 0 0 1-1.154.337V67.177a1.5 1.5 0 0 0-3 0v14.071a7.3 7.3 0 0 1-1.154-.336l-20.435-7.946a1.762 1.762 0 0 1-1.13-1.652V24.269a1.78 1.78 0 0 1 1.767-1.776 1.775 1.775 0 0 1 .648.124L33.4 29.64a10.325 10.325 0 0 0 2.285.589 1.527 1.527 0 0 0-.044.347v4.583a1.5 1.5 0 1 0 3 0v-4.583a1.527 1.527 0 0 0-.044-.347 10.325 10.325 0 0 0 2.285-.589l19.325-7.514a7.3 7.3 0 0 1 1.153-.337V34.27a1.5 1.5 0 1 0 3 0V21.789a7.319 7.319 0 0 1 1.155.337l20.434 7.945a1.761 1.761 0 0 1 1.131 1.653Z"/><path d="M45.01 48.696h-6.186v-6.395h-3.976v16.324h3.976v-6.72h6.186v6.72h3.976V42.301H45.01v6.395zM57.963 42.3h-6.116v16.325h6.116c5.209 0 8.557-3.325 8.557-8.162 0-4.863-3.348-8.163-8.557-8.163Zm-.256 12.883h-1.884V45.7h1.884c3 0 4.768 1.767 4.768 4.767s-1.768 4.717-4.768 4.717Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M59.683 41.938a9.562 9.562 0 1 0-9.562 9.562 9.572 9.572 0 0 0 9.562-9.562Zm-16.123 0a6.562 6.562 0 1 1 6.561 6.562 6.568 6.568 0 0 1-6.561-6.562Z"/><path d="M86.741 33.162a21.642 21.642 0 0 0-9.254-4.552c-.023 0-.047 0-.07-.008A21.583 21.583 0 0 0 60.5 22.121a1.467 1.467 0 0 0-.663.213 21.376 21.376 0 0 0-19.577.066 1.489 1.489 0 0 0-.768-.279A21.583 21.583 0 0 0 22.583 28.6c-.023 0-.047 0-.07.008A21.581 21.581 0 0 0 10.6 63.555c5.09 6.067 12.644 7.36 19.95 8.612 6.618 1.133 12.869 2.2 16.671 6.735a1.5 1.5 0 0 0 .854.5 3.618 3.618 0 0 0 2.046.6 3.529 3.529 0 0 0 2.249-.773 1.482 1.482 0 0 0 .409-.331c3.8-4.532 10.053-5.6 16.671-6.735 7.306-1.252 14.86-2.545 19.95-8.612a21.6 21.6 0 0 0-2.659-30.389ZM68.314 26.2A18.594 18.594 0 0 1 79.415 50c-2.333 6.408-8.228 9.773-14.471 13.336a57.332 57.332 0 0 0-9.36 6.182 54.848 54.848 0 0 1 6.362-8.533c4.792-5.654 9.747-11.5 9.747-19.421a21.514 21.514 0 0 0-7.539-16.349 18.526 18.526 0 0 1 4.16.985Zm-36.628 0a18.56 18.56 0 0 1 4.426-1 21.517 21.517 0 0 0-7.564 16.372c0 7.92 4.955 13.767 9.748 19.421a51.9 51.9 0 0 1 6.573 8.936 53.989 53.989 0 0 0-9.813-6.585C28.813 59.775 22.918 56.41 20.585 50a18.594 18.594 0 0 1 11.101-23.8ZM12.9 61.626a18.571 18.571 0 0 1 2.289-26.165 18.671 18.671 0 0 1 4.211-2.656 21.532 21.532 0 0 0-1.636 18.223c2.708 7.442 9.364 11.241 15.8 14.915a50.851 50.851 0 0 1 9.369 6.274c-3.65-1.59-7.8-2.309-11.88-3.008C23.973 68 17.281 66.85 12.9 61.626Zm36.837 15.236c0-7.015-4.653-12.5-9.153-17.815-4.646-5.483-9.036-10.662-9.036-17.481a18.573 18.573 0 0 1 37.145 0c0 6.819-4.388 12-9.036 17.481-4.371 5.159-8.874 10.492-9.128 17.225-.094.224-.194.444-.278.676 0 .013-.006.027-.01.04a.661.661 0 0 1-.12.018c-.221 0-.358-.065-.384-.144ZM87.1 61.626C82.719 66.85 76.027 68 68.943 69.209c-4.075.7-8.23 1.418-11.88 3.008a50.851 50.851 0 0 1 9.369-6.274c6.437-3.674 13.093-7.473 15.8-14.915A21.532 21.532 0 0 0 80.6 32.805a18.7 18.7 0 0 1 4.216 2.655A18.572 18.572 0 0 1 87.1 61.626Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M49.93 89.4A40.4 40.4 0 1 1 90.332 49 40.447 40.447 0 0 1 49.93 89.4Zm0-77.8A37.4 37.4 0 1 0 87.332 49 37.444 37.444 0 0 0 49.93 11.6Z"/><path d="M49.93 75.417a10.962 10.962 0 0 1-10.95-10.949 1.5 1.5 0 0 1 1.5-1.5h18.9a1.5 1.5 0 0 1 1.5 1.5 10.962 10.962 0 0 1-10.95 10.949Zm-7.808-9.449a7.951 7.951 0 0 0 15.615 0Zm26.651-6.001H31.086a4.9 4.9 0 0 1 0-9.8h1.848V39.578A17 17 0 0 1 50.75 22.6a17.2 17.2 0 0 1 16.175 17.416v10.151h1.848a4.9 4.9 0 1 1 0 9.8Zm-37.687-6.8a1.9 1.9 0 0 0 0 3.8h37.687a1.9 1.9 0 1 0 0-3.8h-3.348a1.5 1.5 0 0 1-1.5-1.5V40.016A14.2 14.2 0 0 0 50.609 25.6a14 14 0 0 0-14.675 13.978v12.089a1.5 1.5 0 0 1-1.5 1.5Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M19.365 86.3a1.5 1.5 0 0 1-1.5-1.5V62.059a12.152 12.152 0 0 1 0-24.118V15.2a1.5 1.5 0 0 1 3 0v24.149a1.5 1.5 0 0 1-1.5 1.5 9.151 9.151 0 0 0 0 18.3 1.5 1.5 0 0 1 1.5 1.5V84.8a1.5 1.5 0 0 1-1.5 1.5Z"/><path d="M50 27.349A12.172 12.172 0 0 1 37.94 16.7H19.365a1.5 1.5 0 0 1 0-3h19.984a1.5 1.5 0 0 1 1.5 1.5 9.151 9.151 0 0 0 18.3 0 1.5 1.5 0 0 1 1.5-1.5h19.986a1.5 1.5 0 0 1 0 3H62.06A12.172 12.172 0 0 1 50 27.349Z"/><path d="M80.635 86.3a1.5 1.5 0 0 1-1.5-1.5V60.651a1.5 1.5 0 0 1 1.5-1.5 9.151 9.151 0 0 0 0-18.3 1.5 1.5 0 0 1-1.5-1.5V15.2a1.5 1.5 0 1 1 3 0v22.741a12.152 12.152 0 0 1 0 24.118V84.8a1.5 1.5 0 0 1-1.5 1.5Z"/><path d="M80.635 86.3H60.651a1.5 1.5 0 0 1-1.5-1.5 9.151 9.151 0 0 0-18.3 0 1.5 1.5 0 0 1-1.5 1.5H19.365a1.5 1.5 0 1 1 0-3H37.94a12.153 12.153 0 0 1 24.12 0h18.575a1.5 1.5 0 0 1 0 3Zm-19.918-41-6.569-.955-2.939-5.952a1.348 1.348 0 0 0-2.418 0l-2.938 5.952-6.57.955a1.349 1.349 0 0 0-.748 2.3l4.755 4.634-1.123 6.543a1.348 1.348 0 0 0 1.957 1.423L50 57.111l5.877 3.089a1.348 1.348 0 0 0 1.956-1.421l-1.123-6.543 4.755-4.636a1.349 1.349 0 0 0-.748-2.3Z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.659 20.525h-.031a43.074 43.074 0 0 1-2.942-.256 2.657 2.657 0 0 1-2.374-2.625v-2.789a2.909 2.909 0 0 1 0-5.71v-2.79a2.64 2.64 0 0 1 2.309-2.616c.954-.119 1.928-.2 3.009-.263a.561.561 0 0 1 .59.542 1.783 1.783 0 0 0 3.565 0 .556.556 0 0 1 .182-.395.573.573 0 0 1 .409-.147c1.085.06 2.058.145 2.972.259a2.648 2.648 0 0 1 2.34 2.62v2.79a2.909 2.909 0 0 1 0 5.71v2.79a2.64 2.64 0 0 1-2.307 2.616c-.919.116-1.9.2-3.006.262a.545.545 0 0 1-.41-.146.563.563 0 0 1-.181-.4 1.783 1.783 0 0 0-3.565 0 .56.56 0 0 1-.182.395.553.553 0 0 1-.378.153zm-.485-15.9c-.851.055-1.635.128-2.383.222a1.526 1.526 0 0 0-1.36 1.508v3.3a.56.56 0 0 1-.56.56 1.79 1.79 0 0 0 0 3.58.56.56 0 0 1 .56.56v3.293a1.519 1.519 0 0 0 1.33 1.5c.789.1 1.571.171 2.412.227a2.9 2.9 0 0 1 5.657 0c.87-.056 1.664-.13 2.411-.224a1.519 1.519 0 0 0 1.328-1.5V14.35a.56.56 0 0 1 .56-.56 1.79 1.79 0 0 0 0-3.58.56.56 0 0 1-.56-.56V6.355a1.518 1.518 0 0 0-1.329-1.5 37.56 37.56 0 0 0-2.409-.226 2.9 2.9 0 0 1-5.657 0z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.659 20.525h-.031a43.074 43.074 0 0 1-2.942-.256 2.657 2.657 0 0 1-2.374-2.625v-2.789a2.909 2.909 0 0 1 0-5.71v-2.79a2.64 2.64 0 0 1 2.309-2.616c.954-.119 1.928-.2 3.009-.263a.561.561 0 0 1 .59.542 1.783 1.783 0 0 0 3.565 0 .556.556 0 0 1 .182-.395.573.573 0 0 1 .409-.147c1.085.06 2.058.145 2.972.259a2.648 2.648 0 0 1 2.34 2.62v2.79a2.909 2.909 0 0 1 0 5.71v2.79a2.64 2.64 0 0 1-2.307 2.616c-.919.116-1.9.2-3.006.262a.545.545 0 0 1-.41-.146.563.563 0 0 1-.181-.4 1.783 1.783 0 0 0-3.565 0 .56.56 0 0 1-.182.395.553.553 0 0 1-.378.153Zm-.485-15.9c-.851.055-1.635.128-2.383.222a1.526 1.526 0 0 0-1.36 1.508v3.3a.56.56 0 0 1-.56.56 1.79 1.79 0 0 0 0 3.58.56.56 0 0 1 .56.56v3.293a1.519 1.519 0 0 0 1.33 1.5c.789.1 1.571.171 2.412.227a2.9 2.9 0 0 1 5.657 0c.87-.056 1.664-.13 2.411-.224a1.519 1.519 0 0 0 1.328-1.5V14.35a.56.56 0 0 1 .56-.56 1.79 1.79 0 0 0 0-3.58.56.56 0 0 1-.56-.56V6.355a1.518 1.518 0 0 0-1.329-1.5 37.56 37.56 0 0 0-2.409-.226 2.9 2.9 0 0 1-5.657 0Z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="m45.2 32.468-6.1 5.207a11.859 11.859 0 0 0-4.475 9.355q0 3.338 3.986 7.729t3.989 8.055q0 11.96-11.8 11.959-12.612 0-12.611-14.4 0-21.558 21.56-35.146Zm36.61 0-6.1 5.207a11.855 11.855 0 0 0-4.475 9.355q0 3.338 3.986 7.729t3.988 8.055q0 11.96-11.8 11.959-12.611 0-12.61-14.4 0-21.558 21.56-35.146Z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="m44.459 29.757-7.046 6.012a13.691 13.691 0 0 0-5.167 10.8q0 3.852 4.6 8.924t4.6 9.3q0 13.809-13.621 13.809-14.562 0-14.561-16.628 0-24.892 24.9-40.582Zm42.272 0-7.046 6.012a13.691 13.691 0 0 0-5.167 10.8q0 3.852 4.6 8.924t4.6 9.3q0 13.809-13.621 13.809-14.562 0-14.561-16.628 0-24.892 24.9-40.582Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M64.4 66.354a1.493 1.493 0 0 1-1.023-.4l-14.1-13.177a1.5 1.5 0 0 1 2.048-2.192l14.1 13.177a1.5 1.5 0 0 1-1.024 2.6Z"/><path d="M48.5 24.178v27.5a1.5 1.5 0 0 0 3 0v-27.5a1.5 1.5 0 1 0-3 0Zm14.663-9.012a36.954 36.954 0 0 1 5.212 2.454 1.5 1.5 0 0 0 1.486-2.606 40.031 40.031 0 0 0-5.635-2.654 1.5 1.5 0 0 0-1.063 2.806Zm15.462 11.061a1.5 1.5 0 0 0 2.31-1.915 40.64 40.64 0 0 0-4.33-4.471 1.5 1.5 0 1 0-1.988 2.247 37.491 37.491 0 0 1 4.008 4.139Zm6.547 11.666a1.5 1.5 0 0 0 1.42 1.015 1.523 1.523 0 0 0 .485-.081 1.5 1.5 0 0 0 .934-1.905 39.955 39.955 0 0 0-2.469-5.716 1.5 1.5 0 0 0-2.653 1.4 36.983 36.983 0 0 1 2.283 5.287Z"/><path d="M82.744 70.563a1.5 1.5 0 0 0-2.086.387 37.149 37.149 0 1 1-24.914-57.741 1.521 1.521 0 0 0 .232.018 1.5 1.5 0 0 0 .228-2.983A40.169 40.169 0 1 0 50 90.1a40.213 40.213 0 0 0 33.131-17.451 1.5 1.5 0 0 0-.387-2.086Zm7.123-25.557a1.5 1.5 0 1 0-2.978.364 37.718 37.718 0 0 1 .278 4.564q0 .6-.019 1.192a1.5 1.5 0 0 0 1.452 1.547h.049a1.5 1.5 0 0 0 1.5-1.452q.021-.642.021-1.288a40.873 40.873 0 0 0-.303-4.927ZM87.93 57.631a1.5 1.5 0 0 0-1.811 1.1 37.021 37.021 0 0 1-1.792 5.474 1.5 1.5 0 1 0 2.77 1.153 39.92 39.92 0 0 0 1.937-5.92 1.5 1.5 0 0 0-1.104-1.807Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M62.064 39.435h-.623v-4.568a11.5 11.5 0 1 0-23 0v4.568h-.509a1.77 1.77 0 0 0-1.77 1.77V59.8a1.77 1.77 0 0 0 1.77 1.77h24.132a1.77 1.77 0 0 0 1.77-1.77V41.205a1.77 1.77 0 0 0-1.77-1.77ZM42.47 34.867a7.474 7.474 0 1 1 14.947 0v4.568H42.47Zm9.486 16.887v4.4a2.012 2.012 0 0 1-4.024 0v-4.399a3.953 3.953 0 1 1 4.024 0Z"/><path d="M50 91.213a1.51 1.51 0 0 1-.6-.126A62.886 62.886 0 0 1 11.77 33.5V21.745a1.5 1.5 0 0 1 1.053-1.432L49.554 8.854a1.507 1.507 0 0 1 .892 0l36.731 11.459a1.5 1.5 0 0 1 1.053 1.432V33.5A62.886 62.886 0 0 1 50.6 91.087a1.51 1.51 0 0 1-.6.126ZM14.77 22.849V33.5A59.89 59.89 0 0 0 50 88.072 59.89 59.89 0 0 0 85.23 33.5V22.849L50 11.858Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M90.332 29.331V17.754a4.873 4.873 0 0 0-4.868-4.867H15.031a4.872 4.872 0 0 0-4.867 4.867v11.577a4.861 4.861 0 0 0 4.158 4.8v2.512a4.861 4.861 0 0 0-4.158 4.8v11.569a4.861 4.861 0 0 0 4.158 4.8v2.7a4.861 4.861 0 0 0-4.158 4.8v11.565a4.861 4.861 0 0 0 4.158 4.8v3.94a1.5 1.5 0 0 0 1.5 1.5h68.415a1.5 1.5 0 0 0 1.5-1.5v-3.9a4.861 4.861 0 0 0 4.595-4.84V65.3a4.861 4.861 0 0 0-4.595-4.84v-2.608a4.861 4.861 0 0 0 4.595-4.84V41.435a4.861 4.861 0 0 0-4.595-4.84v-2.424a4.861 4.861 0 0 0 4.595-4.84Zm-7.595 7.236H17.322V34.2h65.415Zm-69.573-7.236V17.754a1.868 1.868 0 0 1 1.867-1.867h70.433a1.869 1.869 0 0 1 1.868 1.867v11.577a1.869 1.869 0 0 1-1.868 1.869H28v-7.658a1.5 1.5 0 0 0-3 0V31.2h-3.686v-7.658a1.5 1.5 0 0 0-3 0V31.2h-3.283a1.868 1.868 0 0 1-1.867-1.869Zm69.573 28.548v2.369H17.322v-2.369Zm0 26.234H17.322v-2.368h65.415ZM87.332 65.3v11.577a1.87 1.87 0 0 1-1.868 1.868H28v-7.656a1.5 1.5 0 0 0-3 0v7.656h-3.686v-7.656a1.5 1.5 0 0 0-3 0v7.656h-3.283a1.869 1.869 0 0 1-1.867-1.868V65.3a1.869 1.869 0 0 1 1.867-1.867h70.433a1.87 1.87 0 0 1 1.868 1.867Zm0-23.865v11.577a1.869 1.869 0 0 1-1.868 1.867H28v-7.656a1.5 1.5 0 0 0-3 0v7.656h-3.686v-7.656a1.5 1.5 0 0 0-3 0v7.656h-3.283a1.868 1.868 0 0 1-1.867-1.867V41.435a1.869 1.869 0 0 1 1.867-1.868h70.433a1.87 1.87 0 0 1 1.868 1.868Z"/><path d="M74.469 28.34a4.8 4.8 0 1 0-4.8-4.8 4.8 4.8 0 0 0 4.8 4.8Zm0-6.595a1.8 1.8 0 1 1-1.8 1.8 1.8 1.8 0 0 1 1.8-1.8ZM57.43 25.042h7.908a1.5 1.5 0 0 0 0-3H57.43a1.5 1.5 0 0 0 0 3Zm17.039 17.383a4.8 4.8 0 1 0 4.8 4.8 4.8 4.8 0 0 0-4.8-4.8Zm0 6.6a1.8 1.8 0 1 1 1.8-1.8 1.8 1.8 0 0 1-1.8 1.796Zm-9.131-3.302H57.43a1.5 1.5 0 1 0 0 3h7.908a1.5 1.5 0 0 0 0-3Zm9.131 20.568a4.8 4.8 0 1 0 4.8 4.8 4.8 4.8 0 0 0-4.8-4.8Zm0 6.6a1.8 1.8 0 1 1 1.8-1.8 1.8 1.8 0 0 1-1.8 1.796Zm-9.131-3.302H57.43a1.5 1.5 0 0 0 0 3h7.908a1.5 1.5 0 0 0 0-3Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M21.823 57.607 48.4 72.948a1.5 1.5 0 0 0 1.5 0l26.57-15.341a1.5 1.5 0 0 0 .75-1.3v-30.68a1.5 1.5 0 0 0-.75-1.3L49.9 8.988a1.5 1.5 0 0 0-1.5 0L21.823 24.329a1.5 1.5 0 0 0-.75 1.3v30.68a1.5 1.5 0 0 0 .75 1.298Zm2.25-30.014L47.645 41.2v27.851L24.073 55.442Zm26.572 41.458V41.2l23.57-13.608v27.85Zm-1.5-57.032 23.023 13.293L49.145 38.6 26.12 25.312Zm31.26 72.118h-25.04a5.569 5.569 0 0 0-10.73 0H19.6a1.5 1.5 0 0 0 0 3h25.04a5.569 5.569 0 0 0 10.73 0h25.04a1.5 1.5 0 0 0 0-3Z"/></svg>