globe-kit 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +188 -0
- package/dist/favicon.svg +1 -0
- package/dist/globe-kit.js +41216 -0
- package/dist/globe-kit.umd.cjs +922 -0
- package/dist/icons.svg +24 -0
- package/dist/src/lib/animations/entrance.d.ts +4 -0
- package/dist/src/lib/animations/limbFade.d.ts +3 -0
- package/dist/src/lib/components/Globe.d.ts +2 -0
- package/dist/src/lib/components/GlobeScene.d.ts +6 -0
- package/dist/src/lib/components/GraticuleGrid.d.ts +14 -0
- package/dist/src/lib/components/LabelLayer.d.ts +8 -0
- package/dist/src/lib/components/Starfield.d.ts +8 -0
- package/dist/src/lib/data/labels.d.ts +9 -0
- package/dist/src/lib/index.d.ts +3 -0
- package/dist/src/lib/layout/gridSnap.d.ts +2 -0
- package/dist/src/lib/themes/index.d.ts +8 -0
- package/dist/src/lib/types.d.ts +110 -0
- package/dist/src/lib/utils/accessor.d.ts +3 -0
- package/dist/src/lib/utils/coords.d.ts +6 -0
- package/dist/src/lib/utils/earthTexture.d.ts +4 -0
- package/dist/src/lib/utils/textureCache.d.ts +10 -0
- package/package.json +81 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Andy8647
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
# globe-kit
|
|
2
|
+
|
|
3
|
+
Drop any dataset onto a 3D globe with grid snapping, entrance animations, themes, and full React customization.
|
|
4
|
+
|
|
5
|
+
Built on [r3f-globe](https://github.com/vasturiano/r3f-globe) and [Three.js](https://threejs.org/).
|
|
6
|
+
|
|
7
|
+
<!--  -->
|
|
8
|
+
|
|
9
|
+
## Install
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm install globe-kit
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
**Peer dependencies** (you likely already have these):
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npm install react react-dom three @react-three/fiber @react-three/drei
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Quick Start
|
|
22
|
+
|
|
23
|
+
```tsx
|
|
24
|
+
import { Globe } from "globe-kit"
|
|
25
|
+
|
|
26
|
+
const cities = [
|
|
27
|
+
{ name: "Tokyo", lat: 35.68, lng: 139.69 },
|
|
28
|
+
{ name: "Paris", lat: 48.86, lng: 2.35 },
|
|
29
|
+
{ name: "NYC", lat: 40.71, lng: -74.01 },
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
export default function App() {
|
|
33
|
+
return <Globe data={cities} lat="lat" lng="lng" />
|
|
34
|
+
}
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Full Example
|
|
38
|
+
|
|
39
|
+
```tsx
|
|
40
|
+
import { Globe } from "globe-kit"
|
|
41
|
+
|
|
42
|
+
const restaurants = [
|
|
43
|
+
{ id: "1", name: "Sukiyabashi Jiro", lat: 35.67, lng: 139.76, emoji: "\ud83c\udf63" },
|
|
44
|
+
{ id: "2", name: "Noma", lat: 55.68, lng: 12.61, emoji: "\ud83c\udf3f" },
|
|
45
|
+
{ id: "3", name: "El Celler", lat: 41.98, lng: 2.82, emoji: "\ud83c\udf77" },
|
|
46
|
+
]
|
|
47
|
+
|
|
48
|
+
export default function App() {
|
|
49
|
+
return (
|
|
50
|
+
<Globe
|
|
51
|
+
data={restaurants}
|
|
52
|
+
lat="lat"
|
|
53
|
+
lng="lng"
|
|
54
|
+
icon="emoji"
|
|
55
|
+
id="id"
|
|
56
|
+
theme="ocean"
|
|
57
|
+
entrance="sprout"
|
|
58
|
+
entranceDuration={2.5}
|
|
59
|
+
gridSize={5}
|
|
60
|
+
autoRotate
|
|
61
|
+
autoRotateSpeed={0.3}
|
|
62
|
+
labels={{ continents: true, oceans: true }}
|
|
63
|
+
starfield
|
|
64
|
+
onClick={(item, e) => console.log("Clicked:", item.name)}
|
|
65
|
+
onHover={(item) => console.log("Hovered:", item?.name)}
|
|
66
|
+
tooltip={(item) => <div>{item.name}</div>}
|
|
67
|
+
detailPanel={(item, onClose) => (
|
|
68
|
+
<div>
|
|
69
|
+
<h2>{item.name}</h2>
|
|
70
|
+
<button onClick={onClose}>Close</button>
|
|
71
|
+
</div>
|
|
72
|
+
)}
|
|
73
|
+
/>
|
|
74
|
+
)
|
|
75
|
+
}
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
## API Reference
|
|
79
|
+
|
|
80
|
+
### `<Globe>` Props
|
|
81
|
+
|
|
82
|
+
| Prop | Type | Default | Description |
|
|
83
|
+
|------|------|---------|-------------|
|
|
84
|
+
| **data** | `D[]` | *required* | Array of items to place on the globe |
|
|
85
|
+
| **lat** | `Accessor<D, number>` | *required* | Latitude accessor (function, key string, or static value) |
|
|
86
|
+
| **lng** | `Accessor<D, number>` | *required* | Longitude accessor |
|
|
87
|
+
| **icon** | `Accessor<D, string \| Object3D>` | `undefined` | Icon accessor (emoji, image URL, or Three.js Object3D) |
|
|
88
|
+
| **id** | `Accessor<D, string>` | `undefined` | Unique ID accessor for selection tracking |
|
|
89
|
+
|
|
90
|
+
#### Layout
|
|
91
|
+
|
|
92
|
+
| Prop | Type | Default | Description |
|
|
93
|
+
|------|------|---------|-------------|
|
|
94
|
+
| gridSize | `number` | `5` | Grid cell size in degrees. `0` = exact coordinates |
|
|
95
|
+
| gridElevation | `number` | `0.06` | How high grid lines float above the surface |
|
|
96
|
+
| iconElevation | `number` | `0.005` | How high icons sit above the surface |
|
|
97
|
+
| iconSize | `number` | `7` | Icon size in world units |
|
|
98
|
+
|
|
99
|
+
#### Camera
|
|
100
|
+
|
|
101
|
+
| Prop | Type | Default | Description |
|
|
102
|
+
|------|------|---------|-------------|
|
|
103
|
+
| minDistance | `number` | `200` | Min camera distance (max zoom in) |
|
|
104
|
+
| maxDistance | `number` | `500` | Max camera distance (max zoom out) |
|
|
105
|
+
| initialDistance | `number` | `350` | Starting camera distance |
|
|
106
|
+
| autoRotate | `boolean` | `true` | Enable auto-rotation |
|
|
107
|
+
| autoRotateSpeed | `number` | `0.3` | Rotation speed |
|
|
108
|
+
| rotateSpeed | `number` | `0.25` | Manual rotate sensitivity |
|
|
109
|
+
|
|
110
|
+
#### Appearance
|
|
111
|
+
|
|
112
|
+
| Prop | Type | Default | Description |
|
|
113
|
+
|------|------|---------|-------------|
|
|
114
|
+
| theme | `string \| GlobeTheme` | `"catppuccin-mocha"` | Built-in theme name or custom theme object |
|
|
115
|
+
| starfield | `boolean` | `true` | Show background stars |
|
|
116
|
+
| starfieldCount | `number` | `2000` | Number of stars |
|
|
117
|
+
| globeImage | `string` | `"blue-marble"` | Globe texture (built-in name or URL) |
|
|
118
|
+
| bumpMap | `boolean` | `true` | Enable surface bump mapping |
|
|
119
|
+
| atmosphereAltitude | `number` | `0.18` | Atmosphere glow height |
|
|
120
|
+
|
|
121
|
+
#### Labels
|
|
122
|
+
|
|
123
|
+
| Prop | Type | Default | Description |
|
|
124
|
+
|------|------|---------|-------------|
|
|
125
|
+
| labels | `LabelConfig \| boolean` | `undefined` | Built-in label layers (`{ continents, countries, oceans, coordinates }`) |
|
|
126
|
+
| customLabels | `CustomLabel[]` | `undefined` | Additional custom labels (`{ text, lat, lng, size? }`) |
|
|
127
|
+
|
|
128
|
+
#### Animation
|
|
129
|
+
|
|
130
|
+
| Prop | Type | Default | Description |
|
|
131
|
+
|------|------|---------|-------------|
|
|
132
|
+
| entrance | `EntranceType` | `"sprout"` | Entrance animation type |
|
|
133
|
+
| entranceDuration | `number` | `2.5` | Total entrance duration (seconds) |
|
|
134
|
+
| entranceStagger | `number` | `2.0` | Max stagger delay (seconds) |
|
|
135
|
+
|
|
136
|
+
#### Interaction
|
|
137
|
+
|
|
138
|
+
| Prop | Type | Default | Description |
|
|
139
|
+
|------|------|---------|-------------|
|
|
140
|
+
| onClick | `(item: D, event: MouseEvent) => void` | `undefined` | Item click handler |
|
|
141
|
+
| onHover | `(item: D \| null) => void` | `undefined` | Hover handler |
|
|
142
|
+
| selectedId | `string \| null` | `undefined` | Controlled selected item ID (triggers fly-to) |
|
|
143
|
+
|
|
144
|
+
#### UI Slots (Render Props)
|
|
145
|
+
|
|
146
|
+
| Prop | Type | Description |
|
|
147
|
+
|------|------|-------------|
|
|
148
|
+
| tooltip | `(item: D) => ReactNode` | Hover tooltip renderer |
|
|
149
|
+
| detailPanel | `(item: D, onClose: () => void) => ReactNode` | Detail panel renderer |
|
|
150
|
+
| filterBar | `() => ReactNode` | Filter bar renderer |
|
|
151
|
+
| header | `() => ReactNode` | Header renderer |
|
|
152
|
+
|
|
153
|
+
## Built-in Themes
|
|
154
|
+
|
|
155
|
+
| Name | Description |
|
|
156
|
+
|------|-------------|
|
|
157
|
+
| `catppuccin-mocha` | Warm purple/peach tones (default) |
|
|
158
|
+
| `sepia` | Vintage parchment feel |
|
|
159
|
+
| `ocean` | Deep blue with cyan accents |
|
|
160
|
+
| `midnight` | Monochrome black and white |
|
|
161
|
+
| `aurora` | Northern lights green palette |
|
|
162
|
+
|
|
163
|
+
Pass a theme name as a string, or provide a custom `GlobeTheme` object.
|
|
164
|
+
|
|
165
|
+
## Entrance Animations
|
|
166
|
+
|
|
167
|
+
| Name | Effect |
|
|
168
|
+
|------|--------|
|
|
169
|
+
| `sprout` | Icons spring up with elastic easing (default) |
|
|
170
|
+
| `fade` | Icons fade in with staggered timing |
|
|
171
|
+
| `scatter` | Icons scatter in from random positions |
|
|
172
|
+
| `none` | No animation, items appear immediately |
|
|
173
|
+
|
|
174
|
+
## Exports
|
|
175
|
+
|
|
176
|
+
```ts
|
|
177
|
+
import { Globe, themes } from "globe-kit"
|
|
178
|
+
import type { GlobeProps, GlobeTheme, LabelConfig, CustomLabel, EntranceType, Accessor } from "globe-kit"
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
## Credits
|
|
182
|
+
|
|
183
|
+
- [r3f-globe](https://github.com/vasturiano/r3f-globe) / [three-globe](https://github.com/vasturiano/three-globe) by Vasco Asturiano
|
|
184
|
+
- [Three.js](https://threejs.org/) and [React Three Fiber](https://docs.pmnd.rs/react-three-fiber)
|
|
185
|
+
|
|
186
|
+
## License
|
|
187
|
+
|
|
188
|
+
[MIT](./LICENSE) -- Andy8647
|
package/dist/favicon.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="46" fill="none" viewBox="0 0 48 46"><path fill="#863bff" d="M25.946 44.938c-.664.845-2.021.375-2.021-.698V33.937a2.26 2.26 0 0 0-2.262-2.262H10.287c-.92 0-1.456-1.04-.92-1.788l7.48-10.471c1.07-1.497 0-3.578-1.842-3.578H1.237c-.92 0-1.456-1.04-.92-1.788L10.013.474c.214-.297.556-.474.92-.474h28.894c.92 0 1.456 1.04.92 1.788l-7.48 10.471c-1.07 1.498 0 3.579 1.842 3.579h11.377c.943 0 1.473 1.088.89 1.83L25.947 44.94z" style="fill:#863bff;fill:color(display-p3 .5252 .23 1);fill-opacity:1"/><mask id="a" width="48" height="46" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"><path fill="#000" d="M25.842 44.938c-.664.844-2.021.375-2.021-.698V33.937a2.26 2.26 0 0 0-2.262-2.262H10.183c-.92 0-1.456-1.04-.92-1.788l7.48-10.471c1.07-1.498 0-3.579-1.842-3.579H1.133c-.92 0-1.456-1.04-.92-1.787L9.91.473c.214-.297.556-.474.92-.474h28.894c.92 0 1.456 1.04.92 1.788l-7.48 10.471c-1.07 1.498 0 3.578 1.842 3.578h11.377c.943 0 1.473 1.088.89 1.832L25.843 44.94z" style="fill:#000;fill-opacity:1"/></mask><g mask="url(#a)"><g filter="url(#b)"><ellipse cx="5.508" cy="14.704" fill="#ede6ff" rx="5.508" ry="14.704" style="fill:#ede6ff;fill:color(display-p3 .9275 .9033 1);fill-opacity:1" transform="matrix(.00324 1 1 -.00324 -4.47 31.516)"/></g><g filter="url(#c)"><ellipse cx="10.399" cy="29.851" fill="#ede6ff" rx="10.399" ry="29.851" style="fill:#ede6ff;fill:color(display-p3 .9275 .9033 1);fill-opacity:1" transform="matrix(.00324 1 1 -.00324 -39.328 7.883)"/></g><g filter="url(#d)"><ellipse cx="5.508" cy="30.487" fill="#7e14ff" rx="5.508" ry="30.487" style="fill:#7e14ff;fill:color(display-p3 .4922 .0767 1);fill-opacity:1" transform="rotate(89.814 -25.913 -14.639)scale(1 -1)"/></g><g filter="url(#e)"><ellipse cx="5.508" cy="30.599" fill="#7e14ff" rx="5.508" ry="30.599" style="fill:#7e14ff;fill:color(display-p3 .4922 .0767 1);fill-opacity:1" transform="rotate(89.814 -32.644 -3.334)scale(1 -1)"/></g><g filter="url(#f)"><ellipse cx="5.508" cy="30.599" fill="#7e14ff" rx="5.508" ry="30.599" style="fill:#7e14ff;fill:color(display-p3 .4922 .0767 1);fill-opacity:1" transform="matrix(.00324 1 1 -.00324 -34.34 30.47)"/></g><g filter="url(#g)"><ellipse cx="14.072" cy="22.078" fill="#ede6ff" rx="14.072" ry="22.078" style="fill:#ede6ff;fill:color(display-p3 .9275 .9033 1);fill-opacity:1" transform="rotate(93.35 24.506 48.493)scale(-1 1)"/></g><g filter="url(#h)"><ellipse cx="3.47" cy="21.501" fill="#7e14ff" rx="3.47" ry="21.501" style="fill:#7e14ff;fill:color(display-p3 .4922 .0767 1);fill-opacity:1" transform="rotate(89.009 28.708 47.59)scale(-1 1)"/></g><g filter="url(#i)"><ellipse cx="3.47" cy="21.501" fill="#7e14ff" rx="3.47" ry="21.501" style="fill:#7e14ff;fill:color(display-p3 .4922 .0767 1);fill-opacity:1" transform="rotate(89.009 28.708 47.59)scale(-1 1)"/></g><g filter="url(#j)"><ellipse cx=".387" cy="8.972" fill="#7e14ff" rx="4.407" ry="29.108" style="fill:#7e14ff;fill:color(display-p3 .4922 .0767 1);fill-opacity:1" transform="rotate(39.51 .387 8.972)"/></g><g filter="url(#k)"><ellipse cx="47.523" cy="-6.092" fill="#7e14ff" rx="4.407" ry="29.108" style="fill:#7e14ff;fill:color(display-p3 .4922 .0767 1);fill-opacity:1" transform="rotate(37.892 47.523 -6.092)"/></g><g filter="url(#l)"><ellipse cx="41.412" cy="6.333" fill="#47bfff" rx="5.971" ry="9.665" style="fill:#47bfff;fill:color(display-p3 .2799 .748 1);fill-opacity:1" transform="rotate(37.892 41.412 6.333)"/></g><g filter="url(#m)"><ellipse cx="-1.879" cy="38.332" fill="#7e14ff" rx="4.407" ry="29.108" style="fill:#7e14ff;fill:color(display-p3 .4922 .0767 1);fill-opacity:1" transform="rotate(37.892 -1.88 38.332)"/></g><g filter="url(#n)"><ellipse cx="-1.879" cy="38.332" fill="#7e14ff" rx="4.407" ry="29.108" style="fill:#7e14ff;fill:color(display-p3 .4922 .0767 1);fill-opacity:1" transform="rotate(37.892 -1.88 38.332)"/></g><g filter="url(#o)"><ellipse cx="35.651" cy="29.907" fill="#7e14ff" rx="4.407" ry="29.108" style="fill:#7e14ff;fill:color(display-p3 .4922 .0767 1);fill-opacity:1" transform="rotate(37.892 35.651 29.907)"/></g><g filter="url(#p)"><ellipse cx="38.418" cy="32.4" fill="#47bfff" rx="5.971" ry="15.297" style="fill:#47bfff;fill:color(display-p3 .2799 .748 1);fill-opacity:1" transform="rotate(37.892 38.418 32.4)"/></g></g><defs><filter id="b" width="60.045" height="41.654" x="-19.77" y="16.149" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="7.659"/></filter><filter id="c" width="90.34" height="51.437" x="-54.613" y="-7.533" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="7.659"/></filter><filter id="d" width="79.355" height="29.4" x="-49.64" y="2.03" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="4.596"/></filter><filter id="e" width="79.579" height="29.4" x="-45.045" y="20.029" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="4.596"/></filter><filter id="f" width="79.579" height="29.4" x="-43.513" y="21.178" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="4.596"/></filter><filter id="g" width="74.749" height="58.852" x="15.756" y="-17.901" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="7.659"/></filter><filter id="h" width="61.377" height="25.362" x="23.548" y="2.284" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="4.596"/></filter><filter id="i" width="61.377" height="25.362" x="23.548" y="2.284" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="4.596"/></filter><filter id="j" width="56.045" height="63.649" x="-27.636" y="-22.853" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="4.596"/></filter><filter id="k" width="54.814" height="64.646" x="20.116" y="-38.415" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="4.596"/></filter><filter id="l" width="33.541" height="35.313" x="24.641" y="-11.323" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="4.596"/></filter><filter id="m" width="54.814" height="64.646" x="-29.286" y="6.009" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="4.596"/></filter><filter id="n" width="54.814" height="64.646" x="-29.286" y="6.009" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="4.596"/></filter><filter id="o" width="54.814" height="64.646" x="8.244" y="-2.416" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="4.596"/></filter><filter id="p" width="39.409" height="43.623" x="18.713" y="10.588" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="4.596"/></filter></defs></svg>
|