[Claude Code] After prompt #0

This commit is contained in:
2025-11-25 17:49:10 +08:00
parent 48ee6442b3
commit e272dc5e79
50 changed files with 2463 additions and 549 deletions

View File

@@ -19,7 +19,7 @@ CREATE TABLE `tb_achievement` (
`description` VARCHAR(500) DEFAULT NULL COMMENT '成就描述', `description` VARCHAR(500) DEFAULT NULL COMMENT '成就描述',
`icon` VARCHAR(255) DEFAULT NULL COMMENT '成就图标URL', `icon` VARCHAR(255) DEFAULT NULL COMMENT '成就图标URL',
`type` INT DEFAULT 1 COMMENT '成就类型1-勋章 2-等级', `type` INT DEFAULT 1 COMMENT '成就类型1-勋章 2-等级',
`level` INT DEFAULT 1 COMMENT '成就等级1-铜牌 2-银牌 3-金牌 4-钻石', `level` FLOAT DEFAULT 1 COMMENT '成就等级1-铜牌 2-银牌 3-金牌 4-钻石',
`condition_type` INT NOT NULL COMMENT '触发条件类型1-学习时长 2-资源数量 3-课程数量 4-连续登录 5-收藏数量 6-任务数量 7-积分数量 8-评论数量 9-章节数量 10-累计登录', `condition_type` INT NOT NULL COMMENT '触发条件类型1-学习时长 2-资源数量 3-课程数量 4-连续登录 5-收藏数量 6-任务数量 7-积分数量 8-评论数量 9-章节数量 10-累计登录',
`condition_value` INT NOT NULL COMMENT '条件值(达成所需的数值)', `condition_value` INT NOT NULL COMMENT '条件值(达成所需的数值)',
`points` INT DEFAULT 0 COMMENT '获得积分奖励', `points` INT DEFAULT 0 COMMENT '获得积分奖励',

View File

@@ -36,21 +36,87 @@ INSERT INTO `tb_sys_config` (`id`, `config_key`, `config_name`, `config_value`,
-- ===================================================== -- =====================================================
-- V1段初学者 (0-10小时每2小时一级)
INSERT INTO `tb_achievement` (`id`, `achievement_id`, `name`,`icon`, `description`, `type`, `level`, `condition_type`, `condition_value`, `points`, `order_num`, `deleted`) VALUES INSERT INTO `tb_achievement` (`id`, `achievement_id`, `name`,`icon`, `description`, `type`, `level`, `condition_type`, `condition_value`, `points`, `order_num`, `deleted`) VALUES
('ACH001', 'learning_time_l1', '初学者', 'v1-icon.svg', '累计学习时长达到10小时', 1, 1, 1, 10*60*60, 10, 1, 0), ('ACH001', 'learning_time_l1_1', '初学者 I', 'v1-icon.svg', '开始学习之旅', 2, 1.1, 1, 0, 5, 1, 0),
('ACH002', 'learning_time_l2', '学者', 'v2-icon.svg', '累计学习时长达到50小时', 1, 2, 1, 50*60*60, 50, 2, 0), ('ACH002', 'learning_time_l1_2', '学者 II', 'v1-icon.svg', '累计学习时长达到2小时', 2, 1.2, 1, 2*60*60, 10, 2, 0),
('ACH003', 'learning_time_l3', '学习达人', 'v3-icon.svg', '累计学习时长达到100小时', 1, 3, 1, 100*60*60, 100, 3, 0), ('ACH003', 'learning_time_l1_3', '初学者 III', 'v1-icon.svg', '累计学习时长达到4小时', 2, 1.3, 1, 4*60*60, 15, 3, 0),
('ACH004', 'learning_time_l4', '学习狂人', 'v4-icon.svg', '累计学习时长达到500小时', 1, 4, 1, 500*60*60, 500, 4, 0), ('ACH004', 'learning_time_l1_4', '初学者 IV', 'v1-icon.svg', '累计学习时长达到6小时', 2, 1.4, 1, 6*60*60, 20, 4, 0),
('ACH005', 'learning_time_l5', '学习大师', 'v5-icon.svg', '累计学习时长达到1000小时', 1, 5, 1, 1000*60*60, 1000, 5, 0), ('ACH005', 'learning_time_l1_5', '初学者 V', 'v1-icon.svg', '累计学习时长达到10小时', 2, 1.5, 1, 10*60*60, 25, 5, 0),
('ACH006', 'learning_time_l6', '学习宗师', 'v6-icon.svg', '累计学习时长达到2000小时', 1, 6, 1, 2000*60*60, 2000, 6, 0);
-- V2段勤学者 (10-30小时每4小时一级)
('ACH006', 'learning_time_l2_1', '勤学者 I', 'v2-icon.svg', '累计学习时长达到14小时', 2, 2.1, 1, 14*60*60, 30, 6, 0),
('ACH007', 'learning_time_l2_2', '勤学者 II', 'v2-icon.svg', '累计学习时长达到18小时', 2, 2.2, 1, 18*60*60, 35, 7, 0),
('ACH008', 'learning_time_l2_3', '勤学者 III', 'v2-icon.svg', '累计学习时长达到22小时', 2, 2.3, 1, 22*60*60, 40, 8, 0),
('ACH009', 'learning_time_l2_4', '勤学者 IV', 'v2-icon.svg', '累计学习时长达到26小时', 2, 2.4, 1, 26*60*60, 45, 9, 0),
('ACH010', 'learning_time_l2_5', '勤学者 V', 'v2-icon.svg', '累计学习时长达到30小时', 2, 2.5, 1, 30*60*60, 50, 10, 0),
-- V3段学习达人 (30-100小时每14小时一级)
('ACH011', 'learning_time_l3_1', '学习达人 I', 'v3-icon.svg', '累计学习时长达到44小时', 2, 3.1, 1, 44*60*60, 60, 11, 0),
('ACH012', 'learning_time_l3_2', '学习达人 II', 'v3-icon.svg', '累计学习时长达到58小时', 2, 3.2, 1, 58*60*60, 70, 12, 0),
('ACH013', 'learning_time_l3_3', '学习达人 III', 'v3-icon.svg', '累计学习时长达到72小时', 2, 3.3, 1, 72*60*60, 80, 13, 0),
('ACH014', 'learning_time_l3_4', '学习达人 IV', 'v3-icon.svg', '累计学习时长达到86小时', 2, 3.4, 1, 86*60*60, 90, 14, 0),
('ACH015', 'learning_time_l3_5', '学习达人 V', 'v3-icon.svg', '累计学习时长达到100小时', 2, 3.5, 1, 100*60*60, 100, 15, 0),
-- V4段学习狂人 (100-300小时每40小时一级)
('ACH016', 'learning_time_l4_1', '学习狂人 I', 'v4-icon.svg', '累计学习时长达到140小时', 2, 4.1, 1, 140*60*60, 120, 16, 0),
('ACH017', 'learning_time_l4_2', '学习狂人 II', 'v4-icon.svg', '累计学习时长达到180小时', 2, 4.2, 1, 180*60*60, 140, 17, 0),
('ACH018', 'learning_time_l4_3', '学习狂人 III', 'v4-icon.svg', '累计学习时长达到220小时', 2, 4.3, 1, 220*60*60, 160, 18, 0),
('ACH019', 'learning_time_l4_4', '学习狂人 IV', 'v4-icon.svg', '累计学习时长达到260小时', 2, 4.4, 1, 260*60*60, 180, 19, 0),
('ACH020', 'learning_time_l4_5', '学习狂人 V', 'v4-icon.svg', '累计学习时长达到300小时', 2, 4.5, 1, 300*60*60, 200, 20, 0),
-- V5段学习大师 (300-1000小时每140小时一级)
('ACH021', 'learning_time_l5_1', '学习大师 I', 'v5-icon.svg', '累计学习时长达到440小时', 2, 5.1, 1, 440*60*60, 250, 21, 0),
('ACH022', 'learning_time_l5_2', '学习大师 II', 'v5-icon.svg', '累计学习时长达到580小时', 2, 5.2, 1, 580*60*60, 300, 22, 0),
('ACH023', 'learning_time_l5_3', '学习大师 III', 'v5-icon.svg', '累计学习时长达到720小时', 2, 5.3, 1, 720*60*60, 350, 23, 0),
('ACH024', 'learning_time_l5_4', '学习大师 IV', 'v5-icon.svg', '累计学习时长达到860小时', 2, 5.4, 1, 860*60*60, 400, 24, 0),
('ACH025', 'learning_time_l5_5', '学习大师 V', 'v5-icon.svg', '累计学习时长达到1000小时', 2, 5.5, 1, 1000*60*60, 500, 25, 0),
-- V6段学习宗师 (1000-2000小时每200小时一级)
('ACH026', 'learning_time_l6_1', '学习宗师 I', 'v6-icon.svg', '累计学习时长达到1200小时', 2, 6.1, 1, 1200*60*60, 600, 26, 0),
('ACH027', 'learning_time_l6_2', '学习宗师 II', 'v6-icon.svg', '累计学习时长达到1400小时', 2, 6.2, 1, 1400*60*60, 700, 27, 0),
('ACH028', 'learning_time_l6_3', '学习宗师 III', 'v6-icon.svg', '累计学习时长达到1600小时', 2, 6.3, 1, 1600*60*60, 800, 28, 0),
('ACH029', 'learning_time_l6_4', '学习宗师 IV', 'v6-icon.svg', '累计学习时长达到1800小时', 2, 6.4, 1, 1800*60*60, 900, 29, 0),
('ACH030', 'learning_time_l6_5', '学习宗师 V', 'v6-icon.svg', '累计学习时长达到2000小时', 2, 6.5, 1, 2000*60*60, 1000, 30, 0);
-- 为所有成就创建资源权限
INSERT INTO `tb_resource_permission` (id, resource_type, resource_id, dept_id, role_id, can_read, can_write, can_execute, creator, create_time) VALUES INSERT INTO `tb_resource_permission` (id, resource_type, resource_id, dept_id, role_id, can_read, can_write, can_execute, creator, create_time) VALUES
('perm_achievement_001', 6, 'learning_time_l1', NULL, NULL, 1, 0, 0, '1', now()), -- V1段权限
('perm_achievement_002', 6, 'learning_time_l2', NULL, NULL, 1, 0, 0, '1', now()), ('perm_achievement_001', 6, 'learning_time_l1_1', NULL, NULL, 1, 0, 0, '1', now()),
('perm_achievement_003', 6, 'learning_time_l3', NULL, NULL, 1, 0, 0, '1', now()), ('perm_achievement_002', 6, 'learning_time_l1_2', NULL, NULL, 1, 0, 0, '1', now()),
('perm_achievement_004', 6, 'learning_time_l4', NULL, NULL, 1, 0, 0, '1', now()), ('perm_achievement_003', 6, 'learning_time_l1_3', NULL, NULL, 1, 0, 0, '1', now()),
('perm_achievement_005', 6, 'learning_time_l5', NULL, NULL, 1, 0, 0, '1', now()), ('perm_achievement_004', 6, 'learning_time_l1_4', NULL, NULL, 1, 0, 0, '1', now()),
('perm_achievement_006', 6, 'learning_time_l6', NULL, NULL, 1, 0, 0, '1', now()); ('perm_achievement_005', 6, 'learning_time_l1_5', NULL, NULL, 1, 0, 0, '1', now()),
-- V2段权限
('perm_achievement_006', 6, 'learning_time_l2_1', NULL, NULL, 1, 0, 0, '1', now()),
('perm_achievement_007', 6, 'learning_time_l2_2', NULL, NULL, 1, 0, 0, '1', now()),
('perm_achievement_008', 6, 'learning_time_l2_3', NULL, NULL, 1, 0, 0, '1', now()),
('perm_achievement_009', 6, 'learning_time_l2_4', NULL, NULL, 1, 0, 0, '1', now()),
('perm_achievement_010', 6, 'learning_time_l2_5', NULL, NULL, 1, 0, 0, '1', now()),
-- V3段权限
('perm_achievement_011', 6, 'learning_time_l3_1', NULL, NULL, 1, 0, 0, '1', now()),
('perm_achievement_012', 6, 'learning_time_l3_2', NULL, NULL, 1, 0, 0, '1', now()),
('perm_achievement_013', 6, 'learning_time_l3_3', NULL, NULL, 1, 0, 0, '1', now()),
('perm_achievement_014', 6, 'learning_time_l3_4', NULL, NULL, 1, 0, 0, '1', now()),
('perm_achievement_015', 6, 'learning_time_l3_5', NULL, NULL, 1, 0, 0, '1', now()),
-- V4段权限
('perm_achievement_016', 6, 'learning_time_l4_1', NULL, NULL, 1, 0, 0, '1', now()),
('perm_achievement_017', 6, 'learning_time_l4_2', NULL, NULL, 1, 0, 0, '1', now()),
('perm_achievement_018', 6, 'learning_time_l4_3', NULL, NULL, 1, 0, 0, '1', now()),
('perm_achievement_019', 6, 'learning_time_l4_4', NULL, NULL, 1, 0, 0, '1', now()),
('perm_achievement_020', 6, 'learning_time_l4_5', NULL, NULL, 1, 0, 0, '1', now()),
-- V5段权限
('perm_achievement_021', 6, 'learning_time_l5_1', NULL, NULL, 1, 0, 0, '1', now()),
('perm_achievement_022', 6, 'learning_time_l5_2', NULL, NULL, 1, 0, 0, '1', now()),
('perm_achievement_023', 6, 'learning_time_l5_3', NULL, NULL, 1, 0, 0, '1', now()),
('perm_achievement_024', 6, 'learning_time_l5_4', NULL, NULL, 1, 0, 0, '1', now()),
('perm_achievement_025', 6, 'learning_time_l5_5', NULL, NULL, 1, 0, 0, '1', now()),
-- V6段权限
('perm_achievement_026', 6, 'learning_time_l6_1', NULL, NULL, 1, 0, 0, '1', now()),
('perm_achievement_027', 6, 'learning_time_l6_2', NULL, NULL, 1, 0, 0, '1', now()),
('perm_achievement_028', 6, 'learning_time_l6_3', NULL, NULL, 1, 0, 0, '1', now()),
('perm_achievement_029', 6, 'learning_time_l6_4', NULL, NULL, 1, 0, 0, '1', now()),
('perm_achievement_030', 6, 'learning_time_l6_5', NULL, NULL, 1, 0, 0, '1', now());
-- 为默认标签创建超级管理员权限(文章标签) -- 为默认标签创建超级管理员权限(文章标签)
INSERT INTO `tb_resource_permission` (id, resource_type, resource_id, dept_id, role_id, can_read, can_write, can_execute, creator, create_time) VALUES INSERT INTO `tb_resource_permission` (id, resource_type, resource_id, dept_id, role_id, can_read, can_write, can_execute, creator, create_time) VALUES

View File

@@ -50,7 +50,7 @@ public interface AchievementMapper extends BaseMapper<TbAchievement> {
* @param userDeptRoles 用户部门角色列表 * @param userDeptRoles 用户部门角色列表
* @return List<TbAchievement> 成就列表 * @return List<TbAchievement> 成就列表
*/ */
List<TbAchievement> selectByTypeAndLevel(@Param("type") Integer type, @Param("level") Integer level, @Param("userDeptRoles") List<UserDeptRoleVO> userDeptRoles); List<TbAchievement> selectByTypeAndLevel(@Param("type") Integer type, @Param("level") Float level, @Param("userDeptRoles") List<UserDeptRoleVO> userDeptRoles);
/** /**
* @description 根据条件类型查询成就列表 * @description 根据条件类型查询成就列表

View File

@@ -765,7 +765,7 @@ public class ACHAchievementServiceImpl implements AchievementService {
if (result > 0) { if (result > 0) {
updateProgressToCompleted(userID, achievement.getAchievementID()); updateProgressToCompleted(userID, achievement.getAchievementID());
// 检查是否需要更新用户等级(learning_time开头的成就) // 检查是否需要更新用户等级(等级类型成就)
updateUserLevelIfNeeded(userID, achievement); updateUserLevelIfNeeded(userID, achievement);
return userAchievement; return userAchievement;
@@ -835,15 +835,15 @@ public class ACHAchievementServiceImpl implements AchievementService {
} }
/** /**
* 检查并更新用户等级(仅针对learning_time开头的成就) * 检查并更新用户等级(仅针对等级类型的成就)
* @param userID 用户ID * @param userID 用户ID
* @param achievement 成就对象 * @param achievement 成就对象
*/ */
private void updateUserLevelIfNeeded(String userID, TbAchievement achievement) { private void updateUserLevelIfNeeded(String userID, TbAchievement achievement) {
try { try {
// 检查成就ID是否以learning_time开头 // 检查成就type是否是2
if (achievement == null || achievement.getAchievementID() == null || if (achievement == null || achievement.getAchievementID() == null ||
!achievement.getAchievementID().startsWith("learning_time")) { achievement.getType() != 2) {
return; return;
} }

View File

@@ -60,7 +60,7 @@ public class TbSysUserInfo extends BaseDTO {
* @author yslg * @author yslg
* @since 2025-10-18 * @since 2025-10-18
*/ */
private Integer level; private Float level;
/** /**
* @description 身份证号 * @description 身份证号
@@ -124,11 +124,11 @@ public class TbSysUserInfo extends BaseDTO {
this.fullName = fullName; this.fullName = fullName;
} }
public Integer getLevel() { public Float getLevel() {
return level; return level;
} }
public void setLevel(Integer level) { public void setLevel(Float level) {
this.level = level; this.level = level;
} }

View File

@@ -41,7 +41,7 @@ public class TbAchievement extends BaseDTO {
/** /**
* @description 成就等级 * @description 成就等级
*/ */
private Integer level; private Float level;
/** /**
* @description 获取条件类型1学习时长 2资源数量 3课程数量 4连续学习天数 * @description 获取条件类型1学习时长 2资源数量 3课程数量 4连续学习天数
@@ -113,11 +113,11 @@ public class TbAchievement extends BaseDTO {
this.type = type; this.type = type;
} }
public Integer getLevel() { public Float getLevel() {
return level; return level;
} }
public void setLevel(Integer level) { public void setLevel(Float level) {
this.level = level; this.level = level;
} }

View File

@@ -31,7 +31,7 @@ public class TbUserPoints extends BaseDTO {
/** /**
* @description 用户等级 * @description 用户等级
*/ */
private Integer level; private Float level;
public String getUserID() { public String getUserID() {
return userID; return userID;
@@ -57,11 +57,11 @@ public class TbUserPoints extends BaseDTO {
this.currentPoints = currentPoints; this.currentPoints = currentPoints;
} }
public Integer getLevel() { public Float getLevel() {
return level; return level;
} }
public void setLevel(Integer level) { public void setLevel(Float level) {
this.level = level; this.level = level;
} }

View File

@@ -15,7 +15,7 @@ public class UserVO {
private String familyName; private String familyName;
private String givenName; private String givenName;
private String fullName; private String fullName;
private Integer level; private Float level;
private String idCard; private String idCard;
private String address; private String address;
private String deptID; private String deptID;
@@ -132,10 +132,10 @@ public class UserVO {
public void setRoleName(String roleName) { public void setRoleName(String roleName) {
this.roleName = roleName; this.roleName = roleName;
} }
public Integer getLevel() { public Float getLevel() {
return level; return level;
} }
public void setLevel(Integer level) { public void setLevel(Float level) {
this.level = level; this.level = level;
} }
public Date getCreateTime() { public Date getCreateTime() {

View File

@@ -0,0 +1,349 @@
<svg width="142" height="71" viewBox="0 0 142 71" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.5">
<g filter="url(#filter0_i_905_10605)">
<path d="M69.9485 1.8979C70.352 1.10714 71.4819 1.10714 71.8854 1.8979L74.7122 7.43756C74.8702 7.74716 75.1667 7.96257 75.5099 8.01715L81.652 8.9937C82.5287 9.1331 82.8779 10.2077 82.2505 10.8358L77.8555 15.2361C77.6099 15.482 77.4966 15.8305 77.5508 16.1738L78.52 22.3171C78.6584 23.194 77.7443 23.8581 76.953 23.4555L71.41 20.6354C71.1002 20.4778 70.7338 20.4778 70.424 20.6354L64.8809 23.4555C64.0897 23.8581 63.1756 23.194 63.314 22.3171L64.2832 16.1738C64.3374 15.8305 64.2241 15.482 63.9785 15.2361L59.5835 10.8358C58.9561 10.2077 59.3053 9.1331 60.182 8.9937L66.3241 8.01715C66.6673 7.96257 66.9638 7.74716 67.1218 7.43756L69.9485 1.8979Z" fill="url(#paint0_linear_905_10605)"/>
</g>
<path d="M69.9485 1.8979C70.352 1.10714 71.4819 1.10714 71.8854 1.8979L74.7122 7.43756C74.8702 7.74716 75.1667 7.96257 75.5099 8.01715L81.652 8.9937C82.5287 9.1331 82.8779 10.2077 82.2505 10.8358L77.8555 15.2361C77.6099 15.482 77.4966 15.8305 77.5508 16.1738L78.52 22.3171C78.6584 23.194 77.7443 23.8581 76.953 23.4555L71.41 20.6354C71.1002 20.4778 70.7338 20.4778 70.424 20.6354L64.8809 23.4555C64.0897 23.8581 63.1756 23.194 63.314 22.3171L64.2832 16.1738C64.3374 15.8305 64.2241 15.482 63.9785 15.2361L59.5835 10.8358C58.9561 10.2077 59.3053 9.1331 60.182 8.9937L66.3241 8.01715C66.6673 7.96257 66.9638 7.74716 67.1218 7.43756L69.9485 1.8979Z" fill="url(#paint1_linear_905_10605)"/>
<path d="M69.9498 1.89825C70.3533 1.10749 71.4832 1.10748 71.8867 1.89825L74.7135 7.43791C74.8714 7.74751 75.1679 7.96292 75.5112 8.0175L81.6532 8.99405C82.53 9.13345 82.8792 10.208 82.2518 10.8362L77.8568 15.2364C77.6111 15.4823 77.4979 15.8309 77.5521 16.1742L78.5213 22.3174C78.6597 23.1943 77.7456 23.8584 76.9543 23.4559L71.4113 20.6357C71.1015 20.4781 70.735 20.4781 70.4252 20.6357L64.8822 23.4559C64.091 23.8584 63.1769 23.1943 63.3152 22.3174L64.2845 16.1742C64.3386 15.8309 64.2254 15.4823 63.9798 15.2364L59.5847 10.8362C58.9574 10.208 59.3065 9.13345 60.1833 8.99405L66.3253 8.0175C66.6686 7.96292 66.9651 7.74751 67.1231 7.43791L69.9498 1.89825Z" fill="url(#paint2_linear_905_10605)"/>
<path d="M69.9498 1.89825C70.3533 1.10749 71.4832 1.10748 71.8867 1.89825L74.7135 7.43791C74.8714 7.74751 75.1679 7.96292 75.5112 8.0175L81.6532 8.99405C82.53 9.13345 82.8792 10.208 82.2518 10.8362L77.8568 15.2364C77.6111 15.4823 77.4979 15.8309 77.5521 16.1742L78.5213 22.3174C78.6597 23.1943 77.7456 23.8584 76.9543 23.4559L71.4113 20.6357C71.1015 20.4781 70.735 20.4781 70.4252 20.6357L64.8822 23.4559C64.091 23.8584 63.1769 23.1943 63.3152 22.3174L64.2845 16.1742C64.3386 15.8309 64.2254 15.4823 63.9798 15.2364L59.5847 10.8362C58.9574 10.208 59.3065 9.13345 60.1833 8.99405L66.3253 8.0175C66.6686 7.96292 66.9651 7.74751 67.1231 7.43791L69.9498 1.89825Z" fill="url(#paint3_linear_905_10605)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M74.3907 7.60264L71.5639 2.06297C71.2949 1.5358 70.5416 1.5358 70.2726 2.06297L67.4459 7.60264C67.2352 8.01544 66.8399 8.30265 66.3822 8.37542L60.2402 9.35197C59.6557 9.4449 59.4229 10.1613 59.8412 10.58L64.2362 14.9803C64.5637 15.3082 64.7147 15.7729 64.6425 16.2307L63.6732 22.3739C63.581 22.9585 64.1904 23.4012 64.7179 23.1329L70.2609 20.3127C70.6739 20.1026 71.1626 20.1026 71.5756 20.3127L77.1187 23.1329C77.6461 23.4012 78.2555 22.9585 78.1633 22.3739L77.1941 16.2307C77.1218 15.7729 77.2728 15.3082 77.6003 14.9803L81.9954 10.58C82.4136 10.1613 82.1808 9.4449 81.5963 9.35197L75.4543 8.37542C74.9966 8.30265 74.6013 8.01544 74.3907 7.60264ZM71.8867 1.89825C71.4832 1.10748 70.3533 1.10749 69.9498 1.89825L67.1231 7.43791C66.9651 7.74751 66.6686 7.96292 66.3253 8.0175L60.1833 8.99405C59.3065 9.13345 58.9574 10.208 59.5847 10.8362L63.9798 15.2364C64.2254 15.4823 64.3386 15.8309 64.2845 16.1742L63.3152 22.3174C63.1769 23.1943 64.091 23.8584 64.8822 23.4559L70.4252 20.6357C70.735 20.4781 71.1015 20.4781 71.4113 20.6357L76.9543 23.4559C77.7456 23.8584 78.6597 23.1943 78.5213 22.3174L77.5521 16.1742C77.4979 15.8309 77.6111 15.4823 77.8568 15.2364L82.2518 10.8362C82.8792 10.208 82.53 9.13345 81.6532 8.99405L75.5112 8.0175C75.1679 7.96292 74.8714 7.74751 74.7135 7.43791L71.8867 1.89825Z" fill="url(#paint4_linear_905_10605)"/>
<path d="M70.4464 7.33671C70.6557 6.97487 71.1781 6.97487 71.3875 7.33671L73.0431 10.1982C73.12 10.3312 73.2498 10.4255 73.4001 10.4576L76.6331 11.1479C77.0419 11.2352 77.2034 11.732 76.9239 12.0429L74.7141 14.5017C74.6114 14.616 74.5618 14.7685 74.5777 14.9214L74.9203 18.2095C74.9636 18.6253 74.541 18.9324 74.1589 18.7627L71.1376 17.4208C70.9971 17.3584 70.8368 17.3584 70.6963 17.4208L67.675 18.7627C67.2929 18.9324 66.8703 18.6253 66.9136 18.2095L67.2561 14.9214C67.2721 14.7685 67.2225 14.616 67.1198 14.5017L64.9099 12.0429C64.6305 11.732 64.7919 11.2352 65.2008 11.1479L68.4338 10.4576C68.5841 10.4255 68.7138 10.3312 68.7908 10.1982L70.4464 7.33671Z" fill="url(#paint5_linear_905_10605)"/>
<path d="M77.8189 11.5965C71.2601 17.7944 65.4023 15.053 63.2933 12.9076C60.0852 8.13998 67.1252 11.9541 73.3632 10.2854C78.3536 8.95044 78.413 10.6032 77.8189 11.5965Z" fill="url(#paint6_linear_905_10605)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M70.1747 3.13191C70.3087 3.19968 70.3623 3.36321 70.2946 3.49716L69.526 5.0161C69.4583 5.15005 69.2947 5.2037 69.1608 5.13592C69.0268 5.06815 68.9732 4.90462 69.041 4.77068L69.8095 3.25173C69.8773 3.11778 70.0408 3.06414 70.1747 3.13191Z" fill="url(#paint7_linear_905_10605)"/>
<circle cx="60.7699" cy="9.69466" r="0.271812" fill="url(#paint8_linear_905_10605)"/>
<circle cx="68.9251" cy="5.52669" r="0.271812" fill="url(#paint9_linear_905_10605)"/>
<path d="M68.3218 8.33329C66.26 11.2538 66.9968 12.8439 67.623 13.2738C69.5246 14.1321 72.9895 9.06778 73.224 7.72761C73.4584 6.38744 70.899 4.68267 68.3218 8.33329Z" fill="url(#paint10_linear_905_10605)"/>
</g>
<g opacity="0.5">
<g opacity="0.8" filter="url(#filter1_i_905_10605)">
<path d="M115.56 16.4411C116.234 16.1554 116.948 16.7545 116.784 17.4682L115.283 23.9866C115.219 24.2661 115.292 24.5594 115.48 24.7759L119.865 29.8268C120.346 30.3798 119.996 31.244 119.267 31.3083L112.604 31.8952C112.318 31.9204 112.062 32.0806 111.914 32.3263L108.465 38.0578C108.088 38.6854 107.158 38.6203 106.871 37.9463L104.254 31.7907C104.142 31.5268 103.91 31.3325 103.631 31.2678L97.1144 29.7593C96.4009 29.5941 96.1754 28.6896 96.7278 28.2088L101.773 23.8175C101.99 23.6292 102.103 23.3489 102.078 23.0632L101.499 16.3994C101.436 15.6698 102.226 15.1758 102.854 15.5526L108.59 18.9943C108.836 19.1418 109.137 19.1629 109.401 19.051L115.56 16.4411Z" fill="url(#paint11_linear_905_10605)"/>
</g>
<path opacity="0.3" d="M115.56 16.4411C116.234 16.1554 116.948 16.7545 116.784 17.4682L115.283 23.9866C115.219 24.2661 115.292 24.5594 115.48 24.7759L119.865 29.8268C120.346 30.3798 119.996 31.244 119.267 31.3083L112.604 31.8952C112.318 31.9204 112.062 32.0806 111.914 32.3263L108.465 38.0578C108.088 38.6854 107.158 38.6203 106.871 37.9463L104.254 31.7907C104.142 31.5268 103.91 31.3325 103.631 31.2678L97.1144 29.7593C96.4009 29.5941 96.1754 28.6896 96.7278 28.2088L101.773 23.8175C101.99 23.6292 102.103 23.3489 102.078 23.0632L101.499 16.3994C101.436 15.6698 102.226 15.1758 102.854 15.5526L108.59 18.9943C108.836 19.1418 109.137 19.1629 109.401 19.051L115.56 16.4411Z" fill="url(#paint12_linear_905_10605)"/>
<path opacity="0.3" d="M115.216 16.5866C116.034 16.2402 116.899 16.9665 116.7 17.8316L115.305 23.8923C115.227 24.231 115.315 24.5866 115.543 24.849L119.621 29.5452C120.203 30.2155 119.779 31.2631 118.895 31.341L112.7 31.8867C112.354 31.9172 112.043 32.1114 111.864 32.4093L108.657 37.7383C108.2 38.4989 107.073 38.4201 106.725 37.6031L104.292 31.8798C104.156 31.5599 103.875 31.3244 103.536 31.246L97.4774 29.8433C96.6126 29.6431 96.3392 28.5468 97.0089 27.964L101.7 23.881C101.962 23.6528 102.1 23.3131 102.069 22.9668L101.531 16.7709C101.454 15.8865 102.413 15.2877 103.174 15.7445L108.507 18.9445C108.805 19.1233 109.17 19.1489 109.49 19.0133L115.216 16.5866Z" fill="url(#paint13_linear_905_10605)"/>
<path opacity="0.3" d="M115.216 16.5866C116.034 16.2402 116.899 16.9665 116.7 17.8316L115.305 23.8923C115.227 24.231 115.315 24.5866 115.543 24.849L119.621 29.5452C120.203 30.2155 119.779 31.2631 118.895 31.341L112.7 31.8867C112.354 31.9172 112.043 32.1114 111.864 32.4093L108.657 37.7383C108.2 38.4989 107.073 38.4201 106.725 37.6031L104.292 31.8798C104.156 31.5599 103.875 31.3244 103.536 31.246L97.4774 29.8433C96.6126 29.6431 96.3392 28.5468 97.0089 27.964L101.7 23.881C101.962 23.6528 102.1 23.3131 102.069 22.9668L101.531 16.7709C101.454 15.8865 102.413 15.2877 103.174 15.7445L108.507 18.9445C108.805 19.1233 109.17 19.1489 109.49 19.0133L115.216 16.5866Z" fill="url(#paint14_linear_905_10605)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M114.952 23.811L116.347 17.7503C116.48 17.1736 115.903 16.6894 115.358 16.9203L109.632 19.3469C109.205 19.5278 108.717 19.4937 108.32 19.2552L102.987 16.0553C102.48 15.7508 101.841 16.1499 101.892 16.7395L102.431 22.9354C102.471 23.3971 102.288 23.8502 101.938 24.1544L97.2468 28.2374C96.8004 28.6259 96.9826 29.3568 97.5592 29.4903L103.618 30.8929C104.07 30.9974 104.444 31.3115 104.625 31.738L107.059 37.4613C107.29 38.006 108.042 38.0585 108.347 37.5514L111.553 32.2224C111.792 31.8253 112.206 31.5664 112.668 31.5257L118.863 30.98C119.453 30.9281 119.735 30.2297 119.347 29.7828L115.27 25.0866C114.966 24.7367 114.848 24.2626 114.952 23.811ZM116.7 17.8316C116.899 16.9665 116.034 16.2402 115.216 16.5866L109.49 19.0133C109.17 19.1489 108.805 19.1233 108.507 18.9445L103.174 15.7445C102.413 15.2877 101.454 15.8865 101.531 16.7709L102.069 22.9668C102.1 23.3131 101.962 23.6528 101.7 23.881L97.0089 27.964C96.3392 28.5468 96.6126 29.6431 97.4774 29.8433L103.536 31.246C103.875 31.3244 104.156 31.5599 104.292 31.8798L106.725 37.6031C107.073 38.4201 108.2 38.4989 108.657 37.7383L111.864 32.4093C112.043 32.1114 112.354 31.9172 112.7 31.8867L118.895 31.341C119.779 31.2631 120.203 30.2155 119.621 29.5452L115.543 24.849C115.315 24.5866 115.227 24.231 115.305 23.8923L116.7 17.8316Z" fill="url(#paint15_linear_905_10605)"/>
<path d="M112.499 20.9283C112.715 20.8499 112.935 21.0345 112.896 21.261L112.233 25.0407C112.218 25.1239 112.24 25.2095 112.292 25.2762L114.651 28.3023C114.793 28.4836 114.685 28.7499 114.457 28.7821L110.658 29.3197C110.574 29.3315 110.499 29.3783 110.452 29.4483L108.303 32.6277C108.174 32.8182 107.888 32.7981 107.787 32.5916L106.102 29.1441C106.064 29.0682 105.997 29.0115 105.916 28.9881L102.228 27.927C102.007 27.8634 101.937 27.5846 102.103 27.4248L104.861 24.7566C104.921 24.6978 104.954 24.616 104.951 24.5315L104.821 20.6964C104.813 20.4666 105.057 20.3143 105.26 20.4221L108.65 22.2205C108.725 22.2601 108.813 22.2663 108.892 22.2374L112.499 20.9283Z" fill="url(#paint16_linear_905_10605)"/>
<path opacity="0.3" d="M115.011 29.0746C106.003 29.6066 103.278 23.7412 103.041 20.7421C103.648 15.0277 106.59 22.4747 112.441 25.2062C117.122 27.3913 116.105 28.6956 115.011 29.0746Z" fill="url(#paint17_linear_905_10605)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M114.596 17.676C114.655 17.814 114.591 17.9737 114.453 18.0328L112.888 18.7024C112.75 18.7614 112.591 18.6974 112.532 18.5594C112.472 18.4214 112.537 18.2616 112.675 18.2026L114.24 17.533C114.378 17.4739 114.537 17.538 114.596 17.676Z" fill="url(#paint18_linear_905_10605)"/>
<circle cx="103.173" cy="16.6588" r="0.271812" transform="rotate(40 103.173 16.6588)" fill="url(#paint19_linear_905_10605)"/>
<circle cx="112.099" cy="18.7076" r="0.271812" transform="rotate(40 112.099 18.7076)" fill="url(#paint20_linear_905_10605)"/>
<path opacity="0.3" d="M109.833 20.4695C106.376 21.3815 105.918 23.0732 106.122 23.805C107.027 25.6849 112.936 24.0326 113.977 23.1566C115.018 22.2807 114.154 19.3296 109.833 20.4695Z" fill="url(#paint21_linear_905_10605)"/>
</g>
<g opacity="0.5">
<g opacity="0.8" filter="url(#filter2_i_905_10605)">
<path d="M127.701 45.5657C128.034 44.9134 128.966 44.9134 129.299 45.5657L132.339 51.5238C132.47 51.7792 132.714 51.9569 132.997 52.0019L139.603 53.0523C140.327 53.1673 140.615 54.0538 140.097 54.572L135.37 59.3046C135.167 59.5074 135.074 59.795 135.119 60.0782L136.161 66.6854C136.275 67.4089 135.521 67.9568 134.868 67.6246L128.907 64.5915C128.651 64.4615 128.349 64.4615 128.093 64.5915L122.132 67.6246C121.479 67.9568 120.725 67.4089 120.839 66.6854L121.881 60.0782C121.926 59.795 121.833 59.5074 121.63 59.3046L116.903 54.572C116.385 54.0538 116.673 53.1673 117.397 53.0523L124.003 52.0019C124.286 51.9569 124.53 51.7792 124.661 51.5238L127.701 45.5657Z" fill="url(#paint22_linear_905_10605)"/>
</g>
<path opacity="0.3" d="M127.701 45.5657C128.034 44.9134 128.966 44.9134 129.299 45.5657L132.339 51.5238C132.47 51.7792 132.714 51.9569 132.997 52.0019L139.603 53.0523C140.327 53.1673 140.615 54.0538 140.097 54.572L135.37 59.3046C135.167 59.5074 135.074 59.795 135.119 60.0782L136.161 66.6854C136.275 67.4089 135.521 67.9568 134.868 67.6246L128.907 64.5915C128.651 64.4615 128.349 64.4615 128.093 64.5915L122.132 67.6246C121.479 67.9568 120.725 67.4089 120.839 66.6854L121.881 60.0782C121.926 59.795 121.833 59.5074 121.63 59.3046L116.903 54.572C116.385 54.0538 116.673 53.1673 117.397 53.0523L124.003 52.0019C124.286 51.9569 124.53 51.7792 124.661 51.5238L127.701 45.5657Z" fill="url(#paint23_linear_905_10605)"/>
<path opacity="0.3" d="M127.532 45.8978C127.935 45.107 129.065 45.107 129.469 45.8978L132.295 51.4374C132.453 51.747 132.75 51.9624 133.093 52.017L139.235 52.9936C140.112 53.133 140.461 54.2075 139.834 54.8357L135.439 59.2359C135.193 59.4818 135.08 59.8304 135.134 60.1737L136.103 66.3169C136.242 67.1938 135.328 67.858 134.536 67.4554L128.993 64.6352C128.684 64.4776 128.317 64.4776 128.007 64.6352L122.464 67.4554C121.673 67.858 120.759 67.1938 120.897 66.3169L121.866 60.1737C121.921 59.8304 121.807 59.4818 121.562 59.2359L117.167 54.8357C116.539 54.2075 116.889 53.133 117.765 52.9936L123.907 52.017C124.251 51.9624 124.547 51.747 124.705 51.4374L127.532 45.8978Z" fill="url(#paint24_linear_905_10605)"/>
<path opacity="0.3" d="M127.532 45.8978C127.935 45.107 129.065 45.107 129.469 45.8978L132.295 51.4374C132.453 51.747 132.75 51.9624 133.093 52.017L139.235 52.9936C140.112 53.133 140.461 54.2075 139.834 54.8357L135.439 59.2359C135.193 59.4818 135.08 59.8304 135.134 60.1737L136.103 66.3169C136.242 67.1938 135.328 67.858 134.536 67.4554L128.993 64.6352C128.684 64.4776 128.317 64.4776 128.007 64.6352L122.464 67.4554C121.673 67.858 120.759 67.1938 120.897 66.3169L121.866 60.1737C121.921 59.8304 121.807 59.4818 121.562 59.2359L117.167 54.8357C116.539 54.2075 116.889 53.133 117.765 52.9936L123.907 52.017C124.251 51.9624 124.547 51.747 124.705 51.4374L127.532 45.8978Z" fill="url(#paint25_linear_905_10605)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M131.973 51.6021L129.146 46.0625C128.877 45.5353 128.124 45.5353 127.855 46.0625L125.028 51.6021C124.817 52.0149 124.422 52.3022 123.964 52.3749L117.822 53.3515C117.238 53.4444 117.005 54.1608 117.423 54.5795L121.818 58.9798C122.146 59.3077 122.297 59.7724 122.224 60.2302L121.255 66.3734C121.163 66.958 121.772 67.4008 122.3 67.1324L127.843 64.3122C128.256 64.1021 128.745 64.1021 129.158 64.3122L134.701 67.1324C135.228 67.4008 135.838 66.958 135.745 66.3734L134.776 60.2302C134.704 59.7724 134.855 59.3077 135.182 58.9798L139.577 54.5795C139.996 54.1608 139.763 53.4444 139.178 53.3515L133.036 52.3749C132.579 52.3022 132.183 52.0149 131.973 51.6021ZM129.469 45.8978C129.065 45.107 127.935 45.107 127.532 45.8978L124.705 51.4374C124.547 51.747 124.251 51.9624 123.907 52.017L117.765 52.9936C116.889 53.133 116.539 54.2075 117.167 54.8357L121.562 59.2359C121.807 59.4818 121.921 59.8304 121.866 60.1737L120.897 66.3169C120.759 67.1938 121.673 67.858 122.464 67.4554L128.007 64.6352C128.317 64.4776 128.684 64.4776 128.993 64.6352L134.536 67.4554C135.328 67.858 136.242 67.1938 136.103 66.3169L135.134 60.1737C135.08 59.8304 135.193 59.4818 135.439 59.2359L139.834 54.8357C140.461 54.2075 140.112 53.133 139.235 52.9936L133.093 52.017C132.75 51.9624 132.453 51.747 132.295 51.4374L129.469 45.8978Z" fill="url(#paint26_linear_905_10605)"/>
<path d="M128.241 50.9707C128.356 50.7717 128.644 50.7717 128.759 50.9707L130.68 54.2922C130.723 54.3654 130.794 54.4172 130.877 54.4349L134.63 55.2362C134.854 55.2842 134.943 55.5574 134.79 55.7284L132.224 58.5825C132.168 58.6454 132.141 58.7293 132.149 58.8134L132.547 62.6301C132.571 62.8588 132.338 63.0276 132.128 62.9343L128.621 61.3767C128.544 61.3424 128.456 61.3424 128.379 61.3767L124.872 62.9343C124.661 63.0276 124.429 62.8588 124.453 62.6301L124.85 58.8134C124.859 58.7293 124.832 58.6454 124.775 58.5825L122.21 55.7284C122.057 55.5574 122.145 55.2842 122.37 55.2362L126.123 54.4349C126.206 54.4172 126.277 54.3654 126.319 54.2922L128.241 50.9707Z" fill="url(#paint27_linear_905_10605)"/>
<path opacity="0.3" d="M135.401 55.596C128.842 61.7939 122.984 59.0525 120.875 56.9071C117.667 52.1395 124.707 55.9536 130.945 54.2849C135.936 52.9499 135.995 54.6027 135.401 55.596Z" fill="url(#paint28_linear_905_10605)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M127.757 47.1314C127.891 47.1992 127.944 47.3627 127.877 47.4967L127.108 49.0156C127.04 49.1496 126.877 49.2032 126.743 49.1354C126.609 49.0677 126.555 48.9041 126.623 48.7702L127.392 47.2512C127.459 47.1173 127.623 47.0636 127.757 47.1314Z" fill="url(#paint29_linear_905_10605)"/>
<circle cx="118.353" cy="53.6942" r="0.271812" fill="url(#paint30_linear_905_10605)"/>
<circle cx="126.507" cy="49.5267" r="0.271812" fill="url(#paint31_linear_905_10605)"/>
<path opacity="0.3" d="M125.904 52.3333C123.842 55.2538 124.579 56.8439 125.205 57.2738C127.107 58.1321 130.572 53.0678 130.806 51.7276C131.04 50.3874 128.481 48.6827 125.904 52.3333Z" fill="url(#paint32_linear_905_10605)"/>
</g>
<g opacity="0.5">
<g filter="url(#filter3_i_905_10605)">
<path d="M24.3011 18.2322C24.1019 17.3671 24.9675 16.6408 25.7849 16.9872L31.5111 19.4139C31.8311 19.5495 32.1967 19.5239 32.4948 19.3451L37.8276 16.1451C38.5888 15.6883 39.547 16.2871 39.4701 17.1715L38.9318 23.3674C38.9017 23.7137 39.039 24.0534 39.3012 24.2816L43.9924 28.3646C44.6621 28.9474 44.3887 30.0437 43.5239 30.2439L37.4649 31.6466C37.1263 31.725 36.8455 31.9605 36.7095 32.2804L34.2761 38.0037C33.9287 38.8207 32.8016 38.8995 32.3439 38.1389L29.1376 32.8099C28.9584 32.512 28.6476 32.3178 28.3014 32.2873L22.1062 31.7416C21.2218 31.6637 20.7986 30.6161 21.3806 29.9458L25.458 25.2496C25.6859 24.9872 25.7745 24.6316 25.6965 24.2929L24.3011 18.2322Z" fill="url(#paint33_linear_905_10605)"/>
</g>
<path d="M24.3011 18.2322C24.1019 17.3671 24.9675 16.6408 25.7849 16.9872L31.5111 19.4139C31.8311 19.5495 32.1967 19.5239 32.4948 19.3451L37.8276 16.1451C38.5888 15.6883 39.547 16.2871 39.4701 17.1715L38.9318 23.3674C38.9017 23.7137 39.039 24.0534 39.3012 24.2816L43.9924 28.3646C44.6621 28.9474 44.3887 30.0437 43.5239 30.2439L37.4649 31.6466C37.1263 31.725 36.8455 31.9605 36.7095 32.2804L34.2761 38.0037C33.9287 38.8207 32.8016 38.8995 32.3439 38.1389L29.1376 32.8099C28.9584 32.512 28.6476 32.3178 28.3014 32.2873L22.1062 31.7416C21.2218 31.6637 20.7986 30.6161 21.3806 29.9458L25.458 25.2496C25.6859 24.9872 25.7745 24.6316 25.6965 24.2929L24.3011 18.2322Z" fill="url(#paint34_linear_905_10605)"/>
<path d="M24.3011 18.2322C24.1019 17.367 24.9675 16.6408 25.7849 16.9871L31.5111 19.4138C31.8312 19.5494 32.1967 19.5238 32.4948 19.345L37.8276 16.145C38.5888 15.6883 39.547 16.287 39.4702 17.1714L38.9318 23.3673C38.9017 23.7136 39.039 24.0534 39.3012 24.2815L43.9924 28.3645C44.6621 28.9473 44.3888 30.0436 43.5239 30.2439L37.4649 31.6465C37.1263 31.7249 36.8455 31.9604 36.7095 32.2803L34.2761 38.0037C33.9287 38.8206 32.8016 38.8995 32.3439 38.1388L29.1376 32.8098C28.9584 32.512 28.6476 32.3178 28.3014 32.2873L22.1062 31.7415C21.2219 31.6636 20.7986 30.616 21.3806 29.9457L25.458 25.2496C25.6859 24.9871 25.7745 24.6315 25.6965 24.2928L24.3011 18.2322Z" fill="url(#paint35_linear_905_10605)"/>
<path d="M24.3011 18.2322C24.1019 17.367 24.9675 16.6408 25.7849 16.9871L31.5111 19.4138C31.8312 19.5494 32.1967 19.5238 32.4948 19.345L37.8276 16.145C38.5888 15.6883 39.547 16.287 39.4702 17.1714L38.9318 23.3673C38.9017 23.7136 39.039 24.0534 39.3012 24.2815L43.9924 28.3645C44.6621 28.9473 44.3888 30.0436 43.5239 30.2439L37.4649 31.6465C37.1263 31.7249 36.8455 31.9604 36.7095 32.2803L34.2761 38.0037C33.9287 38.8206 32.8016 38.8995 32.3439 38.1388L29.1376 32.8098C28.9584 32.512 28.6476 32.3178 28.3014 32.2873L22.1062 31.7415C21.2219 31.6636 20.7986 30.616 21.3806 29.9457L25.458 25.2496C25.6859 24.9871 25.7745 24.6315 25.6965 24.2928L24.3011 18.2322Z" fill="url(#paint36_linear_905_10605)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.3697 19.7475L25.6435 17.3208C25.0985 17.0899 24.5215 17.5741 24.6543 18.1509L26.0497 24.2115C26.1537 24.6631 26.0355 25.1372 25.7317 25.4872L21.6543 30.1833C21.2663 30.6302 21.5484 31.3286 22.138 31.3805L28.3332 31.9262C28.7949 31.9669 29.2092 32.2258 29.4482 32.6229L32.6545 37.9519C32.9596 38.4591 33.711 38.4065 33.9426 37.8619L36.376 32.1385C36.5574 31.712 36.9317 31.3979 37.3832 31.2934L43.4421 29.8908C44.0187 29.7573 44.201 29.0264 43.7545 28.6379L39.0633 24.5549C38.7137 24.2507 38.5306 23.7976 38.5708 23.3359L39.1091 17.1401C39.1603 16.5505 38.5215 16.1513 38.0141 16.4558L32.6813 19.6558C32.2839 19.8942 31.7964 19.9283 31.3697 19.7475ZM25.7849 16.9871C24.9675 16.6408 24.1019 17.367 24.3011 18.2322L25.6965 24.2928C25.7745 24.6315 25.6859 24.9871 25.458 25.2496L21.3806 29.9457C20.7986 30.616 21.2219 31.6636 22.1062 31.7415L28.3014 32.2873C28.6476 32.3178 28.9584 32.512 29.1376 32.8098L32.3439 38.1388C32.8016 38.8995 33.9287 38.8206 34.2761 38.0037L36.7095 32.2803C36.8455 31.9604 37.1263 31.7249 37.4649 31.6465L43.5239 30.2439C44.3888 30.0436 44.6621 28.9473 43.9924 28.3645L39.3012 24.2815C39.039 24.0534 38.9017 23.7136 38.9318 23.3673L39.4702 17.1714C39.547 16.287 38.5888 15.6883 37.8276 16.145L32.4948 19.345C32.1967 19.5238 31.8312 19.5494 31.5111 19.4138L25.7849 16.9871Z" fill="url(#paint37_linear_905_10605)"/>
<path d="M28.1785 22.0787C28.1063 21.667 28.5065 21.3312 28.8994 21.4738L32.007 22.6017C32.1515 22.6541 32.3114 22.6429 32.4472 22.5709L35.3676 21.0215C35.7369 20.8256 36.1799 21.1024 36.1657 21.5202L36.0533 24.8242C36.0481 24.9778 36.1082 25.1265 36.2186 25.2334L38.5946 27.5321C38.895 27.8227 38.7687 28.3296 38.3669 28.4452L35.1899 29.3593C35.0422 29.4018 34.9194 29.5049 34.8519 29.643L33.3999 32.613C33.2163 32.9886 32.6952 33.025 32.4611 32.6786L30.61 29.9396C30.5239 29.8123 30.3879 29.7273 30.2357 29.7058L26.9624 29.2427C26.5485 29.1841 26.3528 28.6998 26.6099 28.3701L28.6428 25.7631C28.7373 25.6419 28.7761 25.4864 28.7496 25.3349L28.1785 22.0787Z" fill="url(#paint38_linear_905_10605)"/>
<path d="M36.5639 20.6026C35.5235 29.5664 29.2741 31.2317 26.2794 30.9439C20.7573 29.3538 28.6019 27.7503 32.3078 22.4623C35.2726 18.2319 36.3805 19.4598 36.5639 20.6026Z" fill="url(#paint39_linear_905_10605)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.2663 19.0325C25.4125 18.9983 25.5587 19.0891 25.5928 19.2353L25.9805 20.8929C26.0147 21.0391 25.9239 21.1853 25.7777 21.2194C25.6315 21.2536 25.4853 21.1628 25.4511 21.0167L25.0635 19.3591C25.0293 19.2129 25.1201 19.0667 25.2663 19.0325Z" fill="url(#paint40_linear_905_10605)"/>
<circle cx="22.2814" cy="30.1048" r="0.271812" transform="rotate(-40 22.2814 30.1048)" fill="url(#paint41_linear_905_10605)"/>
<circle cx="25.8488" cy="21.6712" r="0.271812" transform="rotate(-40 25.8488 21.6712)" fill="url(#paint42_linear_905_10605)"/>
<path d="M27.1905 24.2082C27.4884 27.7707 29.0749 28.5151 29.8309 28.442C31.8393 27.8772 31.2383 21.7705 30.5565 20.5931C29.8747 19.4158 26.8182 19.755 27.1905 24.2082Z" fill="url(#paint43_linear_905_10605)"/>
</g>
<g opacity="0.5">
<g filter="url(#filter4_i_905_10605)">
<path d="M12.5315 45.8979C12.9351 45.1071 14.0649 45.1071 14.4685 45.8979L17.2952 51.4376C17.4532 51.7472 17.7497 51.9626 18.0929 52.0171L24.235 52.9937C25.1117 53.1331 25.4609 54.2077 24.8335 54.8358L20.4385 59.2361C20.1929 59.482 20.0796 59.8305 20.1338 60.1738L21.103 66.3171C21.2414 67.194 20.3273 67.8581 19.5361 67.4555L13.993 64.6354C13.6832 64.4778 13.3168 64.4778 13.007 64.6354L7.46395 67.4555C6.67271 67.8581 5.75861 67.194 5.89696 66.3171L6.8662 60.1738C6.92037 59.8305 6.80713 59.482 6.5615 59.2361L2.16648 54.8358C1.53911 54.2077 1.88826 53.1331 2.76501 52.9937L8.90707 52.0171C9.25033 51.9626 9.54681 51.7472 9.70479 51.4376L12.5315 45.8979Z" fill="url(#paint44_linear_905_10605)"/>
</g>
<path d="M12.5315 45.8979C12.9351 45.1071 14.0649 45.1071 14.4685 45.8979L17.2952 51.4376C17.4532 51.7472 17.7497 51.9626 18.0929 52.0171L24.235 52.9937C25.1117 53.1331 25.4609 54.2077 24.8335 54.8358L20.4385 59.2361C20.1929 59.482 20.0796 59.8305 20.1338 60.1738L21.103 66.3171C21.2414 67.194 20.3273 67.8581 19.5361 67.4555L13.993 64.6354C13.6832 64.4778 13.3168 64.4778 13.007 64.6354L7.46395 67.4555C6.67271 67.8581 5.75861 67.194 5.89696 66.3171L6.8662 60.1738C6.92037 59.8305 6.80713 59.482 6.5615 59.2361L2.16648 54.8358C1.53911 54.2077 1.88826 53.1331 2.76501 52.9937L8.90707 52.0171C9.25033 51.9626 9.54681 51.7472 9.70479 51.4376L12.5315 45.8979Z" fill="url(#paint45_linear_905_10605)"/>
<path d="M12.5318 45.8978C12.9353 45.107 14.0652 45.107 14.4687 45.8978L17.2955 51.4374C17.4535 51.747 17.75 51.9624 18.0932 52.017L24.2353 52.9936C25.112 53.133 25.4612 54.2075 24.8338 54.8357L20.4388 59.2359C20.1932 59.4818 20.0799 59.8304 20.1341 60.1737L21.1033 66.3169C21.2417 67.1938 20.3276 67.858 19.5363 67.4554L13.9933 64.6352C13.6835 64.4776 13.3171 64.4776 13.0073 64.6352L7.46425 67.4554C6.673 67.858 5.7589 67.1938 5.89726 66.3169L6.8665 60.1737C6.92067 59.8304 6.80742 59.4818 6.56179 59.2359L2.16677 54.8357C1.5394 54.2075 1.88856 53.133 2.76531 52.9936L8.90736 52.017C9.25062 51.9624 9.54711 51.747 9.70509 51.4374L12.5318 45.8978Z" fill="url(#paint46_linear_905_10605)"/>
<path d="M12.5318 45.8978C12.9353 45.107 14.0652 45.107 14.4687 45.8978L17.2955 51.4374C17.4535 51.747 17.75 51.9624 18.0932 52.017L24.2353 52.9936C25.112 53.133 25.4612 54.2075 24.8338 54.8357L20.4388 59.2359C20.1932 59.4818 20.0799 59.8304 20.1341 60.1737L21.1033 66.3169C21.2417 67.1938 20.3276 67.858 19.5363 67.4554L13.9933 64.6352C13.6835 64.4776 13.3171 64.4776 13.0073 64.6352L7.46425 67.4554C6.673 67.858 5.7589 67.1938 5.89726 66.3169L6.8665 60.1737C6.92067 59.8304 6.80742 59.4818 6.56179 59.2359L2.16677 54.8357C1.5394 54.2075 1.88856 53.133 2.76531 52.9936L8.90736 52.017C9.25062 51.9624 9.54711 51.747 9.70509 51.4374L12.5318 45.8978Z" fill="url(#paint47_linear_905_10605)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.9727 51.6021L14.1459 46.0625C13.8769 45.5353 13.1237 45.5353 12.8547 46.0625L10.0279 51.6021C9.81726 52.0149 9.42195 52.3022 8.96427 52.3749L2.82221 53.3515C2.23771 53.4444 2.00494 54.1608 2.42319 54.5795L6.81821 58.9798C7.14571 59.3077 7.29671 59.7724 7.22448 60.2302L6.25524 66.3734C6.16301 66.958 6.77241 67.4008 7.2999 67.1324L12.8429 64.3122C13.256 64.1021 13.7446 64.1021 14.1577 64.3122L19.7007 67.1324C20.2282 67.4008 20.8376 66.958 20.7453 66.3734L19.7761 60.2302C19.7039 59.7724 19.8549 59.3077 20.1824 58.9798L24.5774 54.5795C24.9956 54.1608 24.7629 53.4444 24.1784 53.3515L18.0363 52.3749C17.5786 52.3022 17.1833 52.0149 16.9727 51.6021ZM14.4687 45.8978C14.0652 45.107 12.9353 45.107 12.5318 45.8978L9.70509 51.4374C9.54711 51.747 9.25062 51.9624 8.90736 52.017L2.76531 52.9936C1.88856 53.133 1.5394 54.2075 2.16677 54.8357L6.56179 59.2359C6.80742 59.4818 6.92067 59.8304 6.8665 60.1737L5.89726 66.3169C5.7589 67.1938 6.673 67.858 7.46425 67.4554L13.0073 64.6352C13.3171 64.4776 13.6835 64.4776 13.9933 64.6352L19.5363 67.4554C20.3276 67.858 21.2417 67.1938 21.1033 66.3169L20.1341 60.1737C20.0799 59.8304 20.1932 59.4818 20.4388 59.2359L24.8338 54.8357C25.4612 54.2075 25.112 53.133 24.2353 52.9936L18.0932 52.017C17.75 51.9624 17.4535 51.747 17.2955 51.4374L14.4687 45.8978Z" fill="url(#paint48_linear_905_10605)"/>
<path d="M13.0294 51.3367C13.2388 50.9749 13.7611 50.9749 13.9705 51.3367L15.6261 54.1982C15.7031 54.3312 15.8328 54.4255 15.9831 54.4576L19.2161 55.1479C19.625 55.2352 19.7864 55.732 19.5069 56.0429L17.2971 58.5017C17.1944 58.616 17.1448 58.7685 17.1607 58.9214L17.5033 62.2095C17.5466 62.6253 17.124 62.9324 16.7419 62.7627L13.7206 61.4208C13.5801 61.3584 13.4198 61.3584 13.2793 61.4208L10.258 62.7627C9.87591 62.9324 9.4533 62.6253 9.49661 62.2095L9.83915 58.9214C9.85507 58.7685 9.80553 58.616 9.70277 58.5017L7.49296 56.0429C7.21352 55.732 7.37494 55.2352 7.78377 55.1479L11.0168 54.4576C11.1671 54.4255 11.2968 54.3312 11.3738 54.1982L13.0294 51.3367Z" fill="url(#paint49_linear_905_10605)"/>
<path d="M20.4019 55.596C13.8431 61.7939 7.98533 59.0525 5.8763 56.9071C2.66819 52.1395 9.70821 55.9536 15.9462 54.2849C20.9366 52.9499 20.996 54.6027 20.4019 55.596Z" fill="url(#paint50_linear_905_10605)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7577 47.1309C12.8917 47.1987 12.9453 47.3622 12.8776 47.4962L12.109 49.0151C12.0413 49.1491 11.8777 49.2027 11.7438 49.1349C11.6098 49.0672 11.5562 48.9036 11.624 48.7697L12.3925 47.2508C12.4603 47.1168 12.6238 47.0632 12.7577 47.1309Z" fill="url(#paint51_linear_905_10605)"/>
<circle cx="3.35287" cy="53.6942" r="0.271812" fill="url(#paint52_linear_905_10605)"/>
<circle cx="11.5072" cy="49.5267" r="0.271812" fill="url(#paint53_linear_905_10605)"/>
<path d="M10.9048 52.3328C8.843 55.2533 9.57983 56.8434 10.206 57.2733C12.1076 58.1317 15.5725 53.0673 15.807 51.7271C16.0415 50.3869 13.482 48.6822 10.9048 52.3328Z" fill="url(#paint54_linear_905_10605)"/>
</g>
<defs>
<filter id="filter0_i_905_10605" x="59.2646" y="-0.507393" width="23.3047" height="24.0836" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_905_10605"/>
</filter>
<filter id="filter1_i_905_10605" x="96.4189" y="13.6108" width="23.667" height="24.8814" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_905_10605"/>
</filter>
<filter id="filter2_i_905_10605" x="116.64" y="43.2646" width="23.7207" height="24.4595" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_905_10605"/>
</filter>
<filter id="filter3_i_905_10605" x="21.1133" y="14.1757" width="23.2529" height="24.4898" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_905_10605"/>
</filter>
<filter id="filter4_i_905_10605" x="1.84766" y="43.4926" width="23.3047" height="24.0836" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_905_10605"/>
</filter>
<linearGradient id="paint0_linear_905_10605" x1="70.917" y1="0" x2="70.917" y2="27" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint1_linear_905_10605" x1="70.917" y1="0" x2="70.917" y2="27" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint2_linear_905_10605" x1="70.9183" y1="1.30518" x2="70.9183" y2="23.5763" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint3_linear_905_10605" x1="70.9183" y1="1.30518" x2="70.9183" y2="23.5763" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint4_linear_905_10605" x1="70.9183" y1="1.30518" x2="70.9183" y2="23.5763" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint5_linear_905_10605" x1="70.9169" y1="6.52344" x2="70.9169" y2="20.4765" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint6_linear_905_10605" x1="70.2832" y1="9.78564" x2="70.2832" y2="15.4031" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint7_linear_905_10605" x1="69.6975" y1="3.09233" x2="69.638" y2="5.1755" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint8_linear_905_10605" x1="60.7699" y1="9.42285" x2="60.7699" y2="9.96648" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint9_linear_905_10605" x1="68.9251" y1="5.25488" x2="68.9251" y2="5.79851" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint10_linear_905_10605" x1="68.4224" y1="7.97366" x2="71.3291" y2="11.2086" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint11_linear_905_10605" x1="117.179" y1="15.7553" x2="99.8232" y2="36.4385" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint12_linear_905_10605" x1="117.179" y1="15.7553" x2="99.8232" y2="36.4385" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint13_linear_905_10605" x1="116.34" y1="16.7548" x2="102.024" y2="33.8155" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint14_linear_905_10605" x1="116.34" y1="16.7548" x2="102.024" y2="33.8155" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint15_linear_905_10605" x1="116.34" y1="16.7548" x2="102.024" y2="33.8155" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint16_linear_905_10605" x1="112.985" y1="20.752" x2="104.016" y2="31.4406" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint17_linear_905_10605" x1="110.403" y1="22.8435" x2="106.792" y2="27.1467" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint18_linear_905_10605" x1="114.256" y1="17.3389" x2="112.872" y2="18.8965" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint19_linear_905_10605" x1="103.173" y1="16.387" x2="103.173" y2="16.9306" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint20_linear_905_10605" x1="112.099" y1="18.4358" x2="112.099" y2="18.9795" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint21_linear_905_10605" x1="110.141" y1="20.2587" x2="110.288" y2="24.6052" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint22_linear_905_10605" x1="128.5" y1="44" x2="128.5" y2="71" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint23_linear_905_10605" x1="128.5" y1="44" x2="128.5" y2="71" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint24_linear_905_10605" x1="128.5" y1="45.3047" x2="128.5" y2="67.5758" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint25_linear_905_10605" x1="128.5" y1="45.3047" x2="128.5" y2="67.5758" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint26_linear_905_10605" x1="128.5" y1="45.3047" x2="128.5" y2="67.5758" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint27_linear_905_10605" x1="128.5" y1="50.5234" x2="128.5" y2="64.4765" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint28_linear_905_10605" x1="127.865" y1="53.7852" x2="127.865" y2="59.4026" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint29_linear_905_10605" x1="127.28" y1="47.0918" x2="127.22" y2="49.175" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint30_linear_905_10605" x1="118.353" y1="53.4224" x2="118.353" y2="53.966" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint31_linear_905_10605" x1="126.507" y1="49.2549" x2="126.507" y2="49.7985" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint32_linear_905_10605" x1="126.004" y1="51.9737" x2="128.911" y2="55.2086" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint33_linear_905_10605" x1="23.823" y1="16.1559" x2="41.1783" y2="36.8391" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint34_linear_905_10605" x1="23.823" y1="16.1559" x2="41.1783" y2="36.8391" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint35_linear_905_10605" x1="24.6618" y1="17.1553" x2="38.9774" y2="34.216" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint36_linear_905_10605" x1="24.6618" y1="17.1553" x2="38.9774" y2="34.216" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint37_linear_905_10605" x1="24.6618" y1="17.1553" x2="38.9774" y2="34.216" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint38_linear_905_10605" x1="28.0162" y1="21.1533" x2="36.985" y2="31.8419" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint39_linear_905_10605" x1="29.6272" y1="24.0593" x2="33.238" y2="28.3625" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint40_linear_905_10605" x1="24.8753" y1="19.309" x2="26.1687" y2="20.943" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint41_linear_905_10605" x1="22.2814" y1="29.833" x2="22.2814" y2="30.3766" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint42_linear_905_10605" x1="25.8488" y1="21.3994" x2="25.8488" y2="21.943" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint43_linear_905_10605" x1="27.0364" y1="23.868" x2="31.3425" y2="24.4777" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint44_linear_905_10605" x1="13.5" y1="44" x2="13.5" y2="71" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint45_linear_905_10605" x1="13.5" y1="44" x2="13.5" y2="71" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint46_linear_905_10605" x1="13.5003" y1="45.3047" x2="13.5003" y2="67.5758" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint47_linear_905_10605" x1="13.5003" y1="45.3047" x2="13.5003" y2="67.5758" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint48_linear_905_10605" x1="13.5003" y1="45.3047" x2="13.5003" y2="67.5758" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint49_linear_905_10605" x1="13.4999" y1="50.5234" x2="13.4999" y2="64.4765" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint50_linear_905_10605" x1="12.8662" y1="53.7852" x2="12.8662" y2="59.4026" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint51_linear_905_10605" x1="12.2805" y1="47.0914" x2="12.221" y2="49.1745" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint52_linear_905_10605" x1="3.35287" y1="53.4224" x2="3.35287" y2="53.966" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint53_linear_905_10605" x1="11.5072" y1="49.2549" x2="11.5072" y2="49.7985" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint54_linear_905_10605" x1="11.0054" y1="51.9732" x2="13.9121" y2="55.2081" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 46 KiB

View File

@@ -0,0 +1,337 @@
<svg width="142" height="71" viewBox="0 0 142 71" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.5">
<g filter="url(#filter0_i_1461_1793)">
<path d="M24.3011 18.2322C24.1019 17.3671 24.9675 16.6408 25.7849 16.9872L31.5111 19.4139C31.8311 19.5495 32.1967 19.5239 32.4948 19.3451L37.8276 16.1451C38.5888 15.6883 39.547 16.2871 39.4701 17.1715L38.9318 23.3674C38.9017 23.7137 39.039 24.0534 39.3012 24.2816L43.9924 28.3646C44.6621 28.9474 44.3887 30.0437 43.5239 30.2439L37.4649 31.6466C37.1263 31.725 36.8455 31.9605 36.7095 32.2804L34.2761 38.0037C33.9287 38.8207 32.8016 38.8995 32.3439 38.1389L29.1376 32.8099C28.9584 32.512 28.6476 32.3178 28.3014 32.2873L22.1062 31.7416C21.2218 31.6637 20.7986 30.6161 21.3806 29.9458L25.458 25.2496C25.6859 24.9872 25.7745 24.6316 25.6965 24.2929L24.3011 18.2322Z" fill="url(#paint0_linear_1461_1793)"/>
</g>
<path d="M24.3011 18.2322C24.1019 17.3671 24.9675 16.6408 25.7849 16.9872L31.5111 19.4139C31.8311 19.5495 32.1967 19.5239 32.4948 19.3451L37.8276 16.1451C38.5888 15.6883 39.547 16.2871 39.4701 17.1715L38.9318 23.3674C38.9017 23.7137 39.039 24.0534 39.3012 24.2816L43.9924 28.3646C44.6621 28.9474 44.3887 30.0437 43.5239 30.2439L37.4649 31.6466C37.1263 31.725 36.8455 31.9605 36.7095 32.2804L34.2761 38.0037C33.9287 38.8207 32.8016 38.8995 32.3439 38.1389L29.1376 32.8099C28.9584 32.512 28.6476 32.3178 28.3014 32.2873L22.1062 31.7416C21.2218 31.6637 20.7986 30.6161 21.3806 29.9458L25.458 25.2496C25.6859 24.9872 25.7745 24.6316 25.6965 24.2929L24.3011 18.2322Z" fill="url(#paint1_linear_1461_1793)"/>
<path d="M24.3011 18.2322C24.1019 17.367 24.9675 16.6408 25.7849 16.9871L31.5111 19.4138C31.8312 19.5494 32.1967 19.5238 32.4948 19.345L37.8276 16.145C38.5888 15.6883 39.547 16.287 39.4702 17.1714L38.9318 23.3673C38.9017 23.7136 39.039 24.0534 39.3012 24.2815L43.9924 28.3645C44.6621 28.9473 44.3888 30.0436 43.5239 30.2439L37.4649 31.6465C37.1263 31.7249 36.8455 31.9604 36.7095 32.2803L34.2761 38.0037C33.9287 38.8206 32.8016 38.8995 32.3439 38.1388L29.1376 32.8098C28.9584 32.512 28.6476 32.3178 28.3014 32.2873L22.1062 31.7415C21.2219 31.6636 20.7986 30.616 21.3806 29.9457L25.458 25.2496C25.6859 24.9871 25.7745 24.6315 25.6965 24.2928L24.3011 18.2322Z" fill="url(#paint2_linear_1461_1793)"/>
<path d="M24.3011 18.2322C24.1019 17.367 24.9675 16.6408 25.7849 16.9871L31.5111 19.4138C31.8312 19.5494 32.1967 19.5238 32.4948 19.345L37.8276 16.145C38.5888 15.6883 39.547 16.287 39.4702 17.1714L38.9318 23.3673C38.9017 23.7136 39.039 24.0534 39.3012 24.2815L43.9924 28.3645C44.6621 28.9473 44.3888 30.0436 43.5239 30.2439L37.4649 31.6465C37.1263 31.7249 36.8455 31.9604 36.7095 32.2803L34.2761 38.0037C33.9287 38.8206 32.8016 38.8995 32.3439 38.1388L29.1376 32.8098C28.9584 32.512 28.6476 32.3178 28.3014 32.2873L22.1062 31.7415C21.2219 31.6636 20.7986 30.616 21.3806 29.9457L25.458 25.2496C25.6859 24.9871 25.7745 24.6315 25.6965 24.2928L24.3011 18.2322Z" fill="url(#paint3_linear_1461_1793)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.3697 19.7475L25.6435 17.3208C25.0985 17.0899 24.5215 17.5741 24.6543 18.1509L26.0497 24.2115C26.1537 24.6631 26.0355 25.1372 25.7317 25.4872L21.6543 30.1833C21.2663 30.6302 21.5484 31.3286 22.138 31.3805L28.3332 31.9262C28.7949 31.9669 29.2092 32.2258 29.4482 32.6229L32.6545 37.9519C32.9596 38.4591 33.711 38.4065 33.9426 37.8619L36.376 32.1385C36.5574 31.712 36.9317 31.3979 37.3832 31.2934L43.4421 29.8908C44.0187 29.7573 44.201 29.0264 43.7545 28.6379L39.0633 24.5549C38.7137 24.2507 38.5306 23.7976 38.5708 23.3359L39.1091 17.1401C39.1603 16.5505 38.5215 16.1513 38.0141 16.4558L32.6813 19.6558C32.2839 19.8942 31.7964 19.9283 31.3697 19.7475ZM25.7849 16.9871C24.9675 16.6408 24.1019 17.367 24.3011 18.2322L25.6965 24.2928C25.7745 24.6315 25.6859 24.9871 25.458 25.2496L21.3806 29.9457C20.7986 30.616 21.2219 31.6636 22.1062 31.7415L28.3014 32.2873C28.6476 32.3178 28.9584 32.512 29.1376 32.8098L32.3439 38.1388C32.8016 38.8995 33.9287 38.8206 34.2761 38.0037L36.7095 32.2803C36.8455 31.9604 37.1263 31.7249 37.4649 31.6465L43.5239 30.2439C44.3888 30.0436 44.6621 28.9473 43.9924 28.3645L39.3012 24.2815C39.039 24.0534 38.9017 23.7136 38.9318 23.3673L39.4702 17.1714C39.547 16.287 38.5888 15.6883 37.8276 16.145L32.4948 19.345C32.1967 19.5238 31.8312 19.5494 31.5111 19.4138L25.7849 16.9871Z" fill="url(#paint4_linear_1461_1793)"/>
<path d="M28.1785 22.0787C28.1063 21.667 28.5065 21.3312 28.8994 21.4738L32.007 22.6017C32.1515 22.6541 32.3114 22.6429 32.4472 22.5709L35.3676 21.0215C35.7369 20.8256 36.1799 21.1024 36.1657 21.5202L36.0533 24.8242C36.0481 24.9778 36.1082 25.1265 36.2186 25.2334L38.5946 27.5321C38.895 27.8227 38.7687 28.3296 38.3669 28.4452L35.1899 29.3593C35.0422 29.4018 34.9194 29.5049 34.8519 29.643L33.3999 32.613C33.2163 32.9886 32.6952 33.025 32.4611 32.6786L30.61 29.9396C30.5239 29.8123 30.3879 29.7273 30.2357 29.7058L26.9624 29.2427C26.5485 29.1841 26.3528 28.6998 26.6099 28.3701L28.6428 25.7631C28.7373 25.6419 28.7761 25.4864 28.7496 25.3349L28.1785 22.0787Z" fill="url(#paint5_linear_1461_1793)"/>
<path d="M36.5639 20.6026C35.5235 29.5664 29.2741 31.2317 26.2794 30.9439C20.7573 29.3538 28.6019 27.7503 32.3078 22.4623C35.2726 18.2319 36.3805 19.4598 36.5639 20.6026Z" fill="url(#paint6_linear_1461_1793)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.2663 19.0325C25.4125 18.9983 25.5587 19.0891 25.5928 19.2353L25.9805 20.8929C26.0147 21.0391 25.9239 21.1853 25.7777 21.2194C25.6315 21.2536 25.4853 21.1628 25.4511 21.0167L25.0635 19.3591C25.0293 19.2129 25.1201 19.0667 25.2663 19.0325Z" fill="url(#paint7_linear_1461_1793)"/>
<circle cx="22.2814" cy="30.1048" r="0.271812" transform="rotate(-40 22.2814 30.1048)" fill="url(#paint8_linear_1461_1793)"/>
<circle cx="25.8488" cy="21.6712" r="0.271812" transform="rotate(-40 25.8488 21.6712)" fill="url(#paint9_linear_1461_1793)"/>
<path d="M27.1905 24.2082C27.4884 27.7707 29.0749 28.5151 29.8309 28.442C31.8393 27.8772 31.2383 21.7705 30.5565 20.5931C29.8747 19.4158 26.8182 19.755 27.1905 24.2082Z" fill="url(#paint10_linear_1461_1793)"/>
</g>
<g filter="url(#filter1_i_1461_1793)">
<path d="M12.5315 45.8979C12.9351 45.1071 14.0649 45.1071 14.4685 45.8979L17.2952 51.4376C17.4532 51.7472 17.7497 51.9626 18.0929 52.0171L24.235 52.9937C25.1117 53.1331 25.4609 54.2077 24.8335 54.8358L20.4385 59.2361C20.1929 59.482 20.0796 59.8305 20.1338 60.1738L21.103 66.3171C21.2414 67.194 20.3273 67.8581 19.5361 67.4555L13.993 64.6354C13.6832 64.4778 13.3168 64.4778 13.007 64.6354L7.46395 67.4555C6.67271 67.8581 5.75861 67.194 5.89696 66.3171L6.8662 60.1738C6.92037 59.8305 6.80713 59.482 6.5615 59.2361L2.16648 54.8358C1.53911 54.2077 1.88826 53.1331 2.76501 52.9937L8.90707 52.0171C9.25033 51.9626 9.54681 51.7472 9.70479 51.4376L12.5315 45.8979Z" fill="#43628F"/>
</g>
<path d="M12.5315 45.8979C12.9351 45.1071 14.0649 45.1071 14.4685 45.8979L17.2952 51.4376C17.4532 51.7472 17.7497 51.9626 18.0929 52.0171L24.235 52.9937C25.1117 53.1331 25.4609 54.2077 24.8335 54.8358L20.4385 59.2361C20.1929 59.482 20.0796 59.8305 20.1338 60.1738L21.103 66.3171C21.2414 67.194 20.3273 67.8581 19.5361 67.4555L13.993 64.6354C13.6832 64.4778 13.3168 64.4778 13.007 64.6354L7.46395 67.4555C6.67271 67.8581 5.75861 67.194 5.89696 66.3171L6.8662 60.1738C6.92037 59.8305 6.80713 59.482 6.5615 59.2361L2.16648 54.8358C1.53911 54.2077 1.88826 53.1331 2.76501 52.9937L8.90707 52.0171C9.25033 51.9626 9.54681 51.7472 9.70479 51.4376L12.5315 45.8979Z" fill="url(#paint11_linear_1461_1793)"/>
<path d="M12.5318 45.8978C12.9353 45.107 14.0652 45.107 14.4687 45.8978L17.2955 51.4374C17.4535 51.747 17.75 51.9624 18.0932 52.017L24.2353 52.9936C25.112 53.133 25.4612 54.2075 24.8338 54.8357L20.4388 59.2359C20.1932 59.4818 20.0799 59.8304 20.1341 60.1737L21.1033 66.3169C21.2417 67.1938 20.3276 67.858 19.5363 67.4554L13.9933 64.6352C13.6835 64.4776 13.3171 64.4776 13.0073 64.6352L7.46425 67.4554C6.673 67.858 5.7589 67.1938 5.89726 66.3169L6.8665 60.1737C6.92067 59.8304 6.80742 59.4818 6.56179 59.2359L2.16677 54.8357C1.5394 54.2075 1.88856 53.133 2.76531 52.9936L8.90736 52.017C9.25062 51.9624 9.54711 51.747 9.70509 51.4374L12.5318 45.8978Z" fill="url(#paint12_linear_1461_1793)"/>
<path d="M12.5318 45.8978C12.9353 45.107 14.0652 45.107 14.4687 45.8978L17.2955 51.4374C17.4535 51.747 17.75 51.9624 18.0932 52.017L24.2353 52.9936C25.112 53.133 25.4612 54.2075 24.8338 54.8357L20.4388 59.2359C20.1932 59.4818 20.0799 59.8304 20.1341 60.1737L21.1033 66.3169C21.2417 67.1938 20.3276 67.858 19.5363 67.4554L13.9933 64.6352C13.6835 64.4776 13.3171 64.4776 13.0073 64.6352L7.46425 67.4554C6.673 67.858 5.7589 67.1938 5.89726 66.3169L6.8665 60.1737C6.92067 59.8304 6.80742 59.4818 6.56179 59.2359L2.16677 54.8357C1.5394 54.2075 1.88856 53.133 2.76531 52.9936L8.90736 52.017C9.25062 51.9624 9.54711 51.747 9.70509 51.4374L12.5318 45.8978Z" fill="url(#paint13_radial_1461_1793)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.9727 51.6021L14.1459 46.0625C13.8769 45.5353 13.1237 45.5353 12.8547 46.0625L10.0279 51.6021C9.81726 52.0149 9.42195 52.3022 8.96427 52.3749L2.82222 53.3515C2.23771 53.4444 2.00494 54.1608 2.42319 54.5795L6.81821 58.9798C7.14571 59.3077 7.29671 59.7724 7.22448 60.2302L6.25524 66.3734C6.16301 66.958 6.77241 67.4008 7.2999 67.1324L12.8429 64.3122C13.256 64.1021 13.7446 64.1021 14.1577 64.3122L19.7007 67.1324C20.2282 67.4008 20.8376 66.958 20.7453 66.3734L19.7761 60.2302C19.7039 59.7724 19.8549 59.3077 20.1824 58.9798L24.5774 54.5796C24.9956 54.1608 24.7629 53.4444 24.1784 53.3515L18.0363 52.3749C17.5786 52.3022 17.1833 52.0149 16.9727 51.6021ZM14.4687 45.8978C14.0652 45.107 12.9353 45.107 12.5318 45.8978L9.70509 51.4374C9.54711 51.747 9.25062 51.9624 8.90736 52.017L2.76531 52.9936C1.88856 53.133 1.5394 54.2075 2.16677 54.8357L6.56179 59.2359C6.80742 59.4818 6.92067 59.8304 6.8665 60.1737L5.89726 66.3169C5.7589 67.1938 6.673 67.858 7.46425 67.4554L13.0073 64.6352C13.3171 64.4776 13.6835 64.4776 13.9933 64.6352L19.5363 67.4554C20.3276 67.858 21.2417 67.1938 21.1033 66.3169L20.1341 60.1737C20.0799 59.8304 20.1932 59.4818 20.4388 59.2359L24.8338 54.8357C25.4612 54.2075 25.112 53.133 24.2353 52.9936L18.0932 52.017C17.75 51.9624 17.4535 51.747 17.2955 51.4374L14.4687 45.8978Z" fill="url(#paint14_linear_1461_1793)"/>
<path d="M13.0294 51.3367C13.2388 50.9749 13.7611 50.9749 13.9705 51.3367L15.6261 54.1982C15.7031 54.3312 15.8328 54.4255 15.9831 54.4576L19.2161 55.1479C19.625 55.2352 19.7864 55.732 19.5069 56.0429L17.2971 58.5017C17.1944 58.616 17.1448 58.7685 17.1607 58.9214L17.5033 62.2095C17.5466 62.6253 17.124 62.9324 16.7419 62.7627L13.7206 61.4208C13.5801 61.3584 13.4198 61.3584 13.2793 61.4208L10.258 62.7627C9.87591 62.9324 9.4533 62.6253 9.49661 62.2095L9.83915 58.9214C9.85507 58.7685 9.80553 58.616 9.70277 58.5017L7.49296 56.0429C7.21352 55.732 7.37494 55.2352 7.78377 55.1479L11.0168 54.4576C11.1671 54.4255 11.2968 54.3312 11.3738 54.1982L13.0294 51.3367Z" fill="url(#paint15_linear_1461_1793)"/>
<path d="M20.4019 55.596C13.8431 61.7939 7.98533 59.0525 5.8763 56.9071C2.66819 52.1395 9.70821 55.9536 15.9462 54.2849C20.9366 52.9499 20.996 54.6027 20.4019 55.596Z" fill="url(#paint16_linear_1461_1793)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7568 47.1314C12.8907 47.1992 12.9444 47.3627 12.8766 47.4967L12.1081 49.0156C12.0403 49.1496 11.8768 49.2032 11.7428 49.1354C11.6089 49.0677 11.5552 48.9041 11.623 48.7702L12.3915 47.2512C12.4593 47.1173 12.6228 47.0636 12.7568 47.1314Z" fill="#93D6F6"/>
<circle cx="3.35287" cy="53.6947" r="0.271812" fill="#93D6F6"/>
<circle cx="11.5072" cy="49.5267" r="0.271812" fill="#93D6F6"/>
<path d="M10.9048 52.3333C8.843 55.2538 9.57983 56.8439 10.206 57.2738C12.1076 58.1321 15.5725 53.0678 15.807 51.7276C16.0415 50.3874 13.482 48.6827 10.9048 52.3333Z" fill="url(#paint17_linear_1461_1793)" fill-opacity="0.6"/>
<g opacity="0.5">
<g filter="url(#filter2_i_1461_1793)">
<path d="M69.9485 1.8979C70.352 1.10714 71.4819 1.10714 71.8854 1.8979L74.7122 7.43756C74.8702 7.74716 75.1667 7.96257 75.5099 8.01715L81.652 8.9937C82.5287 9.1331 82.8779 10.2077 82.2505 10.8358L77.8555 15.2361C77.6099 15.482 77.4966 15.8305 77.5508 16.1738L78.52 22.3171C78.6584 23.194 77.7443 23.8581 76.953 23.4555L71.41 20.6354C71.1002 20.4778 70.7338 20.4778 70.424 20.6354L64.8809 23.4555C64.0897 23.8581 63.1756 23.194 63.314 22.3171L64.2832 16.1738C64.3374 15.8305 64.2241 15.482 63.9785 15.2361L59.5835 10.8358C58.9561 10.2077 59.3053 9.1331 60.182 8.9937L66.3241 8.01715C66.6673 7.96257 66.9638 7.74716 67.1218 7.43756L69.9485 1.8979Z" fill="url(#paint18_linear_1461_1793)"/>
</g>
<path d="M69.9485 1.8979C70.352 1.10714 71.4819 1.10714 71.8854 1.8979L74.7122 7.43756C74.8702 7.74716 75.1667 7.96257 75.5099 8.01715L81.652 8.9937C82.5287 9.1331 82.8779 10.2077 82.2505 10.8358L77.8555 15.2361C77.6099 15.482 77.4966 15.8305 77.5508 16.1738L78.52 22.3171C78.6584 23.194 77.7443 23.8581 76.953 23.4555L71.41 20.6354C71.1002 20.4778 70.7338 20.4778 70.424 20.6354L64.8809 23.4555C64.0897 23.8581 63.1756 23.194 63.314 22.3171L64.2832 16.1738C64.3374 15.8305 64.2241 15.482 63.9785 15.2361L59.5835 10.8358C58.9561 10.2077 59.3053 9.1331 60.182 8.9937L66.3241 8.01715C66.6673 7.96257 66.9638 7.74716 67.1218 7.43756L69.9485 1.8979Z" fill="url(#paint19_linear_1461_1793)"/>
<path d="M69.9498 1.89825C70.3533 1.10749 71.4832 1.10748 71.8867 1.89825L74.7135 7.43791C74.8714 7.74751 75.1679 7.96292 75.5112 8.0175L81.6532 8.99405C82.53 9.13345 82.8792 10.208 82.2518 10.8362L77.8568 15.2364C77.6111 15.4823 77.4979 15.8309 77.5521 16.1742L78.5213 22.3174C78.6597 23.1943 77.7456 23.8584 76.9543 23.4559L71.4113 20.6357C71.1015 20.4781 70.735 20.4781 70.4252 20.6357L64.8822 23.4559C64.091 23.8584 63.1769 23.1943 63.3152 22.3174L64.2845 16.1742C64.3386 15.8309 64.2254 15.4823 63.9798 15.2364L59.5847 10.8362C58.9574 10.208 59.3065 9.13345 60.1833 8.99405L66.3253 8.0175C66.6686 7.96292 66.9651 7.74751 67.1231 7.43791L69.9498 1.89825Z" fill="url(#paint20_linear_1461_1793)"/>
<path d="M69.9498 1.89825C70.3533 1.10749 71.4832 1.10748 71.8867 1.89825L74.7135 7.43791C74.8714 7.74751 75.1679 7.96292 75.5112 8.0175L81.6532 8.99405C82.53 9.13345 82.8792 10.208 82.2518 10.8362L77.8568 15.2364C77.6111 15.4823 77.4979 15.8309 77.5521 16.1742L78.5213 22.3174C78.6597 23.1943 77.7456 23.8584 76.9543 23.4559L71.4113 20.6357C71.1015 20.4781 70.735 20.4781 70.4252 20.6357L64.8822 23.4559C64.091 23.8584 63.1769 23.1943 63.3152 22.3174L64.2845 16.1742C64.3386 15.8309 64.2254 15.4823 63.9798 15.2364L59.5847 10.8362C58.9574 10.208 59.3065 9.13345 60.1833 8.99405L66.3253 8.0175C66.6686 7.96292 66.9651 7.74751 67.1231 7.43791L69.9498 1.89825Z" fill="url(#paint21_linear_1461_1793)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M74.3907 7.60264L71.5639 2.06297C71.2949 1.5358 70.5416 1.5358 70.2726 2.06297L67.4459 7.60264C67.2352 8.01544 66.8399 8.30265 66.3822 8.37542L60.2402 9.35197C59.6557 9.4449 59.4229 10.1613 59.8412 10.58L64.2362 14.9803C64.5637 15.3082 64.7147 15.7729 64.6425 16.2307L63.6732 22.3739C63.581 22.9585 64.1904 23.4012 64.7179 23.1329L70.2609 20.3127C70.6739 20.1026 71.1626 20.1026 71.5756 20.3127L77.1187 23.1329C77.6461 23.4012 78.2555 22.9585 78.1633 22.3739L77.1941 16.2307C77.1218 15.7729 77.2728 15.3082 77.6003 14.9803L81.9954 10.58C82.4136 10.1613 82.1808 9.4449 81.5963 9.35197L75.4543 8.37542C74.9966 8.30265 74.6013 8.01544 74.3907 7.60264ZM71.8867 1.89825C71.4832 1.10748 70.3533 1.10749 69.9498 1.89825L67.1231 7.43791C66.9651 7.74751 66.6686 7.96292 66.3253 8.0175L60.1833 8.99405C59.3065 9.13345 58.9574 10.208 59.5847 10.8362L63.9798 15.2364C64.2254 15.4823 64.3386 15.8309 64.2845 16.1742L63.3152 22.3174C63.1769 23.1943 64.091 23.8584 64.8822 23.4559L70.4252 20.6357C70.735 20.4781 71.1015 20.4781 71.4113 20.6357L76.9543 23.4559C77.7456 23.8584 78.6597 23.1943 78.5213 22.3174L77.5521 16.1742C77.4979 15.8309 77.6111 15.4823 77.8568 15.2364L82.2518 10.8362C82.8792 10.208 82.53 9.13345 81.6532 8.99405L75.5112 8.0175C75.1679 7.96292 74.8714 7.74751 74.7135 7.43791L71.8867 1.89825Z" fill="url(#paint22_linear_1461_1793)"/>
<path d="M70.4464 7.33671C70.6557 6.97487 71.1781 6.97487 71.3875 7.33671L73.0431 10.1982C73.12 10.3312 73.2498 10.4255 73.4001 10.4576L76.6331 11.1479C77.0419 11.2352 77.2034 11.732 76.9239 12.0429L74.7141 14.5017C74.6114 14.616 74.5618 14.7685 74.5777 14.9214L74.9203 18.2095C74.9636 18.6253 74.541 18.9324 74.1589 18.7627L71.1376 17.4208C70.9971 17.3584 70.8368 17.3584 70.6963 17.4208L67.675 18.7627C67.2929 18.9324 66.8703 18.6253 66.9136 18.2095L67.2561 14.9214C67.2721 14.7685 67.2225 14.616 67.1198 14.5017L64.9099 12.0429C64.6305 11.732 64.7919 11.2352 65.2008 11.1479L68.4338 10.4576C68.5841 10.4255 68.7138 10.3312 68.7908 10.1982L70.4464 7.33671Z" fill="url(#paint23_linear_1461_1793)"/>
<path d="M77.8189 11.5965C71.2601 17.7944 65.4023 15.053 63.2933 12.9076C60.0852 8.13998 67.1252 11.9541 73.3632 10.2854C78.3536 8.95044 78.413 10.6032 77.8189 11.5965Z" fill="url(#paint24_linear_1461_1793)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M70.1747 3.13191C70.3087 3.19968 70.3623 3.36321 70.2946 3.49716L69.526 5.0161C69.4583 5.15005 69.2947 5.2037 69.1608 5.13592C69.0268 5.06815 68.9732 4.90462 69.041 4.77068L69.8095 3.25173C69.8773 3.11778 70.0408 3.06414 70.1747 3.13191Z" fill="url(#paint25_linear_1461_1793)"/>
<circle cx="60.7699" cy="9.69466" r="0.271812" fill="url(#paint26_linear_1461_1793)"/>
<circle cx="68.9251" cy="5.52669" r="0.271812" fill="url(#paint27_linear_1461_1793)"/>
<path d="M68.3218 8.33329C66.26 11.2538 66.9968 12.8439 67.623 13.2738C69.5246 14.1321 72.9895 9.06778 73.224 7.72761C73.4584 6.38744 70.899 4.68267 68.3218 8.33329Z" fill="url(#paint28_linear_1461_1793)"/>
</g>
<g opacity="0.5">
<g opacity="0.8" filter="url(#filter3_i_1461_1793)">
<path d="M115.56 16.4411C116.234 16.1554 116.948 16.7545 116.784 17.4682L115.283 23.9866C115.219 24.2661 115.292 24.5594 115.48 24.7759L119.865 29.8268C120.346 30.3798 119.996 31.244 119.267 31.3083L112.604 31.8952C112.318 31.9204 112.062 32.0806 111.914 32.3263L108.465 38.0578C108.088 38.6854 107.158 38.6203 106.871 37.9463L104.254 31.7907C104.142 31.5268 103.91 31.3325 103.631 31.2678L97.1144 29.7593C96.4009 29.5941 96.1754 28.6896 96.7278 28.2088L101.773 23.8175C101.99 23.6292 102.103 23.3489 102.078 23.0632L101.499 16.3994C101.436 15.6698 102.226 15.1758 102.854 15.5526L108.59 18.9943C108.836 19.1418 109.137 19.1629 109.401 19.051L115.56 16.4411Z" fill="url(#paint29_linear_1461_1793)"/>
</g>
<path opacity="0.3" d="M115.56 16.4411C116.234 16.1554 116.948 16.7545 116.784 17.4682L115.283 23.9866C115.219 24.2661 115.292 24.5594 115.48 24.7759L119.865 29.8268C120.346 30.3798 119.996 31.244 119.267 31.3083L112.604 31.8952C112.318 31.9204 112.062 32.0806 111.914 32.3263L108.465 38.0578C108.088 38.6854 107.158 38.6203 106.871 37.9463L104.254 31.7907C104.142 31.5268 103.91 31.3325 103.631 31.2678L97.1144 29.7593C96.4009 29.5941 96.1754 28.6896 96.7278 28.2088L101.773 23.8175C101.99 23.6292 102.103 23.3489 102.078 23.0632L101.499 16.3994C101.436 15.6698 102.226 15.1758 102.854 15.5526L108.59 18.9943C108.836 19.1418 109.137 19.1629 109.401 19.051L115.56 16.4411Z" fill="url(#paint30_linear_1461_1793)"/>
<path opacity="0.3" d="M115.216 16.5866C116.034 16.2402 116.899 16.9665 116.7 17.8316L115.305 23.8923C115.227 24.231 115.315 24.5866 115.543 24.849L119.621 29.5452C120.203 30.2155 119.779 31.2631 118.895 31.341L112.7 31.8867C112.354 31.9172 112.043 32.1114 111.864 32.4093L108.657 37.7383C108.2 38.4989 107.073 38.4201 106.725 37.6031L104.292 31.8798C104.156 31.5599 103.875 31.3244 103.536 31.246L97.4774 29.8433C96.6126 29.6431 96.3392 28.5468 97.0089 27.964L101.7 23.881C101.962 23.6528 102.1 23.3131 102.069 22.9668L101.531 16.7709C101.454 15.8865 102.413 15.2877 103.174 15.7445L108.507 18.9445C108.805 19.1233 109.17 19.1489 109.49 19.0133L115.216 16.5866Z" fill="url(#paint31_linear_1461_1793)"/>
<path opacity="0.3" d="M115.216 16.5866C116.034 16.2402 116.899 16.9665 116.7 17.8316L115.305 23.8923C115.227 24.231 115.315 24.5866 115.543 24.849L119.621 29.5452C120.203 30.2155 119.779 31.2631 118.895 31.341L112.7 31.8867C112.354 31.9172 112.043 32.1114 111.864 32.4093L108.657 37.7383C108.2 38.4989 107.073 38.4201 106.725 37.6031L104.292 31.8798C104.156 31.5599 103.875 31.3244 103.536 31.246L97.4774 29.8433C96.6126 29.6431 96.3392 28.5468 97.0089 27.964L101.7 23.881C101.962 23.6528 102.1 23.3131 102.069 22.9668L101.531 16.7709C101.454 15.8865 102.413 15.2877 103.174 15.7445L108.507 18.9445C108.805 19.1233 109.17 19.1489 109.49 19.0133L115.216 16.5866Z" fill="url(#paint32_linear_1461_1793)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M114.952 23.811L116.347 17.7503C116.48 17.1736 115.903 16.6894 115.358 16.9203L109.632 19.3469C109.205 19.5278 108.717 19.4937 108.32 19.2552L102.987 16.0553C102.48 15.7508 101.841 16.1499 101.892 16.7395L102.431 22.9354C102.471 23.3971 102.288 23.8502 101.938 24.1544L97.2468 28.2374C96.8004 28.6259 96.9826 29.3568 97.5592 29.4903L103.618 30.8929C104.07 30.9974 104.444 31.3115 104.625 31.738L107.059 37.4613C107.29 38.006 108.042 38.0585 108.347 37.5514L111.553 32.2224C111.792 31.8253 112.206 31.5664 112.668 31.5257L118.863 30.98C119.453 30.9281 119.735 30.2297 119.347 29.7828L115.27 25.0866C114.966 24.7367 114.848 24.2626 114.952 23.811ZM116.7 17.8316C116.899 16.9665 116.034 16.2402 115.216 16.5866L109.49 19.0133C109.17 19.1489 108.805 19.1233 108.507 18.9445L103.174 15.7445C102.413 15.2877 101.454 15.8865 101.531 16.7709L102.069 22.9668C102.1 23.3131 101.962 23.6528 101.7 23.881L97.0089 27.964C96.3392 28.5468 96.6126 29.6431 97.4774 29.8433L103.536 31.246C103.875 31.3244 104.156 31.5599 104.292 31.8798L106.725 37.6031C107.073 38.4201 108.2 38.4989 108.657 37.7383L111.864 32.4093C112.043 32.1114 112.354 31.9172 112.7 31.8867L118.895 31.341C119.779 31.2631 120.203 30.2155 119.621 29.5452L115.543 24.849C115.315 24.5866 115.227 24.231 115.305 23.8923L116.7 17.8316Z" fill="url(#paint33_linear_1461_1793)"/>
<path d="M112.499 20.9283C112.715 20.8499 112.935 21.0345 112.896 21.261L112.233 25.0407C112.218 25.1239 112.24 25.2095 112.292 25.2762L114.651 28.3023C114.793 28.4836 114.685 28.7499 114.457 28.7821L110.658 29.3197C110.574 29.3315 110.499 29.3783 110.452 29.4483L108.303 32.6277C108.174 32.8182 107.888 32.7981 107.787 32.5916L106.102 29.1441C106.064 29.0682 105.997 29.0115 105.916 28.9881L102.228 27.927C102.007 27.8634 101.937 27.5846 102.103 27.4248L104.861 24.7566C104.921 24.6978 104.954 24.616 104.951 24.5315L104.821 20.6964C104.813 20.4666 105.057 20.3143 105.26 20.4221L108.65 22.2205C108.725 22.2601 108.813 22.2663 108.892 22.2374L112.499 20.9283Z" fill="url(#paint34_linear_1461_1793)"/>
<path opacity="0.3" d="M115.011 29.0746C106.003 29.6066 103.278 23.7412 103.041 20.7421C103.648 15.0277 106.59 22.4747 112.441 25.2062C117.122 27.3913 116.105 28.6956 115.011 29.0746Z" fill="url(#paint35_linear_1461_1793)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M114.596 17.676C114.655 17.814 114.591 17.9737 114.453 18.0328L112.888 18.7024C112.75 18.7614 112.591 18.6974 112.532 18.5594C112.472 18.4214 112.537 18.2616 112.675 18.2026L114.24 17.533C114.378 17.4739 114.537 17.538 114.596 17.676Z" fill="url(#paint36_linear_1461_1793)"/>
<circle cx="103.173" cy="16.6588" r="0.271812" transform="rotate(40 103.173 16.6588)" fill="url(#paint37_linear_1461_1793)"/>
<circle cx="112.099" cy="18.7076" r="0.271812" transform="rotate(40 112.099 18.7076)" fill="url(#paint38_linear_1461_1793)"/>
<path opacity="0.3" d="M109.833 20.4695C106.376 21.3815 105.918 23.0732 106.122 23.805C107.027 25.6849 112.936 24.0326 113.977 23.1566C115.018 22.2807 114.154 19.3296 109.833 20.4695Z" fill="url(#paint39_linear_1461_1793)"/>
</g>
<g opacity="0.5">
<g opacity="0.8" filter="url(#filter4_i_1461_1793)">
<path d="M127.701 45.5657C128.034 44.9134 128.966 44.9134 129.299 45.5657L132.339 51.5238C132.47 51.7792 132.714 51.9569 132.997 52.0019L139.603 53.0523C140.327 53.1673 140.615 54.0538 140.097 54.572L135.37 59.3046C135.167 59.5074 135.074 59.795 135.119 60.0782L136.161 66.6854C136.275 67.4089 135.521 67.9568 134.868 67.6246L128.907 64.5915C128.651 64.4615 128.349 64.4615 128.093 64.5915L122.132 67.6246C121.479 67.9568 120.725 67.4089 120.839 66.6854L121.881 60.0782C121.926 59.795 121.833 59.5074 121.63 59.3046L116.903 54.572C116.385 54.0538 116.673 53.1673 117.397 53.0523L124.003 52.0019C124.286 51.9569 124.53 51.7792 124.661 51.5238L127.701 45.5657Z" fill="url(#paint40_linear_1461_1793)"/>
</g>
<path opacity="0.3" d="M127.701 45.5657C128.034 44.9134 128.966 44.9134 129.299 45.5657L132.339 51.5238C132.47 51.7792 132.714 51.9569 132.997 52.0019L139.603 53.0523C140.327 53.1673 140.615 54.0538 140.097 54.572L135.37 59.3046C135.167 59.5074 135.074 59.795 135.119 60.0782L136.161 66.6854C136.275 67.4089 135.521 67.9568 134.868 67.6246L128.907 64.5915C128.651 64.4615 128.349 64.4615 128.093 64.5915L122.132 67.6246C121.479 67.9568 120.725 67.4089 120.839 66.6854L121.881 60.0782C121.926 59.795 121.833 59.5074 121.63 59.3046L116.903 54.572C116.385 54.0538 116.673 53.1673 117.397 53.0523L124.003 52.0019C124.286 51.9569 124.53 51.7792 124.661 51.5238L127.701 45.5657Z" fill="url(#paint41_linear_1461_1793)"/>
<path opacity="0.3" d="M127.532 45.8978C127.935 45.107 129.065 45.107 129.469 45.8978L132.295 51.4374C132.453 51.747 132.75 51.9624 133.093 52.017L139.235 52.9936C140.112 53.133 140.461 54.2075 139.834 54.8357L135.439 59.2359C135.193 59.4818 135.08 59.8304 135.134 60.1737L136.103 66.3169C136.242 67.1938 135.328 67.858 134.536 67.4554L128.993 64.6352C128.684 64.4776 128.317 64.4776 128.007 64.6352L122.464 67.4554C121.673 67.858 120.759 67.1938 120.897 66.3169L121.866 60.1737C121.921 59.8304 121.807 59.4818 121.562 59.2359L117.167 54.8357C116.539 54.2075 116.889 53.133 117.765 52.9936L123.907 52.017C124.251 51.9624 124.547 51.747 124.705 51.4374L127.532 45.8978Z" fill="url(#paint42_linear_1461_1793)"/>
<path opacity="0.3" d="M127.532 45.8978C127.935 45.107 129.065 45.107 129.469 45.8978L132.295 51.4374C132.453 51.747 132.75 51.9624 133.093 52.017L139.235 52.9936C140.112 53.133 140.461 54.2075 139.834 54.8357L135.439 59.2359C135.193 59.4818 135.08 59.8304 135.134 60.1737L136.103 66.3169C136.242 67.1938 135.328 67.858 134.536 67.4554L128.993 64.6352C128.684 64.4776 128.317 64.4776 128.007 64.6352L122.464 67.4554C121.673 67.858 120.759 67.1938 120.897 66.3169L121.866 60.1737C121.921 59.8304 121.807 59.4818 121.562 59.2359L117.167 54.8357C116.539 54.2075 116.889 53.133 117.765 52.9936L123.907 52.017C124.251 51.9624 124.547 51.747 124.705 51.4374L127.532 45.8978Z" fill="url(#paint43_linear_1461_1793)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M131.973 51.6021L129.146 46.0625C128.877 45.5353 128.124 45.5353 127.855 46.0625L125.028 51.6021C124.817 52.0149 124.422 52.3022 123.964 52.3749L117.822 53.3515C117.238 53.4444 117.005 54.1608 117.423 54.5795L121.818 58.9798C122.146 59.3077 122.297 59.7724 122.224 60.2302L121.255 66.3734C121.163 66.958 121.772 67.4008 122.3 67.1324L127.843 64.3122C128.256 64.1021 128.745 64.1021 129.158 64.3122L134.701 67.1324C135.228 67.4008 135.838 66.958 135.745 66.3734L134.776 60.2302C134.704 59.7724 134.855 59.3077 135.182 58.9798L139.577 54.5795C139.996 54.1608 139.763 53.4444 139.178 53.3515L133.036 52.3749C132.579 52.3022 132.183 52.0149 131.973 51.6021ZM129.469 45.8978C129.065 45.107 127.935 45.107 127.532 45.8978L124.705 51.4374C124.547 51.747 124.251 51.9624 123.907 52.017L117.765 52.9936C116.889 53.133 116.539 54.2075 117.167 54.8357L121.562 59.2359C121.807 59.4818 121.921 59.8304 121.866 60.1737L120.897 66.3169C120.759 67.1938 121.673 67.858 122.464 67.4554L128.007 64.6352C128.317 64.4776 128.684 64.4776 128.993 64.6352L134.536 67.4554C135.328 67.858 136.242 67.1938 136.103 66.3169L135.134 60.1737C135.08 59.8304 135.193 59.4818 135.439 59.2359L139.834 54.8357C140.461 54.2075 140.112 53.133 139.235 52.9936L133.093 52.017C132.75 51.9624 132.453 51.747 132.295 51.4374L129.469 45.8978Z" fill="url(#paint44_linear_1461_1793)"/>
<path d="M128.241 50.9707C128.356 50.7717 128.644 50.7717 128.759 50.9707L130.68 54.2922C130.723 54.3654 130.794 54.4172 130.877 54.4349L134.63 55.2362C134.854 55.2842 134.943 55.5574 134.79 55.7284L132.224 58.5825C132.168 58.6454 132.141 58.7293 132.149 58.8134L132.547 62.6301C132.571 62.8588 132.338 63.0276 132.128 62.9343L128.621 61.3767C128.544 61.3424 128.456 61.3424 128.379 61.3767L124.872 62.9343C124.661 63.0276 124.429 62.8588 124.453 62.6301L124.85 58.8134C124.859 58.7293 124.832 58.6454 124.775 58.5825L122.21 55.7284C122.057 55.5574 122.145 55.2842 122.37 55.2362L126.123 54.4349C126.206 54.4172 126.277 54.3654 126.319 54.2922L128.241 50.9707Z" fill="url(#paint45_linear_1461_1793)"/>
<path opacity="0.3" d="M135.401 55.596C128.842 61.7939 122.984 59.0525 120.875 56.9071C117.667 52.1395 124.707 55.9536 130.945 54.2849C135.936 52.9499 135.995 54.6027 135.401 55.596Z" fill="url(#paint46_linear_1461_1793)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M127.757 47.1314C127.891 47.1992 127.944 47.3627 127.877 47.4967L127.108 49.0156C127.04 49.1496 126.877 49.2032 126.743 49.1354C126.609 49.0677 126.555 48.9041 126.623 48.7702L127.392 47.2512C127.459 47.1173 127.623 47.0636 127.757 47.1314Z" fill="url(#paint47_linear_1461_1793)"/>
<circle cx="118.353" cy="53.6942" r="0.271812" fill="url(#paint48_linear_1461_1793)"/>
<circle cx="126.507" cy="49.5267" r="0.271812" fill="url(#paint49_linear_1461_1793)"/>
<path opacity="0.3" d="M125.904 52.3333C123.842 55.2538 124.579 56.8439 125.205 57.2738C127.107 58.1321 130.572 53.0678 130.806 51.7276C131.04 50.3874 128.481 48.6827 125.904 52.3333Z" fill="url(#paint50_linear_1461_1793)"/>
</g>
<defs>
<filter id="filter0_i_1461_1793" x="21.1133" y="14.1757" width="23.2529" height="24.4898" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1461_1793"/>
</filter>
<filter id="filter1_i_1461_1793" x="1.84766" y="43.4926" width="23.3047" height="24.0836" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1461_1793"/>
</filter>
<filter id="filter2_i_1461_1793" x="59.2646" y="-0.507393" width="23.3047" height="24.0836" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1461_1793"/>
</filter>
<filter id="filter3_i_1461_1793" x="96.4189" y="13.6108" width="23.667" height="24.8814" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1461_1793"/>
</filter>
<filter id="filter4_i_1461_1793" x="116.64" y="43.2646" width="23.7207" height="24.4595" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1461_1793"/>
</filter>
<linearGradient id="paint0_linear_1461_1793" x1="23.823" y1="16.1559" x2="41.1783" y2="36.8391" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint1_linear_1461_1793" x1="23.823" y1="16.1559" x2="41.1783" y2="36.8391" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint2_linear_1461_1793" x1="24.6618" y1="17.1553" x2="38.9774" y2="34.216" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint3_linear_1461_1793" x1="24.6618" y1="17.1553" x2="38.9774" y2="34.216" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint4_linear_1461_1793" x1="24.6618" y1="17.1553" x2="38.9774" y2="34.216" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint5_linear_1461_1793" x1="28.0162" y1="21.1533" x2="36.985" y2="31.8419" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint6_linear_1461_1793" x1="29.6272" y1="24.0593" x2="33.238" y2="28.3625" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint7_linear_1461_1793" x1="24.8753" y1="19.309" x2="26.1687" y2="20.943" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint8_linear_1461_1793" x1="22.2814" y1="29.833" x2="22.2814" y2="30.3766" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint9_linear_1461_1793" x1="25.8488" y1="21.3994" x2="25.8488" y2="21.943" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint10_linear_1461_1793" x1="27.0364" y1="23.868" x2="31.3425" y2="24.4777" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint11_linear_1461_1793" x1="13.5" y1="44" x2="19.5705" y2="67.4664" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<linearGradient id="paint12_linear_1461_1793" x1="13.5003" y1="43.9999" x2="19.5707" y2="67.4663" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<radialGradient id="paint13_radial_1461_1793" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(10.3291 54.0569) rotate(52.6712) scale(15.8381)">
<stop offset="0.738765" stop-color="#9CB6DD" stop-opacity="0"/>
<stop offset="0.89825" stop-color="#C6F1FF" stop-opacity="0.37"/>
<stop offset="1" stop-color="#EFFBFF" stop-opacity="0.7"/>
</radialGradient>
<linearGradient id="paint14_linear_1461_1793" x1="21.111" y1="62.1207" x2="8.60766" y2="50.7952" gradientUnits="userSpaceOnUse">
<stop stop-color="#D8F6FF" stop-opacity="0.63"/>
<stop offset="0.218803" stop-color="#A0D2FF" stop-opacity="0"/>
<stop offset="0.491108" stop-color="#8DC8FF" stop-opacity="0.56"/>
<stop offset="0.733041" stop-color="#9ADBF8"/>
<stop offset="1" stop-color="white" stop-opacity="0"/>
<stop offset="1" stop-color="#BAEAFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint15_linear_1461_1793" x1="13.4999" y1="50.5234" x2="13.3187" y2="62.5738" gradientUnits="userSpaceOnUse">
<stop stop-color="#9BE1FF"/>
<stop offset="0.277442" stop-color="#9BE1FF" stop-opacity="0.51"/>
<stop offset="1" stop-color="#CDDEE6" stop-opacity="0.15"/>
</linearGradient>
<linearGradient id="paint16_linear_1461_1793" x1="12.9164" y1="55.1192" x2="12.8266" y2="59.4018" gradientUnits="userSpaceOnUse">
<stop stop-color="#C4C4C4" stop-opacity="0"/>
<stop offset="0.731853" stop-color="#DBF6FF" stop-opacity="0.46"/>
</linearGradient>
<linearGradient id="paint17_linear_1461_1793" x1="11.7157" y1="52.7239" x2="14.1222" y2="54.9953" gradientUnits="userSpaceOnUse">
<stop offset="0.223958" stop-color="#DBF6FF" stop-opacity="0.35"/>
<stop offset="1" stop-color="#C4C4C4" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint18_linear_1461_1793" x1="70.917" y1="0" x2="70.917" y2="27" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint19_linear_1461_1793" x1="70.917" y1="0" x2="70.917" y2="27" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint20_linear_1461_1793" x1="70.9183" y1="1.30518" x2="70.9183" y2="23.5763" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint21_linear_1461_1793" x1="70.9183" y1="1.30518" x2="70.9183" y2="23.5763" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint22_linear_1461_1793" x1="70.9183" y1="1.30518" x2="70.9183" y2="23.5763" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint23_linear_1461_1793" x1="70.9169" y1="6.52344" x2="70.9169" y2="20.4765" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint24_linear_1461_1793" x1="70.2832" y1="9.78564" x2="70.2832" y2="15.4031" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint25_linear_1461_1793" x1="69.6975" y1="3.09233" x2="69.638" y2="5.1755" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint26_linear_1461_1793" x1="60.7699" y1="9.42285" x2="60.7699" y2="9.96648" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint27_linear_1461_1793" x1="68.9251" y1="5.25488" x2="68.9251" y2="5.79851" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint28_linear_1461_1793" x1="68.4224" y1="7.97366" x2="71.3291" y2="11.2086" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint29_linear_1461_1793" x1="117.179" y1="15.7553" x2="99.8232" y2="36.4385" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint30_linear_1461_1793" x1="117.179" y1="15.7553" x2="99.8232" y2="36.4385" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint31_linear_1461_1793" x1="116.34" y1="16.7548" x2="102.024" y2="33.8155" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint32_linear_1461_1793" x1="116.34" y1="16.7548" x2="102.024" y2="33.8155" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint33_linear_1461_1793" x1="116.34" y1="16.7548" x2="102.024" y2="33.8155" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint34_linear_1461_1793" x1="112.985" y1="20.752" x2="104.016" y2="31.4406" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint35_linear_1461_1793" x1="110.403" y1="22.8435" x2="106.792" y2="27.1467" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint36_linear_1461_1793" x1="114.256" y1="17.3389" x2="112.872" y2="18.8965" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint37_linear_1461_1793" x1="103.173" y1="16.387" x2="103.173" y2="16.9306" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint38_linear_1461_1793" x1="112.099" y1="18.4358" x2="112.099" y2="18.9795" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint39_linear_1461_1793" x1="110.141" y1="20.2587" x2="110.288" y2="24.6052" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint40_linear_1461_1793" x1="128.5" y1="44" x2="128.5" y2="71" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint41_linear_1461_1793" x1="128.5" y1="44" x2="128.5" y2="71" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint42_linear_1461_1793" x1="128.5" y1="45.3047" x2="128.5" y2="67.5758" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint43_linear_1461_1793" x1="128.5" y1="45.3047" x2="128.5" y2="67.5758" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint44_linear_1461_1793" x1="128.5" y1="45.3047" x2="128.5" y2="67.5758" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint45_linear_1461_1793" x1="128.5" y1="50.5234" x2="128.5" y2="64.4765" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint46_linear_1461_1793" x1="127.865" y1="53.7852" x2="127.865" y2="59.4026" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint47_linear_1461_1793" x1="127.28" y1="47.0918" x2="127.22" y2="49.175" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint48_linear_1461_1793" x1="118.353" y1="53.4224" x2="118.353" y2="53.966" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint49_linear_1461_1793" x1="126.507" y1="49.2549" x2="126.507" y2="49.7985" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint50_linear_1461_1793" x1="126.004" y1="51.9737" x2="128.911" y2="55.2086" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 45 KiB

View File

@@ -0,0 +1,4 @@
<svg width="71" height="40" viewBox="0 0 71 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M38.72 32.6V15.11L33.32 17.9V12.11L39.59 8.9H44.3V32.6H38.72ZM52.7996 33.02C51.8396 33.02 51.0496 32.71 50.4296 32.09C49.8296 31.47 49.5296 30.68 49.5296 29.72C49.5296 28.76 49.8296 27.97 50.4296 27.35C51.0496 26.73 51.8396 26.42 52.7996 26.42C53.7796 26.42 54.5796 26.73 55.1996 27.35C55.8196 27.97 56.1296 28.76 56.1296 29.72C56.1296 30.68 55.8196 31.47 55.1996 32.09C54.5796 32.71 53.7796 33.02 52.7996 33.02ZM61.1614 32.6V15.11L55.7614 17.9V12.11L62.0314 8.9H66.7414V32.6H61.1614Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 746 B

View File

@@ -0,0 +1,4 @@
<svg width="78" height="40" viewBox="0 0 78 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M38.72 32.6V15.11L33.32 17.9V12.11L39.59 8.9H44.3V32.6H38.72ZM52.7996 33.02C51.8396 33.02 51.0496 32.71 50.4296 32.09C49.8296 31.47 49.5296 30.68 49.5296 29.72C49.5296 28.76 49.8296 27.97 50.4296 27.35C51.0496 26.73 51.8396 26.42 52.7996 26.42C53.7796 26.42 54.5796 26.73 55.1996 27.35C55.8196 27.97 56.1296 28.76 56.1296 29.72C56.1296 30.68 55.8196 31.47 55.1996 32.09C54.5796 32.71 53.7796 33.02 52.7996 33.02ZM67.0805 13.58C66.2205 13.58 65.4805 13.84 64.8605 14.36C64.2405 14.86 63.7105 15.63 63.2705 16.67L58.9205 13.7C59.5805 12.22 60.6005 10.99 61.9805 10.01C63.3605 9.01 65.1205 8.5 67.2605 8.48C68.9205 8.48 70.3505 8.79 71.5505 9.41C72.7705 10.01 73.7005 10.87 74.3405 11.99C74.9805 13.09 75.3005 14.36 75.3005 15.8C75.3005 17.08 74.9905 18.31 74.3705 19.49C73.7705 20.67 72.9005 21.85 71.7605 23.03L64.8905 30.17L63.6905 27.38H75.7805V32.6H58.9505V28.91L67.4105 20.24C68.2305 19.38 68.8005 18.64 69.1205 18.02C69.4405 17.4 69.6005 16.76 69.6005 16.1C69.6005 15.34 69.3805 14.73 68.9405 14.27C68.5205 13.81 67.9005 13.58 67.0805 13.58Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,4 @@
<svg width="77" height="40" viewBox="0 0 77 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M38.72 32.6V15.11L33.32 17.9V12.11L39.59 8.9H44.3V32.6H38.72ZM52.7996 33.02C51.8396 33.02 51.0496 32.71 50.4296 32.09C49.8296 31.47 49.5296 30.68 49.5296 29.72C49.5296 28.76 49.8296 27.97 50.4296 27.35C51.0496 26.73 51.8396 26.42 52.7996 26.42C53.7796 26.42 54.5796 26.73 55.1996 27.35C55.8196 27.97 56.1296 28.76 56.1296 29.72C56.1296 30.68 55.8196 31.47 55.1996 32.09C54.5796 32.71 53.7796 33.02 52.7996 33.02ZM66.6774 33.02C64.5774 33.02 62.8274 32.53 61.4274 31.55C60.0274 30.57 59.0074 29.32 58.3674 27.8L62.7174 24.86C63.1374 25.9 63.6574 26.68 64.2774 27.2C64.8974 27.72 65.6774 27.98 66.6174 27.98C67.2174 27.98 67.7474 27.87 68.2074 27.65C68.6874 27.41 69.0474 27.07 69.2874 26.63C69.5474 26.19 69.6774 25.67 69.6774 25.07C69.6774 24.47 69.5474 23.95 69.2874 23.51C69.0474 23.05 68.6974 22.7 68.2374 22.46C67.7974 22.2 67.2774 22.06 66.6774 22.04C66.2774 22.02 65.9174 22.07 65.5974 22.19C65.2974 22.29 64.9174 22.48 64.4574 22.76L61.3974 18.95L69.5874 11.39L70.9074 14.12H59.2674V8.9H74.1174V13.43L68.7474 17.81L68.8074 17.96C69.9674 17.96 71.0374 18.27 72.0174 18.89C72.9974 19.49 73.7674 20.34 74.3274 21.44C74.9074 22.52 75.1974 23.73 75.1974 25.07C75.1974 26.61 74.8274 27.98 74.0874 29.18C73.3674 30.38 72.3574 31.32 71.0574 32C69.7774 32.68 68.3174 33.02 66.6774 33.02Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,4 @@
<svg width="78" height="40" viewBox="0 0 78 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M38.72 32.6V15.11L33.32 17.9V12.11L39.59 8.9H44.3V32.6H38.72ZM52.7996 33.02C51.8396 33.02 51.0496 32.71 50.4296 32.09C49.8296 31.47 49.5296 30.68 49.5296 29.72C49.5296 28.76 49.8296 27.97 50.4296 27.35C51.0496 26.73 51.8396 26.42 52.7996 26.42C53.7796 26.42 54.5796 26.73 55.1996 27.35C55.8196 27.97 56.1296 28.76 56.1296 29.72C56.1296 30.68 55.8196 31.47 55.1996 32.09C54.5796 32.71 53.7796 33.02 52.7996 33.02ZM73.7567 32.6H68.1767V11.21H70.2467L64.3367 23.24H76.6667V28.46H57.8567V25.04L66.0467 8.9H73.7567V32.6Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 777 B

View File

@@ -0,0 +1,4 @@
<svg width="77" height="40" viewBox="0 0 77 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M38.72 32.6V15.11L33.32 17.9V12.11L39.59 8.9H44.3V32.6H38.72ZM52.7996 33.02C51.8396 33.02 51.0496 32.71 50.4296 32.09C49.8296 31.47 49.5296 30.68 49.5296 29.72C49.5296 28.76 49.8296 27.97 50.4296 27.35C51.0496 26.73 51.8396 26.42 52.7996 26.42C53.7796 26.42 54.5796 26.73 55.1996 27.35C55.8196 27.97 56.1296 28.76 56.1296 29.72C56.1296 30.68 55.8196 31.47 55.1996 32.09C54.5796 32.71 53.7796 33.02 52.7996 33.02ZM62.9525 25.1C63.3525 26.06 63.8625 26.78 64.4825 27.26C65.1225 27.74 65.8625 27.98 66.7025 27.98C67.3625 27.98 67.9325 27.86 68.4125 27.62C68.9125 27.38 69.2925 27.04 69.5525 26.6C69.8325 26.14 69.9725 25.6 69.9725 24.98C69.9725 24.34 69.8425 23.79 69.5825 23.33C69.3225 22.87 68.9425 22.52 68.4425 22.28C67.9625 22.04 67.3825 21.92 66.7025 21.92C65.9825 21.92 65.3325 22.1 64.7525 22.46C64.1925 22.82 63.7625 23.35 63.4625 24.05L58.7525 21.92L59.7425 8.9H74.3825V13.94H64.9925L64.5125 18.86L62.8025 18.95C63.3825 18.31 64.1325 17.82 65.0525 17.48C65.9725 17.12 66.9225 16.94 67.9025 16.94C69.4625 16.94 70.8125 17.27 71.9525 17.93C73.0925 18.57 73.9625 19.49 74.5625 20.69C75.1825 21.87 75.4925 23.25 75.4925 24.83C75.4925 26.51 75.1325 27.97 74.4125 29.21C73.6925 30.43 72.6525 31.37 71.2925 32.03C69.9525 32.69 68.3625 33.02 66.5225 33.02C64.6425 33.02 62.9825 32.6 61.5425 31.76C60.1225 30.9 59.0825 29.7 58.4225 28.16L62.9525 25.1Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1,325 @@
<svg width="142" height="71" viewBox="0 0 142 71" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_i_1461_1795)">
<path d="M24.3011 18.2322C24.1019 17.3671 24.9675 16.6408 25.7849 16.9872L31.5111 19.4139C31.8311 19.5495 32.1967 19.5239 32.4948 19.3451L37.8276 16.1451C38.5888 15.6883 39.547 16.2871 39.4701 17.1715L38.9318 23.3674C38.9017 23.7137 39.039 24.0534 39.3012 24.2816L43.9924 28.3646C44.6621 28.9474 44.3887 30.0437 43.5239 30.2439L37.4649 31.6466C37.1263 31.725 36.8455 31.9605 36.7095 32.2804L34.2761 38.0037C33.9287 38.8207 32.8016 38.8995 32.3439 38.1389L29.1376 32.8099C28.9584 32.512 28.6476 32.3178 28.3014 32.2873L22.1062 31.7416C21.2218 31.6637 20.7986 30.6161 21.3806 29.9458L25.458 25.2496C25.6859 24.9872 25.7745 24.6316 25.6965 24.2929L24.3011 18.2322Z" fill="#43628F"/>
</g>
<path d="M24.3011 18.2322C24.1019 17.3671 24.9675 16.6408 25.7849 16.9872L31.5111 19.4139C31.8311 19.5495 32.1967 19.5239 32.4948 19.3451L37.8276 16.1451C38.5888 15.6883 39.547 16.2871 39.4701 17.1715L38.9318 23.3674C38.9017 23.7137 39.039 24.0534 39.3012 24.2816L43.9924 28.3646C44.6621 28.9474 44.3887 30.0437 43.5239 30.2439L37.4649 31.6466C37.1263 31.725 36.8455 31.9605 36.7095 32.2804L34.2761 38.0037C33.9287 38.8207 32.8016 38.8995 32.3439 38.1389L29.1376 32.8099C28.9584 32.512 28.6476 32.3178 28.3014 32.2873L22.1062 31.7416C21.2218 31.6637 20.7986 30.6161 21.3806 29.9458L25.458 25.2496C25.6859 24.9872 25.7745 24.6316 25.6965 24.2929L24.3011 18.2322Z" fill="url(#paint0_linear_1461_1795)"/>
<path d="M24.3021 18.2322C24.1029 17.367 24.9685 16.6408 25.7859 16.9871L31.5121 19.4138C31.8321 19.5494 32.1977 19.5238 32.4958 19.345L37.8286 16.145C38.5898 15.6883 39.548 16.287 39.4711 17.1714L38.9328 23.3673C38.9027 23.7136 39.04 24.0534 39.3022 24.2815L43.9934 28.3645C44.6631 28.9473 44.3897 30.0436 43.5249 30.2439L37.4659 31.6465C37.1273 31.7249 36.8465 31.9604 36.7105 32.2803L34.2771 38.0037C33.9297 38.8206 32.8026 38.8995 32.3449 38.1388L29.1386 32.8098C28.9594 32.512 28.6486 32.3178 28.3024 32.2873L22.1072 31.7415C21.2228 31.6636 20.7996 30.616 21.3816 29.9457L25.459 25.2496C25.6868 24.9871 25.7755 24.6315 25.6975 24.2928L24.3021 18.2322Z" fill="url(#paint1_linear_1461_1795)"/>
<path d="M24.3021 18.2322C24.1029 17.367 24.9685 16.6408 25.7859 16.9871L31.5121 19.4138C31.8321 19.5494 32.1977 19.5238 32.4958 19.345L37.8286 16.145C38.5898 15.6883 39.548 16.287 39.4711 17.1714L38.9328 23.3673C38.9027 23.7136 39.04 24.0534 39.3022 24.2815L43.9934 28.3645C44.6631 28.9473 44.3897 30.0436 43.5249 30.2439L37.4659 31.6465C37.1273 31.7249 36.8465 31.9604 36.7105 32.2803L34.2771 38.0037C33.9297 38.8206 32.8026 38.8995 32.3449 38.1388L29.1386 32.8098C28.9594 32.512 28.6486 32.3178 28.3024 32.2873L22.1072 31.7415C21.2228 31.6636 20.7996 30.616 21.3816 29.9457L25.459 25.2496C25.6868 24.9871 25.7755 24.6315 25.6975 24.2928L24.3021 18.2322Z" fill="url(#paint2_radial_1461_1795)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.3707 19.7475L25.6445 17.3208C25.0995 17.0899 24.5225 17.5741 24.6553 18.1509L26.0507 24.2115C26.1547 24.6631 26.0365 25.1372 25.7326 25.4872L21.6553 30.1833C21.2672 30.6302 21.5494 31.3286 22.139 31.3805L28.3342 31.9262C28.7958 31.9669 29.2102 32.2258 29.4491 32.6229L32.6554 37.9519C32.9606 38.4591 33.712 38.4065 33.9436 37.8619L36.377 32.1385C36.5583 31.712 36.9327 31.3979 37.3841 31.2934L43.4431 29.8908C44.0197 29.7573 44.2019 29.0264 43.7555 28.6379L39.0642 24.5549C38.7147 24.2507 38.5316 23.7976 38.5717 23.3359L39.1101 17.1401C39.1613 16.5504 38.5225 16.1513 38.015 16.4558L32.6822 19.6558C32.2848 19.8942 31.7974 19.9283 31.3707 19.7475ZM25.7859 16.9871C24.9685 16.6408 24.1029 17.367 24.3021 18.2322L25.6975 24.2928C25.7755 24.6315 25.6868 24.9871 25.459 25.2496L21.3816 29.9457C20.7996 30.616 21.2228 31.6636 22.1072 31.7415L28.3024 32.2873C28.6486 32.3178 28.9594 32.512 29.1386 32.8098L32.3449 38.1388C32.8026 38.8995 33.9297 38.8206 34.2771 38.0037L36.7105 32.2803C36.8465 31.9604 37.1273 31.7249 37.4659 31.6465L43.5249 30.2439C44.3897 30.0436 44.6631 28.9473 43.9934 28.3645L39.3022 24.2815C39.04 24.0534 38.9027 23.7136 38.9328 23.3673L39.4711 17.1714C39.548 16.287 38.5898 15.6883 37.8286 16.145L32.4958 19.345C32.1977 19.5238 31.8321 19.5494 31.5121 19.4138L25.7859 16.9871Z" fill="url(#paint3_linear_1461_1795)"/>
<path d="M28.1785 22.0787C28.1063 21.667 28.5065 21.3312 28.8994 21.4738L32.007 22.6017C32.1515 22.6541 32.3114 22.6429 32.4472 22.5709L35.3676 21.0215C35.7369 20.8256 36.1799 21.1024 36.1657 21.5202L36.0533 24.8242C36.0481 24.9778 36.1082 25.1265 36.2186 25.2334L38.5946 27.5321C38.895 27.8227 38.7687 28.3296 38.3669 28.4452L35.1899 29.3593C35.0422 29.4018 34.9194 29.5049 34.8519 29.643L33.3999 32.613C33.2163 32.9886 32.6952 33.025 32.4611 32.6786L30.61 29.9396C30.5239 29.8123 30.3879 29.7273 30.2357 29.7058L26.9624 29.2427C26.5485 29.1841 26.3528 28.6998 26.6099 28.3701L28.6428 25.7631C28.7373 25.6419 28.7761 25.4864 28.7496 25.3349L28.1785 22.0787Z" fill="url(#paint4_linear_1461_1795)"/>
<path d="M36.5639 20.6026C35.5235 29.5664 29.2741 31.2317 26.2794 30.9439C20.7573 29.3538 28.6019 27.7503 32.3078 22.4623C35.2726 18.2319 36.3805 19.4598 36.5639 20.6026Z" fill="url(#paint5_linear_1461_1795)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.2673 19.0325C25.4134 18.9983 25.5596 19.0891 25.5938 19.2353L25.9815 20.8929C26.0156 21.0391 25.9249 21.1853 25.7787 21.2194C25.6325 21.2536 25.4863 21.1628 25.4521 21.0167L25.0645 19.3591C25.0303 19.2129 25.1211 19.0667 25.2673 19.0325Z" fill="#93D6F6"/>
<circle cx="22.2814" cy="30.1053" r="0.271812" transform="rotate(-40 22.2814 30.1053)" fill="#93D6F6"/>
<circle cx="25.8488" cy="21.6712" r="0.271812" transform="rotate(-40 25.8488 21.6712)" fill="#93D6F6"/>
<path d="M27.1915 24.2082C27.4893 27.7707 29.0758 28.5151 29.8319 28.442C31.8403 27.8772 31.2393 21.7705 30.5575 20.5931C29.8756 19.4158 26.8192 19.755 27.1915 24.2082Z" fill="url(#paint6_linear_1461_1795)" fill-opacity="0.6"/>
<g filter="url(#filter1_i_1461_1795)">
<path d="M12.5315 45.8979C12.9351 45.1071 14.0649 45.1071 14.4685 45.8979L17.2952 51.4376C17.4532 51.7472 17.7497 51.9626 18.0929 52.0171L24.235 52.9937C25.1117 53.1331 25.4609 54.2077 24.8335 54.8358L20.4385 59.2361C20.1929 59.482 20.0796 59.8305 20.1338 60.1738L21.103 66.3171C21.2414 67.194 20.3273 67.8581 19.5361 67.4555L13.993 64.6354C13.6832 64.4778 13.3168 64.4778 13.007 64.6354L7.46395 67.4555C6.67271 67.8581 5.75861 67.194 5.89696 66.3171L6.8662 60.1738C6.92037 59.8305 6.80713 59.482 6.5615 59.2361L2.16648 54.8358C1.53911 54.2077 1.88826 53.1331 2.76501 52.9937L8.90707 52.0171C9.25033 51.9626 9.54681 51.7472 9.70479 51.4376L12.5315 45.8979Z" fill="#43628F"/>
</g>
<path d="M12.5315 45.8979C12.9351 45.1071 14.0649 45.1071 14.4685 45.8979L17.2952 51.4376C17.4532 51.7472 17.7497 51.9626 18.0929 52.0171L24.235 52.9937C25.1117 53.1331 25.4609 54.2077 24.8335 54.8358L20.4385 59.2361C20.1929 59.482 20.0796 59.8305 20.1338 60.1738L21.103 66.3171C21.2414 67.194 20.3273 67.8581 19.5361 67.4555L13.993 64.6354C13.6832 64.4778 13.3168 64.4778 13.007 64.6354L7.46395 67.4555C6.67271 67.8581 5.75861 67.194 5.89696 66.3171L6.8662 60.1738C6.92037 59.8305 6.80713 59.482 6.5615 59.2361L2.16648 54.8358C1.53911 54.2077 1.88826 53.1331 2.76501 52.9937L8.90707 52.0171C9.25033 51.9626 9.54681 51.7472 9.70479 51.4376L12.5315 45.8979Z" fill="url(#paint7_linear_1461_1795)"/>
<path d="M12.5318 45.8978C12.9353 45.107 14.0652 45.107 14.4687 45.8978L17.2955 51.4374C17.4535 51.747 17.75 51.9624 18.0932 52.017L24.2353 52.9936C25.112 53.133 25.4612 54.2075 24.8338 54.8357L20.4388 59.2359C20.1932 59.4818 20.0799 59.8304 20.1341 60.1737L21.1033 66.3169C21.2417 67.1938 20.3276 67.858 19.5363 67.4554L13.9933 64.6352C13.6835 64.4776 13.3171 64.4776 13.0073 64.6352L7.46425 67.4554C6.673 67.858 5.7589 67.1938 5.89726 66.3169L6.8665 60.1737C6.92067 59.8304 6.80742 59.4818 6.56179 59.2359L2.16677 54.8357C1.5394 54.2075 1.88856 53.133 2.76531 52.9936L8.90736 52.017C9.25062 51.9624 9.54711 51.747 9.70509 51.4374L12.5318 45.8978Z" fill="url(#paint8_linear_1461_1795)"/>
<path d="M12.5318 45.8978C12.9353 45.107 14.0652 45.107 14.4687 45.8978L17.2955 51.4374C17.4535 51.747 17.75 51.9624 18.0932 52.017L24.2353 52.9936C25.112 53.133 25.4612 54.2075 24.8338 54.8357L20.4388 59.2359C20.1932 59.4818 20.0799 59.8304 20.1341 60.1737L21.1033 66.3169C21.2417 67.1938 20.3276 67.858 19.5363 67.4554L13.9933 64.6352C13.6835 64.4776 13.3171 64.4776 13.0073 64.6352L7.46425 67.4554C6.673 67.858 5.7589 67.1938 5.89726 66.3169L6.8665 60.1737C6.92067 59.8304 6.80742 59.4818 6.56179 59.2359L2.16677 54.8357C1.5394 54.2075 1.88856 53.133 2.76531 52.9936L8.90736 52.017C9.25062 51.9624 9.54711 51.747 9.70509 51.4374L12.5318 45.8978Z" fill="url(#paint9_radial_1461_1795)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.9727 51.6021L14.1459 46.0625C13.8769 45.5353 13.1237 45.5353 12.8547 46.0625L10.0279 51.6021C9.81726 52.0149 9.42195 52.3022 8.96427 52.3749L2.82222 53.3515C2.23771 53.4444 2.00494 54.1608 2.42319 54.5795L6.81821 58.9798C7.14571 59.3077 7.29671 59.7724 7.22448 60.2302L6.25524 66.3734C6.16301 66.958 6.77241 67.4008 7.2999 67.1324L12.8429 64.3122C13.256 64.1021 13.7446 64.1021 14.1577 64.3122L19.7007 67.1324C20.2282 67.4008 20.8376 66.958 20.7453 66.3734L19.7761 60.2302C19.7039 59.7724 19.8549 59.3077 20.1824 58.9798L24.5774 54.5796C24.9956 54.1608 24.7629 53.4444 24.1784 53.3515L18.0363 52.3749C17.5786 52.3022 17.1833 52.0149 16.9727 51.6021ZM14.4687 45.8978C14.0652 45.107 12.9353 45.107 12.5318 45.8978L9.70509 51.4374C9.54711 51.747 9.25062 51.9624 8.90736 52.017L2.76531 52.9936C1.88856 53.133 1.5394 54.2075 2.16677 54.8357L6.56179 59.2359C6.80742 59.4818 6.92067 59.8304 6.8665 60.1737L5.89726 66.3169C5.7589 67.1938 6.673 67.858 7.46425 67.4554L13.0073 64.6352C13.3171 64.4776 13.6835 64.4776 13.9933 64.6352L19.5363 67.4554C20.3276 67.858 21.2417 67.1938 21.1033 66.3169L20.1341 60.1737C20.0799 59.8304 20.1932 59.4818 20.4388 59.2359L24.8338 54.8357C25.4612 54.2075 25.112 53.133 24.2353 52.9936L18.0932 52.017C17.75 51.9624 17.4535 51.747 17.2955 51.4374L14.4687 45.8978Z" fill="url(#paint10_linear_1461_1795)"/>
<path d="M13.0294 51.3367C13.2388 50.9749 13.7611 50.9749 13.9705 51.3367L15.6261 54.1982C15.7031 54.3312 15.8328 54.4255 15.9831 54.4576L19.2161 55.1479C19.625 55.2352 19.7864 55.732 19.5069 56.0429L17.2971 58.5017C17.1944 58.616 17.1448 58.7685 17.1607 58.9214L17.5033 62.2095C17.5466 62.6253 17.124 62.9324 16.7419 62.7627L13.7206 61.4208C13.5801 61.3584 13.4198 61.3584 13.2793 61.4208L10.258 62.7627C9.87591 62.9324 9.4533 62.6253 9.49661 62.2095L9.83915 58.9214C9.85507 58.7685 9.80553 58.616 9.70277 58.5017L7.49296 56.0429C7.21352 55.732 7.37494 55.2352 7.78377 55.1479L11.0168 54.4576C11.1671 54.4255 11.2968 54.3312 11.3738 54.1982L13.0294 51.3367Z" fill="url(#paint11_linear_1461_1795)"/>
<path d="M20.4019 55.596C13.8431 61.7939 7.98533 59.0525 5.8763 56.9071C2.66819 52.1395 9.70821 55.9536 15.9462 54.2849C20.9366 52.9499 20.996 54.6027 20.4019 55.596Z" fill="url(#paint12_linear_1461_1795)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7568 47.1314C12.8907 47.1992 12.9444 47.3627 12.8766 47.4967L12.1081 49.0156C12.0403 49.1496 11.8768 49.2032 11.7428 49.1354C11.6089 49.0677 11.5552 48.9041 11.623 48.7702L12.3915 47.2512C12.4593 47.1173 12.6228 47.0636 12.7568 47.1314Z" fill="#93D6F6"/>
<circle cx="3.35287" cy="53.6947" r="0.271812" fill="#93D6F6"/>
<circle cx="11.5072" cy="49.5267" r="0.271812" fill="#93D6F6"/>
<path d="M10.9048 52.3333C8.843 55.2538 9.57983 56.8439 10.206 57.2738C12.1076 58.1321 15.5725 53.0678 15.807 51.7276C16.0415 50.3874 13.482 48.6827 10.9048 52.3333Z" fill="url(#paint13_linear_1461_1795)" fill-opacity="0.6"/>
<g opacity="0.5">
<g filter="url(#filter2_i_1461_1795)">
<path d="M69.9485 1.8979C70.352 1.10714 71.4819 1.10714 71.8854 1.8979L74.7122 7.43756C74.8702 7.74716 75.1667 7.96257 75.5099 8.01715L81.652 8.9937C82.5287 9.1331 82.8779 10.2077 82.2505 10.8358L77.8555 15.2361C77.6099 15.482 77.4966 15.8305 77.5508 16.1738L78.52 22.3171C78.6584 23.194 77.7443 23.8581 76.953 23.4555L71.41 20.6354C71.1002 20.4778 70.7338 20.4778 70.424 20.6354L64.8809 23.4555C64.0897 23.8581 63.1756 23.194 63.314 22.3171L64.2832 16.1738C64.3374 15.8305 64.2241 15.482 63.9785 15.2361L59.5835 10.8358C58.9561 10.2077 59.3053 9.1331 60.182 8.9937L66.3241 8.01715C66.6673 7.96257 66.9638 7.74716 67.1218 7.43756L69.9485 1.8979Z" fill="url(#paint14_linear_1461_1795)"/>
</g>
<path d="M69.9485 1.8979C70.352 1.10714 71.4819 1.10714 71.8854 1.8979L74.7122 7.43756C74.8702 7.74716 75.1667 7.96257 75.5099 8.01715L81.652 8.9937C82.5287 9.1331 82.8779 10.2077 82.2505 10.8358L77.8555 15.2361C77.6099 15.482 77.4966 15.8305 77.5508 16.1738L78.52 22.3171C78.6584 23.194 77.7443 23.8581 76.953 23.4555L71.41 20.6354C71.1002 20.4778 70.7338 20.4778 70.424 20.6354L64.8809 23.4555C64.0897 23.8581 63.1756 23.194 63.314 22.3171L64.2832 16.1738C64.3374 15.8305 64.2241 15.482 63.9785 15.2361L59.5835 10.8358C58.9561 10.2077 59.3053 9.1331 60.182 8.9937L66.3241 8.01715C66.6673 7.96257 66.9638 7.74716 67.1218 7.43756L69.9485 1.8979Z" fill="url(#paint15_linear_1461_1795)"/>
<path d="M69.9498 1.89825C70.3533 1.10749 71.4832 1.10748 71.8867 1.89825L74.7135 7.43791C74.8714 7.74751 75.1679 7.96292 75.5112 8.0175L81.6532 8.99405C82.53 9.13345 82.8792 10.208 82.2518 10.8362L77.8568 15.2364C77.6111 15.4823 77.4979 15.8309 77.5521 16.1742L78.5213 22.3174C78.6597 23.1943 77.7456 23.8584 76.9543 23.4559L71.4113 20.6357C71.1015 20.4781 70.735 20.4781 70.4252 20.6357L64.8822 23.4559C64.091 23.8584 63.1769 23.1943 63.3152 22.3174L64.2845 16.1742C64.3386 15.8309 64.2254 15.4823 63.9798 15.2364L59.5847 10.8362C58.9574 10.208 59.3065 9.13345 60.1833 8.99405L66.3253 8.0175C66.6686 7.96292 66.9651 7.74751 67.1231 7.43791L69.9498 1.89825Z" fill="url(#paint16_linear_1461_1795)"/>
<path d="M69.9498 1.89825C70.3533 1.10749 71.4832 1.10748 71.8867 1.89825L74.7135 7.43791C74.8714 7.74751 75.1679 7.96292 75.5112 8.0175L81.6532 8.99405C82.53 9.13345 82.8792 10.208 82.2518 10.8362L77.8568 15.2364C77.6111 15.4823 77.4979 15.8309 77.5521 16.1742L78.5213 22.3174C78.6597 23.1943 77.7456 23.8584 76.9543 23.4559L71.4113 20.6357C71.1015 20.4781 70.735 20.4781 70.4252 20.6357L64.8822 23.4559C64.091 23.8584 63.1769 23.1943 63.3152 22.3174L64.2845 16.1742C64.3386 15.8309 64.2254 15.4823 63.9798 15.2364L59.5847 10.8362C58.9574 10.208 59.3065 9.13345 60.1833 8.99405L66.3253 8.0175C66.6686 7.96292 66.9651 7.74751 67.1231 7.43791L69.9498 1.89825Z" fill="url(#paint17_linear_1461_1795)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M74.3907 7.60264L71.5639 2.06297C71.2949 1.5358 70.5416 1.5358 70.2726 2.06297L67.4459 7.60264C67.2352 8.01544 66.8399 8.30265 66.3822 8.37542L60.2402 9.35197C59.6557 9.4449 59.4229 10.1613 59.8412 10.58L64.2362 14.9803C64.5637 15.3082 64.7147 15.7729 64.6425 16.2307L63.6732 22.3739C63.581 22.9585 64.1904 23.4012 64.7179 23.1329L70.2609 20.3127C70.6739 20.1026 71.1626 20.1026 71.5756 20.3127L77.1187 23.1329C77.6461 23.4012 78.2555 22.9585 78.1633 22.3739L77.1941 16.2307C77.1218 15.7729 77.2728 15.3082 77.6003 14.9803L81.9954 10.58C82.4136 10.1613 82.1808 9.4449 81.5963 9.35197L75.4543 8.37542C74.9966 8.30265 74.6013 8.01544 74.3907 7.60264ZM71.8867 1.89825C71.4832 1.10748 70.3533 1.10749 69.9498 1.89825L67.1231 7.43791C66.9651 7.74751 66.6686 7.96292 66.3253 8.0175L60.1833 8.99405C59.3065 9.13345 58.9574 10.208 59.5847 10.8362L63.9798 15.2364C64.2254 15.4823 64.3386 15.8309 64.2845 16.1742L63.3152 22.3174C63.1769 23.1943 64.091 23.8584 64.8822 23.4559L70.4252 20.6357C70.735 20.4781 71.1015 20.4781 71.4113 20.6357L76.9543 23.4559C77.7456 23.8584 78.6597 23.1943 78.5213 22.3174L77.5521 16.1742C77.4979 15.8309 77.6111 15.4823 77.8568 15.2364L82.2518 10.8362C82.8792 10.208 82.53 9.13345 81.6532 8.99405L75.5112 8.0175C75.1679 7.96292 74.8714 7.74751 74.7135 7.43791L71.8867 1.89825Z" fill="url(#paint18_linear_1461_1795)"/>
<path d="M70.4464 7.33671C70.6557 6.97487 71.1781 6.97487 71.3875 7.33671L73.0431 10.1982C73.12 10.3312 73.2498 10.4255 73.4001 10.4576L76.6331 11.1479C77.0419 11.2352 77.2034 11.732 76.9239 12.0429L74.7141 14.5017C74.6114 14.616 74.5618 14.7685 74.5777 14.9214L74.9203 18.2095C74.9636 18.6253 74.541 18.9324 74.1589 18.7627L71.1376 17.4208C70.9971 17.3584 70.8368 17.3584 70.6963 17.4208L67.675 18.7627C67.2929 18.9324 66.8703 18.6253 66.9136 18.2095L67.2561 14.9214C67.2721 14.7685 67.2225 14.616 67.1198 14.5017L64.9099 12.0429C64.6305 11.732 64.7919 11.2352 65.2008 11.1479L68.4338 10.4576C68.5841 10.4255 68.7138 10.3312 68.7908 10.1982L70.4464 7.33671Z" fill="url(#paint19_linear_1461_1795)"/>
<path d="M77.8189 11.5965C71.2601 17.7944 65.4023 15.053 63.2933 12.9076C60.0852 8.13998 67.1252 11.9541 73.3632 10.2854C78.3536 8.95044 78.413 10.6032 77.8189 11.5965Z" fill="url(#paint20_linear_1461_1795)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M70.1747 3.13191C70.3087 3.19968 70.3623 3.36321 70.2946 3.49716L69.526 5.0161C69.4583 5.15005 69.2947 5.2037 69.1608 5.13592C69.0268 5.06815 68.9732 4.90462 69.041 4.77068L69.8095 3.25173C69.8773 3.11778 70.0408 3.06414 70.1747 3.13191Z" fill="url(#paint21_linear_1461_1795)"/>
<circle cx="60.7699" cy="9.69466" r="0.271812" fill="url(#paint22_linear_1461_1795)"/>
<circle cx="68.9251" cy="5.52669" r="0.271812" fill="url(#paint23_linear_1461_1795)"/>
<path d="M68.3218 8.33329C66.26 11.2538 66.9968 12.8439 67.623 13.2738C69.5246 14.1321 72.9895 9.06778 73.224 7.72761C73.4584 6.38744 70.899 4.68267 68.3218 8.33329Z" fill="url(#paint24_linear_1461_1795)"/>
</g>
<g opacity="0.5">
<g opacity="0.8" filter="url(#filter3_i_1461_1795)">
<path d="M115.56 16.4411C116.234 16.1554 116.948 16.7545 116.784 17.4682L115.283 23.9866C115.219 24.2661 115.292 24.5594 115.48 24.7759L119.865 29.8268C120.346 30.3798 119.996 31.244 119.267 31.3083L112.604 31.8952C112.318 31.9204 112.062 32.0806 111.914 32.3263L108.465 38.0578C108.088 38.6854 107.158 38.6203 106.871 37.9463L104.254 31.7907C104.142 31.5268 103.91 31.3325 103.631 31.2678L97.1144 29.7593C96.4009 29.5941 96.1754 28.6896 96.7278 28.2088L101.773 23.8175C101.99 23.6292 102.103 23.3489 102.078 23.0632L101.499 16.3994C101.436 15.6698 102.226 15.1758 102.854 15.5526L108.59 18.9943C108.836 19.1418 109.137 19.1629 109.401 19.051L115.56 16.4411Z" fill="url(#paint25_linear_1461_1795)"/>
</g>
<path opacity="0.3" d="M115.56 16.4411C116.234 16.1554 116.948 16.7545 116.784 17.4682L115.283 23.9866C115.219 24.2661 115.292 24.5594 115.48 24.7759L119.865 29.8268C120.346 30.3798 119.996 31.244 119.267 31.3083L112.604 31.8952C112.318 31.9204 112.062 32.0806 111.914 32.3263L108.465 38.0578C108.088 38.6854 107.158 38.6203 106.871 37.9463L104.254 31.7907C104.142 31.5268 103.91 31.3325 103.631 31.2678L97.1144 29.7593C96.4009 29.5941 96.1754 28.6896 96.7278 28.2088L101.773 23.8175C101.99 23.6292 102.103 23.3489 102.078 23.0632L101.499 16.3994C101.436 15.6698 102.226 15.1758 102.854 15.5526L108.59 18.9943C108.836 19.1418 109.137 19.1629 109.401 19.051L115.56 16.4411Z" fill="url(#paint26_linear_1461_1795)"/>
<path opacity="0.3" d="M115.216 16.5866C116.034 16.2402 116.899 16.9665 116.7 17.8316L115.305 23.8923C115.227 24.231 115.315 24.5866 115.543 24.849L119.621 29.5452C120.203 30.2155 119.779 31.2631 118.895 31.341L112.7 31.8867C112.354 31.9172 112.043 32.1114 111.864 32.4093L108.657 37.7383C108.2 38.4989 107.073 38.4201 106.725 37.6031L104.292 31.8798C104.156 31.5599 103.875 31.3244 103.536 31.246L97.4774 29.8433C96.6126 29.6431 96.3392 28.5468 97.0089 27.964L101.7 23.881C101.962 23.6528 102.1 23.3131 102.069 22.9668L101.531 16.7709C101.454 15.8865 102.413 15.2877 103.174 15.7445L108.507 18.9445C108.805 19.1233 109.17 19.1489 109.49 19.0133L115.216 16.5866Z" fill="url(#paint27_linear_1461_1795)"/>
<path opacity="0.3" d="M115.216 16.5866C116.034 16.2402 116.899 16.9665 116.7 17.8316L115.305 23.8923C115.227 24.231 115.315 24.5866 115.543 24.849L119.621 29.5452C120.203 30.2155 119.779 31.2631 118.895 31.341L112.7 31.8867C112.354 31.9172 112.043 32.1114 111.864 32.4093L108.657 37.7383C108.2 38.4989 107.073 38.4201 106.725 37.6031L104.292 31.8798C104.156 31.5599 103.875 31.3244 103.536 31.246L97.4774 29.8433C96.6126 29.6431 96.3392 28.5468 97.0089 27.964L101.7 23.881C101.962 23.6528 102.1 23.3131 102.069 22.9668L101.531 16.7709C101.454 15.8865 102.413 15.2877 103.174 15.7445L108.507 18.9445C108.805 19.1233 109.17 19.1489 109.49 19.0133L115.216 16.5866Z" fill="url(#paint28_linear_1461_1795)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M114.952 23.811L116.347 17.7503C116.48 17.1736 115.903 16.6894 115.358 16.9203L109.632 19.3469C109.205 19.5278 108.717 19.4937 108.32 19.2552L102.987 16.0553C102.48 15.7508 101.841 16.1499 101.892 16.7395L102.431 22.9354C102.471 23.3971 102.288 23.8502 101.938 24.1544L97.2468 28.2374C96.8004 28.6259 96.9826 29.3568 97.5592 29.4903L103.618 30.8929C104.07 30.9974 104.444 31.3115 104.625 31.738L107.059 37.4613C107.29 38.006 108.042 38.0585 108.347 37.5514L111.553 32.2224C111.792 31.8253 112.206 31.5664 112.668 31.5257L118.863 30.98C119.453 30.9281 119.735 30.2297 119.347 29.7828L115.27 25.0866C114.966 24.7367 114.848 24.2626 114.952 23.811ZM116.7 17.8316C116.899 16.9665 116.034 16.2402 115.216 16.5866L109.49 19.0133C109.17 19.1489 108.805 19.1233 108.507 18.9445L103.174 15.7445C102.413 15.2877 101.454 15.8865 101.531 16.7709L102.069 22.9668C102.1 23.3131 101.962 23.6528 101.7 23.881L97.0089 27.964C96.3392 28.5468 96.6126 29.6431 97.4774 29.8433L103.536 31.246C103.875 31.3244 104.156 31.5599 104.292 31.8798L106.725 37.6031C107.073 38.4201 108.2 38.4989 108.657 37.7383L111.864 32.4093C112.043 32.1114 112.354 31.9172 112.7 31.8867L118.895 31.341C119.779 31.2631 120.203 30.2155 119.621 29.5452L115.543 24.849C115.315 24.5866 115.227 24.231 115.305 23.8923L116.7 17.8316Z" fill="url(#paint29_linear_1461_1795)"/>
<path d="M112.499 20.9283C112.715 20.8499 112.935 21.0345 112.896 21.261L112.233 25.0407C112.218 25.1239 112.24 25.2095 112.292 25.2762L114.651 28.3023C114.793 28.4836 114.685 28.7499 114.457 28.7821L110.658 29.3197C110.574 29.3315 110.499 29.3783 110.452 29.4483L108.303 32.6277C108.174 32.8182 107.888 32.7981 107.787 32.5916L106.102 29.1441C106.064 29.0682 105.997 29.0115 105.916 28.9881L102.228 27.927C102.007 27.8634 101.937 27.5846 102.103 27.4248L104.861 24.7566C104.921 24.6978 104.954 24.616 104.951 24.5315L104.821 20.6964C104.813 20.4666 105.057 20.3143 105.26 20.4221L108.65 22.2205C108.725 22.2601 108.813 22.2663 108.892 22.2374L112.499 20.9283Z" fill="url(#paint30_linear_1461_1795)"/>
<path opacity="0.3" d="M115.011 29.0746C106.003 29.6066 103.278 23.7412 103.041 20.7421C103.648 15.0277 106.59 22.4747 112.441 25.2062C117.122 27.3913 116.105 28.6956 115.011 29.0746Z" fill="url(#paint31_linear_1461_1795)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M114.596 17.676C114.655 17.814 114.591 17.9737 114.453 18.0328L112.888 18.7024C112.75 18.7614 112.591 18.6974 112.532 18.5594C112.472 18.4214 112.537 18.2616 112.675 18.2026L114.24 17.533C114.378 17.4739 114.537 17.538 114.596 17.676Z" fill="url(#paint32_linear_1461_1795)"/>
<circle cx="103.173" cy="16.6588" r="0.271812" transform="rotate(40 103.173 16.6588)" fill="url(#paint33_linear_1461_1795)"/>
<circle cx="112.099" cy="18.7076" r="0.271812" transform="rotate(40 112.099 18.7076)" fill="url(#paint34_linear_1461_1795)"/>
<path opacity="0.3" d="M109.833 20.4695C106.376 21.3815 105.918 23.0732 106.122 23.805C107.027 25.6849 112.936 24.0326 113.977 23.1566C115.018 22.2807 114.154 19.3296 109.833 20.4695Z" fill="url(#paint35_linear_1461_1795)"/>
</g>
<g opacity="0.5">
<g opacity="0.8" filter="url(#filter4_i_1461_1795)">
<path d="M127.701 45.5657C128.034 44.9134 128.966 44.9134 129.299 45.5657L132.339 51.5238C132.47 51.7792 132.714 51.9569 132.997 52.0019L139.603 53.0523C140.327 53.1673 140.615 54.0538 140.097 54.572L135.37 59.3046C135.167 59.5074 135.074 59.795 135.119 60.0782L136.161 66.6854C136.275 67.4089 135.521 67.9568 134.868 67.6246L128.907 64.5915C128.651 64.4615 128.349 64.4615 128.093 64.5915L122.132 67.6246C121.479 67.9568 120.725 67.4089 120.839 66.6854L121.881 60.0782C121.926 59.795 121.833 59.5074 121.63 59.3046L116.903 54.572C116.385 54.0538 116.673 53.1673 117.397 53.0523L124.003 52.0019C124.286 51.9569 124.53 51.7792 124.661 51.5238L127.701 45.5657Z" fill="url(#paint36_linear_1461_1795)"/>
</g>
<path opacity="0.3" d="M127.701 45.5657C128.034 44.9134 128.966 44.9134 129.299 45.5657L132.339 51.5238C132.47 51.7792 132.714 51.9569 132.997 52.0019L139.603 53.0523C140.327 53.1673 140.615 54.0538 140.097 54.572L135.37 59.3046C135.167 59.5074 135.074 59.795 135.119 60.0782L136.161 66.6854C136.275 67.4089 135.521 67.9568 134.868 67.6246L128.907 64.5915C128.651 64.4615 128.349 64.4615 128.093 64.5915L122.132 67.6246C121.479 67.9568 120.725 67.4089 120.839 66.6854L121.881 60.0782C121.926 59.795 121.833 59.5074 121.63 59.3046L116.903 54.572C116.385 54.0538 116.673 53.1673 117.397 53.0523L124.003 52.0019C124.286 51.9569 124.53 51.7792 124.661 51.5238L127.701 45.5657Z" fill="url(#paint37_linear_1461_1795)"/>
<path opacity="0.3" d="M127.532 45.8978C127.935 45.107 129.065 45.107 129.469 45.8978L132.295 51.4374C132.453 51.747 132.75 51.9624 133.093 52.017L139.235 52.9936C140.112 53.133 140.461 54.2075 139.834 54.8357L135.439 59.2359C135.193 59.4818 135.08 59.8304 135.134 60.1737L136.103 66.3169C136.242 67.1938 135.328 67.858 134.536 67.4554L128.993 64.6352C128.684 64.4776 128.317 64.4776 128.007 64.6352L122.464 67.4554C121.673 67.858 120.759 67.1938 120.897 66.3169L121.866 60.1737C121.921 59.8304 121.807 59.4818 121.562 59.2359L117.167 54.8357C116.539 54.2075 116.889 53.133 117.765 52.9936L123.907 52.017C124.251 51.9624 124.547 51.747 124.705 51.4374L127.532 45.8978Z" fill="url(#paint38_linear_1461_1795)"/>
<path opacity="0.3" d="M127.532 45.8978C127.935 45.107 129.065 45.107 129.469 45.8978L132.295 51.4374C132.453 51.747 132.75 51.9624 133.093 52.017L139.235 52.9936C140.112 53.133 140.461 54.2075 139.834 54.8357L135.439 59.2359C135.193 59.4818 135.08 59.8304 135.134 60.1737L136.103 66.3169C136.242 67.1938 135.328 67.858 134.536 67.4554L128.993 64.6352C128.684 64.4776 128.317 64.4776 128.007 64.6352L122.464 67.4554C121.673 67.858 120.759 67.1938 120.897 66.3169L121.866 60.1737C121.921 59.8304 121.807 59.4818 121.562 59.2359L117.167 54.8357C116.539 54.2075 116.889 53.133 117.765 52.9936L123.907 52.017C124.251 51.9624 124.547 51.747 124.705 51.4374L127.532 45.8978Z" fill="url(#paint39_linear_1461_1795)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M131.973 51.6021L129.146 46.0625C128.877 45.5353 128.124 45.5353 127.855 46.0625L125.028 51.6021C124.817 52.0149 124.422 52.3022 123.964 52.3749L117.822 53.3515C117.238 53.4444 117.005 54.1608 117.423 54.5795L121.818 58.9798C122.146 59.3077 122.297 59.7724 122.224 60.2302L121.255 66.3734C121.163 66.958 121.772 67.4008 122.3 67.1324L127.843 64.3122C128.256 64.1021 128.745 64.1021 129.158 64.3122L134.701 67.1324C135.228 67.4008 135.838 66.958 135.745 66.3734L134.776 60.2302C134.704 59.7724 134.855 59.3077 135.182 58.9798L139.577 54.5795C139.996 54.1608 139.763 53.4444 139.178 53.3515L133.036 52.3749C132.579 52.3022 132.183 52.0149 131.973 51.6021ZM129.469 45.8978C129.065 45.107 127.935 45.107 127.532 45.8978L124.705 51.4374C124.547 51.747 124.251 51.9624 123.907 52.017L117.765 52.9936C116.889 53.133 116.539 54.2075 117.167 54.8357L121.562 59.2359C121.807 59.4818 121.921 59.8304 121.866 60.1737L120.897 66.3169C120.759 67.1938 121.673 67.858 122.464 67.4554L128.007 64.6352C128.317 64.4776 128.684 64.4776 128.993 64.6352L134.536 67.4554C135.328 67.858 136.242 67.1938 136.103 66.3169L135.134 60.1737C135.08 59.8304 135.193 59.4818 135.439 59.2359L139.834 54.8357C140.461 54.2075 140.112 53.133 139.235 52.9936L133.093 52.017C132.75 51.9624 132.453 51.747 132.295 51.4374L129.469 45.8978Z" fill="url(#paint40_linear_1461_1795)"/>
<path d="M128.241 50.9707C128.356 50.7717 128.644 50.7717 128.759 50.9707L130.68 54.2922C130.723 54.3654 130.794 54.4172 130.877 54.4349L134.63 55.2362C134.854 55.2842 134.943 55.5574 134.79 55.7284L132.224 58.5825C132.168 58.6454 132.141 58.7293 132.149 58.8134L132.547 62.6301C132.571 62.8588 132.338 63.0276 132.128 62.9343L128.621 61.3767C128.544 61.3424 128.456 61.3424 128.379 61.3767L124.872 62.9343C124.661 63.0276 124.429 62.8588 124.453 62.6301L124.85 58.8134C124.859 58.7293 124.832 58.6454 124.775 58.5825L122.21 55.7284C122.057 55.5574 122.145 55.2842 122.37 55.2362L126.123 54.4349C126.206 54.4172 126.277 54.3654 126.319 54.2922L128.241 50.9707Z" fill="url(#paint41_linear_1461_1795)"/>
<path opacity="0.3" d="M135.401 55.596C128.842 61.7939 122.984 59.0525 120.875 56.9071C117.667 52.1395 124.707 55.9536 130.945 54.2849C135.936 52.9499 135.995 54.6027 135.401 55.596Z" fill="url(#paint42_linear_1461_1795)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M127.757 47.1314C127.891 47.1992 127.944 47.3627 127.877 47.4967L127.108 49.0156C127.04 49.1496 126.877 49.2032 126.743 49.1354C126.609 49.0677 126.555 48.9041 126.623 48.7702L127.392 47.2512C127.459 47.1173 127.623 47.0636 127.757 47.1314Z" fill="url(#paint43_linear_1461_1795)"/>
<circle cx="118.353" cy="53.6942" r="0.271812" fill="url(#paint44_linear_1461_1795)"/>
<circle cx="126.507" cy="49.5267" r="0.271812" fill="url(#paint45_linear_1461_1795)"/>
<path opacity="0.3" d="M125.904 52.3333C123.842 55.2538 124.579 56.8439 125.205 57.2738C127.107 58.1321 130.572 53.0678 130.806 51.7276C131.04 50.3874 128.481 48.6827 125.904 52.3333Z" fill="url(#paint46_linear_1461_1795)"/>
</g>
<defs>
<filter id="filter0_i_1461_1795" x="21.1133" y="14.1757" width="23.2529" height="24.4898" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1461_1795"/>
</filter>
<filter id="filter1_i_1461_1795" x="1.84766" y="43.4926" width="23.3047" height="24.0836" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1461_1795"/>
</filter>
<filter id="filter2_i_1461_1795" x="59.2646" y="-0.507393" width="23.3047" height="24.0836" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1461_1795"/>
</filter>
<filter id="filter3_i_1461_1795" x="96.4189" y="13.6108" width="23.667" height="24.8814" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1461_1795"/>
</filter>
<filter id="filter4_i_1461_1795" x="116.64" y="43.2646" width="23.7207" height="24.4595" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1461_1795"/>
</filter>
<linearGradient id="paint0_linear_1461_1795" x1="23.823" y1="16.1559" x2="43.5572" y2="30.2302" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<linearGradient id="paint1_linear_1461_1795" x1="23.824" y1="16.1558" x2="43.5582" y2="30.2301" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<radialGradient id="paint2_radial_1461_1795" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(27.8593 25.8983) rotate(12.6712) scale(15.8381)">
<stop offset="0.738765" stop-color="#9CB6DD" stop-opacity="0"/>
<stop offset="0.89825" stop-color="#C6F1FF" stop-opacity="0.37"/>
<stop offset="1" stop-color="#EFFBFF" stop-opacity="0.7"/>
</radialGradient>
<linearGradient id="paint3_linear_1461_1795" x1="41.302" y1="25.1451" x2="24.444" y2="24.5062" gradientUnits="userSpaceOnUse">
<stop stop-color="#D8F6FF" stop-opacity="0.63"/>
<stop offset="0.218803" stop-color="#A0D2FF" stop-opacity="0"/>
<stop offset="0.491108" stop-color="#8DC8FF" stop-opacity="0.56"/>
<stop offset="0.733041" stop-color="#9ADBF8"/>
<stop offset="1" stop-color="white" stop-opacity="0"/>
<stop offset="1" stop-color="#BAEAFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint4_linear_1461_1795" x1="28.0162" y1="21.1533" x2="35.6232" y2="30.5009" gradientUnits="userSpaceOnUse">
<stop stop-color="#9BE1FF"/>
<stop offset="0.277442" stop-color="#9BE1FF" stop-opacity="0.51"/>
<stop offset="1" stop-color="#CDDEE6" stop-opacity="0.15"/>
</linearGradient>
<linearGradient id="paint5_linear_1461_1795" x1="30.5231" y1="25.049" x2="33.2072" y2="28.3873" gradientUnits="userSpaceOnUse">
<stop stop-color="#C4C4C4" stop-opacity="0"/>
<stop offset="0.731853" stop-color="#DBF6FF" stop-opacity="0.46"/>
</linearGradient>
<linearGradient id="paint6_linear_1461_1795" x1="28.0638" y1="23.9862" x2="31.3673" y2="24.1793" gradientUnits="userSpaceOnUse">
<stop offset="0.223958" stop-color="#DBF6FF" stop-opacity="0.35"/>
<stop offset="1" stop-color="#C4C4C4" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint7_linear_1461_1795" x1="13.5" y1="44" x2="19.5705" y2="67.4664" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<linearGradient id="paint8_linear_1461_1795" x1="13.5003" y1="43.9999" x2="19.5707" y2="67.4663" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<radialGradient id="paint9_radial_1461_1795" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(10.3291 54.0569) rotate(52.6712) scale(15.8381)">
<stop offset="0.738765" stop-color="#9CB6DD" stop-opacity="0"/>
<stop offset="0.89825" stop-color="#C6F1FF" stop-opacity="0.37"/>
<stop offset="1" stop-color="#EFFBFF" stop-opacity="0.7"/>
</radialGradient>
<linearGradient id="paint10_linear_1461_1795" x1="21.111" y1="62.1207" x2="8.60766" y2="50.7952" gradientUnits="userSpaceOnUse">
<stop stop-color="#D8F6FF" stop-opacity="0.63"/>
<stop offset="0.218803" stop-color="#A0D2FF" stop-opacity="0"/>
<stop offset="0.491108" stop-color="#8DC8FF" stop-opacity="0.56"/>
<stop offset="0.733041" stop-color="#9ADBF8"/>
<stop offset="1" stop-color="white" stop-opacity="0"/>
<stop offset="1" stop-color="#BAEAFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint11_linear_1461_1795" x1="13.4999" y1="50.5234" x2="13.3187" y2="62.5738" gradientUnits="userSpaceOnUse">
<stop stop-color="#9BE1FF"/>
<stop offset="0.277442" stop-color="#9BE1FF" stop-opacity="0.51"/>
<stop offset="1" stop-color="#CDDEE6" stop-opacity="0.15"/>
</linearGradient>
<linearGradient id="paint12_linear_1461_1795" x1="12.9164" y1="55.1192" x2="12.8266" y2="59.4018" gradientUnits="userSpaceOnUse">
<stop stop-color="#C4C4C4" stop-opacity="0"/>
<stop offset="0.731853" stop-color="#DBF6FF" stop-opacity="0.46"/>
</linearGradient>
<linearGradient id="paint13_linear_1461_1795" x1="11.7157" y1="52.7239" x2="14.1222" y2="54.9953" gradientUnits="userSpaceOnUse">
<stop offset="0.223958" stop-color="#DBF6FF" stop-opacity="0.35"/>
<stop offset="1" stop-color="#C4C4C4" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint14_linear_1461_1795" x1="70.917" y1="0" x2="70.917" y2="27" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint15_linear_1461_1795" x1="70.917" y1="0" x2="70.917" y2="27" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint16_linear_1461_1795" x1="70.9183" y1="1.30518" x2="70.9183" y2="23.5763" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint17_linear_1461_1795" x1="70.9183" y1="1.30518" x2="70.9183" y2="23.5763" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint18_linear_1461_1795" x1="70.9183" y1="1.30518" x2="70.9183" y2="23.5763" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint19_linear_1461_1795" x1="70.9169" y1="6.52344" x2="70.9169" y2="20.4765" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint20_linear_1461_1795" x1="70.2832" y1="9.78564" x2="70.2832" y2="15.4031" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint21_linear_1461_1795" x1="69.6975" y1="3.09233" x2="69.638" y2="5.1755" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint22_linear_1461_1795" x1="60.7699" y1="9.42285" x2="60.7699" y2="9.96648" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint23_linear_1461_1795" x1="68.9251" y1="5.25488" x2="68.9251" y2="5.79851" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint24_linear_1461_1795" x1="68.4224" y1="7.97366" x2="71.3291" y2="11.2086" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint25_linear_1461_1795" x1="117.179" y1="15.7553" x2="99.8232" y2="36.4385" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint26_linear_1461_1795" x1="117.179" y1="15.7553" x2="99.8232" y2="36.4385" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint27_linear_1461_1795" x1="116.34" y1="16.7548" x2="102.024" y2="33.8155" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint28_linear_1461_1795" x1="116.34" y1="16.7548" x2="102.024" y2="33.8155" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint29_linear_1461_1795" x1="116.34" y1="16.7548" x2="102.024" y2="33.8155" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint30_linear_1461_1795" x1="112.985" y1="20.752" x2="104.016" y2="31.4406" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint31_linear_1461_1795" x1="110.403" y1="22.8435" x2="106.792" y2="27.1467" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint32_linear_1461_1795" x1="114.256" y1="17.3389" x2="112.872" y2="18.8965" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint33_linear_1461_1795" x1="103.173" y1="16.387" x2="103.173" y2="16.9306" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint34_linear_1461_1795" x1="112.099" y1="18.4358" x2="112.099" y2="18.9795" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint35_linear_1461_1795" x1="110.141" y1="20.2587" x2="110.288" y2="24.6052" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint36_linear_1461_1795" x1="128.5" y1="44" x2="128.5" y2="71" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint37_linear_1461_1795" x1="128.5" y1="44" x2="128.5" y2="71" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint38_linear_1461_1795" x1="128.5" y1="45.3047" x2="128.5" y2="67.5758" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint39_linear_1461_1795" x1="128.5" y1="45.3047" x2="128.5" y2="67.5758" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint40_linear_1461_1795" x1="128.5" y1="45.3047" x2="128.5" y2="67.5758" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint41_linear_1461_1795" x1="128.5" y1="50.5234" x2="128.5" y2="64.4765" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint42_linear_1461_1795" x1="127.865" y1="53.7852" x2="127.865" y2="59.4026" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint43_linear_1461_1795" x1="127.28" y1="47.0918" x2="127.22" y2="49.175" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint44_linear_1461_1795" x1="118.353" y1="53.4224" x2="118.353" y2="53.966" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint45_linear_1461_1795" x1="126.507" y1="49.2549" x2="126.507" y2="49.7985" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint46_linear_1461_1795" x1="126.004" y1="51.9737" x2="128.911" y2="55.2086" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 45 KiB

View File

@@ -0,0 +1,4 @@
<svg width="74" height="40" viewBox="0 0 74 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M41.27 13.58C40.41 13.58 39.67 13.84 39.05 14.36C38.43 14.86 37.9 15.63 37.46 16.67L33.11 13.7C33.77 12.22 34.79 10.99 36.17 10.01C37.55 9.01 39.31 8.5 41.45 8.48C43.11 8.48 44.54 8.79 45.74 9.41C46.96 10.01 47.89 10.87 48.53 11.99C49.17 13.09 49.49 14.36 49.49 15.8C49.49 17.08 49.18 18.31 48.56 19.49C47.96 20.67 47.09 21.85 45.95 23.03L39.08 30.17L37.88 27.38H49.97V32.6H33.14V28.91L41.6 20.24C42.42 19.38 42.99 18.64 43.31 18.02C43.63 17.4 43.79 16.76 43.79 16.1C43.79 15.34 43.57 14.73 43.13 14.27C42.71 13.81 42.09 13.58 41.27 13.58ZM56.1688 33.02C55.2088 33.02 54.4188 32.71 53.7988 32.09C53.1988 31.47 52.8988 30.68 52.8988 29.72C52.8988 28.76 53.1988 27.97 53.7988 27.35C54.4188 26.73 55.2088 26.42 56.1688 26.42C57.1488 26.42 57.9488 26.73 58.5688 27.35C59.1888 27.97 59.4988 28.76 59.4988 29.72C59.4988 30.68 59.1888 31.47 58.5688 32.09C57.9488 32.71 57.1488 33.02 56.1688 33.02ZM64.5305 32.6V15.11L59.1305 17.9V12.11L65.4005 8.9H70.1105V32.6H64.5305Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1,4 @@
<svg width="81" height="40" viewBox="0 0 81 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M41.27 13.58C40.41 13.58 39.67 13.84 39.05 14.36C38.43 14.86 37.9 15.63 37.46 16.67L33.11 13.7C33.77 12.22 34.79 10.99 36.17 10.01C37.55 9.01 39.31 8.5 41.45 8.48C43.11 8.48 44.54 8.79 45.74 9.41C46.96 10.01 47.89 10.87 48.53 11.99C49.17 13.09 49.49 14.36 49.49 15.8C49.49 17.08 49.18 18.31 48.56 19.49C47.96 20.67 47.09 21.85 45.95 23.03L39.08 30.17L37.88 27.38H49.97V32.6H33.14V28.91L41.6 20.24C42.42 19.38 42.99 18.64 43.31 18.02C43.63 17.4 43.79 16.76 43.79 16.1C43.79 15.34 43.57 14.73 43.13 14.27C42.71 13.81 42.09 13.58 41.27 13.58ZM56.1688 33.02C55.2088 33.02 54.4188 32.71 53.7988 32.09C53.1988 31.47 52.8988 30.68 52.8988 29.72C52.8988 28.76 53.1988 27.97 53.7988 27.35C54.4188 26.73 55.2088 26.42 56.1688 26.42C57.1488 26.42 57.9488 26.73 58.5688 27.35C59.1888 27.97 59.4988 28.76 59.4988 29.72C59.4988 30.68 59.1888 31.47 58.5688 32.09C57.9488 32.71 57.1488 33.02 56.1688 33.02ZM70.4497 13.58C69.5897 13.58 68.8497 13.84 68.2297 14.36C67.6097 14.86 67.0797 15.63 66.6397 16.67L62.2897 13.7C62.9497 12.22 63.9697 10.99 65.3497 10.01C66.7297 9.01 68.4897 8.5 70.6297 8.48C72.2897 8.48 73.7197 8.79 74.9197 9.41C76.1397 10.01 77.0697 10.87 77.7097 11.99C78.3497 13.09 78.6697 14.36 78.6697 15.8C78.6697 17.08 78.3597 18.31 77.7397 19.49C77.1397 20.67 76.2697 21.85 75.1297 23.03L68.2597 30.17L67.0597 27.38H79.1497V32.6H62.3197V28.91L70.7797 20.24C71.5997 19.38 72.1697 18.64 72.4897 18.02C72.8097 17.4 72.9697 16.76 72.9697 16.1C72.9697 15.34 72.7497 14.73 72.3097 14.27C71.8897 13.81 71.2697 13.58 70.4497 13.58Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1,4 @@
<svg width="80" height="40" viewBox="0 0 80 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M41.27 13.58C40.41 13.58 39.67 13.84 39.05 14.36C38.43 14.86 37.9 15.63 37.46 16.67L33.11 13.7C33.77 12.22 34.79 10.99 36.17 10.01C37.55 9.01 39.31 8.5 41.45 8.48C43.11 8.48 44.54 8.79 45.74 9.41C46.96 10.01 47.89 10.87 48.53 11.99C49.17 13.09 49.49 14.36 49.49 15.8C49.49 17.08 49.18 18.31 48.56 19.49C47.96 20.67 47.09 21.85 45.95 23.03L39.08 30.17L37.88 27.38H49.97V32.6H33.14V28.91L41.6 20.24C42.42 19.38 42.99 18.64 43.31 18.02C43.63 17.4 43.79 16.76 43.79 16.1C43.79 15.34 43.57 14.73 43.13 14.27C42.71 13.81 42.09 13.58 41.27 13.58ZM56.1688 33.02C55.2088 33.02 54.4188 32.71 53.7988 32.09C53.1988 31.47 52.8988 30.68 52.8988 29.72C52.8988 28.76 53.1988 27.97 53.7988 27.35C54.4188 26.73 55.2088 26.42 56.1688 26.42C57.1488 26.42 57.9488 26.73 58.5688 27.35C59.1888 27.97 59.4988 28.76 59.4988 29.72C59.4988 30.68 59.1888 31.47 58.5688 32.09C57.9488 32.71 57.1488 33.02 56.1688 33.02ZM70.0466 33.02C67.9466 33.02 66.1966 32.53 64.7966 31.55C63.3966 30.57 62.3766 29.32 61.7366 27.8L66.0866 24.86C66.5066 25.9 67.0266 26.68 67.6466 27.2C68.2666 27.72 69.0466 27.98 69.9866 27.98C70.5866 27.98 71.1166 27.87 71.5766 27.65C72.0566 27.41 72.4166 27.07 72.6566 26.63C72.9166 26.19 73.0466 25.67 73.0466 25.07C73.0466 24.47 72.9166 23.95 72.6566 23.51C72.4166 23.05 72.0666 22.7 71.6066 22.46C71.1666 22.2 70.6466 22.06 70.0466 22.04C69.6466 22.02 69.2866 22.07 68.9666 22.19C68.6666 22.29 68.2866 22.48 67.8266 22.76L64.7666 18.95L72.9566 11.39L74.2766 14.12H62.6366V8.9H77.4866V13.43L72.1166 17.81L72.1766 17.96C73.3366 17.96 74.4066 18.27 75.3866 18.89C76.3666 19.49 77.1366 20.34 77.6966 21.44C78.2766 22.52 78.5666 23.73 78.5666 25.07C78.5666 26.61 78.1966 27.98 77.4566 29.18C76.7366 30.38 75.7266 31.32 74.4266 32C73.1466 32.68 71.6866 33.02 70.0466 33.02Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -0,0 +1,4 @@
<svg width="81" height="40" viewBox="0 0 81 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M41.27 13.58C40.41 13.58 39.67 13.84 39.05 14.36C38.43 14.86 37.9 15.63 37.46 16.67L33.11 13.7C33.77 12.22 34.79 10.99 36.17 10.01C37.55 9.01 39.31 8.5 41.45 8.48C43.11 8.48 44.54 8.79 45.74 9.41C46.96 10.01 47.89 10.87 48.53 11.99C49.17 13.09 49.49 14.36 49.49 15.8C49.49 17.08 49.18 18.31 48.56 19.49C47.96 20.67 47.09 21.85 45.95 23.03L39.08 30.17L37.88 27.38H49.97V32.6H33.14V28.91L41.6 20.24C42.42 19.38 42.99 18.64 43.31 18.02C43.63 17.4 43.79 16.76 43.79 16.1C43.79 15.34 43.57 14.73 43.13 14.27C42.71 13.81 42.09 13.58 41.27 13.58ZM56.1688 33.02C55.2088 33.02 54.4188 32.71 53.7988 32.09C53.1988 31.47 52.8988 30.68 52.8988 29.72C52.8988 28.76 53.1988 27.97 53.7988 27.35C54.4188 26.73 55.2088 26.42 56.1688 26.42C57.1488 26.42 57.9488 26.73 58.5688 27.35C59.1888 27.97 59.4988 28.76 59.4988 29.72C59.4988 30.68 59.1888 31.47 58.5688 32.09C57.9488 32.71 57.1488 33.02 56.1688 33.02ZM77.1259 32.6H71.5459V11.21H73.6159L67.7059 23.24H80.0359V28.46H61.2259V25.04L69.4159 8.9H77.1259V32.6Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1,4 @@
<svg width="81" height="40" viewBox="0 0 81 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M41.27 13.58C40.41 13.58 39.67 13.84 39.05 14.36C38.43 14.86 37.9 15.63 37.46 16.67L33.11 13.7C33.77 12.22 34.79 10.99 36.17 10.01C37.55 9.01 39.31 8.5 41.45 8.48C43.11 8.48 44.54 8.79 45.74 9.41C46.96 10.01 47.89 10.87 48.53 11.99C49.17 13.09 49.49 14.36 49.49 15.8C49.49 17.08 49.18 18.31 48.56 19.49C47.96 20.67 47.09 21.85 45.95 23.03L39.08 30.17L37.88 27.38H49.97V32.6H33.14V28.91L41.6 20.24C42.42 19.38 42.99 18.64 43.31 18.02C43.63 17.4 43.79 16.76 43.79 16.1C43.79 15.34 43.57 14.73 43.13 14.27C42.71 13.81 42.09 13.58 41.27 13.58ZM56.1688 33.02C55.2088 33.02 54.4188 32.71 53.7988 32.09C53.1988 31.47 52.8988 30.68 52.8988 29.72C52.8988 28.76 53.1988 27.97 53.7988 27.35C54.4188 26.73 55.2088 26.42 56.1688 26.42C57.1488 26.42 57.9488 26.73 58.5688 27.35C59.1888 27.97 59.4988 28.76 59.4988 29.72C59.4988 30.68 59.1888 31.47 58.5688 32.09C57.9488 32.71 57.1488 33.02 56.1688 33.02ZM66.3216 25.1C66.7216 26.06 67.2316 26.78 67.8516 27.26C68.4916 27.74 69.2316 27.98 70.0716 27.98C70.7316 27.98 71.3016 27.86 71.7816 27.62C72.2816 27.38 72.6616 27.04 72.9216 26.6C73.2016 26.14 73.3416 25.6 73.3416 24.98C73.3416 24.34 73.2116 23.79 72.9516 23.33C72.6916 22.87 72.3116 22.52 71.8116 22.28C71.3316 22.04 70.7516 21.92 70.0716 21.92C69.3516 21.92 68.7016 22.1 68.1216 22.46C67.5616 22.82 67.1316 23.35 66.8316 24.05L62.1216 21.92L63.1116 8.9H77.7516V13.94H68.3616L67.8816 18.86L66.1716 18.95C66.7516 18.31 67.5016 17.82 68.4216 17.48C69.3416 17.12 70.2916 16.94 71.2716 16.94C72.8316 16.94 74.1816 17.27 75.3216 17.93C76.4616 18.57 77.3316 19.49 77.9316 20.69C78.5516 21.87 78.8616 23.25 78.8616 24.83C78.8616 26.51 78.5016 27.97 77.7816 29.21C77.0616 30.43 76.0216 31.37 74.6616 32.03C73.3216 32.69 71.7316 33.02 69.8916 33.02C68.0116 33.02 66.3516 32.6 64.9116 31.76C63.4916 30.9 62.4516 29.7 61.7916 28.16L66.3216 25.1Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -0,0 +1,313 @@
<svg width="142" height="71" viewBox="0 0 142 71" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_i_1461_1867)">
<path d="M24.3011 18.2322C24.1019 17.3671 24.9675 16.6408 25.7849 16.9872L31.5111 19.4139C31.8311 19.5495 32.1967 19.5239 32.4948 19.3451L37.8276 16.1451C38.5888 15.6883 39.547 16.2871 39.4701 17.1715L38.9318 23.3674C38.9017 23.7137 39.039 24.0534 39.3012 24.2816L43.9924 28.3646C44.6621 28.9474 44.3887 30.0437 43.5239 30.2439L37.4649 31.6466C37.1263 31.725 36.8455 31.9605 36.7095 32.2804L34.2761 38.0037C33.9287 38.8207 32.8016 38.8995 32.3439 38.1389L29.1376 32.8099C28.9584 32.512 28.6476 32.3178 28.3014 32.2873L22.1062 31.7416C21.2218 31.6637 20.7986 30.6161 21.3806 29.9458L25.458 25.2496C25.6859 24.9872 25.7745 24.6316 25.6965 24.2929L24.3011 18.2322Z" fill="#43628F"/>
</g>
<path d="M24.3011 18.2322C24.1019 17.3671 24.9675 16.6408 25.7849 16.9872L31.5111 19.4139C31.8311 19.5495 32.1967 19.5239 32.4948 19.3451L37.8276 16.1451C38.5888 15.6883 39.547 16.2871 39.4701 17.1715L38.9318 23.3674C38.9017 23.7137 39.039 24.0534 39.3012 24.2816L43.9924 28.3646C44.6621 28.9474 44.3887 30.0437 43.5239 30.2439L37.4649 31.6466C37.1263 31.725 36.8455 31.9605 36.7095 32.2804L34.2761 38.0037C33.9287 38.8207 32.8016 38.8995 32.3439 38.1389L29.1376 32.8099C28.9584 32.512 28.6476 32.3178 28.3014 32.2873L22.1062 31.7416C21.2218 31.6637 20.7986 30.6161 21.3806 29.9458L25.458 25.2496C25.6859 24.9872 25.7745 24.6316 25.6965 24.2929L24.3011 18.2322Z" fill="url(#paint0_linear_1461_1867)"/>
<path d="M24.3021 18.2322C24.1029 17.367 24.9685 16.6408 25.7859 16.9871L31.5121 19.4138C31.8321 19.5494 32.1977 19.5238 32.4958 19.345L37.8286 16.145C38.5898 15.6883 39.548 16.287 39.4711 17.1714L38.9328 23.3673C38.9027 23.7136 39.04 24.0534 39.3022 24.2815L43.9934 28.3645C44.6631 28.9473 44.3897 30.0436 43.5249 30.2439L37.4659 31.6465C37.1273 31.7249 36.8465 31.9604 36.7105 32.2803L34.2771 38.0037C33.9297 38.8206 32.8026 38.8995 32.3449 38.1388L29.1386 32.8098C28.9594 32.512 28.6486 32.3178 28.3024 32.2873L22.1072 31.7415C21.2228 31.6636 20.7996 30.616 21.3816 29.9457L25.459 25.2496C25.6868 24.9871 25.7755 24.6315 25.6975 24.2928L24.3021 18.2322Z" fill="url(#paint1_linear_1461_1867)"/>
<path d="M24.3021 18.2322C24.1029 17.367 24.9685 16.6408 25.7859 16.9871L31.5121 19.4138C31.8321 19.5494 32.1977 19.5238 32.4958 19.345L37.8286 16.145C38.5898 15.6883 39.548 16.287 39.4711 17.1714L38.9328 23.3673C38.9027 23.7136 39.04 24.0534 39.3022 24.2815L43.9934 28.3645C44.6631 28.9473 44.3897 30.0436 43.5249 30.2439L37.4659 31.6465C37.1273 31.7249 36.8465 31.9604 36.7105 32.2803L34.2771 38.0037C33.9297 38.8206 32.8026 38.8995 32.3449 38.1388L29.1386 32.8098C28.9594 32.512 28.6486 32.3178 28.3024 32.2873L22.1072 31.7415C21.2228 31.6636 20.7996 30.616 21.3816 29.9457L25.459 25.2496C25.6868 24.9871 25.7755 24.6315 25.6975 24.2928L24.3021 18.2322Z" fill="url(#paint2_radial_1461_1867)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.3707 19.7475L25.6445 17.3208C25.0995 17.0899 24.5225 17.5741 24.6553 18.1509L26.0507 24.2115C26.1547 24.6631 26.0365 25.1372 25.7326 25.4872L21.6553 30.1833C21.2672 30.6302 21.5494 31.3286 22.139 31.3805L28.3342 31.9262C28.7958 31.9669 29.2102 32.2258 29.4491 32.6229L32.6554 37.9519C32.9606 38.4591 33.712 38.4065 33.9436 37.8619L36.377 32.1385C36.5583 31.712 36.9327 31.3979 37.3841 31.2934L43.4431 29.8908C44.0197 29.7573 44.2019 29.0264 43.7555 28.6379L39.0642 24.5549C38.7147 24.2507 38.5316 23.7976 38.5717 23.3359L39.1101 17.1401C39.1613 16.5504 38.5225 16.1513 38.015 16.4558L32.6822 19.6558C32.2848 19.8942 31.7974 19.9283 31.3707 19.7475ZM25.7859 16.9871C24.9685 16.6408 24.1029 17.367 24.3021 18.2322L25.6975 24.2928C25.7755 24.6315 25.6868 24.9871 25.459 25.2496L21.3816 29.9457C20.7996 30.616 21.2228 31.6636 22.1072 31.7415L28.3024 32.2873C28.6486 32.3178 28.9594 32.512 29.1386 32.8098L32.3449 38.1388C32.8026 38.8995 33.9297 38.8206 34.2771 38.0037L36.7105 32.2803C36.8465 31.9604 37.1273 31.7249 37.4659 31.6465L43.5249 30.2439C44.3897 30.0436 44.6631 28.9473 43.9934 28.3645L39.3022 24.2815C39.04 24.0534 38.9027 23.7136 38.9328 23.3673L39.4711 17.1714C39.548 16.287 38.5898 15.6883 37.8286 16.145L32.4958 19.345C32.1977 19.5238 31.8321 19.5494 31.5121 19.4138L25.7859 16.9871Z" fill="url(#paint3_linear_1461_1867)"/>
<path d="M28.1785 22.0787C28.1063 21.667 28.5065 21.3312 28.8994 21.4738L32.007 22.6017C32.1515 22.6541 32.3114 22.6429 32.4472 22.5709L35.3676 21.0215C35.7369 20.8256 36.1799 21.1024 36.1657 21.5202L36.0533 24.8242C36.0481 24.9778 36.1082 25.1265 36.2186 25.2334L38.5946 27.5321C38.895 27.8227 38.7687 28.3296 38.3669 28.4452L35.1899 29.3593C35.0422 29.4018 34.9194 29.5049 34.8519 29.643L33.3999 32.613C33.2163 32.9886 32.6952 33.025 32.4611 32.6786L30.61 29.9396C30.5239 29.8123 30.3879 29.7273 30.2357 29.7058L26.9624 29.2427C26.5485 29.1841 26.3528 28.6998 26.6099 28.3701L28.6428 25.7631C28.7373 25.6419 28.7761 25.4864 28.7496 25.3349L28.1785 22.0787Z" fill="url(#paint4_linear_1461_1867)"/>
<path d="M36.5639 20.6026C35.5235 29.5664 29.2741 31.2317 26.2794 30.9439C20.7573 29.3538 28.6019 27.7503 32.3078 22.4623C35.2726 18.2319 36.3805 19.4598 36.5639 20.6026Z" fill="url(#paint5_linear_1461_1867)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.2673 19.0325C25.4134 18.9983 25.5596 19.0891 25.5938 19.2353L25.9815 20.8929C26.0156 21.0391 25.9249 21.1853 25.7787 21.2194C25.6325 21.2536 25.4863 21.1628 25.4521 21.0167L25.0645 19.3591C25.0303 19.2129 25.1211 19.0667 25.2673 19.0325Z" fill="#93D6F6"/>
<circle cx="22.2814" cy="30.1053" r="0.271812" transform="rotate(-40 22.2814 30.1053)" fill="#93D6F6"/>
<circle cx="25.8488" cy="21.6712" r="0.271812" transform="rotate(-40 25.8488 21.6712)" fill="#93D6F6"/>
<path d="M27.1915 24.2082C27.4893 27.7707 29.0758 28.5151 29.8319 28.442C31.8403 27.8772 31.2393 21.7705 30.5575 20.5931C29.8756 19.4158 26.8192 19.755 27.1915 24.2082Z" fill="url(#paint6_linear_1461_1867)" fill-opacity="0.6"/>
<g filter="url(#filter1_i_1461_1867)">
<path d="M12.5315 45.8979C12.9351 45.1071 14.0649 45.1071 14.4685 45.8979L17.2952 51.4376C17.4532 51.7472 17.7497 51.9626 18.0929 52.0171L24.235 52.9937C25.1117 53.1331 25.4609 54.2077 24.8335 54.8358L20.4385 59.2361C20.1929 59.482 20.0796 59.8305 20.1338 60.1738L21.103 66.3171C21.2414 67.194 20.3273 67.8581 19.5361 67.4555L13.993 64.6354C13.6832 64.4778 13.3168 64.4778 13.007 64.6354L7.46395 67.4555C6.67271 67.8581 5.75861 67.194 5.89696 66.3171L6.8662 60.1738C6.92037 59.8305 6.80713 59.482 6.5615 59.2361L2.16648 54.8358C1.53911 54.2077 1.88826 53.1331 2.76501 52.9937L8.90707 52.0171C9.25033 51.9626 9.54681 51.7472 9.70479 51.4376L12.5315 45.8979Z" fill="#43628F"/>
</g>
<path d="M12.5315 45.8979C12.9351 45.1071 14.0649 45.1071 14.4685 45.8979L17.2952 51.4376C17.4532 51.7472 17.7497 51.9626 18.0929 52.0171L24.235 52.9937C25.1117 53.1331 25.4609 54.2077 24.8335 54.8358L20.4385 59.2361C20.1929 59.482 20.0796 59.8305 20.1338 60.1738L21.103 66.3171C21.2414 67.194 20.3273 67.8581 19.5361 67.4555L13.993 64.6354C13.6832 64.4778 13.3168 64.4778 13.007 64.6354L7.46395 67.4555C6.67271 67.8581 5.75861 67.194 5.89696 66.3171L6.8662 60.1738C6.92037 59.8305 6.80713 59.482 6.5615 59.2361L2.16648 54.8358C1.53911 54.2077 1.88826 53.1331 2.76501 52.9937L8.90707 52.0171C9.25033 51.9626 9.54681 51.7472 9.70479 51.4376L12.5315 45.8979Z" fill="url(#paint7_linear_1461_1867)"/>
<path d="M12.5318 45.8978C12.9353 45.107 14.0652 45.107 14.4687 45.8978L17.2955 51.4374C17.4535 51.747 17.75 51.9624 18.0932 52.017L24.2353 52.9936C25.112 53.133 25.4612 54.2075 24.8338 54.8357L20.4388 59.2359C20.1932 59.4818 20.0799 59.8304 20.1341 60.1737L21.1033 66.3169C21.2417 67.1938 20.3276 67.858 19.5363 67.4554L13.9933 64.6352C13.6835 64.4776 13.3171 64.4776 13.0073 64.6352L7.46425 67.4554C6.673 67.858 5.7589 67.1938 5.89726 66.3169L6.8665 60.1737C6.92067 59.8304 6.80742 59.4818 6.56179 59.2359L2.16677 54.8357C1.5394 54.2075 1.88856 53.133 2.76531 52.9936L8.90736 52.017C9.25062 51.9624 9.54711 51.747 9.70509 51.4374L12.5318 45.8978Z" fill="url(#paint8_linear_1461_1867)"/>
<path d="M12.5318 45.8978C12.9353 45.107 14.0652 45.107 14.4687 45.8978L17.2955 51.4374C17.4535 51.747 17.75 51.9624 18.0932 52.017L24.2353 52.9936C25.112 53.133 25.4612 54.2075 24.8338 54.8357L20.4388 59.2359C20.1932 59.4818 20.0799 59.8304 20.1341 60.1737L21.1033 66.3169C21.2417 67.1938 20.3276 67.858 19.5363 67.4554L13.9933 64.6352C13.6835 64.4776 13.3171 64.4776 13.0073 64.6352L7.46425 67.4554C6.673 67.858 5.7589 67.1938 5.89726 66.3169L6.8665 60.1737C6.92067 59.8304 6.80742 59.4818 6.56179 59.2359L2.16677 54.8357C1.5394 54.2075 1.88856 53.133 2.76531 52.9936L8.90736 52.017C9.25062 51.9624 9.54711 51.747 9.70509 51.4374L12.5318 45.8978Z" fill="url(#paint9_radial_1461_1867)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.9727 51.6021L14.1459 46.0625C13.8769 45.5353 13.1237 45.5353 12.8547 46.0625L10.0279 51.6021C9.81726 52.0149 9.42195 52.3022 8.96427 52.3749L2.82222 53.3515C2.23771 53.4444 2.00494 54.1608 2.42319 54.5795L6.81821 58.9798C7.14571 59.3077 7.29671 59.7724 7.22448 60.2302L6.25524 66.3734C6.16301 66.958 6.77241 67.4008 7.2999 67.1324L12.8429 64.3122C13.256 64.1021 13.7446 64.1021 14.1577 64.3122L19.7007 67.1324C20.2282 67.4008 20.8376 66.958 20.7453 66.3734L19.7761 60.2302C19.7039 59.7724 19.8549 59.3077 20.1824 58.9798L24.5774 54.5796C24.9956 54.1608 24.7629 53.4444 24.1784 53.3515L18.0363 52.3749C17.5786 52.3022 17.1833 52.0149 16.9727 51.6021ZM14.4687 45.8978C14.0652 45.107 12.9353 45.107 12.5318 45.8978L9.70509 51.4374C9.54711 51.747 9.25062 51.9624 8.90736 52.017L2.76531 52.9936C1.88856 53.133 1.5394 54.2075 2.16677 54.8357L6.56179 59.2359C6.80742 59.4818 6.92067 59.8304 6.8665 60.1737L5.89726 66.3169C5.7589 67.1938 6.673 67.858 7.46425 67.4554L13.0073 64.6352C13.3171 64.4776 13.6835 64.4776 13.9933 64.6352L19.5363 67.4554C20.3276 67.858 21.2417 67.1938 21.1033 66.3169L20.1341 60.1737C20.0799 59.8304 20.1932 59.4818 20.4388 59.2359L24.8338 54.8357C25.4612 54.2075 25.112 53.133 24.2353 52.9936L18.0932 52.017C17.75 51.9624 17.4535 51.747 17.2955 51.4374L14.4687 45.8978Z" fill="url(#paint10_linear_1461_1867)"/>
<path d="M13.0294 51.3367C13.2388 50.9749 13.7611 50.9749 13.9705 51.3367L15.6261 54.1982C15.7031 54.3312 15.8328 54.4255 15.9831 54.4576L19.2161 55.1479C19.625 55.2352 19.7864 55.732 19.5069 56.0429L17.2971 58.5017C17.1944 58.616 17.1448 58.7685 17.1607 58.9214L17.5033 62.2095C17.5466 62.6253 17.124 62.9324 16.7419 62.7627L13.7206 61.4208C13.5801 61.3584 13.4198 61.3584 13.2793 61.4208L10.258 62.7627C9.87591 62.9324 9.4533 62.6253 9.49661 62.2095L9.83915 58.9214C9.85507 58.7685 9.80553 58.616 9.70277 58.5017L7.49296 56.0429C7.21352 55.732 7.37494 55.2352 7.78377 55.1479L11.0168 54.4576C11.1671 54.4255 11.2968 54.3312 11.3738 54.1982L13.0294 51.3367Z" fill="url(#paint11_linear_1461_1867)"/>
<path d="M20.4019 55.596C13.8431 61.7939 7.98533 59.0525 5.8763 56.9071C2.66819 52.1395 9.70821 55.9536 15.9462 54.2849C20.9366 52.9499 20.996 54.6027 20.4019 55.596Z" fill="url(#paint12_linear_1461_1867)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7568 47.1314C12.8907 47.1992 12.9444 47.3627 12.8766 47.4967L12.1081 49.0156C12.0403 49.1496 11.8768 49.2032 11.7428 49.1354C11.6089 49.0677 11.5552 48.9041 11.623 48.7702L12.3915 47.2512C12.4593 47.1173 12.6228 47.0636 12.7568 47.1314Z" fill="#93D6F6"/>
<circle cx="3.35287" cy="53.6947" r="0.271812" fill="#93D6F6"/>
<circle cx="11.5072" cy="49.5267" r="0.271812" fill="#93D6F6"/>
<path d="M10.9048 52.3333C8.843 55.2538 9.57983 56.8439 10.206 57.2738C12.1076 58.1321 15.5725 53.0678 15.807 51.7276C16.0415 50.3874 13.482 48.6827 10.9048 52.3333Z" fill="url(#paint13_linear_1461_1867)" fill-opacity="0.6"/>
<g filter="url(#filter2_i_1461_1867)">
<path d="M69.9485 1.8979C70.352 1.10714 71.4819 1.10714 71.8854 1.8979L74.7122 7.43756C74.8702 7.74716 75.1667 7.96257 75.5099 8.01715L81.652 8.9937C82.5287 9.1331 82.8779 10.2077 82.2505 10.8358L77.8555 15.2361C77.6099 15.482 77.4966 15.8305 77.5508 16.1738L78.52 22.3171C78.6584 23.194 77.7443 23.8581 76.953 23.4555L71.41 20.6354C71.1002 20.4778 70.7338 20.4778 70.424 20.6354L64.8809 23.4555C64.0897 23.8581 63.1756 23.194 63.314 22.3171L64.2832 16.1738C64.3374 15.8305 64.2241 15.482 63.9785 15.2361L59.5835 10.8358C58.9561 10.2077 59.3053 9.1331 60.182 8.9937L66.3241 8.01715C66.6673 7.96257 66.9638 7.74716 67.1218 7.43756L69.9485 1.8979Z" fill="#43628F"/>
</g>
<path d="M69.9485 1.8979C70.352 1.10714 71.4819 1.10714 71.8854 1.8979L74.7122 7.43756C74.8702 7.74716 75.1667 7.96257 75.5099 8.01715L81.652 8.9937C82.5287 9.1331 82.8779 10.2077 82.2505 10.8358L77.8555 15.2361C77.6099 15.482 77.4966 15.8305 77.5508 16.1738L78.52 22.3171C78.6584 23.194 77.7443 23.8581 76.953 23.4555L71.41 20.6354C71.1002 20.4778 70.7338 20.4778 70.424 20.6354L64.8809 23.4555C64.0897 23.8581 63.1756 23.194 63.314 22.3171L64.2832 16.1738C64.3374 15.8305 64.2241 15.482 63.9785 15.2361L59.5835 10.8358C58.9561 10.2077 59.3053 9.1331 60.182 8.9937L66.3241 8.01715C66.6673 7.96257 66.9638 7.74716 67.1218 7.43756L69.9485 1.8979Z" fill="url(#paint14_linear_1461_1867)"/>
<path d="M69.9488 1.89776C70.3523 1.107 71.4822 1.107 71.8857 1.89776L74.7125 7.43742C74.8705 7.74702 75.167 7.96243 75.5102 8.01701L81.6523 8.99356C82.529 9.13296 82.8782 10.2075 82.2508 10.8357L77.8558 15.2359C77.6102 15.4818 77.4969 15.8304 77.5511 16.1737L78.5203 22.3169C78.6587 23.1938 77.7446 23.858 76.9533 23.4554L71.4103 20.6352C71.1005 20.4776 70.7341 20.4776 70.4243 20.6352L64.8812 23.4554C64.09 23.858 63.1759 23.1938 63.3142 22.3169L64.2835 16.1737C64.3377 15.8304 64.2244 15.4818 63.9788 15.2359L59.5838 10.8357C58.9564 10.2075 59.3056 9.13296 60.1823 8.99356L66.3244 8.01701C66.6676 7.96243 66.9641 7.74702 67.1221 7.43742L69.9488 1.89776Z" fill="url(#paint15_linear_1461_1867)"/>
<path d="M69.9488 1.89776C70.3523 1.107 71.4822 1.107 71.8857 1.89776L74.7125 7.43742C74.8705 7.74702 75.167 7.96243 75.5102 8.01701L81.6523 8.99356C82.529 9.13296 82.8782 10.2075 82.2508 10.8357L77.8558 15.2359C77.6102 15.4818 77.4969 15.8304 77.5511 16.1737L78.5203 22.3169C78.6587 23.1938 77.7446 23.858 76.9533 23.4554L71.4103 20.6352C71.1005 20.4776 70.7341 20.4776 70.4243 20.6352L64.8812 23.4554C64.09 23.858 63.1759 23.1938 63.3142 22.3169L64.2835 16.1737C64.3377 15.8304 64.2244 15.4818 63.9788 15.2359L59.5838 10.8357C58.9564 10.2075 59.3056 9.13296 60.1823 8.99356L66.3244 8.01701C66.6676 7.96243 66.9641 7.74702 67.1221 7.43742L69.9488 1.89776Z" fill="url(#paint16_radial_1461_1867)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M74.3897 7.60215L71.5629 2.06248C71.2939 1.53531 70.5407 1.53531 70.2717 2.06249L67.4449 7.60215C67.2343 8.01495 66.8389 8.30216 66.3813 8.37493L60.2392 9.35148C59.6547 9.44441 59.4219 10.1608 59.8402 10.5795L64.2352 14.9798C64.5627 15.3077 64.7137 15.7724 64.6415 16.2302L63.6722 22.3734C63.58 22.958 64.1894 23.4008 64.7169 23.1324L70.2599 20.3122C70.673 20.1021 71.1616 20.1021 71.5747 20.3122L77.1177 23.1324C77.6452 23.4008 78.2546 22.958 78.1623 22.3734L77.1931 16.2302C77.1209 15.7724 77.2719 15.3077 77.5994 14.9798L81.9944 10.5796C82.4126 10.1608 82.1799 9.44441 81.5954 9.35148L75.4533 8.37493C74.9956 8.30216 74.6003 8.01495 74.3897 7.60215ZM71.8857 1.89776C71.4822 1.107 70.3523 1.107 69.9488 1.89776L67.1221 7.43742C66.9641 7.74702 66.6676 7.96243 66.3244 8.01701L60.1823 8.99356C59.3056 9.13296 58.9564 10.2075 59.5838 10.8357L63.9788 15.2359C64.2244 15.4818 64.3377 15.8304 64.2835 16.1737L63.3142 22.3169C63.1759 23.1938 64.09 23.858 64.8812 23.4554L70.4243 20.6352C70.7341 20.4776 71.1005 20.4776 71.4103 20.6352L76.9533 23.4554C77.7446 23.858 78.6587 23.1938 78.5203 22.3169L77.5511 16.1737C77.4969 15.8304 77.6102 15.4818 77.8558 15.2359L82.2508 10.8357C82.8782 10.2075 82.529 9.13296 81.6523 8.99356L75.5102 8.01701C75.167 7.96243 74.8705 7.74702 74.7125 7.43742L71.8857 1.89776Z" fill="url(#paint17_linear_1461_1867)"/>
<path d="M70.4464 7.33671C70.6557 6.97487 71.1781 6.97487 71.3875 7.33671L73.0431 10.1982C73.12 10.3312 73.2498 10.4255 73.4001 10.4576L76.6331 11.1479C77.0419 11.2352 77.2034 11.732 76.9239 12.0429L74.7141 14.5017C74.6114 14.616 74.5618 14.7685 74.5777 14.9214L74.9203 18.2095C74.9636 18.6253 74.541 18.9324 74.1589 18.7627L71.1376 17.4208C70.9971 17.3584 70.8368 17.3584 70.6963 17.4208L67.675 18.7627C67.2929 18.9324 66.8703 18.6253 66.9136 18.2095L67.2561 14.9214C67.2721 14.7685 67.2225 14.616 67.1198 14.5017L64.9099 12.0429C64.6305 11.732 64.7919 11.2352 65.2008 11.1479L68.4338 10.4576C68.5841 10.4255 68.7138 10.3312 68.7908 10.1982L70.4464 7.33671Z" fill="url(#paint18_linear_1461_1867)"/>
<path d="M77.8189 11.596C71.2601 17.7939 65.4023 15.0525 63.2933 12.9071C60.0852 8.13949 67.1252 11.9536 73.3632 10.2849C78.3536 8.94995 78.413 10.6027 77.8189 11.596Z" fill="url(#paint19_linear_1461_1867)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M70.1738 3.13142C70.3077 3.19919 70.3613 3.36272 70.2936 3.49667L69.5251 5.01561C69.4573 5.14956 69.2938 5.20321 69.1598 5.13544C69.0259 5.06766 68.9722 4.90414 69.04 4.77019L69.8085 3.25124C69.8763 3.1173 70.0398 3.06365 70.1738 3.13142Z" fill="#93D6F6"/>
<circle cx="60.7699" cy="9.69466" r="0.271812" fill="#93D6F6"/>
<circle cx="68.9242" cy="5.52669" r="0.271812" fill="#93D6F6"/>
<path d="M68.3218 8.33329C66.26 11.2538 66.9968 12.8439 67.623 13.2738C69.5246 14.1321 72.9895 9.06778 73.224 7.72761C73.4584 6.38744 70.899 4.68267 68.3218 8.33329Z" fill="url(#paint20_linear_1461_1867)" fill-opacity="0.6"/>
<g opacity="0.5">
<g opacity="0.8" filter="url(#filter3_i_1461_1867)">
<path d="M115.56 16.4411C116.234 16.1554 116.948 16.7545 116.784 17.4682L115.283 23.9866C115.219 24.2661 115.292 24.5594 115.48 24.7759L119.865 29.8268C120.346 30.3798 119.996 31.244 119.267 31.3083L112.604 31.8952C112.318 31.9204 112.062 32.0806 111.914 32.3263L108.465 38.0578C108.088 38.6854 107.158 38.6203 106.871 37.9463L104.254 31.7907C104.142 31.5268 103.91 31.3325 103.631 31.2678L97.1144 29.7593C96.4009 29.5941 96.1754 28.6896 96.7278 28.2088L101.773 23.8175C101.99 23.6292 102.103 23.3489 102.078 23.0632L101.499 16.3994C101.436 15.6698 102.226 15.1758 102.854 15.5526L108.59 18.9943C108.836 19.1418 109.137 19.1629 109.401 19.051L115.56 16.4411Z" fill="url(#paint21_linear_1461_1867)"/>
</g>
<path opacity="0.3" d="M115.56 16.4411C116.234 16.1554 116.948 16.7545 116.784 17.4682L115.283 23.9866C115.219 24.2661 115.292 24.5594 115.48 24.7759L119.865 29.8268C120.346 30.3798 119.996 31.244 119.267 31.3083L112.604 31.8952C112.318 31.9204 112.062 32.0806 111.914 32.3263L108.465 38.0578C108.088 38.6854 107.158 38.6203 106.871 37.9463L104.254 31.7907C104.142 31.5268 103.91 31.3325 103.631 31.2678L97.1144 29.7593C96.4009 29.5941 96.1754 28.6896 96.7278 28.2088L101.773 23.8175C101.99 23.6292 102.103 23.3489 102.078 23.0632L101.499 16.3994C101.436 15.6698 102.226 15.1758 102.854 15.5526L108.59 18.9943C108.836 19.1418 109.137 19.1629 109.401 19.051L115.56 16.4411Z" fill="url(#paint22_linear_1461_1867)"/>
<path opacity="0.3" d="M115.216 16.5866C116.034 16.2402 116.899 16.9665 116.7 17.8316L115.305 23.8923C115.227 24.231 115.315 24.5866 115.543 24.849L119.621 29.5452C120.203 30.2155 119.779 31.2631 118.895 31.341L112.7 31.8867C112.354 31.9172 112.043 32.1114 111.864 32.4093L108.657 37.7383C108.2 38.4989 107.073 38.4201 106.725 37.6031L104.292 31.8798C104.156 31.5599 103.875 31.3244 103.536 31.246L97.4774 29.8433C96.6126 29.6431 96.3392 28.5468 97.0089 27.964L101.7 23.881C101.962 23.6528 102.1 23.3131 102.069 22.9668L101.531 16.7709C101.454 15.8865 102.413 15.2877 103.174 15.7445L108.507 18.9445C108.805 19.1233 109.17 19.1489 109.49 19.0133L115.216 16.5866Z" fill="url(#paint23_linear_1461_1867)"/>
<path opacity="0.3" d="M115.216 16.5866C116.034 16.2402 116.899 16.9665 116.7 17.8316L115.305 23.8923C115.227 24.231 115.315 24.5866 115.543 24.849L119.621 29.5452C120.203 30.2155 119.779 31.2631 118.895 31.341L112.7 31.8867C112.354 31.9172 112.043 32.1114 111.864 32.4093L108.657 37.7383C108.2 38.4989 107.073 38.4201 106.725 37.6031L104.292 31.8798C104.156 31.5599 103.875 31.3244 103.536 31.246L97.4774 29.8433C96.6126 29.6431 96.3392 28.5468 97.0089 27.964L101.7 23.881C101.962 23.6528 102.1 23.3131 102.069 22.9668L101.531 16.7709C101.454 15.8865 102.413 15.2877 103.174 15.7445L108.507 18.9445C108.805 19.1233 109.17 19.1489 109.49 19.0133L115.216 16.5866Z" fill="url(#paint24_linear_1461_1867)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M114.952 23.811L116.347 17.7503C116.48 17.1736 115.903 16.6894 115.358 16.9203L109.632 19.3469C109.205 19.5278 108.717 19.4937 108.32 19.2552L102.987 16.0553C102.48 15.7508 101.841 16.1499 101.892 16.7395L102.431 22.9354C102.471 23.3971 102.288 23.8502 101.938 24.1544L97.2468 28.2374C96.8004 28.6259 96.9826 29.3568 97.5592 29.4903L103.618 30.8929C104.07 30.9974 104.444 31.3115 104.625 31.738L107.059 37.4613C107.29 38.006 108.042 38.0585 108.347 37.5514L111.553 32.2224C111.792 31.8253 112.206 31.5664 112.668 31.5257L118.863 30.98C119.453 30.9281 119.735 30.2297 119.347 29.7828L115.27 25.0866C114.966 24.7367 114.848 24.2626 114.952 23.811ZM116.7 17.8316C116.899 16.9665 116.034 16.2402 115.216 16.5866L109.49 19.0133C109.17 19.1489 108.805 19.1233 108.507 18.9445L103.174 15.7445C102.413 15.2877 101.454 15.8865 101.531 16.7709L102.069 22.9668C102.1 23.3131 101.962 23.6528 101.7 23.881L97.0089 27.964C96.3392 28.5468 96.6126 29.6431 97.4774 29.8433L103.536 31.246C103.875 31.3244 104.156 31.5599 104.292 31.8798L106.725 37.6031C107.073 38.4201 108.2 38.4989 108.657 37.7383L111.864 32.4093C112.043 32.1114 112.354 31.9172 112.7 31.8867L118.895 31.341C119.779 31.2631 120.203 30.2155 119.621 29.5452L115.543 24.849C115.315 24.5866 115.227 24.231 115.305 23.8923L116.7 17.8316Z" fill="url(#paint25_linear_1461_1867)"/>
<path d="M112.499 20.9283C112.715 20.8499 112.935 21.0345 112.896 21.261L112.233 25.0407C112.218 25.1239 112.24 25.2095 112.292 25.2762L114.651 28.3023C114.793 28.4836 114.685 28.7499 114.457 28.7821L110.658 29.3197C110.574 29.3315 110.499 29.3783 110.452 29.4483L108.303 32.6277C108.174 32.8182 107.888 32.7981 107.787 32.5916L106.102 29.1441C106.064 29.0682 105.997 29.0115 105.916 28.9881L102.228 27.927C102.007 27.8634 101.937 27.5846 102.103 27.4248L104.861 24.7566C104.921 24.6978 104.954 24.616 104.951 24.5315L104.821 20.6964C104.813 20.4666 105.057 20.3143 105.26 20.4221L108.65 22.2205C108.725 22.2601 108.813 22.2663 108.892 22.2374L112.499 20.9283Z" fill="url(#paint26_linear_1461_1867)"/>
<path opacity="0.3" d="M115.011 29.0746C106.003 29.6066 103.278 23.7412 103.041 20.7421C103.648 15.0277 106.59 22.4747 112.441 25.2062C117.122 27.3913 116.105 28.6956 115.011 29.0746Z" fill="url(#paint27_linear_1461_1867)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M114.596 17.676C114.655 17.814 114.591 17.9737 114.453 18.0328L112.888 18.7024C112.75 18.7614 112.591 18.6974 112.532 18.5594C112.472 18.4214 112.537 18.2616 112.675 18.2026L114.24 17.533C114.378 17.4739 114.537 17.538 114.596 17.676Z" fill="url(#paint28_linear_1461_1867)"/>
<circle cx="103.173" cy="16.6588" r="0.271812" transform="rotate(40 103.173 16.6588)" fill="url(#paint29_linear_1461_1867)"/>
<circle cx="112.099" cy="18.7076" r="0.271812" transform="rotate(40 112.099 18.7076)" fill="url(#paint30_linear_1461_1867)"/>
<path opacity="0.3" d="M109.833 20.4695C106.376 21.3815 105.918 23.0732 106.122 23.805C107.027 25.6849 112.936 24.0326 113.977 23.1566C115.018 22.2807 114.154 19.3296 109.833 20.4695Z" fill="url(#paint31_linear_1461_1867)"/>
</g>
<g opacity="0.5">
<g opacity="0.8" filter="url(#filter4_i_1461_1867)">
<path d="M127.701 45.5657C128.034 44.9134 128.966 44.9134 129.299 45.5657L132.339 51.5238C132.47 51.7792 132.714 51.9569 132.997 52.0019L139.603 53.0523C140.327 53.1673 140.615 54.0538 140.097 54.572L135.37 59.3046C135.167 59.5074 135.074 59.795 135.119 60.0782L136.161 66.6854C136.275 67.4089 135.521 67.9568 134.868 67.6246L128.907 64.5915C128.651 64.4615 128.349 64.4615 128.093 64.5915L122.132 67.6246C121.479 67.9568 120.725 67.4089 120.839 66.6854L121.881 60.0782C121.926 59.795 121.833 59.5074 121.63 59.3046L116.903 54.572C116.385 54.0538 116.673 53.1673 117.397 53.0523L124.003 52.0019C124.286 51.9569 124.53 51.7792 124.661 51.5238L127.701 45.5657Z" fill="url(#paint32_linear_1461_1867)"/>
</g>
<path opacity="0.3" d="M127.701 45.5657C128.034 44.9134 128.966 44.9134 129.299 45.5657L132.339 51.5238C132.47 51.7792 132.714 51.9569 132.997 52.0019L139.603 53.0523C140.327 53.1673 140.615 54.0538 140.097 54.572L135.37 59.3046C135.167 59.5074 135.074 59.795 135.119 60.0782L136.161 66.6854C136.275 67.4089 135.521 67.9568 134.868 67.6246L128.907 64.5915C128.651 64.4615 128.349 64.4615 128.093 64.5915L122.132 67.6246C121.479 67.9568 120.725 67.4089 120.839 66.6854L121.881 60.0782C121.926 59.795 121.833 59.5074 121.63 59.3046L116.903 54.572C116.385 54.0538 116.673 53.1673 117.397 53.0523L124.003 52.0019C124.286 51.9569 124.53 51.7792 124.661 51.5238L127.701 45.5657Z" fill="url(#paint33_linear_1461_1867)"/>
<path opacity="0.3" d="M127.532 45.8978C127.935 45.107 129.065 45.107 129.469 45.8978L132.295 51.4374C132.453 51.747 132.75 51.9624 133.093 52.017L139.235 52.9936C140.112 53.133 140.461 54.2075 139.834 54.8357L135.439 59.2359C135.193 59.4818 135.08 59.8304 135.134 60.1737L136.103 66.3169C136.242 67.1938 135.328 67.858 134.536 67.4554L128.993 64.6352C128.684 64.4776 128.317 64.4776 128.007 64.6352L122.464 67.4554C121.673 67.858 120.759 67.1938 120.897 66.3169L121.866 60.1737C121.921 59.8304 121.807 59.4818 121.562 59.2359L117.167 54.8357C116.539 54.2075 116.889 53.133 117.765 52.9936L123.907 52.017C124.251 51.9624 124.547 51.747 124.705 51.4374L127.532 45.8978Z" fill="url(#paint34_linear_1461_1867)"/>
<path opacity="0.3" d="M127.532 45.8978C127.935 45.107 129.065 45.107 129.469 45.8978L132.295 51.4374C132.453 51.747 132.75 51.9624 133.093 52.017L139.235 52.9936C140.112 53.133 140.461 54.2075 139.834 54.8357L135.439 59.2359C135.193 59.4818 135.08 59.8304 135.134 60.1737L136.103 66.3169C136.242 67.1938 135.328 67.858 134.536 67.4554L128.993 64.6352C128.684 64.4776 128.317 64.4776 128.007 64.6352L122.464 67.4554C121.673 67.858 120.759 67.1938 120.897 66.3169L121.866 60.1737C121.921 59.8304 121.807 59.4818 121.562 59.2359L117.167 54.8357C116.539 54.2075 116.889 53.133 117.765 52.9936L123.907 52.017C124.251 51.9624 124.547 51.747 124.705 51.4374L127.532 45.8978Z" fill="url(#paint35_linear_1461_1867)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M131.973 51.6021L129.146 46.0625C128.877 45.5353 128.124 45.5353 127.855 46.0625L125.028 51.6021C124.817 52.0149 124.422 52.3022 123.964 52.3749L117.822 53.3515C117.238 53.4444 117.005 54.1608 117.423 54.5795L121.818 58.9798C122.146 59.3077 122.297 59.7724 122.224 60.2302L121.255 66.3734C121.163 66.958 121.772 67.4008 122.3 67.1324L127.843 64.3122C128.256 64.1021 128.745 64.1021 129.158 64.3122L134.701 67.1324C135.228 67.4008 135.838 66.958 135.745 66.3734L134.776 60.2302C134.704 59.7724 134.855 59.3077 135.182 58.9798L139.577 54.5795C139.996 54.1608 139.763 53.4444 139.178 53.3515L133.036 52.3749C132.579 52.3022 132.183 52.0149 131.973 51.6021ZM129.469 45.8978C129.065 45.107 127.935 45.107 127.532 45.8978L124.705 51.4374C124.547 51.747 124.251 51.9624 123.907 52.017L117.765 52.9936C116.889 53.133 116.539 54.2075 117.167 54.8357L121.562 59.2359C121.807 59.4818 121.921 59.8304 121.866 60.1737L120.897 66.3169C120.759 67.1938 121.673 67.858 122.464 67.4554L128.007 64.6352C128.317 64.4776 128.684 64.4776 128.993 64.6352L134.536 67.4554C135.328 67.858 136.242 67.1938 136.103 66.3169L135.134 60.1737C135.08 59.8304 135.193 59.4818 135.439 59.2359L139.834 54.8357C140.461 54.2075 140.112 53.133 139.235 52.9936L133.093 52.017C132.75 51.9624 132.453 51.747 132.295 51.4374L129.469 45.8978Z" fill="url(#paint36_linear_1461_1867)"/>
<path d="M128.241 50.9707C128.356 50.7717 128.644 50.7717 128.759 50.9707L130.68 54.2922C130.723 54.3654 130.794 54.4172 130.877 54.4349L134.63 55.2362C134.854 55.2842 134.943 55.5574 134.79 55.7284L132.224 58.5825C132.168 58.6454 132.141 58.7293 132.149 58.8134L132.547 62.6301C132.571 62.8588 132.338 63.0276 132.128 62.9343L128.621 61.3767C128.544 61.3424 128.456 61.3424 128.379 61.3767L124.872 62.9343C124.661 63.0276 124.429 62.8588 124.453 62.6301L124.85 58.8134C124.859 58.7293 124.832 58.6454 124.775 58.5825L122.21 55.7284C122.057 55.5574 122.145 55.2842 122.37 55.2362L126.123 54.4349C126.206 54.4172 126.277 54.3654 126.319 54.2922L128.241 50.9707Z" fill="url(#paint37_linear_1461_1867)"/>
<path opacity="0.3" d="M135.401 55.596C128.842 61.7939 122.984 59.0525 120.875 56.9071C117.667 52.1395 124.707 55.9536 130.945 54.2849C135.936 52.9499 135.995 54.6027 135.401 55.596Z" fill="url(#paint38_linear_1461_1867)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M127.757 47.1314C127.891 47.1992 127.944 47.3627 127.877 47.4967L127.108 49.0156C127.04 49.1496 126.877 49.2032 126.743 49.1354C126.609 49.0677 126.555 48.9041 126.623 48.7702L127.392 47.2512C127.459 47.1173 127.623 47.0636 127.757 47.1314Z" fill="url(#paint39_linear_1461_1867)"/>
<circle cx="118.353" cy="53.6942" r="0.271812" fill="url(#paint40_linear_1461_1867)"/>
<circle cx="126.507" cy="49.5267" r="0.271812" fill="url(#paint41_linear_1461_1867)"/>
<path opacity="0.3" d="M125.904 52.3333C123.842 55.2538 124.579 56.8439 125.205 57.2738C127.107 58.1321 130.572 53.0678 130.806 51.7276C131.04 50.3874 128.481 48.6827 125.904 52.3333Z" fill="url(#paint42_linear_1461_1867)"/>
</g>
<defs>
<filter id="filter0_i_1461_1867" x="21.1133" y="14.1757" width="23.2529" height="24.4898" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1461_1867"/>
</filter>
<filter id="filter1_i_1461_1867" x="1.84766" y="43.4926" width="23.3047" height="24.0836" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1461_1867"/>
</filter>
<filter id="filter2_i_1461_1867" x="59.2646" y="-0.507393" width="23.3047" height="24.0836" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1461_1867"/>
</filter>
<filter id="filter3_i_1461_1867" x="96.4189" y="13.6108" width="23.667" height="24.8814" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1461_1867"/>
</filter>
<filter id="filter4_i_1461_1867" x="116.64" y="43.2646" width="23.7207" height="24.4595" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1461_1867"/>
</filter>
<linearGradient id="paint0_linear_1461_1867" x1="23.823" y1="16.1559" x2="43.5572" y2="30.2302" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<linearGradient id="paint1_linear_1461_1867" x1="23.824" y1="16.1558" x2="43.5582" y2="30.2301" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<radialGradient id="paint2_radial_1461_1867" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(27.8593 25.8983) rotate(12.6712) scale(15.8381)">
<stop offset="0.738765" stop-color="#9CB6DD" stop-opacity="0"/>
<stop offset="0.89825" stop-color="#C6F1FF" stop-opacity="0.37"/>
<stop offset="1" stop-color="#EFFBFF" stop-opacity="0.7"/>
</radialGradient>
<linearGradient id="paint3_linear_1461_1867" x1="41.302" y1="25.1451" x2="24.444" y2="24.5062" gradientUnits="userSpaceOnUse">
<stop stop-color="#D8F6FF" stop-opacity="0.63"/>
<stop offset="0.218803" stop-color="#A0D2FF" stop-opacity="0"/>
<stop offset="0.491108" stop-color="#8DC8FF" stop-opacity="0.56"/>
<stop offset="0.733041" stop-color="#9ADBF8"/>
<stop offset="1" stop-color="white" stop-opacity="0"/>
<stop offset="1" stop-color="#BAEAFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint4_linear_1461_1867" x1="28.0162" y1="21.1533" x2="35.6232" y2="30.5009" gradientUnits="userSpaceOnUse">
<stop stop-color="#9BE1FF"/>
<stop offset="0.277442" stop-color="#9BE1FF" stop-opacity="0.51"/>
<stop offset="1" stop-color="#CDDEE6" stop-opacity="0.15"/>
</linearGradient>
<linearGradient id="paint5_linear_1461_1867" x1="30.5231" y1="25.049" x2="33.2072" y2="28.3873" gradientUnits="userSpaceOnUse">
<stop stop-color="#C4C4C4" stop-opacity="0"/>
<stop offset="0.731853" stop-color="#DBF6FF" stop-opacity="0.46"/>
</linearGradient>
<linearGradient id="paint6_linear_1461_1867" x1="28.0638" y1="23.9862" x2="31.3673" y2="24.1793" gradientUnits="userSpaceOnUse">
<stop offset="0.223958" stop-color="#DBF6FF" stop-opacity="0.35"/>
<stop offset="1" stop-color="#C4C4C4" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint7_linear_1461_1867" x1="13.5" y1="44" x2="19.5705" y2="67.4664" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<linearGradient id="paint8_linear_1461_1867" x1="13.5003" y1="43.9999" x2="19.5707" y2="67.4663" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<radialGradient id="paint9_radial_1461_1867" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(10.3291 54.0569) rotate(52.6712) scale(15.8381)">
<stop offset="0.738765" stop-color="#9CB6DD" stop-opacity="0"/>
<stop offset="0.89825" stop-color="#C6F1FF" stop-opacity="0.37"/>
<stop offset="1" stop-color="#EFFBFF" stop-opacity="0.7"/>
</radialGradient>
<linearGradient id="paint10_linear_1461_1867" x1="21.111" y1="62.1207" x2="8.60766" y2="50.7952" gradientUnits="userSpaceOnUse">
<stop stop-color="#D8F6FF" stop-opacity="0.63"/>
<stop offset="0.218803" stop-color="#A0D2FF" stop-opacity="0"/>
<stop offset="0.491108" stop-color="#8DC8FF" stop-opacity="0.56"/>
<stop offset="0.733041" stop-color="#9ADBF8"/>
<stop offset="1" stop-color="white" stop-opacity="0"/>
<stop offset="1" stop-color="#BAEAFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint11_linear_1461_1867" x1="13.4999" y1="50.5234" x2="13.3187" y2="62.5738" gradientUnits="userSpaceOnUse">
<stop stop-color="#9BE1FF"/>
<stop offset="0.277442" stop-color="#9BE1FF" stop-opacity="0.51"/>
<stop offset="1" stop-color="#CDDEE6" stop-opacity="0.15"/>
</linearGradient>
<linearGradient id="paint12_linear_1461_1867" x1="12.9164" y1="55.1192" x2="12.8266" y2="59.4018" gradientUnits="userSpaceOnUse">
<stop stop-color="#C4C4C4" stop-opacity="0"/>
<stop offset="0.731853" stop-color="#DBF6FF" stop-opacity="0.46"/>
</linearGradient>
<linearGradient id="paint13_linear_1461_1867" x1="11.7157" y1="52.7239" x2="14.1222" y2="54.9953" gradientUnits="userSpaceOnUse">
<stop offset="0.223958" stop-color="#DBF6FF" stop-opacity="0.35"/>
<stop offset="1" stop-color="#C4C4C4" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint14_linear_1461_1867" x1="70.917" y1="-2.43016e-08" x2="76.9875" y2="23.4664" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<linearGradient id="paint15_linear_1461_1867" x1="70.9173" y1="-0.000134339" x2="76.9877" y2="23.4663" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<radialGradient id="paint16_radial_1461_1867" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(67.7461 10.0569) rotate(52.6712) scale(15.8381)">
<stop offset="0.738765" stop-color="#9CB6DD" stop-opacity="0"/>
<stop offset="0.89825" stop-color="#C6F1FF" stop-opacity="0.37"/>
<stop offset="1" stop-color="#EFFBFF" stop-opacity="0.7"/>
</radialGradient>
<linearGradient id="paint17_linear_1461_1867" x1="78.528" y1="18.1207" x2="66.0246" y2="6.79517" gradientUnits="userSpaceOnUse">
<stop stop-color="#D8F6FF" stop-opacity="0.63"/>
<stop offset="0.218803" stop-color="#A0D2FF" stop-opacity="0"/>
<stop offset="0.491108" stop-color="#8DC8FF" stop-opacity="0.56"/>
<stop offset="0.733041" stop-color="#9ADBF8"/>
<stop offset="1" stop-color="white" stop-opacity="0"/>
<stop offset="1" stop-color="#BAEAFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint18_linear_1461_1867" x1="70.9169" y1="6.52344" x2="70.7357" y2="18.5738" gradientUnits="userSpaceOnUse">
<stop stop-color="#9BE1FF"/>
<stop offset="0.277442" stop-color="#9BE1FF" stop-opacity="0.51"/>
<stop offset="1" stop-color="#CDDEE6" stop-opacity="0.15"/>
</linearGradient>
<linearGradient id="paint19_linear_1461_1867" x1="70.3333" y1="11.1192" x2="70.2436" y2="15.4018" gradientUnits="userSpaceOnUse">
<stop stop-color="#C4C4C4" stop-opacity="0"/>
<stop offset="0.731853" stop-color="#DBF6FF" stop-opacity="0.46"/>
</linearGradient>
<linearGradient id="paint20_linear_1461_1867" x1="69.1326" y1="8.72394" x2="71.5392" y2="10.9953" gradientUnits="userSpaceOnUse">
<stop offset="0.223958" stop-color="#DBF6FF" stop-opacity="0.35"/>
<stop offset="1" stop-color="#C4C4C4" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint21_linear_1461_1867" x1="117.179" y1="15.7553" x2="99.8232" y2="36.4385" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint22_linear_1461_1867" x1="117.179" y1="15.7553" x2="99.8232" y2="36.4385" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint23_linear_1461_1867" x1="116.34" y1="16.7548" x2="102.024" y2="33.8155" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint24_linear_1461_1867" x1="116.34" y1="16.7548" x2="102.024" y2="33.8155" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint25_linear_1461_1867" x1="116.34" y1="16.7548" x2="102.024" y2="33.8155" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint26_linear_1461_1867" x1="112.985" y1="20.752" x2="104.016" y2="31.4406" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint27_linear_1461_1867" x1="110.403" y1="22.8435" x2="106.792" y2="27.1467" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint28_linear_1461_1867" x1="114.256" y1="17.3389" x2="112.872" y2="18.8965" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint29_linear_1461_1867" x1="103.173" y1="16.387" x2="103.173" y2="16.9306" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint30_linear_1461_1867" x1="112.099" y1="18.4358" x2="112.099" y2="18.9795" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint31_linear_1461_1867" x1="110.141" y1="20.2587" x2="110.288" y2="24.6052" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint32_linear_1461_1867" x1="128.5" y1="44" x2="128.5" y2="71" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint33_linear_1461_1867" x1="128.5" y1="44" x2="128.5" y2="71" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint34_linear_1461_1867" x1="128.5" y1="45.3047" x2="128.5" y2="67.5758" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint35_linear_1461_1867" x1="128.5" y1="45.3047" x2="128.5" y2="67.5758" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint36_linear_1461_1867" x1="128.5" y1="45.3047" x2="128.5" y2="67.5758" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint37_linear_1461_1867" x1="128.5" y1="50.5234" x2="128.5" y2="64.4765" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint38_linear_1461_1867" x1="127.865" y1="53.7852" x2="127.865" y2="59.4026" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint39_linear_1461_1867" x1="127.28" y1="47.0918" x2="127.22" y2="49.175" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint40_linear_1461_1867" x1="118.353" y1="53.4224" x2="118.353" y2="53.966" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint41_linear_1461_1867" x1="126.507" y1="49.2549" x2="126.507" y2="49.7985" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint42_linear_1461_1867" x1="126.004" y1="51.9737" x2="128.911" y2="55.2086" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 44 KiB

View File

@@ -0,0 +1,4 @@
<svg width="74" height="40" viewBox="0 0 74 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M41.57 33.02C39.47 33.02 37.72 32.53 36.32 31.55C34.92 30.57 33.9 29.32 33.26 27.8L37.61 24.86C38.03 25.9 38.55 26.68 39.17 27.2C39.79 27.72 40.57 27.98 41.51 27.98C42.11 27.98 42.64 27.87 43.1 27.65C43.58 27.41 43.94 27.07 44.18 26.63C44.44 26.19 44.57 25.67 44.57 25.07C44.57 24.47 44.44 23.95 44.18 23.51C43.94 23.05 43.59 22.7 43.13 22.46C42.69 22.2 42.17 22.06 41.57 22.04C41.17 22.02 40.81 22.07 40.49 22.19C40.19 22.29 39.81 22.48 39.35 22.76L36.29 18.95L44.48 11.39L45.8 14.12H34.16V8.9H49.01V13.43L43.64 17.81L43.7 17.96C44.86 17.96 45.93 18.27 46.91 18.89C47.89 19.49 48.66 20.34 49.22 21.44C49.8 22.52 50.09 23.73 50.09 25.07C50.09 26.61 49.72 27.98 48.98 29.18C48.26 30.38 47.25 31.32 45.95 32C44.67 32.68 43.21 33.02 41.57 33.02ZM55.9344 33.02C54.9744 33.02 54.1844 32.71 53.5644 32.09C52.9644 31.47 52.6644 30.68 52.6644 29.72C52.6644 28.76 52.9644 27.97 53.5644 27.35C54.1844 26.73 54.9744 26.42 55.9344 26.42C56.9144 26.42 57.7144 26.73 58.3344 27.35C58.9544 27.97 59.2644 28.76 59.2644 29.72C59.2644 30.68 58.9544 31.47 58.3344 32.09C57.7144 32.71 56.9144 33.02 55.9344 33.02ZM64.2962 32.6V15.11L58.8962 17.9V12.11L65.1662 8.9H69.8762V32.6H64.2962Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1,4 @@
<svg width="81" height="40" viewBox="0 0 81 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M41.57 33.02C39.47 33.02 37.72 32.53 36.32 31.55C34.92 30.57 33.9 29.32 33.26 27.8L37.61 24.86C38.03 25.9 38.55 26.68 39.17 27.2C39.79 27.72 40.57 27.98 41.51 27.98C42.11 27.98 42.64 27.87 43.1 27.65C43.58 27.41 43.94 27.07 44.18 26.63C44.44 26.19 44.57 25.67 44.57 25.07C44.57 24.47 44.44 23.95 44.18 23.51C43.94 23.05 43.59 22.7 43.13 22.46C42.69 22.2 42.17 22.06 41.57 22.04C41.17 22.02 40.81 22.07 40.49 22.19C40.19 22.29 39.81 22.48 39.35 22.76L36.29 18.95L44.48 11.39L45.8 14.12H34.16V8.9H49.01V13.43L43.64 17.81L43.7 17.96C44.86 17.96 45.93 18.27 46.91 18.89C47.89 19.49 48.66 20.34 49.22 21.44C49.8 22.52 50.09 23.73 50.09 25.07C50.09 26.61 49.72 27.98 48.98 29.18C48.26 30.38 47.25 31.32 45.95 32C44.67 32.68 43.21 33.02 41.57 33.02ZM55.9344 33.02C54.9744 33.02 54.1844 32.71 53.5644 32.09C52.9644 31.47 52.6644 30.68 52.6644 29.72C52.6644 28.76 52.9644 27.97 53.5644 27.35C54.1844 26.73 54.9744 26.42 55.9344 26.42C56.9144 26.42 57.7144 26.73 58.3344 27.35C58.9544 27.97 59.2644 28.76 59.2644 29.72C59.2644 30.68 58.9544 31.47 58.3344 32.09C57.7144 32.71 56.9144 33.02 55.9344 33.02ZM70.2153 13.58C69.3553 13.58 68.6153 13.84 67.9953 14.36C67.3753 14.86 66.8453 15.63 66.4053 16.67L62.0553 13.7C62.7153 12.22 63.7353 10.99 65.1153 10.01C66.4953 9.01 68.2553 8.5 70.3953 8.48C72.0553 8.48 73.4853 8.79 74.6853 9.41C75.9053 10.01 76.8353 10.87 77.4753 11.99C78.1153 13.09 78.4353 14.36 78.4353 15.8C78.4353 17.08 78.1253 18.31 77.5053 19.49C76.9053 20.67 76.0353 21.85 74.8953 23.03L68.0253 30.17L66.8253 27.38H78.9153V32.6H62.0853V28.91L70.5453 20.24C71.3653 19.38 71.9353 18.64 72.2553 18.02C72.5753 17.4 72.7353 16.76 72.7353 16.1C72.7353 15.34 72.5153 14.73 72.0753 14.27C71.6553 13.81 71.0353 13.58 70.2153 13.58Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1,4 @@
<svg width="80" height="40" viewBox="0 0 80 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M41.57 33.02C39.47 33.02 37.72 32.53 36.32 31.55C34.92 30.57 33.9 29.32 33.26 27.8L37.61 24.86C38.03 25.9 38.55 26.68 39.17 27.2C39.79 27.72 40.57 27.98 41.51 27.98C42.11 27.98 42.64 27.87 43.1 27.65C43.58 27.41 43.94 27.07 44.18 26.63C44.44 26.19 44.57 25.67 44.57 25.07C44.57 24.47 44.44 23.95 44.18 23.51C43.94 23.05 43.59 22.7 43.13 22.46C42.69 22.2 42.17 22.06 41.57 22.04C41.17 22.02 40.81 22.07 40.49 22.19C40.19 22.29 39.81 22.48 39.35 22.76L36.29 18.95L44.48 11.39L45.8 14.12H34.16V8.9H49.01V13.43L43.64 17.81L43.7 17.96C44.86 17.96 45.93 18.27 46.91 18.89C47.89 19.49 48.66 20.34 49.22 21.44C49.8 22.52 50.09 23.73 50.09 25.07C50.09 26.61 49.72 27.98 48.98 29.18C48.26 30.38 47.25 31.32 45.95 32C44.67 32.68 43.21 33.02 41.57 33.02ZM55.9344 33.02C54.9744 33.02 54.1844 32.71 53.5644 32.09C52.9644 31.47 52.6644 30.68 52.6644 29.72C52.6644 28.76 52.9644 27.97 53.5644 27.35C54.1844 26.73 54.9744 26.42 55.9344 26.42C56.9144 26.42 57.7144 26.73 58.3344 27.35C58.9544 27.97 59.2644 28.76 59.2644 29.72C59.2644 30.68 58.9544 31.47 58.3344 32.09C57.7144 32.71 56.9144 33.02 55.9344 33.02ZM69.8122 33.02C67.7122 33.02 65.9622 32.53 64.5622 31.55C63.1622 30.57 62.1422 29.32 61.5022 27.8L65.8522 24.86C66.2722 25.9 66.7922 26.68 67.4122 27.2C68.0322 27.72 68.8122 27.98 69.7522 27.98C70.3522 27.98 70.8822 27.87 71.3422 27.65C71.8222 27.41 72.1822 27.07 72.4222 26.63C72.6822 26.19 72.8122 25.67 72.8122 25.07C72.8122 24.47 72.6822 23.95 72.4222 23.51C72.1822 23.05 71.8322 22.7 71.3722 22.46C70.9322 22.2 70.4122 22.06 69.8122 22.04C69.4122 22.02 69.0522 22.07 68.7322 22.19C68.4322 22.29 68.0522 22.48 67.5922 22.76L64.5322 18.95L72.7222 11.39L74.0422 14.12H62.4022V8.9H77.2522V13.43L71.8822 17.81L71.9422 17.96C73.1022 17.96 74.1722 18.27 75.1522 18.89C76.1322 19.49 76.9022 20.34 77.4622 21.44C78.0422 22.52 78.3322 23.73 78.3322 25.07C78.3322 26.61 77.9622 27.98 77.2222 29.18C76.5022 30.38 75.4922 31.32 74.1922 32C72.9122 32.68 71.4522 33.02 69.8122 33.02Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,4 @@
<svg width="81" height="40" viewBox="0 0 81 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M41.57 33.02C39.47 33.02 37.72 32.53 36.32 31.55C34.92 30.57 33.9 29.32 33.26 27.8L37.61 24.86C38.03 25.9 38.55 26.68 39.17 27.2C39.79 27.72 40.57 27.98 41.51 27.98C42.11 27.98 42.64 27.87 43.1 27.65C43.58 27.41 43.94 27.07 44.18 26.63C44.44 26.19 44.57 25.67 44.57 25.07C44.57 24.47 44.44 23.95 44.18 23.51C43.94 23.05 43.59 22.7 43.13 22.46C42.69 22.2 42.17 22.06 41.57 22.04C41.17 22.02 40.81 22.07 40.49 22.19C40.19 22.29 39.81 22.48 39.35 22.76L36.29 18.95L44.48 11.39L45.8 14.12H34.16V8.9H49.01V13.43L43.64 17.81L43.7 17.96C44.86 17.96 45.93 18.27 46.91 18.89C47.89 19.49 48.66 20.34 49.22 21.44C49.8 22.52 50.09 23.73 50.09 25.07C50.09 26.61 49.72 27.98 48.98 29.18C48.26 30.38 47.25 31.32 45.95 32C44.67 32.68 43.21 33.02 41.57 33.02ZM55.9344 33.02C54.9744 33.02 54.1844 32.71 53.5644 32.09C52.9644 31.47 52.6644 30.68 52.6644 29.72C52.6644 28.76 52.9644 27.97 53.5644 27.35C54.1844 26.73 54.9744 26.42 55.9344 26.42C56.9144 26.42 57.7144 26.73 58.3344 27.35C58.9544 27.97 59.2644 28.76 59.2644 29.72C59.2644 30.68 58.9544 31.47 58.3344 32.09C57.7144 32.71 56.9144 33.02 55.9344 33.02ZM76.8915 32.6H71.3115V11.21H73.3815L67.4715 23.24H79.8015V28.46H60.9915V25.04L69.1815 8.9H76.8915V32.6Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1,4 @@
<svg width="80" height="40" viewBox="0 0 80 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M41.57 33.02C39.47 33.02 37.72 32.53 36.32 31.55C34.92 30.57 33.9 29.32 33.26 27.8L37.61 24.86C38.03 25.9 38.55 26.68 39.17 27.2C39.79 27.72 40.57 27.98 41.51 27.98C42.11 27.98 42.64 27.87 43.1 27.65C43.58 27.41 43.94 27.07 44.18 26.63C44.44 26.19 44.57 25.67 44.57 25.07C44.57 24.47 44.44 23.95 44.18 23.51C43.94 23.05 43.59 22.7 43.13 22.46C42.69 22.2 42.17 22.06 41.57 22.04C41.17 22.02 40.81 22.07 40.49 22.19C40.19 22.29 39.81 22.48 39.35 22.76L36.29 18.95L44.48 11.39L45.8 14.12H34.16V8.9H49.01V13.43L43.64 17.81L43.7 17.96C44.86 17.96 45.93 18.27 46.91 18.89C47.89 19.49 48.66 20.34 49.22 21.44C49.8 22.52 50.09 23.73 50.09 25.07C50.09 26.61 49.72 27.98 48.98 29.18C48.26 30.38 47.25 31.32 45.95 32C44.67 32.68 43.21 33.02 41.57 33.02ZM55.9344 33.02C54.9744 33.02 54.1844 32.71 53.5644 32.09C52.9644 31.47 52.6644 30.68 52.6644 29.72C52.6644 28.76 52.9644 27.97 53.5644 27.35C54.1844 26.73 54.9744 26.42 55.9344 26.42C56.9144 26.42 57.7144 26.73 58.3344 27.35C58.9544 27.97 59.2644 28.76 59.2644 29.72C59.2644 30.68 58.9544 31.47 58.3344 32.09C57.7144 32.71 56.9144 33.02 55.9344 33.02ZM66.0873 25.1C66.4873 26.06 66.9973 26.78 67.6173 27.26C68.2573 27.74 68.9973 27.98 69.8373 27.98C70.4973 27.98 71.0673 27.86 71.5473 27.62C72.0473 27.38 72.4273 27.04 72.6873 26.6C72.9673 26.14 73.1073 25.6 73.1073 24.98C73.1073 24.34 72.9773 23.79 72.7173 23.33C72.4573 22.87 72.0773 22.52 71.5773 22.28C71.0973 22.04 70.5173 21.92 69.8373 21.92C69.1173 21.92 68.4673 22.1 67.8873 22.46C67.3273 22.82 66.8973 23.35 66.5973 24.05L61.8873 21.92L62.8773 8.9H77.5173V13.94H68.1273L67.6473 18.86L65.9373 18.95C66.5173 18.31 67.2673 17.82 68.1873 17.48C69.1073 17.12 70.0573 16.94 71.0373 16.94C72.5973 16.94 73.9473 17.27 75.0873 17.93C76.2273 18.57 77.0973 19.49 77.6973 20.69C78.3173 21.87 78.6273 23.25 78.6273 24.83C78.6273 26.51 78.2673 27.97 77.5473 29.21C76.8273 30.43 75.7873 31.37 74.4273 32.03C73.0873 32.69 71.4973 33.02 69.6573 33.02C67.7773 33.02 66.1173 32.6 64.6773 31.76C63.2573 30.9 62.2173 29.7 61.5573 28.16L66.0873 25.1Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,301 @@
<svg width="142" height="71" viewBox="0 0 142 71" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_i_1461_1939)">
<path d="M24.3011 18.2322C24.1019 17.3671 24.9675 16.6408 25.7849 16.9872L31.5111 19.4139C31.8311 19.5495 32.1967 19.5239 32.4948 19.3451L37.8276 16.1451C38.5888 15.6883 39.547 16.2871 39.4701 17.1715L38.9318 23.3674C38.9017 23.7137 39.039 24.0534 39.3012 24.2816L43.9924 28.3646C44.6621 28.9474 44.3887 30.0437 43.5239 30.2439L37.4649 31.6466C37.1263 31.725 36.8455 31.9605 36.7095 32.2804L34.2761 38.0037C33.9287 38.8207 32.8016 38.8995 32.3439 38.1389L29.1376 32.8099C28.9584 32.512 28.6476 32.3178 28.3014 32.2873L22.1062 31.7416C21.2218 31.6637 20.7986 30.6161 21.3806 29.9458L25.458 25.2496C25.6859 24.9872 25.7745 24.6316 25.6965 24.2929L24.3011 18.2322Z" fill="#43628F"/>
</g>
<path d="M24.3011 18.2322C24.1019 17.3671 24.9675 16.6408 25.7849 16.9872L31.5111 19.4139C31.8311 19.5495 32.1967 19.5239 32.4948 19.3451L37.8276 16.1451C38.5888 15.6883 39.547 16.2871 39.4701 17.1715L38.9318 23.3674C38.9017 23.7137 39.039 24.0534 39.3012 24.2816L43.9924 28.3646C44.6621 28.9474 44.3887 30.0437 43.5239 30.2439L37.4649 31.6466C37.1263 31.725 36.8455 31.9605 36.7095 32.2804L34.2761 38.0037C33.9287 38.8207 32.8016 38.8995 32.3439 38.1389L29.1376 32.8099C28.9584 32.512 28.6476 32.3178 28.3014 32.2873L22.1062 31.7416C21.2218 31.6637 20.7986 30.6161 21.3806 29.9458L25.458 25.2496C25.6859 24.9872 25.7745 24.6316 25.6965 24.2929L24.3011 18.2322Z" fill="url(#paint0_linear_1461_1939)"/>
<path d="M24.3021 18.2322C24.1029 17.367 24.9685 16.6408 25.7859 16.9871L31.5121 19.4138C31.8321 19.5494 32.1977 19.5238 32.4958 19.345L37.8286 16.145C38.5898 15.6883 39.548 16.287 39.4711 17.1714L38.9328 23.3673C38.9027 23.7136 39.04 24.0534 39.3022 24.2815L43.9934 28.3645C44.6631 28.9473 44.3897 30.0436 43.5249 30.2439L37.4659 31.6465C37.1273 31.7249 36.8465 31.9604 36.7105 32.2803L34.2771 38.0037C33.9297 38.8206 32.8026 38.8995 32.3449 38.1388L29.1386 32.8098C28.9594 32.512 28.6486 32.3178 28.3024 32.2873L22.1072 31.7415C21.2228 31.6636 20.7996 30.616 21.3816 29.9457L25.459 25.2496C25.6868 24.9871 25.7755 24.6315 25.6975 24.2928L24.3021 18.2322Z" fill="url(#paint1_linear_1461_1939)"/>
<path d="M24.3021 18.2322C24.1029 17.367 24.9685 16.6408 25.7859 16.9871L31.5121 19.4138C31.8321 19.5494 32.1977 19.5238 32.4958 19.345L37.8286 16.145C38.5898 15.6883 39.548 16.287 39.4711 17.1714L38.9328 23.3673C38.9027 23.7136 39.04 24.0534 39.3022 24.2815L43.9934 28.3645C44.6631 28.9473 44.3897 30.0436 43.5249 30.2439L37.4659 31.6465C37.1273 31.7249 36.8465 31.9604 36.7105 32.2803L34.2771 38.0037C33.9297 38.8206 32.8026 38.8995 32.3449 38.1388L29.1386 32.8098C28.9594 32.512 28.6486 32.3178 28.3024 32.2873L22.1072 31.7415C21.2228 31.6636 20.7996 30.616 21.3816 29.9457L25.459 25.2496C25.6868 24.9871 25.7755 24.6315 25.6975 24.2928L24.3021 18.2322Z" fill="url(#paint2_radial_1461_1939)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.3707 19.7475L25.6445 17.3208C25.0995 17.0899 24.5225 17.5741 24.6553 18.1509L26.0507 24.2115C26.1547 24.6631 26.0365 25.1372 25.7326 25.4872L21.6553 30.1833C21.2672 30.6302 21.5494 31.3286 22.139 31.3805L28.3342 31.9262C28.7958 31.9669 29.2102 32.2258 29.4491 32.6229L32.6554 37.9519C32.9606 38.4591 33.712 38.4065 33.9436 37.8619L36.377 32.1385C36.5583 31.712 36.9327 31.3979 37.3841 31.2934L43.4431 29.8908C44.0197 29.7573 44.2019 29.0264 43.7555 28.6379L39.0642 24.5549C38.7147 24.2507 38.5316 23.7976 38.5717 23.3359L39.1101 17.1401C39.1613 16.5504 38.5225 16.1513 38.015 16.4558L32.6822 19.6558C32.2848 19.8942 31.7974 19.9283 31.3707 19.7475ZM25.7859 16.9871C24.9685 16.6408 24.1029 17.367 24.3021 18.2322L25.6975 24.2928C25.7755 24.6315 25.6868 24.9871 25.459 25.2496L21.3816 29.9457C20.7996 30.616 21.2228 31.6636 22.1072 31.7415L28.3024 32.2873C28.6486 32.3178 28.9594 32.512 29.1386 32.8098L32.3449 38.1388C32.8026 38.8995 33.9297 38.8206 34.2771 38.0037L36.7105 32.2803C36.8465 31.9604 37.1273 31.7249 37.4659 31.6465L43.5249 30.2439C44.3897 30.0436 44.6631 28.9473 43.9934 28.3645L39.3022 24.2815C39.04 24.0534 38.9027 23.7136 38.9328 23.3673L39.4711 17.1714C39.548 16.287 38.5898 15.6883 37.8286 16.145L32.4958 19.345C32.1977 19.5238 31.8321 19.5494 31.5121 19.4138L25.7859 16.9871Z" fill="url(#paint3_linear_1461_1939)"/>
<path d="M28.1785 22.0787C28.1063 21.667 28.5065 21.3312 28.8994 21.4738L32.007 22.6017C32.1515 22.6541 32.3114 22.6429 32.4472 22.5709L35.3676 21.0215C35.7369 20.8256 36.1799 21.1024 36.1657 21.5202L36.0533 24.8242C36.0481 24.9778 36.1082 25.1265 36.2186 25.2334L38.5946 27.5321C38.895 27.8227 38.7687 28.3296 38.3669 28.4452L35.1899 29.3593C35.0422 29.4018 34.9194 29.5049 34.8519 29.643L33.3999 32.613C33.2163 32.9886 32.6952 33.025 32.4611 32.6786L30.61 29.9396C30.5239 29.8123 30.3879 29.7273 30.2357 29.7058L26.9624 29.2427C26.5485 29.1841 26.3528 28.6998 26.6099 28.3701L28.6428 25.7631C28.7373 25.6419 28.7761 25.4864 28.7496 25.3349L28.1785 22.0787Z" fill="url(#paint4_linear_1461_1939)"/>
<path d="M36.5639 20.6026C35.5235 29.5664 29.2741 31.2317 26.2794 30.9439C20.7573 29.3538 28.6019 27.7503 32.3078 22.4623C35.2726 18.2319 36.3805 19.4598 36.5639 20.6026Z" fill="url(#paint5_linear_1461_1939)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.2673 19.0325C25.4134 18.9983 25.5596 19.0891 25.5938 19.2353L25.9815 20.8929C26.0156 21.0391 25.9249 21.1853 25.7787 21.2194C25.6325 21.2536 25.4863 21.1628 25.4521 21.0167L25.0645 19.3591C25.0303 19.2129 25.1211 19.0667 25.2673 19.0325Z" fill="#93D6F6"/>
<circle cx="22.2814" cy="30.1053" r="0.271812" transform="rotate(-40 22.2814 30.1053)" fill="#93D6F6"/>
<circle cx="25.8488" cy="21.6712" r="0.271812" transform="rotate(-40 25.8488 21.6712)" fill="#93D6F6"/>
<path d="M27.1915 24.2082C27.4893 27.7707 29.0758 28.5151 29.8319 28.442C31.8403 27.8772 31.2393 21.7705 30.5575 20.5931C29.8756 19.4158 26.8192 19.755 27.1915 24.2082Z" fill="url(#paint6_linear_1461_1939)" fill-opacity="0.6"/>
<g filter="url(#filter1_i_1461_1939)">
<path d="M12.5315 45.8979C12.9351 45.1071 14.0649 45.1071 14.4685 45.8979L17.2952 51.4376C17.4532 51.7472 17.7497 51.9626 18.0929 52.0171L24.235 52.9937C25.1117 53.1331 25.4609 54.2077 24.8335 54.8358L20.4385 59.2361C20.1929 59.482 20.0796 59.8305 20.1338 60.1738L21.103 66.3171C21.2414 67.194 20.3273 67.8581 19.5361 67.4555L13.993 64.6354C13.6832 64.4778 13.3168 64.4778 13.007 64.6354L7.46395 67.4555C6.67271 67.8581 5.75861 67.194 5.89696 66.3171L6.8662 60.1738C6.92037 59.8305 6.80713 59.482 6.5615 59.2361L2.16648 54.8358C1.53911 54.2077 1.88826 53.1331 2.76501 52.9937L8.90707 52.0171C9.25033 51.9626 9.54681 51.7472 9.70479 51.4376L12.5315 45.8979Z" fill="#43628F"/>
</g>
<path d="M12.5315 45.8979C12.9351 45.1071 14.0649 45.1071 14.4685 45.8979L17.2952 51.4376C17.4532 51.7472 17.7497 51.9626 18.0929 52.0171L24.235 52.9937C25.1117 53.1331 25.4609 54.2077 24.8335 54.8358L20.4385 59.2361C20.1929 59.482 20.0796 59.8305 20.1338 60.1738L21.103 66.3171C21.2414 67.194 20.3273 67.8581 19.5361 67.4555L13.993 64.6354C13.6832 64.4778 13.3168 64.4778 13.007 64.6354L7.46395 67.4555C6.67271 67.8581 5.75861 67.194 5.89696 66.3171L6.8662 60.1738C6.92037 59.8305 6.80713 59.482 6.5615 59.2361L2.16648 54.8358C1.53911 54.2077 1.88826 53.1331 2.76501 52.9937L8.90707 52.0171C9.25033 51.9626 9.54681 51.7472 9.70479 51.4376L12.5315 45.8979Z" fill="url(#paint7_linear_1461_1939)"/>
<path d="M12.5318 45.8978C12.9353 45.107 14.0652 45.107 14.4687 45.8978L17.2955 51.4374C17.4535 51.747 17.75 51.9624 18.0932 52.017L24.2353 52.9936C25.112 53.133 25.4612 54.2075 24.8338 54.8357L20.4388 59.2359C20.1932 59.4818 20.0799 59.8304 20.1341 60.1737L21.1033 66.3169C21.2417 67.1938 20.3276 67.858 19.5363 67.4554L13.9933 64.6352C13.6835 64.4776 13.3171 64.4776 13.0073 64.6352L7.46425 67.4554C6.673 67.858 5.7589 67.1938 5.89726 66.3169L6.8665 60.1737C6.92067 59.8304 6.80742 59.4818 6.56179 59.2359L2.16677 54.8357C1.5394 54.2075 1.88856 53.133 2.76531 52.9936L8.90736 52.017C9.25062 51.9624 9.54711 51.747 9.70509 51.4374L12.5318 45.8978Z" fill="url(#paint8_linear_1461_1939)"/>
<path d="M12.5318 45.8978C12.9353 45.107 14.0652 45.107 14.4687 45.8978L17.2955 51.4374C17.4535 51.747 17.75 51.9624 18.0932 52.017L24.2353 52.9936C25.112 53.133 25.4612 54.2075 24.8338 54.8357L20.4388 59.2359C20.1932 59.4818 20.0799 59.8304 20.1341 60.1737L21.1033 66.3169C21.2417 67.1938 20.3276 67.858 19.5363 67.4554L13.9933 64.6352C13.6835 64.4776 13.3171 64.4776 13.0073 64.6352L7.46425 67.4554C6.673 67.858 5.7589 67.1938 5.89726 66.3169L6.8665 60.1737C6.92067 59.8304 6.80742 59.4818 6.56179 59.2359L2.16677 54.8357C1.5394 54.2075 1.88856 53.133 2.76531 52.9936L8.90736 52.017C9.25062 51.9624 9.54711 51.747 9.70509 51.4374L12.5318 45.8978Z" fill="url(#paint9_radial_1461_1939)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.9727 51.6021L14.1459 46.0625C13.8769 45.5353 13.1237 45.5353 12.8547 46.0625L10.0279 51.6021C9.81726 52.0149 9.42195 52.3022 8.96427 52.3749L2.82222 53.3515C2.23771 53.4444 2.00494 54.1608 2.42319 54.5795L6.81821 58.9798C7.14571 59.3077 7.29671 59.7724 7.22448 60.2302L6.25524 66.3734C6.16301 66.958 6.77241 67.4008 7.2999 67.1324L12.8429 64.3122C13.256 64.1021 13.7446 64.1021 14.1577 64.3122L19.7007 67.1324C20.2282 67.4008 20.8376 66.958 20.7453 66.3734L19.7761 60.2302C19.7039 59.7724 19.8549 59.3077 20.1824 58.9798L24.5774 54.5796C24.9956 54.1608 24.7629 53.4444 24.1784 53.3515L18.0363 52.3749C17.5786 52.3022 17.1833 52.0149 16.9727 51.6021ZM14.4687 45.8978C14.0652 45.107 12.9353 45.107 12.5318 45.8978L9.70509 51.4374C9.54711 51.747 9.25062 51.9624 8.90736 52.017L2.76531 52.9936C1.88856 53.133 1.5394 54.2075 2.16677 54.8357L6.56179 59.2359C6.80742 59.4818 6.92067 59.8304 6.8665 60.1737L5.89726 66.3169C5.7589 67.1938 6.673 67.858 7.46425 67.4554L13.0073 64.6352C13.3171 64.4776 13.6835 64.4776 13.9933 64.6352L19.5363 67.4554C20.3276 67.858 21.2417 67.1938 21.1033 66.3169L20.1341 60.1737C20.0799 59.8304 20.1932 59.4818 20.4388 59.2359L24.8338 54.8357C25.4612 54.2075 25.112 53.133 24.2353 52.9936L18.0932 52.017C17.75 51.9624 17.4535 51.747 17.2955 51.4374L14.4687 45.8978Z" fill="url(#paint10_linear_1461_1939)"/>
<path d="M13.0294 51.3367C13.2388 50.9749 13.7611 50.9749 13.9705 51.3367L15.6261 54.1982C15.7031 54.3312 15.8328 54.4255 15.9831 54.4576L19.2161 55.1479C19.625 55.2352 19.7864 55.732 19.5069 56.0429L17.2971 58.5017C17.1944 58.616 17.1448 58.7685 17.1607 58.9214L17.5033 62.2095C17.5466 62.6253 17.124 62.9324 16.7419 62.7627L13.7206 61.4208C13.5801 61.3584 13.4198 61.3584 13.2793 61.4208L10.258 62.7627C9.87591 62.9324 9.4533 62.6253 9.49661 62.2095L9.83915 58.9214C9.85507 58.7685 9.80553 58.616 9.70277 58.5017L7.49296 56.0429C7.21352 55.732 7.37494 55.2352 7.78377 55.1479L11.0168 54.4576C11.1671 54.4255 11.2968 54.3312 11.3738 54.1982L13.0294 51.3367Z" fill="url(#paint11_linear_1461_1939)"/>
<path d="M20.4019 55.596C13.8431 61.7939 7.98533 59.0525 5.8763 56.9071C2.66819 52.1395 9.70821 55.9536 15.9462 54.2849C20.9366 52.9499 20.996 54.6027 20.4019 55.596Z" fill="url(#paint12_linear_1461_1939)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7568 47.1314C12.8907 47.1992 12.9444 47.3627 12.8766 47.4967L12.1081 49.0156C12.0403 49.1496 11.8768 49.2032 11.7428 49.1354C11.6089 49.0677 11.5552 48.9041 11.623 48.7702L12.3915 47.2512C12.4593 47.1173 12.6228 47.0636 12.7568 47.1314Z" fill="#93D6F6"/>
<circle cx="3.35287" cy="53.6947" r="0.271812" fill="#93D6F6"/>
<circle cx="11.5072" cy="49.5267" r="0.271812" fill="#93D6F6"/>
<path d="M10.9048 52.3333C8.843 55.2538 9.57983 56.8439 10.206 57.2738C12.1076 58.1321 15.5725 53.0678 15.807 51.7276C16.0415 50.3874 13.482 48.6827 10.9048 52.3333Z" fill="url(#paint13_linear_1461_1939)" fill-opacity="0.6"/>
<g filter="url(#filter2_i_1461_1939)">
<path d="M69.9485 1.8979C70.352 1.10714 71.4819 1.10714 71.8854 1.8979L74.7122 7.43756C74.8702 7.74716 75.1667 7.96257 75.5099 8.01715L81.652 8.9937C82.5287 9.1331 82.8779 10.2077 82.2505 10.8358L77.8555 15.2361C77.6099 15.482 77.4966 15.8305 77.5508 16.1738L78.52 22.3171C78.6584 23.194 77.7443 23.8581 76.953 23.4555L71.41 20.6354C71.1002 20.4778 70.7338 20.4778 70.424 20.6354L64.8809 23.4555C64.0897 23.8581 63.1756 23.194 63.314 22.3171L64.2832 16.1738C64.3374 15.8305 64.2241 15.482 63.9785 15.2361L59.5835 10.8358C58.9561 10.2077 59.3053 9.1331 60.182 8.9937L66.3241 8.01715C66.6673 7.96257 66.9638 7.74716 67.1218 7.43756L69.9485 1.8979Z" fill="#43628F"/>
</g>
<path d="M69.9485 1.8979C70.352 1.10714 71.4819 1.10714 71.8854 1.8979L74.7122 7.43756C74.8702 7.74716 75.1667 7.96257 75.5099 8.01715L81.652 8.9937C82.5287 9.1331 82.8779 10.2077 82.2505 10.8358L77.8555 15.2361C77.6099 15.482 77.4966 15.8305 77.5508 16.1738L78.52 22.3171C78.6584 23.194 77.7443 23.8581 76.953 23.4555L71.41 20.6354C71.1002 20.4778 70.7338 20.4778 70.424 20.6354L64.8809 23.4555C64.0897 23.8581 63.1756 23.194 63.314 22.3171L64.2832 16.1738C64.3374 15.8305 64.2241 15.482 63.9785 15.2361L59.5835 10.8358C58.9561 10.2077 59.3053 9.1331 60.182 8.9937L66.3241 8.01715C66.6673 7.96257 66.9638 7.74716 67.1218 7.43756L69.9485 1.8979Z" fill="url(#paint14_linear_1461_1939)"/>
<path d="M69.9488 1.89776C70.3523 1.107 71.4822 1.107 71.8857 1.89776L74.7125 7.43742C74.8705 7.74702 75.167 7.96243 75.5102 8.01701L81.6523 8.99356C82.529 9.13296 82.8782 10.2075 82.2508 10.8357L77.8558 15.2359C77.6102 15.4818 77.4969 15.8304 77.5511 16.1737L78.5203 22.3169C78.6587 23.1938 77.7446 23.858 76.9533 23.4554L71.4103 20.6352C71.1005 20.4776 70.7341 20.4776 70.4243 20.6352L64.8812 23.4554C64.09 23.858 63.1759 23.1938 63.3142 22.3169L64.2835 16.1737C64.3377 15.8304 64.2244 15.4818 63.9788 15.2359L59.5838 10.8357C58.9564 10.2075 59.3056 9.13296 60.1823 8.99356L66.3244 8.01701C66.6676 7.96243 66.9641 7.74702 67.1221 7.43742L69.9488 1.89776Z" fill="url(#paint15_linear_1461_1939)"/>
<path d="M69.9488 1.89776C70.3523 1.107 71.4822 1.107 71.8857 1.89776L74.7125 7.43742C74.8705 7.74702 75.167 7.96243 75.5102 8.01701L81.6523 8.99356C82.529 9.13296 82.8782 10.2075 82.2508 10.8357L77.8558 15.2359C77.6102 15.4818 77.4969 15.8304 77.5511 16.1737L78.5203 22.3169C78.6587 23.1938 77.7446 23.858 76.9533 23.4554L71.4103 20.6352C71.1005 20.4776 70.7341 20.4776 70.4243 20.6352L64.8812 23.4554C64.09 23.858 63.1759 23.1938 63.3142 22.3169L64.2835 16.1737C64.3377 15.8304 64.2244 15.4818 63.9788 15.2359L59.5838 10.8357C58.9564 10.2075 59.3056 9.13296 60.1823 8.99356L66.3244 8.01701C66.6676 7.96243 66.9641 7.74702 67.1221 7.43742L69.9488 1.89776Z" fill="url(#paint16_radial_1461_1939)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M74.3897 7.60215L71.5629 2.06248C71.2939 1.53531 70.5407 1.53531 70.2717 2.06249L67.4449 7.60215C67.2343 8.01495 66.8389 8.30216 66.3813 8.37493L60.2392 9.35148C59.6547 9.44441 59.4219 10.1608 59.8402 10.5795L64.2352 14.9798C64.5627 15.3077 64.7137 15.7724 64.6415 16.2302L63.6722 22.3734C63.58 22.958 64.1894 23.4008 64.7169 23.1324L70.2599 20.3122C70.673 20.1021 71.1616 20.1021 71.5747 20.3122L77.1177 23.1324C77.6452 23.4008 78.2546 22.958 78.1623 22.3734L77.1931 16.2302C77.1209 15.7724 77.2719 15.3077 77.5994 14.9798L81.9944 10.5796C82.4126 10.1608 82.1799 9.44441 81.5954 9.35148L75.4533 8.37493C74.9956 8.30216 74.6003 8.01495 74.3897 7.60215ZM71.8857 1.89776C71.4822 1.107 70.3523 1.107 69.9488 1.89776L67.1221 7.43742C66.9641 7.74702 66.6676 7.96243 66.3244 8.01701L60.1823 8.99356C59.3056 9.13296 58.9564 10.2075 59.5838 10.8357L63.9788 15.2359C64.2244 15.4818 64.3377 15.8304 64.2835 16.1737L63.3142 22.3169C63.1759 23.1938 64.09 23.858 64.8812 23.4554L70.4243 20.6352C70.7341 20.4776 71.1005 20.4776 71.4103 20.6352L76.9533 23.4554C77.7446 23.858 78.6587 23.1938 78.5203 22.3169L77.5511 16.1737C77.4969 15.8304 77.6102 15.4818 77.8558 15.2359L82.2508 10.8357C82.8782 10.2075 82.529 9.13296 81.6523 8.99356L75.5102 8.01701C75.167 7.96243 74.8705 7.74702 74.7125 7.43742L71.8857 1.89776Z" fill="url(#paint17_linear_1461_1939)"/>
<path d="M70.4464 7.33671C70.6557 6.97487 71.1781 6.97487 71.3875 7.33671L73.0431 10.1982C73.12 10.3312 73.2498 10.4255 73.4001 10.4576L76.6331 11.1479C77.0419 11.2352 77.2034 11.732 76.9239 12.0429L74.7141 14.5017C74.6114 14.616 74.5618 14.7685 74.5777 14.9214L74.9203 18.2095C74.9636 18.6253 74.541 18.9324 74.1589 18.7627L71.1376 17.4208C70.9971 17.3584 70.8368 17.3584 70.6963 17.4208L67.675 18.7627C67.2929 18.9324 66.8703 18.6253 66.9136 18.2095L67.2561 14.9214C67.2721 14.7685 67.2225 14.616 67.1198 14.5017L64.9099 12.0429C64.6305 11.732 64.7919 11.2352 65.2008 11.1479L68.4338 10.4576C68.5841 10.4255 68.7138 10.3312 68.7908 10.1982L70.4464 7.33671Z" fill="url(#paint18_linear_1461_1939)"/>
<path d="M77.8189 11.596C71.2601 17.7939 65.4023 15.0525 63.2933 12.9071C60.0852 8.13949 67.1252 11.9536 73.3632 10.2849C78.3536 8.94995 78.413 10.6027 77.8189 11.596Z" fill="url(#paint19_linear_1461_1939)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M70.1738 3.13142C70.3077 3.19919 70.3613 3.36272 70.2936 3.49667L69.5251 5.01561C69.4573 5.14956 69.2938 5.20321 69.1598 5.13544C69.0259 5.06766 68.9722 4.90414 69.04 4.77019L69.8085 3.25124C69.8763 3.1173 70.0398 3.06365 70.1738 3.13142Z" fill="#93D6F6"/>
<circle cx="60.7699" cy="9.69466" r="0.271812" fill="#93D6F6"/>
<circle cx="68.9242" cy="5.52669" r="0.271812" fill="#93D6F6"/>
<path d="M68.3218 8.33329C66.26 11.2538 66.9968 12.8439 67.623 13.2738C69.5246 14.1321 72.9895 9.06778 73.224 7.72761C73.4584 6.38744 70.899 4.68267 68.3218 8.33329Z" fill="url(#paint20_linear_1461_1939)" fill-opacity="0.6"/>
<g filter="url(#filter3_i_1461_1939)">
<path d="M115.217 16.5871C116.034 16.2407 116.9 16.967 116.7 17.8321L115.305 23.8928C115.227 24.2315 115.316 24.5871 115.544 24.8495L119.621 29.5456C120.203 30.216 119.78 31.2636 118.895 31.3415L112.7 31.8872C112.354 31.9177 112.043 32.1119 111.864 32.4098L108.658 37.7388C108.2 38.4994 107.073 38.4206 106.725 37.6036L104.292 31.8803C104.156 31.5604 103.875 31.3249 103.537 31.2465L97.4777 29.8438C96.6128 29.6436 96.3395 28.5473 97.0091 27.9645L101.7 23.8815C101.963 23.6533 102.1 23.3135 102.07 22.9673L101.531 16.7714C101.455 15.887 102.413 15.2882 103.174 15.745L108.507 18.945C108.805 19.1238 109.17 19.1494 109.49 19.0138L115.217 16.5871Z" fill="#43628F"/>
</g>
<path d="M115.217 16.5871C116.034 16.2407 116.9 16.967 116.7 17.8321L115.305 23.8928C115.227 24.2315 115.316 24.5871 115.544 24.8495L119.621 29.5456C120.203 30.216 119.78 31.2636 118.895 31.3415L112.7 31.8872C112.354 31.9177 112.043 32.1119 111.864 32.4098L108.658 37.7388C108.2 38.4994 107.073 38.4206 106.725 37.6036L104.292 31.8803C104.156 31.5604 103.875 31.3249 103.537 31.2465L97.4777 29.8438C96.6128 29.6436 96.3395 28.5473 97.0091 27.9645L101.7 23.8815C101.963 23.6533 102.1 23.3135 102.07 22.9673L101.531 16.7714C101.455 15.887 102.413 15.2882 103.174 15.745L108.507 18.945C108.805 19.1238 109.17 19.1494 109.49 19.0138L115.217 16.5871Z" fill="url(#paint21_linear_1461_1939)"/>
<path d="M115.216 16.5871C116.034 16.2407 116.899 16.967 116.7 17.8321L115.305 23.8928C115.227 24.2315 115.315 24.5871 115.543 24.8495L119.621 29.5456C120.203 30.216 119.779 31.2636 118.895 31.3415L112.7 31.8872C112.354 31.9177 112.043 32.1119 111.864 32.4098L108.657 37.7387C108.2 38.4994 107.073 38.4206 106.725 37.6036L104.292 31.8803C104.156 31.5604 103.875 31.3249 103.536 31.2465L97.4774 29.8438C96.6126 29.6436 96.3392 28.5473 97.0089 27.9645L101.7 23.8815C101.962 23.6533 102.1 23.3135 102.069 22.9673L101.531 16.7714C101.454 15.887 102.413 15.2882 103.174 15.745L108.507 18.945C108.805 19.1238 109.17 19.1494 109.49 19.0137L115.216 16.5871Z" fill="url(#paint22_linear_1461_1939)"/>
<path d="M115.216 16.5871C116.034 16.2407 116.899 16.967 116.7 17.8321L115.305 23.8928C115.227 24.2315 115.315 24.5871 115.543 24.8495L119.621 29.5456C120.203 30.216 119.779 31.2636 118.895 31.3415L112.7 31.8872C112.354 31.9177 112.043 32.1119 111.864 32.4098L108.657 37.7387C108.2 38.4994 107.073 38.4206 106.725 37.6036L104.292 31.8803C104.156 31.5604 103.875 31.3249 103.536 31.2465L97.4774 29.8438C96.6126 29.6436 96.3392 28.5473 97.0089 27.9645L101.7 23.8815C101.962 23.6533 102.1 23.3135 102.069 22.9673L101.531 16.7714C101.454 15.887 102.413 15.2882 103.174 15.745L108.507 18.945C108.805 19.1238 109.17 19.1494 109.49 19.0137L115.216 16.5871Z" fill="url(#paint23_radial_1461_1939)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M114.952 23.8115L116.347 17.7508C116.48 17.1741 115.903 16.6899 115.358 16.9208L109.632 19.3474C109.205 19.5283 108.717 19.4942 108.32 19.2557L102.987 16.0558C102.48 15.7513 101.841 16.1504 101.892 16.74L102.431 22.9359C102.471 23.3976 102.288 23.8506 101.938 24.1549L97.2468 28.2378C96.8004 28.6264 96.9826 29.3573 97.5592 29.4908L103.618 30.8934C104.07 30.9979 104.444 31.312 104.625 31.7385L107.059 37.4618C107.29 38.0065 108.042 38.059 108.347 37.5519L111.553 32.2229C111.792 31.8258 112.206 31.5669 112.668 31.5262L118.863 30.9805C119.453 30.9286 119.735 30.2301 119.347 29.7832L115.27 25.0871C114.966 24.7372 114.848 24.2631 114.952 23.8115ZM116.7 17.8321C116.899 16.967 116.034 16.2407 115.216 16.5871L109.49 19.0137C109.17 19.1494 108.805 19.1238 108.507 18.945L103.174 15.745C102.413 15.2882 101.454 15.887 101.531 16.7714L102.069 22.9673C102.1 23.3135 101.962 23.6533 101.7 23.8815L97.0089 27.9645C96.3392 28.5473 96.6126 29.6436 97.4774 29.8438L103.536 31.2465C103.875 31.3249 104.156 31.5604 104.292 31.8803L106.725 37.6036C107.073 38.4206 108.2 38.4994 108.657 37.7387L111.864 32.4098C112.043 32.1119 112.354 31.9177 112.7 31.8872L118.895 31.3415C119.779 31.2636 120.203 30.216 119.621 29.5456L115.543 24.8495C115.315 24.5871 115.227 24.2315 115.305 23.8928L116.7 17.8321Z" fill="url(#paint24_linear_1461_1939)"/>
<path d="M112.102 21.0735C112.495 20.9309 112.895 21.2667 112.823 21.6784L112.252 24.9346C112.225 25.086 112.264 25.2416 112.358 25.3628L114.391 27.9698C114.648 28.2995 114.453 28.7838 114.039 28.8424L110.765 29.3055C110.613 29.327 110.477 29.412 110.391 29.5393L108.54 32.2783C108.306 32.6247 107.785 32.5882 107.601 32.2127L106.149 29.2427C106.082 29.1046 105.959 29.0015 105.811 28.959L102.634 28.0449C102.232 27.9293 102.106 27.4224 102.407 27.1317L104.782 24.8331C104.893 24.7262 104.953 24.5775 104.948 24.4239L104.835 21.1199C104.821 20.7021 105.264 20.4253 105.634 20.6212L108.554 22.1706C108.69 22.2426 108.85 22.2538 108.994 22.2013L112.102 21.0735Z" fill="url(#paint25_linear_1461_1939)"/>
<path d="M115.011 29.0751C106.003 29.6071 103.278 23.7417 103.041 20.7426C103.648 15.0282 106.59 22.4752 112.441 25.2066C117.122 27.3918 116.105 28.6961 115.011 29.0751Z" fill="url(#paint26_linear_1461_1939)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M114.596 17.6769C114.655 17.815 114.591 17.9747 114.453 18.0338L112.888 18.7033C112.75 18.7624 112.591 18.6984 112.532 18.5604C112.472 18.4223 112.537 18.2626 112.675 18.2035L114.24 17.534C114.378 17.4749 114.537 17.5389 114.596 17.6769Z" fill="#93D6F6"/>
<circle cx="103.173" cy="16.6593" r="0.271812" transform="rotate(40 103.173 16.6593)" fill="#93D6F6"/>
<circle cx="112.099" cy="18.7081" r="0.271812" transform="rotate(40 112.099 18.7081)" fill="#93D6F6"/>
<path d="M109.834 20.4705C106.377 21.3825 105.919 23.0741 106.123 23.806C107.028 25.6858 112.937 24.0335 113.978 23.1576C115.019 22.2817 114.155 19.3306 109.834 20.4705Z" fill="url(#paint27_linear_1461_1939)" fill-opacity="0.6"/>
<g opacity="0.5">
<g opacity="0.8" filter="url(#filter4_i_1461_1939)">
<path d="M127.701 45.5657C128.034 44.9134 128.966 44.9134 129.299 45.5657L132.339 51.5238C132.47 51.7792 132.714 51.9569 132.997 52.0019L139.603 53.0523C140.327 53.1673 140.615 54.0538 140.097 54.572L135.37 59.3046C135.167 59.5074 135.074 59.795 135.119 60.0782L136.161 66.6854C136.275 67.4089 135.521 67.9568 134.868 67.6246L128.907 64.5915C128.651 64.4615 128.349 64.4615 128.093 64.5915L122.132 67.6246C121.479 67.9568 120.725 67.4089 120.839 66.6854L121.881 60.0782C121.926 59.795 121.833 59.5074 121.63 59.3046L116.903 54.572C116.385 54.0538 116.673 53.1673 117.397 53.0523L124.003 52.0019C124.286 51.9569 124.53 51.7792 124.661 51.5238L127.701 45.5657Z" fill="url(#paint28_linear_1461_1939)"/>
</g>
<path opacity="0.3" d="M127.701 45.5657C128.034 44.9134 128.966 44.9134 129.299 45.5657L132.339 51.5238C132.47 51.7792 132.714 51.9569 132.997 52.0019L139.603 53.0523C140.327 53.1673 140.615 54.0538 140.097 54.572L135.37 59.3046C135.167 59.5074 135.074 59.795 135.119 60.0782L136.161 66.6854C136.275 67.4089 135.521 67.9568 134.868 67.6246L128.907 64.5915C128.651 64.4615 128.349 64.4615 128.093 64.5915L122.132 67.6246C121.479 67.9568 120.725 67.4089 120.839 66.6854L121.881 60.0782C121.926 59.795 121.833 59.5074 121.63 59.3046L116.903 54.572C116.385 54.0538 116.673 53.1673 117.397 53.0523L124.003 52.0019C124.286 51.9569 124.53 51.7792 124.661 51.5238L127.701 45.5657Z" fill="url(#paint29_linear_1461_1939)"/>
<path opacity="0.3" d="M127.532 45.8978C127.935 45.107 129.065 45.107 129.469 45.8978L132.295 51.4374C132.453 51.747 132.75 51.9624 133.093 52.017L139.235 52.9936C140.112 53.133 140.461 54.2075 139.834 54.8357L135.439 59.2359C135.193 59.4818 135.08 59.8304 135.134 60.1737L136.103 66.3169C136.242 67.1938 135.328 67.858 134.536 67.4554L128.993 64.6352C128.684 64.4776 128.317 64.4776 128.007 64.6352L122.464 67.4554C121.673 67.858 120.759 67.1938 120.897 66.3169L121.866 60.1737C121.921 59.8304 121.807 59.4818 121.562 59.2359L117.167 54.8357C116.539 54.2075 116.889 53.133 117.765 52.9936L123.907 52.017C124.251 51.9624 124.547 51.747 124.705 51.4374L127.532 45.8978Z" fill="url(#paint30_linear_1461_1939)"/>
<path opacity="0.3" d="M127.532 45.8978C127.935 45.107 129.065 45.107 129.469 45.8978L132.295 51.4374C132.453 51.747 132.75 51.9624 133.093 52.017L139.235 52.9936C140.112 53.133 140.461 54.2075 139.834 54.8357L135.439 59.2359C135.193 59.4818 135.08 59.8304 135.134 60.1737L136.103 66.3169C136.242 67.1938 135.328 67.858 134.536 67.4554L128.993 64.6352C128.684 64.4776 128.317 64.4776 128.007 64.6352L122.464 67.4554C121.673 67.858 120.759 67.1938 120.897 66.3169L121.866 60.1737C121.921 59.8304 121.807 59.4818 121.562 59.2359L117.167 54.8357C116.539 54.2075 116.889 53.133 117.765 52.9936L123.907 52.017C124.251 51.9624 124.547 51.747 124.705 51.4374L127.532 45.8978Z" fill="url(#paint31_linear_1461_1939)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M131.973 51.6021L129.146 46.0625C128.877 45.5353 128.124 45.5353 127.855 46.0625L125.028 51.6021C124.817 52.0149 124.422 52.3022 123.964 52.3749L117.822 53.3515C117.238 53.4444 117.005 54.1608 117.423 54.5795L121.818 58.9798C122.146 59.3077 122.297 59.7724 122.224 60.2302L121.255 66.3734C121.163 66.958 121.772 67.4008 122.3 67.1324L127.843 64.3122C128.256 64.1021 128.745 64.1021 129.158 64.3122L134.701 67.1324C135.228 67.4008 135.838 66.958 135.745 66.3734L134.776 60.2302C134.704 59.7724 134.855 59.3077 135.182 58.9798L139.577 54.5795C139.996 54.1608 139.763 53.4444 139.178 53.3515L133.036 52.3749C132.579 52.3022 132.183 52.0149 131.973 51.6021ZM129.469 45.8978C129.065 45.107 127.935 45.107 127.532 45.8978L124.705 51.4374C124.547 51.747 124.251 51.9624 123.907 52.017L117.765 52.9936C116.889 53.133 116.539 54.2075 117.167 54.8357L121.562 59.2359C121.807 59.4818 121.921 59.8304 121.866 60.1737L120.897 66.3169C120.759 67.1938 121.673 67.858 122.464 67.4554L128.007 64.6352C128.317 64.4776 128.684 64.4776 128.993 64.6352L134.536 67.4554C135.328 67.858 136.242 67.1938 136.103 66.3169L135.134 60.1737C135.08 59.8304 135.193 59.4818 135.439 59.2359L139.834 54.8357C140.461 54.2075 140.112 53.133 139.235 52.9936L133.093 52.017C132.75 51.9624 132.453 51.747 132.295 51.4374L129.469 45.8978Z" fill="url(#paint32_linear_1461_1939)"/>
<path d="M128.241 50.9707C128.356 50.7717 128.644 50.7717 128.759 50.9707L130.68 54.2922C130.723 54.3654 130.794 54.4172 130.877 54.4349L134.63 55.2362C134.854 55.2842 134.943 55.5574 134.79 55.7284L132.224 58.5825C132.168 58.6454 132.141 58.7293 132.149 58.8134L132.547 62.6301C132.571 62.8588 132.338 63.0276 132.128 62.9343L128.621 61.3767C128.544 61.3424 128.456 61.3424 128.379 61.3767L124.872 62.9343C124.661 63.0276 124.429 62.8588 124.453 62.6301L124.85 58.8134C124.859 58.7293 124.832 58.6454 124.775 58.5825L122.21 55.7284C122.057 55.5574 122.145 55.2842 122.37 55.2362L126.123 54.4349C126.206 54.4172 126.277 54.3654 126.319 54.2922L128.241 50.9707Z" fill="url(#paint33_linear_1461_1939)"/>
<path opacity="0.3" d="M135.401 55.596C128.842 61.7939 122.984 59.0525 120.875 56.9071C117.667 52.1395 124.707 55.9536 130.945 54.2849C135.936 52.9499 135.995 54.6027 135.401 55.596Z" fill="url(#paint34_linear_1461_1939)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M127.757 47.1314C127.891 47.1992 127.944 47.3627 127.877 47.4967L127.108 49.0156C127.04 49.1496 126.877 49.2032 126.743 49.1354C126.609 49.0677 126.555 48.9041 126.623 48.7702L127.392 47.2512C127.459 47.1173 127.623 47.0636 127.757 47.1314Z" fill="url(#paint35_linear_1461_1939)"/>
<circle cx="118.353" cy="53.6942" r="0.271812" fill="url(#paint36_linear_1461_1939)"/>
<circle cx="126.507" cy="49.5267" r="0.271812" fill="url(#paint37_linear_1461_1939)"/>
<path opacity="0.3" d="M125.904 52.3333C123.842 55.2538 124.579 56.8439 125.205 57.2738C127.107 58.1321 130.572 53.0678 130.806 51.7276C131.04 50.3874 128.481 48.6827 125.904 52.3333Z" fill="url(#paint38_linear_1461_1939)"/>
</g>
<defs>
<filter id="filter0_i_1461_1939" x="21.1133" y="14.1757" width="23.2529" height="24.4898" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1461_1939"/>
</filter>
<filter id="filter1_i_1461_1939" x="1.84766" y="43.4926" width="23.3047" height="24.0836" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1461_1939"/>
</filter>
<filter id="filter2_i_1461_1939" x="59.2646" y="-0.507393" width="23.3047" height="24.0836" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1461_1939"/>
</filter>
<filter id="filter3_i_1461_1939" x="96.6348" y="13.7758" width="23.2539" height="24.4898" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1461_1939"/>
</filter>
<filter id="filter4_i_1461_1939" x="116.64" y="43.2646" width="23.7207" height="24.4595" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1461_1939"/>
</filter>
<linearGradient id="paint0_linear_1461_1939" x1="23.823" y1="16.1559" x2="43.5572" y2="30.2302" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<linearGradient id="paint1_linear_1461_1939" x1="23.824" y1="16.1558" x2="43.5582" y2="30.2301" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<radialGradient id="paint2_radial_1461_1939" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(27.8593 25.8983) rotate(12.6712) scale(15.8381)">
<stop offset="0.738765" stop-color="#9CB6DD" stop-opacity="0"/>
<stop offset="0.89825" stop-color="#C6F1FF" stop-opacity="0.37"/>
<stop offset="1" stop-color="#EFFBFF" stop-opacity="0.7"/>
</radialGradient>
<linearGradient id="paint3_linear_1461_1939" x1="41.302" y1="25.1451" x2="24.444" y2="24.5062" gradientUnits="userSpaceOnUse">
<stop stop-color="#D8F6FF" stop-opacity="0.63"/>
<stop offset="0.218803" stop-color="#A0D2FF" stop-opacity="0"/>
<stop offset="0.491108" stop-color="#8DC8FF" stop-opacity="0.56"/>
<stop offset="0.733041" stop-color="#9ADBF8"/>
<stop offset="1" stop-color="white" stop-opacity="0"/>
<stop offset="1" stop-color="#BAEAFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint4_linear_1461_1939" x1="28.0162" y1="21.1533" x2="35.6232" y2="30.5009" gradientUnits="userSpaceOnUse">
<stop stop-color="#9BE1FF"/>
<stop offset="0.277442" stop-color="#9BE1FF" stop-opacity="0.51"/>
<stop offset="1" stop-color="#CDDEE6" stop-opacity="0.15"/>
</linearGradient>
<linearGradient id="paint5_linear_1461_1939" x1="30.5231" y1="25.049" x2="33.2072" y2="28.3873" gradientUnits="userSpaceOnUse">
<stop stop-color="#C4C4C4" stop-opacity="0"/>
<stop offset="0.731853" stop-color="#DBF6FF" stop-opacity="0.46"/>
</linearGradient>
<linearGradient id="paint6_linear_1461_1939" x1="28.0638" y1="23.9862" x2="31.3673" y2="24.1793" gradientUnits="userSpaceOnUse">
<stop offset="0.223958" stop-color="#DBF6FF" stop-opacity="0.35"/>
<stop offset="1" stop-color="#C4C4C4" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint7_linear_1461_1939" x1="13.5" y1="44" x2="19.5705" y2="67.4664" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<linearGradient id="paint8_linear_1461_1939" x1="13.5003" y1="43.9999" x2="19.5707" y2="67.4663" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<radialGradient id="paint9_radial_1461_1939" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(10.3291 54.0569) rotate(52.6712) scale(15.8381)">
<stop offset="0.738765" stop-color="#9CB6DD" stop-opacity="0"/>
<stop offset="0.89825" stop-color="#C6F1FF" stop-opacity="0.37"/>
<stop offset="1" stop-color="#EFFBFF" stop-opacity="0.7"/>
</radialGradient>
<linearGradient id="paint10_linear_1461_1939" x1="21.111" y1="62.1207" x2="8.60766" y2="50.7952" gradientUnits="userSpaceOnUse">
<stop stop-color="#D8F6FF" stop-opacity="0.63"/>
<stop offset="0.218803" stop-color="#A0D2FF" stop-opacity="0"/>
<stop offset="0.491108" stop-color="#8DC8FF" stop-opacity="0.56"/>
<stop offset="0.733041" stop-color="#9ADBF8"/>
<stop offset="1" stop-color="white" stop-opacity="0"/>
<stop offset="1" stop-color="#BAEAFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint11_linear_1461_1939" x1="13.4999" y1="50.5234" x2="13.3187" y2="62.5738" gradientUnits="userSpaceOnUse">
<stop stop-color="#9BE1FF"/>
<stop offset="0.277442" stop-color="#9BE1FF" stop-opacity="0.51"/>
<stop offset="1" stop-color="#CDDEE6" stop-opacity="0.15"/>
</linearGradient>
<linearGradient id="paint12_linear_1461_1939" x1="12.9164" y1="55.1192" x2="12.8266" y2="59.4018" gradientUnits="userSpaceOnUse">
<stop stop-color="#C4C4C4" stop-opacity="0"/>
<stop offset="0.731853" stop-color="#DBF6FF" stop-opacity="0.46"/>
</linearGradient>
<linearGradient id="paint13_linear_1461_1939" x1="11.7157" y1="52.7239" x2="14.1222" y2="54.9953" gradientUnits="userSpaceOnUse">
<stop offset="0.223958" stop-color="#DBF6FF" stop-opacity="0.35"/>
<stop offset="1" stop-color="#C4C4C4" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint14_linear_1461_1939" x1="70.917" y1="-2.43016e-08" x2="76.9875" y2="23.4664" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<linearGradient id="paint15_linear_1461_1939" x1="70.9173" y1="-0.000134339" x2="76.9877" y2="23.4663" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<radialGradient id="paint16_radial_1461_1939" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(67.7461 10.0569) rotate(52.6712) scale(15.8381)">
<stop offset="0.738765" stop-color="#9CB6DD" stop-opacity="0"/>
<stop offset="0.89825" stop-color="#C6F1FF" stop-opacity="0.37"/>
<stop offset="1" stop-color="#EFFBFF" stop-opacity="0.7"/>
</radialGradient>
<linearGradient id="paint17_linear_1461_1939" x1="78.528" y1="18.1207" x2="66.0246" y2="6.79517" gradientUnits="userSpaceOnUse">
<stop stop-color="#D8F6FF" stop-opacity="0.63"/>
<stop offset="0.218803" stop-color="#A0D2FF" stop-opacity="0"/>
<stop offset="0.491108" stop-color="#8DC8FF" stop-opacity="0.56"/>
<stop offset="0.733041" stop-color="#9ADBF8"/>
<stop offset="1" stop-color="white" stop-opacity="0"/>
<stop offset="1" stop-color="#BAEAFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint18_linear_1461_1939" x1="70.9169" y1="6.52344" x2="70.7357" y2="18.5738" gradientUnits="userSpaceOnUse">
<stop stop-color="#9BE1FF"/>
<stop offset="0.277442" stop-color="#9BE1FF" stop-opacity="0.51"/>
<stop offset="1" stop-color="#CDDEE6" stop-opacity="0.15"/>
</linearGradient>
<linearGradient id="paint19_linear_1461_1939" x1="70.3333" y1="11.1192" x2="70.2436" y2="15.4018" gradientUnits="userSpaceOnUse">
<stop stop-color="#C4C4C4" stop-opacity="0"/>
<stop offset="0.731853" stop-color="#DBF6FF" stop-opacity="0.46"/>
</linearGradient>
<linearGradient id="paint20_linear_1461_1939" x1="69.1326" y1="8.72394" x2="71.5392" y2="10.9953" gradientUnits="userSpaceOnUse">
<stop offset="0.223958" stop-color="#DBF6FF" stop-opacity="0.35"/>
<stop offset="1" stop-color="#C4C4C4" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint21_linear_1461_1939" x1="117.179" y1="15.7558" x2="106.745" y2="37.6341" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<linearGradient id="paint22_linear_1461_1939" x1="117.178" y1="15.7557" x2="106.745" y2="37.6341" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<radialGradient id="paint23_radial_1461_1939" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(108.284 21.4215) rotate(92.6712) scale(15.8381)">
<stop offset="0.738765" stop-color="#9CB6DD" stop-opacity="0"/>
<stop offset="0.89825" stop-color="#C6F1FF" stop-opacity="0.37"/>
<stop offset="1" stop-color="#EFFBFF" stop-opacity="0.7"/>
</radialGradient>
<linearGradient id="paint24_linear_1461_1939" x1="111.361" y1="34.5292" x2="109.062" y2="17.8163" gradientUnits="userSpaceOnUse">
<stop stop-color="#D8F6FF" stop-opacity="0.63"/>
<stop offset="0.218803" stop-color="#A0D2FF" stop-opacity="0"/>
<stop offset="0.491108" stop-color="#8DC8FF" stop-opacity="0.56"/>
<stop offset="0.733041" stop-color="#9ADBF8"/>
<stop offset="1" stop-color="white" stop-opacity="0"/>
<stop offset="1" stop-color="#BAEAFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint25_linear_1461_1939" x1="112.985" y1="20.753" x2="105.1" y2="29.8676" gradientUnits="userSpaceOnUse">
<stop stop-color="#9BE1FF"/>
<stop offset="0.277442" stop-color="#9BE1FF" stop-opacity="0.51"/>
<stop offset="1" stop-color="#CDDEE6" stop-opacity="0.15"/>
</linearGradient>
<linearGradient id="paint26_linear_1461_1939" x1="109.584" y1="23.8982" x2="106.762" y2="27.1212" gradientUnits="userSpaceOnUse">
<stop stop-color="#C4C4C4" stop-opacity="0"/>
<stop offset="0.731853" stop-color="#DBF6FF" stop-opacity="0.46"/>
</linearGradient>
<linearGradient id="paint27_linear_1461_1939" x1="110.204" y1="21.291" x2="110.587" y2="24.5778" gradientUnits="userSpaceOnUse">
<stop offset="0.223958" stop-color="#DBF6FF" stop-opacity="0.35"/>
<stop offset="1" stop-color="#C4C4C4" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint28_linear_1461_1939" x1="128.5" y1="44" x2="128.5" y2="71" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint29_linear_1461_1939" x1="128.5" y1="44" x2="128.5" y2="71" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint30_linear_1461_1939" x1="128.5" y1="45.3047" x2="128.5" y2="67.5758" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint31_linear_1461_1939" x1="128.5" y1="45.3047" x2="128.5" y2="67.5758" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint32_linear_1461_1939" x1="128.5" y1="45.3047" x2="128.5" y2="67.5758" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint33_linear_1461_1939" x1="128.5" y1="50.5234" x2="128.5" y2="64.4765" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint34_linear_1461_1939" x1="127.865" y1="53.7852" x2="127.865" y2="59.4026" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint35_linear_1461_1939" x1="127.28" y1="47.0918" x2="127.22" y2="49.175" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint36_linear_1461_1939" x1="118.353" y1="53.4224" x2="118.353" y2="53.966" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint37_linear_1461_1939" x1="126.507" y1="49.2549" x2="126.507" y2="49.7985" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="paint38_linear_1461_1939" x1="126.004" y1="51.9737" x2="128.911" y2="55.2086" gradientUnits="userSpaceOnUse">
<stop stop-color="#AACCFF" stop-opacity="0"/>
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 43 KiB

View File

@@ -0,0 +1,4 @@
<svg width="75" height="40" viewBox="0 0 75 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M48.62 32.6H43.04V11.21H45.11L39.2 23.24H51.53V28.46H32.72V25.04L40.91 8.9H48.62V32.6ZM56.9012 33.02C55.9412 33.02 55.1512 32.71 54.5312 32.09C53.9312 31.47 53.6312 30.68 53.6312 29.72C53.6312 28.76 53.9312 27.97 54.5312 27.35C55.1512 26.73 55.9412 26.42 56.9012 26.42C57.8812 26.42 58.6812 26.73 59.3012 27.35C59.9212 27.97 60.2312 28.76 60.2312 29.72C60.2312 30.68 59.9212 31.47 59.3012 32.09C58.6812 32.71 57.8812 33.02 56.9012 33.02ZM65.263 32.6V15.11L59.863 17.9V12.11L66.133 8.9H70.843V32.6H65.263Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 766 B

View File

@@ -0,0 +1,4 @@
<svg width="82" height="40" viewBox="0 0 82 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M48.62 32.6H43.04V11.21H45.11L39.2 23.24H51.53V28.46H32.72V25.04L40.91 8.9H48.62V32.6ZM56.9012 33.02C55.9412 33.02 55.1512 32.71 54.5312 32.09C53.9312 31.47 53.6312 30.68 53.6312 29.72C53.6312 28.76 53.9312 27.97 54.5312 27.35C55.1512 26.73 55.9412 26.42 56.9012 26.42C57.8812 26.42 58.6812 26.73 59.3012 27.35C59.9212 27.97 60.2312 28.76 60.2312 29.72C60.2312 30.68 59.9212 31.47 59.3012 32.09C58.6812 32.71 57.8812 33.02 56.9012 33.02ZM71.1821 13.58C70.3221 13.58 69.5821 13.84 68.9621 14.36C68.3421 14.86 67.8121 15.63 67.3721 16.67L63.0221 13.7C63.6821 12.22 64.7021 10.99 66.0821 10.01C67.4621 9.01 69.2221 8.5 71.3621 8.48C73.0221 8.48 74.4521 8.79 75.6521 9.41C76.8721 10.01 77.8021 10.87 78.4421 11.99C79.0821 13.09 79.4021 14.36 79.4021 15.8C79.4021 17.08 79.0921 18.31 78.4721 19.49C77.8721 20.67 77.0021 21.85 75.8621 23.03L68.9921 30.17L67.7921 27.38H79.8821V32.6H63.0521V28.91L71.5121 20.24C72.3321 19.38 72.9021 18.64 73.2221 18.02C73.5421 17.4 73.7021 16.76 73.7021 16.1C73.7021 15.34 73.4821 14.73 73.0421 14.27C72.6221 13.81 72.0021 13.58 71.1821 13.58Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,4 @@
<svg width="81" height="40" viewBox="0 0 81 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M48.62 32.6H43.04V11.21H45.11L39.2 23.24H51.53V28.46H32.72V25.04L40.91 8.9H48.62V32.6ZM56.9012 33.02C55.9412 33.02 55.1512 32.71 54.5312 32.09C53.9312 31.47 53.6312 30.68 53.6312 29.72C53.6312 28.76 53.9312 27.97 54.5312 27.35C55.1512 26.73 55.9412 26.42 56.9012 26.42C57.8812 26.42 58.6812 26.73 59.3012 27.35C59.9212 27.97 60.2312 28.76 60.2312 29.72C60.2312 30.68 59.9212 31.47 59.3012 32.09C58.6812 32.71 57.8812 33.02 56.9012 33.02ZM70.779 33.02C68.679 33.02 66.929 32.53 65.529 31.55C64.129 30.57 63.109 29.32 62.469 27.8L66.819 24.86C67.239 25.9 67.759 26.68 68.379 27.2C68.999 27.72 69.779 27.98 70.719 27.98C71.319 27.98 71.849 27.87 72.309 27.65C72.789 27.41 73.149 27.07 73.389 26.63C73.649 26.19 73.779 25.67 73.779 25.07C73.779 24.47 73.649 23.95 73.389 23.51C73.149 23.05 72.799 22.7 72.339 22.46C71.899 22.2 71.379 22.06 70.779 22.04C70.379 22.02 70.019 22.07 69.699 22.19C69.399 22.29 69.019 22.48 68.559 22.76L65.499 18.95L73.689 11.39L75.009 14.12H63.369V8.9H78.219V13.43L72.849 17.81L72.909 17.96C74.069 17.96 75.139 18.27 76.119 18.89C77.099 19.49 77.869 20.34 78.429 21.44C79.009 22.52 79.299 23.73 79.299 25.07C79.299 26.61 78.929 27.98 78.189 29.18C77.469 30.38 76.459 31.32 75.159 32C73.879 32.68 72.419 33.02 70.779 33.02Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,4 @@
<svg width="82" height="40" viewBox="0 0 82 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M48.62 32.6H43.04V11.21H45.11L39.2 23.24H51.53V28.46H32.72V25.04L40.91 8.9H48.62V32.6ZM56.9012 33.02C55.9412 33.02 55.1512 32.71 54.5312 32.09C53.9312 31.47 53.6312 30.68 53.6312 29.72C53.6312 28.76 53.9312 27.97 54.5312 27.35C55.1512 26.73 55.9412 26.42 56.9012 26.42C57.8812 26.42 58.6812 26.73 59.3012 27.35C59.9212 27.97 60.2312 28.76 60.2312 29.72C60.2312 30.68 59.9212 31.47 59.3012 32.09C58.6812 32.71 57.8812 33.02 56.9012 33.02ZM77.8583 32.6H72.2783V11.21H74.3483L68.4383 23.24H80.7683V28.46H61.9583V25.04L70.1483 8.9H77.8583V32.6Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 802 B

View File

@@ -0,0 +1,4 @@
<svg width="81" height="40" viewBox="0 0 81 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M48.62 32.6H43.04V11.21H45.11L39.2 23.24H51.53V28.46H32.72V25.04L40.91 8.9H48.62V32.6ZM56.9012 33.02C55.9412 33.02 55.1512 32.71 54.5312 32.09C53.9312 31.47 53.6312 30.68 53.6312 29.72C53.6312 28.76 53.9312 27.97 54.5312 27.35C55.1512 26.73 55.9412 26.42 56.9012 26.42C57.8812 26.42 58.6812 26.73 59.3012 27.35C59.9212 27.97 60.2312 28.76 60.2312 29.72C60.2312 30.68 59.9212 31.47 59.3012 32.09C58.6812 32.71 57.8812 33.02 56.9012 33.02ZM67.0541 25.1C67.4541 26.06 67.9641 26.78 68.5841 27.26C69.2241 27.74 69.9641 27.98 70.8041 27.98C71.4641 27.98 72.0341 27.86 72.5141 27.62C73.0141 27.38 73.3941 27.04 73.6541 26.6C73.9341 26.14 74.0741 25.6 74.0741 24.98C74.0741 24.34 73.9441 23.79 73.6841 23.33C73.4241 22.87 73.0441 22.52 72.5441 22.28C72.0641 22.04 71.4841 21.92 70.8041 21.92C70.0841 21.92 69.4341 22.1 68.8541 22.46C68.2941 22.82 67.8641 23.35 67.5641 24.05L62.8541 21.92L63.8441 8.9H78.4841V13.94H69.0941L68.6141 18.86L66.9041 18.95C67.4841 18.31 68.2341 17.82 69.1541 17.48C70.0741 17.12 71.0241 16.94 72.0041 16.94C73.5641 16.94 74.9141 17.27 76.0541 17.93C77.1941 18.57 78.0641 19.49 78.6641 20.69C79.2841 21.87 79.5941 23.25 79.5941 24.83C79.5941 26.51 79.2341 27.97 78.5141 29.21C77.7941 30.43 76.7541 31.37 75.3941 32.03C74.0541 32.69 72.4641 33.02 70.6241 33.02C68.7441 33.02 67.0841 32.6 65.6441 31.76C64.2241 30.9 63.1841 29.7 62.5241 28.16L67.0541 25.1Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1,289 @@
<svg width="142" height="71" viewBox="0 0 142 71" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_i_1461_2011)">
<path d="M24.3011 18.2322C24.1019 17.3671 24.9675 16.6408 25.7849 16.9872L31.5111 19.4139C31.8311 19.5495 32.1967 19.5239 32.4948 19.3451L37.8276 16.1451C38.5888 15.6883 39.547 16.2871 39.4701 17.1715L38.9318 23.3674C38.9017 23.7137 39.039 24.0534 39.3012 24.2816L43.9924 28.3646C44.6621 28.9474 44.3887 30.0437 43.5239 30.2439L37.4649 31.6466C37.1263 31.725 36.8455 31.9605 36.7095 32.2804L34.2761 38.0037C33.9287 38.8207 32.8016 38.8995 32.3439 38.1389L29.1376 32.8099C28.9584 32.512 28.6476 32.3178 28.3014 32.2873L22.1062 31.7416C21.2218 31.6637 20.7986 30.6161 21.3806 29.9458L25.458 25.2496C25.6859 24.9872 25.7745 24.6316 25.6965 24.2929L24.3011 18.2322Z" fill="#43628F"/>
</g>
<path d="M24.3011 18.2322C24.1019 17.3671 24.9675 16.6408 25.7849 16.9872L31.5111 19.4139C31.8311 19.5495 32.1967 19.5239 32.4948 19.3451L37.8276 16.1451C38.5888 15.6883 39.547 16.2871 39.4701 17.1715L38.9318 23.3674C38.9017 23.7137 39.039 24.0534 39.3012 24.2816L43.9924 28.3646C44.6621 28.9474 44.3887 30.0437 43.5239 30.2439L37.4649 31.6466C37.1263 31.725 36.8455 31.9605 36.7095 32.2804L34.2761 38.0037C33.9287 38.8207 32.8016 38.8995 32.3439 38.1389L29.1376 32.8099C28.9584 32.512 28.6476 32.3178 28.3014 32.2873L22.1062 31.7416C21.2218 31.6637 20.7986 30.6161 21.3806 29.9458L25.458 25.2496C25.6859 24.9872 25.7745 24.6316 25.6965 24.2929L24.3011 18.2322Z" fill="url(#paint0_linear_1461_2011)"/>
<path d="M24.3021 18.2322C24.1029 17.367 24.9685 16.6408 25.7859 16.9871L31.5121 19.4138C31.8321 19.5494 32.1977 19.5238 32.4958 19.345L37.8286 16.145C38.5898 15.6883 39.548 16.287 39.4711 17.1714L38.9328 23.3673C38.9027 23.7136 39.04 24.0534 39.3022 24.2815L43.9934 28.3645C44.6631 28.9473 44.3897 30.0436 43.5249 30.2439L37.4659 31.6465C37.1273 31.7249 36.8465 31.9604 36.7105 32.2803L34.2771 38.0037C33.9297 38.8206 32.8026 38.8995 32.3449 38.1388L29.1386 32.8098C28.9594 32.512 28.6486 32.3178 28.3024 32.2873L22.1072 31.7415C21.2228 31.6636 20.7996 30.616 21.3816 29.9457L25.459 25.2496C25.6868 24.9871 25.7755 24.6315 25.6975 24.2928L24.3021 18.2322Z" fill="url(#paint1_linear_1461_2011)"/>
<path d="M24.3021 18.2322C24.1029 17.367 24.9685 16.6408 25.7859 16.9871L31.5121 19.4138C31.8321 19.5494 32.1977 19.5238 32.4958 19.345L37.8286 16.145C38.5898 15.6883 39.548 16.287 39.4711 17.1714L38.9328 23.3673C38.9027 23.7136 39.04 24.0534 39.3022 24.2815L43.9934 28.3645C44.6631 28.9473 44.3897 30.0436 43.5249 30.2439L37.4659 31.6465C37.1273 31.7249 36.8465 31.9604 36.7105 32.2803L34.2771 38.0037C33.9297 38.8206 32.8026 38.8995 32.3449 38.1388L29.1386 32.8098C28.9594 32.512 28.6486 32.3178 28.3024 32.2873L22.1072 31.7415C21.2228 31.6636 20.7996 30.616 21.3816 29.9457L25.459 25.2496C25.6868 24.9871 25.7755 24.6315 25.6975 24.2928L24.3021 18.2322Z" fill="url(#paint2_radial_1461_2011)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.3707 19.7475L25.6445 17.3208C25.0995 17.0899 24.5225 17.5741 24.6553 18.1509L26.0507 24.2115C26.1547 24.6631 26.0365 25.1372 25.7326 25.4872L21.6553 30.1833C21.2672 30.6302 21.5494 31.3286 22.139 31.3805L28.3342 31.9262C28.7958 31.9669 29.2102 32.2258 29.4491 32.6229L32.6554 37.9519C32.9606 38.4591 33.712 38.4065 33.9436 37.8619L36.377 32.1385C36.5583 31.712 36.9327 31.3979 37.3841 31.2934L43.4431 29.8908C44.0197 29.7573 44.2019 29.0264 43.7555 28.6379L39.0642 24.5549C38.7147 24.2507 38.5316 23.7976 38.5717 23.3359L39.1101 17.1401C39.1613 16.5504 38.5225 16.1513 38.015 16.4558L32.6822 19.6558C32.2848 19.8942 31.7974 19.9283 31.3707 19.7475ZM25.7859 16.9871C24.9685 16.6408 24.1029 17.367 24.3021 18.2322L25.6975 24.2928C25.7755 24.6315 25.6868 24.9871 25.459 25.2496L21.3816 29.9457C20.7996 30.616 21.2228 31.6636 22.1072 31.7415L28.3024 32.2873C28.6486 32.3178 28.9594 32.512 29.1386 32.8098L32.3449 38.1388C32.8026 38.8995 33.9297 38.8206 34.2771 38.0037L36.7105 32.2803C36.8465 31.9604 37.1273 31.7249 37.4659 31.6465L43.5249 30.2439C44.3897 30.0436 44.6631 28.9473 43.9934 28.3645L39.3022 24.2815C39.04 24.0534 38.9027 23.7136 38.9328 23.3673L39.4711 17.1714C39.548 16.287 38.5898 15.6883 37.8286 16.145L32.4958 19.345C32.1977 19.5238 31.8321 19.5494 31.5121 19.4138L25.7859 16.9871Z" fill="url(#paint3_linear_1461_2011)"/>
<path d="M28.1785 22.0787C28.1063 21.667 28.5065 21.3312 28.8994 21.4738L32.007 22.6017C32.1515 22.6541 32.3114 22.6429 32.4472 22.5709L35.3676 21.0215C35.7369 20.8256 36.1799 21.1024 36.1657 21.5202L36.0533 24.8242C36.0481 24.9778 36.1082 25.1265 36.2186 25.2334L38.5946 27.5321C38.895 27.8227 38.7687 28.3296 38.3669 28.4452L35.1899 29.3593C35.0422 29.4018 34.9194 29.5049 34.8519 29.643L33.3999 32.613C33.2163 32.9886 32.6952 33.025 32.4611 32.6786L30.61 29.9396C30.5239 29.8123 30.3879 29.7273 30.2357 29.7058L26.9624 29.2427C26.5485 29.1841 26.3528 28.6998 26.6099 28.3701L28.6428 25.7631C28.7373 25.6419 28.7761 25.4864 28.7496 25.3349L28.1785 22.0787Z" fill="url(#paint4_linear_1461_2011)"/>
<path d="M36.5639 20.6026C35.5235 29.5664 29.2741 31.2317 26.2794 30.9439C20.7573 29.3538 28.6019 27.7503 32.3078 22.4623C35.2726 18.2319 36.3805 19.4598 36.5639 20.6026Z" fill="url(#paint5_linear_1461_2011)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.2673 19.0325C25.4134 18.9983 25.5596 19.0891 25.5938 19.2353L25.9815 20.8929C26.0156 21.0391 25.9249 21.1853 25.7787 21.2194C25.6325 21.2536 25.4863 21.1628 25.4521 21.0167L25.0645 19.3591C25.0303 19.2129 25.1211 19.0667 25.2673 19.0325Z" fill="#93D6F6"/>
<circle cx="22.2814" cy="30.1053" r="0.271812" transform="rotate(-40 22.2814 30.1053)" fill="#93D6F6"/>
<circle cx="25.8488" cy="21.6712" r="0.271812" transform="rotate(-40 25.8488 21.6712)" fill="#93D6F6"/>
<path d="M27.1915 24.2082C27.4893 27.7707 29.0758 28.5151 29.8319 28.442C31.8403 27.8772 31.2393 21.7705 30.5575 20.5931C29.8756 19.4158 26.8192 19.755 27.1915 24.2082Z" fill="url(#paint6_linear_1461_2011)" fill-opacity="0.6"/>
<g filter="url(#filter1_i_1461_2011)">
<path d="M12.5315 45.8979C12.9351 45.1071 14.0649 45.1071 14.4685 45.8979L17.2952 51.4376C17.4532 51.7472 17.7497 51.9626 18.0929 52.0171L24.235 52.9937C25.1117 53.1331 25.4609 54.2077 24.8335 54.8358L20.4385 59.2361C20.1929 59.482 20.0796 59.8305 20.1338 60.1738L21.103 66.3171C21.2414 67.194 20.3273 67.8581 19.5361 67.4555L13.993 64.6354C13.6832 64.4778 13.3168 64.4778 13.007 64.6354L7.46395 67.4555C6.67271 67.8581 5.75861 67.194 5.89696 66.3171L6.8662 60.1738C6.92037 59.8305 6.80713 59.482 6.5615 59.2361L2.16648 54.8358C1.53911 54.2077 1.88826 53.1331 2.76501 52.9937L8.90707 52.0171C9.25033 51.9626 9.54681 51.7472 9.70479 51.4376L12.5315 45.8979Z" fill="#43628F"/>
</g>
<path d="M12.5315 45.8979C12.9351 45.1071 14.0649 45.1071 14.4685 45.8979L17.2952 51.4376C17.4532 51.7472 17.7497 51.9626 18.0929 52.0171L24.235 52.9937C25.1117 53.1331 25.4609 54.2077 24.8335 54.8358L20.4385 59.2361C20.1929 59.482 20.0796 59.8305 20.1338 60.1738L21.103 66.3171C21.2414 67.194 20.3273 67.8581 19.5361 67.4555L13.993 64.6354C13.6832 64.4778 13.3168 64.4778 13.007 64.6354L7.46395 67.4555C6.67271 67.8581 5.75861 67.194 5.89696 66.3171L6.8662 60.1738C6.92037 59.8305 6.80713 59.482 6.5615 59.2361L2.16648 54.8358C1.53911 54.2077 1.88826 53.1331 2.76501 52.9937L8.90707 52.0171C9.25033 51.9626 9.54681 51.7472 9.70479 51.4376L12.5315 45.8979Z" fill="url(#paint7_linear_1461_2011)"/>
<path d="M12.5318 45.8978C12.9353 45.107 14.0652 45.107 14.4687 45.8978L17.2955 51.4374C17.4535 51.747 17.75 51.9624 18.0932 52.017L24.2353 52.9936C25.112 53.133 25.4612 54.2075 24.8338 54.8357L20.4388 59.2359C20.1932 59.4818 20.0799 59.8304 20.1341 60.1737L21.1033 66.3169C21.2417 67.1938 20.3276 67.858 19.5363 67.4554L13.9933 64.6352C13.6835 64.4776 13.3171 64.4776 13.0073 64.6352L7.46425 67.4554C6.673 67.858 5.7589 67.1938 5.89726 66.3169L6.8665 60.1737C6.92067 59.8304 6.80742 59.4818 6.56179 59.2359L2.16677 54.8357C1.5394 54.2075 1.88856 53.133 2.76531 52.9936L8.90736 52.017C9.25062 51.9624 9.54711 51.747 9.70509 51.4374L12.5318 45.8978Z" fill="url(#paint8_linear_1461_2011)"/>
<path d="M12.5318 45.8978C12.9353 45.107 14.0652 45.107 14.4687 45.8978L17.2955 51.4374C17.4535 51.747 17.75 51.9624 18.0932 52.017L24.2353 52.9936C25.112 53.133 25.4612 54.2075 24.8338 54.8357L20.4388 59.2359C20.1932 59.4818 20.0799 59.8304 20.1341 60.1737L21.1033 66.3169C21.2417 67.1938 20.3276 67.858 19.5363 67.4554L13.9933 64.6352C13.6835 64.4776 13.3171 64.4776 13.0073 64.6352L7.46425 67.4554C6.673 67.858 5.7589 67.1938 5.89726 66.3169L6.8665 60.1737C6.92067 59.8304 6.80742 59.4818 6.56179 59.2359L2.16677 54.8357C1.5394 54.2075 1.88856 53.133 2.76531 52.9936L8.90736 52.017C9.25062 51.9624 9.54711 51.747 9.70509 51.4374L12.5318 45.8978Z" fill="url(#paint9_radial_1461_2011)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.9727 51.6021L14.1459 46.0625C13.8769 45.5353 13.1237 45.5353 12.8547 46.0625L10.0279 51.6021C9.81726 52.0149 9.42195 52.3022 8.96427 52.3749L2.82222 53.3515C2.23771 53.4444 2.00494 54.1608 2.42319 54.5795L6.81821 58.9798C7.14571 59.3077 7.29671 59.7724 7.22448 60.2302L6.25524 66.3734C6.16301 66.958 6.77241 67.4008 7.2999 67.1324L12.8429 64.3122C13.256 64.1021 13.7446 64.1021 14.1577 64.3122L19.7007 67.1324C20.2282 67.4008 20.8376 66.958 20.7453 66.3734L19.7761 60.2302C19.7039 59.7724 19.8549 59.3077 20.1824 58.9798L24.5774 54.5796C24.9956 54.1608 24.7629 53.4444 24.1784 53.3515L18.0363 52.3749C17.5786 52.3022 17.1833 52.0149 16.9727 51.6021ZM14.4687 45.8978C14.0652 45.107 12.9353 45.107 12.5318 45.8978L9.70509 51.4374C9.54711 51.747 9.25062 51.9624 8.90736 52.017L2.76531 52.9936C1.88856 53.133 1.5394 54.2075 2.16677 54.8357L6.56179 59.2359C6.80742 59.4818 6.92067 59.8304 6.8665 60.1737L5.89726 66.3169C5.7589 67.1938 6.673 67.858 7.46425 67.4554L13.0073 64.6352C13.3171 64.4776 13.6835 64.4776 13.9933 64.6352L19.5363 67.4554C20.3276 67.858 21.2417 67.1938 21.1033 66.3169L20.1341 60.1737C20.0799 59.8304 20.1932 59.4818 20.4388 59.2359L24.8338 54.8357C25.4612 54.2075 25.112 53.133 24.2353 52.9936L18.0932 52.017C17.75 51.9624 17.4535 51.747 17.2955 51.4374L14.4687 45.8978Z" fill="url(#paint10_linear_1461_2011)"/>
<path d="M13.0294 51.3367C13.2388 50.9749 13.7611 50.9749 13.9705 51.3367L15.6261 54.1982C15.7031 54.3312 15.8328 54.4255 15.9831 54.4576L19.2161 55.1479C19.625 55.2352 19.7864 55.732 19.5069 56.0429L17.2971 58.5017C17.1944 58.616 17.1448 58.7685 17.1607 58.9214L17.5033 62.2095C17.5466 62.6253 17.124 62.9324 16.7419 62.7627L13.7206 61.4208C13.5801 61.3584 13.4198 61.3584 13.2793 61.4208L10.258 62.7627C9.87591 62.9324 9.4533 62.6253 9.49661 62.2095L9.83915 58.9214C9.85507 58.7685 9.80553 58.616 9.70277 58.5017L7.49296 56.0429C7.21352 55.732 7.37494 55.2352 7.78377 55.1479L11.0168 54.4576C11.1671 54.4255 11.2968 54.3312 11.3738 54.1982L13.0294 51.3367Z" fill="url(#paint11_linear_1461_2011)"/>
<path d="M20.4019 55.596C13.8431 61.7939 7.98533 59.0525 5.8763 56.9071C2.66819 52.1395 9.70821 55.9536 15.9462 54.2849C20.9366 52.9499 20.996 54.6027 20.4019 55.596Z" fill="url(#paint12_linear_1461_2011)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7568 47.1314C12.8907 47.1992 12.9444 47.3627 12.8766 47.4967L12.1081 49.0156C12.0403 49.1496 11.8768 49.2032 11.7428 49.1354C11.6089 49.0677 11.5552 48.9041 11.623 48.7702L12.3915 47.2512C12.4593 47.1173 12.6228 47.0636 12.7568 47.1314Z" fill="#93D6F6"/>
<circle cx="3.35287" cy="53.6947" r="0.271812" fill="#93D6F6"/>
<circle cx="11.5072" cy="49.5267" r="0.271812" fill="#93D6F6"/>
<path d="M10.9048 52.3333C8.843 55.2538 9.57983 56.8439 10.206 57.2738C12.1076 58.1321 15.5725 53.0678 15.807 51.7276C16.0415 50.3874 13.482 48.6827 10.9048 52.3333Z" fill="url(#paint13_linear_1461_2011)" fill-opacity="0.6"/>
<g filter="url(#filter2_i_1461_2011)">
<path d="M69.9485 1.8979C70.352 1.10714 71.4819 1.10714 71.8854 1.8979L74.7122 7.43756C74.8702 7.74716 75.1667 7.96257 75.5099 8.01715L81.652 8.9937C82.5287 9.1331 82.8779 10.2077 82.2505 10.8358L77.8555 15.2361C77.6099 15.482 77.4966 15.8305 77.5508 16.1738L78.52 22.3171C78.6584 23.194 77.7443 23.8581 76.953 23.4555L71.41 20.6354C71.1002 20.4778 70.7338 20.4778 70.424 20.6354L64.8809 23.4555C64.0897 23.8581 63.1756 23.194 63.314 22.3171L64.2832 16.1738C64.3374 15.8305 64.2241 15.482 63.9785 15.2361L59.5835 10.8358C58.9561 10.2077 59.3053 9.1331 60.182 8.9937L66.3241 8.01715C66.6673 7.96257 66.9638 7.74716 67.1218 7.43756L69.9485 1.8979Z" fill="#43628F"/>
</g>
<path d="M69.9485 1.8979C70.352 1.10714 71.4819 1.10714 71.8854 1.8979L74.7122 7.43756C74.8702 7.74716 75.1667 7.96257 75.5099 8.01715L81.652 8.9937C82.5287 9.1331 82.8779 10.2077 82.2505 10.8358L77.8555 15.2361C77.6099 15.482 77.4966 15.8305 77.5508 16.1738L78.52 22.3171C78.6584 23.194 77.7443 23.8581 76.953 23.4555L71.41 20.6354C71.1002 20.4778 70.7338 20.4778 70.424 20.6354L64.8809 23.4555C64.0897 23.8581 63.1756 23.194 63.314 22.3171L64.2832 16.1738C64.3374 15.8305 64.2241 15.482 63.9785 15.2361L59.5835 10.8358C58.9561 10.2077 59.3053 9.1331 60.182 8.9937L66.3241 8.01715C66.6673 7.96257 66.9638 7.74716 67.1218 7.43756L69.9485 1.8979Z" fill="url(#paint14_linear_1461_2011)"/>
<path d="M69.9488 1.89776C70.3523 1.107 71.4822 1.107 71.8857 1.89776L74.7125 7.43742C74.8705 7.74702 75.167 7.96243 75.5102 8.01701L81.6523 8.99356C82.529 9.13296 82.8782 10.2075 82.2508 10.8357L77.8558 15.2359C77.6102 15.4818 77.4969 15.8304 77.5511 16.1737L78.5203 22.3169C78.6587 23.1938 77.7446 23.858 76.9533 23.4554L71.4103 20.6352C71.1005 20.4776 70.7341 20.4776 70.4243 20.6352L64.8812 23.4554C64.09 23.858 63.1759 23.1938 63.3142 22.3169L64.2835 16.1737C64.3377 15.8304 64.2244 15.4818 63.9788 15.2359L59.5838 10.8357C58.9564 10.2075 59.3056 9.13296 60.1823 8.99356L66.3244 8.01701C66.6676 7.96243 66.9641 7.74702 67.1221 7.43742L69.9488 1.89776Z" fill="url(#paint15_linear_1461_2011)"/>
<path d="M69.9488 1.89776C70.3523 1.107 71.4822 1.107 71.8857 1.89776L74.7125 7.43742C74.8705 7.74702 75.167 7.96243 75.5102 8.01701L81.6523 8.99356C82.529 9.13296 82.8782 10.2075 82.2508 10.8357L77.8558 15.2359C77.6102 15.4818 77.4969 15.8304 77.5511 16.1737L78.5203 22.3169C78.6587 23.1938 77.7446 23.858 76.9533 23.4554L71.4103 20.6352C71.1005 20.4776 70.7341 20.4776 70.4243 20.6352L64.8812 23.4554C64.09 23.858 63.1759 23.1938 63.3142 22.3169L64.2835 16.1737C64.3377 15.8304 64.2244 15.4818 63.9788 15.2359L59.5838 10.8357C58.9564 10.2075 59.3056 9.13296 60.1823 8.99356L66.3244 8.01701C66.6676 7.96243 66.9641 7.74702 67.1221 7.43742L69.9488 1.89776Z" fill="url(#paint16_radial_1461_2011)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M74.3897 7.60215L71.5629 2.06248C71.2939 1.53531 70.5407 1.53531 70.2717 2.06249L67.4449 7.60215C67.2343 8.01495 66.8389 8.30216 66.3813 8.37493L60.2392 9.35148C59.6547 9.44441 59.4219 10.1608 59.8402 10.5795L64.2352 14.9798C64.5627 15.3077 64.7137 15.7724 64.6415 16.2302L63.6722 22.3734C63.58 22.958 64.1894 23.4008 64.7169 23.1324L70.2599 20.3122C70.673 20.1021 71.1616 20.1021 71.5747 20.3122L77.1177 23.1324C77.6452 23.4008 78.2546 22.958 78.1623 22.3734L77.1931 16.2302C77.1209 15.7724 77.2719 15.3077 77.5994 14.9798L81.9944 10.5796C82.4126 10.1608 82.1799 9.44441 81.5954 9.35148L75.4533 8.37493C74.9956 8.30216 74.6003 8.01495 74.3897 7.60215ZM71.8857 1.89776C71.4822 1.107 70.3523 1.107 69.9488 1.89776L67.1221 7.43742C66.9641 7.74702 66.6676 7.96243 66.3244 8.01701L60.1823 8.99356C59.3056 9.13296 58.9564 10.2075 59.5838 10.8357L63.9788 15.2359C64.2244 15.4818 64.3377 15.8304 64.2835 16.1737L63.3142 22.3169C63.1759 23.1938 64.09 23.858 64.8812 23.4554L70.4243 20.6352C70.7341 20.4776 71.1005 20.4776 71.4103 20.6352L76.9533 23.4554C77.7446 23.858 78.6587 23.1938 78.5203 22.3169L77.5511 16.1737C77.4969 15.8304 77.6102 15.4818 77.8558 15.2359L82.2508 10.8357C82.8782 10.2075 82.529 9.13296 81.6523 8.99356L75.5102 8.01701C75.167 7.96243 74.8705 7.74702 74.7125 7.43742L71.8857 1.89776Z" fill="url(#paint17_linear_1461_2011)"/>
<path d="M70.4464 7.33671C70.6557 6.97487 71.1781 6.97487 71.3875 7.33671L73.0431 10.1982C73.12 10.3312 73.2498 10.4255 73.4001 10.4576L76.6331 11.1479C77.0419 11.2352 77.2034 11.732 76.9239 12.0429L74.7141 14.5017C74.6114 14.616 74.5618 14.7685 74.5777 14.9214L74.9203 18.2095C74.9636 18.6253 74.541 18.9324 74.1589 18.7627L71.1376 17.4208C70.9971 17.3584 70.8368 17.3584 70.6963 17.4208L67.675 18.7627C67.2929 18.9324 66.8703 18.6253 66.9136 18.2095L67.2561 14.9214C67.2721 14.7685 67.2225 14.616 67.1198 14.5017L64.9099 12.0429C64.6305 11.732 64.7919 11.2352 65.2008 11.1479L68.4338 10.4576C68.5841 10.4255 68.7138 10.3312 68.7908 10.1982L70.4464 7.33671Z" fill="url(#paint18_linear_1461_2011)"/>
<path d="M77.8189 11.596C71.2601 17.7939 65.4023 15.0525 63.2933 12.9071C60.0852 8.13949 67.1252 11.9536 73.3632 10.2849C78.3536 8.94995 78.413 10.6027 77.8189 11.596Z" fill="url(#paint19_linear_1461_2011)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M70.1738 3.13142C70.3077 3.19919 70.3613 3.36272 70.2936 3.49667L69.5251 5.01561C69.4573 5.14956 69.2938 5.20321 69.1598 5.13544C69.0259 5.06766 68.9722 4.90414 69.04 4.77019L69.8085 3.25124C69.8763 3.1173 70.0398 3.06365 70.1738 3.13142Z" fill="#93D6F6"/>
<circle cx="60.7699" cy="9.69466" r="0.271812" fill="#93D6F6"/>
<circle cx="68.9242" cy="5.52669" r="0.271812" fill="#93D6F6"/>
<path d="M68.3218 8.33329C66.26 11.2538 66.9968 12.8439 67.623 13.2738C69.5246 14.1321 72.9895 9.06778 73.224 7.72761C73.4584 6.38744 70.899 4.68267 68.3218 8.33329Z" fill="url(#paint20_linear_1461_2011)" fill-opacity="0.6"/>
<g filter="url(#filter3_i_1461_2011)">
<path d="M115.217 16.5871C116.034 16.2407 116.9 16.967 116.7 17.8321L115.305 23.8928C115.227 24.2315 115.316 24.5871 115.544 24.8495L119.621 29.5456C120.203 30.216 119.78 31.2636 118.895 31.3415L112.7 31.8872C112.354 31.9177 112.043 32.1119 111.864 32.4098L108.658 37.7388C108.2 38.4994 107.073 38.4206 106.725 37.6036L104.292 31.8803C104.156 31.5604 103.875 31.3249 103.537 31.2465L97.4777 29.8438C96.6128 29.6436 96.3395 28.5473 97.0091 27.9645L101.7 23.8815C101.963 23.6533 102.1 23.3135 102.07 22.9673L101.531 16.7714C101.455 15.887 102.413 15.2882 103.174 15.745L108.507 18.945C108.805 19.1238 109.17 19.1494 109.49 19.0138L115.217 16.5871Z" fill="#43628F"/>
</g>
<path d="M115.217 16.5871C116.034 16.2407 116.9 16.967 116.7 17.8321L115.305 23.8928C115.227 24.2315 115.316 24.5871 115.544 24.8495L119.621 29.5456C120.203 30.216 119.78 31.2636 118.895 31.3415L112.7 31.8872C112.354 31.9177 112.043 32.1119 111.864 32.4098L108.658 37.7388C108.2 38.4994 107.073 38.4206 106.725 37.6036L104.292 31.8803C104.156 31.5604 103.875 31.3249 103.537 31.2465L97.4777 29.8438C96.6128 29.6436 96.3395 28.5473 97.0091 27.9645L101.7 23.8815C101.963 23.6533 102.1 23.3135 102.07 22.9673L101.531 16.7714C101.455 15.887 102.413 15.2882 103.174 15.745L108.507 18.945C108.805 19.1238 109.17 19.1494 109.49 19.0138L115.217 16.5871Z" fill="url(#paint21_linear_1461_2011)"/>
<path d="M115.216 16.5871C116.034 16.2407 116.899 16.967 116.7 17.8321L115.305 23.8928C115.227 24.2315 115.315 24.5871 115.543 24.8495L119.621 29.5456C120.203 30.216 119.779 31.2636 118.895 31.3415L112.7 31.8872C112.354 31.9177 112.043 32.1119 111.864 32.4098L108.657 37.7387C108.2 38.4994 107.073 38.4206 106.725 37.6036L104.292 31.8803C104.156 31.5604 103.875 31.3249 103.536 31.2465L97.4774 29.8438C96.6126 29.6436 96.3392 28.5473 97.0089 27.9645L101.7 23.8815C101.962 23.6533 102.1 23.3135 102.069 22.9673L101.531 16.7714C101.454 15.887 102.413 15.2882 103.174 15.745L108.507 18.945C108.805 19.1238 109.17 19.1494 109.49 19.0137L115.216 16.5871Z" fill="url(#paint22_linear_1461_2011)"/>
<path d="M115.216 16.5871C116.034 16.2407 116.899 16.967 116.7 17.8321L115.305 23.8928C115.227 24.2315 115.315 24.5871 115.543 24.8495L119.621 29.5456C120.203 30.216 119.779 31.2636 118.895 31.3415L112.7 31.8872C112.354 31.9177 112.043 32.1119 111.864 32.4098L108.657 37.7387C108.2 38.4994 107.073 38.4206 106.725 37.6036L104.292 31.8803C104.156 31.5604 103.875 31.3249 103.536 31.2465L97.4774 29.8438C96.6126 29.6436 96.3392 28.5473 97.0089 27.9645L101.7 23.8815C101.962 23.6533 102.1 23.3135 102.069 22.9673L101.531 16.7714C101.454 15.887 102.413 15.2882 103.174 15.745L108.507 18.945C108.805 19.1238 109.17 19.1494 109.49 19.0137L115.216 16.5871Z" fill="url(#paint23_radial_1461_2011)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M114.952 23.8115L116.347 17.7508C116.48 17.1741 115.903 16.6899 115.358 16.9208L109.632 19.3474C109.205 19.5283 108.717 19.4942 108.32 19.2557L102.987 16.0558C102.48 15.7513 101.841 16.1504 101.892 16.74L102.431 22.9359C102.471 23.3976 102.288 23.8506 101.938 24.1549L97.2468 28.2378C96.8004 28.6264 96.9826 29.3573 97.5592 29.4908L103.618 30.8934C104.07 30.9979 104.444 31.312 104.625 31.7385L107.059 37.4618C107.29 38.0065 108.042 38.059 108.347 37.5519L111.553 32.2229C111.792 31.8258 112.206 31.5669 112.668 31.5262L118.863 30.9805C119.453 30.9286 119.735 30.2301 119.347 29.7832L115.27 25.0871C114.966 24.7372 114.848 24.2631 114.952 23.8115ZM116.7 17.8321C116.899 16.967 116.034 16.2407 115.216 16.5871L109.49 19.0137C109.17 19.1494 108.805 19.1238 108.507 18.945L103.174 15.745C102.413 15.2882 101.454 15.887 101.531 16.7714L102.069 22.9673C102.1 23.3135 101.962 23.6533 101.7 23.8815L97.0089 27.9645C96.3392 28.5473 96.6126 29.6436 97.4774 29.8438L103.536 31.2465C103.875 31.3249 104.156 31.5604 104.292 31.8803L106.725 37.6036C107.073 38.4206 108.2 38.4994 108.657 37.7387L111.864 32.4098C112.043 32.1119 112.354 31.9177 112.7 31.8872L118.895 31.3415C119.779 31.2636 120.203 30.216 119.621 29.5456L115.543 24.8495C115.315 24.5871 115.227 24.2315 115.305 23.8928L116.7 17.8321Z" fill="url(#paint24_linear_1461_2011)"/>
<path d="M112.102 21.0735C112.495 20.9309 112.895 21.2667 112.823 21.6784L112.252 24.9346C112.225 25.086 112.264 25.2416 112.358 25.3628L114.391 27.9698C114.648 28.2995 114.453 28.7838 114.039 28.8424L110.765 29.3055C110.613 29.327 110.477 29.412 110.391 29.5393L108.54 32.2783C108.306 32.6247 107.785 32.5882 107.601 32.2127L106.149 29.2427C106.082 29.1046 105.959 29.0015 105.811 28.959L102.634 28.0449C102.232 27.9293 102.106 27.4224 102.407 27.1317L104.782 24.8331C104.893 24.7262 104.953 24.5775 104.948 24.4239L104.835 21.1199C104.821 20.7021 105.264 20.4253 105.634 20.6212L108.554 22.1706C108.69 22.2426 108.85 22.2538 108.994 22.2013L112.102 21.0735Z" fill="url(#paint25_linear_1461_2011)"/>
<path d="M115.011 29.0751C106.003 29.6071 103.278 23.7417 103.041 20.7426C103.648 15.0282 106.59 22.4752 112.441 25.2066C117.122 27.3918 116.105 28.6961 115.011 29.0751Z" fill="url(#paint26_linear_1461_2011)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M114.596 17.6769C114.655 17.815 114.591 17.9747 114.453 18.0338L112.888 18.7033C112.75 18.7624 112.591 18.6984 112.532 18.5604C112.472 18.4223 112.537 18.2626 112.675 18.2035L114.24 17.534C114.378 17.4749 114.537 17.5389 114.596 17.6769Z" fill="#93D6F6"/>
<circle cx="103.173" cy="16.6593" r="0.271812" transform="rotate(40 103.173 16.6593)" fill="#93D6F6"/>
<circle cx="112.099" cy="18.7081" r="0.271812" transform="rotate(40 112.099 18.7081)" fill="#93D6F6"/>
<path d="M109.834 20.4705C106.377 21.3825 105.919 23.0741 106.123 23.806C107.028 25.6858 112.937 24.0335 113.978 23.1576C115.019 22.2817 114.155 19.3306 109.834 20.4705Z" fill="url(#paint27_linear_1461_2011)" fill-opacity="0.6"/>
<g filter="url(#filter4_i_1461_2011)">
<path d="M127.532 45.8979C127.935 45.1071 129.065 45.1071 129.468 45.8979L132.295 51.4376C132.453 51.7472 132.75 51.9626 133.093 52.0171L139.235 52.9937C140.112 53.1331 140.461 54.2077 139.834 54.8358L135.439 59.2361C135.193 59.482 135.08 59.8305 135.134 60.1738L136.103 66.3171C136.241 67.194 135.327 67.8581 134.536 67.4555L128.993 64.6354C128.683 64.4778 128.317 64.4778 128.007 64.6354L122.464 67.4555C121.673 67.8581 120.759 67.194 120.897 66.3171L121.866 60.1738C121.92 59.8305 121.807 59.482 121.561 59.2361L117.166 54.8358C116.539 54.2077 116.888 53.1331 117.765 52.9937L123.907 52.0171C124.25 51.9626 124.547 51.7472 124.705 51.4376L127.532 45.8979Z" fill="#43628F"/>
</g>
<path d="M127.532 45.8979C127.935 45.1071 129.065 45.1071 129.468 45.8979L132.295 51.4376C132.453 51.7472 132.75 51.9626 133.093 52.0171L139.235 52.9937C140.112 53.1331 140.461 54.2077 139.834 54.8358L135.439 59.2361C135.193 59.482 135.08 59.8305 135.134 60.1738L136.103 66.3171C136.241 67.194 135.327 67.8581 134.536 67.4555L128.993 64.6354C128.683 64.4778 128.317 64.4778 128.007 64.6354L122.464 67.4555C121.673 67.8581 120.759 67.194 120.897 66.3171L121.866 60.1738C121.92 59.8305 121.807 59.482 121.561 59.2361L117.166 54.8358C116.539 54.2077 116.888 53.1331 117.765 52.9937L123.907 52.0171C124.25 51.9626 124.547 51.7472 124.705 51.4376L127.532 45.8979Z" fill="url(#paint28_linear_1461_2011)"/>
<path d="M127.532 45.8978C127.935 45.107 129.065 45.107 129.469 45.8978L132.296 51.4374C132.453 51.747 132.75 51.9624 133.093 52.017L139.235 52.9936C140.112 53.133 140.461 54.2075 139.834 54.8357L135.439 59.2359C135.193 59.4818 135.08 59.8304 135.134 60.1737L136.103 66.3169C136.242 67.1938 135.328 67.858 134.536 67.4554L128.993 64.6352C128.684 64.4776 128.317 64.4776 128.007 64.6352L122.464 67.4554C121.673 67.858 120.759 67.1938 120.897 66.3169L121.866 60.1737C121.921 59.8304 121.807 59.4818 121.562 59.2359L117.167 54.8357C116.539 54.2075 116.889 53.133 117.765 52.9936L123.907 52.017C124.251 51.9624 124.547 51.747 124.705 51.4374L127.532 45.8978Z" fill="url(#paint29_linear_1461_2011)"/>
<path d="M127.532 45.8978C127.935 45.107 129.065 45.107 129.469 45.8978L132.296 51.4374C132.453 51.747 132.75 51.9624 133.093 52.017L139.235 52.9936C140.112 53.133 140.461 54.2075 139.834 54.8357L135.439 59.2359C135.193 59.4818 135.08 59.8304 135.134 60.1737L136.103 66.3169C136.242 67.1938 135.328 67.858 134.536 67.4554L128.993 64.6352C128.684 64.4776 128.317 64.4776 128.007 64.6352L122.464 67.4554C121.673 67.858 120.759 67.1938 120.897 66.3169L121.866 60.1737C121.921 59.8304 121.807 59.4818 121.562 59.2359L117.167 54.8357C116.539 54.2075 116.889 53.133 117.765 52.9936L123.907 52.017C124.251 51.9624 124.547 51.747 124.705 51.4374L127.532 45.8978Z" fill="url(#paint30_radial_1461_2011)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M131.973 51.6021L129.146 46.0625C128.877 45.5353 128.124 45.5353 127.855 46.0625L125.028 51.6021C124.817 52.0149 124.422 52.3022 123.964 52.3749L117.822 53.3515C117.238 53.4444 117.005 54.1608 117.423 54.5795L121.818 58.9798C122.146 59.3077 122.297 59.7724 122.224 60.2302L121.255 66.3734C121.163 66.958 121.772 67.4008 122.3 67.1324L127.843 64.3122C128.256 64.1021 128.745 64.1021 129.158 64.3122L134.701 67.1324C135.228 67.4008 135.838 66.958 135.745 66.3734L134.776 60.2302C134.704 59.7724 134.855 59.3077 135.182 58.9798L139.577 54.5796C139.996 54.1608 139.763 53.4444 139.178 53.3515L133.036 52.3749C132.579 52.3022 132.183 52.0149 131.973 51.6021ZM129.469 45.8978C129.065 45.107 127.935 45.107 127.532 45.8978L124.705 51.4374C124.547 51.747 124.251 51.9624 123.907 52.017L117.765 52.9936C116.889 53.133 116.539 54.2075 117.167 54.8357L121.562 59.2359C121.807 59.4818 121.921 59.8304 121.866 60.1737L120.897 66.3169C120.759 67.1938 121.673 67.858 122.464 67.4554L128.007 64.6352C128.317 64.4776 128.684 64.4776 128.993 64.6352L134.536 67.4554C135.328 67.858 136.242 67.1938 136.103 66.3169L135.134 60.1737C135.08 59.8304 135.193 59.4818 135.439 59.2359L139.834 54.8357C140.461 54.2075 140.112 53.133 139.235 52.9936L133.093 52.017C132.75 51.9624 132.453 51.747 132.296 51.4374L129.469 45.8978Z" fill="url(#paint31_linear_1461_2011)"/>
<path d="M128.029 51.3367C128.239 50.9749 128.761 50.9749 128.97 51.3367L130.626 54.1982C130.703 54.3312 130.833 54.4255 130.983 54.4576L134.216 55.1479C134.625 55.2352 134.786 55.732 134.507 56.0429L132.297 58.5017C132.194 58.616 132.145 58.7685 132.161 58.9214L132.503 62.2095C132.547 62.6253 132.124 62.9324 131.742 62.7627L128.721 61.4208C128.58 61.3584 128.42 61.3584 128.279 61.4208L125.258 62.7627C124.876 62.9324 124.453 62.6253 124.497 62.2095L124.839 58.9214C124.855 58.7685 124.806 58.616 124.703 58.5017L122.493 56.0429C122.214 55.732 122.375 55.2352 122.784 55.1479L126.017 54.4576C126.167 54.4255 126.297 54.3312 126.374 54.1982L128.029 51.3367Z" fill="url(#paint32_linear_1461_2011)"/>
<path d="M135.402 55.596C128.843 61.7939 122.985 59.0525 120.876 56.9071C117.668 52.1395 124.708 55.9536 130.946 54.2849C135.937 52.9499 135.996 54.6027 135.402 55.596Z" fill="url(#paint33_linear_1461_2011)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M127.757 47.1314C127.891 47.1992 127.944 47.3627 127.877 47.4967L127.108 49.0156C127.04 49.1496 126.877 49.2032 126.743 49.1354C126.609 49.0677 126.555 48.9041 126.623 48.7702L127.392 47.2512C127.459 47.1173 127.623 47.0636 127.757 47.1314Z" fill="#93D6F6"/>
<circle cx="118.353" cy="53.6947" r="0.271812" fill="#93D6F6"/>
<circle cx="126.507" cy="49.5267" r="0.271812" fill="#93D6F6"/>
<path d="M125.905 52.3333C123.843 55.2538 124.58 56.8439 125.206 57.2738C127.108 58.1321 130.573 53.0678 130.807 51.7276C131.041 50.3874 128.482 48.6827 125.905 52.3333Z" fill="url(#paint34_linear_1461_2011)" fill-opacity="0.6"/>
<defs>
<filter id="filter0_i_1461_2011" x="21.1133" y="14.1757" width="23.2529" height="24.4898" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1461_2011"/>
</filter>
<filter id="filter1_i_1461_2011" x="1.84766" y="43.4926" width="23.3047" height="24.0836" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1461_2011"/>
</filter>
<filter id="filter2_i_1461_2011" x="59.2646" y="-0.507393" width="23.3047" height="24.0836" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1461_2011"/>
</filter>
<filter id="filter3_i_1461_2011" x="96.6348" y="13.7758" width="23.2539" height="24.4898" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1461_2011"/>
</filter>
<filter id="filter4_i_1461_2011" x="116.848" y="43.4926" width="23.3047" height="24.0836" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<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"/>
<feOffset dy="-1.81208"/>
<feGaussianBlur stdDeviation="2.2651"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.595833 0 0 0 0 0.83025 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_1461_2011"/>
</filter>
<linearGradient id="paint0_linear_1461_2011" x1="23.823" y1="16.1559" x2="43.5572" y2="30.2302" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<linearGradient id="paint1_linear_1461_2011" x1="23.824" y1="16.1558" x2="43.5582" y2="30.2301" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<radialGradient id="paint2_radial_1461_2011" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(27.8593 25.8983) rotate(12.6712) scale(15.8381)">
<stop offset="0.738765" stop-color="#9CB6DD" stop-opacity="0"/>
<stop offset="0.89825" stop-color="#C6F1FF" stop-opacity="0.37"/>
<stop offset="1" stop-color="#EFFBFF" stop-opacity="0.7"/>
</radialGradient>
<linearGradient id="paint3_linear_1461_2011" x1="41.302" y1="25.1451" x2="24.444" y2="24.5062" gradientUnits="userSpaceOnUse">
<stop stop-color="#D8F6FF" stop-opacity="0.63"/>
<stop offset="0.218803" stop-color="#A0D2FF" stop-opacity="0"/>
<stop offset="0.491108" stop-color="#8DC8FF" stop-opacity="0.56"/>
<stop offset="0.733041" stop-color="#9ADBF8"/>
<stop offset="1" stop-color="white" stop-opacity="0"/>
<stop offset="1" stop-color="#BAEAFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint4_linear_1461_2011" x1="28.0162" y1="21.1533" x2="35.6232" y2="30.5009" gradientUnits="userSpaceOnUse">
<stop stop-color="#9BE1FF"/>
<stop offset="0.277442" stop-color="#9BE1FF" stop-opacity="0.51"/>
<stop offset="1" stop-color="#CDDEE6" stop-opacity="0.15"/>
</linearGradient>
<linearGradient id="paint5_linear_1461_2011" x1="30.5231" y1="25.049" x2="33.2072" y2="28.3873" gradientUnits="userSpaceOnUse">
<stop stop-color="#C4C4C4" stop-opacity="0"/>
<stop offset="0.731853" stop-color="#DBF6FF" stop-opacity="0.46"/>
</linearGradient>
<linearGradient id="paint6_linear_1461_2011" x1="28.0638" y1="23.9862" x2="31.3673" y2="24.1793" gradientUnits="userSpaceOnUse">
<stop offset="0.223958" stop-color="#DBF6FF" stop-opacity="0.35"/>
<stop offset="1" stop-color="#C4C4C4" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint7_linear_1461_2011" x1="13.5" y1="44" x2="19.5705" y2="67.4664" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<linearGradient id="paint8_linear_1461_2011" x1="13.5003" y1="43.9999" x2="19.5707" y2="67.4663" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<radialGradient id="paint9_radial_1461_2011" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(10.3291 54.0569) rotate(52.6712) scale(15.8381)">
<stop offset="0.738765" stop-color="#9CB6DD" stop-opacity="0"/>
<stop offset="0.89825" stop-color="#C6F1FF" stop-opacity="0.37"/>
<stop offset="1" stop-color="#EFFBFF" stop-opacity="0.7"/>
</radialGradient>
<linearGradient id="paint10_linear_1461_2011" x1="21.111" y1="62.1207" x2="8.60766" y2="50.7952" gradientUnits="userSpaceOnUse">
<stop stop-color="#D8F6FF" stop-opacity="0.63"/>
<stop offset="0.218803" stop-color="#A0D2FF" stop-opacity="0"/>
<stop offset="0.491108" stop-color="#8DC8FF" stop-opacity="0.56"/>
<stop offset="0.733041" stop-color="#9ADBF8"/>
<stop offset="1" stop-color="white" stop-opacity="0"/>
<stop offset="1" stop-color="#BAEAFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint11_linear_1461_2011" x1="13.4999" y1="50.5234" x2="13.3187" y2="62.5738" gradientUnits="userSpaceOnUse">
<stop stop-color="#9BE1FF"/>
<stop offset="0.277442" stop-color="#9BE1FF" stop-opacity="0.51"/>
<stop offset="1" stop-color="#CDDEE6" stop-opacity="0.15"/>
</linearGradient>
<linearGradient id="paint12_linear_1461_2011" x1="12.9164" y1="55.1192" x2="12.8266" y2="59.4018" gradientUnits="userSpaceOnUse">
<stop stop-color="#C4C4C4" stop-opacity="0"/>
<stop offset="0.731853" stop-color="#DBF6FF" stop-opacity="0.46"/>
</linearGradient>
<linearGradient id="paint13_linear_1461_2011" x1="11.7157" y1="52.7239" x2="14.1222" y2="54.9953" gradientUnits="userSpaceOnUse">
<stop offset="0.223958" stop-color="#DBF6FF" stop-opacity="0.35"/>
<stop offset="1" stop-color="#C4C4C4" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint14_linear_1461_2011" x1="70.917" y1="-2.43016e-08" x2="76.9875" y2="23.4664" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<linearGradient id="paint15_linear_1461_2011" x1="70.9173" y1="-0.000134339" x2="76.9877" y2="23.4663" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<radialGradient id="paint16_radial_1461_2011" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(67.7461 10.0569) rotate(52.6712) scale(15.8381)">
<stop offset="0.738765" stop-color="#9CB6DD" stop-opacity="0"/>
<stop offset="0.89825" stop-color="#C6F1FF" stop-opacity="0.37"/>
<stop offset="1" stop-color="#EFFBFF" stop-opacity="0.7"/>
</radialGradient>
<linearGradient id="paint17_linear_1461_2011" x1="78.528" y1="18.1207" x2="66.0246" y2="6.79517" gradientUnits="userSpaceOnUse">
<stop stop-color="#D8F6FF" stop-opacity="0.63"/>
<stop offset="0.218803" stop-color="#A0D2FF" stop-opacity="0"/>
<stop offset="0.491108" stop-color="#8DC8FF" stop-opacity="0.56"/>
<stop offset="0.733041" stop-color="#9ADBF8"/>
<stop offset="1" stop-color="white" stop-opacity="0"/>
<stop offset="1" stop-color="#BAEAFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint18_linear_1461_2011" x1="70.9169" y1="6.52344" x2="70.7357" y2="18.5738" gradientUnits="userSpaceOnUse">
<stop stop-color="#9BE1FF"/>
<stop offset="0.277442" stop-color="#9BE1FF" stop-opacity="0.51"/>
<stop offset="1" stop-color="#CDDEE6" stop-opacity="0.15"/>
</linearGradient>
<linearGradient id="paint19_linear_1461_2011" x1="70.3333" y1="11.1192" x2="70.2436" y2="15.4018" gradientUnits="userSpaceOnUse">
<stop stop-color="#C4C4C4" stop-opacity="0"/>
<stop offset="0.731853" stop-color="#DBF6FF" stop-opacity="0.46"/>
</linearGradient>
<linearGradient id="paint20_linear_1461_2011" x1="69.1326" y1="8.72394" x2="71.5392" y2="10.9953" gradientUnits="userSpaceOnUse">
<stop offset="0.223958" stop-color="#DBF6FF" stop-opacity="0.35"/>
<stop offset="1" stop-color="#C4C4C4" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint21_linear_1461_2011" x1="117.179" y1="15.7558" x2="106.745" y2="37.6341" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<linearGradient id="paint22_linear_1461_2011" x1="117.178" y1="15.7557" x2="106.745" y2="37.6341" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<radialGradient id="paint23_radial_1461_2011" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(108.284 21.4215) rotate(92.6712) scale(15.8381)">
<stop offset="0.738765" stop-color="#9CB6DD" stop-opacity="0"/>
<stop offset="0.89825" stop-color="#C6F1FF" stop-opacity="0.37"/>
<stop offset="1" stop-color="#EFFBFF" stop-opacity="0.7"/>
</radialGradient>
<linearGradient id="paint24_linear_1461_2011" x1="111.361" y1="34.5292" x2="109.062" y2="17.8163" gradientUnits="userSpaceOnUse">
<stop stop-color="#D8F6FF" stop-opacity="0.63"/>
<stop offset="0.218803" stop-color="#A0D2FF" stop-opacity="0"/>
<stop offset="0.491108" stop-color="#8DC8FF" stop-opacity="0.56"/>
<stop offset="0.733041" stop-color="#9ADBF8"/>
<stop offset="1" stop-color="white" stop-opacity="0"/>
<stop offset="1" stop-color="#BAEAFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint25_linear_1461_2011" x1="112.985" y1="20.753" x2="105.1" y2="29.8676" gradientUnits="userSpaceOnUse">
<stop stop-color="#9BE1FF"/>
<stop offset="0.277442" stop-color="#9BE1FF" stop-opacity="0.51"/>
<stop offset="1" stop-color="#CDDEE6" stop-opacity="0.15"/>
</linearGradient>
<linearGradient id="paint26_linear_1461_2011" x1="109.584" y1="23.8982" x2="106.762" y2="27.1212" gradientUnits="userSpaceOnUse">
<stop stop-color="#C4C4C4" stop-opacity="0"/>
<stop offset="0.731853" stop-color="#DBF6FF" stop-opacity="0.46"/>
</linearGradient>
<linearGradient id="paint27_linear_1461_2011" x1="110.204" y1="21.291" x2="110.587" y2="24.5778" gradientUnits="userSpaceOnUse">
<stop offset="0.223958" stop-color="#DBF6FF" stop-opacity="0.35"/>
<stop offset="1" stop-color="#C4C4C4" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint28_linear_1461_2011" x1="128.5" y1="44" x2="134.57" y2="67.4664" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<linearGradient id="paint29_linear_1461_2011" x1="128.5" y1="43.9999" x2="134.571" y2="67.4663" gradientUnits="userSpaceOnUse">
<stop stop-color="#708FBE" stop-opacity="0"/>
<stop offset="1" stop-color="#72DDFF" stop-opacity="0.63"/>
</linearGradient>
<radialGradient id="paint30_radial_1461_2011" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(125.329 54.0569) rotate(52.6712) scale(15.8381)">
<stop offset="0.738765" stop-color="#9CB6DD" stop-opacity="0"/>
<stop offset="0.89825" stop-color="#C6F1FF" stop-opacity="0.37"/>
<stop offset="1" stop-color="#EFFBFF" stop-opacity="0.7"/>
</radialGradient>
<linearGradient id="paint31_linear_1461_2011" x1="136.111" y1="62.1207" x2="123.608" y2="50.7952" gradientUnits="userSpaceOnUse">
<stop stop-color="#D8F6FF" stop-opacity="0.63"/>
<stop offset="0.218803" stop-color="#A0D2FF" stop-opacity="0"/>
<stop offset="0.491108" stop-color="#8DC8FF" stop-opacity="0.56"/>
<stop offset="0.733041" stop-color="#9ADBF8"/>
<stop offset="1" stop-color="white" stop-opacity="0"/>
<stop offset="1" stop-color="#BAEAFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint32_linear_1461_2011" x1="128.5" y1="50.5234" x2="128.319" y2="62.5738" gradientUnits="userSpaceOnUse">
<stop stop-color="#9BE1FF"/>
<stop offset="0.277442" stop-color="#9BE1FF" stop-opacity="0.51"/>
<stop offset="1" stop-color="#CDDEE6" stop-opacity="0.15"/>
</linearGradient>
<linearGradient id="paint33_linear_1461_2011" x1="127.916" y1="55.1192" x2="127.827" y2="59.4018" gradientUnits="userSpaceOnUse">
<stop stop-color="#C4C4C4" stop-opacity="0"/>
<stop offset="0.731853" stop-color="#DBF6FF" stop-opacity="0.46"/>
</linearGradient>
<linearGradient id="paint34_linear_1461_2011" x1="126.716" y1="52.7239" x2="129.122" y2="54.9953" gradientUnits="userSpaceOnUse">
<stop offset="0.223958" stop-color="#DBF6FF" stop-opacity="0.35"/>
<stop offset="1" stop-color="#C4C4C4" stop-opacity="0"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 43 KiB

View File

@@ -0,0 +1,4 @@
<svg width="74" height="40" viewBox="0 0 74 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M37.64 25.1C38.04 26.06 38.55 26.78 39.17 27.26C39.81 27.74 40.55 27.98 41.39 27.98C42.05 27.98 42.62 27.86 43.1 27.62C43.6 27.38 43.98 27.04 44.24 26.6C44.52 26.14 44.66 25.6 44.66 24.98C44.66 24.34 44.53 23.79 44.27 23.33C44.01 22.87 43.63 22.52 43.13 22.28C42.65 22.04 42.07 21.92 41.39 21.92C40.67 21.92 40.02 22.1 39.44 22.46C38.88 22.82 38.45 23.35 38.15 24.05L33.44 21.92L34.43 8.9H49.07V13.94H39.68L39.2 18.86L37.49 18.95C38.07 18.31 38.82 17.82 39.74 17.48C40.66 17.12 41.61 16.94 42.59 16.94C44.15 16.94 45.5 17.27 46.64 17.93C47.78 18.57 48.65 19.49 49.25 20.69C49.87 21.87 50.18 23.25 50.18 24.83C50.18 26.51 49.82 27.97 49.1 29.21C48.38 30.43 47.34 31.37 45.98 32.03C44.64 32.69 43.05 33.02 41.21 33.02C39.33 33.02 37.67 32.6 36.23 31.76C34.81 30.9 33.77 29.7 33.11 28.16L37.64 25.1ZM56.0516 33.02C55.0916 33.02 54.3016 32.71 53.6816 32.09C53.0816 31.47 52.7816 30.68 52.7816 29.72C52.7816 28.76 53.0816 27.97 53.6816 27.35C54.3016 26.73 55.0916 26.42 56.0516 26.42C57.0316 26.42 57.8316 26.73 58.4516 27.35C59.0716 27.97 59.3816 28.76 59.3816 29.72C59.3816 30.68 59.0716 31.47 58.4516 32.09C57.8316 32.71 57.0316 33.02 56.0516 33.02ZM64.4134 32.6V15.11L59.0134 17.9V12.11L65.2834 8.9H69.9934V32.6H64.4134Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1,4 @@
<svg width="81" height="40" viewBox="0 0 81 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M37.64 25.1C38.04 26.06 38.55 26.78 39.17 27.26C39.81 27.74 40.55 27.98 41.39 27.98C42.05 27.98 42.62 27.86 43.1 27.62C43.6 27.38 43.98 27.04 44.24 26.6C44.52 26.14 44.66 25.6 44.66 24.98C44.66 24.34 44.53 23.79 44.27 23.33C44.01 22.87 43.63 22.52 43.13 22.28C42.65 22.04 42.07 21.92 41.39 21.92C40.67 21.92 40.02 22.1 39.44 22.46C38.88 22.82 38.45 23.35 38.15 24.05L33.44 21.92L34.43 8.9H49.07V13.94H39.68L39.2 18.86L37.49 18.95C38.07 18.31 38.82 17.82 39.74 17.48C40.66 17.12 41.61 16.94 42.59 16.94C44.15 16.94 45.5 17.27 46.64 17.93C47.78 18.57 48.65 19.49 49.25 20.69C49.87 21.87 50.18 23.25 50.18 24.83C50.18 26.51 49.82 27.97 49.1 29.21C48.38 30.43 47.34 31.37 45.98 32.03C44.64 32.69 43.05 33.02 41.21 33.02C39.33 33.02 37.67 32.6 36.23 31.76C34.81 30.9 33.77 29.7 33.11 28.16L37.64 25.1ZM56.0516 33.02C55.0916 33.02 54.3016 32.71 53.6816 32.09C53.0816 31.47 52.7816 30.68 52.7816 29.72C52.7816 28.76 53.0816 27.97 53.6816 27.35C54.3016 26.73 55.0916 26.42 56.0516 26.42C57.0316 26.42 57.8316 26.73 58.4516 27.35C59.0716 27.97 59.3816 28.76 59.3816 29.72C59.3816 30.68 59.0716 31.47 58.4516 32.09C57.8316 32.71 57.0316 33.02 56.0516 33.02ZM70.3325 13.58C69.4725 13.58 68.7325 13.84 68.1125 14.36C67.4925 14.86 66.9625 15.63 66.5225 16.67L62.1725 13.7C62.8325 12.22 63.8525 10.99 65.2325 10.01C66.6125 9.01 68.3725 8.5 70.5125 8.48C72.1725 8.48 73.6025 8.79 74.8025 9.41C76.0225 10.01 76.9525 10.87 77.5925 11.99C78.2325 13.09 78.5525 14.36 78.5525 15.8C78.5525 17.08 78.2425 18.31 77.6225 19.49C77.0225 20.67 76.1525 21.85 75.0125 23.03L68.1425 30.17L66.9425 27.38H79.0325V32.6H62.2025V28.91L70.6625 20.24C71.4825 19.38 72.0525 18.64 72.3725 18.02C72.6925 17.4 72.8525 16.76 72.8525 16.1C72.8525 15.34 72.6325 14.73 72.1925 14.27C71.7725 13.81 71.1525 13.58 70.3325 13.58Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -0,0 +1,4 @@
<svg width="80" height="40" viewBox="0 0 80 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M37.64 25.1C38.04 26.06 38.55 26.78 39.17 27.26C39.81 27.74 40.55 27.98 41.39 27.98C42.05 27.98 42.62 27.86 43.1 27.62C43.6 27.38 43.98 27.04 44.24 26.6C44.52 26.14 44.66 25.6 44.66 24.98C44.66 24.34 44.53 23.79 44.27 23.33C44.01 22.87 43.63 22.52 43.13 22.28C42.65 22.04 42.07 21.92 41.39 21.92C40.67 21.92 40.02 22.1 39.44 22.46C38.88 22.82 38.45 23.35 38.15 24.05L33.44 21.92L34.43 8.9H49.07V13.94H39.68L39.2 18.86L37.49 18.95C38.07 18.31 38.82 17.82 39.74 17.48C40.66 17.12 41.61 16.94 42.59 16.94C44.15 16.94 45.5 17.27 46.64 17.93C47.78 18.57 48.65 19.49 49.25 20.69C49.87 21.87 50.18 23.25 50.18 24.83C50.18 26.51 49.82 27.97 49.1 29.21C48.38 30.43 47.34 31.37 45.98 32.03C44.64 32.69 43.05 33.02 41.21 33.02C39.33 33.02 37.67 32.6 36.23 31.76C34.81 30.9 33.77 29.7 33.11 28.16L37.64 25.1ZM56.0516 33.02C55.0916 33.02 54.3016 32.71 53.6816 32.09C53.0816 31.47 52.7816 30.68 52.7816 29.72C52.7816 28.76 53.0816 27.97 53.6816 27.35C54.3016 26.73 55.0916 26.42 56.0516 26.42C57.0316 26.42 57.8316 26.73 58.4516 27.35C59.0716 27.97 59.3816 28.76 59.3816 29.72C59.3816 30.68 59.0716 31.47 58.4516 32.09C57.8316 32.71 57.0316 33.02 56.0516 33.02ZM69.9294 33.02C67.8294 33.02 66.0794 32.53 64.6794 31.55C63.2794 30.57 62.2594 29.32 61.6194 27.8L65.9694 24.86C66.3894 25.9 66.9094 26.68 67.5294 27.2C68.1494 27.72 68.9294 27.98 69.8694 27.98C70.4694 27.98 70.9994 27.87 71.4594 27.65C71.9394 27.41 72.2994 27.07 72.5394 26.63C72.7994 26.19 72.9294 25.67 72.9294 25.07C72.9294 24.47 72.7994 23.95 72.5394 23.51C72.2994 23.05 71.9494 22.7 71.4894 22.46C71.0494 22.2 70.5294 22.06 69.9294 22.04C69.5294 22.02 69.1694 22.07 68.8494 22.19C68.5494 22.29 68.1694 22.48 67.7094 22.76L64.6494 18.95L72.8394 11.39L74.1594 14.12H62.5194V8.9H77.3694V13.43L71.9994 17.81L72.0594 17.96C73.2194 17.96 74.2894 18.27 75.2694 18.89C76.2494 19.49 77.0194 20.34 77.5794 21.44C78.1594 22.52 78.4494 23.73 78.4494 25.07C78.4494 26.61 78.0794 27.98 77.3394 29.18C76.6194 30.38 75.6094 31.32 74.3094 32C73.0294 32.68 71.5694 33.02 69.9294 33.02Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,4 @@
<svg width="81" height="40" viewBox="0 0 81 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M37.64 25.1C38.04 26.06 38.55 26.78 39.17 27.26C39.81 27.74 40.55 27.98 41.39 27.98C42.05 27.98 42.62 27.86 43.1 27.62C43.6 27.38 43.98 27.04 44.24 26.6C44.52 26.14 44.66 25.6 44.66 24.98C44.66 24.34 44.53 23.79 44.27 23.33C44.01 22.87 43.63 22.52 43.13 22.28C42.65 22.04 42.07 21.92 41.39 21.92C40.67 21.92 40.02 22.1 39.44 22.46C38.88 22.82 38.45 23.35 38.15 24.05L33.44 21.92L34.43 8.9H49.07V13.94H39.68L39.2 18.86L37.49 18.95C38.07 18.31 38.82 17.82 39.74 17.48C40.66 17.12 41.61 16.94 42.59 16.94C44.15 16.94 45.5 17.27 46.64 17.93C47.78 18.57 48.65 19.49 49.25 20.69C49.87 21.87 50.18 23.25 50.18 24.83C50.18 26.51 49.82 27.97 49.1 29.21C48.38 30.43 47.34 31.37 45.98 32.03C44.64 32.69 43.05 33.02 41.21 33.02C39.33 33.02 37.67 32.6 36.23 31.76C34.81 30.9 33.77 29.7 33.11 28.16L37.64 25.1ZM56.0516 33.02C55.0916 33.02 54.3016 32.71 53.6816 32.09C53.0816 31.47 52.7816 30.68 52.7816 29.72C52.7816 28.76 53.0816 27.97 53.6816 27.35C54.3016 26.73 55.0916 26.42 56.0516 26.42C57.0316 26.42 57.8316 26.73 58.4516 27.35C59.0716 27.97 59.3816 28.76 59.3816 29.72C59.3816 30.68 59.0716 31.47 58.4516 32.09C57.8316 32.71 57.0316 33.02 56.0516 33.02ZM77.0087 32.6H71.4287V11.21H73.4987L67.5887 23.24H79.9187V28.46H61.1087V25.04L69.2987 8.9H77.0087V32.6Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,4 @@
<svg width="81" height="40" viewBox="0 0 81 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M37.64 25.1C38.04 26.06 38.55 26.78 39.17 27.26C39.81 27.74 40.55 27.98 41.39 27.98C42.05 27.98 42.62 27.86 43.1 27.62C43.6 27.38 43.98 27.04 44.24 26.6C44.52 26.14 44.66 25.6 44.66 24.98C44.66 24.34 44.53 23.79 44.27 23.33C44.01 22.87 43.63 22.52 43.13 22.28C42.65 22.04 42.07 21.92 41.39 21.92C40.67 21.92 40.02 22.1 39.44 22.46C38.88 22.82 38.45 23.35 38.15 24.05L33.44 21.92L34.43 8.9H49.07V13.94H39.68L39.2 18.86L37.49 18.95C38.07 18.31 38.82 17.82 39.74 17.48C40.66 17.12 41.61 16.94 42.59 16.94C44.15 16.94 45.5 17.27 46.64 17.93C47.78 18.57 48.65 19.49 49.25 20.69C49.87 21.87 50.18 23.25 50.18 24.83C50.18 26.51 49.82 27.97 49.1 29.21C48.38 30.43 47.34 31.37 45.98 32.03C44.64 32.69 43.05 33.02 41.21 33.02C39.33 33.02 37.67 32.6 36.23 31.76C34.81 30.9 33.77 29.7 33.11 28.16L37.64 25.1ZM56.0516 33.02C55.0916 33.02 54.3016 32.71 53.6816 32.09C53.0816 31.47 52.7816 30.68 52.7816 29.72C52.7816 28.76 53.0816 27.97 53.6816 27.35C54.3016 26.73 55.0916 26.42 56.0516 26.42C57.0316 26.42 57.8316 26.73 58.4516 27.35C59.0716 27.97 59.3816 28.76 59.3816 29.72C59.3816 30.68 59.0716 31.47 58.4516 32.09C57.8316 32.71 57.0316 33.02 56.0516 33.02ZM66.2045 25.1C66.6045 26.06 67.1145 26.78 67.7345 27.26C68.3745 27.74 69.1145 27.98 69.9545 27.98C70.6145 27.98 71.1845 27.86 71.6645 27.62C72.1645 27.38 72.5445 27.04 72.8045 26.6C73.0845 26.14 73.2245 25.6 73.2245 24.98C73.2245 24.34 73.0945 23.79 72.8345 23.33C72.5745 22.87 72.1945 22.52 71.6945 22.28C71.2145 22.04 70.6345 21.92 69.9545 21.92C69.2345 21.92 68.5845 22.1 68.0045 22.46C67.4445 22.82 67.0145 23.35 66.7145 24.05L62.0045 21.92L62.9945 8.9H77.6345V13.94H68.2445L67.7645 18.86L66.0545 18.95C66.6345 18.31 67.3845 17.82 68.3045 17.48C69.2245 17.12 70.1745 16.94 71.1545 16.94C72.7145 16.94 74.0645 17.27 75.2045 17.93C76.3445 18.57 77.2145 19.49 77.8145 20.69C78.4345 21.87 78.7445 23.25 78.7445 24.83C78.7445 26.51 78.3845 27.97 77.6645 29.21C76.9445 30.43 75.9045 31.37 74.5445 32.03C73.2045 32.69 71.6145 33.02 69.7745 33.02C67.8945 33.02 66.2345 32.6 64.7945 31.76C63.3745 30.9 62.3345 29.7 61.6745 28.16L66.2045 25.1Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -0,0 +1,4 @@
<svg width="75" height="40" viewBox="0 0 75 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M42.08 33.02C40.38 33.02 38.85 32.67 37.49 31.97C36.13 31.25 35.06 30.27 34.28 29.03C33.52 27.77 33.14 26.36 33.14 24.8C33.14 23.86 33.23 23.03 33.41 22.31C33.59 21.57 33.84 20.87 34.16 20.21C34.48 19.53 34.97 18.59 35.63 17.39C35.65 17.35 35.67 17.31 35.69 17.27C35.73 17.23 35.76 17.19 35.78 17.15L40.37 8.9H47L40.76 19.28L40.79 17.51C41.23 17.23 41.7 17.03 42.2 16.91C42.72 16.79 43.24 16.73 43.76 16.73C45.06 16.73 46.27 17.05 47.39 17.69C48.53 18.33 49.43 19.25 50.09 20.45C50.77 21.63 51.11 23 51.11 24.56C51.11 26.24 50.72 27.72 49.94 29C49.18 30.28 48.11 31.27 46.73 31.97C45.37 32.67 43.82 33.02 42.08 33.02ZM42.17 27.98C42.79 27.98 43.34 27.85 43.82 27.59C44.32 27.31 44.71 26.93 44.99 26.45C45.27 25.97 45.41 25.42 45.41 24.8C45.41 24.2 45.27 23.67 44.99 23.21C44.73 22.75 44.36 22.39 43.88 22.13C43.42 21.87 42.89 21.74 42.29 21.74C41.63 21.74 41.03 21.87 40.49 22.13C39.97 22.39 39.56 22.75 39.26 23.21C38.98 23.67 38.84 24.2 38.84 24.8C38.84 25.42 38.98 25.97 39.26 26.45C39.54 26.93 39.93 27.31 40.43 27.59C40.95 27.85 41.53 27.98 42.17 27.98ZM41 17.3L41.63 16.4L42.89 17.27L42.23 18.17L41 17.3ZM56.9012 33.02C55.9412 33.02 55.1512 32.71 54.5312 32.09C53.9312 31.47 53.6312 30.68 53.6312 29.72C53.6312 28.76 53.9312 27.97 54.5312 27.35C55.1512 26.73 55.9412 26.42 56.9012 26.42C57.8812 26.42 58.6812 26.73 59.3012 27.35C59.9212 27.97 60.2312 28.76 60.2312 29.72C60.2312 30.68 59.9212 31.47 59.3012 32.09C58.6812 32.71 57.8812 33.02 56.9012 33.02ZM65.263 32.6V15.11L59.863 17.9V12.11L66.133 8.9H70.843V32.6H65.263Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1,4 @@
<svg width="82" height="40" viewBox="0 0 82 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M42.08 33.02C40.38 33.02 38.85 32.67 37.49 31.97C36.13 31.25 35.06 30.27 34.28 29.03C33.52 27.77 33.14 26.36 33.14 24.8C33.14 23.86 33.23 23.03 33.41 22.31C33.59 21.57 33.84 20.87 34.16 20.21C34.48 19.53 34.97 18.59 35.63 17.39C35.65 17.35 35.67 17.31 35.69 17.27C35.73 17.23 35.76 17.19 35.78 17.15L40.37 8.9H47L40.76 19.28L40.79 17.51C41.23 17.23 41.7 17.03 42.2 16.91C42.72 16.79 43.24 16.73 43.76 16.73C45.06 16.73 46.27 17.05 47.39 17.69C48.53 18.33 49.43 19.25 50.09 20.45C50.77 21.63 51.11 23 51.11 24.56C51.11 26.24 50.72 27.72 49.94 29C49.18 30.28 48.11 31.27 46.73 31.97C45.37 32.67 43.82 33.02 42.08 33.02ZM42.17 27.98C42.79 27.98 43.34 27.85 43.82 27.59C44.32 27.31 44.71 26.93 44.99 26.45C45.27 25.97 45.41 25.42 45.41 24.8C45.41 24.2 45.27 23.67 44.99 23.21C44.73 22.75 44.36 22.39 43.88 22.13C43.42 21.87 42.89 21.74 42.29 21.74C41.63 21.74 41.03 21.87 40.49 22.13C39.97 22.39 39.56 22.75 39.26 23.21C38.98 23.67 38.84 24.2 38.84 24.8C38.84 25.42 38.98 25.97 39.26 26.45C39.54 26.93 39.93 27.31 40.43 27.59C40.95 27.85 41.53 27.98 42.17 27.98ZM41 17.3L41.63 16.4L42.89 17.27L42.23 18.17L41 17.3ZM56.9012 33.02C55.9412 33.02 55.1512 32.71 54.5312 32.09C53.9312 31.47 53.6312 30.68 53.6312 29.72C53.6312 28.76 53.9312 27.97 54.5312 27.35C55.1512 26.73 55.9412 26.42 56.9012 26.42C57.8812 26.42 58.6812 26.73 59.3012 27.35C59.9212 27.97 60.2312 28.76 60.2312 29.72C60.2312 30.68 59.9212 31.47 59.3012 32.09C58.6812 32.71 57.8812 33.02 56.9012 33.02ZM71.1821 13.58C70.3221 13.58 69.5821 13.84 68.9621 14.36C68.3421 14.86 67.8121 15.63 67.3721 16.67L63.0221 13.7C63.6821 12.22 64.7021 10.99 66.0821 10.01C67.4621 9.01 69.2221 8.5 71.3621 8.48C73.0221 8.48 74.4521 8.79 75.6521 9.41C76.8721 10.01 77.8021 10.87 78.4421 11.99C79.0821 13.09 79.4021 14.36 79.4021 15.8C79.4021 17.08 79.0921 18.31 78.4721 19.49C77.8721 20.67 77.0021 21.85 75.8621 23.03L68.9921 30.17L67.7921 27.38H79.8821V32.6H63.0521V28.91L71.5121 20.24C72.3321 19.38 72.9021 18.64 73.2221 18.02C73.5421 17.4 73.7021 16.76 73.7021 16.1C73.7021 15.34 73.4821 14.73 73.0421 14.27C72.6221 13.81 72.0021 13.58 71.1821 13.58Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -0,0 +1,4 @@
<svg width="81" height="40" viewBox="0 0 81 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M42.08 33.02C40.38 33.02 38.85 32.67 37.49 31.97C36.13 31.25 35.06 30.27 34.28 29.03C33.52 27.77 33.14 26.36 33.14 24.8C33.14 23.86 33.23 23.03 33.41 22.31C33.59 21.57 33.84 20.87 34.16 20.21C34.48 19.53 34.97 18.59 35.63 17.39C35.65 17.35 35.67 17.31 35.69 17.27C35.73 17.23 35.76 17.19 35.78 17.15L40.37 8.9H47L40.76 19.28L40.79 17.51C41.23 17.23 41.7 17.03 42.2 16.91C42.72 16.79 43.24 16.73 43.76 16.73C45.06 16.73 46.27 17.05 47.39 17.69C48.53 18.33 49.43 19.25 50.09 20.45C50.77 21.63 51.11 23 51.11 24.56C51.11 26.24 50.72 27.72 49.94 29C49.18 30.28 48.11 31.27 46.73 31.97C45.37 32.67 43.82 33.02 42.08 33.02ZM42.17 27.98C42.79 27.98 43.34 27.85 43.82 27.59C44.32 27.31 44.71 26.93 44.99 26.45C45.27 25.97 45.41 25.42 45.41 24.8C45.41 24.2 45.27 23.67 44.99 23.21C44.73 22.75 44.36 22.39 43.88 22.13C43.42 21.87 42.89 21.74 42.29 21.74C41.63 21.74 41.03 21.87 40.49 22.13C39.97 22.39 39.56 22.75 39.26 23.21C38.98 23.67 38.84 24.2 38.84 24.8C38.84 25.42 38.98 25.97 39.26 26.45C39.54 26.93 39.93 27.31 40.43 27.59C40.95 27.85 41.53 27.98 42.17 27.98ZM41 17.3L41.63 16.4L42.89 17.27L42.23 18.17L41 17.3ZM56.9012 33.02C55.9412 33.02 55.1512 32.71 54.5312 32.09C53.9312 31.47 53.6312 30.68 53.6312 29.72C53.6312 28.76 53.9312 27.97 54.5312 27.35C55.1512 26.73 55.9412 26.42 56.9012 26.42C57.8812 26.42 58.6812 26.73 59.3012 27.35C59.9212 27.97 60.2312 28.76 60.2312 29.72C60.2312 30.68 59.9212 31.47 59.3012 32.09C58.6812 32.71 57.8812 33.02 56.9012 33.02ZM70.779 33.02C68.679 33.02 66.929 32.53 65.529 31.55C64.129 30.57 63.109 29.32 62.469 27.8L66.819 24.86C67.239 25.9 67.759 26.68 68.379 27.2C68.999 27.72 69.779 27.98 70.719 27.98C71.319 27.98 71.849 27.87 72.309 27.65C72.789 27.41 73.149 27.07 73.389 26.63C73.649 26.19 73.779 25.67 73.779 25.07C73.779 24.47 73.649 23.95 73.389 23.51C73.149 23.05 72.799 22.7 72.339 22.46C71.899 22.2 71.379 22.06 70.779 22.04C70.379 22.02 70.019 22.07 69.699 22.19C69.399 22.29 69.019 22.48 68.559 22.76L65.499 18.95L73.689 11.39L75.009 14.12H63.369V8.9H78.219V13.43L72.849 17.81L72.909 17.96C74.069 17.96 75.139 18.27 76.119 18.89C77.099 19.49 77.869 20.34 78.429 21.44C79.009 22.52 79.299 23.73 79.299 25.07C79.299 26.61 78.929 27.98 78.189 29.18C77.469 30.38 76.459 31.32 75.159 32C73.879 32.68 72.419 33.02 70.779 33.02Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -0,0 +1,4 @@
<svg width="82" height="40" viewBox="0 0 82 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M42.08 33.02C40.38 33.02 38.85 32.67 37.49 31.97C36.13 31.25 35.06 30.27 34.28 29.03C33.52 27.77 33.14 26.36 33.14 24.8C33.14 23.86 33.23 23.03 33.41 22.31C33.59 21.57 33.84 20.87 34.16 20.21C34.48 19.53 34.97 18.59 35.63 17.39C35.65 17.35 35.67 17.31 35.69 17.27C35.73 17.23 35.76 17.19 35.78 17.15L40.37 8.9H47L40.76 19.28L40.79 17.51C41.23 17.23 41.7 17.03 42.2 16.91C42.72 16.79 43.24 16.73 43.76 16.73C45.06 16.73 46.27 17.05 47.39 17.69C48.53 18.33 49.43 19.25 50.09 20.45C50.77 21.63 51.11 23 51.11 24.56C51.11 26.24 50.72 27.72 49.94 29C49.18 30.28 48.11 31.27 46.73 31.97C45.37 32.67 43.82 33.02 42.08 33.02ZM42.17 27.98C42.79 27.98 43.34 27.85 43.82 27.59C44.32 27.31 44.71 26.93 44.99 26.45C45.27 25.97 45.41 25.42 45.41 24.8C45.41 24.2 45.27 23.67 44.99 23.21C44.73 22.75 44.36 22.39 43.88 22.13C43.42 21.87 42.89 21.74 42.29 21.74C41.63 21.74 41.03 21.87 40.49 22.13C39.97 22.39 39.56 22.75 39.26 23.21C38.98 23.67 38.84 24.2 38.84 24.8C38.84 25.42 38.98 25.97 39.26 26.45C39.54 26.93 39.93 27.31 40.43 27.59C40.95 27.85 41.53 27.98 42.17 27.98ZM41 17.3L41.63 16.4L42.89 17.27L42.23 18.17L41 17.3ZM56.9012 33.02C55.9412 33.02 55.1512 32.71 54.5312 32.09C53.9312 31.47 53.6312 30.68 53.6312 29.72C53.6312 28.76 53.9312 27.97 54.5312 27.35C55.1512 26.73 55.9412 26.42 56.9012 26.42C57.8812 26.42 58.6812 26.73 59.3012 27.35C59.9212 27.97 60.2312 28.76 60.2312 29.72C60.2312 30.68 59.9212 31.47 59.3012 32.09C58.6812 32.71 57.8812 33.02 56.9012 33.02ZM77.8583 32.6H72.2783V11.21H74.3483L68.4383 23.24H80.7683V28.46H61.9583V25.04L70.1483 8.9H77.8583V32.6Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -0,0 +1,4 @@
<svg width="81" height="40" viewBox="0 0 81 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7379 0L10.6008 14.9453V0H2.65247V0.0144333H0V2.58624H2.6524V31H10.6009L36.9964 0.0144333L23.7379 0Z" fill="#334155"/>
<path d="M42.08 33.02C40.38 33.02 38.85 32.67 37.49 31.97C36.13 31.25 35.06 30.27 34.28 29.03C33.52 27.77 33.14 26.36 33.14 24.8C33.14 23.86 33.23 23.03 33.41 22.31C33.59 21.57 33.84 20.87 34.16 20.21C34.48 19.53 34.97 18.59 35.63 17.39C35.65 17.35 35.67 17.31 35.69 17.27C35.73 17.23 35.76 17.19 35.78 17.15L40.37 8.9H47L40.76 19.28L40.79 17.51C41.23 17.23 41.7 17.03 42.2 16.91C42.72 16.79 43.24 16.73 43.76 16.73C45.06 16.73 46.27 17.05 47.39 17.69C48.53 18.33 49.43 19.25 50.09 20.45C50.77 21.63 51.11 23 51.11 24.56C51.11 26.24 50.72 27.72 49.94 29C49.18 30.28 48.11 31.27 46.73 31.97C45.37 32.67 43.82 33.02 42.08 33.02ZM42.17 27.98C42.79 27.98 43.34 27.85 43.82 27.59C44.32 27.31 44.71 26.93 44.99 26.45C45.27 25.97 45.41 25.42 45.41 24.8C45.41 24.2 45.27 23.67 44.99 23.21C44.73 22.75 44.36 22.39 43.88 22.13C43.42 21.87 42.89 21.74 42.29 21.74C41.63 21.74 41.03 21.87 40.49 22.13C39.97 22.39 39.56 22.75 39.26 23.21C38.98 23.67 38.84 24.2 38.84 24.8C38.84 25.42 38.98 25.97 39.26 26.45C39.54 26.93 39.93 27.31 40.43 27.59C40.95 27.85 41.53 27.98 42.17 27.98ZM41 17.3L41.63 16.4L42.89 17.27L42.23 18.17L41 17.3ZM56.9012 33.02C55.9412 33.02 55.1512 32.71 54.5312 32.09C53.9312 31.47 53.6312 30.68 53.6312 29.72C53.6312 28.76 53.9312 27.97 54.5312 27.35C55.1512 26.73 55.9412 26.42 56.9012 26.42C57.8812 26.42 58.6812 26.73 59.3012 27.35C59.9212 27.97 60.2312 28.76 60.2312 29.72C60.2312 30.68 59.9212 31.47 59.3012 32.09C58.6812 32.71 57.8812 33.02 56.9012 33.02ZM67.0541 25.1C67.4541 26.06 67.9641 26.78 68.5841 27.26C69.2241 27.74 69.9641 27.98 70.8041 27.98C71.4641 27.98 72.0341 27.86 72.5141 27.62C73.0141 27.38 73.3941 27.04 73.6541 26.6C73.9341 26.14 74.0741 25.6 74.0741 24.98C74.0741 24.34 73.9441 23.79 73.6841 23.33C73.4241 22.87 73.0441 22.52 72.5441 22.28C72.0641 22.04 71.4841 21.92 70.8041 21.92C70.0841 21.92 69.4341 22.1 68.8541 22.46C68.2941 22.82 67.8641 23.35 67.5641 24.05L62.8541 21.92L63.8441 8.9H78.4841V13.94H69.0941L68.6141 18.86L66.9041 18.95C67.4841 18.31 68.2341 17.82 69.1541 17.48C70.0741 17.12 71.0241 16.94 72.0041 16.94C73.5641 16.94 74.9141 17.27 76.0541 17.93C77.1941 18.57 78.0641 19.49 78.6641 20.69C79.2841 21.87 79.5941 23.25 79.5941 24.83C79.5941 26.51 79.2341 27.97 78.5141 29.21C77.7941 30.43 76.7541 31.37 75.3941 32.03C74.0541 32.69 72.4641 33.02 70.6241 33.02C68.7441 33.02 67.0841 32.6 65.6441 31.76C64.2241 30.9 63.1841 29.7 62.5241 28.16L67.0541 25.1Z" fill="#334155"/>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -0,0 +1,16 @@
<svg width="89" height="23" viewBox="0 0 89 23" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.348347 4.8063C0.20152 4.59611 0.351906 4.30762 0.608304 4.30762H20.4615V22.6153H0.608302C0.351905 22.6153 0.20152 22.3268 0.348347 22.1166L5.63317 14.551C6.0903 13.8966 6.0903 13.0264 5.63317 12.3719L0.348347 4.8063Z" fill="#B8C8E1"/>
<path d="M20.4616 22.6153L9.69238 18.3076H20.4616V22.6153Z" fill="#A8B7CE"/>
<path d="M87.9603 4.8063C88.1071 4.59611 87.9567 4.30762 87.7003 4.30762H67.8476V22.615H87.7003C87.9567 22.615 88.1071 22.3265 87.9603 22.1163L82.6756 14.5508C82.2185 13.8964 82.2185 13.0262 82.6756 12.3718L87.9603 4.8063Z" fill="#B8C8E1"/>
<path d="M67.847 22.6153L78.6162 18.3076H67.847V22.6153Z" fill="#A8B7CE"/>
<path d="M9.69238 1.2684C9.69238 0.567881 10.2603 0 10.9608 0H77.3471C78.0476 0 78.6155 0.56788 78.6155 1.26839V18.3077H9.69238V1.2684Z" fill="url(#paint0_linear_905_9852)"/>
<defs>
<linearGradient id="paint0_linear_905_9852" x1="30.6826" y1="7.31778e-07" x2="66.007" y2="31.6166" gradientUnits="userSpaceOnUse">
<stop stop-color="#CCDCF3"/>
<stop offset="0.27474" stop-color="#D3E0F4"/>
<stop offset="0.526504" stop-color="#DBE9FD"/>
<stop offset="0.82983" stop-color="#D3E0F4"/>
<stop offset="1" stop-color="#C6D5EC"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -19,15 +19,15 @@ export const AchievementTypeDescriptions: Record<AchievementType, string> = {
*/ */
export const AchievementConditionTypeDescriptions: Record<AchievementConditionType, string> = { export const AchievementConditionTypeDescriptions: Record<AchievementConditionType, string> = {
[AchievementConditionType.LEARNING_TIME]: '学习时长', [AchievementConditionType.LEARNING_TIME]: '学习时长',
[AchievementConditionType.RESOURCE_VIEW_COUNT]: '浏览资源数量', // [AchievementConditionType.RESOURCE_VIEW_COUNT]: '浏览资源数量',
[AchievementConditionType.COURSE_COMPLETE_COUNT]: '完成课程数量', // [AchievementConditionType.COURSE_COMPLETE_COUNT]: '完成课程数量',
[AchievementConditionType.CONTINUOUS_LOGIN_DAYS]: '连续登录天数', // [AchievementConditionType.CONTINUOUS_LOGIN_DAYS]: '连续登录天数',
[AchievementConditionType.RESOURCE_COLLECT_COUNT]: '收藏资源数量', // [AchievementConditionType.RESOURCE_COLLECT_COUNT]: '收藏资源数量',
[AchievementConditionType.TASK_COMPLETE_COUNT]: '完成任务数量', // [AchievementConditionType.TASK_COMPLETE_COUNT]: '完成任务数量',
[AchievementConditionType.POINTS_EARNED]: '获得积分数量', // [AchievementConditionType.POINTS_EARNED]: '获得积分数量',
[AchievementConditionType.COMMENT_COUNT]: '发表评论数量', // [AchievementConditionType.COMMENT_COUNT]: '发表评论数量',
[AchievementConditionType.CHAPTER_COMPLETE_COUNT]: '完成章节数量', // [AchievementConditionType.CHAPTER_COMPLETE_COUNT]: '完成章节数量',
[AchievementConditionType.TOTAL_LOGIN_DAYS]: '累计登录天数' // [AchievementConditionType.TOTAL_LOGIN_DAYS]: '累计登录天数'
}; };
/** /**
@@ -36,27 +36,27 @@ export const AchievementConditionTypeDescriptions: Record<AchievementConditionTy
export const AchievementEventTypeDescriptions: Record<AchievementEventType, string> = { export const AchievementEventTypeDescriptions: Record<AchievementEventType, string> = {
// 学习相关事件 // 学习相关事件
[AchievementEventType.LEARNING_TIME_UPDATED]: '学习时长更新', [AchievementEventType.LEARNING_TIME_UPDATED]: '学习时长更新',
[AchievementEventType.COURSE_COMPLETED]: '课程完成', // [AchievementEventType.COURSE_COMPLETED]: '课程完成',
[AchievementEventType.COURSE_STARTED]: '开始学习课程', // [AchievementEventType.COURSE_STARTED]: '开始学习课程',
[AchievementEventType.CHAPTER_COMPLETED]: '章节完成', // [AchievementEventType.CHAPTER_COMPLETED]: '章节完成',
// 资源相关事件 // // 资源相关事件
[AchievementEventType.RESOURCE_VIEWED]: '浏览资源', // [AchievementEventType.RESOURCE_VIEWED]: '浏览资源',
[AchievementEventType.RESOURCE_COLLECTED]: '收藏资源', // [AchievementEventType.RESOURCE_COLLECTED]: '收藏资源',
[AchievementEventType.RESOURCE_SHARED]: '分享资源', // [AchievementEventType.RESOURCE_SHARED]: '分享资源',
// 任务相关事件 // // 任务相关事件
[AchievementEventType.TASK_COMPLETED]: '任务完成', // [AchievementEventType.TASK_COMPLETED]: '任务完成',
[AchievementEventType.TASK_ITEM_COMPLETED]: '任务项完成', // [AchievementEventType.TASK_ITEM_COMPLETED]: '任务项完成',
// 互动相关事件 // // 互动相关事件
[AchievementEventType.COMMENT_POSTED]: '发表评论', // [AchievementEventType.COMMENT_POSTED]: '发表评论',
[AchievementEventType.LIKE_GIVEN]: '点赞', // [AchievementEventType.LIKE_GIVEN]: '点赞',
// 登录相关事件 // // 登录相关事件
[AchievementEventType.USER_LOGIN]: '用户登录', // [AchievementEventType.USER_LOGIN]: '用户登录',
[AchievementEventType.CONTINUOUS_LOGIN]: '连续登录', // [AchievementEventType.CONTINUOUS_LOGIN]: '连续登录',
// 积分相关事件 // // 积分相关事件
[AchievementEventType.POINTS_EARNED_EVENT]: '获得积分', // [AchievementEventType.POINTS_EARNED_EVENT]: '获得积分',
// 测试相关事件 // // 测试相关事件
[AchievementEventType.TEST_PASSED]: '测试通过', // [AchievementEventType.TEST_PASSED]: '测试通过',
[AchievementEventType.TEST_PERFECT_SCORE]: '测试满分' // [AchievementEventType.TEST_PERFECT_SCORE]: '测试满分'
}; };
/** /**
@@ -160,24 +160,24 @@ export class AchievementEnumHelper {
switch (conditionType) { switch (conditionType) {
case AchievementConditionType.LEARNING_TIME: case AchievementConditionType.LEARNING_TIME:
return `${typeDesc}达到${conditionValue/60}分钟`; return `${typeDesc}达到${conditionValue/60}分钟`;
case AchievementConditionType.RESOURCE_VIEW_COUNT: // case AchievementConditionType.RESOURCE_VIEW_COUNT:
return `${typeDesc}达到${conditionValue}`; // return `${typeDesc}达到${conditionValue}个`;
case AchievementConditionType.COURSE_COMPLETE_COUNT: // case AchievementConditionType.COURSE_COMPLETE_COUNT:
return `${typeDesc}达到${conditionValue}`; // return `${typeDesc}达到${conditionValue}门`;
case AchievementConditionType.CONTINUOUS_LOGIN_DAYS: // case AchievementConditionType.CONTINUOUS_LOGIN_DAYS:
return `${typeDesc}达到${conditionValue}`; // return `${typeDesc}达到${conditionValue}天`;
case AchievementConditionType.RESOURCE_COLLECT_COUNT: // case AchievementConditionType.RESOURCE_COLLECT_COUNT:
return `${typeDesc}达到${conditionValue}`; // return `${typeDesc}达到${conditionValue}个`;
case AchievementConditionType.TASK_COMPLETE_COUNT: // case AchievementConditionType.TASK_COMPLETE_COUNT:
return `${typeDesc}达到${conditionValue}`; // return `${typeDesc}达到${conditionValue}个`;
case AchievementConditionType.POINTS_EARNED: // case AchievementConditionType.POINTS_EARNED:
return `${typeDesc}达到${conditionValue}`; // return `${typeDesc}达到${conditionValue}分`;
case AchievementConditionType.COMMENT_COUNT: // case AchievementConditionType.COMMENT_COUNT:
return `${typeDesc}达到${conditionValue}`; // return `${typeDesc}达到${conditionValue}条`;
case AchievementConditionType.CHAPTER_COMPLETE_COUNT: // case AchievementConditionType.CHAPTER_COMPLETE_COUNT:
return `${typeDesc}达到${conditionValue}`; // return `${typeDesc}达到${conditionValue}个`;
case AchievementConditionType.TOTAL_LOGIN_DAYS: // case AchievementConditionType.TOTAL_LOGIN_DAYS:
return `${typeDesc}达到${conditionValue}`; // return `${typeDesc}达到${conditionValue}天`;
default: default:
return `${typeDesc}达到${conditionValue}`; return `${typeDesc}达到${conditionValue}`;
} }

View File

@@ -239,24 +239,24 @@ export enum AchievementType {
export enum AchievementConditionType { export enum AchievementConditionType {
/** 学习时长(分钟) */ /** 学习时长(分钟) */
LEARNING_TIME = 1, LEARNING_TIME = 1,
/** 浏览资源数量 */ // /** 浏览资源数量 */
RESOURCE_VIEW_COUNT = 2, // RESOURCE_VIEW_COUNT = 2,
/** 完成课程数量 */ // /** 完成课程数量 */
COURSE_COMPLETE_COUNT = 3, // COURSE_COMPLETE_COUNT = 3,
/** 连续登录天数 */ // /** 连续登录天数 */
CONTINUOUS_LOGIN_DAYS = 4, // CONTINUOUS_LOGIN_DAYS = 4,
/** 收藏资源数量 */ // /** 收藏资源数量 */
RESOURCE_COLLECT_COUNT = 5, // RESOURCE_COLLECT_COUNT = 5,
/** 完成任务数量 */ // /** 完成任务数量 */
TASK_COMPLETE_COUNT = 6, // TASK_COMPLETE_COUNT = 6,
/** 获得积分数量 */ // /** 获得积分数量 */
POINTS_EARNED = 7, // POINTS_EARNED = 7,
/** 发表评论数量 */ // /** 发表评论数量 */
COMMENT_COUNT = 8, // COMMENT_COUNT = 8,
/** 完成章节数量 */ // /** 完成章节数量 */
CHAPTER_COMPLETE_COUNT = 9, // CHAPTER_COMPLETE_COUNT = 9,
/** 累计登录天数 */ // /** 累计登录天数 */
TOTAL_LOGIN_DAYS = 10 // TOTAL_LOGIN_DAYS = 10
} }
/** /**
@@ -266,46 +266,46 @@ export enum AchievementEventType {
// ==================== 学习相关事件 ==================== // ==================== 学习相关事件 ====================
/** 学习时长更新 */ /** 学习时长更新 */
LEARNING_TIME_UPDATED = 'learning_time_updated', LEARNING_TIME_UPDATED = 'learning_time_updated',
/** 课程完成 */ // /** 课程完成 */
COURSE_COMPLETED = 'course_completed', // COURSE_COMPLETED = 'course_completed',
/** 开始学习课程 */ // /** 开始学习课程 */
COURSE_STARTED = 'course_started', // COURSE_STARTED = 'course_started',
/** 章节完成 */ // /** 章节完成 */
CHAPTER_COMPLETED = 'chapter_completed', // CHAPTER_COMPLETED = 'chapter_completed',
// ==================== 资源相关事件 ==================== // // ==================== 资源相关事件 ====================
/** 浏览资源 */ // /** 浏览资源 */
RESOURCE_VIEWED = 'resource_viewed', // RESOURCE_VIEWED = 'resource_viewed',
/** 收藏资源 */ // /** 收藏资源 */
RESOURCE_COLLECTED = 'resource_collected', // RESOURCE_COLLECTED = 'resource_collected',
/** 分享资源 */ // /** 分享资源 */
RESOURCE_SHARED = 'resource_shared', // RESOURCE_SHARED = 'resource_shared',
// ==================== 任务相关事件 ==================== // // ==================== 任务相关事件 ====================
/** 任务完成 */ // /** 任务完成 */
TASK_COMPLETED = 'task_completed', // TASK_COMPLETED = 'task_completed',
/** 任务项完成 */ // /** 任务项完成 */
TASK_ITEM_COMPLETED = 'task_item_completed', // TASK_ITEM_COMPLETED = 'task_item_completed',
// ==================== 互动相关事件 ==================== // // ==================== 互动相关事件 ====================
/** 发表评论 */ // /** 发表评论 */
COMMENT_POSTED = 'comment_posted', // COMMENT_POSTED = 'comment_posted',
/** 点赞 */ // /** 点赞 */
LIKE_GIVEN = 'like_given', // LIKE_GIVEN = 'like_given',
// ==================== 登录相关事件 ==================== // // ==================== 登录相关事件 ====================
/** 用户登录 */ // /** 用户登录 */
USER_LOGIN = 'user_login', // USER_LOGIN = 'user_login',
/** 连续登录 */ // /** 连续登录 */
CONTINUOUS_LOGIN = 'continuous_login', // CONTINUOUS_LOGIN = 'continuous_login',
// ==================== 积分相关事件 ==================== // // ==================== 积分相关事件 ====================
/** 获得积分 */ // /** 获得积分 */
POINTS_EARNED_EVENT = 'points_earned', // POINTS_EARNED_EVENT = 'points_earned',
// ==================== 测试相关事件 ==================== // // ==================== 测试相关事件 ====================
/** 测试通过 */ // /** 测试通过 */
TEST_PASSED = 'test_passed', // TEST_PASSED = 'test_passed',
/** 测试满分 */ // /** 测试满分 */
TEST_PERFECT_SCORE = 'test_perfect_score' // TEST_PERFECT_SCORE = 'test_perfect_score'
} }

View File

@@ -65,3 +65,23 @@ export function getLevelIconUrl(level = 1): string {
return getIconUrl(`v${validLevel}-icon.svg`, 'achievement'); return getIconUrl(`v${validLevel}-icon.svg`, 'achievement');
} }
/**
* 根据等级获取等级图标URL
* @param level 等级1-6
* @returns 等级图标URL
*/
export function getLevelWordIconUrl(level = 1): string {
const validLevel = Math.max(1, Math.min(6, level)); // 限制在1-6之间
return getIconUrl(`v${validLevel}.svg`, 'achievement');
}
export function getLevelStarIconUrl(level = 1): string {
// 根据小数点判断 无小数点是v0-star.svg 有小数点是0.5 是v5-star.svg
// 转换浮点数
const floatLevel = parseFloat(level.toString());
// 小数点后的值 .1到.5
const decimal = floatLevel % 1;
const val = decimal * 10;
return getIconUrl(`v${val}-star.svg`, 'achievement');
}

View File

@@ -1,124 +1,56 @@
<template> <template>
<div class="my-achievements"> <div class="my-achievements">
<div class="achievements-header"> <div class="level-achieve">
<h2>我的成就</h2> <!-- 用户当前的等级成就和下级成就进度 -->
<div class="achievement-stats"> <h1>我的等级</h1>
<div class="stat-item"> <div class="level">
<span class="stat-label">已获得</span> <!-- 合并图标 -->
<span class="stat-value">{{ earnedCount }}</span> <div class="level-icons">
<span class="stat-total"> / {{ totalCount }}</span> <!-- 星星图标 -->
<img class="level-star" :src="currentLevelStarIconUrl" alt="level-star" />
<!-- 等级图标 -->
<img class="level-badge" :src="currentLevelIconUrl" alt="level-icon" />
</div> </div>
<div class="stat-item"> <!-- 等级文字图标 -->
<span class="stat-label">完成率</span> <img class="level-word" :src="currentLevelWordIconUrl" alt="level-word" />
<span class="stat-value">{{ completionRate }}%</span> <!-- 距离下级时间 -->
</div> <span class="next-tip">{{ nextDeltaText }}</span>
</div>
</div>
<!-- 成就类型筛选 -->
<div class="filter-tabs">
<el-radio-group v-model="selectedType" @change="filterAchievements">
<el-radio-button :label="undefined">全部</el-radio-button>
<el-radio-button v-for="option in achievementTypeOptions" :key="option.value" :label="option.value">
{{ option.label }}
</el-radio-button>
</el-radio-group>
<el-checkbox v-model="showOnlyEarned" @change="filterAchievements">
仅显示已获得
</el-checkbox>
</div>
<!-- 加载状态 -->
<div v-if="loading" class="loading-container">
<el-skeleton :rows="3" animated />
</div>
<!-- 成就网格 -->
<div v-else class="achievements-grid">
<div class="achievement-item" v-for="achievement in filteredAchievements" :key="achievement.achievementID"
:class="{ earned: achievement.obtained, locked: !achievement.obtained }">
<div class="achievement-icon">
<el-image :src="getIconUrl(achievement.icon)" :alt="achievement.name" fit="contain">
<template #error>
<div class="image-placeholder">
<el-icon>
<Trophy />
</el-icon>
</div>
</template>
</el-image>
<div class="achievement-badge" v-if="achievement.obtained">
<el-icon>
<Check />
</el-icon>
</div>
<div class="achievement-level" v-if="achievement.level">
Lv.{{ achievement.level }}
</div>
</div>
<div class="achievement-info">
<div class="achievement-header">
<h3>{{ achievement.name }}</h3>
<el-tag :type="achievement.type === 1 ? 'success' : 'primary'" size="small">
{{ getAchievementTypeLabel(achievement.type) }}
</el-tag>
</div>
<p class="achievement-description">{{ achievement.description }}</p>
<!-- 条件说明 -->
<div class="achievement-condition">
<el-icon>
<InfoFilled />
</el-icon>
<span>{{ formatConditionValue(achievement.conditionType, achievement.conditionValue) }}</span>
</div>
<!-- 进度条 --> <!-- 进度条 -->
<div class="achievement-progress" v-if="!achievement.obtained"> <el-progress :percentage="nextProgress" :color="progressColor" :stroke-width="12" />
<div class="progress-info"> <div class="level-range">
<span class="progress-label">进度</span> <!-- 起始等级 -->
<span class="progress-text"> <span class="start-level">Lv.{{ currentLevelDisplay }}</span>
{{ achievement.currentValue || 0 }} / {{ achievement.targetValue || achievement.conditionValue }} <!-- 下级等级 -->
</span> <span class="next-level">{{ nextLevelDisplay }}</span>
</div>
<el-progress :percentage="achievement.progressPercentage || 0" :color="progressColor"
:show-text="false" />
</div>
<!-- 获得信息 -->
<div class="achievement-footer" v-if="achievement.obtained">
<div class="achievement-date">
<el-icon>
<Calendar />
</el-icon>
<span>{{ formatDate(achievement.obtainTime) }}</span>
</div>
<div class="achievement-points" v-if="achievement.points">
<el-icon>
<Star />
</el-icon>
<span>+{{ achievement.points }} 积分</span>
</div> </div>
</div> </div>
</div>
<!-- 未获得时显示积分奖励 --> <div class="badge-achieve">
<div class="achievement-reward" v-else-if="achievement.points"> <!-- 用户已获得的勋章成就 -->
<el-icon> <h1>我的勋章</h1>
<Present /> <!-- 勋章列表 -->
</el-icon> <div class="achievement-list">
<span>奖励 {{ achievement.points }} 积分</span> <!-- 单个勋章 -->
<div
v-for="(a, idx) in filteredBadgeAchievements"
:key="a.achievementID || idx"
class="achievement-item"
:class="{ obtained: a.obtained }"
>
<div class="achv-name-wrap">
<!-- span在img里面渲染效果 -->
<img src="@/assets/imgs/achievement-name.svg"/>
<span class="achv-name">{{ a.name }}</span>
</div>
<!-- 成就图标 -->
<img class="achv-icon" :src="getIconUrl(a.icon)" alt="achievement-icon"/>
<!-- 成就条件 -->
<span class="achv-cond">{{ formatConditionValue(a.conditionType, a.conditionValue) }}</span>
</div> </div>
</div> </div>
</div> </div>
</div> </div>
<!-- 空状态 -->
<el-empty v-if="!loading && filteredAchievements.length === 0" description="暂无成就数据" />
</div> </div>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
@@ -128,8 +60,10 @@ import { Trophy, Check, InfoFilled, Calendar, Star, Present } from '@element-plu
import { achievementApi } from '@/apis/achievement'; import { achievementApi } from '@/apis/achievement';
import type { AchievementVO } from '@/types'; import type { AchievementVO } from '@/types';
import { AchievementEnumHelper } from '@/types/enums/achievement-enums'; import { AchievementEnumHelper } from '@/types/enums/achievement-enums';
import { getAchievementIconUrl } from '@/utils/iconUtils'; import { AchievementType } from '@/types/enums';
import { getAchievementIconUrl, getLevelIconUrl, getLevelWordIconUrl, getLevelStarIconUrl } from '@/utils/iconUtils';
import { UserCenterLayout } from '@/views/user/user-center'; import { UserCenterLayout } from '@/views/user/user-center';
// 响应式数据 // 响应式数据
const loading = ref(false); const loading = ref(false);
const achievements = ref<AchievementVO[]>([]); const achievements = ref<AchievementVO[]>([]);
@@ -162,21 +96,77 @@ const completionRate = computed(() => {
return Math.round((earnedCount.value / totalCount.value) * 100); return Math.round((earnedCount.value / totalCount.value) * 100);
}); });
// 筛选后的成就列表 // 等级类成就
const filteredAchievements = computed(() => { const levelAchievements = computed(() => {
let result = achievements.value; return achievements.value.filter(a => a.type === AchievementType.LEVEL);
});
// 按类型筛选 // 当前等级成就:优先已获得的最高等级,否则取最低等级
if (selectedType.value !== undefined) { const currentLevelAchievement = computed<AchievementVO | undefined>(() => {
result = result.filter(a => a.type === selectedType.value); if (levelAchievements.value.length === 0) return undefined;
const obtainedLevels = levelAchievements.value
.filter(a => a.obtained)
.sort((a, b) => (b.level || 0) - (a.level || 0));
if (obtainedLevels.length > 0) {
return obtainedLevels[0];
} }
// 仅显示已获得 // 没有已获得等级时,取等级最低的作为当前目标
return [...levelAchievements.value].sort((a, b) => (a.level || 0) - (b.level || 0))[0];
});
// 下一级等级成就:当前等级的下一个等级
const nextLevelAchievement = computed<AchievementVO | undefined>(() => {
if (!currentLevelAchievement.value) return undefined;
const currentLevel = currentLevelAchievement.value.level || 1;
const sortedLevels = [...levelAchievements.value].sort((a, b) => (a.level || 0) - (b.level || 0));
return sortedLevels.find(a => (a.level || 0) > currentLevel);
});
// 当前等级数字与图标
const currentLevel = computed(() => currentLevelAchievement.value?.level ?? 1);
const currentLevelIconUrl = computed(() => getLevelIconUrl(currentLevel.value));
const currentLevelWordIconUrl = computed(() => getLevelWordIconUrl(currentLevel.value));
const currentLevelStarIconUrl = computed(() => getLevelStarIconUrl(currentLevel.value));
// 展示用文案与数值
const currentLevelDisplay = computed(() => formatLevelNumber(currentLevelAchievement.value?.level ?? 1));
const nextLevelDisplay = computed(() => {
return nextLevelAchievement.value ? `Lv.${formatLevelNumber(nextLevelAchievement.value.level)}` : '满级';
});
const nextProgress = computed(() => {
if (!nextLevelAchievement.value) return 100;
const p = nextLevelAchievement.value.progressPercentage;
if (typeof p === 'number') return Math.max(0, Math.min(100, p));
const cur = nextLevelAchievement.value.currentValue || 0;
const tar = nextLevelAchievement.value.targetValue || 0;
if (tar <= 0) return 0;
return Math.max(0, Math.min(100, Math.round((cur / tar) * 100)));
});
const nextDeltaText = computed(() => {
if (!nextLevelAchievement.value) return '已达最高等级';
const cur = nextLevelAchievement.value.currentValue || 0;
const tar = nextLevelAchievement.value.targetValue || 0;
const need = Math.max(0, tar - cur);
if (need <= 0) return '即将升级';
return `距离下级:还差 ${formatConditionValue(nextLevelAchievement.value.conditionType, need)}`;
});
// 勋章类成就
const badgeAchievements = computed(() => {
return achievements.value.filter(a => a.type === AchievementType.BADGE);
});
// 右侧展示用的勋章成就(支持仅显示已获得)
const filteredBadgeAchievements = computed(() => {
let result = badgeAchievements.value;
if (showOnlyEarned.value) { if (showOnlyEarned.value) {
result = result.filter(a => a.obtained); result = result.filter(a => a.obtained);
} }
// 排序:已获得的在前,按等级排序 // 排序:已获得的在前,按等级/ID 排序
return result.sort((a, b) => { return result.sort((a, b) => {
if (a.obtained !== b.obtained) { if (a.obtained !== b.obtained) {
return a.obtained ? -1 : 1; return a.obtained ? -1 : 1;
@@ -197,6 +187,17 @@ function formatConditionValue(conditionType?: number, conditionValue?: number):
return AchievementEnumHelper.formatConditionValue(conditionType, conditionValue); return AchievementEnumHelper.formatConditionValue(conditionType, conditionValue);
} }
// 格式化等级显示(例如 1.20
function formatLevelNumber(level?: number | null): string {
if (level === undefined || level === null) return '';
const num = Number(level);
if (Number.isNaN(num)) {
return String(level);
}
// 保留两位小数,方便展示类似 Lv.1.20 的效果
return num.toFixed(2);
}
// 格式化日期 // 格式化日期
function formatDate(dateStr?: string): string { function formatDate(dateStr?: string): string {
if (!dateStr) return ''; if (!dateStr) return '';
@@ -229,7 +230,6 @@ async function loadAchievements() {
loading.value = false; loading.value = false;
} }
} }
onMounted(() => { onMounted(() => {
loadAchievements(); loadAchievements();
}); });
@@ -238,305 +238,83 @@ onMounted(() => {
<style lang="scss" scoped> <style lang="scss" scoped>
.my-achievements { .my-achievements {
// padding: 20px 0; // padding: 20px 0;
// height: 100%; height: 100%;
box-sizing: border-box; box-sizing: border-box;
.achievements-header {
display: flex; display: flex;
justify-content: space-between; gap: 24px;
align-items: center;
height: 10%;
h2 { .level-achieve{
font-size: 28px;
font-weight: 600;
color: #141F38;
margin: 0;
}
}
}
.achievement-stats {
display: flex;
gap: 20px;
.stat-item {
display: flex;
align-items: baseline;
gap: 8px;
.stat-label {
font-size: 14px;
color: #666;
}
.stat-value {
font-size: 24px;
font-weight: 600;
color: #C62828;
}
.stat-total {
font-size: 16px;
color: #999;
}
}
}
.filter-tabs {
display: flex;
height: 5%;
justify-content: space-between;
align-items: center;
margin: 10px;
background: #f8f9fa;
border-radius: 8px;
}
.loading-container {
padding: 40px 0;
}
.achievements-grid {
display: grid;
height: 80%;
overflow-y: auto;
grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
gap: 20px;
margin-bottom: 20px;
}
.achievement-item {
display: flex;
gap: 16px;
padding: 20px;
border: 2px solid #e0e0e0;
border-radius: 12px;
transition: all 0.3s;
background: white;
&.earned {
border-color: #52c41a;
background: linear-gradient(135deg, #f6ffed, #ffffff);
.achievement-icon {
:deep(.el-image__inner) {
filter: none;
}
}
}
&.locked {
opacity: 0.75;
.achievement-icon {
:deep(.el-image__inner) {
filter: grayscale(100%);
}
}
}
&:hover.earned {
box-shadow: 0 4px 16px rgba(82, 196, 26, 0.3);
transform: translateY(-2px);
}
&:hover.locked {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
}
.achievement-icon {
position: relative;
width: 80px;
height: 80px;
flex-shrink: 0;
:deep(.el-image) {
width: 100%;
height: 100%;
}
.image-placeholder {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background: #f5f5f5;
border-radius: 8px;
color: #ccc;
font-size: 32px;
}
}
.achievement-badge {
position: absolute;
top: -4px;
right: -4px;
width: 28px;
height: 28px;
background: #52c41a;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
font-weight: 600;
border: 3px solid white;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.achievement-level {
position: absolute;
bottom: -4px;
left: 50%;
transform: translateX(-50%);
padding: 2px 8px;
background: #1890ff;
color: white;
font-size: 12px;
font-weight: 600;
border-radius: 10px;
border: 2px solid white;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.achievement-info {
flex: 1;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 8px; width: 380px;
.achievement-header { .level{
background: linear-gradient(180deg, rgba(245, 250, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
border: 1px solid #e6effa;
border-radius: 12px;
padding: 16px;
display: flex; display: flex;
justify-content: space-between; flex-direction: column;
align-items: flex-start; align-items: center;
gap: 12px; gap: 12px;
h3 { .level-icons{
font-size: 18px; position: relative;
font-weight: 600;
color: #141F38;
margin: 0;
flex: 1;
}
}
}
.achievement-description {
font-size: 14px;
color: #666;
line-height: 1.6;
margin: 0;
}
.achievement-condition {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 6px; justify-content: center;
font-size: 13px; width: 180px;
color: #999; height: 120px;
padding: 6px 12px; .level-star{ width: 100%; height: auto; }
background: #fafafa; .level-badge{ position: absolute; width: 72px; height: 72px; }
border-radius: 6px;
:deep(.el-icon) {
font-size: 14px;
} }
}
.achievement-progress { .level-word{ height: 28px; }
.progress-info { .next-tip{ color: #64748b; font-size: 13px; }
.level-range{ width: 100%; display: flex; justify-content: space-between; font-size: 12px; color: #64748b; }
}
}
.badge-achieve{
display: flex; display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 8px;
.progress-label {
font-size: 13px;
color: #666;
font-weight: 500;
}
.progress-text {
font-size: 13px;
color: #1890ff;
font-weight: 600;
}
}
:deep(.el-progress) {
.el-progress-bar__outer {
background-color: #f0f0f0;
}
}
}
.achievement-footer {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 8px;
border-top: 1px solid #f0f0f0;
.achievement-date,
.achievement-points {
display: flex;
align-items: center;
gap: 6px;
font-size: 13px;
color: #666;
:deep(.el-icon) {
font-size: 14px;
}
}
.achievement-points {
color: #faad14;
font-weight: 600;
}
}
.achievement-reward {
display: flex;
align-items: center;
gap: 6px;
font-size: 13px;
color: #faad14;
font-weight: 600;
padding: 6px 12px;
background: #fffbe6;
border-radius: 6px;
:deep(.el-icon) {
font-size: 14px;
}
}
// 响应式设计
@media (max-width: 1200px) {
.achievements-grid {
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
}
@media (max-width: 768px) {
.achievements-grid {
grid-template-columns: 1fr;
}
.achievement-stats {
flex-direction: column; flex-direction: column;
.achievement-list{
display: grid;
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
gap: 16px; gap: 16px;
.achievement-item{
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
padding: 12px;
border: 1px solid #e6effa;
border-radius: 12px;
background: linear-gradient(180deg, rgba(223, 239, 255, 0.4) 0%, rgba(223, 239, 255, 0) 84%);
&.obtained{ box-shadow: 0 0 0 2px #5cb87a33 inset; }
.achv-name-wrap{
position: relative;
width: 140px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
img{ width: 100%; height: 100%; }
.achv-name{ position: absolute; font-size: 12px; color: #1f2937; white-space: nowrap; max-width: 120px; overflow: hidden; text-overflow: ellipsis; }
} }
.filter-tabs { .achv-icon{ width: 72px; height: 72px; }
.achv-cond{ font-size: 12px; color: #64748b; }
}
.acievement-item{
display: flex;
flex-direction: column; flex-direction: column;
gap: 16px; }
align-items: stretch; }
} }
} }
</style> </style>

View File

@@ -56,7 +56,7 @@ import maleIcon from '@/assets/imgs/male.svg';
import femaleIcon from '@/assets/imgs/female.svg'; import femaleIcon from '@/assets/imgs/female.svg';
import { ElMessage } from 'element-plus'; import { ElMessage } from 'element-plus';
import { useRouter } from 'vue-router'; import { useRouter } from 'vue-router';
import { getLevelIconUrl } from '@/utils/iconUtils'; import { getLevelWordIconUrl } from '@/utils/iconUtils';
const router = useRouter(); const router = useRouter();
const userInfo = ref<UserVO>(); const userInfo = ref<UserVO>();
@@ -66,7 +66,7 @@ const defaultAvatar = defaultAvatarImg;
const levelIcon = computed(() => { const levelIcon = computed(() => {
const level = userInfo.value?.level || 1; const level = userInfo.value?.level || 1;
return getLevelIconUrl(level); return getLevelWordIconUrl(level);
}); });
function handleEdit() { function handleEdit() {
@@ -233,8 +233,8 @@ onMounted(async () => {
} }
.level-icon { .level-icon {
width: 18px; width: 24px;
height: 12px; height: 24px;
} }
.level-text { .level-text {