@woosmap/ui 3.84.0 → 3.87.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.84.0",
3
+ "version": "3.87.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/WebGeoServices/ui.git"
@@ -140,7 +140,11 @@ export default class DistanceDemo extends Component {
140
140
  };
141
141
 
142
142
  requestDistance = () => {
143
- axios
143
+ const instance = axios.create();
144
+ instance.interceptors.response.use((response) =>
145
+ response.data.status !== 'OK' ? Promise.reject(response) : response
146
+ );
147
+ instance
144
148
  .get(this.requestUrl, { params: this.getRequestparams() })
145
149
  .then((response) => {
146
150
  if (this.mounted) {
@@ -156,8 +160,7 @@ export default class DistanceDemo extends Component {
156
160
  }
157
161
  })
158
162
  .catch((error) => {
159
- const errorResult = (error && error.response && error.response.data) || 'Unhandled error';
160
-
163
+ const errorResult = error?.data?.error_message ?? 'Unhandled error';
161
164
  this.setState({ error: errorResult });
162
165
  });
163
166
  };
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
- import { fireEvent, render, screen } from '@testing-library/react';
2
+ import { fireEvent, render, screen, waitFor } from '@testing-library/react';
3
3
  import '@testing-library/jest-dom/extend-expect';
4
-
4
+ import axios from 'axios';
5
5
  import DistanceDemo from './DistanceDemo';
6
6
 
7
7
  it('render distance demo', () => {
@@ -38,3 +38,23 @@ it('test alternative route checkbox', () => {
38
38
  fireEvent.click(checkbox);
39
39
  expect(screen.getByText('alternatives=true"')).toBeVisible();
40
40
  });
41
+ it('catches 200 with error', async () => {
42
+ const backup = axios.create;
43
+ axios.create = () => ({
44
+ ...backup(),
45
+ get: () =>
46
+ Promise.resolve({
47
+ data: { status: 'ERROR', error_message: 'Some handled error message' },
48
+ status: 200,
49
+ }),
50
+ });
51
+ const rejectSpy = jest.spyOn(Promise, 'reject');
52
+ const ref = React.createRef();
53
+ render(<DistanceDemo ref={ref} />);
54
+
55
+ await waitFor(() => {
56
+ expect(rejectSpy).toHaveBeenCalled();
57
+ });
58
+ axios.create = backup;
59
+ rejectSpy.mockRestore();
60
+ });
@@ -9,28 +9,41 @@ import { ReactComponent as Cars } from '../../icons/cars.svg';
9
9
  import { ReactComponent as CheckBig } from '../../icons/check-big.svg';
10
10
  import { ReactComponent as CallToAction } from '../../icons/call-to-action.svg';
11
11
  import { ReactComponent as CubeBig } from '../../icons/cube-big.svg';
12
+ import { ReactComponent as CustomersServices } from '../../icons/customers-services.svg';
13
+ import { ReactComponent as Customize } from '../../icons/customize.svg';
12
14
  import { ReactComponent as DeliveryTime } from '../../icons/delivery-time.svg';
13
15
  import { ReactComponent as Demo } from '../../icons/demo.svg';
14
- import { ReactComponent as DistanceMatrix } from '../../icons/distance-matrix.svg';
15
16
  import { ReactComponent as Elephant } from '../../icons/elephant.svg';
17
+ import { ReactComponent as Equalizer } from '../../icons/equalizer.svg';
16
18
  import { ReactComponent as Gdpr } from '../../icons/gdpr.svg';
17
- import { ReactComponent as Geofence } from '../../icons/geofence.svg';
18
19
  import { ReactComponent as Github } from '../../icons/github.svg';
19
20
  import { ReactComponent as Green } from '../../icons/green.svg';
20
21
  import { ReactComponent as Heart } from '../../icons/heart.svg';
21
22
  import { ReactComponent as HouseInsurance } from '../../icons/house-insurance.svg';
22
- import { ReactComponent as HouseMarker } from '../../icons/house-marker.svg';
23
23
  import { ReactComponent as IndoorOutdoor } from '../../icons/indoor-outdoor.svg';
24
24
  import { ReactComponent as Integrations } from '../../icons/integrations.svg';
25
25
  import { ReactComponent as Like } from '../../icons/like.svg';
26
26
  import { ReactComponent as Logistics } from '../../icons/logistics.svg';
27
+ import { ReactComponent as Lotus } from '../../icons/lotus.svg';
28
+ import { ReactComponent as Map3d } from '../../icons/map-3d.svg';
27
29
  import { ReactComponent as MapHd } from '../../icons/map-hd.svg';
28
- import { ReactComponent as MapAccuracy } from '../../icons/map-accuracy.svg';
30
+ import { ReactComponent as MapIndoor } from '../../icons/map-indoor.svg';
29
31
  import { ReactComponent as MapLocation } from '../../icons/map-location.svg';
30
32
  import { ReactComponent as MapMarkers } from '../../icons/map-markers.svg';
31
33
  import { ReactComponent as Markers } from '../../icons/markers.svg';
32
34
  import { ReactComponent as MarkerArrow } from '../../icons/marker-arrow.svg';
35
+ import { ReactComponent as MarkerApp } from '../../icons/marker-app.svg';
36
+ import { ReactComponent as MarkerCreditCard } from '../../icons/marker-credit-card.svg';
37
+ import { ReactComponent as MarkerCity } from '../../icons/marker-city.svg';
38
+ import { ReactComponent as MarkerGeofence } from '../../icons/marker-geofence.svg';
39
+ import { ReactComponent as MarkerHouse } from '../../icons/marker-house.svg';
33
40
  import { ReactComponent as MarkerInfinite } from '../../icons/markers-infinite.svg';
41
+ import { ReactComponent as MarkerMap } from '../../icons/marker-map.svg';
42
+ import { ReactComponent as MarkerMatrix } from '../../icons/marker-matrix.svg';
43
+ import { ReactComponent as MarkerPlay } from '../../icons/marker-play.svg';
44
+ import { ReactComponent as MarkerRoad } from '../../icons/marker-road.svg';
45
+ import { ReactComponent as MarkerSearch } from '../../icons/marker-search.svg';
46
+ import { ReactComponent as MarkerShop } from '../../icons/marker-shop.svg';
34
47
  import { ReactComponent as MobileRocket } from '../../icons/mobile-rocket.svg';
35
48
  import { ReactComponent as Notification } from '../../icons/notification.svg';
36
49
  import { ReactComponent as NotificationPosition } from '../../icons/notification-position.svg';
@@ -41,6 +54,7 @@ import { ReactComponent as Position } from '../../icons/position.svg';
41
54
  import { ReactComponent as PuzzleStar } from '../../icons/puzzle-star.svg';
42
55
  import { ReactComponent as Quote } from '../../icons/quote.svg';
43
56
  import { ReactComponent as Refresh } from '../../icons/refresh.svg';
57
+ import { ReactComponent as Responsive } from '../../icons/responsive.svg';
44
58
  import { ReactComponent as SaveTime } from '../../icons/save-time.svg';
45
59
  import { ReactComponent as SaveMoney } from '../../icons/save-money.svg';
46
60
  import { ReactComponent as SecuritPositionZone } from '../../icons/security-position-zone.svg';
@@ -56,6 +70,7 @@ import { ReactComponent as SupportTime } from '../../icons/support-time.svg';
56
70
  import { ReactComponent as Synchronization } from '../../icons/synchronization.svg';
57
71
  import { ReactComponent as Tools } from '../../icons/tools.svg';
58
72
  import { ReactComponent as TshirtMarker } from '../../icons/tshirt-marker.svg';
73
+ import { ReactComponent as Wheelchair } from '../../icons/wheelchair.svg';
59
74
  import { ReactComponent as World } from '../../icons/world.svg';
60
75
  import { ReactComponent as WorldLocation } from '../../icons/world-location.svg';
61
76
  import { ReactComponent as WorldTime } from '../../icons/world-time.svg';
@@ -200,28 +215,41 @@ const WebsiteIcons = {
200
215
  'call-to-action': CallToAction,
201
216
  'check-big': CheckBig,
202
217
  'cube-big': CubeBig,
218
+ 'customers-services': CustomersServices,
219
+ customize: Customize,
203
220
  'delivery-time': DeliveryTime,
204
221
  demo: Demo,
205
- 'distance-matrix': DistanceMatrix,
222
+ elephant: Elephant,
223
+ equalizer: Equalizer,
206
224
  gdpr: Gdpr,
207
- geofence: Geofence,
208
225
  heart: Heart,
209
- 'house-marker': HouseMarker,
210
- 'indoor-outdoor': IndoorOutdoor,
211
- logistics: Logistics,
212
- elephant: Elephant,
213
226
  github: Github,
214
227
  green: Green,
215
228
  'house-insurance': HouseInsurance,
229
+ 'indoor-outdoor': IndoorOutdoor,
216
230
  integrations: Integrations,
217
231
  like: Like,
232
+ lotus: Lotus,
233
+ logistics: Logistics,
234
+ 'map-3d': Map3d,
218
235
  'map-hd': MapHd,
219
- 'map-accuracy': MapAccuracy,
236
+ 'map-indoor': MapIndoor,
220
237
  'map-location': MapLocation,
221
238
  'map-markers': MapMarkers,
222
239
  markers: Markers,
223
240
  'marker-arrow': MarkerArrow,
241
+ 'marker-app': MarkerApp,
242
+ 'marker-credit-card': MarkerCreditCard,
243
+ 'marker-city': MarkerCity,
244
+ 'marker-geofence': MarkerGeofence,
224
245
  'markers-infinite': MarkerInfinite,
246
+ 'marker-house': MarkerHouse,
247
+ 'marker-map': MarkerMap,
248
+ 'marker-matrix': MarkerMatrix,
249
+ 'marker-play': MarkerPlay,
250
+ 'marker-road': MarkerRoad,
251
+ 'marker-search': MarkerSearch,
252
+ 'marker-shop': MarkerShop,
225
253
  'mobile-rocket': MobileRocket,
226
254
  notification: Notification,
227
255
  'notification-position': NotificationPosition,
@@ -232,6 +260,7 @@ const WebsiteIcons = {
232
260
  'puzzle-star': PuzzleStar,
233
261
  quote: Quote,
234
262
  refresh: Refresh,
263
+ responsive: Responsive,
235
264
  'save-money': SaveMoney,
236
265
  'save-time': SaveTime,
237
266
  schedule: Schedule,
@@ -247,6 +276,7 @@ const WebsiteIcons = {
247
276
  synchronization: Synchronization,
248
277
  tools: Tools,
249
278
  'tshirt-marker': TshirtMarker,
279
+ whellchair: Wheelchair,
250
280
  world: World,
251
281
  'world-location': WorldLocation,
252
282
  'world-time': WorldTime,
@@ -1 +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>
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M40.701 51.954h38.283c.942 0 1.811-.472 2.322-1.263s.587-1.776.201-2.638l-4.394-9.77a4.144 4.144 0 0 0-3.775-2.443H46.346a4.144 4.144 0 0 0-3.775 2.442l-4.393 9.771a2.755 2.755 0 0 0 .2 2.637 2.757 2.757 0 0 0 2.322 1.264Zm4.606-12.441a1.141 1.141 0 0 1 1.039-.672h26.992c.448 0 .855.264 1.039.673l4.245 9.44H41.063l4.244-9.441Zm3.827 17.841h-7.973c-2.402 0-4.356 1.954-4.356 4.355s1.954 4.356 4.356 4.356h7.973c2.402 0 4.356-1.954 4.356-4.356s-1.954-4.355-4.356-4.355Zm0 5.712h-7.973a1.356 1.356 0 0 1 0-2.711h7.973c.748 0 1.356.608 1.356 1.355s-.608 1.356-1.356 1.356Z"/><path d="m88.651 45.813-6.262-12.546a7.953 7.953 0 0 0-7.155-4.426H44.557a7.952 7.952 0 0 0-7.155 4.426L31.14 45.813a16.027 16.027 0 0 0-1.681 7.126v24.419c0 3.774 3.071 6.846 6.847 6.846s6.846-3.071 6.846-6.846l33.487-.008v.008c0 3.774 3.071 6.846 6.847 6.846s6.846-3.071 6.846-6.846V52.939c0-2.46-.581-4.924-1.681-7.126Zm-1.319 31.545c0 2.12-1.726 3.846-3.846 3.846s-3.847-1.726-3.847-3.846V75.85a1.5 1.5 0 0 0-1.5-1.5H41.652a1.5 1.5 0 0 0-1.5 1.5v1.508c0 2.12-1.726 3.846-3.846 3.846s-3.847-1.726-3.847-3.846V52.939c0-1.997.472-3.998 1.364-5.786l6.262-12.546a4.972 4.972 0 0 1 4.472-2.766h30.677c1.906 0 3.62 1.06 4.472 2.766l6.262 12.546a13.016 13.016 0 0 1 1.364 5.786v24.419Z"/><path d="M78.632 57.354h-7.974c-2.402 0-4.356 1.954-4.356 4.355s1.954 4.356 4.356 4.356h7.974c2.401 0 4.355-1.954 4.355-4.356s-1.954-4.355-4.355-4.355Zm0 5.712h-7.974a1.356 1.356 0 0 1 0-2.711h7.974a1.357 1.357 0 0 1 0 2.711Zm-53.277-1.762H21.86a1.5 1.5 0 0 0-1.5 1.5v1.508c0 2.121-1.726 3.847-3.847 3.847s-3.846-1.726-3.846-3.847V39.894c0-1.997.472-3.998 1.364-5.786l6.262-12.546a4.97 4.97 0 0 1 4.472-2.766h30.677a4.973 4.973 0 0 1 4.472 2.766l1.634 3.273a1.5 1.5 0 1 0 2.684-1.34l-1.634-3.273a7.954 7.954 0 0 0-7.155-4.426H24.766a7.952 7.952 0 0 0-7.155 4.426l-6.262 12.546a16.027 16.027 0 0 0-1.681 7.126v24.418c0 3.775 3.071 6.847 6.846 6.847s6.847-3.071 6.847-6.847l1.995-.008a1.5 1.5 0 0 0 0-3Z"/><path d="M30.85 36.598a1.5 1.5 0 0 0-1.5-1.5h-7.361l4.006-8.91c.164-.365.528-.601.928-.601h25.752a1.5 1.5 0 0 0 0-3H26.922a4.025 4.025 0 0 0-3.664 2.37l-4.191 9.322a2.699 2.699 0 0 0 .196 2.581 2.699 2.699 0 0 0 2.273 1.237h7.813a1.5 1.5 0 0 0 1.5-1.5Zm-5.495 7.709h-3.987c-2.401 0-4.355 1.954-4.355 4.356s1.954 4.355 4.355 4.355h2.73a1.5 1.5 0 0 0 0-3h-2.73a1.357 1.357 0 0 1 0-2.711h3.987a1.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="M50 37.486c3.248 0 6.546-1.2 8.401-3.057a1.501 1.501 0 0 0-2.122-2.121c-1.301 1.302-3.824 2.177-6.278 2.177s-4.978-.875-6.278-2.177a1.5 1.5 0 1 0-2.122 2.121c1.855 1.857 5.153 3.057 8.401 3.057Z" style="fill:#5586ff"/><path d="M64.111 37.855c2.279-2.987 3.649-6.702 3.649-10.741a17.64 17.64 0 0 0-1.154-6.252c.238-.244.45-.516.594-.839a2.894 2.894 0 0 0-.245-2.809l-.724-1.073 1.565-4.669a2.93 2.93 0 0 0-.343-2.577 2.929 2.929 0 0 0-2.248-1.306L50.104 6.523a1.486 1.486 0 0 0-.211 0L34.792 7.589a2.932 2.932 0 0 0-2.248 1.306 2.928 2.928 0 0 0-.343 2.576l1.565 4.67-.724 1.073a2.894 2.894 0 0 0-.245 2.809c.144.323.356.595.594.839a17.64 17.64 0 0 0-1.154 6.252c0 4.038 1.37 7.754 3.649 10.741-9.402 1.748-16.514 10.121-16.514 19.855v32.243a3.533 3.533 0 0 0 3.529 3.529h8.783a5.193 5.193 0 0 0 4.963-3.684H64.13a5.195 5.195 0 0 0 4.963 3.684h7.999a3.533 3.533 0 0 0 3.529-3.529V57.71c0-9.734-7.112-18.107-16.514-19.855ZM35.615 18.771l.609-.904h27.574l.634.898L50 20.804l-14.386-2.032Zm14.389-9.249 14.95.996-1.458 4.349H36.502l-1.453-4.289 14.955-1.056ZM36.212 21.885l13.579 1.918a1.473 1.473 0 0 0 .42 0l13.579-1.918c.636 1.672.971 3.428.971 5.23 0 8.139-6.621 14.76-14.76 14.76s-14.76-6.621-14.76-14.76c0-1.802.335-3.557.971-5.23Zm12.541 28.734c.12-.806.825-1.414 1.641-1.414s1.521.608 1.632 1.345l1.718 16.84a1.967 1.967 0 0 1-.39 1.489l-2.129 2.748a1.033 1.033 0 0 1-.832.408c-.192 0-.557-.053-.831-.408l-2.129-2.748c-.325-.42-.468-.963-.381-1.558l1.701-16.702Zm3.068-5.745-1.264 1.263a.234.234 0 0 1-.138.07l-.026-.002c-.009 0-.018.003-.028.003a.24.24 0 0 1-.138-.071l-1.263-1.263h2.856Zm25.805 45.079a.53.53 0 0 1-.529.529h-7.999a2.187 2.187 0 0 1-2.184-2.184V60.882a1.5 1.5 0 1 0-3 0v25.916H36.873V60.882a1.5 1.5 0 1 0-3 0v27.416c0 1.204-.98 2.184-2.185 2.184h-8.783a.53.53 0 0 1-.529-.529V57.71c0-8.843 6.892-16.366 15.688-17.126.112-.01.218-.033.321-.066a17.707 17.707 0 0 0 6.789 3.672 2.41 2.41 0 0 0 .695 1.831l1.409 1.409a4.744 4.744 0 0 0-1.502 2.815l-1.701 16.703a4.987 4.987 0 0 0 .985 3.769l2.129 2.748c.772.998 1.94 1.57 3.202 1.57s2.431-.572 3.203-1.57l2.129-2.748c.825-1.065 1.185-2.439.994-3.7l-1.718-16.84a4.64 4.64 0 0 0-1.489-2.751l1.404-1.404a2.405 2.405 0 0 0 .673-2.062 17.737 17.737 0 0 0 6.027-3.442c.103.032.209.056.321.066 8.797.761 15.688 8.284 15.688 17.126v32.243Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M79.38 12.194c-2.473-2.473-5.76-3.834-9.257-3.834s-6.783 1.362-9.256 3.834l-9.936 9.935-2.764-2.764a1.5 1.5 0 1 0-2.121 2.121l4.34 4.34-19.64 19.641a10.837 10.837 0 0 0-2.182 12.245l-3.706 3.708a1.5 1.5 0 0 0 0 2.121l3.305 3.305c.293.293.677.439 1.061.439s.768-.146 1.061-.439l3.758-3.757a10.874 10.874 0 0 0 12.064-2.261L61.05 45.885l4.698-4.698.515.515 3.824 3.825c.293.293.677.439 1.061.439s.768-.146 1.061-.439a1.5 1.5 0 0 0 0-2.121l-2.764-2.764 9.935-9.935c5.104-5.104 5.104-13.409 0-18.513ZM59.156 43.535l-.051.019-.083.029-.27.094-.158.053-.308.101-.227.071c-.109.034-.228.069-.348.105l-.282.082-.393.107-.323.086c-.144.037-.298.073-.45.109-.114.027-.223.054-.341.081-.215.048-.441.094-.669.138-.146.029-.296.055-.447.082-.202.036-.403.071-.612.103-.132.02-.269.035-.403.053-.179.024-.358.047-.541.067-.146.016-.295.027-.442.039-.178.015-.356.029-.535.039-.152.009-.306.013-.459.018a14.046 14.046 0 0 1-1.004 0 14.73 14.73 0 0 1-.555-.029c-.15-.01-.3-.021-.45-.036-.193-.02-.384-.047-.575-.075-.14-.021-.281-.039-.42-.065-.212-.039-.42-.09-.629-.142-.115-.028-.232-.051-.345-.084a9.337 9.337 0 0 1-.943-.32 11.55 11.55 0 0 0-1.286-.431c-.143-.039-.29-.066-.435-.1a13.66 13.66 0 0 0-.903-.193c-.173-.03-.348-.049-.523-.073a17.269 17.269 0 0 0-.85-.099 20.364 20.364 0 0 0-.551-.035c-.28-.015-.558-.027-.837-.03-.081 0-.162-.009-.243-.009-.126 0-.25.008-.375.01a21.494 21.494 0 0 0-1.228.053c-.186.013-.372.025-.556.041-.218.02-.431.044-.645.068-.179.021-.359.039-.535.063-.212.028-.416.06-.623.092-.169.026-.341.05-.506.078l-.044.007L52.51 27.945l2.671 2.671 8.447 8.447-4.47 4.469Zm8.167-5.015-7.135-7.135-6.62-6.62-.003-.002-.513-.513 9.936-9.935c1.906-1.906 4.44-2.956 7.135-2.956s5.229 1.05 7.136 2.956c1.905 1.906 2.955 4.44 2.955 7.135s-1.05 5.229-2.955 7.135l-9.935 9.935ZM22.755 72.006c-.996 1.471-5.969 8.982-5.969 12.423 0 3.977 3.234 7.212 7.211 7.212s7.212-3.235 7.212-7.212c0-3.44-4.974-10.952-5.971-12.423-.557-.822-1.925-.822-2.483 0Z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M51.508 83.383H15.775m68.45 0h-9.174m1.207-24.92H23.742c-5.22 0-9.467-4.247-9.467-9.468V19.856c0-5.22 4.247-9.467 9.467-9.467h52.516c5.22 0 9.467 4.247 9.467 9.467v29.139c0 5.221-4.247 9.468-9.467 9.468ZM23.742 13.389a6.475 6.475 0 0 0-6.467 6.467v29.139a6.475 6.475 0 0 0 6.467 6.468h52.516a6.475 6.475 0 0 0 6.467-6.468V19.856a6.474 6.474 0 0 0-6.467-6.467H23.742Z"/><path d="M40.979 46.139a4.756 4.756 0 0 1-2.575-.76 4.747 4.747 0 0 1-2.188-4.009V26.796c0-1.629.818-3.128 2.188-4.009a4.75 4.75 0 0 1 4.556-.328l15.98 7.287c1.721.785 2.789 2.446 2.789 4.336s-1.068 3.552-2.789 4.337l-15.98 7.287a4.77 4.77 0 0 1-1.98.432Zm-.002-21.113c-.33 0-.656.096-.95.285a1.737 1.737 0 0 0-.812 1.486v14.574c0 .613.296 1.154.812 1.486a1.739 1.739 0 0 0 1.688.122l15.98-7.287c.646-.295 1.033-.896 1.033-1.607s-.387-1.312-1.033-1.607l-15.98-7.287a1.773 1.773 0 0 0-.738-.163Zm43.248 46.492H48.492a1.5 1.5 0 1 1 0-3h35.732a1.5 1.5 0 1 1 0 3Zm-59.276 0h-9.174a1.5 1.5 0 1 1 0-3h9.174a1.5 1.5 0 1 1 0 3Zm11.772 4.729c-3.435 0-6.229-2.794-6.229-6.229s2.794-6.229 6.229-6.229 6.229 2.794 6.229 6.229-2.794 6.229-6.229 6.229Zm0-9.458c-1.78 0-3.229 1.449-3.229 3.229s1.448 3.229 3.229 3.229 3.229-1.448 3.229-3.229-1.448-3.229-3.229-3.229Zm14.787 18.094H15.775a1.5 1.5 0 1 1 0-3h35.733a1.5 1.5 0 1 1 0 3Zm32.717 0h-9.174a1.5 1.5 0 1 1 0-3h9.174a1.5 1.5 0 1 1 0 3Zm-20.946 4.728c-3.435 0-6.229-2.794-6.229-6.229s2.794-6.229 6.229-6.229 6.229 2.794 6.229 6.229-2.794 6.229-6.229 6.229Zm0-9.458c-1.78 0-3.229 1.449-3.229 3.229s1.448 3.229 3.229 3.229 3.229-1.448 3.229-3.229-1.448-3.229-3.229-3.229Z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 71.5 79.2"><path d="M22.5 65.8c-3.4 0-6.2-2.8-6.2-6.2s2.8-6.2 6.2-6.2 6.3 2.8 6.3 6.2-2.8 6.2-6.3 6.2Zm0-9.4c-1.8 0-3.2 1.4-3.2 3.2s1.4 3.2 3.2 3.2 3.3-1.4 3.3-3.2-1.5-3.2-3.3-3.2ZM49.1 79.2c-3.4 0-6.2-2.8-6.2-6.2s2.8-6.2 6.2-6.2 6.2 2.8 6.2 6.2-2.8 6.2-6.2 6.2Zm0-9.4c-1.8 0-3.2 1.4-3.2 3.2s1.4 3.2 3.2 3.2 3.2-1.4 3.2-3.2-1.4-3.2-3.2-3.2ZM70 61.1H34.3c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5H70c.8 0 1.5.7 1.5 1.5s-.6 1.5-1.5 1.5ZM10.7 61.1H1.5c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h9.2c.8 0 1.5.7 1.5 1.5s-.6 1.5-1.5 1.5ZM37.3 74.5H1.6C.8 74.5.1 73.8.1 73s.7-1.5 1.5-1.5h35.7c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5ZM70 74.5h-9.2c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5H70c.8 0 1.5.7 1.5 1.5s-.6 1.5-1.5 1.5ZM62.1 48.1H9.5c-5.2 0-9.5-4.2-9.5-9.5V9.5C0 4.3 4.2 0 9.5 0H62c5.2 0 9.5 4.2 9.5 9.5v29.1c0 5.2-4.2 9.5-9.4 9.5ZM9.5 3C5.9 3 3 5.9 3 9.5v29.1c0 3.6 2.9 6.5 6.5 6.5H62c3.6 0 6.5-2.9 6.5-6.5V9.5C68.5 5.9 65.6 3 62 3H9.5Z"/><path d="M26.8 35.7c-.9 0-1.8-.3-2.6-.8-1.4-.9-2.2-2.4-2.2-4V16.4c0-1.6.8-3.1 2.2-4s3.1-1 4.6-.3l16 7.3c1.7.8 2.8 2.4 2.8 4.3s-1.1 3.6-2.8 4.3l-16 7.3c-.7.3-1.3.4-2 .4Zm0-21.1c-.3 0-.7.1-1 .3-.5.3-.8.9-.8 1.5V31c0 .6.3 1.2.8 1.5s1.1.4 1.7.1l16-7.3c.6-.3 1-.9 1-1.6s-.4-1.3-1-1.6l-16-7.3c-.2-.1-.5-.2-.7-.2Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M84.225 48.5h-9.174c-.186 0-.361.038-.525.1-.693-5.594-5.467-9.942-11.246-9.942S52.728 43.005 52.034 48.6c-.164-.062-.34-.1-.526-.1H15.775a1.5 1.5 0 1 0 0 3h35.733c.186 0 .362-.038.526-.1.693 5.594 5.467 9.942 11.246 9.942s10.553-4.347 11.246-9.942c.164.062.34.1.525.1h9.174a1.5 1.5 0 1 0 0-3Zm-20.946 9.842c-4.6 0-8.341-3.742-8.341-8.342s3.742-8.342 8.341-8.342S71.621 45.4 71.621 50s-3.742 8.342-8.342 8.342ZM15.775 24.501h9.174c.186 0 .361-.038.525-.1.693 5.594 5.467 9.942 11.246 9.942s10.552-4.347 11.246-9.942c.164.062.34.1.526.1h35.733a1.5 1.5 0 1 0 0-3H48.492c-.186 0-.362.038-.526.1-.693-5.594-5.467-9.942-11.246-9.942s-10.553 4.347-11.246 9.942a1.48 1.48 0 0 0-.525-.1h-9.174a1.5 1.5 0 1 0 0 3Zm20.946-9.842c4.6 0 8.341 3.742 8.341 8.342s-3.742 8.342-8.341 8.342-8.342-3.742-8.342-8.342 3.742-8.342 8.342-8.342Zm47.504 60.84H48.492c-.186 0-.362.038-.526.1-.693-5.594-5.467-9.942-11.246-9.942s-10.553 4.347-11.246 9.942a1.48 1.48 0 0 0-.525-.1h-9.174a1.5 1.5 0 1 0 0 3h9.174c.186 0 .361-.038.525-.1.693 5.594 5.467 9.942 11.246 9.942s10.552-4.347 11.246-9.942c.164.062.34.1.526.1h35.733a1.5 1.5 0 1 0 0-3Zm-47.504 9.842c-4.6 0-8.342-3.742-8.342-8.342s3.742-8.342 8.342-8.342 8.341 3.742 8.341 8.342-3.742 8.342-8.341 8.342Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M91.572 36.498H88.77a12.45 12.45 0 0 0-9.491 4.355V28.126a1.5 1.5 0 0 0-1.5-1.5c-6.272 0-11.742 3.482-14.594 8.61-2.938-12.867-12.092-17.278-12.553-17.493a1.5 1.5 0 0 0-1.281.009c-.46.221-9.574 4.766-12.522 17.504-2.848-5.14-8.325-8.631-14.606-8.631a1.5 1.5 0 0 0-1.5 1.5v12.727a12.447 12.447 0 0 0-9.491-4.354H8.43a1.5 1.5 0 0 0-1.5 1.5v3.391c0 14.035 10.297 25.706 23.733 27.864-2.269 1.971-3.712 4.869-3.712 8.103v3.54a1.499 1.499 0 0 0 1.5 1.498c.4 0 .794-.161 1.083-.46.043-.044 4.353-4.432 11.225-4.432 4.889 0 7.722-2.2 9.243-4.629 1.521 2.429 4.354 4.629 9.243 4.629 6.872 0 11.182 4.387 11.222 4.428a1.502 1.502 0 0 0 1.644.359 1.5 1.5 0 0 0 .943-1.393v-3.54c0-3.234-1.443-6.132-3.712-8.103 13.435-2.159 23.733-13.83 23.733-27.864v-3.391a1.5 1.5 0 0 0-1.5-1.5Zm-27.485 6.819c0-7.042 5.345-12.86 12.191-13.61v14.428c0 12.06-9.548 21.93-21.481 22.454 3.615-3.191 8.375-9.331 9.169-19.886.077-.181.12-.379.12-.589v-2.798ZM50.01 20.811c2.479 1.45 11.077 7.577 11.077 22.798s-8.603 21.353-11.076 22.798c-2.479-1.486-11.098-7.737-11.098-22.798s8.624-21.316 11.097-22.798Zm-26.288 8.896c6.846.75 12.191 6.567 12.191 13.61v2.798c0 .211.044.411.123.593.807 10.499 5.613 16.673 9.228 19.883-11.962-.494-21.542-10.375-21.542-22.456V29.707ZM9.929 41.389v-1.891h1.302a9.453 9.453 0 0 1 9.055 6.638c.105.335.321.601.591.784.93 8.517 6.073 15.785 13.296 19.67-13.456-.518-24.245-11.621-24.245-25.201Zm30.829 33.113c-4.817 0-8.526 1.775-10.808 3.283v-.429c0-4.269 3.473-7.742 7.742-7.742H48.22c-.572 1.848-2.294 4.887-7.461 4.887Zm29.294 2.854v.429c-2.282-1.508-5.991-3.283-10.808-3.283-5.114 0-6.857-3.039-7.446-4.887h10.513c4.269 0 7.742 3.473 7.742 7.742Zm20.021-35.968c0 13.581-10.789 24.683-24.245 25.201 7.231-3.889 12.378-11.168 13.3-19.697.272-.182.49-.449.596-.785a9.457 9.457 0 0 1 9.046-6.61h1.302v1.891Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="m89.157 27.317-25.72-10.735c-.012-.005-.026-.006-.038-.011-.062-.024-.126-.038-.19-.053-.056-.014-.111-.03-.167-.037-.061-.008-.121-.005-.183-.005s-.122-.003-.183.005c-.056.007-.11.024-.166.037-.065.016-.13.03-.192.054-.012.005-.025.005-.037.01L37.14 27.076 11.999 16.582a1.501 1.501 0 0 0-2.078 1.384v53.333c0 .605.363 1.151.922 1.384l25.72 10.735c.032.013.065.019.097.03a1.507 1.507 0 0 0 .481.087 1.507 1.507 0 0 0 .481-.087c.032-.011.066-.016.097-.03L62.86 72.924l25.142 10.494a1.499 1.499 0 0 0 2.078-1.384V28.701c0-.605-.363-1.151-.922-1.384ZM61.359 57.001l-9.479-3.364 9.479-5.622v8.986Zm3-10.246 22.72-2.013v10.641l-22.72 2.097V46.755Zm22.72-5.025-22.72 2.013V20.218l22.72 9.482v12.03Zm-25.72 2.798L48.2 52.332l-9.56-3.392V29.7l22.719-9.482v24.311ZM35.64 29.7v18.965l-22.72 2.657V20.218L35.64 29.7ZM12.921 54.343l22.72-2.657v28.097l-22.72-9.482V54.344Zm25.72-2.219 22.719 8.062V70.3l-22.719 9.482V52.124ZM64.36 70.3v-9.805l22.72-2.097v21.385l-22.72-9.482Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M78.319 12.245H21.681c-5.203 0-9.436 4.232-9.436 9.436V78.32c0 5.203 4.232 9.436 9.436 9.436H78.32c5.203 0 9.436-4.232 9.436-9.436V21.681c0-5.203-4.232-9.436-9.436-9.436Zm-1.711 30.274v8.632H60.764v-8.632h15.844Zm3 0h5.146v8.632h-5.146v-8.632Zm5.146-20.839v17.839h-12.6V23.008a1.5 1.5 0 0 0-3 0V39.52h-9.891a1.5 1.5 0 0 0-1.5 1.5v11.632a1.5 1.5 0 0 0 1.5 1.5h25.49v9.57h-25.49a1.5 1.5 0 0 0-1.5 1.5v19.533H42.417V57.972a1.5 1.5 0 0 0-1.5-1.5H15.245V41.826h19.864a1.5 1.5 0 0 0 1.5-1.5V15.245H48.5v11.79a1.5 1.5 0 0 0 1.5 1.5h8.498a1.5 1.5 0 0 0 1.5-1.5v-11.79h18.321a6.443 6.443 0 0 1 6.436 6.436Zm-23.99 55.558h8.391v7.517h-8.391v-7.517Zm8.391-3h-8.391v-7.517h8.391v7.517ZM28.432 59.471h10.986v12.533H28.432V59.471ZM15.245 30.062h18.364v8.763H15.245v-8.763Zm41.753-14.775v10.248H51.5V15.287h5.498Zm-35.317-.042H33.61v11.817H15.245V21.68a6.443 6.443 0 0 1 6.436-6.436Zm-6.436 63.074V59.471h10.188v14.033a1.5 1.5 0 0 0 1.5 1.5h12.486v9.75H21.681a6.443 6.443 0 0 1-6.436-6.436Zm63.074 6.436h-6.164V66.722h12.6V78.32a6.443 6.443 0 0 1-6.436 6.436Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M78.319 12.245H21.681c-5.203 0-9.436 4.232-9.436 9.436V78.32c0 5.203 4.233 9.436 9.436 9.436h56.638c5.203 0 9.436-4.232 9.436-9.436V21.681c0-5.203-4.233-9.436-9.436-9.436ZM15.245 35.309h25.961v8.238H15.245v-8.238Zm6.436-20.063h19.525v17.063H15.245V21.681a6.443 6.443 0 0 1 6.436-6.436ZM15.245 78.32V46.548h25.961v38.208H21.681a6.443 6.443 0 0 1-6.436-6.436Zm69.51 0a6.443 6.443 0 0 1-6.436 6.436H44.206V15.245h34.113a6.443 6.443 0 0 1 6.436 6.436V78.32Z"/><path d="M63.189 32.309c-6.651 0-12.063 5.412-12.063 12.063 0 4.428 2.815 7.749 5.298 10.679 2.198 2.593 4.274 5.042 4.274 7.895 0 1.349 1.071 2.365 2.491 2.365s2.491-1.017 2.491-2.365c0-2.853 2.076-5.302 4.274-7.895 2.483-2.93 5.298-6.251 5.298-10.679 0-6.651-5.412-12.063-12.063-12.063Zm4.477 20.803c-1.785 2.105-3.614 4.264-4.477 6.808-.862-2.544-2.691-4.702-4.477-6.808-2.358-2.783-4.586-5.412-4.586-8.739 0-4.998 4.065-9.063 9.063-9.063s9.063 4.065 9.063 9.063c0 3.327-2.228 5.956-4.586 8.739Z"/><path d="M63.189 38.825c-3.166 0-5.742 2.576-5.742 5.742s2.576 5.742 5.742 5.742 5.742-2.576 5.742-5.742-2.576-5.742-5.742-5.742Zm0 8.484c-1.512 0-2.742-1.23-2.742-2.742s1.23-2.742 2.742-2.742 2.742 1.23 2.742 2.742-1.23 2.742-2.742 2.742Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M47.721 59.003h5.8a1.5 1.5 0 1 0 0-3h-5.8a1.5 1.5 0 1 0 0 3Zm0 7.267h5.8a1.5 1.5 0 1 0 0-3h-5.8a1.5 1.5 0 1 0 0 3Zm-21.417-2.863h5.8a1.5 1.5 0 1 0 0-3h-5.8a1.5 1.5 0 1 0 0 3Zm44.257 7.267h5.8a1.5 1.5 0 1 0 0-3h-5.8a1.5 1.5 0 1 0 0 3Zm0-7.635h5.8a1.5 1.5 0 1 0 0-3h-5.8a1.5 1.5 0 1 0 0 3Zm-44.257 7.635h5.8a1.5 1.5 0 1 0 0-3h-5.8a1.5 1.5 0 1 0 0 3Z"/><path d="M90.983 53.817c0-14.396-7.699-27.908-20.093-35.266a1.5 1.5 0 0 0-1.532 2.58c11.488 6.819 18.624 19.344 18.624 32.686a37.75 37.75 0 0 1-3.622 16.168l.319-18.318a1.5 1.5 0 0 0-1.875-1.478l-18.445 4.768v-4.57a1.5 1.5 0 0 0-1.014-1.419L38.87 40.576a1.498 1.498 0 0 0-1.986 1.419v9.699H20.025a1.5 1.5 0 0 0-1.5 1.5v21.863a37.768 37.768 0 0 1-6.508-21.24c0-13.417 7.196-25.977 18.78-32.777a1.501 1.501 0 0 0-1.519-2.588C16.78 25.79 9.017 39.342 9.017 53.817 9.017 76.416 27.402 94.8 50 94.8a40.732 40.732 0 0 0 19.383-4.884 1.49 1.49 0 0 0 .924-.523c12.339-7.071 20.677-20.364 20.677-35.576Zm-22.16 32.97c-5.793-1.866-12-3.269-18.488-4.143-8.378-1.13-16.782-1.31-24.299-.523a1.491 1.491 0 0 0-.866.402 38.29 38.29 0 0 1-1.318-1.196c8.412-2.583 18.862-4.013 29.632-4.013 8.52 0 16.828.885 24.13 2.544a38.234 38.234 0 0 1-8.79 6.929Zm12.823-33.201-.379 21.763a37.979 37.979 0 0 1-1.489 2.006 1.476 1.476 0 0 0-.426-.183c-4.744-1.142-9.93-1.951-15.33-2.411.208-.258.338-.581.338-.938v-15.77l17.287-4.468Zm-41.762-9.492 21.475 7.363v22.366c0 .279.081.537.214.761a125.54 125.54 0 0 0-8.09-.271c-4.628 0-9.2.267-13.599.761V44.093ZM21.526 78.028V54.694h15.358v20.72c0 .01.003.02.003.031-5.467.763-10.597 1.897-15.11 3.372a1.446 1.446 0 0 0-.244.108l-.181-.209a1.49 1.49 0 0 0 .174-.687Zm6.736 6.909c6.787-.551 14.23-.324 21.672.68a106.05 106.05 0 0 1 14.996 3.122A37.768 37.768 0 0 1 50 91.801a37.757 37.757 0 0 1-21.738-6.863Z"/><path d="M47.445 35.311c0 1.38 1.098 2.42 2.555 2.42s2.555-1.04 2.555-2.42c0-3.07 2.22-5.689 4.57-8.463 2.632-3.105 5.615-6.625 5.615-11.302 0-7.025-5.715-12.74-12.74-12.74s-12.74 5.715-12.74 12.74c0 4.677 2.983 8.196 5.615 11.302 2.35 2.773 4.57 5.393 4.57 8.463ZM50 5.806c5.371 0 9.74 4.369 9.74 9.74 0 3.576-2.382 6.387-4.903 9.362-1.959 2.311-3.968 4.682-4.837 7.497-.869-2.815-2.878-5.187-4.836-7.497-2.522-2.976-4.904-5.786-4.904-9.362 0-5.371 4.37-9.74 9.74-9.74Z"/><path d="M50 21.769c3.316 0 6.014-2.698 6.014-6.015S53.316 9.74 50 9.74s-6.014 2.697-6.014 6.014 2.698 6.015 6.014 6.015Zm0-9.028c1.662 0 3.014 1.352 3.014 3.014S51.662 18.77 50 18.77s-3.014-1.353-3.014-3.015 1.352-3.014 3.014-3.014Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50.014 37.854c-10.787 0-19.562 8.775-19.562 19.562 0 7.181 4.477 12.464 8.807 17.572 3.888 4.587 7.561 8.92 7.561 14.188 0 1.727 1.344 2.979 3.195 2.979 1.822 0 3.195-1.281 3.195-2.979 0-5.268 3.672-9.601 7.56-14.188 4.33-5.109 8.807-10.392 8.807-17.572 0-10.787-8.775-19.562-19.562-19.562Zm8.467 35.195c-4.056 4.785-8.25 9.733-8.271 16.078a.984.984 0 0 1-.39.003c-.021-6.346-4.215-11.295-8.272-16.082-4.163-4.911-8.096-9.551-8.096-15.632 0-9.133 7.43-16.562 16.562-16.562s16.562 7.43 16.562 16.562c0 6.081-3.932 10.721-8.095 15.633Z"/><path d="M50.014 48.998c-4.827 0-8.754 3.927-8.754 8.754s3.927 8.754 8.754 8.754 8.754-3.927 8.754-8.754-3.927-8.754-8.754-8.754Zm0 14.508c-3.173 0-5.754-2.581-5.754-5.754s2.581-5.754 5.754-5.754 5.754 2.581 5.754 5.754-2.581 5.754-5.754 5.754Zm-1.749-44.502H19.56a1.5 1.5 0 1 0 0 3h28.705a1.5 1.5 0 1 0 0-3Zm33.896 26.208a1.5 1.5 0 0 0-1.5-1.5h-9.458a1.5 1.5 0 1 0 0 3h9.458a1.5 1.5 0 0 0 1.5-1.5Z"/><path d="M82.015 11.713H18.013c-4.42 0-8.016 3.596-8.016 8.016V58.49c0 4.42 3.596 8.016 8.016 8.016h6.494a1.5 1.5 0 1 0 0-3h-6.494a5.021 5.021 0 0 1-5.016-5.016V40.388h22.035c4.004-3.527 9.24-5.686 14.983-5.686s10.978 2.159 14.982 5.686h22.034V58.49a5.021 5.021 0 0 1-5.016 5.016h-7.537a1.5 1.5 0 1 0 0 3h7.537c4.42 0 8.016-3.596 8.016-8.016V19.729c0-4.42-3.596-8.016-8.016-8.016ZM12.998 28.116v-8.387a5.021 5.021 0 0 1 5.016-5.016h64.001a5.021 5.021 0 0 1 5.016 5.016v8.387H12.998Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M46.568 52.759c0 1.622 1.307 2.844 3.04 2.844s3.041-1.223 3.041-2.844c0-4.737 3.321-8.655 6.838-12.804 3.95-4.661 8.035-9.481 8.035-16.057 0-9.877-8.036-17.914-17.914-17.914s-17.913 8.037-17.913 17.914c0 6.576 4.085 11.396 8.036 16.057 3.517 4.149 6.838 8.067 6.838 12.804Zm3.081 0Zm-.041-43.775c8.223 0 14.914 6.69 14.914 14.914 0 5.476-3.558 9.673-7.324 14.117-3.678 4.34-7.48 8.826-7.548 14.587a.575.575 0 0 1-.083 0c-.068-5.761-3.87-10.247-7.548-14.587-3.767-4.444-7.324-8.641-7.324-14.117 0-8.223 6.69-14.914 14.914-14.914Z"/><path d="M49.608 32.294c4.462 0 8.092-3.63 8.092-8.092s-3.63-8.092-8.092-8.092-8.092 3.63-8.092 8.092 3.63 8.092 8.092 8.092Zm0-13.184c2.808 0 5.092 2.284 5.092 5.092s-2.284 5.092-5.092 5.092-5.092-2.284-5.092-5.092 2.284-5.092 5.092-5.092ZM73.116 34.5a1.499 1.499 0 1 0-2.44 1.744c3.162 4.424 4.833 9.62 4.833 15.026 0 14.282-11.619 25.9-25.9 25.9a25.97 25.97 0 0 1-6.915-.933 1.406 1.406 0 0 0-.229-.039c-.009-9.791-7.964-17.756-17.751-17.783a25.962 25.962 0 0 1-1.006-7.145c0-5.407 1.671-10.603 4.833-15.026a1.499 1.499 0 1 0-2.44-1.744c-3.528 4.935-5.393 10.734-5.393 16.771 0 2.516.341 5.002.979 7.412-8.4 1.424-14.824 8.733-14.824 17.532 0 9.815 7.986 17.801 17.801 17.801 8.795 0 16.102-6.419 17.53-14.814 2.409.638 4.9.969 7.414.969 15.936 0 28.9-12.965 28.9-28.9 0-6.036-1.865-11.834-5.393-16.771ZM24.665 91.015c-8.162 0-14.801-6.64-14.801-14.801 0-7.462 5.556-13.635 12.745-14.641a1.495 1.495 0 0 0 1.907.821c.443-.168.753-.525.888-.943 7.817.389 14.062 6.852 14.062 14.764 0 8.162-6.64 14.801-14.801 14.801Z"/><path d="M27.457 64.699a1.5 1.5 0 1 0-2.564 1.558c.362.596.752 1.188 1.16 1.761a1.497 1.497 0 0 0 2.092.352 1.5 1.5 0 0 0 .353-2.092 26.514 26.514 0 0 1-1.04-1.579Zm4.115 5.159a1.5 1.5 0 1 0-2.089 2.153c.502.487 1.028.962 1.565 1.412a1.498 1.498 0 0 0 2.113-.185 1.5 1.5 0 0 0-.186-2.113 25.92 25.92 0 0 1-1.404-1.267Zm3.236 4.524a1.499 1.499 0 0 0 .565 2.044c.613.348 1.243.675 1.873.973a1.5 1.5 0 1 0 1.282-2.711 25.865 25.865 0 0 1-1.675-.87 1.498 1.498 0 0 0-2.044.565Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M84.419 35.184 57.507 10.159c-4.209-3.914-10.804-3.914-15.014 0L15.581 35.184a12.621 12.621 0 0 0-4.013 9.212v25.429c0 6.171 4.396 11.506 10.454 12.685 1.407.274 2.818.52 4.23.752a1.5 1.5 0 0 0 .488-2.96 146.116 146.116 0 0 1-4.145-.736 9.94 9.94 0 0 1-8.027-9.741V44.396a9.61 9.61 0 0 1 3.056-7.015l26.912-25.025c3.063-2.85 7.864-2.85 10.928 0l26.912 25.025a9.61 9.61 0 0 1 3.056 7.015v25.429a9.942 9.942 0 0 1-8.027 9.741c-1.378.268-2.76.509-4.145.736a1.5 1.5 0 1 0 .488 2.96c1.413-.232 2.823-.478 4.23-.752 6.058-1.179 10.454-6.514 10.454-12.685V44.396a12.62 12.62 0 0 0-4.013-9.212Z"/><path d="M50 38.597c-10.766 0-19.525 8.759-19.525 19.525 0 7.167 4.468 12.439 8.79 17.538 3.879 4.577 7.544 8.901 7.544 14.156 0 1.725 1.342 2.976 3.191 2.976 1.82 0 3.192-1.279 3.192-2.976 0-5.255 3.664-9.579 7.544-14.156 4.321-5.099 8.789-10.371 8.789-17.538 0-10.766-8.759-19.525-19.525-19.525Zm8.447 35.123c-4.047 4.776-8.232 9.713-8.255 16.044a.915.915 0 0 1-.383.003c-.021-6.333-4.207-11.271-8.255-16.047-4.154-4.901-8.078-9.531-8.078-15.598 0-9.112 7.413-16.525 16.525-16.525s16.525 7.413 16.525 16.525c0 6.067-3.924 10.697-8.078 15.598Z"/><path d="M50 49.717c-4.818 0-8.739 3.92-8.739 8.739s3.92 8.739 8.739 8.739 8.739-3.92 8.739-8.739-3.92-8.739-8.739-8.739Zm0 14.478c-3.165 0-5.739-2.574-5.739-5.739s2.574-5.739 5.739-5.739 5.739 2.574 5.739 5.739-2.574 5.739-5.739 5.739Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M46.821 58.83c0 1.627 1.312 2.854 3.052 2.854s3.052-1.228 3.052-2.854c0-4.775 3.347-8.725 6.891-12.905 3.979-4.694 8.092-9.548 8.092-16.168 0-9.944-8.09-18.034-18.034-18.034s-18.035 8.09-18.035 18.034c0 6.62 4.114 11.474 8.092 16.168 3.543 4.181 6.891 8.13 6.891 12.905Zm3.104 0Zm-.052-44.108c8.29 0 15.034 6.744 15.034 15.034 0 5.52-3.585 9.75-7.381 14.228-3.705 4.373-7.537 8.894-7.601 14.698a.92.92 0 0 1-.105 0c-.063-5.805-3.895-10.325-7.601-14.698-3.796-4.478-7.381-8.708-7.381-14.228 0-8.29 6.745-15.034 15.035-15.034Z"/><path d="M49.873 38.203c4.488 0 8.141-3.651 8.141-8.14s-3.652-8.141-8.141-8.141-8.141 3.652-8.141 8.141 3.652 8.14 8.141 8.14Zm0-13.28c2.835 0 5.141 2.306 5.141 5.141s-2.306 5.14-5.141 5.14-5.141-2.306-5.141-5.14 2.306-5.141 5.141-5.141Zm42.265 53.635L77.55 49.482a1.502 1.502 0 0 0-1.925-.709l-8.041 3.396h-5.157a1.5 1.5 0 0 0 0 3h4.249l1.28 5.948-24.799 6.681-12.61-2.071 2.499-10.558h4.81a1.5 1.5 0 1 0 0-3h-5.998c-.022 0-.044.007-.066.008-.08.004-.159.011-.237.028-.038.008-.075.02-.113.031a1.61 1.61 0 0 0-.191.069c-.021.009-.044.013-.064.023L23.12 56.36c-.29.145-.524.38-.67.669L7.862 86.105a1.5 1.5 0 0 0 1.713 2.126l15.592-3.986h48.98c.104 0 .208-.011.31-.032h.006l.002-.002 16.642-3.512a1.5 1.5 0 0 0 1.031-2.14Zm-20.62-15.154 8.883-1.55 1.8 3.588-9.073 5.439-1.609-7.477Zm7.478-4.35-8.109 1.415-1.27-5.901 5.882-2.484 3.498 6.971Zm-10.407 4.999 1.768 8.213-20.036-3.291 18.268-4.922Zm2.185 11.322c.084.013.167-.003.251-.004l1.264 5.873H26.874l2.98-12.591 40.919 6.722ZM24.908 58.819l4.753-2.376-2.258 9.541-8.7 5.202 6.205-12.367Zm-8.71 17.36 10.241-6.124-2.712 11.46-11.707 2.993 4.179-8.329Zm59.1 4.788-1.505-6.99 9.755-5.848 5.034 10.034-13.285 2.804Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M36.133 43.576c0 5.189 3.187 8.949 6.269 12.585 2.665 3.145 5.183 6.115 5.183 9.635 0 1.445 1.154 2.535 2.686 2.535s2.687-1.09 2.687-2.535c0-3.52 2.518-6.49 5.183-9.635 3.081-3.636 6.268-7.396 6.268-12.585 0-7.795-6.342-14.137-14.137-14.137s-14.137 6.342-14.137 14.137Zm25.273 0c0 4.089-2.699 7.273-5.557 10.646-2.337 2.758-4.738 5.591-5.58 9.008-.841-3.417-3.242-6.25-5.579-9.008-2.858-3.372-5.558-6.557-5.558-10.646 0-6.141 4.996-11.137 11.137-11.137s11.137 4.996 11.137 11.137Z"/><path d="M43.694 43.811c0 3.626 2.949 6.575 6.575 6.575s6.575-2.949 6.575-6.575-2.949-6.575-6.575-6.575-6.575 2.949-6.575 6.575Zm10.15 0c0 1.972-1.604 3.575-3.575 3.575s-3.575-1.604-3.575-3.575 1.604-3.575 3.575-3.575 3.575 1.604 3.575 3.575Zm-38.019-30.94a2.984 2.984 0 1 0 0 5.968 2.984 2.984 0 0 0 0-5.968Z"/><path d="M15.825 7.192c-4.776 0-8.662 3.886-8.662 8.662s3.886 8.662 8.662 8.662 8.662-3.886 8.662-8.662-3.886-8.662-8.662-8.662Zm0 14.324c-3.122 0-5.662-2.54-5.662-5.662s2.54-5.662 5.662-5.662 5.662 2.54 5.662 5.662-2.54 5.662-5.662 5.662Zm68.35-2.678a2.984 2.984 0 1 0 0-5.968 2.984 2.984 0 0 0 0 5.968Z"/><path d="M84.175 24.517c4.776 0 8.662-3.886 8.662-8.662s-3.886-8.662-8.662-8.662-8.662 3.886-8.662 8.662 3.886 8.662 8.662 8.662Zm0-14.324c3.122 0 5.662 2.54 5.662 5.662s-2.54 5.662-5.662 5.662-5.662-2.54-5.662-5.662 2.54-5.662 5.662-5.662Zm-68.35 70.969a2.984 2.984 0 1 0 0 5.968 2.984 2.984 0 0 0 0-5.968Z"/><path d="M15.825 75.483c-4.776 0-8.662 3.886-8.662 8.662s3.886 8.662 8.662 8.662 8.662-3.886 8.662-8.662-3.886-8.662-8.662-8.662Zm0 14.324c-3.122 0-5.662-2.54-5.662-5.662s2.54-5.662 5.662-5.662 5.662 2.54 5.662 5.662-2.54 5.662-5.662 5.662Zm68.35-8.645a2.984 2.984 0 1 0 0 5.968 2.984 2.984 0 0 0 0-5.968Z"/><path d="M84.175 75.483c-4.776 0-8.662 3.886-8.662 8.662s3.886 8.662 8.662 8.662 8.662-3.886 8.662-8.662-3.886-8.662-8.662-8.662Zm0 14.324c-3.122 0-5.662-2.54-5.662-5.662s2.54-5.662 5.662-5.662 5.662 2.54 5.662 5.662-2.54 5.662-5.662 5.662Zm-8.727-17.864L62.83 59.325a1.5 1.5 0 1 0-2.121 2.121l12.618 12.618c.293.293.677.439 1.061.439s.768-.146 1.061-.439a1.5 1.5 0 0 0 0-2.121ZM33.49 34.227c.293.293.677.439 1.061.439s.768-.146 1.061-.439a1.5 1.5 0 0 0 0-2.121l-8.399-8.399a1.5 1.5 0 1 0-2.121 2.121l8.399 8.399Zm31.455-.017c.293.293.677.439 1.061.439s.768-.146 1.061-.439l8.382-8.383a1.5 1.5 0 1 0-2.121-2.121l-8.382 8.383a1.5 1.5 0 0 0 0 2.121ZM39.763 59.393a1.5 1.5 0 0 0-2.121 0L25.091 71.944a1.5 1.5 0 1 0 2.122 2.121l12.551-12.551a1.5 1.5 0 0 0 0-2.121ZM29.059 17.354h41.038a1.5 1.5 0 0 0 0-3H29.059a1.5 1.5 0 0 0 0 3Zm-11.93 52.969V29.284a1.5 1.5 0 0 0-3 0v41.039a1.5 1.5 0 0 0 3 0Zm65.546-41.039v41.039a1.5 1.5 0 0 0 3 0V29.284a1.5 1.5 0 0 0-3 0ZM70.097 82.646H29.059a1.5 1.5 0 0 0 0 3h41.038a1.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="M50 10.243c-15.682 0-28.439 12.758-28.439 28.438 0 10.439 6.588 18.214 12.96 25.731C40.41 71.36 45.972 77.923 45.972 86.05c0 2.147 1.694 3.706 4.028 3.706s4.028-1.559 4.028-3.706c0-8.127 5.562-14.689 11.451-21.638 6.372-7.518 12.96-15.292 12.96-25.731 0-15.681-12.757-28.438-28.438-28.438Zm13.19 52.23c-5.979 7.055-12.162 14.35-12.162 23.577 0 .655-.787.706-1.028.706-.384 0-1.028-.092-1.028-.706 0-9.228-6.183-16.522-12.162-23.577-6.022-7.105-12.249-14.452-12.249-23.792 0-14.026 11.412-25.438 25.439-25.438s25.438 11.412 25.438 25.438c0 9.34-6.227 16.687-12.249 23.792Z"/><path d="M62.844 35.106 44.808 25.29a4.603 4.603 0 0 0-4.594.086 4.61 4.61 0 0 0-2.274 3.995l-.004 19.642c0 1.655.849 3.148 2.272 3.994a4.63 4.63 0 0 0 2.371.657c.761 0 1.522-.189 2.223-.571l18.043-9.825a4.645 4.645 0 0 0 2.424-4.081 4.582 4.582 0 0 0-2.425-4.08Zm-1.434 5.526-18.043 9.825a1.62 1.62 0 0 1-1.627-.03 1.619 1.619 0 0 1-.805-1.415l.004-19.642c0-.846.563-1.272.806-1.416a1.612 1.612 0 0 1 1.628-.03L61.41 37.74c.775.422.859 1.151.859 1.445 0 .612-.321 1.153-.859 1.446Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M93.31 86.702 67.257 66.454a1.5 1.5 0 0 0-1.841 2.369l26.053 20.248a1.5 1.5 0 1 0 1.842-2.369ZM32.744 66.711 6.691 86.96a1.5 1.5 0 0 0 1.841 2.369L34.585 69.08a1.5 1.5 0 0 0-1.841-2.369ZM50 69.122a1.5 1.5 0 0 0-1.5 1.5v17.522a1.5 1.5 0 1 0 3 0V70.622a1.5 1.5 0 0 0-1.5-1.5Zm0-58.767c-10.484 0-19.013 8.529-19.013 19.013 0 6.979 4.347 12.108 8.55 17.068 3.764 4.441 7.319 8.636 7.319 13.727 0 1.7 1.322 2.935 3.144 2.935 1.792 0 3.144-1.262 3.144-2.935 0-5.091 3.556-9.285 7.319-13.727 4.203-4.96 8.55-10.089 8.55-17.068 0-10.483-8.529-19.013-19.013-19.013Zm8.174 34.142c-3.931 4.638-7.995 9.433-8.03 15.584a.814.814 0 0 1-.287.002c-.035-6.152-4.1-10.948-8.031-15.587-4.031-4.756-7.839-9.248-7.839-15.128 0-8.829 7.184-16.013 16.013-16.013s16.013 7.184 16.013 16.013c0 5.88-3.808 10.372-7.839 15.129Z"/><path d="M50 21.16c-4.705 0-8.533 3.828-8.533 8.533s3.828 8.533 8.533 8.533 8.533-3.828 8.533-8.533S54.705 21.16 50 21.16Zm0 14.066c-3.051 0-5.533-2.482-5.533-5.533S46.949 24.16 50 24.16s5.533 2.482 5.533 5.533-2.482 5.533-5.533 5.533Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M63.147 63.348c-5.648 6.669-12.05 14.227-12.05 23.68 0 .71-.839.766-1.097.766-.409 0-1.096-.1-1.096-.766 0-9.463-6.346-16.949-12.482-24.189-6.19-7.304-12.59-14.855-12.59-24.463 0-14.429 11.739-26.168 26.169-26.168s26.168 11.739 26.168 26.168c0 3.98-1.083 7.893-3.312 11.959a1.5 1.5 0 1 0 2.631 1.441c2.477-4.52 3.681-8.902 3.681-13.4 0-16.083-13.084-29.168-29.168-29.168S20.832 22.293 20.832 38.376c0 10.708 6.762 18.687 13.302 26.402 6.053 7.142 11.771 13.888 11.771 22.25 0 2.182 1.723 3.766 4.096 3.766s4.097-1.584 4.097-3.766c0-8.354 5.765-15.159 11.339-21.74a1.5 1.5 0 1 0-2.289-1.939Z"/><path d="M62.365 49.268a16.078 16.078 0 0 0 3.793-10.38c0-8.909-7.249-16.157-16.158-16.157s-16.158 7.248-16.158 16.157S41.091 55.046 50 55.046c3.881 0 7.446-1.377 10.234-3.667l13.625 13.625c.293.293.677.439 1.061.439s.768-.146 1.061-.439a1.5 1.5 0 0 0 0-2.121L62.366 49.267ZM50 52.046c-7.255 0-13.158-5.902-13.158-13.158S42.744 25.731 50 25.731s13.158 5.902 13.158 13.157S57.256 52.046 50 52.046Z"/><path d="M50 31.005c-4.347 0-7.884 3.536-7.884 7.883s3.537 7.884 7.884 7.884 7.884-3.537 7.884-7.884-3.537-7.883-7.884-7.883Zm0 12.767c-2.693 0-4.884-2.19-4.884-4.884s2.191-4.883 4.884-4.883 4.884 2.19 4.884 4.883-2.191 4.884-4.884 4.884Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M76.681 9.775a350.055 350.055 0 0 0-44.367-.557c-.031-.006-.059-.018-.091-.022a1.49 1.49 0 0 0-.647.057c-2.757.145-5.51.312-8.257.523-7.223.554-12.88 6.663-12.88 13.906v42.197c0 6.218 4.179 11.738 10.163 13.424 1.932.545 3.995 1.051 6.492 1.592a1.498 1.498 0 0 0 1.783-1.149 1.499 1.499 0 0 0-1.148-1.783c-2.436-.528-4.442-1.02-6.313-1.547-4.697-1.324-7.977-5.657-7.977-10.537V24.837a10.997 10.997 0 0 0 8.125 3.578c3.744 0 7.053-1.88 9.046-4.742 1.75 3.777 5.567 6.409 9.997 6.409 4.063 0 7.61-2.215 9.521-5.496 1.911 3.28 5.459 5.496 9.521 5.496 4.429 0 8.246-2.632 9.996-6.409 1.993 2.862 5.302 4.742 9.046 4.742a10.95 10.95 0 0 0 7.871-3.321V65.88c0 4.881-3.28 9.213-7.978 10.537-1.877.529-3.883 1.021-6.312 1.546a1.5 1.5 0 1 0 .634 2.931c2.491-.538 4.554-1.044 6.492-1.591 5.984-1.686 10.164-7.206 10.164-13.424V23.684c0-7.244-5.658-13.354-12.881-13.908Zm-55.117 15.64a8.013 8.013 0 0 1-7.392-4.898 1.465 1.465 0 0 0-.159-.282c1.367-4.065 5.064-7.125 9.535-7.468 2.238-.172 4.481-.32 6.726-.448l-.89 6.413a1.5 1.5 0 0 0 .005.402c-.797 3.589-4 6.282-7.826 6.282Zm19.042 1.667c-4.423 0-8.021-3.598-8.021-8.021 0-.154-.03-.299-.073-.439.039-.351.059-.707.065-1.067l.747-5.383a346.812 346.812 0 0 1 15.303-.403v7.291c0 4.423-3.598 8.021-8.021 8.021Zm27.063-8.021c0 4.423-3.598 8.021-8.021 8.021s-8.021-3.598-8.021-8.021v-7.289c5.13.024 10.258.165 15.373.416l.692 4.984c-.011.073-.022.146-.022.222 0 .416.028.824.073 1.228-.043.14-.073.285-.073.439Zm11.021 6.354c-3.764 0-6.922-2.609-7.782-6.112.043-.178.057-.365.03-.557l-.889-6.408c2.137.124 4.271.265 6.401.429 4.616.355 8.416 3.6 9.67 7.862a1.504 1.504 0 0 0-.253.352 7.986 7.986 0 0 1-7.177 4.435Z"/><path d="M50.654 40.367c-10.123 0-18.357 8.235-18.357 18.357 0 6.738 4.19 11.683 8.243 16.464 3.617 4.267 7.033 8.297 7.033 13.177 0 1.643 1.325 2.881 3.082 2.881s3.082-1.238 3.082-2.881c0-4.88 3.416-8.91 7.032-13.177 4.052-4.781 8.243-9.726 8.243-16.464 0-10.122-8.235-18.357-18.356-18.357Zm.082 48.001v-.003h1.5l-1.5.003Zm7.744-15.119c-3.781 4.46-7.689 9.071-7.743 14.991a.608.608 0 0 1-.165 0c-.054-5.92-3.963-10.532-7.744-14.993-3.873-4.569-7.531-8.886-7.531-14.523 0-8.468 6.889-15.357 15.357-15.357s15.356 6.89 15.356 15.357c0 5.638-3.658 9.954-7.531 14.524Z"/><path d="M50.654 50.767c-4.56 0-8.27 3.71-8.27 8.271s3.71 8.27 8.27 8.27 8.27-3.71 8.27-8.27-3.71-8.271-8.27-8.271Zm0 13.54c-2.906 0-5.27-2.364-5.27-5.27s2.364-5.271 5.27-5.271 5.27 2.364 5.27 5.271-2.364 5.27-5.27 5.27Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M89.348 27.212 63.501 16.423c-.012-.005-.026-.006-.038-.011-.062-.024-.126-.038-.19-.053-.056-.013-.11-.03-.167-.037-.061-.008-.121-.005-.183-.005s-.122-.003-.183.005c-.057.007-.111.024-.167.037-.064.016-.128.029-.19.053-.013.005-.026.005-.038.011L37.077 26.97 11.808 16.424a1.498 1.498 0 0 0-2.077 1.385v53.595a1.5 1.5 0 0 0 .922 1.384l25.846 10.789c.032.013.066.019.099.03a1.514 1.514 0 0 0 .478.085 1.514 1.514 0 0 0 .478-.085c.033-.011.067-.017.099-.03L62.922 73.03l25.269 10.547a1.499 1.499 0 0 0 2.078-1.384V28.597c0-.605-.363-1.151-.922-1.384ZM12.73 20.06l22.846 9.537v50.344L12.73 70.404V20.06Zm25.846 9.537 22.846-9.537v50.344l-22.846 9.537V29.596Zm48.693 50.344-22.847-9.537V20.06l22.847 9.537v50.344Z"/><path d="M50.428 45.331a7.904 7.904 0 0 0-7.904 7.904c0 5.679 7.162 8.693 7.162 13.898 0 .425.349.647.742.647s.742-.23.742-.647c0-5.205 7.162-8.218 7.162-13.898a7.904 7.904 0 0 0-7.904-7.904Zm0 11.323a3.279 3.279 0 1 1 0-6.558 3.279 3.279 0 0 1 0 6.558ZM24.154 31.845a7.904 7.904 0 0 0-7.904 7.904c0 5.679 7.162 8.693 7.162 13.898 0 .425.349.647.742.647s.742-.23.742-.647c0-5.205 7.162-8.218 7.162-13.898a7.904 7.904 0 0 0-7.904-7.904Zm0 11.323a3.279 3.279 0 1 1 0-6.558 3.279 3.279 0 0 1 0 6.558ZM76.668 53.18c.392 0 .742-.23.742-.647 0-5.205 7.162-8.218 7.162-13.898a7.904 7.904 0 0 0-15.808 0c0 5.679 7.162 8.693 7.162 13.898 0 .425.349.647.742.647Zm-3.279-14.406a3.28 3.28 0 1 1 6.56 0 3.28 3.28 0 0 1-6.56 0Z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M75.253 7.773H24.747A12.992 12.992 0 0 0 11.77 20.751v50.506a12.992 12.992 0 0 0 12.977 12.978H35a1.5 1.5 0 0 0 0-3H24.747a9.988 9.988 0 0 1-9.977-9.978V20.751a9.988 9.988 0 0 1 9.977-9.978h50.506a9.988 9.988 0 0 1 9.977 9.978v50.506a9.988 9.988 0 0 1-9.977 9.978H65a1.5 1.5 0 0 0 0 3h10.253A12.992 12.992 0 0 0 88.23 71.257V20.751A12.992 12.992 0 0 0 75.253 7.773Z"/><path d="M50 44.5a17.265 17.265 0 0 0-17.246 17.25c0 6.331 3.927 10.963 7.724 15.443 3.365 3.972 6.544 7.723 6.544 12.244a2.984 2.984 0 0 0 5.956 0c0-4.521 3.179-8.272 6.544-12.244 3.8-4.48 7.724-9.112 7.724-15.443A17.265 17.265 0 0 0 50 44.5Zm7.234 30.749c-3.406 4.022-6.922 8.171-7.234 13.43-.312-5.259-3.828-9.408-7.234-13.426C39.16 71 35.754 66.98 35.754 61.75a14.246 14.246 0 1 1 28.492 0c0 5.23-3.406 9.25-7.012 13.503Z"/><path d="M50 54.218a7.824 7.824 0 1 0 7.823 7.824A7.833 7.833 0 0 0 50 54.218Zm0 12.647a4.824 4.824 0 1 1 4.823-4.823A4.829 4.829 0 0 1 50 66.865ZM31.981 41.574a4.133 4.133 0 0 0 4.133-4.133h-8.266a4.133 4.133 0 0 0 4.133 4.133Zm.328-21.786a6.777 6.777 0 0 0-7.1 6.769v5.286H23.74a1.487 1.487 0 0 0 0 2.974h16.481a1.487 1.487 0 1 0 0-2.974h-1.464v-5.095a6.9 6.9 0 0 0-6.448-6.96Zm16.582 8.253H75.05a2.7 2.7 0 0 0 0-5.393H48.891a2.7 2.7 0 1 0 0 5.393Zm0 10.053H65.05a2.7 2.7 0 0 0 0-5.393H48.891a2.7 2.7 0 1 0 0 5.393Z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M75.253 7.773H24.747c-7.156 0-12.978 5.822-12.978 12.978v50.506c0 7.156 5.821 12.978 12.978 12.978H35a1.5 1.5 0 1 0 0-3H24.747c-5.502 0-9.978-4.476-9.978-9.978V20.751c0-5.502 4.476-9.978 9.978-9.978h50.506c5.502 0 9.978 4.476 9.978 9.978v50.506c0 5.502-4.476 9.978-9.978 9.978H65a1.5 1.5 0 1 0 0 3h10.253c7.156 0 12.978-5.822 12.978-12.978V20.751c0-7.156-5.821-12.978-12.978-12.978Z"/><path d="M50 44.504c-9.51 0-17.246 7.736-17.246 17.246 0 6.331 3.927 10.963 7.724 15.443 3.365 3.971 6.545 7.722 6.545 12.244 0 1.591 1.28 2.79 2.978 2.79s2.978-1.199 2.978-2.79c0-4.521 3.18-8.272 6.545-12.244 3.797-4.48 7.724-9.113 7.724-15.443 0-9.51-7.736-17.246-17.246-17.246Zm7.234 30.75C53.828 79.272 50.312 83.421 50 88.68c-.313-5.259-3.828-9.408-7.234-13.426-3.605-4.254-7.012-8.273-7.012-13.503 0-7.855 6.391-14.246 14.246-14.246s14.246 6.391 14.246 14.246c0 5.23-3.406 9.249-7.012 13.503Z"/><path d="M50 54.218c-4.313 0-7.823 3.51-7.823 7.824s3.51 7.824 7.823 7.824 7.823-3.51 7.823-7.824-3.51-7.824-7.823-7.824Zm0 12.647c-2.659 0-4.823-2.164-4.823-4.824s2.164-4.824 4.823-4.824 4.823 2.164 4.823 4.824-2.164 4.824-4.823 4.824ZM31.981 39.196a4.133 4.133 0 0 0 4.133-4.133h-8.265a4.133 4.133 0 0 0 4.133 4.133ZM32.309 17.409a6.777 6.777 0 0 0-7.104 6.769v5.287h-1.464a1.487 1.487 0 0 0 0 2.974h16.481a1.487 1.487 0 0 0 0-2.974h-1.464V24.37c0-3.649-2.804-6.789-6.449-6.96ZM50 24.466h27.746a1.5 1.5 0 1 0 0-3H50a1.5 1.5 0 1 0 0 3ZM50 32.799h18.816a1.5 1.5 0 1 0 0-3H50a1.5 1.5 0 1 0 0 3Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M82.033 12.261H17.967a5.728 5.728 0 0 0-5.722 5.721v64.037a5.728 5.728 0 0 0 5.722 5.721h64.066a5.728 5.728 0 0 0 5.722-5.721V17.981a5.728 5.728 0 0 0-5.722-5.721Zm-30.53 3h30.53a2.725 2.725 0 0 1 2.722 2.721v30.507h-9.772a1.5 1.5 0 0 0-1.5 1.5c0 2.952-2.401 5.354-5.354 5.354s-5.354-2.401-5.354-5.354a1.5 1.5 0 0 0-1.5-1.5h-9.772v-8.384c3.893-.709 6.854-4.124 6.854-8.218s-2.961-7.51-6.854-8.219v-8.407Zm-33.536 0h30.53v9.772a1.5 1.5 0 0 0 1.5 1.5c2.952 0 5.354 2.401 5.354 5.354s-2.401 5.353-5.354 5.353a1.5 1.5 0 0 0-1.5 1.5v9.749H40.09c-.709-3.893-4.125-6.854-8.219-6.854s-7.51 2.961-8.219 6.854h-8.407V17.981c0-1.5 1.221-2.721 2.722-2.721Zm30.53 69.479h-30.53a2.725 2.725 0 0 1-2.722-2.721V51.512h9.772a1.5 1.5 0 0 0 1.5-1.5c0-2.952 2.401-5.354 5.354-5.354s5.354 2.401 5.354 5.354a1.5 1.5 0 0 0 1.5 1.5h9.772v8.384c-3.893.709-6.854 4.124-6.854 8.218s2.961 7.51 6.854 8.219v8.407Zm33.536 0h-30.53v-9.772a1.5 1.5 0 0 0-1.5-1.5c-2.952 0-5.354-2.401-5.354-5.354s2.401-5.353 5.354-5.353a1.5 1.5 0 0 0 1.5-1.5v-9.749h8.407c.709 3.893 4.125 6.854 8.219 6.854s7.51-2.961 8.219-6.854h8.407v30.507c0 1.5-1.221 2.721-2.722 2.721Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="45.115" cy="64.644" r="2.347"/><path d="M91.636 45.14h-6.454V22.062c0-3.979-3.237-7.215-7.216-7.215H12.265c-3.979 0-7.216 3.237-7.216 7.215v44.224c0 3.979 3.237 7.216 7.216 7.216H32.35v8.192H21.553a1.5 1.5 0 0 0 0 3h47.125a1.5 1.5 0 0 0 0-3H57.881v-8.192h14.531v8.338a3.318 3.318 0 0 0 3.314 3.315h15.909a3.319 3.319 0 0 0 3.315-3.315V48.455a3.319 3.319 0 0 0-3.315-3.315Zm.315 3.315v25.406H75.412V48.455c0-.174.141-.315.314-.315h15.909c.174 0 .315.141.315.315ZM12.265 17.846h65.701a4.22 4.22 0 0 1 4.216 4.215v23.078h-6.455a3.318 3.318 0 0 0-3.314 3.315v7.615H8.049V22.062a4.22 4.22 0 0 1 4.216-4.215Zm42.616 63.847H35.35v-8.192h19.531v8.192Zm1.5-11.192H12.265a4.222 4.222 0 0 1-4.216-4.216v-7.216h64.363v11.432H56.381Zm35.255 11.653H75.727a.315.315 0 0 1-.314-.315V76.86h16.539v4.979a.316.316 0 0 1-.315.315Z"/><path d="M83.682 78.315a1.164 1.164 0 1 0 0 2.328 1.164 1.164 0 0 0 0-2.328Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="m54.479 12.769 9.053 18.342a5 5 0 0 0 3.761 2.733l20.242 2.941a5 5 0 0 1 2.765 8.521L75.656 59.583a5 5 0 0 0-1.436 4.422l3.458 20.16a5 5 0 0 1-7.248 5.266l-18.106-9.518a4.988 4.988 0 0 0-4.648 0L29.57 89.431a5 5 0 0 1-7.248-5.266l3.458-20.16a5 5 0 0 0-1.436-4.422L9.7 45.306a5 5 0 0 1 2.769-8.521l20.242-2.941a5 5 0 0 0 3.761-2.733l9.053-18.342a4.994 4.994 0 0 1 8.954 0Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M61.609 76.232a1.5 1.5 0 0 0-2.034.603 21.778 21.778 0 0 1-19.15 11.399c-12.009 0-21.778-9.77-21.778-21.778a21.793 21.793 0 0 1 9.435-17.944 1.5 1.5 0 1 0-1.703-2.47 24.795 24.795 0 0 0-10.731 20.414c0 13.663 11.115 24.778 24.778 24.778a24.779 24.779 0 0 0 21.787-12.967 1.499 1.499 0 0 0-.603-2.034Z"/><path d="M84.27 75.571a1.5 1.5 0 0 0-1.91-.921l-8.036 2.806a1.229 1.229 0 0 1-1.52-.657l-8.76-19.674a5.108 5.108 0 0 0-4.664-3.029H40.304a2.114 2.114 0 0 1-2.1-1.948l-.658-8.783h19.552a1.5 1.5 0 1 0 0-3H37.321l-1.034-13.818a8.161 8.161 0 1 0-3.08-.951l2.005 26.775c.198 2.649 2.435 4.725 5.092 4.725H59.38c.831 0 1.586.49 1.924 1.25l8.76 19.675c.691 1.554 2.248 2.502 3.875 2.502a4.15 4.15 0 0 0 1.374-.233l8.035-2.806a1.5 1.5 0 0 0 .922-1.911Z"/></svg>
package/src/index.js CHANGED
@@ -46,6 +46,8 @@ export { default as withClickOutside } from './components/withClickOutside/withC
46
46
  export { default as withFormValidation } from './components/withFormValidation/withFormValidation';
47
47
  export { default as Marker } from './components/Map/Marker';
48
48
  export { default as LocalitiesDemo } from './components/Demo/LocalitiesDemo';
49
+ export { default as LocalitiesCheckoutUKDemo } from './components/Demo/LocalitiesUKAddressDemo';
50
+ export { default as LocalitiesCheckoutFRDemo } from './components/Demo/LocalitiesFRAddressDemo';
49
51
  export { default as LocalitiesAddressDemo } from './components/Demo/LocalitiesAddressDemo';
50
52
  export { default as LocalitiesAllDemo } from './components/Demo/LocalitiesAllDemo';
51
53
  export { default as MerchantDemo } from './components/Demo/MerchantDemo';