@everymatrix/lottery-program-wof 1.22.2 → 1.22.5
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/dist/lottery-program-wof.js +936 -1170
- package/dist/lottery-program-wof.js.map +1 -1
- package/package.json +2 -2
- package/src/business.ts +11 -6
- package/src/class.svgcalc.ts +35 -65
- package/src/images/pointerArrow6.svg +67 -0
- package/src/images/theme.bg.blackring.svg +10 -0
- package/src/images/theme.bg.halo.svg +27 -0
- package/src/images/theme1Bg3.svg +15 -0
- package/src/images/theme2Bg3.svg +11 -0
- package/src/images/theme2Center.svg +36 -0
- package/src/images/theme3Bg1.svg +29 -0
- package/src/images/theme3Bg2.svg +19 -0
- package/src/images/theme3Center.svg +77 -0
- package/src/images/theme7Bg1.svg +786 -0
- package/src/images/theme7Bg2.svg +40 -0
- package/src/images/theme7Bg3.svg +26 -0
- package/src/images/theme7Center.svg +72 -0
- package/src/images/theme7Light.svg +17 -0
- package/src/images/themeCenter1.svg +76 -0
- package/src/images/themeCenter2.svg +58 -0
- package/src/private.item.svelte +2 -1
- package/src/private.item.svg.svelte +140 -59
- package/src/private.message.svelte +21 -12
- package/src/themes.image.base.ts +0 -56
- package/src/themes.image.center.ts +35 -135
- package/src/themes.image.pointer.ts +21 -43
- package/src/themes.partitions.ts +29 -0
- package/src/themes.ts +14 -10
- package/src/translations.js +1 -1
- package/src/images/background.svg +0 -27
- package/src/images/background3.svg +0 -13
- package/src/images/centerArrow.svg +0 -50
- package/src/images/centerArrow1.svg +0 -18
- package/src/images/centerArrow2.svg +0 -5
- package/src/images/centerArrow3.svg +0 -46
- package/src/images/centerArrowBg.svg +0 -12
- package/src/images/centerBackground1.svg +0 -21
- package/src/images/centerBackground2.svg +0 -24
- package/src/images/centerCircle.svg +0 -24
- package/src/images/centerPack.svg +0 -16
- package/src/images/centerText3.svg +0 -3
- package/src/images/partition1.svg +0 -10
- package/src/images/spin.svg +0 -13
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
import { setClientStyling } from './widget';
|
|
9
9
|
|
|
10
10
|
export let r = 0
|
|
11
|
+
export let size = 0
|
|
11
12
|
export let id: string = undefined
|
|
12
13
|
export let clientstyling:string = ''
|
|
13
14
|
export let giftimagesrc: string = ''
|
|
@@ -20,8 +21,13 @@
|
|
|
20
21
|
let isShown: boolean = false
|
|
21
22
|
let mode: string = ''
|
|
22
23
|
let modeValue: any
|
|
24
|
+
let isOptionsReady: boolean = false
|
|
23
25
|
|
|
24
26
|
onMountMessageLifeCycle({
|
|
27
|
+
'wof-private-options-ready': (data) => {
|
|
28
|
+
if(data.id !== id) return;
|
|
29
|
+
isOptionsReady = true
|
|
30
|
+
},
|
|
25
31
|
'wof-private-message-open': (data) => {
|
|
26
32
|
if(data.id !== id) return;
|
|
27
33
|
|
|
@@ -52,18 +58,22 @@
|
|
|
52
58
|
].join(' ')
|
|
53
59
|
}
|
|
54
60
|
|
|
55
|
-
const
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
61
|
+
const setObserver = () => {
|
|
62
|
+
const resizeObserver = new ResizeObserver(entries => {
|
|
63
|
+
entries.map(entry => {
|
|
64
|
+
if(entry.target === rootContainer) {
|
|
65
|
+
topOffset = entry.target.clientHeight / 2
|
|
66
|
+
}
|
|
67
|
+
})
|
|
68
|
+
})
|
|
69
|
+
resizeObserver.observe(rootContainer)
|
|
60
70
|
}
|
|
61
71
|
|
|
62
|
-
$:
|
|
72
|
+
$: rootContainer && setObserver()
|
|
63
73
|
|
|
64
|
-
$: width = r*2
|
|
65
|
-
$: left =
|
|
66
|
-
$: top =
|
|
74
|
+
$: width = r * 2
|
|
75
|
+
$: left = size / 2 - width / 2
|
|
76
|
+
$: top = size / 2 - topOffset
|
|
67
77
|
|
|
68
78
|
$: startTime = modeValue?.startTime && getTimeString(modeValue?.startTime)
|
|
69
79
|
|
|
@@ -72,12 +82,11 @@
|
|
|
72
82
|
</script>
|
|
73
83
|
|
|
74
84
|
|
|
75
|
-
{#if isShown}
|
|
85
|
+
{#if isShown && isOptionsReady}
|
|
76
86
|
<div
|
|
77
87
|
bind:this={rootContainer}
|
|
78
88
|
class="MessagePanel"
|
|
79
89
|
style={[
|
|
80
|
-
// `margin-top: ${r + topOffset}px`,
|
|
81
90
|
`top: ${top}px`,
|
|
82
91
|
`left: ${left}px`,
|
|
83
92
|
`width: ${width}px`,
|
|
@@ -114,7 +123,7 @@
|
|
|
114
123
|
<p>{@html $_('wof.Loss')}</p>
|
|
115
124
|
{/if}
|
|
116
125
|
|
|
117
|
-
{#if
|
|
126
|
+
{#if !['init-failed', 'show-next'].includes(mode) && !(mode === 'normal' && modeValue === 'NoNext')}
|
|
118
127
|
<div>
|
|
119
128
|
<button
|
|
120
129
|
class="MessagePanelButton"
|
package/src/themes.image.base.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { pointPlus } from "./calc.point"
|
|
2
1
|
|
|
3
2
|
interface ImageSize {
|
|
4
3
|
width: number
|
|
@@ -12,58 +11,3 @@ export const renderSvgImageProps = (center: number, href: string, size: ImageSiz
|
|
|
12
11
|
height: size.height,
|
|
13
12
|
href,
|
|
14
13
|
})
|
|
15
|
-
|
|
16
|
-
export const themedImagesUpdater = (
|
|
17
|
-
images, imagesData, imagesConfig, ratio, fn, offset?
|
|
18
|
-
) => {
|
|
19
|
-
|
|
20
|
-
let centerImagesComposed = {}
|
|
21
|
-
|
|
22
|
-
Object.keys(images).map(k => {
|
|
23
|
-
|
|
24
|
-
let _offset = {
|
|
25
|
-
x: 0,
|
|
26
|
-
y: 0
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
if(imagesData[k].offset){
|
|
30
|
-
_offset = pointPlus(_offset, imagesData[k].offset)
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
if(offset){
|
|
34
|
-
_offset = pointPlus(_offset, offset)
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
const rationalize = (object) => {
|
|
38
|
-
let _object = JSON.parse(JSON.stringify(object))
|
|
39
|
-
|
|
40
|
-
Object.keys(object).map(_key => {
|
|
41
|
-
_object[_key] = object[_key] * ratio
|
|
42
|
-
})
|
|
43
|
-
|
|
44
|
-
return _object
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
centerImagesComposed[k] = {
|
|
48
|
-
src: images[k],
|
|
49
|
-
props: rationalize(imagesData[k].props),
|
|
50
|
-
... ( _offset ? {
|
|
51
|
-
offset: rationalize(_offset)
|
|
52
|
-
} : {})
|
|
53
|
-
}
|
|
54
|
-
})
|
|
55
|
-
|
|
56
|
-
const themedCenterImagesList = imagesConfig.map(i => {
|
|
57
|
-
return i.map(j => centerImagesComposed[j])
|
|
58
|
-
})
|
|
59
|
-
|
|
60
|
-
fn(themedCenterImagesList)
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
export const themedImageProps = (center, themedImage) =>
|
|
64
|
-
renderSvgImageProps(
|
|
65
|
-
center,
|
|
66
|
-
themedImage.src,
|
|
67
|
-
themedImage.props,
|
|
68
|
-
themedImage.offset
|
|
69
|
-
)
|
|
@@ -1,141 +1,41 @@
|
|
|
1
|
+
// @ts-nocheck
|
|
2
|
+
import themeBgHaloSvg from './images/theme.bg.halo.svg'
|
|
3
|
+
import themeBgBlackRingSvg from './images/theme.bg.blackring.svg'
|
|
4
|
+
import themeCenter1 from './images/themeCenter1.svg'
|
|
5
|
+
import themeCenter2 from './images/themeCenter2.svg'
|
|
1
6
|
|
|
2
|
-
|
|
3
|
-
import
|
|
4
|
-
// @ts-ignore
|
|
5
|
-
import centerArrowSvg from './images/centerArrow.svg'
|
|
6
|
-
// @ts-ignore
|
|
7
|
-
import centerArrow3Svg from './images/centerArrow3.svg'
|
|
8
|
-
// @ts-ignore
|
|
9
|
-
import centerPackSvg from './images/centerPack.svg'
|
|
10
|
-
// @ts-ignore
|
|
11
|
-
import centerText3Svg from './images/centerText3.svg'
|
|
12
|
-
// @ts-ignore
|
|
13
|
-
import centerBackground2Svg from './images/centerBackground2.svg'
|
|
14
|
-
// @ts-ignore
|
|
15
|
-
import centerBackground1Svg from './images/centerBackground1.svg'
|
|
16
|
-
// @ts-ignore
|
|
17
|
-
import centerCircleSvg from './images/centerCircle.svg'
|
|
18
|
-
// @ts-ignore
|
|
19
|
-
import centerArrowBgSvg from './images/centerArrowBg.svg'
|
|
7
|
+
import theme1Bg3Svg from './images/theme1Bg3.svg'
|
|
8
|
+
import theme2Bg3Svg from './images/theme2Bg3.svg'
|
|
20
9
|
|
|
21
|
-
import
|
|
10
|
+
import theme3Bg1 from './images/theme3Bg1.svg'
|
|
11
|
+
import theme3Bg2 from './images/theme3Bg2.svg'
|
|
22
12
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
centerText3Svg,
|
|
27
|
-
centerBackground2Svg,
|
|
28
|
-
centerPackSvg,
|
|
29
|
-
spinSvg,
|
|
30
|
-
centerArrowBgSvg,
|
|
31
|
-
centerCircleSvg,
|
|
32
|
-
centerBackground1Svg,
|
|
33
|
-
}
|
|
13
|
+
import theme7Bg1 from './images/theme7Bg1.svg'
|
|
14
|
+
import theme7Bg2 from './images/theme7Bg2.svg'
|
|
15
|
+
import theme7Bg3 from './images/theme7Bg3.svg'
|
|
34
16
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
height: 92
|
|
40
|
-
},
|
|
41
|
-
},
|
|
42
|
-
centerText3Svg: {
|
|
43
|
-
props: {
|
|
44
|
-
width: 42,
|
|
45
|
-
height: 25
|
|
46
|
-
},
|
|
47
|
-
},
|
|
48
|
-
centerBackground2Svg: {
|
|
49
|
-
props: {
|
|
50
|
-
width: 128,
|
|
51
|
-
height: 128
|
|
52
|
-
},
|
|
53
|
-
},
|
|
54
|
-
centerBackground1Svg: {
|
|
55
|
-
props: {
|
|
56
|
-
width: 128,
|
|
57
|
-
height: 128
|
|
58
|
-
},
|
|
59
|
-
},
|
|
60
|
-
centerPackSvg: {
|
|
61
|
-
props: {
|
|
62
|
-
width: 76,
|
|
63
|
-
height: 76
|
|
64
|
-
},
|
|
65
|
-
},
|
|
66
|
-
centerArrowSvg: {
|
|
67
|
-
props: {
|
|
68
|
-
width: 96,
|
|
69
|
-
height: 96
|
|
70
|
-
},
|
|
71
|
-
},
|
|
72
|
-
spinSvg: {
|
|
73
|
-
props: {
|
|
74
|
-
width: 1.3 * 42,
|
|
75
|
-
height: 1.3 * 25
|
|
76
|
-
},
|
|
77
|
-
},
|
|
78
|
-
centerArrowBgSvg: {
|
|
79
|
-
props: {
|
|
80
|
-
width: 28,
|
|
81
|
-
height: 24,
|
|
82
|
-
},
|
|
83
|
-
offset: {
|
|
84
|
-
x: 0,
|
|
85
|
-
y: 45
|
|
86
|
-
}
|
|
87
|
-
},
|
|
88
|
-
centerCircleSvg: {
|
|
89
|
-
props: {
|
|
90
|
-
width: 88,
|
|
91
|
-
height: 104,
|
|
92
|
-
},
|
|
93
|
-
offset: {
|
|
94
|
-
x: 0,
|
|
95
|
-
y: 6
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
}
|
|
17
|
+
import theme2Center from './images/theme2Center.svg'
|
|
18
|
+
import theme3Center from './images/theme3Center.svg'
|
|
19
|
+
import theme7Center from './images/theme7Center.svg'
|
|
20
|
+
import theme7Light from './images/theme7Light.svg'
|
|
99
21
|
|
|
22
|
+
export const defines = () => `
|
|
23
|
+
--img-theme-BgBlackRing: url("${themeBgBlackRingSvg}");
|
|
24
|
+
--img-theme-BgHalo: url("${themeBgHaloSvg}");
|
|
25
|
+
--img-theme1-bg3: url("${theme1Bg3Svg}");
|
|
26
|
+
--img-theme2-bg3: url("${theme2Bg3Svg}");
|
|
27
|
+
--img-theme3-bg2: url("${theme3Bg2}");
|
|
28
|
+
--img-theme3-bg1: url("${theme3Bg1}");
|
|
29
|
+
--img-theme7-bg3: url("${theme7Bg3}");
|
|
30
|
+
--img-theme7-bg2: url("${theme7Bg2}");
|
|
31
|
+
--img-theme7-bg1: url("${theme7Bg1}");
|
|
32
|
+
|
|
33
|
+
--img-theme-center1: url("${themeCenter1}");
|
|
34
|
+
--img-theme-center2: url("${themeCenter2}");
|
|
100
35
|
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
[ // 1
|
|
108
|
-
'centerBackground2Svg',
|
|
109
|
-
'centerPackSvg'
|
|
110
|
-
],
|
|
111
|
-
[ // 2
|
|
112
|
-
'centerBackground1Svg',
|
|
113
|
-
'centerArrow3Svg',
|
|
114
|
-
'centerText3Svg'
|
|
115
|
-
],
|
|
116
|
-
[ // 3
|
|
117
|
-
'centerBackground1Svg',
|
|
118
|
-
'centerArrowSvg',
|
|
119
|
-
'spinSvg'
|
|
120
|
-
],
|
|
121
|
-
[ // 4
|
|
122
|
-
'centerBackground1Svg',
|
|
123
|
-
'spinSvg',
|
|
124
|
-
'centerArrowBgSvg',
|
|
125
|
-
'centerCircleSvg',
|
|
126
|
-
],
|
|
127
|
-
[ // 5
|
|
128
|
-
'centerBackground1Svg',
|
|
129
|
-
'spinSvg',
|
|
130
|
-
'centerArrowBgSvg',
|
|
131
|
-
'centerCircleSvg',
|
|
132
|
-
]
|
|
133
|
-
]
|
|
134
|
-
|
|
135
|
-
export const themedCenterImagesUpdater = (ratio, fn, offset?) =>
|
|
136
|
-
themedImagesUpdater(
|
|
137
|
-
centerImages,
|
|
138
|
-
centerImagesData,
|
|
139
|
-
centerImagesConfig,
|
|
140
|
-
ratio, fn, offset
|
|
141
|
-
)
|
|
36
|
+
--img-theme2-center: url("${theme2Center}");
|
|
37
|
+
--img-theme3-center: url("${theme3Center}");
|
|
38
|
+
--img-theme7-center: url("${theme7Center}");
|
|
39
|
+
--img-theme7-light: url("${theme7Light}");
|
|
40
|
+
|
|
41
|
+
`
|
|
@@ -3,49 +3,27 @@
|
|
|
3
3
|
import pointerArrowSvg from './images/pointerArrow.svg'
|
|
4
4
|
// @ts-ignore
|
|
5
5
|
import pointerArrow3Svg from './images/pointerArrow3.svg'
|
|
6
|
-
|
|
6
|
+
// @ts-ignore
|
|
7
|
+
import pointerArrow6Svg from './images/pointerArrow6.svg'
|
|
7
8
|
|
|
8
|
-
export const
|
|
9
|
-
pointerArrowSvg,
|
|
10
|
-
pointerArrow3Svg,
|
|
11
|
-
}
|
|
9
|
+
export const themedCssPointer = (themeIndex: number) => {
|
|
12
10
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
11
|
+
switch(themeIndex){
|
|
12
|
+
case 1:
|
|
13
|
+
return `
|
|
14
|
+
background-image: url("${pointerArrowSvg}");
|
|
15
|
+
background-position: center 46px;
|
|
16
|
+
`
|
|
17
|
+
case 2:
|
|
18
|
+
return `
|
|
19
|
+
background-image: url("${pointerArrow3Svg}");
|
|
20
|
+
background-position: center 18px;
|
|
21
|
+
`
|
|
22
|
+
case 6:
|
|
23
|
+
return `
|
|
24
|
+
background-image: url("${pointerArrow6Svg}");
|
|
25
|
+
background-position: center 15px;
|
|
26
|
+
`
|
|
27
|
+
default: return ``
|
|
25
28
|
}
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
export const pointerImagesConfig = [
|
|
29
|
-
[ // 0
|
|
30
|
-
],
|
|
31
|
-
[ // 1
|
|
32
|
-
'pointerArrowSvg',
|
|
33
|
-
],
|
|
34
|
-
[ // 2
|
|
35
|
-
'pointerArrow3Svg',
|
|
36
|
-
],
|
|
37
|
-
[ // 3
|
|
38
|
-
],
|
|
39
|
-
[ // 4
|
|
40
|
-
],
|
|
41
|
-
[ // 5
|
|
42
|
-
]
|
|
43
|
-
]
|
|
44
|
-
|
|
45
|
-
export const themedPointerImagesUpdater = (ratio, fn, offset?) =>
|
|
46
|
-
themedImagesUpdater(
|
|
47
|
-
pointerImages,
|
|
48
|
-
pointerImagesData,
|
|
49
|
-
pointerImagesConfig,
|
|
50
|
-
ratio, fn, offset
|
|
51
|
-
)
|
|
29
|
+
}
|
package/src/themes.partitions.ts
CHANGED
|
@@ -190,4 +190,33 @@ export const partitions3 = {
|
|
|
190
190
|
},
|
|
191
191
|
]
|
|
192
192
|
]
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
export const partitions4 = {
|
|
196
|
+
colorSchema: [
|
|
197
|
+
[
|
|
198
|
+
{
|
|
199
|
+
color: '#F6AD3F',
|
|
200
|
+
offset: 0.17,
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
color: '#AF8531',
|
|
204
|
+
offset: 1,
|
|
205
|
+
},
|
|
206
|
+
],
|
|
207
|
+
[
|
|
208
|
+
{
|
|
209
|
+
color: '#323234',
|
|
210
|
+
offset: 0,
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
color: '#272425',
|
|
214
|
+
offset: 0.55,
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
color: '#231F1F',
|
|
218
|
+
offset: 1,
|
|
219
|
+
}
|
|
220
|
+
],
|
|
221
|
+
]
|
|
193
222
|
}
|
package/src/themes.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { partitions1, partitions2, partitions3 } from "./themes.partitions"
|
|
1
|
+
import { partitions1, partitions2, partitions3, partitions4 } from "./themes.partitions"
|
|
2
2
|
import { PointerMode } from "./types"
|
|
3
3
|
|
|
4
4
|
const sizeSchema1 = {
|
|
@@ -14,6 +14,12 @@ const sizeSchema2 = {
|
|
|
14
14
|
rRingOuter: 280,
|
|
15
15
|
rBg1: 286,
|
|
16
16
|
}
|
|
17
|
+
const sizeSchema3 = {
|
|
18
|
+
radius : 270,
|
|
19
|
+
rRingInner: 275,
|
|
20
|
+
rRingOuter: 280,
|
|
21
|
+
rBg1: 286,
|
|
22
|
+
}
|
|
17
23
|
|
|
18
24
|
const backgroundSchema1 = {
|
|
19
25
|
isShowingBulb: false,
|
|
@@ -210,6 +216,12 @@ export const themes = [
|
|
|
210
216
|
partitions: partitions3,
|
|
211
217
|
pointerMode: PointerMode.Arrow,
|
|
212
218
|
},
|
|
219
|
+
{
|
|
220
|
+
size: sizeSchema3,
|
|
221
|
+
background: backgroundSchema1,
|
|
222
|
+
partitions: partitions4,
|
|
223
|
+
pointerMode: PointerMode.Arrow,
|
|
224
|
+
},
|
|
213
225
|
]
|
|
214
226
|
|
|
215
227
|
export const shadowSteps1 = [
|
|
@@ -264,12 +276,4 @@ export const shadowSteps = [
|
|
|
264
276
|
offset: "1",
|
|
265
277
|
color: "#899BAD",
|
|
266
278
|
},
|
|
267
|
-
]
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
// <stop offset="0.81"
|
|
271
|
-
// <stop offset="0.87"
|
|
272
|
-
// <stop offset="0.91"
|
|
273
|
-
// <stop offset="0.94"
|
|
274
|
-
// <stop offset="0.97"
|
|
275
|
-
// <stop offset="1"
|
|
279
|
+
]
|
package/src/translations.js
CHANGED
|
@@ -9,7 +9,7 @@ export const translations = {
|
|
|
9
9
|
ActiveTickets: `Active Tickets`,
|
|
10
10
|
ImplicitTickets: `Implicit Tickets`,
|
|
11
11
|
RemainingTimes: `Remaining Times`,
|
|
12
|
-
ShowNext: `The Wheel will be available on <strong>{startTime}</strong
|
|
12
|
+
ShowNext: `The Wheel will be available on<br /> <strong>{startTime}</strong> <br />Please wait till it is open.`,
|
|
13
13
|
SpinFailed: `We are sorry that you don't have any Wheels available, please <strong>check T&C</strong> here to get a chance!`,
|
|
14
14
|
DrawFailed: 'There was a problem to grant the reward. Please contact support',
|
|
15
15
|
Congratulation: `Congratulations! You won a {prize}!`,
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
<svg width="375" height="400" viewBox="0 0 375 400" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g filter="url(#filter0_d_4318_310)">
|
|
3
|
-
<path d="M337 200.999C337 283.839 269.855 350.999 187 350.999C104.145 350.999 37 283.839 37 200.999C37 118.158 100.302 54.9152 179.817 51.1611C182.197 51.0577 184.606 50.9985 187 50.9985C189.394 50.9985 191.803 51.0429 194.183 51.1611C273.683 54.9152 337 120.552 337 200.984V200.999Z" fill="url(#paint0_linear_4318_310)"/>
|
|
4
|
-
</g>
|
|
5
|
-
<defs>
|
|
6
|
-
<filter id="filter0_d_4318_310" x="-13" y="0.998535" width="400" height="400" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
7
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
8
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
9
|
-
<feOffset/>
|
|
10
|
-
<feGaussianBlur stdDeviation="25"/>
|
|
11
|
-
<feComposite in2="hardAlpha" operator="out"/>
|
|
12
|
-
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 0.972917 0 0 0 0 0.729167 0 0 0 0.5 0"/>
|
|
13
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4318_310"/>
|
|
14
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_4318_310" result="shape"/>
|
|
15
|
-
</filter>
|
|
16
|
-
<linearGradient id="paint0_linear_4318_310" x1="114.86" y1="325.947" x2="267.254" y2="61.9799" gradientUnits="userSpaceOnUse">
|
|
17
|
-
<stop stop-color="#FFB915"/>
|
|
18
|
-
<stop offset="0.24" stop-color="#BF8500"/>
|
|
19
|
-
<stop offset="0.41" stop-color="#FFE26A"/>
|
|
20
|
-
<stop offset="0.46" stop-color="#FFDD63"/>
|
|
21
|
-
<stop offset="0.53" stop-color="#FFCF51"/>
|
|
22
|
-
<stop offset="0.58" stop-color="#FFC13F"/>
|
|
23
|
-
<stop offset="0.82" stop-color="#FFB915"/>
|
|
24
|
-
<stop offset="1" stop-color="#FFF100"/>
|
|
25
|
-
</linearGradient>
|
|
26
|
-
</defs>
|
|
27
|
-
</svg>
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
<svg width="320" height="320" viewBox="0 0 320 320" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M320 159.992C320 248.353 248.368 320 160.008 320C71.6473 320 0 248.353 0 159.992C0 71.6319 67.5153 4.17827 152.33 0.169598C154.874 0.0616719 157.433 0 159.992 0C162.552 0 165.111 0.0462539 167.655 0.169598C252.454 4.17827 319.985 74.1913 319.985 159.992H320Z" fill="url(#paint0_linear_4318_430)"/>
|
|
3
|
-
<defs>
|
|
4
|
-
<linearGradient id="paint0_linear_4318_430" x1="268.812" y1="51.1877" x2="38.9458" y2="281.039" gradientUnits="userSpaceOnUse">
|
|
5
|
-
<stop stop-color="#FEDC31"/>
|
|
6
|
-
<stop offset="0.09" stop-color="#FDC347"/>
|
|
7
|
-
<stop offset="0.27" stop-color="#FC8682"/>
|
|
8
|
-
<stop offset="0.52" stop-color="#FA2CD7"/>
|
|
9
|
-
<stop offset="0.76" stop-color="#987CDB"/>
|
|
10
|
-
<stop offset="1" stop-color="#33D0E0"/>
|
|
11
|
-
</linearGradient>
|
|
12
|
-
</defs>
|
|
13
|
-
</svg>
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
<svg width="89" height="92" viewBox="0 0 89 92" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g filter="url(#filter0_d_4318_351)">
|
|
3
|
-
<path d="M66.3025 20.3267L61.3808 20.977C69.2141 26.4307 74.4018 35.4464 74.4905 45.7183C74.6383 62.5525 61.1148 76.3125 44.2806 76.4603C40.0388 76.5046 35.9744 75.6622 32.2942 74.1251L33.9939 70.0311L26.6336 70.9917L21.7119 71.6421L29.2496 81.5002L30.9493 77.3914C35.0581 79.1059 39.5807 80.037 44.325 79.9926C63.1101 79.8301 78.1855 64.4739 78.0229 45.6888C77.9342 35.5498 73.4116 26.4898 66.3173 20.3267H66.3025Z" fill="url(#paint0_linear_4318_351)"/>
|
|
4
|
-
</g>
|
|
5
|
-
<g filter="url(#filter1_d_4318_351)">
|
|
6
|
-
<path d="M58.7797 10.4835L57.0653 14.5923C52.9565 12.8779 48.4339 11.9467 43.7043 11.9911C24.9192 12.1537 9.82907 27.5098 10.0064 46.2949C10.0951 56.4339 14.6177 65.4791 21.6972 71.6423L26.6189 70.992C18.7856 65.5382 13.6127 56.5226 13.524 46.2506C13.3762 29.4164 26.8997 15.6565 43.7339 15.5087C47.9757 15.4643 52.0254 16.3068 55.7203 17.8439L54.0206 21.9379L61.381 20.9772L66.3026 20.3269H66.3174L58.7797 10.4688V10.4835Z" fill="url(#paint1_linear_4318_351)"/>
|
|
7
|
-
</g>
|
|
8
|
-
<defs>
|
|
9
|
-
<filter id="filter0_d_4318_351" x="11.7119" y="10.3267" width="76.3125" height="81.1733" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
10
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
11
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
12
|
-
<feOffset/>
|
|
13
|
-
<feGaussianBlur stdDeviation="5"/>
|
|
14
|
-
<feComposite in2="hardAlpha" operator="out"/>
|
|
15
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0"/>
|
|
16
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4318_351"/>
|
|
17
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_4318_351" result="shape"/>
|
|
18
|
-
</filter>
|
|
19
|
-
<filter id="filter1_d_4318_351" x="0.00488281" y="0.46875" width="76.3125" height="81.1733" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
20
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
21
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
22
|
-
<feOffset/>
|
|
23
|
-
<feGaussianBlur stdDeviation="5"/>
|
|
24
|
-
<feComposite in2="hardAlpha" operator="out"/>
|
|
25
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0"/>
|
|
26
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4318_351"/>
|
|
27
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_4318_351" result="shape"/>
|
|
28
|
-
</filter>
|
|
29
|
-
<linearGradient id="paint0_linear_4318_351" x1="71.8306" y1="24.4421" x2="40.2832" y2="80.2084" gradientUnits="userSpaceOnUse">
|
|
30
|
-
<stop stop-color="#FFB915"/>
|
|
31
|
-
<stop offset="0.24" stop-color="#BF8500"/>
|
|
32
|
-
<stop offset="0.41" stop-color="#FFE26A"/>
|
|
33
|
-
<stop offset="0.46" stop-color="#FFDD63"/>
|
|
34
|
-
<stop offset="0.53" stop-color="#FFCF51"/>
|
|
35
|
-
<stop offset="0.58" stop-color="#FFC13F"/>
|
|
36
|
-
<stop offset="0.82" stop-color="#FFB915"/>
|
|
37
|
-
<stop offset="1" stop-color="#FFF100"/>
|
|
38
|
-
</linearGradient>
|
|
39
|
-
<linearGradient id="paint1_linear_4318_351" x1="17.448" y1="65.3064" x2="47.3802" y2="12.3922" gradientUnits="userSpaceOnUse">
|
|
40
|
-
<stop stop-color="#FFB915"/>
|
|
41
|
-
<stop offset="0.24" stop-color="#BF8500"/>
|
|
42
|
-
<stop offset="0.41" stop-color="#FFE26A"/>
|
|
43
|
-
<stop offset="0.46" stop-color="#FFDD63"/>
|
|
44
|
-
<stop offset="0.53" stop-color="#FFCF51"/>
|
|
45
|
-
<stop offset="0.58" stop-color="#FFC13F"/>
|
|
46
|
-
<stop offset="0.82" stop-color="#FFB915"/>
|
|
47
|
-
<stop offset="1" stop-color="#FFF100"/>
|
|
48
|
-
</linearGradient>
|
|
49
|
-
</defs>
|
|
50
|
-
</svg>
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
<svg width="89" height="92" viewBox="0 0 89 92" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<defs>
|
|
3
|
-
|
|
4
|
-
<linearGradient id="paint0_linear_4318_351" x1="71.8306" y1="24.4421" x2="40.2832" y2="80.2084" gradientUnits="userSpaceOnUse">
|
|
5
|
-
<stop stop-color="#FFB915"/>
|
|
6
|
-
<stop offset="0.24" stop-color="#BF8500"/>
|
|
7
|
-
<stop offset="0.41" stop-color="#FFE26A"/>
|
|
8
|
-
<stop offset="0.46" stop-color="#FFDD63"/>
|
|
9
|
-
<stop offset="0.53" stop-color="#FFCF51"/>
|
|
10
|
-
<stop offset="0.58" stop-color="#FFC13F"/>
|
|
11
|
-
<stop offset="0.82" stop-color="#FFB915"/>
|
|
12
|
-
<stop offset="1" stop-color="#FFF100"/>
|
|
13
|
-
</linearGradient>
|
|
14
|
-
</defs>
|
|
15
|
-
<g filter="url(#filter0_d_4318_351)">
|
|
16
|
-
<path d="M66.3025 20.3267L61.3808 20.977C69.2141 26.4307 74.4018 35.4464 74.4905 45.7183C74.6383 62.5525 61.1148 76.3125 44.2806 76.4603C40.0388 76.5046 35.9744 75.6622 32.2942 74.1251L33.9939 70.0311L26.6336 70.9917L21.7119 71.6421L29.2496 81.5002L30.9493 77.3914C35.0581 79.1059 39.5807 80.037 44.325 79.9926C63.1101 79.8301 78.1855 64.4739 78.0229 45.6888C77.9342 35.5498 73.4116 26.4898 66.3173 20.3267H66.3025Z" fill="url(#paint0_linear_4318_351)"/>
|
|
17
|
-
</g>
|
|
18
|
-
</svg>
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<svg width="89" height="92" viewBox="0 0 89 92" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g filter="url(#filter1_d_4318_351)">
|
|
3
|
-
<path d="M58.7797 10.4835L57.0653 14.5923C52.9565 12.8779 48.4339 11.9467 43.7043 11.9911C24.9192 12.1537 9.82907 27.5098 10.0064 46.2949C10.0951 56.4339 14.6177 65.4791 21.6972 71.6423L26.6189 70.992C18.7856 65.5382 13.6127 56.5226 13.524 46.2506C13.3762 29.4164 26.8997 15.6565 43.7339 15.5087C47.9757 15.4643 52.0254 16.3068 55.7203 17.8439L54.0206 21.9379L61.381 20.9772L66.3026 20.3269H66.3174L58.7797 10.4688V10.4835Z" fill="url(#paint1_linear_4318_351)"/>
|
|
4
|
-
</g>
|
|
5
|
-
</svg>
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
<svg width="92" height="92" viewBox="0 0 92 92" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g filter="url(#filter0_d_4318_451)">
|
|
3
|
-
<path d="M61.7341 10.0813L59.9148 14.3521C55.644 12.5328 50.9415 11.5152 45.9924 11.5152C26.3961 11.5152 10.5156 27.3957 10.5156 46.992C10.5156 57.5687 15.141 67.0507 22.48 73.5417L27.6296 72.9096C19.5043 67.1433 14.2005 57.692 14.2005 46.9765C14.2005 29.4155 28.4313 15.1847 45.9924 15.1847C50.4173 15.1847 54.6419 16.0943 58.4655 17.7287L56.6616 21.984L64.3398 21.0435L69.4894 20.4114H69.5048L61.7341 10.0659V10.0813Z" fill="url(#paint0_linear_4318_451)"/>
|
|
4
|
-
</g>
|
|
5
|
-
<g filter="url(#filter1_d_4318_451)">
|
|
6
|
-
<path d="M69.4892 20.4272L64.3396 21.0594C72.4648 26.8257 77.784 36.2769 77.784 46.9924C77.784 64.5535 63.5532 78.7843 45.9922 78.7843C41.5672 78.7843 37.3427 77.8746 33.5036 76.2403L35.3075 71.9849L27.614 72.9254L22.4644 73.5576L30.235 83.903L32.0543 79.6323C36.3251 81.4516 41.043 82.4692 45.9768 82.4692C65.573 82.4692 81.4535 66.5886 81.4535 46.9924C81.4535 36.4157 76.8281 26.9336 69.4737 20.4272H69.4892Z" fill="url(#paint1_linear_4318_451)"/>
|
|
7
|
-
</g>
|
|
8
|
-
<defs>
|
|
9
|
-
<filter id="filter0_d_4318_451" x="0.515625" y="0.065918" width="78.9893" height="83.4756" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
10
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
11
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
12
|
-
<feOffset/>
|
|
13
|
-
<feGaussianBlur stdDeviation="5"/>
|
|
14
|
-
<feComposite in2="hardAlpha" operator="out"/>
|
|
15
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0"/>
|
|
16
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4318_451"/>
|
|
17
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_4318_451" result="shape"/>
|
|
18
|
-
</filter>
|
|
19
|
-
<filter id="filter1_d_4318_451" x="2.46436" y="0.427246" width="98.9893" height="103.476" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
20
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
21
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
22
|
-
<feOffset/>
|
|
23
|
-
<feGaussianBlur stdDeviation="10"/>
|
|
24
|
-
<feComposite in2="hardAlpha" operator="out"/>
|
|
25
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"/>
|
|
26
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4318_451"/>
|
|
27
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_4318_451" result="shape"/>
|
|
28
|
-
</filter>
|
|
29
|
-
<linearGradient id="paint0_linear_4318_451" x1="40.0256" y1="11.1298" x2="40.0256" y2="63.4275" gradientUnits="userSpaceOnUse">
|
|
30
|
-
<stop stop-color="#F8DA36"/>
|
|
31
|
-
<stop offset="0.09" stop-color="#F8C14C"/>
|
|
32
|
-
<stop offset="0.28" stop-color="#F88485"/>
|
|
33
|
-
<stop offset="0.52" stop-color="#FA2CD7"/>
|
|
34
|
-
<stop offset="0.76" stop-color="#987CDB"/>
|
|
35
|
-
<stop offset="1" stop-color="#33D0E0"/>
|
|
36
|
-
</linearGradient>
|
|
37
|
-
<linearGradient id="paint1_linear_4318_451" x1="51.9743" y1="82.8546" x2="51.9743" y2="30.5877" gradientUnits="userSpaceOnUse">
|
|
38
|
-
<stop stop-color="#FEDC31"/>
|
|
39
|
-
<stop offset="0.09" stop-color="#FDC347"/>
|
|
40
|
-
<stop offset="0.27" stop-color="#FC8682"/>
|
|
41
|
-
<stop offset="0.52" stop-color="#FA2CD7"/>
|
|
42
|
-
<stop offset="0.76" stop-color="#987CDB"/>
|
|
43
|
-
<stop offset="1" stop-color="#33D0E0"/>
|
|
44
|
-
</linearGradient>
|
|
45
|
-
</defs>
|
|
46
|
-
</svg>
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<svg width="28" height="24" viewBox="0 0 28 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M14 0L27.8564 24H0.143594L14 0Z" fill="url(#paint0_linear_4318_563)"/>
|
|
3
|
-
<defs>
|
|
4
|
-
<linearGradient id="paint0_linear_4318_563" x1="6.75676" y1="33.0147" x2="21.251" y2="-0.805239" gradientUnits="userSpaceOnUse">
|
|
5
|
-
<stop offset="0.0604165" stop-color="#FFB915"/>
|
|
6
|
-
<stop offset="0.2375" stop-color="#C48A02"/>
|
|
7
|
-
<stop offset="0.477083" stop-color="#FFE067"/>
|
|
8
|
-
<stop offset="0.721875" stop-color="#FFB915"/>
|
|
9
|
-
<stop offset="1" stop-color="#FFF100"/>
|
|
10
|
-
</linearGradient>
|
|
11
|
-
</defs>
|
|
12
|
-
</svg>
|