@byomakase/omakase-player 0.8.2 → 0.8.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.
Files changed (80) hide show
  1. package/dist/api/audio-api.d.ts +3 -3
  2. package/dist/api/marker-lane-api.d.ts +9 -8
  3. package/dist/api/omakase-player-api.d.ts +12 -12
  4. package/dist/api/subtitles-api.d.ts +8 -8
  5. package/dist/api/timeline-api.d.ts +21 -11
  6. package/dist/api/video-api.d.ts +11 -6
  7. package/dist/audio/audio-controller.d.ts +4 -4
  8. package/dist/chart/chart-file.d.ts +12 -0
  9. package/dist/common/component.d.ts +5 -5
  10. package/dist/common/style-adapter.d.ts +1 -1
  11. package/dist/common/styles-provider.d.ts +2 -2
  12. package/dist/constants.d.ts +3 -1
  13. package/dist/dom/fullscreen.d.ts +19 -19
  14. package/dist/http.d.ts +1 -1
  15. package/dist/images/help.svg +17 -16
  16. package/dist/images/loading.svg +30 -29
  17. package/dist/images/pause.svg +19 -18
  18. package/dist/images/play.svg +20 -18
  19. package/dist/images/replay.svg +24 -22
  20. package/dist/index.d.ts +3 -3
  21. package/dist/omakase-player.cjs.js +30 -30
  22. package/dist/omakase-player.cjs.js.map +1 -1
  23. package/dist/omakase-player.d.ts +14 -14
  24. package/dist/omakase-player.es.js +3920 -3319
  25. package/dist/omakase-player.es.js.map +1 -1
  26. package/dist/omakase-player.umd.js +30 -30
  27. package/dist/omakase-player.umd.js.map +1 -1
  28. package/dist/subtitles/subtitles-controller.d.ts +5 -5
  29. package/dist/timeline/audio-track/audio-track-lane-item.d.ts +4 -6
  30. package/dist/timeline/audio-track/audio-track-lane.d.ts +5 -6
  31. package/dist/timeline/chart-track/bar-chart-lane-item.d.ts +50 -0
  32. package/dist/timeline/chart-track/bar-chart-lane.d.ts +64 -0
  33. package/dist/timeline/chart-track/index.d.ts +17 -0
  34. package/dist/timeline/chart-track/og-chart-lane-item.d.ts +51 -0
  35. package/dist/timeline/chart-track/og-chart-lane.d.ts +64 -0
  36. package/dist/timeline/index.d.ts +6 -4
  37. package/dist/timeline/marker/index.d.ts +4 -4
  38. package/dist/timeline/marker/marker-handle.d.ts +6 -6
  39. package/dist/timeline/marker/marker-lane.d.ts +11 -11
  40. package/dist/timeline/marker/marker.d.ts +7 -7
  41. package/dist/timeline/marker/moment-marker.d.ts +7 -7
  42. package/dist/timeline/marker/period-marker.d.ts +7 -7
  43. package/dist/timeline/playhead-hover.d.ts +5 -5
  44. package/dist/timeline/playhead.d.ts +5 -5
  45. package/dist/timeline/scrollbar.d.ts +5 -5
  46. package/dist/timeline/scrubber-lane.d.ts +7 -7
  47. package/dist/timeline/subtitles/subtitles-lane-item.d.ts +6 -6
  48. package/dist/timeline/subtitles/subtitles-lane.d.ts +7 -7
  49. package/dist/timeline/thumbnail/thumbnail-lane.d.ts +19 -18
  50. package/dist/timeline/thumbnail/thumbnail.d.ts +5 -5
  51. package/dist/timeline/timecode-display.d.ts +5 -5
  52. package/dist/timeline/timeline-lane.d.ts +8 -8
  53. package/dist/timeline/timeline.d.ts +37 -24
  54. package/dist/track/audio-vtt-file.d.ts +4 -4
  55. package/dist/track/subtitles-vtt-file.d.ts +4 -4
  56. package/dist/track/subtitles-vtt-track.d.ts +2 -2
  57. package/dist/track/thumbnail-vtt-file.d.ts +4 -4
  58. package/dist/track/track.d.ts +1 -1
  59. package/dist/track/vtt-file.d.ts +4 -4
  60. package/dist/types/chart.d.ts +43 -0
  61. package/dist/types/events.d.ts +7 -7
  62. package/dist/types/index.d.ts +7 -5
  63. package/dist/types/types.d.ts +1 -1
  64. package/dist/types/vtt.d.ts +1 -1
  65. package/dist/util/animation-util.d.ts +2 -2
  66. package/dist/util/array-util.d.ts +3 -0
  67. package/dist/util/color-util.d.ts +1 -0
  68. package/dist/util/destroy-util.d.ts +1 -1
  69. package/dist/util/error-util.d.ts +1 -1
  70. package/dist/util/frame-util.d.ts +1 -1
  71. package/dist/util/image-util.d.ts +2 -2
  72. package/dist/util/observable-util.d.ts +1 -1
  73. package/dist/util/shape-util.d.ts +1 -1
  74. package/dist/util/timestamp-util.d.ts +5 -4
  75. package/dist/video/playback-state.d.ts +1 -1
  76. package/dist/video/video-controller-api.d.ts +6 -6
  77. package/dist/video/video-controller.d.ts +16 -11
  78. package/dist/video/video-dom-controller.d.ts +3 -3
  79. package/dist/video/video-hls-controller.d.ts +9 -5
  80. package/package.json +2 -2
@@ -13,9 +13,9 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- import { Api } from "./api";
17
- import { Observable } from "rxjs";
18
- import { AudioEvent } from "../types";
16
+ import { Api } from './api';
17
+ import { Observable } from 'rxjs';
18
+ import { AudioEvent } from '../types';
19
19
  export interface AudioApi extends Api {
20
20
  /***
21
21
  * Fires on audio track switched
@@ -13,12 +13,13 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- import { Api } from "./api";
17
- import { GenericMarker } from "../timeline/marker/marker";
18
- import { MomentMarker, MomentMarkerConfig } from "../timeline/marker/moment-marker";
19
- import { PeriodMarker, PeriodMarkerConfig } from "../timeline/marker/period-marker";
20
- import { Subject } from "rxjs";
21
- import { MarkerFocusEvent } from "../types";
16
+ import { Api } from './api';
17
+ import { GenericMarker } from '../timeline/marker/marker';
18
+ import { MomentMarker, MomentMarkerConfig } from '../timeline/marker/moment-marker';
19
+ import { PeriodMarker, PeriodMarkerConfig } from '../timeline/marker/period-marker';
20
+ import { Subject } from 'rxjs';
21
+ import { MarkerFocusEvent } from '../types';
22
+ import { ComponentConfigStyleComposed } from '../common/component';
22
23
  export interface MarkerLaneApi extends Api {
23
24
  /***
24
25
  * Fires on marker focus
@@ -28,12 +29,12 @@ export interface MarkerLaneApi extends Api {
28
29
  * Creates new MomentMarker instance and adds it to MarkerLane
29
30
  * @param config MomentMarker configuration
30
31
  */
31
- createMomentMarker(config: MomentMarkerConfig): MomentMarker;
32
+ createMomentMarker(config: ComponentConfigStyleComposed<MomentMarkerConfig>): MomentMarker;
32
33
  /***
33
34
  * Creates new PeriodMarker instance and adds it to MarkerLane
34
35
  * @param config PeriodMarkern configuration
35
36
  */
36
- createPeriodMarker(config: PeriodMarkerConfig): PeriodMarker;
37
+ createPeriodMarker(config: ComponentConfigStyleComposed<PeriodMarkerConfig>): PeriodMarker;
37
38
  /***
38
39
  * Adds Marker to MarkerLane
39
40
  * @param marker Marker instance
@@ -13,18 +13,18 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- import { Api } from "./api";
17
- import { Timeline, TimelineConfig } from "../timeline/timeline";
18
- import { Observable } from "rxjs";
19
- import { SubtitlesApi } from "./subtitles-api";
20
- import { VideoApi } from "./video-api";
21
- import { Video } from "../video/video";
22
- import { OmakaseEventEmitter } from "../events";
23
- import { OmakasePlayerEventMap, OmakasePlayerEventsType } from "../types";
24
- import { AudioApi } from "./audio-api";
25
- import { TimelineApi } from "./timeline-api";
26
- import { OmakasePlayerStyle } from "../omakase-player";
27
- import { ComponentConfigStyleComposed } from "../common/component";
16
+ import { Api } from './api';
17
+ import { Timeline, TimelineConfig } from '../timeline';
18
+ import { Observable } from 'rxjs';
19
+ import { SubtitlesApi } from './subtitles-api';
20
+ import { VideoApi } from './video-api';
21
+ import { Video } from '../video/video';
22
+ import { OmakaseEventEmitter } from '../events';
23
+ import { OmakasePlayerEventMap, OmakasePlayerEventsType } from '../types';
24
+ import { AudioApi } from './audio-api';
25
+ import { TimelineApi } from './timeline-api';
26
+ import { OmakasePlayerStyle } from '../omakase-player';
27
+ import { ComponentConfigStyleComposed } from '../common/component';
28
28
  export interface OmakasePlayerApi extends Api, OmakaseEventEmitter<OmakasePlayerEventMap> {
29
29
  /***
30
30
  * Loads new video
@@ -13,10 +13,10 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- import { Api } from "./api";
17
- import { Observable } from "rxjs";
18
- import { OmakaseTextTrack, OmakaseTextTrackCue, SubtitlesEvent, SubtitlesVttTrackConfig } from "../types";
19
- import { SubtitlesVttTrack } from "../track/subtitles-vtt-track";
16
+ import { Api } from './api';
17
+ import { Observable } from 'rxjs';
18
+ import { OmakaseTextTrack, OmakaseTextTrackCue, SubtitlesEvent, SubtitlesVttTrackConfig } from '../types';
19
+ import { SubtitlesVttTrack } from '../track/subtitles-vtt-track';
20
20
  export interface SubtitlesApi extends Api {
21
21
  /***
22
22
  * Fires on subtitles create
@@ -60,15 +60,15 @@ export interface SubtitlesApi extends Api {
60
60
  * Shows active VTT track
61
61
  */
62
62
  showTrack(): any;
63
+ /***
64
+ * Hides active VTT track
65
+ */
66
+ hideTrack(): any;
63
67
  /***
64
68
  * Shows VTT track by ID
65
69
  * @param id VTT track ID
66
70
  */
67
71
  showTrack(id: string): any;
68
- /***
69
- * Hides active VTT track
70
- */
71
- hideTrack(): any;
72
72
  /***
73
73
  * Hides VTT track by ID
74
74
  * @param id VTT track ID
@@ -13,17 +13,18 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- import { Api } from "./api";
17
- import { Observable } from "rxjs";
18
- import { TimelineScrollEvent, TimelineZoomEvent } from "../types";
19
- import { AudioTrackLane, MarkerLane, SubtitlesLane, ThumbnailLane } from "../timeline";
20
- import { GenericTimelaneLane } from "../timeline/timeline-lane";
21
- import { TimelineStyle } from "../timeline/timeline";
22
- import { MarkerLaneConfig } from "../timeline/marker/marker-lane";
23
- import { ThumbnailLaneConfig } from "../timeline/thumbnail/thumbnail-lane";
24
- import { SubtitlesLaneConfig } from "../timeline/subtitles/subtitles-lane";
25
- import { ScrubberLane } from "../timeline/scrubber-lane";
26
- import { Scrollbar } from "../timeline/scrollbar";
16
+ import { Api } from './api';
17
+ import { Observable } from 'rxjs';
18
+ import { TimelineScrollEvent, TimelineZoomEvent } from '../types';
19
+ import { AudioTrackLane, MarkerLane, SubtitlesLane, ThumbnailLane } from '../timeline';
20
+ import { GenericTimelaneLane } from '../timeline/timeline-lane';
21
+ import { TimelineStyle } from '../timeline';
22
+ import { MarkerLaneConfig } from '../timeline/marker/marker-lane';
23
+ import { ThumbnailLaneConfig } from '../timeline/thumbnail/thumbnail-lane';
24
+ import { SubtitlesLaneConfig } from '../timeline/subtitles/subtitles-lane';
25
+ import { ScrubberLane } from '../timeline/scrubber-lane';
26
+ import { Scrollbar } from '../timeline/scrollbar';
27
+ import { ThumbnailVttFile } from '../track/thumbnail-vtt-file';
27
28
  export interface TimelineApi extends Api {
28
29
  /***
29
30
  * Fires on Timeline scroll
@@ -133,4 +134,13 @@ export interface TimelineApi extends Api {
133
134
  * @param visible
134
135
  */
135
136
  toggleLeftPanelVisible(visible: boolean): void;
137
+ /**
138
+ * Return ThumbnailVttFile if set
139
+ */
140
+ getThumbnailVttFile(): ThumbnailVttFile;
141
+ /**
142
+ * Load ThumbnailVttFile by url
143
+ */
144
+ loadThumbnailsFromUrl(thumbnailVttUrl: string): Observable<boolean>;
145
+ destroy(): any;
136
146
  }
@@ -13,11 +13,11 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- import { Api } from "./api";
17
- import { Observable } from "rxjs";
18
- import { AudioEvent, HelpMenuGroup, VideoBufferingEvent, VideoEndedEvent, VideoErrorEvent, VideoLoadedEvent, VideoPlayEvent, VideoSeekedEvent, VideoSeekingEvent, VideoTimeChangeEvent } from "../types";
19
- import { Video } from "../video/video";
20
- import Hls from "hls.js";
16
+ import { Api } from './api';
17
+ import { Observable } from 'rxjs';
18
+ import { AudioEvent, HelpMenuGroup, VideoBufferingEvent, VideoEndedEvent, VideoErrorEvent, VideoLoadedEvent, VideoPlayEvent, VideoSeekedEvent, VideoSeekingEvent, VideoTimeChangeEvent } from '../types';
19
+ import { Video } from '../video/video';
20
+ import Hls from 'hls.js';
21
21
  export interface VideoApi extends Api {
22
22
  /***
23
23
  * Fires on video load
@@ -170,7 +170,12 @@ export interface VideoApi extends Api {
170
170
  * Converts timestamp in format HH:MM:SS:FF to frame
171
171
  * @param timestamp
172
172
  */
173
- convertTimestampToFrame(timestamp: string): number;
173
+ parseTimestampToFrame(timestamp: string): number;
174
+ /**
175
+ * Converts timestamp in format HH:MM:SS:FF to time in seconds
176
+ * @param timestamp
177
+ */
178
+ parseTimestamp(timestamp: string): number;
174
179
  /***
175
180
  * Returns video frame number
176
181
  * @param time Video timestamp in seconds
@@ -14,10 +14,10 @@
14
14
  * limitations under the License.
15
15
  *
16
16
  */
17
- import { AudioApi } from "../api/audio-api";
18
- import { Subject } from "rxjs";
19
- import { AudioEvent, Destroyable } from "../types";
20
- import { VideoControllerApi } from "../video/video-controller-api";
17
+ import { AudioApi } from '../api/audio-api';
18
+ import { Subject } from 'rxjs';
19
+ import { AudioEvent, Destroyable } from '../types';
20
+ import { VideoControllerApi } from '../video/video-controller-api';
21
21
  export declare class AudioController implements AudioApi, Destroyable {
22
22
  protected videoController: VideoControllerApi;
23
23
  readonly onAudioSwitched$: Subject<AudioEvent>;
@@ -0,0 +1,12 @@
1
+ import { OmakaseChartFile, OgChart, OgChartCue } from '../types';
2
+ export declare class BarChartFile implements OmakaseChartFile<OgChart> {
3
+ protected chart: OgChart;
4
+ protected cues: Map<number, OgChartCue>;
5
+ protected cuesKeysSorted: number[];
6
+ constructor(chart: OgChart);
7
+ hasCues(): boolean;
8
+ findCue(time: number): OgChartCue;
9
+ findCues(startTime: number, endTime: number): OgChartCue[];
10
+ getCues(): OgChartCue[];
11
+ protected findCueIndex(time: number): number;
12
+ }
@@ -14,11 +14,11 @@
14
14
  * limitations under the License.
15
15
  *
16
16
  */
17
- import Konva from "konva";
18
- import { Observable, Subject } from "rxjs";
19
- import { StyleAdapter } from "./style-adapter";
20
- import { WithOptionalPartial } from "../types/types";
21
- import { Destroyable } from "../types";
17
+ import Konva from 'konva';
18
+ import { Observable, Subject } from 'rxjs';
19
+ import { StyleAdapter } from './style-adapter';
20
+ import { WithOptionalPartial } from '../types';
21
+ import { Destroyable } from '../types';
22
22
  export interface ComponentConfig<S> {
23
23
  style: S;
24
24
  }
@@ -14,7 +14,7 @@
14
14
  * limitations under the License.
15
15
  *
16
16
  */
17
- import { Subject } from "rxjs";
17
+ import { Subject } from 'rxjs';
18
18
  export declare class StyleAdapter<T> {
19
19
  readonly onChange$: Subject<T>;
20
20
  private _style;
@@ -14,8 +14,8 @@
14
14
  * limitations under the License.
15
15
  *
16
16
  */
17
- import { Subject } from "rxjs";
18
- import { OmakasePlayerStyle } from "../omakase-player";
17
+ import { Subject } from 'rxjs';
18
+ import { OmakasePlayerStyle } from '../omakase-player';
19
19
  export interface Styles {
20
20
  omakasePlayerStyle: OmakasePlayerStyle;
21
21
  }
@@ -13,12 +13,14 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- import { Dimension, Position } from "./common/measurement";
16
+ import { Dimension, Position } from './common/measurement';
17
17
  export declare class Constants {
18
18
  static POSITION_TOP_LEFT: Position;
19
19
  static DIMENSION_ZERO: Dimension;
20
20
  static GOLDEN_RATIO: number;
21
21
  static TIMELINE_ZOOM_EASED_DURATION_MS: number;
22
22
  static TIMELINE_SCROLL_EASED_DURATION_MS: number;
23
+ static TWO_PI_RADIANS: number;
24
+ static FILL_LINEAR_GRADIENT_AUDIO_PEAK: (string | number)[];
23
25
  static MIME_TYPE_VND_APPLE_MPEGURL: string;
24
26
  }
@@ -2,27 +2,27 @@
2
2
  * https://github.com/imbhargav5/rooks/blob/main/packages/rooks/src/hooks/useFullscreen.ts
3
3
  */
4
4
  export interface FullscreenElement {
5
- requestFullscreen?: Element["requestFullscreen"];
6
- webkitRequestFullscreen?: Element["requestFullscreen"];
7
- webkitRequestFullScreen?: Element["requestFullscreen"];
8
- mozRequestFullScreen?: Element["requestFullscreen"];
9
- msRequestFullscreen?: Element["requestFullscreen"];
5
+ requestFullscreen?: Element['requestFullscreen'];
6
+ webkitRequestFullscreen?: Element['requestFullscreen'];
7
+ webkitRequestFullScreen?: Element['requestFullscreen'];
8
+ mozRequestFullScreen?: Element['requestFullscreen'];
9
+ msRequestFullscreen?: Element['requestFullscreen'];
10
10
  }
11
11
  export interface FullscreenDocument {
12
- fullscreenEnabled?: Document["fullscreenEnabled"];
13
- webkitFullscreenEnabled?: Document["fullscreenEnabled"];
14
- mozFullScreenEnabled?: Document["fullscreenEnabled"];
15
- msFullscreenEnabled?: Document["fullscreenEnabled"];
16
- fullscreenElement?: Document["fullscreenElement"];
17
- webkitFullscreenElement?: Document["fullscreenElement"];
18
- webkitCurrentFullScreenElement?: Document["fullscreenElement"];
19
- mozFullScreenElement?: Document["fullscreenElement"];
20
- msFullscreenElement?: Document["fullscreenElement"];
21
- exitFullscreen?: Document["exitFullscreen"];
22
- webkitExitFullscreen?: Document["exitFullscreen"];
23
- webkitCancelFullScreen?: Document["exitFullscreen"];
24
- mozCancelFullScreen?: Document["exitFullscreen"];
25
- msExitFullscreen?: Document["exitFullscreen"];
12
+ fullscreenEnabled?: Document['fullscreenEnabled'];
13
+ webkitFullscreenEnabled?: Document['fullscreenEnabled'];
14
+ mozFullScreenEnabled?: Document['fullscreenEnabled'];
15
+ msFullscreenEnabled?: Document['fullscreenEnabled'];
16
+ fullscreenElement?: Document['fullscreenElement'];
17
+ webkitFullscreenElement?: Document['fullscreenElement'];
18
+ webkitCurrentFullScreenElement?: Document['fullscreenElement'];
19
+ mozFullScreenElement?: Document['fullscreenElement'];
20
+ msFullscreenElement?: Document['fullscreenElement'];
21
+ exitFullscreen?: Document['exitFullscreen'];
22
+ webkitExitFullscreen?: Document['exitFullscreen'];
23
+ webkitCancelFullScreen?: Document['exitFullscreen'];
24
+ mozCancelFullScreen?: Document['exitFullscreen'];
25
+ msExitFullscreen?: Document['exitFullscreen'];
26
26
  }
27
27
  export declare class Fullscreen {
28
28
  static isFullscreenEnabled(): boolean;
package/dist/http.d.ts CHANGED
@@ -13,5 +13,5 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- import { AxiosRequestConfig, AxiosResponse } from "axios";
16
+ import { AxiosRequestConfig, AxiosResponse } from 'axios';
17
17
  export declare function httpGet<T, D>(url: string, config?: AxiosRequestConfig<D>): Promise<AxiosResponse<T, any>>;
@@ -1,18 +1,19 @@
1
1
  <svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g filter="url(#filter0_d_313_115)">
3
- <path d="M25.3001 19.16C27.5701 15.37 27.5701 10.63 25.3001 6.84C25.6501 6.52 25.6801 5.98 25.3601 5.63C25.3601 5.63 25.3401 5.61 25.3301 5.6L22.3901 2.66C22.0601 2.33 21.5201 2.33 21.1801 2.66C21.1801 2.66 21.1601 2.68 21.1501 2.69C17.3701 0.43 12.6301 0.43 8.84006 2.7C8.52006 2.35 7.99006 2.32 7.64006 2.64C7.63006 2.64 7.62006 2.66 7.61006 2.67L4.67006 5.61C4.34006 5.95 4.34006 6.49 4.67006 6.82C4.67006 6.82 4.69006 6.84 4.70006 6.85C2.43006 10.64 2.43006 15.38 4.70006 19.17C4.35006 19.49 4.32006 20.03 4.64006 20.38C4.64006 20.38 4.66006 20.4 4.67006 20.41L7.61006 23.35C7.95006 23.68 8.49006 23.68 8.82006 23.35C8.82006 23.35 8.84006 23.33 8.85006 23.32C12.6401 25.59 17.3801 25.59 21.1701 23.32C21.4901 23.67 22.0301 23.7 22.3801 23.38C22.3801 23.38 22.4001 23.36 22.4101 23.35L25.3501 20.41C25.6801 20.07 25.6801 19.53 25.3501 19.2C25.3501 19.2 25.3301 19.18 25.3201 19.18L25.3001 19.16ZM24.6501 18.58L22.2301 16.44C23.2601 14.27 23.2601 11.74 22.2301 9.57L24.6501 7.43C26.6501 10.88 26.6401 15.14 24.6501 18.59V18.58ZM21.7901 3.27L24.7301 6.2L21.5801 8.99L19.0001 6.42C19.1101 6.29 21.7801 3.28 21.7901 3.26V3.27ZM21.4101 16.16C21.2501 16.19 21.0901 16.27 20.9801 16.39L18.4001 18.97C18.2801 19.09 18.2001 19.24 18.1701 19.4C16.1801 20.38 13.8401 20.38 11.8501 19.4C11.8201 19.24 11.7401 19.08 11.6201 18.97L9.04006 16.39C8.92006 16.27 8.77006 16.19 8.61006 16.16C7.63006 14.17 7.63006 11.83 8.61006 9.84C8.77006 9.81 8.93006 9.73 9.05006 9.61L11.6301 7.03C11.7501 6.91 11.8301 6.76 11.8601 6.6C13.8501 5.62 16.1901 5.62 18.1801 6.6C18.2101 6.76 18.2901 6.92 18.4101 7.03L20.9901 9.61C21.1101 9.73 21.2601 9.81 21.4301 9.84C22.4101 11.83 22.4101 14.17 21.4301 16.16H21.4101ZM20.5801 3.35L18.4401 5.77C16.2701 4.73 13.7401 4.73 11.5701 5.77L9.43006 3.35C12.8801 1.35 17.1401 1.35 20.5901 3.35H20.5801ZM8.20006 3.27L10.9901 6.42L8.42006 9L5.26006 6.21L8.19006 3.27H8.20006ZM5.35006 7.42L7.77006 9.56C6.74006 11.73 6.74006 14.26 7.77006 16.43L5.35006 18.57C3.35006 15.12 3.35006 10.86 5.35006 7.41V7.42ZM8.21006 22.73L5.27006 19.8L8.42006 17.01L11.0001 19.58C11.0001 19.58 8.21006 22.73 8.21006 22.74V22.73ZM9.42006 22.65L11.5601 20.23C13.7301 21.27 16.2601 21.27 18.4301 20.23L20.5701 22.65C17.1201 24.65 12.8601 24.65 9.41006 22.65H9.42006ZM21.8001 22.73L19.0101 19.58L21.5801 17C21.5801 17 24.7301 19.79 24.7401 19.79L21.8101 22.73H21.8001Z"
4
- fill="white"/>
5
- </g>
6
- <defs>
7
- <filter id="filter0_d_313_115" x="0.997559" y="0.996248" width="28.0049" height="28.0263" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
8
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
9
- <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"/>
10
- <feOffset dy="2"/>
11
- <feGaussianBlur stdDeviation="1"/>
12
- <feComposite in2="hardAlpha" operator="out"/>
13
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.65 0"/>
14
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_313_115"/>
15
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_313_115" result="shape"/>
16
- </filter>
17
- </defs>
2
+ <g filter="url(#filter0_d_313_115)">
3
+ <path
4
+ d="M25.3001 19.16C27.5701 15.37 27.5701 10.63 25.3001 6.84C25.6501 6.52 25.6801 5.98 25.3601 5.63C25.3601 5.63 25.3401 5.61 25.3301 5.6L22.3901 2.66C22.0601 2.33 21.5201 2.33 21.1801 2.66C21.1801 2.66 21.1601 2.68 21.1501 2.69C17.3701 0.43 12.6301 0.43 8.84006 2.7C8.52006 2.35 7.99006 2.32 7.64006 2.64C7.63006 2.64 7.62006 2.66 7.61006 2.67L4.67006 5.61C4.34006 5.95 4.34006 6.49 4.67006 6.82C4.67006 6.82 4.69006 6.84 4.70006 6.85C2.43006 10.64 2.43006 15.38 4.70006 19.17C4.35006 19.49 4.32006 20.03 4.64006 20.38C4.64006 20.38 4.66006 20.4 4.67006 20.41L7.61006 23.35C7.95006 23.68 8.49006 23.68 8.82006 23.35C8.82006 23.35 8.84006 23.33 8.85006 23.32C12.6401 25.59 17.3801 25.59 21.1701 23.32C21.4901 23.67 22.0301 23.7 22.3801 23.38C22.3801 23.38 22.4001 23.36 22.4101 23.35L25.3501 20.41C25.6801 20.07 25.6801 19.53 25.3501 19.2C25.3501 19.2 25.3301 19.18 25.3201 19.18L25.3001 19.16ZM24.6501 18.58L22.2301 16.44C23.2601 14.27 23.2601 11.74 22.2301 9.57L24.6501 7.43C26.6501 10.88 26.6401 15.14 24.6501 18.59V18.58ZM21.7901 3.27L24.7301 6.2L21.5801 8.99L19.0001 6.42C19.1101 6.29 21.7801 3.28 21.7901 3.26V3.27ZM21.4101 16.16C21.2501 16.19 21.0901 16.27 20.9801 16.39L18.4001 18.97C18.2801 19.09 18.2001 19.24 18.1701 19.4C16.1801 20.38 13.8401 20.38 11.8501 19.4C11.8201 19.24 11.7401 19.08 11.6201 18.97L9.04006 16.39C8.92006 16.27 8.77006 16.19 8.61006 16.16C7.63006 14.17 7.63006 11.83 8.61006 9.84C8.77006 9.81 8.93006 9.73 9.05006 9.61L11.6301 7.03C11.7501 6.91 11.8301 6.76 11.8601 6.6C13.8501 5.62 16.1901 5.62 18.1801 6.6C18.2101 6.76 18.2901 6.92 18.4101 7.03L20.9901 9.61C21.1101 9.73 21.2601 9.81 21.4301 9.84C22.4101 11.83 22.4101 14.17 21.4301 16.16H21.4101ZM20.5801 3.35L18.4401 5.77C16.2701 4.73 13.7401 4.73 11.5701 5.77L9.43006 3.35C12.8801 1.35 17.1401 1.35 20.5901 3.35H20.5801ZM8.20006 3.27L10.9901 6.42L8.42006 9L5.26006 6.21L8.19006 3.27H8.20006ZM5.35006 7.42L7.77006 9.56C6.74006 11.73 6.74006 14.26 7.77006 16.43L5.35006 18.57C3.35006 15.12 3.35006 10.86 5.35006 7.41V7.42ZM8.21006 22.73L5.27006 19.8L8.42006 17.01L11.0001 19.58C11.0001 19.58 8.21006 22.73 8.21006 22.74V22.73ZM9.42006 22.65L11.5601 20.23C13.7301 21.27 16.2601 21.27 18.4301 20.23L20.5701 22.65C17.1201 24.65 12.8601 24.65 9.41006 22.65H9.42006ZM21.8001 22.73L19.0101 19.58L21.5801 17C21.5801 17 24.7301 19.79 24.7401 19.79L21.8101 22.73H21.8001Z"
5
+ fill="white"/>
6
+ </g>
7
+ <defs>
8
+ <filter id="filter0_d_313_115" x="0.997559" y="0.996248" width="28.0049" height="28.0263" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
9
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
10
+ <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"/>
11
+ <feOffset dy="2"/>
12
+ <feGaussianBlur stdDeviation="1"/>
13
+ <feComposite in2="hardAlpha" operator="out"/>
14
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.65 0"/>
15
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_313_115"/>
16
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_313_115" result="shape"/>
17
+ </filter>
18
+ </defs>
18
19
  </svg>
@@ -1,32 +1,33 @@
1
1
  <svg width="113" height="113" viewBox="0 0 113 113" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_313_105)" filter="url(#filter0_d_313_105)">
3
- <path d="M56.5001 0C54.7134 0 53.2654 1.44798 53.2654 3.23468V22.9391C53.2654 24.7258 54.7134 26.1738 56.5001 26.1738C58.2868 26.1738 59.7347 24.7258 59.7347 22.9391V3.23468C59.7347 1.44798 58.2868 0 56.5001 0Z" fill="white"/>
4
- <path d="M93.6225 19.95C94.8842 18.6883 94.8842 16.6391 93.6225 15.3774C92.3608 14.1157 90.3116 14.1157 89.0499 15.3774L75.112 29.3153C73.8503 30.577 73.8503 32.6262 75.112 33.8879C76.3314 35.1073 78.4568 35.1073 79.6846 33.8879L93.6225 19.95Z" fill="white"/>
5
- <path d="M23.95 15.3774C23.3234 14.7508 22.4936 14.429 21.6637 14.429C20.8339 14.429 20.004 14.7423 19.3774 15.3774C18.1157 16.6391 18.1157 18.6883 19.3774 19.95L33.3153 33.8879C34.5347 35.1073 36.6686 35.1073 37.8879 33.8879C39.1496 32.6262 39.1496 30.577 37.8879 29.3153L23.95 15.3774Z"
6
- fill="white"/>
7
- <path d="M4 52.5C4 54.2867 5.44798 55.7347 7.23468 55.7347H26.9391C28.7258 55.7347 30.1738 54.2867 30.1738 52.5C30.1738 50.7133 28.7258 49.2653 26.9391 49.2653H7.23468C5.44798 49.2653 4 50.7133 4 52.5Z" fill="white"/>
8
- <path d="M37.8795 75.6847C39.1412 74.423 39.1412 72.3738 37.8795 71.1121C36.6178 69.8504 34.5686 69.8504 33.3069 71.1121L19.369 85.05C18.7594 85.6597 18.4207 86.4726 18.4207 87.3363C18.4207 88.2 18.7594 89.0129 19.369 89.6226C20.5884 90.8419 22.7138 90.8419 23.9416 89.6226L37.8795 75.6847Z"
9
- fill="white"/>
10
- <g opacity="0.3">
11
- <path d="M105.765 49.2653H86.0609C84.2742 49.2653 82.8262 50.7133 82.8262 52.5C82.8262 54.2867 84.2742 55.7347 86.0609 55.7347H105.765C107.552 55.7347 109 54.2867 109 52.5C109 50.7133 107.552 49.2653 105.765 49.2653Z" fill="white"/>
12
- <path d="M94.5709 87.3363C94.5709 86.4726 94.2322 85.6597 93.6225 85.05L79.6846 71.1121C79.0749 70.5024 78.262 70.1637 77.3983 70.1637C76.5346 70.1637 75.7217 70.5024 75.112 71.1121C73.8503 72.3738 73.8503 74.423 75.112 75.6847L89.0499 89.6226C90.2693 90.8419 92.3947 90.8419 93.6225 89.6226C94.2322 89.0129 94.5709 88.2 94.5709 87.3363Z"
13
- fill="white"/>
14
- <path d="M56.5001 78.8262C54.7134 78.8262 53.2654 80.2742 53.2654 82.0609V101.765C53.2654 103.552 54.7134 105 56.5001 105C58.2868 105 59.7347 103.552 59.7347 101.765V82.0609C59.7347 80.2742 58.2868 78.8262 56.5001 78.8262Z" fill="white"/>
15
- </g>
2
+ <g clip-path="url(#clip0_313_105)" filter="url(#filter0_d_313_105)">
3
+ <path d="M56.5001 0C54.7134 0 53.2654 1.44798 53.2654 3.23468V22.9391C53.2654 24.7258 54.7134 26.1738 56.5001 26.1738C58.2868 26.1738 59.7347 24.7258 59.7347 22.9391V3.23468C59.7347 1.44798 58.2868 0 56.5001 0Z" fill="white"/>
4
+ <path d="M93.6225 19.95C94.8842 18.6883 94.8842 16.6391 93.6225 15.3774C92.3608 14.1157 90.3116 14.1157 89.0499 15.3774L75.112 29.3153C73.8503 30.577 73.8503 32.6262 75.112 33.8879C76.3314 35.1073 78.4568 35.1073 79.6846 33.8879L93.6225 19.95Z" fill="white"/>
5
+ <path d="M23.95 15.3774C23.3234 14.7508 22.4936 14.429 21.6637 14.429C20.8339 14.429 20.004 14.7423 19.3774 15.3774C18.1157 16.6391 18.1157 18.6883 19.3774 19.95L33.3153 33.8879C34.5347 35.1073 36.6686 35.1073 37.8879 33.8879C39.1496 32.6262 39.1496 30.577 37.8879 29.3153L23.95 15.3774Z"
6
+ fill="white"/>
7
+ <path d="M4 52.5C4 54.2867 5.44798 55.7347 7.23468 55.7347H26.9391C28.7258 55.7347 30.1738 54.2867 30.1738 52.5C30.1738 50.7133 28.7258 49.2653 26.9391 49.2653H7.23468C5.44798 49.2653 4 50.7133 4 52.5Z" fill="white"/>
8
+ <path d="M37.8795 75.6847C39.1412 74.423 39.1412 72.3738 37.8795 71.1121C36.6178 69.8504 34.5686 69.8504 33.3069 71.1121L19.369 85.05C18.7594 85.6597 18.4207 86.4726 18.4207 87.3363C18.4207 88.2 18.7594 89.0129 19.369 89.6226C20.5884 90.8419 22.7138 90.8419 23.9416 89.6226L37.8795 75.6847Z"
9
+ fill="white"/>
10
+ <g opacity="0.3">
11
+ <path d="M105.765 49.2653H86.0609C84.2742 49.2653 82.8262 50.7133 82.8262 52.5C82.8262 54.2867 84.2742 55.7347 86.0609 55.7347H105.765C107.552 55.7347 109 54.2867 109 52.5C109 50.7133 107.552 49.2653 105.765 49.2653Z" fill="white"/>
12
+ <path
13
+ d="M94.5709 87.3363C94.5709 86.4726 94.2322 85.6597 93.6225 85.05L79.6846 71.1121C79.0749 70.5024 78.262 70.1637 77.3983 70.1637C76.5346 70.1637 75.7217 70.5024 75.112 71.1121C73.8503 72.3738 73.8503 74.423 75.112 75.6847L89.0499 89.6226C90.2693 90.8419 92.3947 90.8419 93.6225 89.6226C94.2322 89.0129 94.5709 88.2 94.5709 87.3363Z"
14
+ fill="white"/>
15
+ <path d="M56.5001 78.8262C54.7134 78.8262 53.2654 80.2742 53.2654 82.0609V101.765C53.2654 103.552 54.7134 105 56.5001 105C58.2868 105 59.7347 103.552 59.7347 101.765V82.0609C59.7347 80.2742 58.2868 78.8262 56.5001 78.8262Z" fill="white"/>
16
16
  </g>
17
- <defs>
18
- <filter id="filter0_d_313_105" x="0" y="0" width="113" height="113" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
19
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
20
- <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"/>
21
- <feOffset dy="4"/>
22
- <feGaussianBlur stdDeviation="2"/>
23
- <feComposite in2="hardAlpha" operator="out"/>
24
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.65 0"/>
25
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_313_105"/>
26
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_313_105" result="shape"/>
27
- </filter>
28
- <clipPath id="clip0_313_105">
29
- <rect width="105" height="105" fill="white" transform="translate(4)"/>
30
- </clipPath>
31
- </defs>
17
+ </g>
18
+ <defs>
19
+ <filter id="filter0_d_313_105" x="0" y="0" width="113" height="113" 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 dy="4"/>
23
+ <feGaussianBlur stdDeviation="2"/>
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.65 0"/>
26
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_313_105"/>
27
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_313_105" result="shape"/>
28
+ </filter>
29
+ <clipPath id="clip0_313_105">
30
+ <rect width="105" height="105" fill="white" transform="translate(4)"/>
31
+ </clipPath>
32
+ </defs>
32
33
  </svg>
@@ -1,20 +1,21 @@
1
1
  <svg width="114" height="114" viewBox="0 0 114 114" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g filter="url(#filter0_d_261_534)">
3
- <path d="M57.0001 0.320007C27.9526 0.320007 4.32007 23.9525 4.32007 53C4.32007 82.0475 27.9526 105.68 57.0001 105.68C86.0476 105.68 109.68 82.0475 109.68 53C109.68 23.9525 86.0476 0.320007 57.0001 0.320007ZM57.0001 103.18C29.3301 103.18 6.82007 80.67 6.82007 53C6.82007 25.33 29.3301 2.82001 57.0001 2.82001C84.6701 2.82001 107.18 25.33 107.18 53C107.18 80.67 84.6701 103.18 57.0001 103.18Z"
4
- fill="white"/>
5
- <path d="M80.49 28.9H65.425C64.735 28.9 64.175 29.46 64.175 30.15V75.85C64.175 76.54 64.735 77.1 65.425 77.1H80.49C81.18 77.1 81.74 76.54 81.74 75.85V30.15C81.74 29.4575 81.18 28.9 80.49 28.9ZM79.24 74.6H66.675V31.4H79.24V74.6Z" fill="white"/>
6
- <path d="M48.575 28.9H33.51C32.82 28.9 32.26 29.46 32.26 30.15V75.85C32.26 76.54 32.82 77.1 33.51 77.1H48.575C49.265 77.1 49.825 76.54 49.825 75.85V30.15C49.825 29.4575 49.265 28.9 48.575 28.9ZM47.325 74.6H34.76V31.4H47.325V74.6Z" fill="white"/>
7
- </g>
8
- <defs>
9
- <filter id="filter0_d_261_534" x="0.320068" y="0.320007" width="113.36" height="113.36" 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 dy="4"/>
13
- <feGaussianBlur stdDeviation="2"/>
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.65 0"/>
16
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_261_534"/>
17
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_261_534" result="shape"/>
18
- </filter>
19
- </defs>
2
+ <g filter="url(#filter0_d_261_534)">
3
+ <path
4
+ d="M57.0001 0.320007C27.9526 0.320007 4.32007 23.9525 4.32007 53C4.32007 82.0475 27.9526 105.68 57.0001 105.68C86.0476 105.68 109.68 82.0475 109.68 53C109.68 23.9525 86.0476 0.320007 57.0001 0.320007ZM57.0001 103.18C29.3301 103.18 6.82007 80.67 6.82007 53C6.82007 25.33 29.3301 2.82001 57.0001 2.82001C84.6701 2.82001 107.18 25.33 107.18 53C107.18 80.67 84.6701 103.18 57.0001 103.18Z"
5
+ fill="white"/>
6
+ <path d="M80.49 28.9H65.425C64.735 28.9 64.175 29.46 64.175 30.15V75.85C64.175 76.54 64.735 77.1 65.425 77.1H80.49C81.18 77.1 81.74 76.54 81.74 75.85V30.15C81.74 29.4575 81.18 28.9 80.49 28.9ZM79.24 74.6H66.675V31.4H79.24V74.6Z" fill="white"/>
7
+ <path d="M48.575 28.9H33.51C32.82 28.9 32.26 29.46 32.26 30.15V75.85C32.26 76.54 32.82 77.1 33.51 77.1H48.575C49.265 77.1 49.825 76.54 49.825 75.85V30.15C49.825 29.4575 49.265 28.9 48.575 28.9ZM47.325 74.6H34.76V31.4H47.325V74.6Z" fill="white"/>
8
+ </g>
9
+ <defs>
10
+ <filter id="filter0_d_261_534" x="0.320068" y="0.320007" width="113.36" height="113.36" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
11
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
12
+ <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"/>
13
+ <feOffset dy="4"/>
14
+ <feGaussianBlur stdDeviation="2"/>
15
+ <feComposite in2="hardAlpha" operator="out"/>
16
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.65 0"/>
17
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_261_534"/>
18
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_261_534" result="shape"/>
19
+ </filter>
20
+ </defs>
20
21
  </svg>
@@ -1,20 +1,22 @@
1
1
  <svg width="114" height="114" viewBox="0 0 114 114" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g filter="url(#filter0_d_261_530)">
3
- <path d="M57.0001 0.320007C27.9526 0.320007 4.32007 23.9525 4.32007 53C4.32007 82.0475 27.9526 105.68 57.0001 105.68C86.0476 105.68 109.68 82.0475 109.68 53C109.68 23.9525 86.0476 0.320007 57.0001 0.320007ZM57.0001 103.18C29.3301 103.18 6.82007 80.67 6.82007 53C6.82007 25.33 29.3301 2.82001 57.0001 2.82001C84.6701 2.82001 107.18 25.33 107.18 53C107.18 80.67 84.6701 103.18 57.0001 103.18Z"
4
- fill="white"/>
5
- <path d="M81.9476 51.9175L43.6801 29.825C43.2926 29.6025 42.8176 29.6025 42.4301 29.825C42.0426 30.0475 41.8051 30.46 41.8051 30.9075V75.0925C41.8051 75.54 42.0426 75.9525 42.4301 76.175C42.6226 76.2875 42.8401 76.3425 43.0551 76.3425C43.2701 76.3425 43.4876 76.2875 43.6801 76.175L81.9451 54.0825C82.3326 53.86 82.5701 53.4475 82.5701 53C82.5701 52.5525 82.3326 52.14 81.9476 51.9175ZM44.3051 72.9275V33.0725L78.8226 53L44.3051 72.9275Z"
6
- fill="white"/>
7
- </g>
8
- <defs>
9
- <filter id="filter0_d_261_530" x="0.320068" y="0.320007" width="113.36" height="113.36" 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 dy="4"/>
13
- <feGaussianBlur stdDeviation="2"/>
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.65 0"/>
16
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_261_530"/>
17
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_261_530" result="shape"/>
18
- </filter>
19
- </defs>
2
+ <g filter="url(#filter0_d_261_530)">
3
+ <path
4
+ d="M57.0001 0.320007C27.9526 0.320007 4.32007 23.9525 4.32007 53C4.32007 82.0475 27.9526 105.68 57.0001 105.68C86.0476 105.68 109.68 82.0475 109.68 53C109.68 23.9525 86.0476 0.320007 57.0001 0.320007ZM57.0001 103.18C29.3301 103.18 6.82007 80.67 6.82007 53C6.82007 25.33 29.3301 2.82001 57.0001 2.82001C84.6701 2.82001 107.18 25.33 107.18 53C107.18 80.67 84.6701 103.18 57.0001 103.18Z"
5
+ fill="white"/>
6
+ <path
7
+ d="M81.9476 51.9175L43.6801 29.825C43.2926 29.6025 42.8176 29.6025 42.4301 29.825C42.0426 30.0475 41.8051 30.46 41.8051 30.9075V75.0925C41.8051 75.54 42.0426 75.9525 42.4301 76.175C42.6226 76.2875 42.8401 76.3425 43.0551 76.3425C43.2701 76.3425 43.4876 76.2875 43.6801 76.175L81.9451 54.0825C82.3326 53.86 82.5701 53.4475 82.5701 53C82.5701 52.5525 82.3326 52.14 81.9476 51.9175ZM44.3051 72.9275V33.0725L78.8226 53L44.3051 72.9275Z"
8
+ fill="white"/>
9
+ </g>
10
+ <defs>
11
+ <filter id="filter0_d_261_530" x="0.320068" y="0.320007" width="113.36" height="113.36" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
12
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
13
+ <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"/>
14
+ <feOffset dy="4"/>
15
+ <feGaussianBlur stdDeviation="2"/>
16
+ <feComposite in2="hardAlpha" operator="out"/>
17
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.65 0"/>
18
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_261_530"/>
19
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_261_530" result="shape"/>
20
+ </filter>
21
+ </defs>
20
22
  </svg>