@rio-cloud/rio-uikit 0.16.2-beta.14 → 0.16.2-beta.16

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 (164) hide show
  1. package/.DS_Store +0 -0
  2. package/Map.d.ts +1 -0
  3. package/components/activity/Activity.js +6 -4
  4. package/components/animatedNumber/AnimatedNumber.js +6 -4
  5. package/components/applicationHeader/ApplicationHeader.js +6 -3
  6. package/components/applicationLayout/ApplicationLayout.js +8 -8
  7. package/components/applicationLayout/ApplicationLayoutBody.js +6 -3
  8. package/components/applicationLayout/ApplicationLayoutBodyBanner.js +4 -3
  9. package/components/applicationLayout/ApplicationLayoutBodyNavigation.js +6 -4
  10. package/components/applicationLayout/ApplicationLayoutHeader.js +9 -7
  11. package/components/assetTree/AssetTree.js +6 -3
  12. package/components/assetTree/TypeCounter.js +6 -4
  13. package/components/map/assets/icon_map_settings_bounding_box_active.svg +1 -1
  14. package/components/map/assets/icon_map_settings_bounding_box_inactive.svg +1 -1
  15. package/components/map/assets/icon_map_settings_construction_active.svg +1 -1
  16. package/components/map/assets/icon_map_settings_construction_inactive.svg +1 -1
  17. package/components/map/assets/icon_map_settings_layer_active.svg +1 -1
  18. package/components/map/assets/icon_map_settings_layer_inactive.svg +1 -1
  19. package/components/map/assets/icon_map_settings_maptype_flat_active.svg +1 -1
  20. package/components/map/assets/icon_map_settings_maptype_flat_inactive.svg +1 -1
  21. package/components/map/assets/icon_map_settings_maptype_flat_truck_active.svg +1 -1
  22. package/components/map/assets/icon_map_settings_maptype_flat_truck_inactive.svg +1 -1
  23. package/components/map/assets/icon_map_settings_maptype_night_active.svg +1 -12
  24. package/components/map/assets/icon_map_settings_maptype_night_inactive.svg +1 -12
  25. package/components/map/assets/icon_map_settings_maptype_satelite_active.svg +1 -1
  26. package/components/map/assets/icon_map_settings_maptype_satelite_inactive.svg +1 -1
  27. package/components/map/assets/icon_map_settings_maptype_terrain_active.svg +1 -1
  28. package/components/map/assets/icon_map_settings_maptype_terrain_inactive.svg +1 -1
  29. package/components/map/assets/icon_map_settings_road_restrictions_active.svg +1 -1
  30. package/components/map/assets/icon_map_settings_road_restrictions_inactive.svg +1 -1
  31. package/components/map/assets/icon_map_settings_system_pois_active.svg +1 -1
  32. package/components/map/assets/icon_map_settings_system_pois_inactive.svg +1 -1
  33. package/components/map/assets/icon_map_settings_workshop_pois_active.svg +1 -1
  34. package/components/map/assets/icon_map_settings_workshop_pois_inactive.svg +1 -1
  35. package/components/map/components/Map.js +3 -1
  36. package/components/map/components/features/Route.js +1 -9
  37. package/components/map/components/features/basics/Circle.js +9 -5
  38. package/components/map/components/features/basics/MapLayerGroup.js +6 -5
  39. package/components/map/components/features/basics/Polygon.js +4 -4
  40. package/components/map/components/features/basics/Polyline.js +5 -30
  41. package/components/map/components/features/basics/marker/DomMarker.js +9 -3
  42. package/components/map/components/features/basics/marker/Marker.js +6 -31
  43. package/components/map/components/features/layers/Layer.js +1 -1
  44. package/components/map/components/features/layers/MarkerLayer.js +0 -1
  45. package/components/map/components/features/layers/RoadRestrictionLayer.js +1 -2
  46. package/components/map/components/features/layers/TrafficLayer.js +2 -2
  47. package/components/map/components/features/layers/clustering/ClusterLayer.js +1 -1
  48. package/components/map/components/features/settings/builtinSettings/MapTypeSettings.js +16 -2
  49. package/components/map/icons/MapIcon.js +46 -66
  50. package/components/mapMarker/ClusterMapMarker.js +16 -20
  51. package/components/mapMarker/SingleMapMarker.js +17 -28
  52. package/lib/es/Map.d.ts +1 -0
  53. package/lib/es/components/activity/Activity.js +9 -4
  54. package/lib/es/components/animatedNumber/AnimatedNumber.js +5 -3
  55. package/lib/es/components/applicationHeader/ApplicationHeader.js +5 -2
  56. package/lib/es/components/applicationLayout/ApplicationLayout.js +11 -8
  57. package/lib/es/components/applicationLayout/ApplicationLayoutBody.js +5 -2
  58. package/lib/es/components/applicationLayout/ApplicationLayoutBodyBanner.js +7 -3
  59. package/lib/es/components/applicationLayout/ApplicationLayoutBodyNavigation.js +9 -4
  60. package/lib/es/components/applicationLayout/ApplicationLayoutHeader.js +12 -7
  61. package/lib/es/components/assetTree/AssetTree.js +5 -2
  62. package/lib/es/components/assetTree/TypeCounter.js +9 -4
  63. package/lib/es/components/map/assets/icon_map_settings_bounding_box_active.svg +1 -1
  64. package/lib/es/components/map/assets/icon_map_settings_bounding_box_inactive.svg +1 -1
  65. package/lib/es/components/map/assets/icon_map_settings_construction_active.svg +1 -1
  66. package/lib/es/components/map/assets/icon_map_settings_construction_inactive.svg +1 -1
  67. package/lib/es/components/map/assets/icon_map_settings_layer_active.svg +1 -1
  68. package/lib/es/components/map/assets/icon_map_settings_layer_inactive.svg +1 -1
  69. package/lib/es/components/map/assets/icon_map_settings_maptype_flat_active.svg +1 -1
  70. package/lib/es/components/map/assets/icon_map_settings_maptype_flat_inactive.svg +1 -1
  71. package/lib/es/components/map/assets/icon_map_settings_maptype_flat_truck_active.svg +1 -1
  72. package/lib/es/components/map/assets/icon_map_settings_maptype_flat_truck_inactive.svg +1 -1
  73. package/lib/es/components/map/assets/icon_map_settings_maptype_night_active.svg +1 -12
  74. package/lib/es/components/map/assets/icon_map_settings_maptype_night_inactive.svg +1 -12
  75. package/lib/es/components/map/assets/icon_map_settings_maptype_satelite_active.svg +1 -1
  76. package/lib/es/components/map/assets/icon_map_settings_maptype_satelite_inactive.svg +1 -1
  77. package/lib/es/components/map/assets/icon_map_settings_maptype_terrain_active.svg +1 -1
  78. package/lib/es/components/map/assets/icon_map_settings_maptype_terrain_inactive.svg +1 -1
  79. package/lib/es/components/map/assets/icon_map_settings_road_restrictions_active.svg +1 -1
  80. package/lib/es/components/map/assets/icon_map_settings_road_restrictions_inactive.svg +1 -1
  81. package/lib/es/components/map/assets/icon_map_settings_system_pois_active.svg +1 -1
  82. package/lib/es/components/map/assets/icon_map_settings_system_pois_inactive.svg +1 -1
  83. package/lib/es/components/map/assets/icon_map_settings_workshop_pois_active.svg +1 -1
  84. package/lib/es/components/map/assets/icon_map_settings_workshop_pois_inactive.svg +1 -1
  85. package/lib/es/components/map/components/Map.js +3 -1
  86. package/lib/es/components/map/components/features/Route.js +1 -9
  87. package/lib/es/components/map/components/features/basics/Circle.js +8 -4
  88. package/lib/es/components/map/components/features/basics/MapLayerGroup.js +6 -5
  89. package/lib/es/components/map/components/features/basics/Polygon.js +4 -4
  90. package/lib/es/components/map/components/features/basics/Polyline.js +5 -30
  91. package/lib/es/components/map/components/features/basics/marker/DomMarker.js +8 -3
  92. package/lib/es/components/map/components/features/basics/marker/Marker.js +6 -31
  93. package/lib/es/components/map/components/features/layers/Layer.js +1 -1
  94. package/lib/es/components/map/components/features/layers/MarkerLayer.js +0 -1
  95. package/lib/es/components/map/components/features/layers/RoadRestrictionLayer.js +1 -2
  96. package/lib/es/components/map/components/features/layers/TrafficLayer.js +2 -2
  97. package/lib/es/components/map/components/features/layers/clustering/ClusterLayer.js +1 -1
  98. package/lib/es/components/map/components/features/settings/builtinSettings/MapTypeSettings.js +16 -2
  99. package/lib/es/components/map/icons/MapIcon.js +46 -66
  100. package/lib/es/components/mapMarker/ClusterMapMarker.js +16 -20
  101. package/lib/es/components/mapMarker/SingleMapMarker.js +17 -28
  102. package/lib/es/styles/components/MapMarker.less +224 -14
  103. package/lib/es/styles/components/MapSettings.less +45 -29
  104. package/lib/es/styles/design/border.less +14 -14
  105. package/lib/es/styles/design/colors.less +7 -6
  106. package/lib/es/styles/design/divide.less +165 -0
  107. package/lib/es/styles/design/responsive/_imports.less +1 -0
  108. package/lib/es/styles/design/responsive/gap.less +0 -8
  109. package/lib/es/styles/design/responsive/spacing.less +12 -0
  110. package/lib/es/styles/rio-uikit-core.less +1 -0
  111. package/lib/es/styles/variables/light_colors.less +6 -6
  112. package/lib/es/themes/Volkswagen/components/applicationHeader/VolkswagenApplicationHeader.js +14 -5
  113. package/lib/es/types.ts +6 -4
  114. package/lib/es/version.json +1 -1
  115. package/package.json +1 -1
  116. package/styles/components/MapMarker.less +224 -14
  117. package/styles/components/MapSettings.less +45 -29
  118. package/styles/design/border.less +14 -14
  119. package/styles/design/colors.less +7 -6
  120. package/styles/design/divide.less +165 -0
  121. package/styles/design/responsive/_imports.less +1 -0
  122. package/styles/design/responsive/gap.less +0 -8
  123. package/styles/design/responsive/spacing.less +12 -0
  124. package/styles/rio-uikit-core.less +1 -0
  125. package/styles/variables/light_colors.less +6 -6
  126. package/themes/Volkswagen/components/applicationHeader/VolkswagenApplicationHeader.js +15 -6
  127. package/types.ts +6 -4
  128. package/version.json +1 -1
  129. package/components/.DS_Store +0 -0
  130. package/components/map/.DS_Store +0 -0
  131. package/components/map/components/.DS_Store +0 -0
  132. package/components/map/components/features/layers/TruckLayer.js +0 -20
  133. package/components/map/components/features/layers/baselayers/BaseLayer.js +0 -33
  134. package/components/map/components/features/layers/baselayers/DefaultLayer.js +0 -23
  135. package/hooks/useHereMap.ts +0 -23
  136. package/hooks/useScripts.ts +0 -52
  137. package/lib/.DS_Store +0 -0
  138. package/lib/es/.DS_Store +0 -0
  139. package/lib/es/components/.DS_Store +0 -0
  140. package/lib/es/components/map/components/features/layers/TruckLayer.js +0 -28
  141. package/lib/es/components/map/components/features/layers/baselayers/BaseLayer.js +0 -41
  142. package/lib/es/components/map/components/features/layers/baselayers/DefaultLayer.js +0 -30
  143. package/lib/es/hooks/useHereMap.ts +0 -23
  144. package/lib/es/hooks/useScripts.ts +0 -52
  145. package/lib/es/styles/.DS_Store +0 -0
  146. package/lib/es/styles/mixins/_mixins.less +0 -13
  147. package/lib/es/styles/mixins/alerts.less +0 -13
  148. package/lib/es/styles/shared/colors.json +0 -56
  149. package/lib/es/styles/shared/colors.less +0 -73
  150. package/lib/es/styles/shared/screens.less +0 -7
  151. package/lib/es/styles/shared/text.less +0 -23
  152. package/lib/es/styles/variables.less +0 -186
  153. package/lib/es/themes/.DS_Store +0 -0
  154. package/styles/.DS_Store +0 -0
  155. package/styles/mixins/_mixins.less +0 -13
  156. package/styles/mixins/alerts.less +0 -13
  157. package/styles/shared/colors.json +0 -56
  158. package/styles/shared/colors.less +0 -73
  159. package/styles/shared/screens.less +0 -7
  160. package/styles/shared/text.less +0 -23
  161. package/styles/variables.less +0 -186
  162. package/themes/.DS_Store +0 -0
  163. package/themes/Volkswagen/.DS_Store +0 -0
  164. package/themes/Website/.DS_Store +0 -0
package/.DS_Store CHANGED
Binary file
package/Map.d.ts CHANGED
@@ -8,4 +8,5 @@ export default class Map extends React.Component<React.PropsWithChildren<MapProp
8
8
  static TYPE_FLEET_STYLE = 'FLEET_STYLE';
9
9
  static TYPE_SATELLITE = 'SATELLITE';
10
10
  static TYPE_TERRAIN = 'TERRAIN';
11
+ static TYPE_NIGHT = 'NIGHT';
11
12
  }
@@ -3,10 +3,10 @@ import _extends from "@babel/runtime/helpers/extends";
3
3
  import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
4
4
  var _Activity$icons;
5
5
  var _excluded = ["activity", "duration", "isOutdated", "bsSize", "onClick", "className"];
6
- import React from 'react';
6
+ import React, { forwardRef } from 'react';
7
7
  import PropTypes from 'prop-types';
8
8
  import classNames from 'classnames';
9
- var Activity = function Activity(props) {
9
+ var Activity = /*#__PURE__*/forwardRef(function (props, ref) {
10
10
  var activity = props.activity,
11
11
  duration = props.duration,
12
12
  isOutdated = props.isOutdated,
@@ -19,7 +19,9 @@ var Activity = function Activity(props) {
19
19
  }
20
20
  var icon = Activity.icons[activity];
21
21
  var wrapperClassNames = classNames('activity', "activity-".concat(activity), isOutdated && 'opacity-50', bsSize && "activity-".concat(bsSize), className && className);
22
- return /*#__PURE__*/React.createElement("div", _extends({}, remainingProps, {
22
+ return /*#__PURE__*/React.createElement("div", _extends({
23
+ ref: ref
24
+ }, remainingProps, {
23
25
  className: wrapperClassNames,
24
26
  onClick: onClick
25
27
  }), /*#__PURE__*/React.createElement("span", {
@@ -29,7 +31,7 @@ var Activity = function Activity(props) {
29
31
  })), duration && /*#__PURE__*/React.createElement("span", {
30
32
  className: "activity-text"
31
33
  }, duration));
32
- };
34
+ });
33
35
  Activity.AVAILABLE = 'available';
34
36
  Activity.DRIVING = 'driving';
35
37
  Activity.RESTING = 'resting';
@@ -2,11 +2,11 @@ import _extends from "@babel/runtime/helpers/extends";
2
2
  import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
3
3
  import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
4
4
  var _excluded = ["start", "end", "prefix", "unit", "speed", "decreasing", "onEnd", "className"];
5
- import React, { useState, useEffect } from 'react';
5
+ import React, { useState, useEffect, forwardRef } from 'react';
6
6
  import PropTypes from 'prop-types';
7
7
  import useInterval from '../../hooks/useInterval';
8
8
  var TIMER = 10;
9
- export var AnimatedNumber = function AnimatedNumber(props) {
9
+ export var AnimatedNumber = /*#__PURE__*/forwardRef(function (props, ref) {
10
10
  var start = props.start,
11
11
  end = props.end,
12
12
  prefix = props.prefix,
@@ -34,10 +34,12 @@ export var AnimatedNumber = function AnimatedNumber(props) {
34
34
  onEnd();
35
35
  }
36
36
  });
37
- return /*#__PURE__*/React.createElement("span", _extends({}, remainingProps, {
37
+ return /*#__PURE__*/React.createElement("span", _extends({
38
+ ref: ref
39
+ }, remainingProps, {
38
40
  className: className
39
41
  }), "".concat(prefix).concat(value).concat(unit));
40
- };
42
+ });
41
43
  AnimatedNumber.defaultProps = {
42
44
  prefix: '',
43
45
  unit: '',
@@ -2,7 +2,7 @@ import _extends from "@babel/runtime/helpers/extends";
2
2
  import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
3
3
  import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
4
4
  var _excluded = ["homeRoute", "showHomeIcon", "label", "className", "appNavigator", "appNavigatorClassName", "appMenuItems", "navItems", "actionBarItems", "onToggleAppMenu"];
5
- import React, { useState, useRef, useEffect, useCallback } from 'react';
5
+ import React, { useState, useRef, forwardRef, useCallback, useImperativeHandle } from 'react';
6
6
  import PropTypes from 'prop-types';
7
7
  import debounce from 'lodash/fp/debounce';
8
8
  import isEmpty from 'lodash/fp/isEmpty';
@@ -16,7 +16,7 @@ import modulePropTypes from './modulePropTypes';
16
16
  import { MobileAppMenu } from './MobileAppMenu';
17
17
  var SCREEN_SM = 768; // @screen-sm: 768px;
18
18
 
19
- export var ApplicationHeader = function ApplicationHeader(props) {
19
+ export var ApplicationHeader = /*#__PURE__*/forwardRef(function (props, ref) {
20
20
  var homeRoute = props.homeRoute,
21
21
  showHomeIcon = props.showHomeIcon,
22
22
  label = props.label,
@@ -33,6 +33,9 @@ export var ApplicationHeader = function ApplicationHeader(props) {
33
33
  _useResizeObserver2 = _slicedToArray(_useResizeObserver, 2),
34
34
  navRef = _useResizeObserver2[0],
35
35
  contentRect = _useResizeObserver2[1].contentRect;
36
+ useImperativeHandle(ref, function () {
37
+ return navRef;
38
+ }, []);
36
39
  var getContentRect = useCallback(function (key) {
37
40
  return contentRect && Math.round(contentRect[key]);
38
41
  }, [contentRect]);
@@ -81,7 +84,7 @@ export var ApplicationHeader = function ApplicationHeader(props) {
81
84
  nodeRef: actionBarRef,
82
85
  items: actionBarItems
83
86
  })));
84
- };
87
+ });
85
88
  var Divider = function Divider() {
86
89
  return /*#__PURE__*/React.createElement("div", {
87
90
  className: "divider display-flex align-items-center"
@@ -1,7 +1,7 @@
1
1
  import _extends from "@babel/runtime/helpers/extends";
2
2
  import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
3
3
  var _excluded = ["className", "layoutRef", "children"];
4
- import React from 'react';
4
+ import React, { forwardRef } from 'react';
5
5
  import PropTypes from 'prop-types';
6
6
  import classNames from 'classnames';
7
7
  import ApplicationLayoutHeader from './ApplicationLayoutHeader';
@@ -11,17 +11,17 @@ import ApplicationLayoutBody from './ApplicationLayoutBody';
11
11
  // initializes document bootstrapping - keep the import to avoid being tree-shaked
12
12
  import { initDocumentBootstrapping } from '../../utils/init';
13
13
  initDocumentBootstrapping;
14
- export var ApplicationLayout = function ApplicationLayout(_ref) {
15
- var className = _ref.className,
16
- layoutRef = _ref.layoutRef,
17
- children = _ref.children,
18
- remainigProps = _objectWithoutProperties(_ref, _excluded);
14
+ export var ApplicationLayout = /*#__PURE__*/forwardRef(function (props, ref) {
15
+ var className = props.className,
16
+ layoutRef = props.layoutRef,
17
+ children = props.children,
18
+ remainigProps = _objectWithoutProperties(props, _excluded);
19
19
  var classes = classNames('ApplicationLayout', className);
20
20
  return /*#__PURE__*/React.createElement("div", _extends({}, remainigProps, {
21
- ref: layoutRef,
21
+ ref: ref || layoutRef,
22
22
  className: classes
23
23
  }), children);
24
- };
24
+ });
25
25
  ApplicationLayout.Header = ApplicationLayoutHeader;
26
26
  ApplicationLayout.Sidebar = ApplicationLayoutSidebar;
27
27
  ApplicationLayout.Body = ApplicationLayoutBody;
@@ -2,12 +2,12 @@ import _extends from "@babel/runtime/helpers/extends";
2
2
  import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
3
3
  import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
4
4
  var _excluded = ["className", "innerClassName", "forceScrollbar", "enableScrollToTop", "banner", "navigation", "bottomBar", "bottomBarHeight", "children"];
5
- import React, { useState, useRef, useEffect } from 'react';
5
+ import React, { useState, useRef, useEffect, forwardRef, useImperativeHandle } from 'react';
6
6
  import PropTypes from 'prop-types';
7
7
  import debounce from 'lodash/fp/debounce';
8
8
  import classNames from 'classnames';
9
9
  var RESIZE_THROTTELING = 200;
10
- export var ApplicationLayoutBody = function ApplicationLayoutBody(props) {
10
+ export var ApplicationLayoutBody = /*#__PURE__*/forwardRef(function (props, ref) {
11
11
  var className = props.className,
12
12
  innerClassName = props.innerClassName,
13
13
  forceScrollbar = props.forceScrollbar,
@@ -24,6 +24,9 @@ export var ApplicationLayoutBody = function ApplicationLayoutBody(props) {
24
24
  setOffset = _useState2[1];
25
25
  var moduleContentRef = useRef();
26
26
  var layoutBodyRef = useRef();
27
+ useImperativeHandle(ref, function () {
28
+ return layoutBodyRef;
29
+ }, []);
27
30
  useEffect(function () {
28
31
  if (layoutBodyRef.current) {
29
32
  layoutBodyRef.current.parentNode.style = "--ApplicationLayoutBodyBottomBarHeight: ".concat(bottomBarHeight, "px");
@@ -66,7 +69,7 @@ export var ApplicationLayoutBody = function ApplicationLayoutBody(props) {
66
69
  }, /*#__PURE__*/React.createElement("span", {
67
70
  className: "rioglyph rioglyph-arrow-up"
68
71
  })))), bottomBar && bottomBar);
69
- };
72
+ });
70
73
  ApplicationLayoutBody.defaultProps = {
71
74
  className: '',
72
75
  enableScrollToTop: true,
@@ -1,10 +1,10 @@
1
1
  import _extends from "@babel/runtime/helpers/extends";
2
2
  import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
3
3
  var _excluded = ["textColor", "backgroundColor", "isSticky", "className", "children"];
4
- import React from 'react';
4
+ import React, { forwardRef } from 'react';
5
5
  import PropTypes from 'prop-types';
6
6
  import classNames from 'classnames';
7
- export var ApplicationLayoutBodyBanner = function ApplicationLayoutBodyBanner(props) {
7
+ export var ApplicationLayoutBodyBanner = /*#__PURE__*/forwardRef(function (props, ref) {
8
8
  var textColor = props.textColor,
9
9
  backgroundColor = props.backgroundColor,
10
10
  isSticky = props.isSticky,
@@ -13,9 +13,10 @@ export var ApplicationLayoutBodyBanner = function ApplicationLayoutBodyBanner(pr
13
13
  remainingProps = _objectWithoutProperties(props, _excluded);
14
14
  var bannerClasses = classNames('ApplicationLayoutBodyBanner', textColor, backgroundColor, isSticky && 'position-sticky top-0 z-index-3', className);
15
15
  return /*#__PURE__*/React.createElement("div", _extends({}, remainingProps, {
16
+ ref: ref,
16
17
  className: bannerClasses
17
18
  }), children);
18
- };
19
+ });
19
20
  ApplicationLayoutBodyBanner.defaultProps = {
20
21
  textColor: 'text-color-white',
21
22
  backgroundColor: 'bg-primary',
@@ -1,18 +1,20 @@
1
1
  import _extends from "@babel/runtime/helpers/extends";
2
2
  import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
3
3
  var _excluded = ["className", "children"];
4
- import React from 'react';
4
+ import React, { forwardRef } from 'react';
5
5
  import PropTypes from 'prop-types';
6
6
  import classNames from 'classnames';
7
- export var ApplicationLayoutBodyNavigation = function ApplicationLayoutBodyNavigation(props) {
7
+ export var ApplicationLayoutBodyNavigation = /*#__PURE__*/forwardRef(function (props, ref) {
8
8
  var className = props.className,
9
9
  children = props.children,
10
10
  remainingProps = _objectWithoutProperties(props, _excluded);
11
11
  var navigationClasses = classNames('ApplicationLayoutBodyNavigation', className);
12
- return /*#__PURE__*/React.createElement("div", _extends({}, remainingProps, {
12
+ return /*#__PURE__*/React.createElement("div", _extends({
13
+ ref: ref
14
+ }, remainingProps, {
13
15
  className: navigationClasses
14
16
  }), children);
15
- };
17
+ });
16
18
  ApplicationLayoutBodyNavigation.propTypes = {
17
19
  className: PropTypes.string
18
20
  };
@@ -1,19 +1,21 @@
1
1
  import _extends from "@babel/runtime/helpers/extends";
2
2
  import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
3
3
  var _excluded = ["className", "children"];
4
- import React from 'react';
4
+ import React, { forwardRef } from 'react';
5
5
  import PropTypes from 'prop-types';
6
6
  import classNames from 'classnames';
7
- export var ApplicationLayoutHeader = function ApplicationLayoutHeader(_ref) {
8
- var className = _ref.className,
9
- children = _ref.children,
10
- remainigProps = _objectWithoutProperties(_ref, _excluded);
7
+ export var ApplicationLayoutHeader = /*#__PURE__*/forwardRef(function (props, ref) {
8
+ var className = props.className,
9
+ children = props.children,
10
+ remainigProps = _objectWithoutProperties(props, _excluded);
11
11
  var classes = classNames('ApplicationLayoutHeader', className);
12
- return /*#__PURE__*/React.createElement("div", _extends({}, remainigProps, {
12
+ return /*#__PURE__*/React.createElement("div", _extends({
13
+ ref: ref
14
+ }, remainigProps, {
13
15
  className: classes,
14
16
  id: "ApplicationLayoutHeader"
15
17
  }), children);
16
- };
18
+ });
17
19
  ApplicationLayoutHeader.propTypes = {
18
20
  className: PropTypes.string
19
21
  };
@@ -2,7 +2,7 @@ import _extends from "@babel/runtime/helpers/extends";
2
2
  import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
3
3
  import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
4
4
  var _excluded = ["className", "resizable", "width", "maxWidth", "minWidth", "height", "bordered", "currentCategoryId", "isOpen", "useOffscreen", "fly", "onCategoryChange", "onToggleTree", "onResizeEnd", "children"];
5
- import React, { memo, useState, useEffect, useRef } from 'react';
5
+ import React, { memo, useState, useEffect, useRef, forwardRef, useImperativeHandle } from 'react';
6
6
  import PropTypes from 'prop-types';
7
7
  import classNames from 'classnames';
8
8
  import head from 'lodash/fp/head';
@@ -38,7 +38,7 @@ var renderTreesOffscreen = function renderTreesOffscreen(children, categoryId) {
38
38
  }, child);
39
39
  });
40
40
  };
41
- var AssetTree = /*#__PURE__*/memo(function (props) {
41
+ var AssetTree = /*#__PURE__*/memo( /*#__PURE__*/forwardRef(function (props, ref) {
42
42
  var className = props.className,
43
43
  resizable = props.resizable,
44
44
  width = props.width,
@@ -71,6 +71,9 @@ var AssetTree = /*#__PURE__*/memo(function (props) {
71
71
  sidebarMode = _useState6[0],
72
72
  setSidebarMode = _useState6[1];
73
73
  var sidebarRef = useRef();
74
+ useImperativeHandle(ref, function () {
75
+ return sidebarRef;
76
+ }, []);
74
77
 
75
78
  // Update internal state when props change
76
79
  useEffect(function () {
@@ -150,7 +153,7 @@ var AssetTree = /*#__PURE__*/memo(function (props) {
150
153
  direction: Resizer.HORIZONTAL,
151
154
  position: Resizer.RIGHT
152
155
  }));
153
- });
156
+ }));
154
157
  AssetTree.displayName = 'AssetTree';
155
158
  AssetTree.MODE_FLY = 'fly';
156
159
  AssetTree.MODE_FLUID = 'fluid';
@@ -1,10 +1,10 @@
1
1
  import _extends from "@babel/runtime/helpers/extends";
2
2
  import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
3
3
  var _excluded = ["icon", "value", "isActive", "hasFilter", "enableActivity", "onClick", "type", "hideOnZero"];
4
- import React from 'react';
4
+ import React, { forwardRef } from 'react';
5
5
  import PropTypes from 'prop-types';
6
6
  import classNames from 'classnames';
7
- var TypeCounter = function TypeCounter(props) {
7
+ var TypeCounter = /*#__PURE__*/forwardRef(function (props, ref) {
8
8
  var icon = props.icon,
9
9
  value = props.value,
10
10
  isActive = props.isActive,
@@ -22,7 +22,9 @@ var TypeCounter = function TypeCounter(props) {
22
22
  if (hideOnZero && !value) {
23
23
  return null;
24
24
  }
25
- return /*#__PURE__*/React.createElement("div", _extends({}, remainingProps, {
25
+ return /*#__PURE__*/React.createElement("div", _extends({
26
+ ref: ref
27
+ }, remainingProps, {
26
28
  className: wrapperClassName,
27
29
  onClick: handleClick
28
30
  }), /*#__PURE__*/React.createElement("span", {
@@ -30,7 +32,7 @@ var TypeCounter = function TypeCounter(props) {
30
32
  }), /*#__PURE__*/React.createElement("span", {
31
33
  className: counterClassNames
32
34
  }, value || 0));
33
- };
35
+ });
34
36
  TypeCounter.defaultProps = {
35
37
  hideOnZero: false
36
38
  };
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#30B4C0" d="M31.978 14.928a13.695 13.695 0 0 0-.546-1.137 13.17 13.17 0 0 0-4.12-4.554l-.045-.029a7.494 7.494 0 0 0-.526-.325c-.36-.217-.728-.417-1.106-.6C23.99 7.472 22.052 7 20.004 7 12.822 7 7 12.82 7 20s5.822 13 13.004 13c2.048 0 3.985-.473 5.708-1.316l-.077.034c.38-.182.748-.383 1.106-.601a56 56 0 0 0 .526-.325 13.165 13.165 0 0 0 4.13-4.516l.035-.067c.2-.368.381-.747.546-1.137.646-1.494 1.022-3.233 1.022-5.06a13.01 13.01 0 0 0-1.054-5.146l.032.085v-.023zm-11.983-4.69a9.751 9.751 0 0 1 8.554 5.069l.025.05c-.03.363-.038.728-.025 1.092v-.016c.038.702-.625 1.326-1.561 1.833-.937.507-.898.65-.39 2.106.507 1.456-1.951 5.268-2.852 5.85-.9.582-.936-1.872-.936-1.872v-1.24c0-.117-.195-1.482-.195-1.482l-.325-1.21-.995-1.134a24.88 24.88 0 0 0-2.729-.964l-.197-.05c-.897-.195-.65-1.833.325-2.3.976-.469 1.3.584 1.132-1.21-.17-1.794-1.704-1.212-2.432-1.212s-.813.569-1.245 2.574c-.234 1.092-.858.325-1.014.04-.157-.287-.274-2.185-.274-2.185l-.78 1.365s-.117.546-1.443 1.014c-1.21.426-.933-.975-.621-1.95 1.783-2.528 4.689-4.16 7.977-4.166l.001-.002zM10.53 22.313c.107-.848.377-2.49.845-2.119.625.494.898.494 1.444 1.04.546.546 2.887.858 2.107 1.56-.78.702-.898.77-1.249 1.486-.325.65-.813 2.057-.887 2.275a9.72 9.72 0 0 1-2.261-4.158l-.015-.067.016-.017zM3 31l6 6H3v-6zm34 0v6h-6l6-6zm0-28v6l-6-6h6zM9 3L3 9V3h6z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#30B4C0" d="M31.978 14.928a13.695 13.695 0 0 0-.546-1.137 13.17 13.17 0 0 0-4.12-4.554l-.045-.029a7.494 7.494 0 0 0-.526-.325c-.36-.217-.728-.417-1.106-.6C23.99 7.472 22.052 7 20.004 7 12.822 7 7 12.82 7 20s5.822 13 13.004 13c2.048 0 3.985-.473 5.708-1.316l-.077.034c.38-.182.748-.383 1.106-.601a56 56 0 0 0 .526-.325 13.165 13.165 0 0 0 4.13-4.516l.035-.067c.2-.368.381-.747.546-1.137.646-1.494 1.022-3.233 1.022-5.06a13.01 13.01 0 0 0-1.054-5.146l.032.085v-.023zm-11.983-4.69a9.751 9.751 0 0 1 8.554 5.069l.025.05c-.03.363-.038.728-.025 1.092v-.016c.038.702-.625 1.326-1.561 1.833-.937.507-.898.65-.39 2.106.507 1.456-1.951 5.268-2.852 5.85-.9.582-.936-1.872-.936-1.872v-1.24c0-.117-.195-1.482-.195-1.482l-.325-1.21-.995-1.134a24.88 24.88 0 0 0-2.729-.964l-.197-.05c-.897-.195-.65-1.833.325-2.3.976-.469 1.3.584 1.132-1.21-.17-1.794-1.704-1.212-2.432-1.212s-.813.569-1.245 2.574c-.234 1.092-.858.325-1.014.04-.157-.287-.274-2.185-.274-2.185l-.78 1.365s-.117.546-1.443 1.014c-1.21.426-.933-.975-.621-1.95 1.783-2.528 4.689-4.16 7.977-4.166l.001-.002zM10.53 22.313c.107-.848.377-2.49.845-2.119.625.494.898.494 1.444 1.04.546.546 2.887.858 2.107 1.56-.78.702-.898.77-1.249 1.486-.325.65-.813 2.057-.887 2.275a9.72 9.72 0 0 1-2.261-4.158l-.015-.067.016-.017zM3 31l6 6H3v-6zm34 0v6h-6l6-6zm0-28v6l-6-6h6zM9 3 3 9V3h6z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#A7AFBB" d="M31.978 14.928a13.695 13.695 0 0 0-.546-1.137 13.17 13.17 0 0 0-4.12-4.554l-.045-.029a7.494 7.494 0 0 0-.526-.325c-.36-.217-.728-.417-1.106-.6C23.99 7.472 22.052 7 20.004 7 12.822 7 7 12.82 7 20s5.822 13 13.004 13c2.048 0 3.985-.473 5.708-1.316l-.077.034c.38-.182.748-.383 1.106-.601a56 56 0 0 0 .526-.325 13.165 13.165 0 0 0 4.13-4.516l.035-.067c.2-.368.381-.747.546-1.137.646-1.494 1.022-3.233 1.022-5.06a13.01 13.01 0 0 0-1.054-5.146l.032.085v-.023zm-11.983-4.69a9.751 9.751 0 0 1 8.554 5.069l.025.05c-.03.363-.038.728-.025 1.092v-.016c.038.702-.625 1.326-1.561 1.833-.937.507-.898.65-.39 2.106.507 1.456-1.951 5.268-2.852 5.85-.9.582-.936-1.872-.936-1.872v-1.24c0-.117-.195-1.482-.195-1.482l-.325-1.21-.995-1.134a24.88 24.88 0 0 0-2.729-.964l-.197-.05c-.897-.195-.65-1.833.325-2.3.976-.469 1.3.584 1.132-1.21-.17-1.794-1.704-1.212-2.432-1.212s-.813.569-1.245 2.574c-.234 1.092-.858.325-1.014.04-.157-.287-.274-2.185-.274-2.185l-.78 1.365s-.117.546-1.443 1.014c-1.21.426-.933-.975-.621-1.95 1.783-2.528 4.689-4.16 7.977-4.166l.001-.002zM10.53 22.313c.107-.848.377-2.49.845-2.119.625.494.898.494 1.444 1.04.546.546 2.887.858 2.107 1.56-.78.702-.898.77-1.249 1.486-.325.65-.813 2.057-.887 2.275a9.72 9.72 0 0 1-2.261-4.158l-.015-.067.016-.017zM3 31l6 6H3v-6zm34 0v6h-6l6-6zm0-28v6l-6-6h6zM9 3L3 9V3h6z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#A7AFBB" d="M31.978 14.928a13.695 13.695 0 0 0-.546-1.137 13.17 13.17 0 0 0-4.12-4.554l-.045-.029a7.494 7.494 0 0 0-.526-.325c-.36-.217-.728-.417-1.106-.6C23.99 7.472 22.052 7 20.004 7 12.822 7 7 12.82 7 20s5.822 13 13.004 13c2.048 0 3.985-.473 5.708-1.316l-.077.034c.38-.182.748-.383 1.106-.601a56 56 0 0 0 .526-.325 13.165 13.165 0 0 0 4.13-4.516l.035-.067c.2-.368.381-.747.546-1.137.646-1.494 1.022-3.233 1.022-5.06a13.01 13.01 0 0 0-1.054-5.146l.032.085v-.023zm-11.983-4.69a9.751 9.751 0 0 1 8.554 5.069l.025.05c-.03.363-.038.728-.025 1.092v-.016c.038.702-.625 1.326-1.561 1.833-.937.507-.898.65-.39 2.106.507 1.456-1.951 5.268-2.852 5.85-.9.582-.936-1.872-.936-1.872v-1.24c0-.117-.195-1.482-.195-1.482l-.325-1.21-.995-1.134a24.88 24.88 0 0 0-2.729-.964l-.197-.05c-.897-.195-.65-1.833.325-2.3.976-.469 1.3.584 1.132-1.21-.17-1.794-1.704-1.212-2.432-1.212s-.813.569-1.245 2.574c-.234 1.092-.858.325-1.014.04-.157-.287-.274-2.185-.274-2.185l-.78 1.365s-.117.546-1.443 1.014c-1.21.426-.933-.975-.621-1.95 1.783-2.528 4.689-4.16 7.977-4.166l.001-.002zM10.53 22.313c.107-.848.377-2.49.845-2.119.625.494.898.494 1.444 1.04.546.546 2.887.858 2.107 1.56-.78.702-.898.77-1.249 1.486-.325.65-.813 2.057-.887 2.275a9.72 9.72 0 0 1-2.261-4.158l-.015-.067.016-.017zM3 31l6 6H3v-6zm34 0v6h-6l6-6zm0-28v6l-6-6h6zM9 3 3 9V3h6z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#30B4C0" d="M19.961 8.418L33.5 32.4h-27L19.961 8.418zM20 30l.249-3.276-1.326-1.026-3.099-1.824L12.2 30h1.2l3.225-4.176L18.8 27.15V30H20zm1.761-13.701h-.012a1.5 1.5 0 0 0 0 3 1.5 1.5 0 0 0 .012-3zM13.748 21.3l9.231 5.4L21.2 30H29l-3-5.4-2.172 1.2-.636-.36-1.374-4.941h-.078c-1.29 0-2.37-.905-2.64-2.133l-3.255.816-.858 1.458-.639-.375-.6 1.035zm5.877 2.043l1.089-1.692 1.302 3.093-2.391-1.401zm-3.843-2.25l.819-.867 1.599-.201-1.188 1.791-1.23-.723z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#30B4C0" d="M19.961 8.418 33.5 32.4h-27L19.961 8.418zM20 30l.249-3.276-1.326-1.026-3.099-1.824L12.2 30h1.2l3.225-4.176L18.8 27.15V30H20zm1.761-13.701h-.012a1.5 1.5 0 0 0 0 3 1.5 1.5 0 0 0 .012-3zM13.748 21.3l9.231 5.4L21.2 30H29l-3-5.4-2.172 1.2-.636-.36-1.374-4.941h-.078c-1.29 0-2.37-.905-2.64-2.133l-3.255.816-.858 1.458-.639-.375-.6 1.035zm5.877 2.043 1.089-1.692 1.302 3.093-2.391-1.401zm-3.843-2.25.819-.867 1.599-.201-1.188 1.791-1.23-.723z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#A7AFBB" d="M19.961 8.418L33.5 32.4h-27L19.961 8.418zM20 30l.249-3.276-1.326-1.026-3.099-1.824L12.2 30h1.2l3.225-4.176L18.8 27.15V30H20zm1.761-13.701h-.012a1.5 1.5 0 0 0 0 3 1.5 1.5 0 0 0 .012-3zM13.748 21.3l9.231 5.4L21.2 30H29l-3-5.4-2.172 1.2-.636-.36-1.374-4.941h-.078c-1.29 0-2.37-.905-2.64-2.133l-3.255.816-.858 1.458-.639-.375-.6 1.035zm5.877 2.043l1.089-1.692 1.302 3.093-2.391-1.401zm-3.843-2.25l.819-.867 1.599-.201-1.188 1.791-1.23-.723z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#A7AFBB" d="M19.961 8.418 33.5 32.4h-27L19.961 8.418zM20 30l.249-3.276-1.326-1.026-3.099-1.824L12.2 30h1.2l3.225-4.176L18.8 27.15V30H20zm1.761-13.701h-.012a1.5 1.5 0 0 0 0 3 1.5 1.5 0 0 0 .012-3zM13.748 21.3l9.231 5.4L21.2 30H29l-3-5.4-2.172 1.2-.636-.36-1.374-4.941h-.078c-1.29 0-2.37-.905-2.64-2.133l-3.255.816-.858 1.458-.639-.375-.6 1.035zm5.877 2.043 1.089-1.692 1.302 3.093-2.391-1.401zm-3.843-2.25.819-.867 1.599-.201-1.188 1.791-1.23-.723z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#30B4C0" fill-rule="evenodd" d="M20 9.003l14 7.992-14 6.924-14-6.924 14-7.992zM22 17l-3 1.607L22 20l3-1.393L22 17zm-8-2l-3 1.607L14 18l3-1.393L14 15zm8-3l-3 1.607L22 15l3-1.393L22 12zm-2 13.04l-8.35-4.124L6 24.123l14 6.874 14-6.924-5.651-3.207L20 25.039z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#30B4C0" fill-rule="evenodd" d="m20 9.003 14 7.992-14 6.924-14-6.924 14-7.992zM22 17l-3 1.607L22 20l3-1.393L22 17zm-8-2-3 1.607L14 18l3-1.393L14 15zm8-3-3 1.607L22 15l3-1.393L22 12zm-2 13.04-8.35-4.124L6 24.123l14 6.874 14-6.924-5.651-3.207L20 25.039z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#A7AFBB" fill-rule="evenodd" d="M20 9.003l14 7.992-14 6.924-14-6.924 14-7.992zM22 17l-3 1.607L22 20l3-1.393L22 17zm-8-2l-3 1.607L14 18l3-1.393L14 15zm8-3l-3 1.607L22 15l3-1.393L22 12zm-2 13.04l-8.35-4.124L6 24.123l14 6.874 14-6.924-5.651-3.207L20 25.039z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#A7AFBB" fill-rule="evenodd" d="m20 9.003 14 7.992-14 6.924-14-6.924 14-7.992zM22 17l-3 1.607L22 20l3-1.393L22 17zm-8-2-3 1.607L14 18l3-1.393L14 15zm8-3-3 1.607L22 15l3-1.393L22 12zm-2 13.04-8.35-4.124L6 24.123l14 6.874 14-6.924-5.651-3.207L20 25.039z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#30B4C0" fill-rule="evenodd" d="M.02 20.2L20 31.522 39.98 20.2 20 8.878.02 20.2zm5.363 1.856S2.03 20.132 2.03 20.134l3.353-1.902 3.354 1.9-3.354 1.924zM9 24.118l-3.354-1.923L9 20.295l3.353 1.899L9 24.118zm3.634 2.037s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075l-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zM9.13 20.006s-3.353-1.924-3.353-1.922l3.353-1.902 3.354 1.9-3.354 1.924zm3.617 2.062l-3.354-1.923 3.354-1.9 3.353 1.899-3.353 1.924zm3.634 2.037l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.637 2.075L20.3 26.297l3.353-1.9 3.354 1.899-3.354 1.924h.001zM12.78 17.916s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.616 2.062l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zM16.387 15.842l-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zm3.616 2.062L16.65 15.98l3.353-1.9 3.354 1.899-3.354 1.924v.001zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm-10.83-10.343s-3.354-1.925-3.354-1.923l3.353-1.901 3.353 1.9-3.353 1.924h.001zm3.615 2.061s-3.353-1.924-3.353-1.922l3.353-1.901 3.354 1.899-3.354 1.924zm3.635 2.037s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.9-3.353 1.923zm3.637 2.075s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.899-3.353 1.924z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><g fill="none" fill-rule="evenodd"><path fill="#30B4C0" d="m20 12.451 19.98 11.322L20 35.095.02 23.773l11.052-6.262a4.85 4.85 0 0 0 1.13.484l-2.775 1.572c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-2.446-1.384c.16-.005.32-.019.478-.04l2.222 1.274 3.354-1.924-2.296-1.3c.07-.097.138-.197.202-.3l2.235 1.28.147.085.052.03 3.352-1.924-3.353-1.9-1.854 1.052c.095-.38.142-.762.144-1.139l1.63-.924Zm-.093 17.57-3.353 1.9 3.353 1.922 3.354-1.924-3.354-1.899Zm3.746-2.05-3.353 1.9 3.354 1.922 3.353-1.924-3.354-1.899Zm-7.383-.026-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899Zm-3.636-2.04-3.353 1.9c0-.002 3.353 1.923 3.353 1.923l3.353-1.925-3.353-1.898Zm7.383-.01-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.9Zm7.287-.015-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899ZM9 23.868l-3.354 1.9L9 27.691l3.353-1.924L9 23.868Zm7.381-.013-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899Zm14.53-.049-3.353 1.9c0-.002 3.353 1.923 3.353 1.923l3.353-1.925-3.353-1.898Zm-7.244 0-3.353 1.9 3.353 1.922 3.353-1.924-3.353-1.899Zm-10.92-1.988-3.354 1.9 3.354 1.923 3.353-1.924-3.353-1.899Zm-7.364-.013L2.03 23.707c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.9Zm14.648-.04-3.353 1.9c0-.002 3.353 1.923 3.353 1.923l3.353-1.924-3.353-1.9Zm7.243-.034-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899Zm7.33-.055-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.899ZM9.13 19.756l-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.9Zm7.266-.028-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899Zm7.242-.038-3.353 1.901c0-.002 3.353 1.923 3.353 1.923l3.353-1.924-3.353-1.9Zm7.329-.089-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.353-1.923-3.353-1.9Zm-10.964-1.948-3.353 1.9 3.353 1.924 3.354-1.925-3.354-1.899Zm7.328-.093-3.353 1.902c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.9Zm-3.635-2.036-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.899Z"/><path fill="#97D9DF" d="M8.403 15.762c.15.282.05.632-.227.792l-1.392.74a.584.584 0 0 1-.45.044.593.593 0 0 1-.105-1.09l1.39-.74a.592.592 0 0 1 .784.254ZM14.7 9.09a4.15 4.15 0 1 1-2.427 7.939 4.15 4.15 0 0 1 2.427-7.94Zm-6.333 1.784a.593.593 0 1 1-.347 1.134l-2.269-.693a.602.602 0 0 1-.393-.74c.1-.31.428-.485.74-.394l2.269.693ZM20.99 9.07a.593.593 0 0 1-.245.801l-1.392.74a.587.587 0 0 1-.452.044.564.564 0 0 1-.35-.289.586.586 0 0 1 .245-.801l1.392-.74a.593.593 0 0 1 .802.245ZM9.95 5.497c.153.05.279.16.35.304l.74 1.392a.588.588 0 0 1-.246.802.564.564 0 0 1-.451.044.587.587 0 0 1-.35-.29l-.74-1.392a.595.595 0 0 1 .235-.82.595.595 0 0 1 .462-.04Zm6.023-.566a.593.593 0 0 1 .393.74l-.693 2.269a.593.593 0 1 1-1.134-.347l.693-2.268a.593.593 0 0 1 .74-.394Zm13.598 4.536a.791.791 0 0 0-.4.1.88.88 0 0 0 .067-.35c0-.55-.4-1-.89-1-.2 0-.355.075-.51.175-.222-.975-1-1.675-1.934-1.675-1.11 0-2 1-2 2.25 0 .1 0 .2.022.275-.088-.025-.155-.025-.244-.025-.622 0-1.111.55-1.111 1.25s.489 1.25 1.111 1.25h5.889c.555 0 1-.5 1-1.125s-.445-1.125-1-1.125Zm.875 5.45c.117 0 .233.02.35.08a.652.652 0 0 1-.058-.28c0-.44.35-.8.777-.8a.85.85 0 0 1 .448.14c.194-.78.875-1.34 1.691-1.34.973 0 1.75.8 1.75 1.8 0 .08 0 .16-.019.22.078-.02.136-.02.214-.02.544 0 .972.44.972 1s-.428 1-.972 1h-5.153a.884.884 0 0 1-.875-.9c0-.462.331-.838.765-.893l.11-.007Z"/></g></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#939BA8" fill-rule="evenodd" d="M.02 20.2L20 31.522 39.98 20.2 20 8.878.02 20.2zm5.363 1.856S2.03 20.132 2.03 20.134l3.353-1.902 3.354 1.9-3.354 1.924zM9 24.118l-3.354-1.923L9 20.295l3.353 1.899L9 24.118zm3.634 2.037s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075l-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zM9.13 20.006s-3.353-1.924-3.353-1.922l3.353-1.902 3.354 1.9-3.354 1.924zm3.617 2.062l-3.354-1.923 3.354-1.9 3.353 1.899-3.353 1.924zm3.634 2.037l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.637 2.075L20.3 26.297l3.353-1.9 3.354 1.899-3.354 1.924h.001zM12.78 17.916s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.616 2.062l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zM16.387 15.842l-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zm3.616 2.062L16.65 15.98l3.353-1.9 3.354 1.899-3.354 1.924v.001zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm-10.83-10.343s-3.354-1.925-3.354-1.923l3.353-1.901 3.353 1.9-3.353 1.924h.001zm3.615 2.061s-3.353-1.924-3.353-1.922l3.353-1.901 3.354 1.899-3.354 1.924zm3.635 2.037s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.9-3.353 1.923zm3.637 2.075s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.899-3.353 1.924z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><g fill="none" fill-rule="evenodd"><path fill="#939BA8" d="m20 12.451 19.98 11.322L20 35.095.02 23.773l11.052-6.262a4.85 4.85 0 0 0 1.13.484l-2.775 1.572c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-2.446-1.384c.16-.005.32-.019.478-.04l2.222 1.274 3.354-1.924-2.296-1.3c.07-.097.138-.197.202-.3l2.235 1.28.147.085.052.03 3.352-1.924-3.353-1.9-1.854 1.052c.095-.38.142-.762.144-1.139l1.63-.924Zm-.093 17.57-3.353 1.9 3.353 1.922 3.354-1.924-3.354-1.899Zm3.746-2.05-3.353 1.9 3.354 1.922 3.353-1.924-3.354-1.899Zm-7.383-.026-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899Zm-3.636-2.04-3.353 1.9c0-.002 3.353 1.923 3.353 1.923l3.353-1.925-3.353-1.898Zm7.383-.01-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.9Zm7.287-.015-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899ZM9 23.868l-3.354 1.9L9 27.691l3.353-1.924L9 23.868Zm7.381-.013-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899Zm14.53-.049-3.353 1.9c0-.002 3.353 1.923 3.353 1.923l3.353-1.925-3.353-1.898Zm-7.244 0-3.353 1.9 3.353 1.922 3.353-1.924-3.353-1.899Zm-10.92-1.988-3.354 1.9 3.354 1.923 3.353-1.924-3.353-1.899Zm-7.364-.013L2.03 23.707c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.9Zm14.648-.04-3.353 1.9c0-.002 3.353 1.923 3.353 1.923l3.353-1.924-3.353-1.9Zm7.243-.034-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899Zm7.33-.055-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.899ZM9.13 19.756l-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.9Zm7.266-.028-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899Zm7.242-.038-3.353 1.901c0-.002 3.353 1.923 3.353 1.923l3.353-1.924-3.353-1.9Zm7.329-.089-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.353-1.923-3.353-1.9Zm-10.964-1.948-3.353 1.9 3.353 1.924 3.354-1.925-3.354-1.899Zm7.328-.093-3.353 1.902c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.9Zm-3.635-2.036-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.899Z"/><path fill="#C9CDD3" d="M8.403 15.762c.15.282.05.632-.227.792l-1.392.74a.584.584 0 0 1-.45.044.593.593 0 0 1-.105-1.09l1.39-.74a.592.592 0 0 1 .784.254ZM14.7 9.09a4.15 4.15 0 1 1-2.427 7.939 4.15 4.15 0 0 1 2.427-7.94Zm-6.333 1.784a.593.593 0 1 1-.347 1.134l-2.269-.693a.602.602 0 0 1-.393-.74c.1-.31.428-.485.74-.394l2.269.693ZM20.99 9.07a.593.593 0 0 1-.245.801l-1.392.74a.587.587 0 0 1-.452.044.564.564 0 0 1-.35-.289.586.586 0 0 1 .245-.801l1.392-.74a.593.593 0 0 1 .802.245ZM9.95 5.497c.153.05.279.16.35.304l.74 1.392a.588.588 0 0 1-.246.802.564.564 0 0 1-.451.044.587.587 0 0 1-.35-.29l-.74-1.392a.595.595 0 0 1 .235-.82.595.595 0 0 1 .462-.04Zm6.023-.566a.593.593 0 0 1 .393.74l-.693 2.269a.593.593 0 1 1-1.134-.347l.693-2.268a.593.593 0 0 1 .74-.394Zm13.598 4.536a.791.791 0 0 0-.4.1.88.88 0 0 0 .067-.35c0-.55-.4-1-.89-1-.2 0-.355.075-.51.175-.222-.975-1-1.675-1.934-1.675-1.11 0-2 1-2 2.25 0 .1 0 .2.022.275-.088-.025-.155-.025-.244-.025-.622 0-1.111.55-1.111 1.25s.489 1.25 1.111 1.25h5.889c.555 0 1-.5 1-1.125s-.445-1.125-1-1.125Zm.875 5.45c.117 0 .233.02.35.08a.652.652 0 0 1-.058-.28c0-.44.35-.8.777-.8a.85.85 0 0 1 .448.14c.194-.78.875-1.34 1.691-1.34.973 0 1.75.8 1.75 1.8 0 .08 0 .16-.019.22.078-.02.136-.02.214-.02.544 0 .972.44.972 1s-.428 1-.972 1h-5.153a.884.884 0 0 1-.875-.9c0-.462.331-.838.765-.893l.11-.007Z"/></g></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><g fill="none"><path fill="#30B4C0" d="M.02 20.2L20 31.522 39.98 20.2 20 8.878.02 20.2zm5.363 1.856S2.03 20.132 2.03 20.134l3.353-1.902 3.354 1.9-3.354 1.924zM9 24.118l-3.354-1.923L9 20.295l3.353 1.899L9 24.118zm3.634 2.037s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075l-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zM9.13 20.006s-3.353-1.924-3.353-1.922l3.353-1.902 3.354 1.9-3.354 1.924zm3.617 2.062l-3.354-1.923 3.354-1.9 3.353 1.899-3.353 1.924zm3.634 2.037l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.637 2.075L20.3 26.297l3.353-1.9 3.354 1.899-3.354 1.924h.001zM12.78 17.916s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.616 2.062l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zM16.387 15.842l-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zm3.616 2.062L16.65 15.98l3.353-1.9 3.354 1.899-3.354 1.924v.001zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm-10.83-10.343s-3.354-1.925-3.354-1.923l3.353-1.901 3.353 1.9-3.353 1.924h.001zm3.615 2.061s-3.353-1.924-3.353-1.922l3.353-1.901 3.354 1.899-3.354 1.924zm3.635 2.037s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.9-3.353 1.923zm3.637 2.075s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.899-3.353 1.924z"/><path fill="#FFF" d="M11.385 21.704v-5.7c0-.078.174-1.564.522-4.46l4.418-2.412 5.953 3.492v1.168l4.912 2.864v2.615l-.387.182-9.347 5.58-6.07-3.329h-.001z"/><path fill="#30B4C0" d="M22.495 19.058l4.642-2.433-4.642-2.767z"/><path fill="#30B4C0" fill-opacity=".5" d="M11.426 15.832l5.848 3.3.431-3.969-5.824-3.436z"/><path fill="#30B4C0" d="M17.794 15.046l4.423-2.493-5.94-3.41-4.364 2.439 5.881 3.464zm-.505 4.267l-5.88-3.337v5.738l5.88 3.302v-5.703zm9.661.134l.229-.138v-2.528l-4.856 2.537V12.65l-4.454 2.507-.437 4.185v5.728l.402-.24v-.126l-.002-.011c-.002-.005-.005-.01-.005-.015l-.034-.29.001-.01v-.01l.033-.36.002-.008.001-.009.11-.376c0-.003.002-.004.003-.007s0-.005.002-.008l.176-.36.224-.35c.008-.01.009-.014.01-.016l.27-.274.004-.002.28-.227.012-.006c.004-.002.006-.006.011-.007l.277-.111c.004-.002.008-.002.012-.002l.01-.004.269-.034h.017l.021.004.22.077.015.008.015.009.176.154.013.016.01.014.11.25c.003.003.002.007.003.011.002.005.004.009.004.013l.042.317v.023l-.042.351-.002.008-.001.008 4.616-2.71-.035-.08-.002-.01-.005-.013-.041-.308v-.023l.041-.351.003-.007.11-.376.173-.38.234-.347a.019.019 0 0 1 .005-.005l.004-.006.26-.274c.007-.005.008-.007.01-.01l.285-.222.012-.006c.004-.002.006-.005.01-.006l.278-.111c.003-.002.007-.002.01-.002l.011-.004.26-.034h.019l.02.004.228.077c.006.002.01.006.016.009.004.003.01.004.015.009l.176.153c.006.006.01.01.013.016l.01.014.11.25c.003.004.003.009.003.013l.004.013.034.317v.019l-.034.35-.004.01v.008z"/><path fill="#30B4C0" d="M18.098 24.861l.15.138.183.064.234-.022.257-.118.262-.187.259-.279.21-.322.17-.356.04-.138h.001v-.001l.065-.216.04-.33-.039-.293-.096-.218-.148-.129-.184-.064-.237.03-.254.102-.264.21-.258.264-.21.33-.171.348-.105.36-.032.342.031.267.062.142.034.076zm6.849-4.021l.14.136.19.065.229-.03.265-.112.261-.185.25-.28.22-.322.17-.356.04-.138v-.001l.065-.214.031-.332-.03-.293-.096-.217-.148-.13-.19-.064-.23.03-.256.102-.271.212-.25.263-.219.321-.162.355-.105.355-.04.331.04.284.062.143.034.077z"/></g></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><g fill="none"><path fill="#30B4C0" d="M.02 20.2 20 31.522 39.98 20.2 20 8.878.02 20.2zm5.363 1.856S2.03 20.132 2.03 20.134l3.353-1.902 3.354 1.9-3.354 1.924zM9 24.118l-3.354-1.923L9 20.295l3.353 1.899L9 24.118zm3.634 2.037s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm3.636 2.04-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zM9.13 20.006s-3.353-1.924-3.353-1.922l3.353-1.902 3.354 1.9-3.354 1.924zm3.617 2.062-3.354-1.923 3.354-1.9 3.353 1.899-3.353 1.924zm3.634 2.037-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.637 2.075L20.3 26.297l3.353-1.9 3.354 1.899-3.354 1.924h.001zM12.78 17.916s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.616 2.062-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zM16.387 15.842l-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zm3.616 2.062L16.65 15.98l3.353-1.9 3.354 1.899-3.354 1.924v.001zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm-10.83-10.343s-3.354-1.925-3.354-1.923l3.353-1.901 3.353 1.9-3.353 1.924h.001zm3.615 2.061s-3.353-1.924-3.353-1.922l3.353-1.901 3.354 1.899-3.354 1.924zm3.635 2.037s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.9-3.353 1.923zm3.637 2.075s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.899-3.353 1.924z"/><path fill="#FFF" d="M11.385 21.704v-5.7c0-.078.174-1.564.522-4.46l4.418-2.412 5.953 3.492v1.168l4.912 2.864v2.615l-.387.182-9.347 5.58-6.07-3.329h-.001z"/><path fill="#30B4C0" d="m22.495 19.058 4.642-2.433-4.642-2.767z"/><path fill="#30B4C0" fill-opacity=".5" d="m11.426 15.832 5.848 3.3.431-3.969-5.824-3.436z"/><path fill="#30B4C0" d="m17.794 15.046 4.423-2.493-5.94-3.41-4.364 2.439 5.881 3.464zm-.505 4.267-5.88-3.337v5.738l5.88 3.302v-5.703zm9.661.134.229-.138v-2.528l-4.856 2.537V12.65l-4.454 2.507-.437 4.185v5.728l.402-.24v-.126l-.002-.011c-.002-.005-.005-.01-.005-.015l-.034-.29.001-.01v-.01l.033-.36.002-.008.001-.009.11-.376c0-.003.002-.004.003-.007s0-.005.002-.008l.176-.36.224-.35c.008-.01.009-.014.01-.016l.27-.274.004-.002.28-.227.012-.006c.004-.002.006-.006.011-.007l.277-.111c.004-.002.008-.002.012-.002l.01-.004.269-.034h.017l.021.004.22.077.015.008.015.009.176.154.013.016.01.014.11.25c.003.003.002.007.003.011.002.005.004.009.004.013l.042.317v.023l-.042.351-.002.008-.001.008 4.616-2.71-.035-.08-.002-.01-.005-.013-.041-.308v-.023l.041-.351.003-.007.11-.376.173-.38.234-.347a.019.019 0 0 1 .005-.005l.004-.006.26-.274c.007-.005.008-.007.01-.01l.285-.222.012-.006c.004-.002.006-.005.01-.006l.278-.111c.003-.002.007-.002.01-.002l.011-.004.26-.034h.019l.02.004.228.077c.006.002.01.006.016.009.004.003.01.004.015.009l.176.153c.006.006.01.01.013.016l.01.014.11.25c.003.004.003.009.003.013l.004.013.034.317v.019l-.034.35-.004.01v.008z"/><path fill="#30B4C0" d="m18.098 24.861.15.138.183.064.234-.022.257-.118.262-.187.259-.279.21-.322.17-.356.04-.138h.001v-.001l.065-.216.04-.33-.039-.293-.096-.218-.148-.129-.184-.064-.237.03-.254.102-.264.21-.258.264-.21.33-.171.348-.105.36-.032.342.031.267.062.142.034.076zm6.849-4.021.14.136.19.065.229-.03.265-.112.261-.185.25-.28.22-.322.17-.356.04-.138v-.001l.065-.214.031-.332-.03-.293-.096-.217-.148-.13-.19-.064-.23.03-.256.102-.271.212-.25.263-.219.321-.162.355-.105.355-.04.331.04.284.062.143.034.077z"/></g></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><g fill="none"><path fill="#939BA8" d="M.02 20.2L20 31.522 39.98 20.2 20 8.878.02 20.2zm5.363 1.856S2.03 20.132 2.03 20.134l3.353-1.902 3.354 1.9-3.354 1.924zM9 24.118l-3.354-1.923L9 20.295l3.353 1.899L9 24.118zm3.634 2.037s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075l-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zM9.13 20.006s-3.353-1.924-3.353-1.922l3.353-1.902 3.354 1.9-3.354 1.924zm3.617 2.062l-3.354-1.923 3.354-1.9 3.353 1.899-3.353 1.924zm3.634 2.037l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.637 2.075L20.3 26.297l3.353-1.9 3.354 1.899-3.354 1.924h.001zM12.78 17.916s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.616 2.062l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zM16.387 15.842l-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zm3.616 2.062L16.65 15.98l3.353-1.9 3.354 1.899-3.354 1.924v.001zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm-10.83-10.343s-3.354-1.925-3.354-1.923l3.353-1.901 3.353 1.9-3.353 1.924h.001zm3.615 2.061s-3.353-1.924-3.353-1.922l3.353-1.901 3.354 1.899-3.354 1.924zm3.635 2.037s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.9-3.353 1.923zm3.637 2.075s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.899-3.353 1.924z"/><path fill="#FFF" d="M11.385 21.704v-5.7c0-.078.174-1.564.522-4.46l4.418-2.412 5.953 3.492v1.168l4.912 2.864v2.615l-.387.182-9.347 5.58-6.07-3.329h-.001z"/><path fill="#939BA8" d="M22.495 19.058l4.642-2.433-4.642-2.767z"/><path fill="#939BA8" fill-opacity=".5" d="M11.426 15.832l5.848 3.3.431-3.969-5.824-3.436z"/><path fill="#939BA8" d="M17.794 15.046l4.423-2.493-5.94-3.41-4.364 2.439 5.881 3.464zm-.505 4.267l-5.88-3.337v5.738l5.88 3.302v-5.703zm9.661.134l.229-.138v-2.528l-4.856 2.537V12.65l-4.454 2.507-.437 4.185v5.728l.402-.24v-.126l-.002-.011c-.002-.005-.005-.01-.005-.015l-.034-.29.001-.01v-.01l.033-.36.002-.008.001-.009.11-.376c0-.003.002-.004.003-.007s0-.005.002-.008l.176-.36.224-.35c.008-.01.009-.014.01-.016l.27-.274.004-.002.28-.227.012-.006c.004-.002.006-.006.011-.007l.277-.111c.004-.002.008-.002.012-.002l.01-.004.269-.034h.017l.021.004.22.077.015.008.015.009.176.154.013.016.01.014.11.25c.003.003.002.007.003.011.002.005.004.009.004.013l.042.317v.023l-.042.351-.002.008-.001.008 4.616-2.71-.035-.08-.002-.01-.005-.013-.041-.308v-.023l.041-.351.003-.007.11-.376.173-.38.234-.347a.019.019 0 0 1 .005-.005l.004-.006.26-.274c.007-.005.008-.007.01-.01l.285-.222.012-.006c.004-.002.006-.005.01-.006l.278-.111c.003-.002.007-.002.01-.002l.011-.004.26-.034h.019l.02.004.228.077c.006.002.01.006.016.009.004.003.01.004.015.009l.176.153c.006.006.01.01.013.016l.01.014.11.25c.003.004.003.009.003.013l.004.013.034.317v.019l-.034.35-.004.01v.008z"/><path fill="#939BA8" d="M18.098 24.861l.15.138.183.064.234-.022.257-.118.262-.187.259-.279.21-.322.17-.356.04-.138h.001v-.001l.065-.216.04-.33-.039-.293-.096-.218-.148-.129-.184-.064-.237.03-.254.102-.264.21-.258.264-.21.33-.171.348-.105.36-.032.342.031.267.062.142.034.076zm6.849-4.021l.14.136.19.065.229-.03.265-.112.261-.185.25-.28.22-.322.17-.356.04-.138v-.001l.065-.214.031-.332-.03-.293-.096-.217-.148-.13-.19-.064-.23.03-.256.102-.271.212-.25.263-.219.321-.162.355-.105.355-.04.331.04.284.062.143.034.077z"/></g></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><g fill="none"><path fill="#939BA8" d="M.02 20.2 20 31.522 39.98 20.2 20 8.878.02 20.2zm5.363 1.856S2.03 20.132 2.03 20.134l3.353-1.902 3.354 1.9-3.354 1.924zM9 24.118l-3.354-1.923L9 20.295l3.353 1.899L9 24.118zm3.634 2.037s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm3.636 2.04-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zM9.13 20.006s-3.353-1.924-3.353-1.922l3.353-1.902 3.354 1.9-3.354 1.924zm3.617 2.062-3.354-1.923 3.354-1.9 3.353 1.899-3.353 1.924zm3.634 2.037-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.637 2.075L20.3 26.297l3.353-1.9 3.354 1.899-3.354 1.924h.001zM12.78 17.916s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.616 2.062-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zM16.387 15.842l-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zm3.616 2.062L16.65 15.98l3.353-1.9 3.354 1.899-3.354 1.924v.001zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm-10.83-10.343s-3.354-1.925-3.354-1.923l3.353-1.901 3.353 1.9-3.353 1.924h.001zm3.615 2.061s-3.353-1.924-3.353-1.922l3.353-1.901 3.354 1.899-3.354 1.924zm3.635 2.037s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.9-3.353 1.923zm3.637 2.075s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.899-3.353 1.924z"/><path fill="#FFF" d="M11.385 21.704v-5.7c0-.078.174-1.564.522-4.46l4.418-2.412 5.953 3.492v1.168l4.912 2.864v2.615l-.387.182-9.347 5.58-6.07-3.329h-.001z"/><path fill="#939BA8" d="m22.495 19.058 4.642-2.433-4.642-2.767z"/><path fill="#939BA8" fill-opacity=".5" d="m11.426 15.832 5.848 3.3.431-3.969-5.824-3.436z"/><path fill="#939BA8" d="m17.794 15.046 4.423-2.493-5.94-3.41-4.364 2.439 5.881 3.464zm-.505 4.267-5.88-3.337v5.738l5.88 3.302v-5.703zm9.661.134.229-.138v-2.528l-4.856 2.537V12.65l-4.454 2.507-.437 4.185v5.728l.402-.24v-.126l-.002-.011c-.002-.005-.005-.01-.005-.015l-.034-.29.001-.01v-.01l.033-.36.002-.008.001-.009.11-.376c0-.003.002-.004.003-.007s0-.005.002-.008l.176-.36.224-.35c.008-.01.009-.014.01-.016l.27-.274.004-.002.28-.227.012-.006c.004-.002.006-.006.011-.007l.277-.111c.004-.002.008-.002.012-.002l.01-.004.269-.034h.017l.021.004.22.077.015.008.015.009.176.154.013.016.01.014.11.25c.003.003.002.007.003.011.002.005.004.009.004.013l.042.317v.023l-.042.351-.002.008-.001.008 4.616-2.71-.035-.08-.002-.01-.005-.013-.041-.308v-.023l.041-.351.003-.007.11-.376.173-.38.234-.347a.019.019 0 0 1 .005-.005l.004-.006.26-.274c.007-.005.008-.007.01-.01l.285-.222.012-.006c.004-.002.006-.005.01-.006l.278-.111c.003-.002.007-.002.01-.002l.011-.004.26-.034h.019l.02.004.228.077c.006.002.01.006.016.009.004.003.01.004.015.009l.176.153c.006.006.01.01.013.016l.01.014.11.25c.003.004.003.009.003.013l.004.013.034.317v.019l-.034.35-.004.01v.008z"/><path fill="#939BA8" d="m18.098 24.861.15.138.183.064.234-.022.257-.118.262-.187.259-.279.21-.322.17-.356.04-.138h.001v-.001l.065-.216.04-.33-.039-.293-.096-.218-.148-.129-.184-.064-.237.03-.254.102-.264.21-.258.264-.21.33-.171.348-.105.36-.032.342.031.267.062.142.034.076zm6.849-4.021.14.136.19.065.229-.03.265-.112.261-.185.25-.28.22-.322.17-.356.04-.138v-.001l.065-.214.031-.332-.03-.293-.096-.217-.148-.13-.19-.064-.23.03-.256.102-.271.212-.25.263-.219.321-.162.355-.105.355-.04.331.04.284.062.143.034.077z"/></g></svg>
@@ -1,12 +1 @@
1
- <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M0 20.322L19.98 31.644L39.96 20.322L19.98 9L0 20.322ZM5.363 22.178C5.363 22.178 2.01 20.254 2.01 20.256L5.363 18.354L8.717 20.254L5.363 22.178V22.178ZM8.98 24.24L5.626 22.317L8.98 20.417L12.333 22.316L8.98 24.24ZM12.614 26.277C12.614 26.277 9.261 24.352 9.261 24.354L12.614 22.454L15.967 24.352L12.614 26.277V26.277ZM16.25 28.317L12.897 26.394L16.25 24.494L19.603 26.393L16.25 28.317V28.317ZM19.887 30.392L16.534 28.469L19.887 26.569L23.241 28.468L19.887 30.392ZM9.11 20.128C9.11 20.128 5.757 18.204 5.757 18.206L9.11 16.304L12.464 18.204L9.11 20.128V20.128ZM12.727 22.19L9.373 20.267L12.727 18.367L16.08 20.266L12.727 22.19V22.19ZM16.361 24.227L13.008 22.304L16.361 20.404L19.714 22.303L16.361 24.227V24.227ZM19.997 26.267C19.997 26.267 16.644 24.343 16.644 24.345L19.997 22.443L23.35 24.343L19.997 26.267V26.267ZM23.634 28.342L20.28 26.419L23.633 24.519L26.987 26.418L23.633 28.342H23.634V28.342ZM12.76 18.038C12.76 18.038 9.407 16.114 9.407 16.116L12.76 14.214L16.113 16.114L12.76 18.038ZM16.376 20.1L13.023 18.177L16.376 16.277L19.729 18.176L16.376 20.1ZM20.011 22.137C20.011 22.137 16.658 20.212 16.658 20.214L20.011 18.313L23.364 20.213L20.011 22.137V22.137ZM23.647 24.177L20.294 22.254L23.647 20.354L27 22.253L23.647 24.177ZM27.284 26.252L23.931 24.329L27.284 22.429L30.637 24.328L27.284 26.252V26.252ZM16.367 15.964L13.014 14.041L16.367 12.141L19.721 14.04L16.367 15.964V15.964ZM19.983 18.026L16.63 16.102L19.983 14.202L23.337 16.101L19.983 18.025V18.026ZM23.618 20.063C23.618 20.063 20.265 18.138 20.265 18.14L23.618 16.239L26.971 18.139L23.618 20.063ZM27.254 22.103L23.901 20.18L27.254 18.28L30.607 20.179L27.254 22.103V22.103ZM30.891 24.178C30.891 24.178 27.538 22.253 27.538 22.255L30.891 20.355L34.244 22.253L30.891 24.178V24.178ZM20.061 13.835C20.061 13.835 16.707 11.91 16.707 11.912L20.06 10.011L23.413 11.911L20.06 13.835H20.061V13.835ZM23.676 15.896C23.676 15.896 20.323 13.972 20.323 13.974L23.676 12.073L27.03 13.972L23.676 15.896ZM27.311 17.933C27.311 17.933 23.958 16.009 23.958 16.011L27.311 14.109L30.664 16.009L27.311 17.933ZM30.947 19.973C30.947 19.973 27.594 18.049 27.594 18.051L30.947 16.15L34.3 18.05L30.947 19.973V19.973ZM34.584 22.048C34.584 22.048 31.231 20.124 31.231 20.126L34.584 18.225L37.937 20.124L34.584 22.048Z" fill="#30B4C0"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M12.352 3.14533C12.4221 3.2154 12.4698 3.3047 12.489 3.40192C12.5082 3.49913 12.4981 3.59987 12.46 3.69133C12.1552 4.42281 11.9989 5.20757 12 6C12 7.5913 12.6321 9.11742 13.7574 10.2426C14.8826 11.3679 16.4087 12 18 12C18.7924 12.0011 19.5772 11.8448 20.3087 11.54C20.4001 11.5019 20.5007 11.4919 20.5978 11.5111C20.695 11.5303 20.7842 11.5779 20.8543 11.6478C20.9243 11.7178 20.972 11.807 20.9913 11.9041C21.0106 12.0012 21.0006 12.1019 20.9627 12.1933C20.4307 13.4688 19.5332 14.5584 18.3831 15.3248C17.2331 16.0911 15.882 16.5 14.5 16.5C10.634 16.5 7.5 13.366 7.5 9.5C7.5 6.588 9.278 4.092 11.8067 3.03733C11.898 2.99935 11.9986 2.98933 12.0957 3.00856C12.1928 3.02778 12.282 3.07538 12.352 3.14533V3.14533Z" fill="#30B4C0"/>
4
- <g clip-path="url(#clip0_1_2)">
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M25.5 4.25C25.5815 4.25002 25.6607 4.27657 25.7258 4.32565C25.7908 4.37473 25.8381 4.44365 25.8605 4.522L26.267 5.945C26.3545 6.25146 26.5187 6.53055 26.7441 6.75591C26.9695 6.98128 27.2485 7.14548 27.555 7.233L28.978 7.6395C29.0563 7.66193 29.1252 7.70924 29.1742 7.77428C29.2232 7.83932 29.2497 7.91855 29.2497 8C29.2497 8.08145 29.2232 8.16068 29.1742 8.22572C29.1252 8.29076 29.0563 8.33807 28.978 8.3605L27.555 8.767C27.2485 8.85452 26.9695 9.01872 26.7441 9.24409C26.5187 9.46945 26.3545 9.74854 26.267 10.055L25.8605 11.478C25.8381 11.5563 25.7908 11.6252 25.7257 11.6742C25.6607 11.7232 25.5815 11.7497 25.5 11.7497C25.4186 11.7497 25.3393 11.7232 25.2743 11.6742C25.2092 11.6252 25.1619 11.5563 25.1395 11.478L24.733 10.055C24.6455 9.74854 24.4813 9.46945 24.2559 9.24409C24.0306 9.01872 23.7515 8.85452 23.445 8.767L22.022 8.3605C21.9437 8.33807 21.8748 8.29076 21.8258 8.22572C21.7768 8.16068 21.7503 8.08145 21.7503 8C21.7503 7.91855 21.7768 7.83932 21.8258 7.77428C21.8748 7.70924 21.9437 7.66193 22.022 7.6395L23.445 7.233C23.7515 7.14548 24.0306 6.98128 24.2559 6.75591C24.4813 6.53055 24.6455 6.25146 24.733 5.945L25.1395 4.522C25.1619 4.44365 25.2092 4.37473 25.2742 4.32565C25.3393 4.27657 25.4185 4.25002 25.5 4.25ZM30 2.75C30.0837 2.74995 30.1649 2.77788 30.2309 2.82934C30.2968 2.8808 30.3437 2.95284 30.364 3.034L30.493 3.552C30.611 4.022 30.978 4.389 31.448 4.507L31.966 4.636C32.0473 4.65614 32.1195 4.70293 32.1712 4.7689C32.2228 4.83487 32.2508 4.91623 32.2508 5C32.2508 5.08377 32.2228 5.16513 32.1712 5.2311C32.1195 5.29707 32.0473 5.34386 31.966 5.364L31.448 5.493C30.978 5.611 30.611 5.978 30.493 6.448L30.364 6.966C30.3439 7.04731 30.2971 7.11954 30.2311 7.17117C30.1651 7.22279 30.0838 7.25084 30 7.25084C29.9162 7.25084 29.8349 7.22279 29.7689 7.17117C29.7029 7.11954 29.6561 7.04731 29.636 6.966L29.507 6.448C29.4493 6.21721 29.33 6.00645 29.1618 5.83824C28.9936 5.67003 28.7828 5.55069 28.552 5.493L28.034 5.364C27.9527 5.34386 27.8805 5.29707 27.8288 5.2311C27.7772 5.16513 27.7492 5.08377 27.7492 5C27.7492 4.91623 27.7772 4.83487 27.8288 4.7689C27.8805 4.70293 27.9527 4.65614 28.034 4.636L28.552 4.507C28.7828 4.44931 28.9936 4.32997 29.1618 4.16176C29.33 3.99355 29.4493 3.78279 29.507 3.552L29.636 3.034C29.6563 2.95284 29.7032 2.8808 29.7691 2.82934C29.8351 2.77788 29.9163 2.74995 30 2.75V2.75ZM29.25 9.5C29.3288 9.49995 29.4055 9.52471 29.4694 9.57075C29.5333 9.61679 29.5811 9.68178 29.606 9.7565L29.803 10.348C29.878 10.5715 30.053 10.7475 30.277 10.822L30.8685 11.0195C30.943 11.0445 31.0077 11.0923 31.0536 11.1561C31.0995 11.2198 31.1242 11.2964 31.1242 11.375C31.1242 11.4536 31.0995 11.5302 31.0536 11.5939C31.0077 11.6577 30.943 11.7055 30.8685 11.7305L30.277 11.928C30.0535 12.003 29.8775 12.178 29.803 12.402L29.6055 12.9935C29.5805 13.068 29.5327 13.1327 29.4689 13.1786C29.4052 13.2245 29.3286 13.2491 29.25 13.2491C29.1714 13.2491 29.0949 13.2245 29.0311 13.1786C28.9673 13.1327 28.9195 13.068 28.8945 12.9935L28.697 12.402C28.6602 12.2916 28.5982 12.1914 28.5159 12.1091C28.4336 12.0268 28.3334 11.9648 28.223 11.928L27.6315 11.7305C27.557 11.7055 27.4923 11.6577 27.4464 11.5939C27.4005 11.5302 27.3759 11.4536 27.3759 11.375C27.3759 11.2964 27.4005 11.2198 27.4464 11.1561C27.4923 11.0923 27.557 11.0445 27.6315 11.0195L28.223 10.822C28.4465 10.747 28.6225 10.572 28.697 10.348L28.8945 9.7565C28.9194 9.68186 28.9671 9.61693 29.0309 9.57089C29.0947 9.52486 29.1713 9.50006 29.25 9.5V9.5Z" fill="#30B4C0"/>
6
- </g>
7
- <defs>
8
- <clipPath id="clip0_1_2">
9
- <rect width="12" height="12" fill="white" transform="translate(21 2)"/>
10
- </clipPath>
11
- </defs>
12
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><g fill="none" fill-rule="evenodd"><path fill="#30B4C0" d="m21.11 13.38 18.87 10.69L20 35.394.02 24.07l9.826-5.566a9 9 0 0 0 1.374.344l-1.793 1.016c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-1.815-1.028c.134-.023.266-.05.398-.08l1.671.958 3.354-1.924-1.373-.777c.1-.079.198-.16.294-.243.497.286.965.555 1.22.7l.147.085.052.03 3.352-1.924-2.68-1.52a9.068 9.068 0 0 0 .357-.76Zm-1.203 16.938-3.353 1.9 3.353 1.923 3.354-1.924-3.354-1.9Zm3.746-2.05-3.353 1.9 3.353 1.923 3.354-1.924-3.354-1.9Zm-7.383-.025-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm-3.636-2.04-3.353 1.9c0-.002 3.353 1.923 3.353 1.923l3.353-1.925-3.353-1.898Zm7.383-.011-3.353 1.902c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.9Zm7.287-.014-3.353 1.9L27.304 30l3.353-1.924-3.353-1.9ZM9 24.166l-3.354 1.9L9 27.989l3.353-1.924L9 24.165Zm7.381-.013-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm14.53-.05-3.353 1.9 3.353 1.924 3.353-1.925-3.353-1.898Zm-7.244 0-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm-10.92-1.987-3.354 1.9 3.354 1.923 3.353-1.924-3.353-1.9Zm-7.364-.013L2.03 24.005c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.9Zm14.648-.041-3.353 1.9 3.353 1.924 3.353-1.924-3.353-1.9Zm7.243-.033-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm7.33-.055-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9ZM9.13 20.053l-3.353 1.902c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.9Zm7.266-.027-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm7.242-.038-3.353 1.9 3.353 1.924 3.353-1.924-3.353-1.9Zm7.329-.09L27.614 21.8c0-.002 3.353 1.922 3.353 1.922l3.353-1.923-3.353-1.9Zm-10.964-1.947-3.353 1.9 3.353 1.924 3.354-1.925-3.354-1.9Zm7.328-.093-3.353 1.902c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.9Zm-3.635-2.036-3.353 1.9 3.353 1.923 3.354-1.924-3.354-1.9Z"/><path fill="#97D9DF" d="M11.11 4.753a.5.5 0 0 1 .108.546 6 6 0 0 0 7.849 7.849.5.5 0 0 1 .654.653 7.002 7.002 0 0 1-13.463-2.693 7.001 7.001 0 0 1 4.307-6.463.5.5 0 0 1 .545.108ZM24 6.37a.375.375 0 0 1 .36.273l.407 1.423a1.874 1.874 0 0 0 1.288 1.288l1.423.406a.375.375 0 0 1 0 .721l-1.423.407a1.875 1.875 0 0 0-1.288 1.288l-.407 1.423a.374.374 0 0 1-.72 0l-.407-1.423a1.874 1.874 0 0 0-1.288-1.288l-1.423-.407a.375.375 0 0 1 0-.72l1.423-.407a1.874 1.874 0 0 0 1.288-1.288l.406-1.423A.375.375 0 0 1 24 6.37Zm4.5-1.5a.375.375 0 0 1 .364.285l.129.518c.118.47.485.837.955.955l.518.129a.375.375 0 0 1 0 .728l-.518.129c-.47.118-.837.485-.955.955l-.129.518a.375.375 0 0 1-.728 0l-.129-.518a1.313 1.313 0 0 0-.955-.955l-.518-.13a.375.375 0 0 1 0-.727l.518-.13a1.312 1.312 0 0 0 .955-.954l.129-.518a.375.375 0 0 1 .364-.284Zm-.75 6.75a.375.375 0 0 1 .356.257l.197.592c.075.223.25.4.474.474l.591.197a.375.375 0 0 1 0 .711l-.591.198a.75.75 0 0 0-.474.474l-.198.591a.375.375 0 0 1-.71 0l-.198-.591a.75.75 0 0 0-.474-.474l-.591-.198a.375.375 0 0 1 0-.71l.591-.198a.75.75 0 0 0 .474-.474l.198-.592a.375.375 0 0 1 .355-.256Z"/></g></svg>
@@ -1,12 +1 @@
1
- <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M0.0199966 20.2L20 31.522L39.98 20.2L20 8.878L0.0199966 20.2ZM5.383 22.056C5.383 22.056 2.03 20.132 2.03 20.134L5.383 18.232L8.737 20.132L5.383 22.056V22.056ZM9 24.118L5.646 22.195L9 20.295L12.353 22.194L9 24.118ZM12.634 26.155C12.634 26.155 9.281 24.23 9.281 24.232L12.634 22.332L15.987 24.23L12.634 26.155V26.155ZM16.27 28.195L12.917 26.272L16.27 24.372L19.623 26.271L16.27 28.195V28.195ZM19.907 30.27L16.554 28.347L19.907 26.447L23.261 28.346L19.907 30.27ZM9.13 20.006C9.13 20.006 5.777 18.082 5.777 18.084L9.13 16.182L12.484 18.082L9.13 20.006V20.006ZM12.747 22.068L9.393 20.145L12.747 18.245L16.1 20.144L12.747 22.068V22.068ZM16.381 24.105L13.028 22.182L16.381 20.282L19.734 22.181L16.381 24.105V24.105ZM20.017 26.145C20.017 26.145 16.664 24.221 16.664 24.223L20.017 22.321L23.37 24.221L20.017 26.145V26.145ZM23.654 28.22L20.3 26.297L23.653 24.397L27.007 26.296L23.653 28.22H23.654V28.22ZM12.78 17.916C12.78 17.916 9.427 15.992 9.427 15.994L12.78 14.092L16.133 15.992L12.78 17.916ZM16.396 19.978L13.043 18.055L16.396 16.155L19.749 18.054L16.396 19.978ZM20.031 22.015C20.031 22.015 16.678 20.09 16.678 20.092L20.031 18.191L23.384 20.091L20.031 22.015V22.015ZM23.667 24.055L20.314 22.132L23.667 20.232L27.02 22.131L23.667 24.055ZM27.304 26.13L23.951 24.207L27.304 22.307L30.657 24.206L27.304 26.13V26.13ZM16.387 15.842L13.034 13.919L16.387 12.019L19.741 13.918L16.387 15.842V15.842ZM20.003 17.904L16.65 15.98L20.003 14.08L23.357 15.979L20.003 17.903V17.904ZM23.638 19.941C23.638 19.941 20.285 18.016 20.285 18.018L23.638 16.117L26.991 18.017L23.638 19.941ZM27.274 21.981L23.921 20.058L27.274 18.158L30.627 20.057L27.274 21.981V21.981ZM30.911 24.056C30.911 24.056 27.558 22.131 27.558 22.133L30.911 20.233L34.264 22.131L30.911 24.056V24.056ZM20.081 13.713C20.081 13.713 16.727 11.788 16.727 11.79L20.08 9.889L23.433 11.789L20.08 13.713H20.081V13.713ZM23.696 15.774C23.696 15.774 20.343 13.85 20.343 13.852L23.696 11.951L27.05 13.85L23.696 15.774ZM27.331 17.811C27.331 17.811 23.978 15.887 23.978 15.889L27.331 13.987L30.684 15.887L27.331 17.811ZM30.967 19.851C30.967 19.851 27.614 17.927 27.614 17.929L30.967 16.028L34.32 17.928L30.967 19.851V19.851ZM34.604 21.926C34.604 21.926 31.251 20.002 31.251 20.004L34.604 18.103L37.957 20.002L34.604 21.926Z" fill="#939BA8"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M12.352 3.14533C12.4221 3.2154 12.4698 3.3047 12.489 3.40192C12.5082 3.49913 12.4981 3.59987 12.46 3.69133C12.1552 4.42281 11.9989 5.20757 12 6C12 7.5913 12.6321 9.11742 13.7574 10.2426C14.8826 11.3679 16.4087 12 18 12C18.7924 12.0011 19.5772 11.8448 20.3087 11.54C20.4001 11.5019 20.5007 11.4919 20.5978 11.5111C20.695 11.5303 20.7842 11.5779 20.8543 11.6478C20.9243 11.7178 20.972 11.807 20.9913 11.9041C21.0106 12.0012 21.0006 12.1019 20.9627 12.1933C20.4307 13.4688 19.5332 14.5584 18.3831 15.3248C17.2331 16.0911 15.882 16.5 14.5 16.5C10.634 16.5 7.5 13.366 7.5 9.5C7.5 6.588 9.278 4.092 11.8067 3.03733C11.898 2.99935 11.9986 2.98933 12.0957 3.00856C12.1928 3.02778 12.282 3.07538 12.352 3.14533V3.14533Z" fill="#939BA8"/>
4
- <g clip-path="url(#clip0_1_4)">
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M25.5 4.25C25.5815 4.25002 25.6607 4.27657 25.7258 4.32565C25.7908 4.37473 25.8381 4.44365 25.8605 4.522L26.267 5.945C26.3545 6.25146 26.5187 6.53055 26.7441 6.75591C26.9694 6.98128 27.2485 7.14548 27.555 7.233L28.978 7.6395C29.0563 7.66193 29.1252 7.70924 29.1742 7.77428C29.2232 7.83932 29.2497 7.91855 29.2497 8C29.2497 8.08145 29.2232 8.16068 29.1742 8.22572C29.1252 8.29076 29.0563 8.33807 28.978 8.3605L27.555 8.767C27.2485 8.85452 26.9694 9.01872 26.7441 9.24409C26.5187 9.46945 26.3545 9.74854 26.267 10.055L25.8605 11.478C25.8381 11.5563 25.7908 11.6252 25.7257 11.6742C25.6607 11.7232 25.5814 11.7497 25.5 11.7497C25.4185 11.7497 25.3393 11.7232 25.2743 11.6742C25.2092 11.6252 25.1619 11.5563 25.1395 11.478L24.733 10.055C24.6455 9.74854 24.4813 9.46945 24.2559 9.24409C24.0305 9.01872 23.7515 8.85452 23.445 8.767L22.022 8.3605C21.9437 8.33807 21.8748 8.29076 21.8258 8.22572C21.7768 8.16068 21.7503 8.08145 21.7503 8C21.7503 7.91855 21.7768 7.83932 21.8258 7.77428C21.8748 7.70924 21.9437 7.66193 22.022 7.6395L23.445 7.233C23.7515 7.14548 24.0305 6.98128 24.2559 6.75591C24.4813 6.53055 24.6455 6.25146 24.733 5.945L25.1395 4.522C25.1619 4.44365 25.2092 4.37473 25.2742 4.32565C25.3393 4.27657 25.4185 4.25002 25.5 4.25ZM30 2.75C30.0837 2.74995 30.1649 2.77788 30.2309 2.82934C30.2968 2.8808 30.3437 2.95284 30.364 3.034L30.493 3.552C30.611 4.022 30.978 4.389 31.448 4.507L31.966 4.636C32.0473 4.65614 32.1195 4.70293 32.1712 4.7689C32.2228 4.83487 32.2508 4.91623 32.2508 5C32.2508 5.08377 32.2228 5.16513 32.1712 5.2311C32.1195 5.29707 32.0473 5.34386 31.966 5.364L31.448 5.493C30.978 5.611 30.611 5.978 30.493 6.448L30.364 6.966C30.3439 7.04731 30.2971 7.11954 30.2311 7.17117C30.1651 7.22279 30.0838 7.25084 30 7.25084C29.9162 7.25084 29.8349 7.22279 29.7689 7.17117C29.7029 7.11954 29.6561 7.04731 29.636 6.966L29.507 6.448C29.4493 6.21721 29.33 6.00645 29.1618 5.83824C28.9935 5.67003 28.7828 5.55069 28.552 5.493L28.034 5.364C27.9527 5.34386 27.8805 5.29707 27.8288 5.2311C27.7772 5.16513 27.7492 5.08377 27.7492 5C27.7492 4.91623 27.7772 4.83487 27.8288 4.7689C27.8805 4.70293 27.9527 4.65614 28.034 4.636L28.552 4.507C28.7828 4.44931 28.9935 4.32997 29.1618 4.16176C29.33 3.99355 29.4493 3.78279 29.507 3.552L29.636 3.034C29.6563 2.95284 29.7032 2.8808 29.7691 2.82934C29.8351 2.77788 29.9163 2.74995 30 2.75V2.75ZM29.25 9.5C29.3288 9.49995 29.4055 9.52471 29.4694 9.57075C29.5333 9.61679 29.5811 9.68178 29.606 9.7565L29.803 10.348C29.878 10.5715 30.053 10.7475 30.277 10.822L30.8685 11.0195C30.943 11.0445 31.0077 11.0923 31.0536 11.1561C31.0995 11.2198 31.1241 11.2964 31.1241 11.375C31.1241 11.4536 31.0995 11.5302 31.0536 11.5939C31.0077 11.6577 30.943 11.7055 30.8685 11.7305L30.277 11.928C30.0535 12.003 29.8775 12.178 29.803 12.402L29.6055 12.9935C29.5805 13.068 29.5327 13.1327 29.4689 13.1786C29.4051 13.2245 29.3286 13.2491 29.25 13.2491C29.1714 13.2491 29.0948 13.2245 29.0311 13.1786C28.9673 13.1327 28.9195 13.068 28.8945 12.9935L28.697 12.402C28.6602 12.2916 28.5982 12.1914 28.5159 12.1091C28.4336 12.0268 28.3334 11.9648 28.223 11.928L27.6315 11.7305C27.557 11.7055 27.4923 11.6577 27.4464 11.5939C27.4005 11.5302 27.3758 11.4536 27.3758 11.375C27.3758 11.2964 27.4005 11.2198 27.4464 11.1561C27.4923 11.0923 27.557 11.0445 27.6315 11.0195L28.223 10.822C28.4465 10.747 28.6225 10.572 28.697 10.348L28.8945 9.7565C28.9194 9.68186 28.9671 9.61693 29.0309 9.57089C29.0947 9.52486 29.1713 9.50006 29.25 9.5V9.5Z" fill="#939BA8"/>
6
- </g>
7
- <defs>
8
- <clipPath id="clip0_1_4">
9
- <rect width="12" height="12" fill="white" transform="translate(21 2)"/>
10
- </clipPath>
11
- </defs>
12
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><g fill="none" fill-rule="evenodd"><path fill="#939BA8" d="M21.11 13.379 39.98 24.07 20 35.393.02 24.07l9.825-5.567a9 9 0 0 0 1.375.345l-1.793 1.016c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-1.815-1.028c.134-.023.266-.05.398-.08l1.671.958 3.354-1.924-1.373-.777c.1-.079.198-.16.294-.243.497.286.965.555 1.22.7l.147.085.052.03 3.352-1.924-2.68-1.52a9.068 9.068 0 0 0 .358-.761Zm-1.203 16.939-3.353 1.9 3.353 1.923 3.354-1.924-3.354-1.9Zm3.746-2.05-3.353 1.9 3.353 1.923 3.354-1.924-3.354-1.9Zm-7.383-.025-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm-3.636-2.04-3.353 1.9c0-.002 3.353 1.923 3.353 1.923l3.353-1.925-3.353-1.898Zm7.383-.011-3.353 1.902c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.9Zm7.287-.014-3.353 1.9L27.304 30l3.353-1.924-3.353-1.9ZM9 24.166l-3.354 1.9L9 27.989l3.353-1.924L9 24.165Zm7.381-.013-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm14.53-.05-3.353 1.9 3.353 1.924 3.353-1.925-3.353-1.898Zm-7.244 0-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm-10.92-1.987-3.354 1.9 3.354 1.923 3.353-1.924-3.353-1.9Zm-7.364-.013L2.03 24.005c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.9Zm14.648-.041-3.353 1.9 3.353 1.924 3.353-1.924-3.353-1.9Zm7.243-.033-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm7.33-.055-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9ZM9.13 20.053l-3.353 1.902c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.9Zm7.266-.027-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm7.242-.038-3.353 1.9 3.353 1.924 3.353-1.924-3.353-1.9Zm7.329-.09L27.614 21.8c0-.002 3.353 1.922 3.353 1.922l3.353-1.923-3.353-1.9Zm-10.964-1.947-3.353 1.9 3.353 1.924 3.354-1.925-3.354-1.9Zm7.328-.093-3.353 1.902c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.9Zm-3.635-2.036-3.353 1.9 3.353 1.923 3.354-1.924-3.354-1.9Z"/><path fill="#C9CDD3" d="M11.11 4.753a.5.5 0 0 1 .108.546 6 6 0 0 0 7.849 7.849.5.5 0 0 1 .654.653 7.002 7.002 0 0 1-13.463-2.693 7.001 7.001 0 0 1 4.307-6.463.5.5 0 0 1 .545.108ZM24 6.37a.375.375 0 0 1 .36.273l.407 1.423a1.874 1.874 0 0 0 1.288 1.288l1.423.406a.375.375 0 0 1 0 .721l-1.423.407a1.875 1.875 0 0 0-1.288 1.288l-.407 1.423a.374.374 0 0 1-.72 0l-.407-1.423a1.874 1.874 0 0 0-1.288-1.288l-1.423-.407a.375.375 0 0 1 0-.72l1.423-.407a1.874 1.874 0 0 0 1.288-1.288l.406-1.423A.375.375 0 0 1 24 6.37Zm4.5-1.5a.375.375 0 0 1 .364.285l.129.518c.118.47.485.837.955.955l.518.129a.375.375 0 0 1 0 .728l-.518.129c-.47.118-.837.485-.955.955l-.129.518a.375.375 0 0 1-.728 0l-.129-.518a1.313 1.313 0 0 0-.955-.955l-.518-.13a.375.375 0 0 1 0-.727l.518-.13a1.312 1.312 0 0 0 .955-.954l.129-.518a.375.375 0 0 1 .364-.284Zm-.75 6.75a.375.375 0 0 1 .356.257l.197.592c.075.223.25.4.474.474l.591.197a.375.375 0 0 1 0 .711l-.591.198a.75.75 0 0 0-.474.474l-.198.591a.375.375 0 0 1-.71 0l-.198-.591a.75.75 0 0 0-.474-.474l-.591-.198a.375.375 0 0 1 0-.71l.591-.198a.75.75 0 0 0 .474-.474l.198-.592a.375.375 0 0 1 .355-.256Z"/></g></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><g fill="#30B4C0" fill-rule="evenodd"><path d="M34.754 19.386l5.206 2.95-19.98 11.322L0 22.336l4.948-2.804-.462.742h1.115l-.336.473-2.805 1.59 2.98 1.688c.778-.443 1.594-.91 2.415-1.4h.156v.259c-.767.46-1.53.9-2.263 1.316l3.44 1.95c1.227-.71 2.136-1.291 3.013-2.049-.344-.163-.688-.322-1.03-.48-.44-.205-.882-.41-1.32-.62v-.336c.482.233.968.459 1.455.684.378.176.76.353 1.143.536.403-.367.806-.776 1.236-1.26h.331l-.157-.198a26.9 26.9 0 0 0 .427-.504c.196-.238.388-.477.582-.716.325-.404.658-.812 1.006-1.215a19.65 19.65 0 0 0-.656.049c-.363.031-.775.066-1.226.08-.286.01-.57-.007-.852-.044l-.196-.33c.341.057.688.086 1.04.074.443-.013.833-.047 1.209-.079.336-.03.65-.055.954-.061.17-.189.342-.374.52-.553.473-.481.948-.88 1.49-1.157-.212.02-.426.03-.639.031a5.36 5.36 0 0 1-1.258-.156c-.69.332-1.381.678-2.04 1.065-.44.254-.872.523-1.299.798l-.156-.263c.425-.275.857-.54 1.294-.796a28.137 28.137 0 0 1 1.752-.925c-.587-.18-1.142-.42-1.676-.685l.711.002c.373.164.756.31 1.159.427.077.024.147.04.22.058.34-.162.68-.322 1.017-.478l.714.002-.42.195-.831.386c.684.115 1.208.062 1.829-.001.087-.01.177-.018.27-.027v.418c-.73.237-1.309.697-1.92 1.316-.112.113-.22.233-.328.35.889.045 1.728.342 2.804 1.383.215.207.42.423.62.641.2-.218.405-.434.62-.641 1.076-1.041 1.915-1.34 2.803-1.385-.104-.112-.208-.227-.316-.335-.614-.625-1.196-1.09-1.93-1.328v-.419l.268.027c.623.063 1.145.115 1.827.001-.425-.201-.851-.4-1.279-.594h.725c.345.16.692.324 1.04.49.072-.02.142-.037.22-.059a9.43 9.43 0 0 0 1.164-.43h.708c-.536.266-1.092.506-1.68.686.59.29 1.18.593 1.75.925a34.77 34.77 0 0 1 1.603.995 7.72 7.72 0 0 0 .822-.26h.775c-.41.185-.834.349-1.27.475.338.223.674.448 1.006.671.527.356 1.055.711 1.59 1.055.268.173.542.341.814.51 1-.523 1.99-1.064 2.97-1.624l-1.915-1.086h2.46-.001zm-5.981-3.39l-.62 1.044-1.133-.643c-.284.16-.572.32-.865.475l-.19-.245c.25-.13.497-.267.745-.406l-1.892-1.073-.827-1.066h1.394l-.005-.008 3.393 1.922zm-14.142-1.95l-.023.036h1.395l-.823 1.045-1.93 1.092c.25.141.498.279.748.41l-.191.243a30.88 30.88 0 0 1-.866-.475l-1.489.844-.62-1.043 3.799-2.153v.001zm22.87 8.29l-2.983-1.69c-.973.552-1.968 1.108-2.979 1.637 1.01.616 2.023 1.198 2.98 1.742l2.982-1.689zm-11.757-3.427a29.093 29.093 0 0 0-2.04-1.061 5.36 5.36 0 0 1-1.259.156c-.211 0-.416-.013-.623-.03.535.275 1.003.674 1.49 1.168.173.176.34.357.504.539.304.006.62.033.956.061.377.032.764.065 1.208.079.373.014.741-.019 1.105-.085a33.47 33.47 0 0 0-1.34-.827h-.001zm-11.22 3.202a18.949 18.949 0 0 1-1.783 1.914c.644.31 1.287.638 1.909.998a35.03 35.03 0 0 1 1.558.967c.244-.216.482-.437.711-.675.593-.614 1.136-1.29 1.661-1.943.385-.478.78-.962 1.197-1.434a14.496 14.496 0 0 0-.631-.655c-1.113-1.075-1.903-1.31-2.854-1.306-.406.462-.8.935-1.184 1.416-.194.24-.388.481-.585.718h.001zm2.618 3.412a11.06 11.06 0 0 1-.671.64c.373.245.743.493 1.107.737.53.358 1.06.715 1.598 1.061.264.171.535.336.804.503.27-.167.54-.332.804-.503.538-.347 1.068-.704 1.599-1.061.363-.244.733-.492 1.106-.737a12.127 12.127 0 0 1-.67-.64c-.601-.624-1.15-1.305-1.68-1.964a41.762 41.762 0 0 0-1.159-1.391c-.403.457-.786.928-1.16 1.391-.528.659-1.076 1.34-1.678 1.964zm5.9-.206c.228.237.468.459.71.674.51-.333 1.03-.66 1.558-.967.622-.36 1.266-.688 1.91-1a19.294 19.294 0 0 1-1.775-1.903c-.2-.242-.397-.486-.594-.73-.38-.47-.77-.95-1.18-1.413-.952-.003-1.742.231-2.855 1.307-.218.21-.427.43-.63.655.416.47.811.956 1.196 1.434.525.654 1.068 1.328 1.66 1.943zm2.64-3.386c.661.798 1.246 1.42 1.832 1.95.381-.18.761-.358 1.137-.532.505-.235 1.01-.467 1.51-.711.255-.123.508-.253.76-.382-.221-.138-.445-.275-.665-.417-.538-.345-1.066-.702-1.597-1.06-.402-.271-.812-.545-1.226-.817a5.73 5.73 0 0 1-1.466.16 21.788 21.788 0 0 1-1.225-.081c-.232-.02-.449-.038-.657-.05.346.4.68.81 1.004 1.212.197.243.394.487.593.728zm-13.183 2.312c-.895.786-1.811 1.385-3.003 2.078l3.444 1.953c.993-.576 2.05-1.247 3.031-2.077a33.171 33.171 0 0 0-1.476-.914 28.18 28.18 0 0 0-1.996-1.04zm3.735 2.127c-.967.83-2.007 1.5-2.992 2.075l3.449 1.954a112.11 112.11 0 0 0 3.003-1.756 41.95 41.95 0 0 1-.687-.43 96.77 96.77 0 0 1-1.604-1.063c-.384-.258-.775-.52-1.169-.78zm3.746 2.452c-1.009.62-2.02 1.206-2.982 1.753l2.982 1.69 2.982-1.692a103.44 103.44 0 0 1-2.982-1.75v-.001zm.285-.177c1.02.622 2.042 1.208 3.005 1.756l3.448-1.955c-.985-.575-2.022-1.245-2.991-2.075-.396.26-.787.52-1.171.78-.532.359-1.064.717-1.604 1.064-.227.147-.458.287-.687.43zm3.724-2.448c.984.832 2.04 1.5 3.034 2.077l3.443-1.951c-1.195-.695-2.11-1.293-3.005-2.079-.674.324-1.348.664-1.995 1.04-.5.292-.992.596-1.477.913zm3.774-2.097c.887.764 1.803 1.352 3.006 2.051l3.442-1.95a102.96 102.96 0 0 1-2.989-1.757c-.306.158-.613.315-.922.466-.502.243-1.01.478-1.516.712-.338.156-.679.316-1.021.478z"/><path d="M5.094 21.941l1.545-2.026h-.858l3.192-5.32 3.158 5.32h-.858l1.58 2.025H9.591v2.78H8.354v-2.78H5.093h.001v.001zm10.038-5.759l1.93-2.531H15.99L19.98 7l3.948 6.651h-1.072l1.974 2.531h-4.076v3.475h-1.548v-3.475H15.13h.002zm13.034 2.656l1.158-1.519h-.644l2.395-3.99 2.368 3.99H32.8l1.184 1.519h-2.445v2.085h-.929v-2.085h-2.445.001z"/></g></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><g fill="none" fill-rule="evenodd"><path fill="#30B4C0" d="m34.754 19.386 5.206 2.95-19.98 11.322L0 22.336l4.948-2.804-.462.742h1.115l-.336.473-2.805 1.59 2.98 1.688c.778-.443 1.594-.91 2.415-1.4h.156v.259c-.767.46-1.53.9-2.263 1.316l3.44 1.95c1.227-.71 2.136-1.291 3.013-2.049-.344-.163-.688-.322-1.03-.48-.44-.205-.882-.41-1.32-.62v-.336c.482.233.968.459 1.455.684.378.176.76.353 1.143.536.403-.367.806-.776 1.236-1.26h.331l-.157-.198a26.9 26.9 0 0 0 .427-.504c.196-.238.388-.477.582-.716.325-.404.658-.812 1.006-1.215a19.65 19.65 0 0 0-.656.049c-.363.031-.775.066-1.226.08-.286.01-.57-.007-.852-.044l-.196-.33c.341.057.688.086 1.04.074.443-.013.833-.047 1.209-.079.336-.03.65-.055.954-.061.17-.189.342-.374.52-.553.473-.481.948-.88 1.49-1.157-.212.02-.426.03-.639.031a5.36 5.36 0 0 1-1.258-.156c-.69.332-1.381.678-2.04 1.065-.44.254-.872.523-1.299.798l-.156-.263c.425-.275.857-.54 1.294-.796a28.137 28.137 0 0 1 1.752-.925c-.587-.18-1.142-.42-1.676-.685l.711.002c.373.164.756.31 1.159.427.077.024.147.04.22.058.34-.162.68-.322 1.017-.478l.714.002-.42.195-.831.386c.684.115 1.208.062 1.829-.001.087-.01.177-.018.27-.027v.418c-.73.237-1.309.697-1.92 1.316-.112.113-.22.233-.328.35.889.045 1.728.342 2.804 1.383.215.207.42.423.62.641.2-.218.405-.434.62-.641 1.076-1.041 1.915-1.34 2.803-1.385-.104-.112-.208-.227-.316-.335-.614-.625-1.196-1.09-1.93-1.328v-.419l.268.027c.623.063 1.145.115 1.827.001-.425-.201-.851-.4-1.279-.594h.725c.345.16.692.324 1.04.49.072-.02.142-.037.22-.059a9.43 9.43 0 0 0 1.164-.43h.708c-.536.266-1.092.506-1.68.686.59.29 1.18.593 1.75.925a34.77 34.77 0 0 1 1.603.995 7.72 7.72 0 0 0 .822-.26h.775c-.41.185-.834.349-1.27.475.338.223.674.448 1.006.671.527.356 1.055.711 1.59 1.055.268.173.542.341.814.51 1-.523 1.99-1.064 2.97-1.624l-1.915-1.086h2.46-.001Zm-5.981-3.39-.62 1.044-1.133-.643c-.284.16-.572.32-.865.475l-.19-.245c.25-.13.497-.267.745-.406l-1.892-1.073-.827-1.066h1.394l-.005-.008 3.393 1.922Zm-14.142-1.95-.023.036h1.395l-.823 1.045-1.93 1.092c.25.141.498.279.748.41l-.191.243a30.88 30.88 0 0 1-.866-.475l-1.489.844-.62-1.043 3.799-2.153v.001Zm22.87 8.29-2.983-1.69c-.973.552-1.968 1.108-2.979 1.637 1.01.616 2.023 1.198 2.98 1.742l2.982-1.689Zm-11.757-3.427a29.093 29.093 0 0 0-2.04-1.061 5.36 5.36 0 0 1-1.259.156c-.211 0-.416-.013-.623-.03.535.275 1.003.674 1.49 1.168.173.176.34.357.504.539.304.006.62.033.956.061.377.032.764.065 1.208.079.373.014.741-.019 1.105-.085-.44-.286-.887-.562-1.34-.827h-.001Zm-11.22 3.202a18.949 18.949 0 0 1-1.783 1.914c.644.31 1.287.638 1.909.998a35.03 35.03 0 0 1 1.558.967c.244-.216.482-.437.711-.675.593-.614 1.136-1.29 1.661-1.943.385-.478.78-.962 1.197-1.434a14.496 14.496 0 0 0-.631-.655c-1.113-1.075-1.903-1.31-2.854-1.306-.406.462-.8.935-1.184 1.416-.194.24-.388.481-.585.718h.001Zm2.618 3.412a11.06 11.06 0 0 1-.671.64c.373.245.743.493 1.107.737.53.358 1.06.715 1.598 1.061.264.171.535.336.804.503.27-.167.54-.332.804-.503.538-.347 1.068-.704 1.599-1.061.363-.244.733-.492 1.106-.737a12.127 12.127 0 0 1-.67-.64c-.601-.624-1.15-1.305-1.68-1.964a41.762 41.762 0 0 0-1.159-1.391c-.403.457-.786.928-1.16 1.391-.528.659-1.076 1.34-1.678 1.964Zm5.9-.206c.228.237.468.459.71.674.51-.333 1.03-.66 1.558-.967.622-.36 1.266-.688 1.91-1a19.294 19.294 0 0 1-1.775-1.903c-.2-.242-.397-.486-.594-.73-.38-.47-.77-.95-1.18-1.413-.952-.003-1.742.231-2.855 1.307-.218.21-.427.43-.63.655.416.47.811.956 1.196 1.434.525.654 1.068 1.328 1.66 1.943Zm2.64-3.386c.661.798 1.246 1.42 1.832 1.95.381-.18.761-.358 1.137-.532.505-.235 1.01-.467 1.51-.711.255-.123.508-.253.76-.382-.221-.138-.445-.275-.665-.417-.538-.345-1.066-.702-1.597-1.06-.402-.271-.812-.545-1.226-.817a5.73 5.73 0 0 1-1.466.16 21.788 21.788 0 0 1-1.225-.081c-.232-.02-.449-.038-.657-.05.346.4.68.81 1.004 1.212.197.243.394.487.593.728Zm-13.183 2.312c-.895.786-1.811 1.385-3.003 2.078l3.444 1.953c.993-.576 2.05-1.247 3.031-2.077a33.171 33.171 0 0 0-1.476-.914 28.18 28.18 0 0 0-1.996-1.04Zm3.735 2.127c-.967.83-2.007 1.5-2.992 2.075l3.449 1.954a112.11 112.11 0 0 0 3.003-1.756 41.95 41.95 0 0 1-.687-.43 96.77 96.77 0 0 1-1.604-1.063c-.384-.258-.775-.52-1.169-.78Zm3.746 2.452c-1.009.62-2.02 1.206-2.982 1.753l2.982 1.69 2.982-1.692a103.44 103.44 0 0 1-2.982-1.75v-.001Zm.285-.177c1.02.622 2.042 1.208 3.005 1.756l3.448-1.955c-.985-.575-2.022-1.245-2.991-2.075-.396.26-.787.52-1.171.78-.532.359-1.064.717-1.604 1.064-.227.147-.458.287-.687.43Zm3.724-2.448c.984.832 2.04 1.5 3.034 2.077l3.443-1.951c-1.195-.695-2.11-1.293-3.005-2.079-.674.324-1.348.664-1.995 1.04-.5.292-.992.596-1.477.913Zm3.774-2.097c.887.764 1.803 1.352 3.006 2.051l3.442-1.95a102.96 102.96 0 0 1-2.989-1.757c-.306.158-.613.315-.922.466-.502.243-1.01.478-1.516.712-.338.156-.679.316-1.021.478Z"/><path fill="#97D9DF" d="m5.094 21.941 1.545-2.026h-.858l3.192-5.32 3.158 5.32h-.858l1.58 2.025H9.591v2.78H8.354v-2.78H5.093h.001v.001Zm10.038-5.759 1.93-2.531H15.99L19.98 7l3.948 6.651h-1.072l1.974 2.531h-4.076v3.475h-1.548v-3.475H15.13h.002Zm13.034 2.656 1.158-1.519h-.644l2.395-3.99 2.368 3.99H32.8l1.184 1.519h-2.445v2.085h-.929v-2.085h-2.445.001Z"/></g></svg>