@kolkrabbi/kol-component 0.6.0 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. package/package.json +4 -2
  2. package/src/chess/ChessPiece.jsx +191 -0
  3. package/src/chess/apparatus/AlternativeControlsMock.jsx +460 -0
  4. package/src/chess/apparatus/ChessAnalysisLayout.jsx +24 -0
  5. package/src/chess/apparatus/ChessBoard.jsx +210 -0
  6. package/src/chess/apparatus/ChessBoardFullscreen.jsx +49 -0
  7. package/src/chess/apparatus/ChessBoardWithControls.jsx +41 -0
  8. package/src/chess/apparatus/ChessBoardWithSidebar.jsx +122 -0
  9. package/src/chess/apparatus/ChessSidebar.jsx +131 -0
  10. package/src/chess/apparatus/GameArchiveTable.jsx +493 -0
  11. package/src/chess/apparatus/GameSelector.jsx +47 -0
  12. package/src/chess/apparatus/NotationPanel.jsx +70 -0
  13. package/src/chess/apparatus/PlaybackControls.jsx +52 -0
  14. package/src/chess/apparatus/VariationTree.jsx +137 -0
  15. package/src/chess/assets/chess-extra-set/set-1/bishop-1.svg +6 -0
  16. package/src/chess/assets/chess-extra-set/set-1/bishop.svg +6 -0
  17. package/src/chess/assets/chess-extra-set/set-1/king-1.svg +9 -0
  18. package/src/chess/assets/chess-extra-set/set-1/king.svg +7 -0
  19. package/src/chess/assets/chess-extra-set/set-1/knight-1.svg +8 -0
  20. package/src/chess/assets/chess-extra-set/set-1/knight.svg +7 -0
  21. package/src/chess/assets/chess-extra-set/set-1/pawn-1.svg +3 -0
  22. package/src/chess/assets/chess-extra-set/set-1/pawn.svg +3 -0
  23. package/src/chess/assets/chess-extra-set/set-1/queen-1.svg +11 -0
  24. package/src/chess/assets/chess-extra-set/set-1/queen.svg +6 -0
  25. package/src/chess/assets/chess-extra-set/set-1/rook-1.svg +7 -0
  26. package/src/chess/assets/chess-extra-set/set-1/rook.svg +11 -0
  27. package/src/chess/assets/chess-extra-set/set-2/bishop-1.svg +4 -0
  28. package/src/chess/assets/chess-extra-set/set-2/bishop.svg +4 -0
  29. package/src/chess/assets/chess-extra-set/set-2/king-1.svg +4 -0
  30. package/src/chess/assets/chess-extra-set/set-2/king.svg +4 -0
  31. package/src/chess/assets/chess-extra-set/set-2/knight-1.svg +5 -0
  32. package/src/chess/assets/chess-extra-set/set-2/knight.svg +5 -0
  33. package/src/chess/assets/chess-extra-set/set-2/pawn-1.svg +4 -0
  34. package/src/chess/assets/chess-extra-set/set-2/pawn.svg +4 -0
  35. package/src/chess/assets/chess-extra-set/set-2/queen-1.svg +4 -0
  36. package/src/chess/assets/chess-extra-set/set-2/queen.svg +4 -0
  37. package/src/chess/assets/chess-extra-set/set-2/rook-1.svg +5 -0
  38. package/src/chess/assets/chess-extra-set/set-2/rook.svg +5 -0
  39. package/src/chess/assets/chess-extra-set/set-3/bishop-1.svg +10 -0
  40. package/src/chess/assets/chess-extra-set/set-3/bishop.svg +3 -0
  41. package/src/chess/assets/chess-extra-set/set-3/king-1.svg +12 -0
  42. package/src/chess/assets/chess-extra-set/set-3/king.svg +3 -0
  43. package/src/chess/assets/chess-extra-set/set-3/knight-1.svg +3 -0
  44. package/src/chess/assets/chess-extra-set/set-3/knight.svg +10 -0
  45. package/src/chess/assets/chess-extra-set/set-3/pawn-1.svg +10 -0
  46. package/src/chess/assets/chess-extra-set/set-3/pawn.svg +10 -0
  47. package/src/chess/assets/chess-extra-set/set-3/queen-1.svg +10 -0
  48. package/src/chess/assets/chess-extra-set/set-3/queen.svg +3 -0
  49. package/src/chess/assets/chess-extra-set/set-3/rook-1.svg +3 -0
  50. package/src/chess/assets/chess-extra-set/set-3/rook.svg +11 -0
  51. package/src/chess/assets/chess-vector-set/ABoard.svg +164 -0
  52. package/src/chess/assets/chess-vector-set/BBiskup.svg +12 -0
  53. package/src/chess/assets/chess-vector-set/BKing.svg +15 -0
  54. package/src/chess/assets/chess-vector-set/BKnight.svg +13 -0
  55. package/src/chess/assets/chess-vector-set/BPawn.svg +7 -0
  56. package/src/chess/assets/chess-vector-set/BQueen.svg +6 -0
  57. package/src/chess/assets/chess-vector-set/BRook.svg +12 -0
  58. package/src/chess/assets/chess-vector-set/WBiskup.svg +14 -0
  59. package/src/chess/assets/chess-vector-set/WKing.svg +13 -0
  60. package/src/chess/assets/chess-vector-set/WKnight.svg +10 -0
  61. package/src/chess/assets/chess-vector-set/WPawn.svg +8 -0
  62. package/src/chess/assets/chess-vector-set/WQueen.svg +17 -0
  63. package/src/chess/assets/chess-vector-set/WRook.svg +13 -0
  64. package/src/chess/context/ChessControlsContext.jsx +379 -0
  65. package/src/chess/dashboards/ChessHero.jsx +303 -0
  66. package/src/chess/index.js +32 -0
  67. package/src/chess/utils/parsePgnTree.js +97 -0
  68. package/src/dashboards/cards/DashAlertCard.jsx +44 -0
  69. package/src/dashboards/cards/DashChartCard.jsx +44 -0
  70. package/src/dashboards/cards/DashFeaturedCard.jsx +42 -0
  71. package/src/dashboards/cards/DashListCard.jsx +87 -0
  72. package/src/dashboards/cards/DashMetricCard.jsx +59 -0
  73. package/src/dashboards/cards/DashSlotCard.jsx +45 -0
  74. package/src/dashboards/cards/DashStackedBarCard.jsx +70 -0
  75. package/src/dashboards/cards/DashTableCard.jsx +31 -0
  76. package/src/dashboards/cards/_shared/CardHeader.jsx +15 -0
  77. package/src/dashboards/cards/_shared/LegendRow.jsx +25 -0
  78. package/src/dashboards/charts/Candlestick.jsx +79 -0
  79. package/src/dashboards/charts/DonutChart.jsx +87 -0
  80. package/src/dashboards/charts/Heatmap.jsx +79 -0
  81. package/src/dashboards/charts/Histogram.jsx +56 -0
  82. package/src/dashboards/charts/LineChart.jsx +157 -0
  83. package/src/dashboards/charts/ScatterPlot.jsx +93 -0
  84. package/src/dashboards/charts/Sparkline.jsx +63 -0
  85. package/src/dashboards/index.js +28 -0
  86. package/src/dashboards/layout/DashboardGrid.jsx +30 -0
  87. package/src/dashboards/layout/GridCard.jsx +44 -0
  88. package/src/dashboards/shared/DashTooltip.jsx +6 -0
  89. package/src/dashboards/shared/formatMetric.js +26 -0
  90. package/src/dashboards/shared/useChartTooltip.js +25 -0
  91. package/src/dashboards/shared/useCountUp.js +107 -0
@@ -0,0 +1,137 @@
1
+ import React, { useState } from 'react'
2
+ import { useChessControls } from '../context/ChessControlsContext'
3
+
4
+ const VariationTree = () => {
5
+ const { moveTree, userVariations, moveIndex, setMoveIndex, isLoading, removeUserVariation } =
6
+ useChessControls()
7
+
8
+ if (isLoading) {
9
+ return (
10
+ <div className="flex flex-col gap-2">
11
+ <div className="h-3 bg-oq-04 rounded animate-pulse" />
12
+ <div className="h-3 bg-oq-04 rounded animate-pulse" />
13
+ <div className="h-3 bg-oq-04 rounded animate-pulse" />
14
+ </div>
15
+ )
16
+ }
17
+
18
+ if (!moveTree?.length) {
19
+ return <p className="kol-mono-xs text-fg-64">No variation data.</p>
20
+ }
21
+
22
+ return (
23
+ <div className="flex flex-col gap-2 max-h-[300px] overflow-auto pr-1">
24
+ <VariationBranch
25
+ moves={moveTree}
26
+ depth={0}
27
+ moveIndex={moveIndex}
28
+ onSelectPly={setMoveIndex}
29
+ />
30
+ {userVariations?.length ? (
31
+ <div className="mt-3 border-t border-oq-08 pt-3">
32
+ <div className="kol-mono-xxs uppercase tracking-[0.2em] text-fg-50 mb-2">
33
+ Custom Variations
34
+ </div>
35
+ {userVariations.map((variation) => (
36
+ <div key={variation.id} className="flex flex-col gap-1 mb-2">
37
+ <div className="flex items-center justify-between text-fg-80">
38
+ <span className="kol-mono-xs">{variation.label}</span>
39
+ <button
40
+ type="button"
41
+ className="kol-mono-xxs text-status-danger hover:text-status-danger-foreground"
42
+ onClick={() => removeUserVariation(variation.id)}
43
+ >
44
+ remove
45
+ </button>
46
+ </div>
47
+ <div className="flex flex-wrap gap-2 text-fg-70">
48
+ {variation.moves.map((move, idx) => (
49
+ <button
50
+ type="button"
51
+ key={`${variation.id}-${idx}`}
52
+ className={`kol-mono-xxs px-2 py-1 rounded border border-oq-12 ${
53
+ move.ply === moveIndex ? 'text-accent-primary border-accent-primary' : ''
54
+ }`}
55
+ onClick={() => setMoveIndex(move.ply)}
56
+ >
57
+ {move.san}
58
+ </button>
59
+ ))}
60
+ </div>
61
+ </div>
62
+ ))}
63
+ </div>
64
+ ) : null}
65
+ </div>
66
+ )
67
+ }
68
+
69
+ const VariationBranch = ({ moves, depth, moveIndex, onSelectPly, label }) => {
70
+ if (!moves?.length) return null
71
+
72
+ return (
73
+ <div className="flex flex-col gap-1">
74
+ {label ? (
75
+ <div className="kol-mono-xxs uppercase tracking-[0.2em] text-fg-50">{label}</div>
76
+ ) : null}
77
+ {moves.map((node, idx) => (
78
+ <VariationNode
79
+ key={`${node.id}-${idx}`}
80
+ node={node}
81
+ depth={depth}
82
+ moveIndex={moveIndex}
83
+ onSelectPly={onSelectPly}
84
+ />
85
+ ))}
86
+ </div>
87
+ )
88
+ }
89
+
90
+ const VariationNode = ({ node, depth, moveIndex, onSelectPly }) => {
91
+ const [expanded, setExpanded] = useState(depth === 0)
92
+ const isActive = node.ply === moveIndex
93
+
94
+ return (
95
+ <div className="flex flex-col gap-1">
96
+ <button
97
+ type="button"
98
+ onClick={() => onSelectPly(node.ply)}
99
+ className={`flex items-center justify-between rounded px-2 py-1 text-left transition-colors ${
100
+ isActive ? 'bg-oq-08 text-accent-primary' : 'text-fg-80 hover:text-fg-90'
101
+ }`}
102
+ style={{ paddingLeft: `${depth * 12 + 8}px` }}
103
+ >
104
+ <span className="kol-mono-xs">
105
+ {node.moveNumber}
106
+ {node.color === 'black' ? '...' : '.'} {node.san}
107
+ </span>
108
+ {node.variations?.length ? (
109
+ <span
110
+ className="text-fg-50 text-xs ml-3"
111
+ onClick={(event) => {
112
+ event.stopPropagation()
113
+ setExpanded((value) => !value)
114
+ }}
115
+ >
116
+ {expanded ? '−' : '+'} {node.variations.length}
117
+ </span>
118
+ ) : null}
119
+ </button>
120
+
121
+ {expanded &&
122
+ node.variations?.map((variation, idx) => (
123
+ <div key={`${node.id}-variation-${idx}`} className="border-l border-oq-08 ml-2 pl-2">
124
+ <VariationBranch
125
+ moves={variation}
126
+ depth={depth + 1}
127
+ moveIndex={moveIndex}
128
+ onSelectPly={onSelectPly}
129
+ label={idx === 0 ? 'Variation' : undefined}
130
+ />
131
+ </div>
132
+ ))}
133
+ </div>
134
+ )
135
+ }
136
+
137
+ export default VariationTree
@@ -0,0 +1,6 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M19.2 76.8001C26.432 74.7308 40.7681 77.7174 48.0001 72.5334C55.2321 77.7174 69.5681 74.7308 76.8001 76.8001C76.8001 76.8001 80.3201 77.9521 83.2001 81.0668C81.7494 83.1361 79.6801 83.1788 76.8001 82.1334C69.5681 80.0641 55.2321 83.1148 48.0001 80.0001C40.7681 83.1148 26.432 80.0641 19.2 82.1334C16.3115 83.1788 14.2443 83.1361 12.8 81.0668C15.6886 76.9281 19.2 76.8001 19.2 76.8001Z" fill="black" stroke="black" stroke-width="2.88" stroke-linejoin="round"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M32.0002 68.2668C37.3335 73.6001 58.6668 73.6001 64.0002 68.2668C65.0668 65.0668 64.0002 64.0001 64.0002 64.0001C64.0002 58.6668 58.6668 55.4668 58.6668 55.4668C70.4002 52.2668 71.4668 30.9335 48.0002 22.4001C24.5335 30.9335 25.6002 52.2668 37.3335 55.4668C37.3335 55.4668 32.0002 58.6668 32.0002 64.0001C32.0002 64.0001 30.9335 65.0668 32.0002 68.2668Z" fill="black" stroke="black" stroke-width="2.88" stroke-linejoin="round"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M53.3337 17.0667C53.3337 18.4812 52.7718 19.8378 51.7716 20.838C50.7714 21.8382 49.4148 22.4001 48.0003 22.4001C46.5858 22.4001 45.2293 21.8382 44.2291 20.838C43.2289 19.8378 42.667 18.4812 42.667 17.0667C42.667 15.6522 43.2289 14.2957 44.2291 13.2955C45.2293 12.2953 46.5858 11.7334 48.0003 11.7334C49.4148 11.7334 50.7714 12.2953 51.7716 13.2955C52.7718 14.2957 53.3337 15.6522 53.3337 17.0667Z" fill="black" stroke="black" stroke-width="2.88" stroke-linejoin="round"/>
5
+ <path d="M37.3336 55.4666H58.6669M32.0002 64H64.0002M48.0002 33.0667V43.7333M42.6669 38.4H53.3336" stroke="white" stroke-width="2.88" stroke-linecap="round"/>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M19.2 76.8001C26.432 74.7308 40.7681 77.7174 48.0001 72.5334C55.2321 77.7174 69.5681 74.7308 76.8001 76.8001C76.8001 76.8001 80.3201 77.9521 83.2001 81.0668C81.7494 83.1361 79.6801 83.1788 76.8001 82.1334C69.5681 80.0641 55.2321 83.1148 48.0001 80.0001C40.7681 83.1148 26.432 80.0641 19.2 82.1334C16.3115 83.1788 14.2443 83.1361 12.8 81.0668C15.6886 76.9281 19.2 76.8001 19.2 76.8001Z" fill="white" stroke="black" stroke-width="2.88" stroke-linejoin="round"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M32.0002 68.2668C37.3335 73.6001 58.6668 73.6001 64.0002 68.2668C65.0668 65.0668 64.0002 64.0001 64.0002 64.0001C64.0002 58.6668 58.6668 55.4668 58.6668 55.4668C70.4002 52.2668 71.4668 30.9335 48.0002 22.4001C24.5335 30.9335 25.6002 52.2668 37.3335 55.4668C37.3335 55.4668 32.0002 58.6668 32.0002 64.0001C32.0002 64.0001 30.9335 65.0668 32.0002 68.2668Z" fill="white" stroke="black" stroke-width="2.88" stroke-linejoin="round"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M53.3337 17.0667C53.3337 18.4812 52.7718 19.8378 51.7716 20.838C50.7714 21.8382 49.4148 22.4001 48.0003 22.4001C46.5858 22.4001 45.2293 21.8382 44.2291 20.838C43.2289 19.8378 42.667 18.4812 42.667 17.0667C42.667 15.6522 43.2289 14.2957 44.2291 13.2955C45.2293 12.2953 46.5858 11.7334 48.0003 11.7334C49.4148 11.7334 50.7714 12.2953 51.7716 13.2955C52.7718 14.2957 53.3337 15.6522 53.3337 17.0667Z" fill="white" stroke="black" stroke-width="2.88" stroke-linejoin="round"/>
5
+ <path d="M37.3336 55.4666H58.6669M32.0002 64H64.0002M48.0002 33.0667V43.7333M42.6669 38.4H53.3336" stroke="black" stroke-width="2.88" stroke-linecap="round"/>
6
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M48 24.8107V12.8" stroke="black" stroke-width="2.88" stroke-linecap="round"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M48.0003 53.3337C48.0003 53.3337 57.6003 37.3337 54.4003 30.9337C54.4003 30.9337 52.267 25.6003 48.0003 25.6003C43.7337 25.6003 41.6003 30.9337 41.6003 30.9337C38.4003 37.3337 48.0003 53.3337 48.0003 53.3337Z" fill="black" stroke="black" stroke-width="2.88"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M24.5333 78.9334C36.2667 86.4001 57.6 86.4001 69.3333 78.9334V64.0001C69.3333 64.0001 88.5333 54.4001 82.1333 41.6001C73.6 27.7334 53.3333 34.1334 48 50.1334C40.5333 34.1334 20.2667 27.7334 13.8667 41.6001C7.46668 54.4001 24.5333 62.9334 24.5333 62.9334V78.9334Z" fill="black"/>
5
+ <path d="M48 50.1334C53.3333 34.1334 73.6 27.7334 82.1333 41.6001C88.5333 54.4001 69.3333 64.0001 69.3333 64.0001V78.9334C57.6 86.4001 36.2667 86.4001 24.5333 78.9334V62.9334C24.5333 62.9334 7.46668 54.4001 13.8667 41.6001C20.2667 27.7334 40.5333 34.1334 48 50.1334ZM48 50.1334V57.6001" stroke="black" stroke-width="2.88" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M42.6665 17.0667H53.3332" stroke="black" stroke-width="2.88" stroke-linecap="round"/>
7
+ <path d="M68.2668 62.9335C68.2668 62.9335 86.4001 54.4001 81.1308 42.3468C72.8534 29.8668 53.3334 38.4001 48.0001 52.2668M48.0001 52.2668L48.0214 56.7468M48.0001 52.2668C42.6668 38.4001 21.1329 29.8668 14.927 42.3468C9.60012 54.4001 25.2801 61.5468 25.2801 61.5468" stroke="white" stroke-width="2.88" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path d="M24.5334 64.0002C36.2668 57.6002 57.6001 57.6002 69.3334 64.0002M24.5334 71.4669C36.2668 65.0669 57.6001 65.0669 69.3334 71.4669M24.5334 78.9335C36.2668 72.5335 57.6001 72.5335 69.3334 78.9335" stroke="white" stroke-width="2.88" stroke-linecap="round" stroke-linejoin="round"/>
9
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M47.9998 24.8107V12.8M42.6665 17.0667H53.3332" stroke="black" stroke-width="2.88" stroke-linecap="round"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M48.0003 53.3337C48.0003 53.3337 57.6003 37.3337 54.4003 30.9337C54.4003 30.9337 52.267 25.6003 48.0003 25.6003C43.7337 25.6003 41.6003 30.9337 41.6003 30.9337C38.4003 37.3337 48.0003 53.3337 48.0003 53.3337Z" fill="white" stroke="black" stroke-width="2.88"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M24.5333 78.9334C36.2667 86.4001 57.6 86.4001 69.3333 78.9334V64.0001C69.3333 64.0001 88.5333 54.4001 82.1333 41.6001C73.6 27.7334 53.3333 34.1334 48 50.1334C40.5333 34.1334 20.2667 27.7334 13.8667 41.6001C7.46668 54.4001 24.5333 62.9334 24.5333 62.9334V78.9334Z" fill="white"/>
5
+ <path d="M48 50.1334C53.3333 34.1334 73.6 27.7334 82.1333 41.6001C88.5333 54.4001 69.3333 64.0001 69.3333 64.0001V78.9334C57.6 86.4001 36.2667 86.4001 24.5333 78.9334V62.9334C24.5333 62.9334 7.46668 54.4001 13.8667 41.6001C20.2667 27.7334 40.5333 34.1334 48 50.1334ZM48 50.1334V57.6001" stroke="black" stroke-width="2.88" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M24.5334 64.0002C36.2668 57.6002 57.6001 57.6002 69.3334 64.0002M24.5334 71.4669C36.2668 65.0669 57.6001 65.0669 69.3334 71.4669M24.5334 78.9335C36.2668 72.5335 57.6001 72.5335 69.3334 78.9335" stroke="black" stroke-width="2.88" stroke-linecap="round" stroke-linejoin="round"/>
7
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M46.9336 21.3333C69.3336 23.4666 82.1336 38.3999 81.0669 83.1999H32.0002C32.0002 63.9999 53.3336 69.3332 49.0669 38.3999" fill="black"/>
3
+ <path d="M46.9336 21.3333C69.3336 23.4666 82.1336 38.3999 81.0669 83.1999H32.0002C32.0002 63.9999 53.3336 69.3332 49.0669 38.3999" stroke="black" stroke-width="2.88" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M51.2001 38.4C52.0107 44.608 39.3601 54.1227 34.1334 57.6C27.7334 61.8667 28.1174 66.8587 23.4667 66.1333C21.2438 64.128 26.4747 59.648 23.4667 59.7333C21.3334 59.7333 23.8721 62.3573 21.3334 64C19.2001 64 12.7937 66.1333 12.8001 55.4667C12.8001 51.2 25.6001 29.8667 25.6001 29.8667C25.6001 29.8667 29.6321 25.8133 29.8667 22.4C28.3094 20.2795 28.8001 18.1333 28.8001 16C30.9334 13.8667 35.2001 21.3333 35.2001 21.3333H39.4667C39.4667 21.3333 41.1307 17.0837 44.8001 14.9333C46.9334 14.9333 46.9334 21.3333 46.9334 21.3333" fill="black"/>
5
+ <path d="M51.2001 38.4C52.0107 44.608 39.3601 54.1227 34.1334 57.6C27.7334 61.8667 28.1174 66.8587 23.4667 66.1333C21.2438 64.128 26.4747 59.648 23.4667 59.7333C21.3334 59.7333 23.8721 62.3573 21.3334 64C19.2001 64 12.7937 66.1333 12.8001 55.4667C12.8001 51.2 25.6001 29.8667 25.6001 29.8667C25.6001 29.8667 29.6321 25.8133 29.8667 22.4C28.3094 20.2795 28.8001 18.1333 28.8001 16C30.9334 13.8667 35.2001 21.3333 35.2001 21.3333H39.4667C39.4667 21.3333 41.1307 17.0837 44.8001 14.9333C46.9334 14.9333 46.9334 21.3333 46.9334 21.3333" stroke="black" stroke-width="2.88" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M20.2669 54.4002C20.2669 54.6831 20.1545 54.9544 19.9545 55.1544C19.7544 55.3545 19.4831 55.4668 19.2002 55.4668C18.9173 55.4668 18.646 55.3545 18.446 55.1544C18.2459 54.9544 18.1335 54.6831 18.1335 54.4002C18.1335 54.1173 18.2459 53.846 18.446 53.6459C18.646 53.4459 18.9173 53.3335 19.2002 53.3335C19.4831 53.3335 19.7544 53.4459 19.9545 53.6459C20.1545 53.846 20.2669 54.1173 20.2669 54.4002ZM31.8573 33.6002C31.6471 33.9661 31.4146 34.315 31.1732 34.6267C30.9318 34.9385 30.6862 35.207 30.4507 35.4167C30.2151 35.6264 29.9942 35.7732 29.8007 35.8487C29.6071 35.9242 29.4448 35.9268 29.3229 35.8565C29.2011 35.7862 29.1222 35.6442 29.0908 35.4389C29.0594 35.2335 29.0761 34.9688 29.14 34.6599C29.2038 34.3511 29.3135 34.0042 29.4628 33.6392C29.6121 33.2743 29.798 32.8985 30.0098 32.5335C30.22 32.1676 30.4525 31.8187 30.6939 31.5069C30.9353 31.1952 31.1809 30.9267 31.4164 30.717C31.652 30.5073 31.8729 30.3604 32.0664 30.285C32.26 30.2095 32.4223 30.2068 32.5442 30.2772C32.666 30.3475 32.7449 30.4894 32.7763 30.6948C32.8077 30.9002 32.791 31.1649 32.7271 31.4738C32.6633 31.7826 32.5536 32.1295 32.4043 32.4944C32.255 32.8594 32.0691 33.2352 31.8573 33.6002Z" fill="white" stroke="white" stroke-width="2.88" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M52.3733 22.1868L51.4133 25.2801L52.48 25.6001C59.2 27.7334 64.5333 30.9121 69.3333 40.0001C74.1333 49.0881 76.2667 61.9948 75.2 83.2001L75.0933 84.2668H79.8933L80 83.2001C81.0667 61.7388 78.1227 47.2534 73.0667 37.6748C68.0107 28.0961 60.7147 23.5094 53.4613 22.4001L52.3733 22.1868Z" fill="white"/>
8
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M46.9336 21.3333C69.3336 23.4666 82.1336 38.3999 81.0669 83.1999H32.0002C32.0002 63.9999 53.3336 69.3332 49.0669 38.3999" fill="white"/>
3
+ <path d="M46.9336 21.3333C69.3336 23.4666 82.1336 38.3999 81.0669 83.1999H32.0002C32.0002 63.9999 53.3336 69.3332 49.0669 38.3999" stroke="black" stroke-width="2.88" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M51.2001 38.4C52.0107 44.608 39.3601 54.1227 34.1334 57.6C27.7334 61.8667 28.1174 66.8587 23.4667 66.1333C21.2438 64.128 26.4747 59.648 23.4667 59.7333C21.3334 59.7333 23.8721 62.3573 21.3334 64C19.2001 64 12.7937 66.1333 12.8001 55.4667C12.8001 51.2 25.6001 29.8667 25.6001 29.8667C25.6001 29.8667 29.6321 25.8133 29.8667 22.4C28.3094 20.2795 28.8001 18.1333 28.8001 16C30.9334 13.8667 35.2001 21.3333 35.2001 21.3333H39.4667C39.4667 21.3333 41.1307 17.0837 44.8001 14.9333C46.9334 14.9333 46.9334 21.3333 46.9334 21.3333" fill="white"/>
5
+ <path d="M51.2001 38.4C52.0107 44.608 39.3601 54.1227 34.1334 57.6C27.7334 61.8667 28.1174 66.8587 23.4667 66.1333C21.2438 64.128 26.4747 59.648 23.4667 59.7333C21.3334 59.7333 23.8721 62.3573 21.3334 64C19.2001 64 12.7937 66.1333 12.8001 55.4667C12.8001 51.2 25.6001 29.8667 25.6001 29.8667C25.6001 29.8667 29.6321 25.8133 29.8667 22.4C28.3094 20.2795 28.8001 18.1333 28.8001 16C30.9334 13.8667 35.2001 21.3333 35.2001 21.3333H39.4667C39.4667 21.3333 41.1307 17.0837 44.8001 14.9333C46.9334 14.9333 46.9334 21.3333 46.9334 21.3333" stroke="black" stroke-width="2.88" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M20.2669 54.4002C20.2669 54.6831 20.1545 54.9544 19.9545 55.1544C19.7544 55.3545 19.4831 55.4668 19.2002 55.4668C18.9173 55.4668 18.646 55.3545 18.446 55.1544C18.2459 54.9544 18.1335 54.6831 18.1335 54.4002C18.1335 54.1173 18.2459 53.846 18.446 53.6459C18.646 53.4459 18.9173 53.3335 19.2002 53.3335C19.4831 53.3335 19.7544 53.4459 19.9545 53.6459C20.1545 53.846 20.2669 54.1173 20.2669 54.4002ZM31.8573 33.6002C31.6471 33.9661 31.4146 34.315 31.1732 34.6267C30.9318 34.9385 30.6862 35.207 30.4507 35.4167C30.2151 35.6264 29.9942 35.7732 29.8007 35.8487C29.6071 35.9242 29.4448 35.9268 29.3229 35.8565C29.2011 35.7862 29.1222 35.6442 29.0908 35.4389C29.0594 35.2335 29.0761 34.9688 29.14 34.6599C29.2038 34.3511 29.3135 34.0042 29.4628 33.6392C29.6121 33.2743 29.798 32.8985 30.0098 32.5335C30.22 32.1676 30.4525 31.8187 30.6939 31.5069C30.9353 31.1952 31.1809 30.9267 31.4164 30.717C31.652 30.5073 31.8729 30.3604 32.0664 30.285C32.26 30.2095 32.4223 30.2068 32.5442 30.2772C32.666 30.3475 32.7449 30.4894 32.7763 30.6948C32.8077 30.9002 32.791 31.1649 32.7271 31.4738C32.6633 31.7826 32.5536 32.1295 32.4043 32.4944C32.255 32.8594 32.0691 33.2352 31.8573 33.6002Z" fill="black" stroke="black" stroke-width="2.88" stroke-linecap="round" stroke-linejoin="round"/>
7
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M47.9999 19.2C43.2852 19.2 39.4666 23.0186 39.4666 27.7333C39.4666 29.632 40.0852 31.3813 41.1306 32.8106C36.9706 35.2 34.1332 39.6586 34.1332 44.7999C34.1332 49.1306 36.1386 52.992 39.2746 55.5306C32.8746 57.792 23.4666 67.3706 23.4666 84.2666H72.5332C72.5332 67.3706 63.1252 57.792 56.7252 55.5306C59.8612 52.992 61.8666 49.1306 61.8666 44.7999C61.8666 39.6586 59.0292 35.2 54.8692 32.8106C55.9145 31.3813 56.5332 29.632 56.5332 27.7333C56.5332 23.0186 52.7146 19.2 47.9999 19.2Z" fill="black" stroke="black" stroke-width="2.88" stroke-linecap="round"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M47.9999 19.2C43.2852 19.2 39.4666 23.0186 39.4666 27.7333C39.4666 29.632 40.0852 31.3813 41.1306 32.8106C36.9706 35.2 34.1332 39.6586 34.1332 44.7999C34.1332 49.1306 36.1386 52.992 39.2746 55.5306C32.8746 57.792 23.4666 67.3706 23.4666 84.2666H72.5332C72.5332 67.3706 63.1252 57.792 56.7252 55.5306C59.8612 52.992 61.8666 49.1306 61.8666 44.7999C61.8666 39.6586 59.0292 35.2 54.8692 32.8106C55.9145 31.3813 56.5332 29.632 56.5332 27.7333C56.5332 23.0186 52.7146 19.2 47.9999 19.2Z" fill="white" stroke="black" stroke-width="2.88" stroke-linecap="round"/>
3
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12.8 31.4662C16.0401 31.4662 18.6667 28.8396 18.6667 25.5996C18.6667 22.3595 16.0401 19.7329 12.8 19.7329C9.55995 19.7329 6.93335 22.3595 6.93335 25.5996C6.93335 28.8396 9.55995 31.4662 12.8 31.4662Z" fill="black"/>
3
+ <path d="M29.8667 25.0663C33.1067 25.0663 35.7333 22.4397 35.7333 19.1997C35.7333 15.9596 33.1067 13.333 29.8667 13.333C26.6266 13.333 24 15.9596 24 19.1997C24 22.4397 26.6266 25.0663 29.8667 25.0663Z" fill="black"/>
4
+ <path d="M47.9997 22.9333C51.2398 22.9333 53.8664 20.3067 53.8664 17.0666C53.8664 13.8265 51.2398 11.2 47.9997 11.2C44.7597 11.2 42.1331 13.8265 42.1331 17.0666C42.1331 20.3067 44.7597 22.9333 47.9997 22.9333Z" fill="black"/>
5
+ <path d="M66.1333 25.0663C69.3733 25.0663 71.9999 22.4397 71.9999 19.1997C71.9999 15.9596 69.3733 13.333 66.1333 13.333C62.8932 13.333 60.2666 15.9596 60.2666 19.1997C60.2666 22.4397 62.8932 25.0663 66.1333 25.0663Z" fill="black"/>
6
+ <path d="M83.2002 31.4662C86.4402 31.4662 89.0668 28.8396 89.0668 25.5996C89.0668 22.3595 86.4402 19.7329 83.2002 19.7329C79.9601 19.7329 77.3335 22.3595 77.3335 25.5996C77.3335 28.8396 79.9601 31.4662 83.2002 31.4662Z" fill="black"/>
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M19.1998 55.4666C37.3331 52.2666 63.9998 52.2666 76.7998 55.4666L82.1331 28.7999L66.1331 53.3333L65.4931 23.2533L54.3998 52.2666L47.9998 21.3333L41.5998 52.2666L30.5065 23.2533L29.8665 53.3333L13.8665 28.7999L19.1998 55.4666Z" fill="black" stroke="black" stroke-width="2.88" stroke-linejoin="round"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M19.2 55.4667C19.2 59.7333 22.4 59.7333 24.5333 64C26.6666 67.2 26.6666 66.1333 25.6 71.4666C22.4 73.6 22.4 76.8 22.4 76.8C19.2 80 23.4666 82.1333 23.4666 82.1333C37.3333 84.2666 58.6666 84.2666 72.5333 82.1333C72.5333 82.1333 75.7333 80 72.5333 76.8C72.5333 76.8 73.5999 73.6 70.3999 71.4666C69.3333 66.1333 69.3333 67.2 71.4666 64C73.5999 59.7333 76.7999 59.7333 76.7999 55.4667C58.6666 52.2667 37.3333 52.2667 19.2 55.4667Z" fill="black" stroke="black" stroke-width="2.88" stroke-linejoin="round"/>
9
+ <path d="M23.4666 82.1331C39.3551 87.6605 56.6447 87.6605 72.5332 82.1331" stroke="black" stroke-width="2.88" stroke-linejoin="round"/>
10
+ <path d="M23.4668 61.8665C39.3554 56.3391 56.6449 56.3391 72.5335 61.8665M26.6668 67.1998H69.3335M24.5335 73.5998C39.7713 78.6445 56.229 78.6445 71.4668 73.5998M22.4001 79.9998C38.9334 86.0341 57.0669 86.0341 73.6001 79.9998" stroke="white" stroke-width="2.88" stroke-linecap="round" stroke-linejoin="round"/>
11
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M17.0665 25.6001C17.0665 26.7317 16.617 27.8169 15.8169 28.6171C15.0167 29.4172 13.9315 29.8667 12.7999 29.8667C11.6683 29.8667 10.583 29.4172 9.78288 28.6171C8.98273 27.8169 8.5332 26.7317 8.5332 25.6001C8.5332 24.4685 8.98273 23.3832 9.78288 22.5831C10.583 21.7829 11.6683 21.3334 12.7999 21.3334C13.9315 21.3334 15.0167 21.7829 15.8169 22.5831C16.617 23.3832 17.0665 24.4685 17.0665 25.6001ZM52.2665 16.0001C52.2665 17.1317 51.817 18.2169 51.0169 19.0171C50.2167 19.8172 49.1315 20.2667 47.9999 20.2667C46.8683 20.2667 45.783 19.8172 44.9829 19.0171C44.1827 18.2169 43.7332 17.1317 43.7332 16.0001C43.7332 14.8685 44.1827 13.7832 44.9829 12.9831C45.783 12.1829 46.8683 11.7334 47.9999 11.7334C49.1315 11.7334 50.2167 12.1829 51.0169 12.9831C51.817 13.7832 52.2665 14.8685 52.2665 16.0001ZM87.4665 25.6001C87.4665 26.7317 87.017 27.8169 86.2169 28.6171C85.4167 29.4172 84.3315 29.8667 83.1999 29.8667C82.0683 29.8667 80.983 29.4172 80.1829 28.6171C79.3827 27.8169 78.9332 26.7317 78.9332 25.6001C78.9332 24.4685 79.3827 23.3832 80.1829 22.5831C80.983 21.7829 82.0683 21.3334 83.1999 21.3334C84.3315 21.3334 85.4167 21.7829 86.2169 22.5831C87.017 23.3832 87.4665 24.4685 87.4665 25.6001ZM34.1332 18.1334C34.1332 19.265 33.6837 20.3502 32.8835 21.1504C32.0834 21.9505 30.9981 22.4001 29.8665 22.4001C28.7349 22.4001 27.6497 21.9505 26.8495 21.1504C26.0494 20.3502 25.5999 19.265 25.5999 18.1334C25.5999 17.0018 26.0494 15.9166 26.8495 15.1164C27.6497 14.3163 28.7349 13.8667 29.8665 13.8667C30.9981 13.8667 32.0834 14.3163 32.8835 15.1164C33.6837 15.9166 34.1332 17.0018 34.1332 18.1334ZM70.3999 19.2001C70.3999 20.3317 69.9504 21.4169 69.1502 22.2171C68.35 23.0172 67.2648 23.4667 66.1332 23.4667C65.0016 23.4667 63.9164 23.0172 63.1162 22.2171C62.3161 21.4169 61.8665 20.3317 61.8665 19.2001C61.8665 18.0685 62.3161 16.9832 63.1162 16.1831C63.9164 15.3829 65.0016 14.9334 66.1332 14.9334C67.2648 14.9334 68.35 15.3829 69.1502 16.1831C69.9504 16.9832 70.3999 18.0685 70.3999 19.2001Z" fill="white" stroke="black" stroke-width="2.88" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M19.1995 55.4664C37.3329 52.2664 63.9995 52.2664 76.7995 55.4664L81.0662 29.8664L66.1329 53.333V23.4664L54.3995 52.2664L47.9995 20.2664L41.5995 52.2664L29.8662 22.3997V53.333L14.9329 29.8664L19.1995 55.4664Z" fill="white" stroke="black" stroke-width="2.88" stroke-linejoin="round"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M19.2 55.4667C19.2 59.7333 22.4 59.7333 24.5333 64C26.6666 67.2 26.6666 66.1333 25.6 71.4666C22.4 73.6 22.4 76.8 22.4 76.8C19.2 80 23.4666 82.1333 23.4666 82.1333C37.3333 84.2666 58.6666 84.2666 72.5333 82.1333C72.5333 82.1333 75.7333 80 72.5333 76.8C72.5333 76.8 73.5999 73.6 70.3999 71.4666C69.3333 66.1333 69.3333 67.2 71.4666 64C73.5999 59.7333 76.7999 59.7333 76.7999 55.4667C58.6666 52.2667 37.3333 52.2667 19.2 55.4667Z" fill="white" stroke="black" stroke-width="2.88" stroke-linejoin="round"/>
5
+ <path d="M24.533 63.9999C31.9996 61.8666 63.9996 61.8666 71.4663 63.9999M25.5996 71.4666C38.3996 69.3332 57.5996 69.3332 70.3996 71.4666" stroke="black" stroke-width="2.88" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M19.2 83.2H76.7999V76.8H19.2V83.2ZM26.6666 68.2667L29.8666 62.9333H66.1333L69.3333 68.2667H26.6666ZM25.6 76.8V68.2667H70.3999V76.8H25.6Z" fill="black" stroke="black" stroke-width="2.88" stroke-linejoin="round"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M29.8669 62.9333V35.2H66.1336V62.9333H29.8669Z" fill="black" stroke="black" stroke-width="2.88"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M29.8666 35.2L23.4666 29.8666H72.5332L66.1332 35.2H29.8666ZM23.4666 29.8666V19.2H31.9999V23.4666H42.6666V19.2H53.3332V23.4666H63.9999V19.2H72.5332V29.8666H23.4666Z" fill="black"/>
5
+ <path d="M23.4666 29.8666L29.8666 35.2H66.1332L72.5332 29.8666M23.4666 29.8666H72.5332M23.4666 29.8666V19.2H31.9999V23.4666H42.6666V19.2H53.3332V23.4666H63.9999V19.2H72.5332V29.8666" stroke="black" stroke-width="2.88" stroke-linejoin="round"/>
6
+ <path d="M25.5999 75.7336H70.3999M27.7332 67.2003H68.2666M29.8666 62.9336H66.1332M29.8666 35.2003H66.1332M23.4666 29.8669H72.5332" stroke="white" stroke-width="1.92" stroke-linecap="round"/>
7
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M19.2 83.1999H76.7999V76.7999H19.2V83.1999ZM25.6 76.7999V68.2666H70.3999V76.7999H25.6ZM23.4666 29.8666V19.2H32V23.4666H42.6666V19.2H53.3333V23.4666H63.9999V19.2H72.5333V29.8666" fill="white"/>
3
+ <path d="M23.4666 29.8666V19.2H32V23.4666H42.6666V19.2H53.3333V23.4666H63.9999V19.2H72.5333V29.8666M19.2 83.1999H76.7999V76.7999H19.2V83.1999ZM25.6 76.7999V68.2666H70.3999V76.7999H25.6Z" stroke="black" stroke-width="2.88" stroke-linejoin="round"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M72.5332 29.8669L66.1332 36.2669H29.8666L23.4666 29.8669" fill="white"/>
5
+ <path d="M72.5332 29.8669L66.1332 36.2669H29.8666L23.4666 29.8669" stroke="black" stroke-width="2.88" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M66.1336 36.2666V62.9333H29.8669V36.2666" fill="white"/>
7
+ <path d="M66.1336 36.2666V62.9333H29.8669V36.2666" stroke="black" stroke-width="2.88"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M66.1334 62.9333L69.3334 68.2667H26.6667L29.8667 62.9333" fill="white"/>
9
+ <path d="M66.1334 62.9333L69.3334 68.2667H26.6667L29.8667 62.9333" stroke="black" stroke-width="2.88" stroke-linecap="round" stroke-linejoin="round"/>
10
+ <path d="M23.4666 29.8669H72.5332" stroke="black" stroke-width="2.88" stroke-linecap="round"/>
11
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M35.0853 22.5118C34.5493 21.0396 34.2563 19.4504 34.2563 17.7949C34.2563 10.1762 40.4325 4 48.0512 4C55.6699 4 61.8461 10.1762 61.8461 17.7949C61.8461 20.0266 61.3128 22.1421 60.3673 24.0127C61.7278 24.1068 63.0498 24.7198 64.0137 25.8213C69.2505 31.8063 73.8333 40.3397 73.8333 50.2308C73.8333 57.3022 71.3988 62.5421 68.1091 66.3177L74.3571 67.4135C76.9083 67.8609 78.7691 70.0766 78.7691 72.6667V82.6667C78.7691 84.0812 78.2072 85.4377 77.207 86.4379C76.2069 87.4381 74.8503 88 73.4358 88L22.6666 88C19.7211 88 17.3333 85.6122 17.3333 82.6667V72.6667C17.3333 70.0796 19.19 67.8656 21.7375 67.4149L27.3736 66.4178C24.0391 62.6352 21.564 57.3658 21.564 50.2308C21.564 42.5138 24.5546 35.7932 28.0621 30.6427C30.2667 27.4054 32.7627 24.657 35.0853 22.5118Z" fill="black"/>
3
+ <path d="M50.6667 49.5256H45.3334C45.3334 39.7325 48.3037 29.9558 54.8749 22.7995C55.9046 21.3979 56.5129 19.6674 56.5129 17.7948C56.5129 13.1216 52.7246 9.33325 48.0514 9.33325C43.3782 9.33325 39.5898 13.1216 39.5898 17.7948C39.5898 20.1004 40.512 22.1907 42.0076 23.7168C36.722 27.4849 26.8975 37.5851 26.8975 50.2307C26.8975 62.9923 36.903 68.1589 42.1519 69.2195L22.6667 72.6666V82.6666L73.436 82.6666V72.6666L53.4888 69.1682C58.797 67.9997 68.5001 62.798 68.5001 50.2307C68.5001 42.0019 64.6667 34.6666 60.0001 29.3333C54.8749 33.3333 50.6667 42.6666 50.6667 49.5256Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M35.0853 22.5118C34.5493 21.0396 34.2563 19.4504 34.2563 17.7949C34.2563 10.1762 40.4325 4 48.0512 4C55.6699 4 61.8461 10.1762 61.8461 17.7949C61.8461 20.0266 61.3128 22.1421 60.3673 24.0127C61.7278 24.1068 63.0498 24.7198 64.0137 25.8213C69.2505 31.8063 73.8333 40.3397 73.8333 50.2308C73.8333 57.3022 71.3988 62.5421 68.1091 66.3177L74.3571 67.4135C76.9083 67.8609 78.7691 70.0766 78.7691 72.6667V82.6667C78.7691 84.0812 78.2072 85.4377 77.207 86.4379C76.2069 87.4381 74.8503 88 73.4358 88L22.6666 88C19.7211 88 17.3333 85.6122 17.3333 82.6667V72.6667C17.3333 70.0796 19.19 67.8656 21.7375 67.4149L27.3736 66.4178C24.0391 62.6352 21.564 57.3658 21.564 50.2308C21.564 42.5138 24.5546 35.7932 28.0621 30.6427C30.2667 27.4054 32.7627 24.657 35.0853 22.5118Z" fill="white"/>
3
+ <path d="M50.6667 49.5256H45.3334C45.3334 39.7325 48.3037 29.9558 54.8749 22.7995C55.9046 21.3979 56.5129 19.6674 56.5129 17.7948C56.5129 13.1216 52.7246 9.33325 48.0514 9.33325C43.3782 9.33325 39.5898 13.1216 39.5898 17.7948C39.5898 20.1004 40.512 22.1907 42.0076 23.7168C36.722 27.4849 26.8975 37.5851 26.8975 50.2307C26.8975 62.9923 36.903 68.1589 42.1519 69.2195L22.6667 72.6666V82.6666L73.436 82.6666V72.6666L53.4888 69.1682C58.797 67.9997 68.5001 62.798 68.5001 50.2307C68.5001 42.0019 64.6667 34.6666 60.0001 29.3333C54.8749 33.3333 50.6667 42.6666 50.6667 49.5256Z" fill="black"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M40.0025 5.16675C40.0924 2.28749 42.4525 0 45.3332 0H53.3332C56.2139 0 58.574 2.28749 58.6639 5.16675L58.7108 6.66667H61.3332C64.2787 6.66667 66.6665 9.05448 66.6665 12V15.2347C72.4801 13.9192 78.755 14.7979 84.0809 19.2362C95.1451 28.4563 94.127 47.7841 80.9961 58.3558C77.8273 60.907 75.3379 63.0221 73.6236 65.2013C73.2325 65.6985 72.8975 66.1796 72.6155 66.6504L78.0206 67.3815C80.6658 67.7392 82.6391 69.9974 82.6391 72.6667V82.6667C82.6391 85.6122 80.2513 88 77.3058 88H21.3606C18.4151 88 16.0273 85.6122 16.0273 82.6667V72.6667C16.0273 69.9974 18.0006 67.7392 20.6458 67.3815L26.0509 66.6504C25.7689 66.1795 25.4339 65.6985 25.0427 65.2013C23.3285 63.022 20.8391 60.907 17.6703 58.3558C4.53935 47.7841 3.52131 28.4564 14.5855 19.2362C19.9114 14.7979 26.1863 13.9192 31.9999 15.2347V12C31.9999 9.05448 34.3877 6.66667 37.3332 6.66667H39.9556L40.0025 5.16675Z" fill="black"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M45.3335 5.33325H53.3335L53.5418 11.9999H61.3335V19.9999H53.7918L54.1582 29.0572C54.3044 28.885 54.4549 28.7161 54.6101 28.5512C61.8943 20.8094 72.6944 16.6895 80.6668 23.3333C88.6668 29.9999 88.6668 45.3333 77.6518 54.2015C71.4122 59.225 65.8233 64.0678 66.0986 71.1508L77.3061 72.6666V82.6666H21.3609V72.6666L32.5683 71.1508C32.8437 64.0678 27.2548 59.225 21.0152 54.2015C10.0002 45.3333 10.0002 29.9999 18.0002 23.3333C25.9726 16.6895 36.7727 20.8094 44.0569 28.5512C44.2121 28.7161 44.3626 28.885 44.5088 29.0572L44.8752 19.9999H37.3335V11.9999H45.1252L45.3335 5.33325ZM37.7975 35.9641C42.6864 43.9721 43.3335 53.3333 43.3335 57.4042C40.883 57.4086 31.6453 53.3446 26.7543 46.6728C23.2332 41.8695 22.3151 34.7432 25.3335 31.9766C28.3519 29.21 34.742 30.9591 37.7975 35.9641ZM60.8695 35.9641C55.9806 43.9721 55.3335 53.3333 55.3335 57.4042C57.784 57.4086 67.0217 53.3446 71.9127 46.6728C75.4338 41.8695 76.3519 34.7432 73.3335 31.9766C70.3151 29.21 63.925 30.9591 60.8695 35.9641Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M40.0025 5.16675C40.0924 2.28749 42.4525 0 45.3332 0H53.3332C56.2139 0 58.574 2.28749 58.6639 5.16675L58.7108 6.66667H61.3332C64.2787 6.66667 66.6665 9.05448 66.6665 12V15.2347C72.4801 13.9192 78.755 14.7979 84.0809 19.2362C95.1451 28.4563 94.127 47.7841 80.9961 58.3558C77.8273 60.907 75.3379 63.0221 73.6236 65.2013C73.2325 65.6985 72.8975 66.1796 72.6155 66.6504L78.0206 67.3815C80.6658 67.7392 82.6391 69.9974 82.6391 72.6667V82.6667C82.6391 85.6122 80.2513 88 77.3058 88H21.3606C18.4151 88 16.0273 85.6122 16.0273 82.6667V72.6667C16.0273 69.9974 18.0006 67.7392 20.6458 67.3815L26.0509 66.6504C25.7689 66.1795 25.4339 65.6985 25.0427 65.2013C23.3285 63.022 20.8391 60.907 17.6703 58.3558C4.53935 47.7841 3.52131 28.4564 14.5855 19.2362C19.9114 14.7979 26.1863 13.9192 31.9999 15.2347V12C31.9999 9.05448 34.3877 6.66667 37.3332 6.66667H39.9556L40.0025 5.16675Z" fill="white"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M45.3335 5.33325H53.3335L53.5418 11.9999H61.3335V19.9999H53.7918L54.1582 29.0572C54.3044 28.885 54.4549 28.7161 54.6101 28.5512C61.8943 20.8094 72.6944 16.6895 80.6668 23.3333C88.6668 29.9999 88.6668 45.3333 77.6518 54.2015C71.4122 59.225 65.8233 64.0678 66.0986 71.1508L77.3061 72.6666V82.6666H21.3609V72.6666L32.5683 71.1508C32.8437 64.0678 27.2548 59.225 21.0152 54.2015C10.0002 45.3333 10.0002 29.9999 18.0002 23.3333C25.9726 16.6895 36.7727 20.8094 44.0569 28.5512C44.2121 28.7161 44.3626 28.885 44.5088 29.0572L44.8752 19.9999H37.3335V11.9999H45.1252L45.3335 5.33325ZM37.7975 35.9641C42.6864 43.9721 43.3335 53.3333 43.3335 57.4042C40.883 57.4086 31.6453 53.3446 26.7543 46.6728C23.2332 41.8695 22.3151 34.7432 25.3335 31.9766C28.3519 29.21 34.742 30.9591 37.7975 35.9641ZM60.8695 35.9641C55.9806 43.9721 55.3335 53.3333 55.3335 57.4042C57.784 57.4086 67.0217 53.3446 71.9127 46.6728C75.4338 41.8695 76.3519 34.7432 73.3335 31.9766C70.3151 29.21 63.925 30.9591 60.8695 35.9641Z" fill="black"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M39.5865 0.676033C41.3421 0.478627 43.0815 1.16336 44.2314 2.50452L55.1126 15.1958C67.6085 18.2838 74.8487 27.6932 78.8531 39.4396C82.9793 51.5434 84 66.9094 84 82.6667C84 85.6122 81.6122 88.0001 78.6667 88.0001H28.9399C26.1085 88.0001 23.7706 85.7875 23.6147 82.9604C23.4755 80.4375 24.056 76.0599 25.8248 71.5886L25.8573 71.5068C20.8343 74.203 15.2598 73.5572 11.1215 70.6108C6.09239 67.0301 3.29606 60.0206 6.49091 53.0985C8.79475 48.1068 11.2778 45.4635 13.1562 43.4644C14.9108 41.597 15.642 40.7757 16.1593 38.7066C19.2956 26.1613 25.7479 18.9343 32.6772 15.6362C32.577 14.207 32.6585 12.8301 32.8338 11.5799C33.2701 8.46818 34.3564 5.59259 35.4637 3.49041C36.287 1.92736 37.8309 0.873439 39.5865 0.676033Z" fill="black"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M52.2274 20.0246L40.1823 5.97583C38.4387 9.28596 36.7483 15.1281 39.1786 19.3455C37.999 19.4505 36.8717 19.65 35.9998 20C30.437 22.2324 24.3332 28 21.3332 40C20.4645 43.4747 18.901 45.1386 17.0427 47.1163C15.2899 48.9818 13.2748 51.1264 11.3332 55.3333C7.33316 64 18.1282 72.6666 25.9998 64.7951C30.4253 60.3695 34.2936 58.5426 37.5414 57.0087C42.2158 54.8011 45.6047 53.2006 47.519 45.3333C48.4297 49.003 48.0654 57.6636 39.3222 62.948C30.5791 68.2324 28.7576 79.3638 28.9397 82.6666H78.6665C78.6665 51.3109 74.5151 24.2197 52.2274 20.0246Z" fill="white"/>
4
+ <circle cx="37.3333" cy="36" r="4" fill="black"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M39.5865 0.676033C41.3421 0.478627 43.0815 1.16336 44.2314 2.50452L55.1126 15.1958C67.6085 18.2838 74.8487 27.6932 78.8531 39.4396C82.9793 51.5434 84 66.9094 84 82.6667C84 85.6122 81.6122 88.0001 78.6667 88.0001H28.9399C26.1085 88.0001 23.7706 85.7875 23.6147 82.9604C23.4755 80.4375 24.056 76.0599 25.8248 71.5886L25.8573 71.5068C20.8343 74.203 15.2598 73.5572 11.1215 70.6108C6.09239 67.0301 3.29606 60.0206 6.49091 53.0985C8.79475 48.1068 11.2778 45.4635 13.1562 43.4644C14.9108 41.597 15.642 40.7757 16.1593 38.7066C19.2956 26.1613 25.7479 18.9343 32.6772 15.6362C32.577 14.207 32.6585 12.8301 32.8338 11.5799C33.2701 8.46818 34.3564 5.59259 35.4637 3.49041C36.287 1.92736 37.8309 0.873439 39.5865 0.676033Z" fill="white"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M52.2274 20.0246L40.1823 5.97583C38.4387 9.28596 36.7483 15.1281 39.1786 19.3455C37.999 19.4505 36.8717 19.65 35.9998 20C30.437 22.2324 24.3332 28 21.3332 40C20.4645 43.4747 18.901 45.1386 17.0427 47.1163C15.2899 48.9818 13.2748 51.1264 11.3332 55.3333C7.33316 64 18.1282 72.6666 25.9998 64.7951C30.4253 60.3695 34.2936 58.5426 37.5414 57.0087C42.2158 54.8011 45.6047 53.2006 47.519 45.3333C48.4297 49.003 48.0654 57.6636 39.3222 62.948C30.5791 68.2324 28.7576 79.3638 28.9397 82.6666H78.6665C78.6665 51.3109 74.5151 24.2197 52.2274 20.0246Z" fill="black"/>
4
+ <circle cx="37.3333" cy="36" r="4" fill="white"/>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M30.81 54.836C30.1737 55.7046 29.4145 56.6092 28.5294 57.5398C25.406 60.8238 21.5754 63.5257 19.1031 64.9384L18.6872 65.1761C17.0255 66.1257 16 67.8928 16 69.8067V82.6667C16 85.6122 18.3878 88 21.3333 88H73.3333C76.2789 88 78.6667 85.6122 78.6667 82.6667V69.8067C78.6667 67.8928 77.6412 66.1257 75.9794 65.1761L75.5635 64.9385C73.0913 63.5257 69.2606 60.8238 66.1373 57.5398C65.2522 56.6092 64.493 55.7046 63.8567 54.836C66.1974 54.2722 67.9365 52.1646 67.9365 49.6508V40.9691C67.9365 39.2362 67.0946 37.6113 65.6788 36.612L63.4136 35.013C64.7206 32.4735 65.4603 29.5917 65.4603 26.5397C65.4603 16.3005 57.1598 8 46.9206 8C36.6815 8 28.381 16.3005 28.381 26.5397C28.381 29.7634 29.2059 32.7963 30.6527 35.4368L28.9878 36.612C27.5721 37.6113 26.7302 39.2362 26.7302 40.9691V49.6508C26.7302 52.1646 28.4693 54.2722 30.81 54.836Z" fill="black"/>
3
+ <path d="M60.1269 26.5396C60.1269 30.3698 58.4963 33.8192 55.8915 36.2314L62.6031 40.9691V49.6507H56.0327C56.3495 53.6749 58.9315 57.7023 62.2726 61.2152C65.8184 64.9433 70.0843 67.9501 72.9174 69.569L73.3333 69.8066V82.6666H21.3333V69.8066L21.7491 69.569C24.5822 67.9501 28.8481 64.9433 32.3939 61.2152C35.735 57.7023 38.317 53.6749 38.6338 49.6507H32.0634V40.9691L38.3142 36.5568C35.4978 34.1348 33.7142 30.5455 33.7142 26.5396C33.7142 19.2459 39.6269 13.3333 46.9206 13.3333C54.2142 13.3333 60.1269 19.2459 60.1269 26.5396Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M30.81 54.836C30.1737 55.7046 29.4145 56.6092 28.5294 57.5398C25.406 60.8238 21.5754 63.5257 19.1031 64.9384L18.6872 65.1761C17.0255 66.1257 16 67.8928 16 69.8067V82.6667C16 85.6122 18.3878 88 21.3333 88H73.3333C76.2789 88 78.6667 85.6122 78.6667 82.6667V69.8067C78.6667 67.8928 77.6412 66.1257 75.9794 65.1761L75.5635 64.9385C73.0913 63.5257 69.2606 60.8238 66.1373 57.5398C65.2522 56.6092 64.493 55.7046 63.8567 54.836C66.1974 54.2722 67.9365 52.1646 67.9365 49.6508V40.9691C67.9365 39.2362 67.0946 37.6113 65.6788 36.612L63.4136 35.013C64.7206 32.4735 65.4603 29.5917 65.4603 26.5397C65.4603 16.3005 57.1598 8 46.9206 8C36.6815 8 28.381 16.3005 28.381 26.5397C28.381 29.7634 29.2059 32.7963 30.6527 35.4368L28.9878 36.612C27.5721 37.6113 26.7302 39.2362 26.7302 40.9691V49.6508C26.7302 52.1646 28.4693 54.2722 30.81 54.836Z" fill="white"/>
3
+ <path d="M60.1269 26.5396C60.1269 30.3698 58.4963 33.8192 55.8915 36.2314L62.6031 40.9691V49.6507H56.0327C56.3495 53.6749 58.9315 57.7023 62.2726 61.2152C65.8184 64.9433 70.0843 67.9501 72.9174 69.569L73.3333 69.8066V82.6666H21.3333V69.8066L21.7491 69.569C24.5822 67.9501 28.8481 64.9433 32.3939 61.2152C35.735 57.7023 38.317 53.6749 38.6338 49.6507H32.0634V40.9691L38.3142 36.5568C35.4978 34.1348 33.7142 30.5455 33.7142 26.5396C33.7142 19.2459 39.6269 13.3333 46.9206 13.3333C54.2142 13.3333 60.1269 19.2459 60.1269 26.5396Z" fill="black"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M23.9999 13.3333C23.9999 14.6497 24.2117 15.9163 24.603 17.101L21.9704 18.336C19.788 16.0737 16.7249 14.6666 13.3333 14.6666C6.70583 14.6666 1.33325 20.0392 1.33325 26.6666C1.33325 32.5743 5.60232 37.4849 11.2238 38.4818L17.5466 60.1599C17.6786 60.6124 17.87 61.0455 18.1157 61.4477L21.7599 67.4108L21.7375 67.4148C19.19 67.8655 17.3333 70.0795 17.3333 72.6666V82.6666C17.3333 85.6121 19.7211 87.9999 22.6666 87.9999L73.4358 87.9999C74.8503 87.9999 76.2069 87.438 77.207 86.4378C78.2072 85.4376 78.7691 84.0811 78.7691 82.6666V72.6666C78.7691 70.0765 76.9083 67.8609 74.3571 67.4134L74.2499 67.3946L77.8841 61.4477C78.1299 61.0455 78.3213 60.6124 78.4533 60.1599L84.776 38.4818C90.3975 37.4849 94.6666 32.5743 94.6666 26.6666C94.6666 20.0392 89.294 14.6666 82.6666 14.6666C79.2706 14.6666 76.2042 16.0772 74.0212 18.3445L71.3932 17.1118C71.7869 15.924 71.9999 14.6537 71.9999 13.3333C71.9999 6.70583 66.6273 1.33325 59.9999 1.33325C53.3725 1.33325 47.9999 6.70583 47.9999 13.3333C47.9999 6.70583 42.6273 1.33325 35.9999 1.33325C29.3725 1.33325 23.9999 6.70583 23.9999 13.3333Z" fill="black"/>
3
+ <path d="M38.3931 19.5577C40.8928 18.596 42.6667 16.1719 42.6667 13.3334C42.6667 9.65152 39.682 6.66675 36.0001 6.66675C32.3182 6.66675 29.3334 9.65152 29.3334 13.3334C29.3334 16.7359 31.8823 19.543 35.1748 19.9495L32.2018 44.0001L17.8697 31.5522C19.1802 30.3348 20.0001 28.5965 20.0001 26.6668C20.0001 22.9849 17.0153 20.0001 13.3334 20.0001C9.65152 20.0001 6.66675 22.9849 6.66675 26.6668C6.66675 30.3487 9.65152 33.3334 13.3334 33.3334C13.9816 33.3334 14.6081 33.2409 15.2006 33.0684L22.6667 58.6668L30.3876 71.3009L22.6667 72.6667V82.6667L73.436 82.6668V72.6667L65.616 71.2952L73.3334 58.6668L80.7996 33.0684C81.3921 33.2409 82.0186 33.3334 82.6668 33.3334C86.3487 33.3334 89.3334 30.3487 89.3334 26.6668C89.3334 22.9849 86.3487 20.0001 82.6668 20.0001C78.9849 20.0001 76.0001 22.9849 76.0001 26.6668C76.0001 28.5965 76.82 30.3348 78.1305 31.5522L63.7984 44.0001L60.8253 19.9495C64.1178 19.543 66.6667 16.7359 66.6667 13.3334C66.6667 9.65152 63.682 6.66675 60.0001 6.66675C56.3182 6.66675 53.3334 9.65152 53.3334 13.3334C53.3334 16.1719 55.1073 18.596 57.607 19.5577L48.0001 41.3334L38.3931 19.5577Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M23.9999 13.3333C23.9999 14.6497 24.2117 15.9163 24.603 17.101L21.9704 18.336C19.788 16.0737 16.7249 14.6666 13.3333 14.6666C6.70583 14.6666 1.33325 20.0392 1.33325 26.6666C1.33325 32.5743 5.60232 37.4849 11.2238 38.4818L17.5466 60.1599C17.6786 60.6124 17.87 61.0455 18.1157 61.4477L21.7599 67.4108L21.7375 67.4148C19.19 67.8655 17.3333 70.0795 17.3333 72.6666V82.6666C17.3333 85.6121 19.7211 87.9999 22.6666 87.9999L73.4358 87.9999C74.8503 87.9999 76.2069 87.438 77.207 86.4378C78.2072 85.4376 78.7691 84.0811 78.7691 82.6666V72.6666C78.7691 70.0765 76.9083 67.8609 74.3571 67.4134L74.2499 67.3946L77.8841 61.4477C78.1299 61.0455 78.3213 60.6124 78.4533 60.1599L84.776 38.4818C90.3975 37.4849 94.6666 32.5743 94.6666 26.6666C94.6666 20.0392 89.294 14.6666 82.6666 14.6666C79.2706 14.6666 76.2042 16.0772 74.0212 18.3445L71.3932 17.1118C71.7869 15.924 71.9999 14.6537 71.9999 13.3333C71.9999 6.70583 66.6273 1.33325 59.9999 1.33325C53.3725 1.33325 47.9999 6.70583 47.9999 13.3333C47.9999 6.70583 42.6273 1.33325 35.9999 1.33325C29.3725 1.33325 23.9999 6.70583 23.9999 13.3333Z" fill="white"/>
3
+ <path d="M38.3931 19.5577C40.8928 18.596 42.6667 16.1719 42.6667 13.3334C42.6667 9.65152 39.682 6.66675 36.0001 6.66675C32.3182 6.66675 29.3334 9.65152 29.3334 13.3334C29.3334 16.7359 31.8823 19.543 35.1748 19.9495L32.2018 44.0001L17.8697 31.5522C19.1802 30.3348 20.0001 28.5965 20.0001 26.6668C20.0001 22.9849 17.0153 20.0001 13.3334 20.0001C9.65152 20.0001 6.66675 22.9849 6.66675 26.6668C6.66675 30.3487 9.65152 33.3334 13.3334 33.3334C13.9816 33.3334 14.6081 33.2409 15.2006 33.0684L22.6667 58.6668L30.3876 71.3009L22.6667 72.6667V82.6667L73.436 82.6668V72.6667L65.616 71.2952L73.3334 58.6668L80.7996 33.0684C81.3921 33.2409 82.0186 33.3334 82.6668 33.3334C86.3487 33.3334 89.3334 30.3487 89.3334 26.6668C89.3334 22.9849 86.3487 20.0001 82.6668 20.0001C78.9849 20.0001 76.0001 22.9849 76.0001 26.6668C76.0001 28.5965 76.82 30.3348 78.1305 31.5522L63.7984 44.0001L60.8253 19.9495C64.1178 19.543 66.6667 16.7359 66.6667 13.3334C66.6667 9.65152 63.682 6.66675 60.0001 6.66675C56.3182 6.66675 53.3334 9.65152 53.3334 13.3334C53.3334 16.1719 55.1073 18.596 57.607 19.5577L48.0001 41.3334L38.3931 19.5577Z" fill="black"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M34.6667 6.66675C35.6381 6.66675 36.5489 6.92647 37.3333 7.38025C38.1178 6.92647 39.0286 6.66675 40 6.66675H54.6667C55.6381 6.66675 56.5489 6.92647 57.3333 7.38025C58.1178 6.92647 59.0286 6.66675 60 6.66675H73.3333C76.2789 6.66675 78.6667 9.05456 78.6667 12.0001V24.0001C78.6667 25.6788 77.8763 27.2595 76.5333 28.2667L68.3038 34.4389L70.6341 55.4111C71.251 60.9635 73.8353 63.7805 77.6 68.8001C78.2924 69.7233 78.6667 70.8461 78.6667 72.0001V82.6668C78.6667 85.6123 76.2789 88.0001 73.3333 88.0001H21.3333C18.3878 88.0001 16 85.6123 16 82.6668V72.0001C16 70.8461 16.3743 69.7233 17.0667 68.8001C20.8313 63.7805 23.4157 60.9635 24.0326 55.4111L26.3629 34.4389L18.1333 28.2667C16.7904 27.2595 16 25.6788 16 24.0001V12.0001C16 9.05456 18.3878 6.66675 21.3333 6.66675H34.6667Z" fill="black"/>
3
+ <path d="M21.3333 12H34.6666V20H39.9999V12H54.6666V20H59.9999V12H73.3332V24L62.6666 32L65.3333 56H29.3333L31.9999 32L21.3333 24V12Z" fill="white"/>
4
+ <path d="M29.3333 61.3333H65.3333L73.3333 72V82.6667H21.3333V72L29.3333 61.3333Z" fill="white"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M34.6667 6.66675C35.6381 6.66675 36.5489 6.92647 37.3333 7.38025C38.1178 6.92647 39.0286 6.66675 40 6.66675H54.6667C55.6381 6.66675 56.5489 6.92647 57.3333 7.38025C58.1178 6.92647 59.0286 6.66675 60 6.66675H73.3333C76.2789 6.66675 78.6667 9.05456 78.6667 12.0001V24.0001C78.6667 25.6788 77.8763 27.2595 76.5333 28.2667L68.3038 34.4389L70.6341 55.4111C71.251 60.9635 73.8353 63.7805 77.6 68.8001C78.2924 69.7233 78.6667 70.8461 78.6667 72.0001V82.6668C78.6667 85.6123 76.2789 88.0001 73.3333 88.0001H21.3333C18.3878 88.0001 16 85.6123 16 82.6668V72.0001C16 70.8461 16.3743 69.7233 17.0667 68.8001C20.8313 63.7805 23.4157 60.9635 24.0326 55.4111L26.3629 34.4389L18.1333 28.2667C16.7904 27.2595 16 25.6788 16 24.0001V12.0001C16 9.05456 18.3878 6.66675 21.3333 6.66675H34.6667Z" fill="white"/>
3
+ <path d="M21.3333 12H34.6666V20H39.9999V12H54.6666V20H59.9999V12H73.3332V24L62.6666 32L65.3333 56H29.3333L31.9999 32L21.3333 24V12Z" fill="black"/>
4
+ <path d="M29.3333 61.3333H65.3333L73.3333 72V82.6667H21.3333V72L29.3333 61.3333Z" fill="black"/>
5
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_575_299288)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M54.8749 28.133C54.4186 28.6299 53.9797 29.1394 53.5579 29.6608C49.5714 34.5881 47.1171 40.5662 46.0167 46.8591C45.5568 49.4887 45.3334 52.1732 45.3334 54.8591H50.6667C50.6667 50.553 52.3253 45.2718 54.828 40.9472C55.9901 38.9393 57.3342 37.1375 58.7787 35.7354C58.9909 35.5295 59.2052 35.3322 59.4214 35.1442C59.6129 34.9776 59.8058 34.8184 60.0001 34.6667C60.9275 35.7266 61.822 36.8656 62.66 38.0749C63.3559 39.079 64.0128 40.1317 64.6173 41.2278C66.9482 45.4546 68.5001 50.3285 68.5001 55.5642C68.5001 61.1347 66.5936 65.2581 64.0086 68.2246C60.7616 71.9505 56.4441 73.8511 53.4888 74.5017L73.436 78.0001V88.0001L22.6667 88.0001V78.0001L42.1519 74.553C39.2184 73.9602 34.7992 72.085 31.4713 68.3183C28.8445 65.3452 26.8975 61.1936 26.8975 55.5642C26.8975 46.9257 31.4821 39.4752 36.0726 34.4195C38.202 32.0742 40.3327 30.2444 42.0076 29.0503C41.3914 28.4215 40.8726 27.697 40.4755 26.9012C39.9087 25.7653 39.5898 24.484 39.5898 23.1283C39.5898 18.4551 43.3782 14.6667 48.0514 14.6667C52.7246 14.6667 56.5129 18.4551 56.5129 23.1283C56.5129 25.0009 55.9046 26.7314 54.8749 28.133ZM32.0608 27.0477C31.7532 25.7909 31.5898 24.478 31.5898 23.1283C31.5898 14.0368 38.9599 6.66675 48.0514 6.66675C57.1428 6.66675 64.5129 14.0368 64.5129 23.1283C64.5129 24.6994 64.2911 26.223 63.8772 27.667C64.6666 28.1041 65.3941 28.6826 66.0207 29.3987C71.5426 35.7095 76.5001 44.842 76.5001 55.5642C76.5001 61.3495 75.0239 66.0279 72.7816 69.7632L74.8179 70.1204C78.6447 70.7915 81.436 74.115 81.436 78.0001V88.0001C81.436 90.1218 80.5931 92.1567 79.0928 93.657C77.5925 95.1572 75.5577 96.0001 73.436 96.0001L22.6667 96.0001C18.2485 96.0001 14.6667 92.4184 14.6667 88.0001V78.0001C14.6667 74.1194 17.4518 70.7984 21.2731 70.1224L22.6793 69.8736C20.4006 66.1206 18.8975 61.4075 18.8975 55.5642C18.8975 47.1501 22.1553 39.9124 25.8581 34.4751C27.8038 31.6181 29.9637 29.1203 32.0608 27.0477Z" fill="black"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_575_299288">
7
+ <rect width="96" height="96" fill="white"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M50.8025 58.8819H44.9354C44.9354 48.1086 48.2029 37.3534 55.4318 29.4808C56.5646 27.9389 57.2338 26.0352 57.2338 23.9752C57.2338 18.8343 53.0663 14.6667 47.9253 14.6667C42.7844 14.6667 38.6169 18.8343 38.6169 23.9752C38.6169 26.5116 39.6314 28.811 41.2767 30.4899C35.462 34.6352 24.6542 45.7463 24.6542 59.6576C24.6542 73.6965 35.6612 79.3802 41.4354 80.547L20 84.3391V95.3399L75.8507 95.34V84.3391L53.907 80.4905C59.7465 79.2051 70.4207 73.4827 70.4207 59.6576C70.4207 50.6052 66.2037 42.5357 61.07 36.6685C55.4318 41.0689 50.8025 51.3364 50.8025 58.8819Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_575_299290)">
3
+ <path d="M43.333 62.5988L43.3333 62.7377H43.3253C41.9968 62.7353 38.7005 61.5518 35.1791 59.4157C32.1735 57.5924 29.0039 55.0752 26.7541 52.0063C23.233 47.203 22.3149 40.0767 25.3333 37.3101C28.3517 34.5435 34.7418 36.2926 37.7973 41.2976C40.4017 45.5635 41.8023 50.2134 42.5426 54.243C43.1764 57.693 43.3262 60.6884 43.333 62.5988Z" fill="black"/>
4
+ <path d="M71.9124 52.0063C69.6627 55.0752 66.4931 57.5924 63.4875 59.4157C59.9661 61.5518 56.6698 62.7353 55.3413 62.7377H55.3333L55.3335 62.5988C55.3404 60.6883 55.4902 57.693 56.124 54.243C56.8643 50.2134 58.2649 45.5635 60.8693 41.2976C63.9248 36.2926 70.3149 34.5435 73.3333 37.3101C76.3517 40.0767 75.4336 47.203 71.9124 52.0063Z" fill="black"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M45.3333 2.66675C41.3806 2.66675 38.0813 5.53798 37.4443 9.33341H37.3333C32.915 9.33341 29.3333 12.9151 29.3333 17.3334V17.4475C23.7684 16.9296 17.9421 18.3013 12.8785 22.521C0.282129 33.0179 1.80919 54.3429 15.9981 65.7664C17.9904 67.3704 19.6177 68.7285 20.9242 69.9863L20.2885 70.0723C16.3207 70.6089 13.3607 73.9962 13.3607 78.0001V88.0001C13.3607 92.4184 16.9424 96.0001 21.3607 96.0001H77.3059C81.7242 96.0001 85.3059 92.4184 85.3059 88.0001V78.0001C85.3059 73.9962 82.3459 70.6089 78.3781 70.0723L77.7424 69.9863C79.0489 68.7285 80.6762 67.3704 82.6685 65.7664C96.8574 54.3429 98.3844 33.0179 85.7881 22.521C80.7245 18.3013 74.8982 16.9296 69.3333 17.4475V17.3334C69.3333 12.9151 65.7516 9.33341 61.3333 9.33341H61.2223C60.5852 5.53798 57.286 2.66675 53.3333 2.66675H45.3333ZM69.3316 25.4972C73.2965 24.9453 77.2424 25.8132 80.6666 28.6667C88.6666 35.3334 88.6666 50.6667 77.6516 59.535C73.9763 62.4939 70.5268 65.3902 68.3685 68.7185C67.6455 69.8335 67.0673 70.997 66.6742 72.2276C66.2485 73.5599 66.0396 74.971 66.0984 76.4843L77.3059 78.0001V88.0001H21.3607V78.0001L32.5681 76.4843C32.627 74.971 32.4181 73.5599 31.9924 72.2275C31.5993 70.997 31.0211 69.8335 30.2981 68.7185C28.1398 65.3902 24.6903 62.4939 21.015 59.535C9.99995 50.6667 9.99995 35.3334 17.9999 28.6667C21.4242 25.8132 25.3701 24.9453 29.3349 25.4972C31.8435 25.8464 34.3597 26.7639 36.7562 28.1065C36.9494 28.2147 37.1418 28.3256 37.3333 28.4393C39.5442 29.7512 41.6426 31.4211 43.526 33.3334C43.7049 33.515 43.8818 33.6988 44.0567 33.8847C44.2118 34.0496 44.3624 34.2185 44.5086 34.3907L44.875 25.3334H37.3333V17.3334H45.125L45.3333 10.6667H53.3333L53.5416 17.3334H61.3333V25.3334H53.7916L54.158 34.3907C54.3042 34.2185 54.4547 34.0496 54.6099 33.8847C54.7848 33.6988 54.9617 33.515 55.1406 33.3334C57.024 31.4211 59.1224 29.7512 61.3333 28.4393C61.5248 28.3256 61.7172 28.2147 61.9103 28.1065C64.3068 26.7639 66.8231 25.8464 69.3316 25.4972Z" fill="black"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_575_299290">
9
+ <rect width="96" height="96" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M42.9669 10.6667H51.7666L51.9957 17.9998H60.5662V26.7994H52.2707L52.6737 36.7621C52.8345 36.5727 53.0001 36.3869 53.1708 36.2055C61.1831 27.6898 73.0627 23.1582 81.8321 30.466C90.6317 37.799 90.6317 54.665 78.5156 64.4196C71.6523 69.9453 65.5048 75.2722 65.8077 83.0632L78.1354 84.7305V95.73H16.5981V84.7305L28.9258 83.0632C29.2287 75.2722 23.0812 69.9453 16.2179 64.4196C4.10179 54.665 4.10179 37.799 12.9014 30.466C21.6708 23.1582 33.5504 27.6898 41.5627 36.2055C41.7334 36.3869 41.899 36.5727 42.0598 36.7621L42.4628 26.7994H34.1673V17.9998H42.7378L42.9669 10.6667ZM34.6777 44.3594C40.0553 53.1678 40.767 63.4647 40.767 67.9425C38.0716 67.9474 27.9105 63.4771 22.5307 56.1384C18.6576 50.8551 17.6477 43.0164 20.9678 39.9732C24.2879 36.9301 31.3167 38.8541 34.6777 44.3594ZM60.0558 44.3594C54.6782 53.1678 53.9665 63.4647 53.9665 67.9425C56.6619 67.9474 66.823 63.4771 72.2028 56.1384C76.0759 50.8551 77.0858 43.0164 73.7657 39.9732C70.4456 36.9301 63.4168 38.8541 60.0558 44.3594Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M49.1285 5.45967C47.4037 3.44792 44.7946 2.42082 42.1612 2.71693C39.5279 3.01304 37.2121 4.59393 35.9771 6.9385C34.752 9.26423 33.5518 12.4336 33.0657 15.9005C32.9426 16.7781 32.8586 17.728 32.8427 18.7264C25.7273 22.7099 19.5184 30.4569 16.4449 42.7507C16.2295 43.6124 15.9907 44.0502 15.7757 44.3728C15.4729 44.8269 15.0832 45.2674 14.0855 46.3292C12.1444 48.3951 9.42735 51.2878 6.9424 56.6718C3.15012 64.8884 6.49523 73.236 12.4476 77.474C15.9504 79.9679 20.3002 81.0572 24.6342 80.3681C23.9555 83.2713 23.7203 85.9042 23.8248 87.7981C24.0587 92.0388 27.5655 95.3576 31.8126 95.3576H81.5394C85.9577 95.3576 89.5394 91.7759 89.5394 87.3576C89.5394 71.5605 88.5273 55.8173 84.2499 43.27C80.1486 31.2395 72.6004 21.0957 59.4651 17.5156L49.1285 5.45967ZM14.2061 60.0243C16.1477 55.8174 18.1628 53.6728 19.9157 51.8073C21.7739 49.8296 23.3374 48.1657 24.2061 44.691C26.4498 35.7159 30.4298 30.2272 34.6211 27.0963C36.0338 26.0411 37.4705 25.2537 38.8727 24.691C39.7447 24.341 40.8719 24.1415 42.0515 24.0365C41.4151 22.9321 41.0613 21.7163 40.917 20.4637C40.7501 19.0153 40.8634 17.5177 41.1439 16.0863C41.5472 14.0286 42.2962 12.1078 43.0552 10.6668L55.1003 24.7156C75.4672 28.5491 80.6892 51.5024 81.438 79.3576C81.5086 81.9846 81.5394 84.6553 81.5394 87.3576H31.8126C31.7972 87.0769 31.7962 86.7396 31.8126 86.3541C31.8837 84.6926 32.2799 82.1362 33.243 79.3576C33.8679 77.5549 34.7314 75.6587 35.8995 73.8526C37.4275 71.4902 39.4768 69.282 42.1952 67.639C42.4658 67.4754 42.7283 67.3086 42.9831 67.1388C50.9597 61.8232 51.2744 53.5804 50.3919 50.0243C48.4776 57.8916 45.0887 59.4921 40.4143 61.6997C39.9584 61.915 39.4903 62.1361 39.0102 62.3693C36.3117 63.6801 33.2325 65.3747 29.8038 68.5848C29.4962 68.8728 29.1859 69.1729 28.8728 69.4861C21.0012 77.3576 10.2061 68.691 14.2061 60.0243Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_575_299283)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M56.6014 27.4549L43.3507 12C41.4326 15.6414 39.5731 22.0683 42.2466 26.7078C40.949 26.8233 39.7089 27.0428 38.7497 27.4278C32.63 29.8836 25.9153 36.2285 22.6151 49.4295C21.6594 53.252 19.9395 55.0825 17.8952 57.2581C15.9669 59.3103 13.7501 61.6696 11.6142 66.2975C7.21383 75.8316 19.0894 85.3657 27.7488 76.7063C32.6172 71.8379 36.8727 69.8281 40.4455 68.1407C45.5878 65.712 49.3159 63.9513 51.4217 55.2966C52.4236 59.3337 52.0229 68.861 42.4046 74.6743C32.7864 80.4876 30.7826 92.7332 30.9829 96.3665H85.6868C85.6868 61.8726 81.1199 32.0698 56.6014 27.4549Z" fill="black"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_575_299283">
7
+ <rect width="96" height="96" fill="white"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_575_299286)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M77.3024 68.1942L76.8865 67.9566C74.5946 66.6469 70.9817 64.0974 68.0695 61.0354L67.9632 60.9231C69.5843 59.4591 70.6031 57.3406 70.6031 54.9842V46.3026C70.6031 43.7032 69.3402 41.2658 67.2166 39.7668L66.7389 39.4297C67.6349 37.082 68.1269 34.5339 68.1269 31.8731C68.1269 20.1612 58.6325 10.6667 46.9206 10.6667C35.2086 10.6667 25.7142 20.1612 25.7142 31.8731C25.7142 34.7085 26.2726 37.4153 27.2831 39.8879C25.2603 41.395 24.0634 43.772 24.0634 46.3026V54.9842C24.0634 57.3406 25.0822 59.4591 26.7033 60.9231L26.597 61.0354C23.6848 64.0974 20.0719 66.6469 17.78 67.9565L17.3641 68.1942C14.8715 69.6186 13.3333 72.2693 13.3333 75.1401V88.0001C13.3333 92.4184 16.915 96.0001 21.3333 96.0001H73.3333C77.7515 96.0001 81.3333 92.4184 81.3333 88.0001V75.1401C81.3333 72.2693 79.795 69.6186 77.3024 68.1942ZM38.3142 41.8903C36.6733 40.4792 35.3831 38.672 34.5918 36.617C34.025 35.1447 33.7142 33.5452 33.7142 31.8731C33.7142 24.5794 39.6269 18.6667 46.9206 18.6667C54.2142 18.6667 60.1269 24.5794 60.1269 31.8731C60.1269 33.7173 59.7489 35.4731 59.0662 37.0675C58.3309 38.7845 57.2422 40.3141 55.8915 41.5649L62.6031 46.3026V54.9842H56.0327C56.2467 57.7026 57.4944 60.4225 59.3114 62.9842C60.1843 64.2148 61.1885 65.4088 62.2726 66.5487C65.8184 70.2768 70.0843 73.2836 72.9174 74.9025L73.3333 75.1401V88.0001H21.3333V75.1401L21.7491 74.9025C24.5822 73.2836 28.8482 70.2768 32.3939 66.5487C33.478 65.4088 34.4822 64.2148 35.3551 62.9842C37.1721 60.4225 38.4198 57.7026 38.6338 54.9842H32.0634V46.3026L38.3142 41.8903Z" fill="black"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_575_299286">
7
+ <rect width="96" height="96" fill="white"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_575_299280)">
3
+ <path d="M62.673 34.527C62.673 38.7402 60.8794 42.5345 58.014 45.188L65.3968 50.3994V59.9492H58.1694C58.5179 64.3758 61.3581 68.8059 65.0333 72.6702C68.9336 76.7711 73.6262 80.0785 76.7425 81.8593L77.2 82.1207V96.2667H20V82.1207L20.4575 81.8593C23.5738 80.0785 28.2664 76.7711 32.1667 72.6702C35.8419 68.8059 38.6821 64.3758 39.0307 59.9492H31.8032V50.3994L38.679 45.5459C35.581 42.8817 33.6191 38.9335 33.6191 34.527C33.6191 26.504 40.123 20 48.146 20C56.1691 20 62.673 26.504 62.673 34.527Z" fill="black"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_575_299280">
7
+ <rect width="96" height="96" fill="white"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_575_299291)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M42.2795 23.4783C42.6213 22.6905 42.8108 21.8215 42.8108 20.9083C42.8108 17.3331 39.9067 14.4349 36.3243 14.4349C32.7419 14.4349 29.8378 17.3331 29.8378 20.9083C29.8378 22.3833 30.3322 23.7431 31.1645 24.8317C32.1961 26.1809 33.7469 27.1134 35.5194 27.3324L35.5214 27.3326L32.6287 50.6861L18.6839 38.599C19.0248 38.2829 19.3316 37.9307 19.5982 37.5485C20.3284 36.5012 20.7566 35.2284 20.7568 33.8559C20.7568 30.2807 17.8527 27.3817 14.2703 27.3817C10.6879 27.3817 7.78378 30.28 7.78378 33.8552C7.78378 36.2165 9.05062 38.2825 10.943 39.4132C11.9158 39.9945 13.0539 40.3286 14.2703 40.3286C14.9009 40.3286 15.5105 40.2388 16.087 40.0713L23.3514 64.9276L30.8635 77.1955L23.3514 78.5218V88.232L72.7484 88.232V78.5218L65.1398 77.1901L72.6486 64.9276L79.913 40.0713C80.4895 40.2388 81.0991 40.3286 81.7297 40.3286C82.946 40.3286 84.0842 39.9945 85.057 39.4132C86.9494 38.2825 88.2162 36.2165 88.2162 33.8552C88.2162 30.28 85.3121 27.3817 81.7297 27.3817C78.1473 27.3817 75.2432 30.28 75.2432 33.8552C75.2434 35.2277 75.6716 36.5012 76.4018 37.5485C76.6684 37.9307 76.9752 38.2829 77.3161 38.599L63.3713 50.6861L60.4786 27.3326L60.4806 27.3324C62.2531 27.1134 63.8039 26.1809 64.8355 24.8317C65.6678 23.7431 66.1622 22.3833 66.1622 20.9083C66.1622 17.3331 63.2581 14.4349 59.6757 14.4349C56.0933 14.4349 53.1892 17.3331 53.1892 20.9083C53.1892 21.8215 53.3787 22.6905 53.7205 23.4783C54.328 24.8785 55.4168 26.0222 56.7786 26.7018C56.9633 26.7939 57.153 26.8776 57.3473 26.9522L48 48.0967L38.6527 26.9522C38.8469 26.8776 39.0367 26.7939 39.2214 26.7018C40.5832 26.0222 41.672 24.8785 42.2795 23.4783ZM48 12.7179C45.4174 9.0579 41.1507 6.66675 36.3243 6.66675C28.4431 6.66675 22.0541 13.0429 22.0541 20.9083C22.0541 21.2556 22.0665 21.5999 22.0909 21.9409C19.8449 20.4695 17.1577 19.6136 14.2703 19.6136C6.38902 19.6136 0 25.9898 0 33.8552C0 40.2902 4.27656 45.7284 10.148 47.4935L15.8789 67.1027C16.0715 67.7618 16.3509 68.3925 16.7096 68.9783L18.7268 72.2726C16.7932 73.6993 15.5676 75.9876 15.5676 78.5218V88.232C15.5676 92.5222 19.0525 96.0001 23.3513 96.0001L72.7484 96.0001C74.8128 96.0001 76.7927 95.1817 78.2524 93.7249C79.7121 92.2681 80.5322 90.2922 80.5322 88.232V78.5218C80.5322 75.9574 79.2773 73.645 77.304 72.2222L79.2904 68.9783C79.6491 68.3925 79.9285 67.7618 80.1211 67.1027L85.852 47.4935C91.7234 45.7284 96 40.2902 96 33.8552C96 25.9898 89.611 19.6136 81.7297 19.6136C78.8423 19.6136 76.1551 20.4695 73.909 21.9409C73.9335 21.5999 73.9459 21.2556 73.9459 20.9083C73.9459 13.0429 67.5569 6.66675 59.6757 6.66675C54.8493 6.66675 50.5826 9.0579 48 12.7179Z" fill="black"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_575_299291">
7
+ <rect width="96" height="96" fill="white"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M37.5658 26.18C40.3154 25.1222 42.2667 22.4556 42.2667 19.3333C42.2667 15.2832 38.9835 12 34.9334 12C30.8833 12 27.6001 15.2832 27.6001 19.3333C27.6001 23.0761 30.4039 26.1639 34.0257 26.611L30.7553 53.0667L14.99 39.374C16.4315 38.0348 17.3334 36.1227 17.3334 34C17.3334 29.9499 14.0502 26.6667 10.0001 26.6667C5.94999 26.6667 2.66675 29.9499 2.66675 34C2.66675 38.0501 5.94999 41.3334 10.0001 41.3334C10.713 41.3334 11.4022 41.2316 12.0539 41.0418L20.2667 69.2L28.7597 83.0975L20.2667 84.6V95.6L76.1129 95.6V84.6L67.5109 83.0914L76.0001 69.2L84.2129 41.0418C84.8646 41.2316 85.5538 41.3334 86.2667 41.3334C90.3168 41.3334 93.6001 38.0501 93.6001 34C93.6001 29.9499 90.3168 26.6667 86.2667 26.6667C82.2167 26.6667 78.9334 29.9499 78.9334 34C78.9334 36.1227 79.8353 38.0348 81.2769 39.374L65.5115 53.0667L62.2412 26.611C65.8629 26.1639 68.6667 23.0761 68.6667 19.3333C68.6667 15.2832 65.3835 12 61.3334 12C57.2833 12 54.0001 15.2832 54.0001 19.3333C54.0001 22.4556 55.9514 25.1222 58.701 26.18L48.1334 50.1333L37.5658 26.18Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M39.9999 17.3333V25.3333H34.6666V17.3333H21.3333V29.3333L31.9999 37.3333L29.3333 61.3333H65.3333L62.6666 37.3333L73.3332 29.3333V17.3333H59.9999V25.3333H54.6666V17.3333H39.9999ZM57.3333 9.78847C58.1673 9.49366 59.0649 9.33325 59.9999 9.33325H73.3332C77.7515 9.33325 81.3332 12.915 81.3332 17.3333V29.3333C81.3332 31.8513 80.1477 34.2224 78.1333 35.7333L71.1223 40.9915L73.2843 60.4498C73.4022 61.5104 73.3056 62.571 73.0133 63.5733L79.7333 72.5333C80.7718 73.918 81.3333 75.6023 81.3333 77.3333V87.9999C81.3333 92.4182 77.7515 95.9999 73.3333 95.9999H21.3333C16.915 95.9999 13.3333 92.4182 13.3333 87.9999V77.3333C13.3333 75.6023 13.8947 73.918 14.9333 72.5333L21.6533 63.5733C21.3609 62.571 21.2643 61.5104 21.3822 60.4498L23.5442 40.9915L16.5333 35.7333C14.5188 34.2224 13.3333 31.8513 13.3333 29.3333V17.3333C13.3333 12.915 16.915 9.33325 21.3333 9.33325H34.6666C35.6016 9.33325 36.4992 9.49366 37.3333 9.78847C38.1673 9.49366 39.0649 9.33325 39.9999 9.33325H54.6666C55.6016 9.33325 56.4992 9.49366 57.3333 9.78847ZM21.3333 77.3333V87.9999H73.3333V77.3333L65.3333 66.6666H29.3333L21.3333 77.3333Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_575_299281)">
3
+ <path d="M20 18.6667H34.6667V27.4667H40.5333V18.6667H56.6667V27.4667H62.5333V18.6667H77.2V31.8667L65.4667 40.6667L68.4 67.0667H28.8L31.7333 40.6667L20 31.8667V18.6667Z" fill="black"/>
4
+ <path d="M28.8 72.9334H68.4L77.2 84.6668V96.4001H20V84.6667L28.8 72.9334Z" fill="black"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_575_299281">
8
+ <rect width="96" height="96" fill="white"/>
9
+ </clipPath>
10
+ </defs>
11
+ </svg>