角色组件
// 角色组件 Vue.component('role-component', { props: { dev: { type: Number, default: 0, description: '调试模式的网格行宽距离', }, size: { type: Number, default: 40, description: '角色大小(身体对应的宽高)', // 增加防抖处理,避免高频变化 validator: (value) => { return true; } }, body: { type: Number, default: 0, description: '角色体型(0,1,2,...,21,22,23)', }, leftHand: { type: Number, default: 0, description: '左手(0,1,2,...,33,34,35)', }, leftHandRotate: { type: Number, default: 0, description: '左手旋转角度(-90到90)', }, rightHand: { type: Number, default: 0, description: '右手(0,1,2,...,33,34,35)', }, rightHandRotate: { type: Number, default: 0, description: '右手旋转角度(-90到90)', }, eye: { type: Number, default: 0, description: '眼睛(0,1,2)', }, eyeOffsetX: { type: Number, default: 0, description: '眼睛水平偏移,值越大双眼越近(-10到5)', }, eyeOffsetY: { type: Number, default: 0, description: '眼睛垂直偏移,值越大双眼越低(-15到10)', }, eyebrow: { type: Number, default: 0, description: '眉毛(0,1,2,3)', }, eyebrowOffsetX: { type: Number, default: 0, description: '眉毛水平偏移比例,值越大双眉越近(-10到20)', }, eyebrowOffsetY: { type: Number, default: 0, description: '眉毛垂直偏移,值越大双眉越低(-20到10)', }, mouth: { type: Number, default: 0, description: '嘴巴(0,1,2,3)', }, mouthOffsetX: { type: Number, default: 0, description: '嘴巴水平偏移,负数偏左正数偏右(-15到15)', }, mouthOffsetY: { type: Number, default: 0, description: '嘴巴垂直偏移,负数偏上正数偏下(0到20)', }, }, data() { return { defaultSize: 100 } }, computed: { svgWidth() { return `${this.size * 2}px` }, svgHeight() { return `${this.size}px` }, viewBox() { return `0 0 ${this.size * 2} ${this.size}`; }, faceTransform() { return `matrix( ${this.size / this.defaultSize}, 0, 0, ${this.size / this.defaultSize}, ${this.size}, ${this.size / 2})`; }, bodyTransform() { return `matrix( 1, 0, 0, 1, 0, 0)`; }, shadowTransform() { return `matrix( 2, 0, 0, 2, 0, 30)` }, leftEyeX() { return parseInt(Math.max(-10, Math.min(5, this.eyeOffsetX))); }, leftEyeY() { return parseInt(Math.max(-15, Math.min(10, this.eyeOffsetY))); }, leftEyeTransform() { return `rotate(0, -15, -3) matrix( 1, 0, 0, 1, ${this.leftEyeX}, ${this.leftEyeY})`; }, rightEyeX() { return -parseInt(Math.max(-10, Math.min(5, this.eyeOffsetX))); }, rightEyeY() { return parseInt(Math.max(-15, Math.min(25, this.eyeOffsetY))); }, rightEyeTransform() { return `rotate(0, 15, -3) matrix( 1, 0, 0, 1, ${this.rightEyeX}, ${this.rightEyeY}) scale(-1, 1)`; }, leftEyebrowX() { return parseInt(Math.max(-10, Math.min(20, this.eyebrowOffsetX))); }, leftEyebrowY() { return parseInt(Math.max(-20, Math.min(10, this.eyebrowOffsetY))); }, leftEyebrowTransform() { return `rotate(0, -15, -10) matrix( 1, 0, 0, 1, ${this.leftEyebrowX}, ${this.leftEyebrowY})`; }, rightEyebrowX() { return -parseInt(Math.max(-10, Math.min(20, this.eyebrowOffsetX))); }, rightEyebrowY() { return parseInt(Math.max(-20, Math.min(10, this.eyebrowOffsetY))); }, rightEyebrowTransform() { return `rotate(0, 15, -10) matrix( 1, 0, 0, 1, ${this.rightEyebrowX}, ${this.rightEyebrowY}) scale(-1, 1)`; }, mouthTransform() { let mouthOffsetX = parseInt(Math.max(-15, Math.min(15, this.mouthOffsetX))); let mouthOffsetY = parseInt(Math.max(0, Math.min(20, this.mouthOffsetY))); return `matrix( 1, 0, 0, 1, ${mouthOffsetX}, ${mouthOffsetY})`; }, // 虚拟左臂的根坐标 leftArmX() { return -30; }, // 虚拟左臂的根坐标 leftArmY() { return 10; }, leftArmTransform() { return ``; }, // 左手的坐标 leftHandX() { return -60; }, // 左手的坐标 leftHandY() { return 0; }, leftHandTransform() { let leftHandRotate = parseInt(Math.max(-90, Math.min(90, this.leftHandRotate))); return `translate(-60, 0) rotate(${leftHandRotate}) scale(-1,1)`; // 执行顺序从右到左(先镜像,再作为整体进行操作) }, // 虚拟右臂的根坐标 rightArmX() { return 30; }, // 虚拟右臂的根坐标 rightArmY() { return 10; }, rightArmTransform() { return ``; }, // 右手的坐标 rightHandX() { return 60; }, // 右手的坐标 rightHandY() { return 0; }, rightHandTransform() { let rightHandRotate = parseInt(Math.max(-90, Math.min(90, this.rightHandRotate))); return `translate(60, 0) rotate(${rightHandRotate})`; }, /** * 角色外貌评分计算 * 核心规则:所有偏移类参数在0点时为最优状态 * 评分范围:20-100分 */ appearanceScore() { // 基础分数(确保最低分不低于20) let baseScore = 20; // 1. 整体色彩协调度(0-25分) // 提取颜色编码(每6个型号一组颜色) const bodyColor = Math.floor(this.body / 6); const leftHandColor = Math.floor(this.leftHand / 6); const rightHandColor = Math.floor(this.rightHand / 6); // 颜色匹配计算(全匹配为最优) let colorScore = 0; if (bodyColor === leftHandColor && bodyColor === rightHandColor) { colorScore = 25; // 全匹配满分 } else if (bodyColor === leftHandColor || bodyColor === rightHandColor) { colorScore = 18; // 身体与一手匹配 } else if (leftHandColor === rightHandColor) { colorScore = 15; // 双手匹配但与身体不匹配 } else { // 计算颜色差值,差值越小(越接近0)得分越高 const maxDiff = Math.max( Math.abs(bodyColor - leftHandColor), Math.abs(bodyColor - rightHandColor), Math.abs(leftHandColor - rightHandColor) ); colorScore = 12 * Math.exp(-Math.pow(maxDiff, 2) / 30); } baseScore += colorScore; // 2. 肢体对称性与协调性(0-25分) // 2.1 左右手旋转角度对称性(0-10分) // 最优状态:左右旋转角度绝对值相等且方向相反(和为0) const handAngleSum = Math.abs(this.leftHandRotate + this.rightHandRotate); const handAngleScore = 10 * Math.exp(-Math.pow(handAngleSum, 2) / 500); // 2.2 左右手型号匹配度(0-10分) // 最优状态:左右手型号相同(差值为0) const handTypeDiff = Math.abs(this.leftHand - this.rightHand); const handTypeScore = 10 * Math.exp(-Math.pow(handTypeDiff, 2) / 200); // 2.3 肢体与身体风格统一(0-5分) // 最优状态:肢体风格与身体风格差值为0 const bodyStyle = Math.floor(this.body / 8); const leftHandStyleDiff = Math.abs(bodyStyle - Math.floor(this.leftHand / 8)); const rightHandStyleDiff = Math.abs(bodyStyle - Math.floor(this.rightHand / 8)); const avgStyleDiff = (leftHandStyleDiff + rightHandStyleDiff) / 2; const bodyHandCoordination = 5 * Math.exp(-Math.pow(avgStyleDiff, 2) / 5); baseScore += handAngleScore + handTypeScore + bodyHandCoordination; // 3. 面部特征位置合理性(0-30分) // 核心规则:所有偏移参数在0点时最优 // 3.1 眼睛位置评分(0-8分) // 水平和垂直偏移均为0时得分最高 const eyeXScore = 4 * Math.exp(-Math.pow(this.eyeOffsetX, 2) / 50); // 0点最优 const eyeYScore = 4 * Math.exp(-Math.pow(this.eyeOffsetY, 2) / 50); // 0点最优 // 3.2 眉毛位置评分(0-8分) // 水平和垂直偏移均为0时得分最高 const browXScore = 4 * Math.exp(-Math.pow(this.eyebrowOffsetX, 2) / 80); // 0点最优 const browYScore = 4 * Math.exp(-Math.pow(this.eyebrowOffsetY, 2) / 80); // 0点最优 // 3.3 嘴巴位置评分(0-8分) // 水平和垂直偏移均为0时得分最高 const mouthXScore = 4 * Math.exp(-Math.pow(this.mouthOffsetX, 2) / 50); // 0点最优 const mouthYScore = 4 * Math.exp(-Math.pow(this.mouthOffsetY, 2) / 50); // 0点最优 // 3.4 面部特征相对位置协调(0-6分) // 最优状态:相对偏移为0(特征间位置关系均衡) const eyeBrowRelative = Math.abs(this.eyebrowOffsetY - this.eyeOffsetY - 20); // 理想相对偏移20 const eyeMouthRelative = Math.abs(this.mouthOffsetY - this.eyeOffsetY - 40); // 理想相对偏移40 const relativeScore = 3 * Math.exp(-Math.pow(eyeBrowRelative, 2) / 200) + 3 * Math.exp(-Math.pow(eyeMouthRelative, 2) / 300); baseScore += eyeXScore + eyeYScore + browXScore + browYScore + mouthXScore + mouthYScore + relativeScore; // 4. 面部特征风格匹配(0-20分) // 最优状态:特征类型相同(差值为0) // 4.1 眉眼风格匹配(0-8分) const eyeBrowDiff = Math.abs(this.eye - this.eyebrow); const eyeBrowMatch = 8 * Math.exp(-Math.pow(eyeBrowDiff, 2) / 5); // 4.2 整体面部风格统一(0-12分) const eyeMouthDiff = Math.abs(this.eye - this.mouth); const browMouthDiff = Math.abs(this.eyebrow - this.mouth); const avgFeatureDiff = (eyeBrowDiff + eyeMouthDiff + browMouthDiff) / 3; const faceStyleUnity = 12 * Math.exp(-Math.pow(avgFeatureDiff, 2) / 10); baseScore += eyeBrowMatch + faceStyleUnity; // 确保分数在20-100范围内,并保留一位小数 const finalScore = Math.max(20, Math.min(100, baseScore)); return Math.round(finalScore * 10) / 10; } }, methods: {}, template: ` <svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="none" x="0px" y="0px" :width="svgWidth" :height="svgHeight" :viewBox="viewBox" @click="alert(appearanceScore)"> <defs> <linearGradient id="Gradient_1" gradientUnits="userSpaceOnUse" x1="0" y1="-40" x2="0" y2="40"> <stop offset="0%" stop-color="#E26081"/> <stop offset="100%" stop-color="#D44947"/> </linearGradient> <linearGradient id="Gradient_2" gradientUnits="userSpaceOnUse" x1="-0.25" y1="-40.25" x2="-0.25" y2="3.25"> <stop offset="0%" stop-color="#F37F98"/> <stop offset="100%" stop-color="#D74854"/> </linearGradient> <linearGradient id="Gradient_3" gradientUnits="userSpaceOnUse" x1="-90" y1="-40" x2="-90" y2="40"> <stop offset="0%" stop-color="#E26081"/> <stop offset="100%" stop-color="#D44947"/> </linearGradient> <linearGradient id="Gradient_4" gradientUnits="userSpaceOnUse" x1="-90.25" y1="-40.25" x2="-90.25" y2="3.25"> <stop offset="0%" stop-color="#F37F98"/> <stop offset="100%" stop-color="#D74854"/> </linearGradient> <linearGradient id="Gradient_5" gradientUnits="userSpaceOnUse" x1="-180" y1="-40" x2="-180" y2="40"> <stop offset="0%" stop-color="#E26081"/> <stop offset="100%" stop-color="#D44947"/> </linearGradient> <linearGradient id="Gradient_6" gradientUnits="userSpaceOnUse" x1="-180.25" y1="-40.25" x2="-180.25" y2="3.25"> <stop offset="0%" stop-color="#F37F98"/> <stop offset="100%" stop-color="#D74854"/> </linearGradient> <linearGradient id="Gradient_7" gradientUnits="userSpaceOnUse" x1="-270" y1="-40" x2="-270" y2="40"> <stop offset="0%" stop-color="#E26081"/> <stop offset="100%" stop-color="#D44947"/> </linearGradient> <linearGradient id="Gradient_8" gradientUnits="userSpaceOnUse" x1="-270.25" y1="-40.25" x2="-270.25" y2="3.25"> <stop offset="0%" stop-color="#F37F98"/> <stop offset="100%" stop-color="#D74854"/> </linearGradient> <linearGradient id="Gradient_9" gradientUnits="userSpaceOnUse" x1="0" y1="-40" x2="0" y2="40"> <stop offset="0%" stop-color="#A875E9"/> <stop offset="51.76470588235294%" stop-color="#905AE5"/> <stop offset="100%" stop-color="#6548B9"/> </linearGradient> <linearGradient id="Gradient_10" gradientUnits="userSpaceOnUse" x1="-0.25" y1="-40.25" x2="-0.25" y2="3.25"> <stop offset="0%" stop-color="#C28DEF"/> <stop offset="100%" stop-color="#A471E8"/> </linearGradient> <linearGradient id="Gradient_11" gradientUnits="userSpaceOnUse" x1="-0.05" y1="-39.975" x2="-0.05" y2="39.975"> <stop offset="0%" stop-color="#A875E9"/> <stop offset="51.76470588235294%" stop-color="#905AE5"/> <stop offset="100%" stop-color="#6548B9"/> </linearGradient> <linearGradient id="Gradient_12" gradientUnits="userSpaceOnUse" x1="0" y1="-40" x2="0" y2="2"> <stop offset="0%" stop-color="#C28DEF"/> <stop offset="100%" stop-color="#A471E8"/> </linearGradient> <linearGradient id="Gradient_13" gradientUnits="userSpaceOnUse" x1="0" y1="-40" x2="0" y2="1.5"> <stop offset="0%" stop-color="#C28DEF"/> <stop offset="100%" stop-color="#A471E8"/> </linearGradient> <linearGradient id="Gradient_14" gradientUnits="userSpaceOnUse" x1="0" y1="-39.650000000000006" x2="0" y2="1.7500000000000036"> <stop offset="0%" stop-color="#C28DEF"/> <stop offset="100%" stop-color="#A471E8"/> </linearGradient> <linearGradient id="Gradient_15" gradientUnits="userSpaceOnUse" x1="0" y1="-40" x2="0" y2="40"> <stop offset="0%" stop-color="#71CF93"/> <stop offset="100%" stop-color="#59B15C"/> </linearGradient> <linearGradient id="Gradient_16" gradientUnits="userSpaceOnUse" x1="-0.25" y1="-40.25" x2="-0.25" y2="3.25"> <stop offset="0%" stop-color="#85DFAF"/> <stop offset="100%" stop-color="#69C581"/> </linearGradient> <linearGradient id="Gradient_17" gradientUnits="userSpaceOnUse" x1="-90" y1="-40" x2="-90" y2="40"> <stop offset="0%" stop-color="#71CF93"/> <stop offset="100%" stop-color="#59B15C"/> </linearGradient> <linearGradient id="Gradient_18" gradientUnits="userSpaceOnUse" x1="-90.25" y1="-40.25" x2="-90.25" y2="3.25"> <stop offset="0%" stop-color="#85DFAF"/> <stop offset="100%" stop-color="#69C581"/> </linearGradient> <linearGradient id="Gradient_19" gradientUnits="userSpaceOnUse" x1="-180" y1="-40" x2="-180" y2="40"> <stop offset="0%" stop-color="#71CF93"/> <stop offset="100%" stop-color="#59B15C"/> </linearGradient> <linearGradient id="Gradient_20" gradientUnits="userSpaceOnUse" x1="-180.25" y1="-40.25" x2="-180.25" y2="3.25"> <stop offset="0%" stop-color="#85DFAF"/> <stop offset="100%" stop-color="#69C581"/> </linearGradient> <linearGradient id="Gradient_21" gradientUnits="userSpaceOnUse" x1="-270" y1="-40" x2="-270" y2="40"> <stop offset="0%" stop-color="#71CF93"/> <stop offset="100%" stop-color="#59B15C"/> </linearGradient> <linearGradient id="Gradient_22" gradientUnits="userSpaceOnUse" x1="-270.25" y1="-40.25" x2="-270.25" y2="3.25"> <stop offset="0%" stop-color="#85DFAF"/> <stop offset="100%" stop-color="#69C581"/> </linearGradient> <linearGradient id="Gradient_23" gradientUnits="userSpaceOnUse" x1="0" y1="-40" x2="0" y2="40"> <stop offset="0%" stop-color="#FFCD59"/> <stop offset="100%" stop-color="#F7A41B"/> </linearGradient> <linearGradient id="Gradient_24" gradientUnits="userSpaceOnUse" x1="-0.25" y1="-40.25" x2="-0.25" y2="3.25"> <stop offset="0%" stop-color="#FFE383"/> <stop offset="100%" stop-color="#FFB43C"/> </linearGradient> <linearGradient id="Gradient_25" gradientUnits="userSpaceOnUse" x1="-90" y1="-40" x2="-90" y2="40"> <stop offset="0%" stop-color="#FFCD59"/> <stop offset="100%" stop-color="#F7A41B"/> </linearGradient> <linearGradient id="Gradient_26" gradientUnits="userSpaceOnUse" x1="-90.25" y1="-40.25" x2="-90.25" y2="3.25"> <stop offset="0%" stop-color="#FFE383"/> <stop offset="100%" stop-color="#FFB43C"/> </linearGradient> <linearGradient id="Gradient_27" gradientUnits="userSpaceOnUse" x1="-180" y1="-40" x2="-180" y2="40"> <stop offset="0%" stop-color="#FFCD59"/> <stop offset="100%" stop-color="#F7A41B"/> </linearGradient> <linearGradient id="Gradient_28" gradientUnits="userSpaceOnUse" x1="-180.25" y1="-40.25" x2="-180.25" y2="3.25"> <stop offset="0%" stop-color="#FFE383"/> <stop offset="100%" stop-color="#FFB43C"/> </linearGradient> <linearGradient id="Gradient_29" gradientUnits="userSpaceOnUse" x1="-270" y1="-40" x2="-270" y2="40"> <stop offset="0%" stop-color="#FFCD59"/> <stop offset="100%" stop-color="#F7A41B"/> </linearGradient> <linearGradient id="Gradient_30" gradientUnits="userSpaceOnUse" x1="-270.25" y1="-40.25" x2="-270.25" y2="3.25"> <stop offset="0%" stop-color="#FFE383"/> <stop offset="100%" stop-color="#FFB43C"/> </linearGradient> <linearGradient id="Gradient_31" gradientUnits="userSpaceOnUse" x1="-270" y1="-40" x2="-270" y2="40"> <stop offset="0%" stop-color="#FF99E7"/> <stop offset="100%" stop-color="#FF72A9"/> </linearGradient> <linearGradient id="Gradient_32" gradientUnits="userSpaceOnUse" x1="-270.25" y1="-40.25" x2="-270.25" y2="3.25"> <stop offset="0%" stop-color="#FFB6EA"/> <stop offset="100%" stop-color="#FF94E0"/> </linearGradient> <linearGradient id="Gradient_33" gradientUnits="userSpaceOnUse" x1="-180" y1="-40" x2="-180" y2="40"> <stop offset="0%" stop-color="#FF99E7"/> <stop offset="100%" stop-color="#FF72A9"/> </linearGradient> <linearGradient id="Gradient_34" gradientUnits="userSpaceOnUse" x1="-180.25" y1="-40.25" x2="-180.25" y2="3.25"> <stop offset="0%" stop-color="#FFB6EA"/> <stop offset="100%" stop-color="#FF94E0"/> </linearGradient> <linearGradient id="Gradient_35" gradientUnits="userSpaceOnUse" x1="-90" y1="-40" x2="-90" y2="40"> <stop offset="0%" stop-color="#FF99E7"/> <stop offset="100%" stop-color="#FF72A9"/> </linearGradient> <linearGradient id="Gradient_36" gradientUnits="userSpaceOnUse" x1="-90.25" y1="-40.25" x2="-90.25" y2="3.25"> <stop offset="0%" stop-color="#FFB6EA"/> <stop offset="100%" stop-color="#FF94E0"/> </linearGradient> <linearGradient id="Gradient_37" gradientUnits="userSpaceOnUse" x1="0" y1="-40" x2="0" y2="40"> <stop offset="0%" stop-color="#FF99E7"/> <stop offset="100%" stop-color="#FF72A9"/> </linearGradient> <linearGradient id="Gradient_38" gradientUnits="userSpaceOnUse" x1="-0.25" y1="-40.25" x2="-0.25" y2="3.25"> <stop offset="0%" stop-color="#FFB6EA"/> <stop offset="100%" stop-color="#FF94E0"/> </linearGradient> <linearGradient id="Gradient_39" gradientUnits="userSpaceOnUse" x1="0" y1="-40" x2="0" y2="40"> <stop offset="0%" stop-color="#7BAAEB"/> <stop offset="100%" stop-color="#6C75E9"/> </linearGradient> <linearGradient id="Gradient_40" gradientUnits="userSpaceOnUse" x1="-0.25" y1="-40.25" x2="-0.25" y2="3.25"> <stop offset="0%" stop-color="#95C2F0"/> <stop offset="100%" stop-color="#6B8EE9"/> </linearGradient> <linearGradient id="Gradient_41" gradientUnits="userSpaceOnUse" x1="-90" y1="-40" x2="-90" y2="40"> <stop offset="0%" stop-color="#7BAAEB"/> <stop offset="100%" stop-color="#6C75E9"/> </linearGradient> <linearGradient id="Gradient_42" gradientUnits="userSpaceOnUse" x1="-90.25" y1="-40.25" x2="-90.25" y2="3.25"> <stop offset="0%" stop-color="#95C2F0"/> <stop offset="100%" stop-color="#6B8EE9"/> </linearGradient> <linearGradient id="Gradient_43" gradientUnits="userSpaceOnUse" x1="-180" y1="-40" x2="-180" y2="40"> <stop offset="0%" stop-color="#7BAAEB"/> <stop offset="100%" stop-color="#6C75E9"/> </linearGradient> <linearGradient id="Gradient_44" gradientUnits="userSpaceOnUse" x1="-180.25" y1="-40.25" x2="-180.25" y2="3.25"> <stop offset="0%" stop-color="#95C2F0"/> <stop offset="100%" stop-color="#6B8EE9"/> </linearGradient> <linearGradient id="Gradient_45" gradientUnits="userSpaceOnUse" x1="-270" y1="-40" x2="-270" y2="40"> <stop offset="0%" stop-color="#7BAAEB"/> <stop offset="100%" stop-color="#6C75E9"/> </linearGradient> <linearGradient id="Gradient_46" gradientUnits="userSpaceOnUse" x1="-270.25" y1="-40.25" x2="-270.25" y2="3.25"> <stop offset="0%" stop-color="#95C2F0"/> <stop offset="100%" stop-color="#6B8EE9"/> </linearGradient> <linearGradient id="Gradient_47" gradientUnits="userSpaceOnUse" x1="-8.8" y1="-15.350000000000001" x2="-8.8" y2="1.4500000000000002"> <stop offset="0%" stop-color="#BA4B61"/> <stop offset="100%" stop-color="#DB5566"/> </linearGradient> <linearGradient id="Gradient_48" gradientUnits="userSpaceOnUse" x1="125.05" y1="-28.05" x2="125.05" y2="28.150000000000002"> <stop offset="0%" stop-color="#E26081"/> <stop offset="100%" stop-color="#D44947"/> </linearGradient> <linearGradient id="Gradient_49" gradientUnits="userSpaceOnUse" x1="82.05" y1="-28.1" x2="82.05" y2="28.1"> <stop offset="0%" stop-color="#E26081"/> <stop offset="100%" stop-color="#D44947"/> </linearGradient> <linearGradient id="Gradient_50" gradientUnits="userSpaceOnUse" x1="-9.95" y1="-0.8000000000000007" x2="-9.95" y2="18.6"> <stop offset="0%" stop-color="#B04350"/> <stop offset="100%" stop-color="#D64C50"/> </linearGradient> <linearGradient id="Gradient_51" gradientUnits="userSpaceOnUse" x1="42.05" y1="-28.1" x2="42.05" y2="28.1"> <stop offset="0%" stop-color="#E26081"/> <stop offset="100%" stop-color="#D44947"/> </linearGradient> <linearGradient id="Gradient_52" gradientUnits="userSpaceOnUse" x1="0.05" y1="-28.05" x2="0.05" y2="28.150000000000002"> <stop offset="0%" stop-color="#E26081"/> <stop offset="100%" stop-color="#D44947"/> </linearGradient> <linearGradient id="Gradient_53" gradientUnits="userSpaceOnUse" x1="-44.95" y1="-28.1" x2="-44.95" y2="28.1"> <stop offset="0%" stop-color="#E26081"/> <stop offset="100%" stop-color="#D44947"/> </linearGradient> <linearGradient id="Gradient_54" gradientUnits="userSpaceOnUse" x1="-11.05" y1="-5.6000000000000005" x2="-11.05" y2="16.5"> <stop offset="0%" stop-color="#B74757"/> <stop offset="100%" stop-color="#D64D53"/> </linearGradient> <linearGradient id="Gradient_55" gradientUnits="userSpaceOnUse" x1="-88.9" y1="-28.1" x2="-88.9" y2="28.1"> <stop offset="0%" stop-color="#E26081"/> <stop offset="100%" stop-color="#D44947"/> </linearGradient> <linearGradient id="Gradient_56" gradientUnits="userSpaceOnUse" x1="-11.05" y1="-5.6000000000000005" x2="-11.05" y2="16.5"> <stop offset="0%" stop-color="#7F51C4"/> <stop offset="100%" stop-color="#774FCB"/> </linearGradient> <linearGradient id="Gradient_57" gradientUnits="userSpaceOnUse" x1="-88.9" y1="-28.1" x2="-88.9" y2="28.1"> <stop offset="0%" stop-color="#A875E9"/> <stop offset="51.76470588235294%" stop-color="#905AE5"/> <stop offset="100%" stop-color="#6548B9"/> </linearGradient> <linearGradient id="Gradient_58" gradientUnits="userSpaceOnUse" x1="-44.95" y1="-28.1" x2="-44.95" y2="28.1"> <stop offset="0%" stop-color="#A875E9"/> <stop offset="51.76470588235294%" stop-color="#905AE5"/> <stop offset="100%" stop-color="#6548B9"/> </linearGradient> <linearGradient id="Gradient_59" gradientUnits="userSpaceOnUse" x1="0.05" y1="-28.05" x2="0.05" y2="28.150000000000002"> <stop offset="0%" stop-color="#A875E9"/> <stop offset="51.76470588235294%" stop-color="#905AE5"/> <stop offset="100%" stop-color="#6548B9"/> </linearGradient> <linearGradient id="Gradient_60" gradientUnits="userSpaceOnUse" x1="-9.95" y1="-0.8000000000000007" x2="-9.95" y2="18.6"> <stop offset="0%" stop-color="#7A4CC1"/> <stop offset="100%" stop-color="#744EC9"/> </linearGradient> <linearGradient id="Gradient_61" gradientUnits="userSpaceOnUse" x1="42.05" y1="-28.1" x2="42.05" y2="28.1"> <stop offset="0%" stop-color="#A875E9"/> <stop offset="51.76470588235294%" stop-color="#905AE5"/> <stop offset="100%" stop-color="#6548B9"/> </linearGradient> <linearGradient id="Gradient_62" gradientUnits="userSpaceOnUse" x1="82.05" y1="-28.1" x2="82.05" y2="28.1"> <stop offset="0%" stop-color="#A875E9"/> <stop offset="51.76470588235294%" stop-color="#905AE5"/> <stop offset="100%" stop-color="#6548B9"/> </linearGradient> <linearGradient id="Gradient_63" gradientUnits="userSpaceOnUse" x1="-8.8" y1="-15.350000000000001" x2="-8.8" y2="1.4500000000000002"> <stop offset="0%" stop-color="#885AC9"/> <stop offset="100%" stop-color="#925CE5"/> </linearGradient> <linearGradient id="Gradient_64" gradientUnits="userSpaceOnUse" x1="125.05" y1="-28.05" x2="125.05" y2="28.150000000000002"> <stop offset="0%" stop-color="#A875E9"/> <stop offset="51.76470588235294%" stop-color="#905AE5"/> <stop offset="100%" stop-color="#6548B9"/> </linearGradient> <linearGradient id="Gradient_65" gradientUnits="userSpaceOnUse" x1="-8.8" y1="-15.350000000000001" x2="-8.8" y2="1.4500000000000002"> <stop offset="0%" stop-color="#5CAC73"/> <stop offset="100%" stop-color="#65C078"/> </linearGradient> <linearGradient id="Gradient_66" gradientUnits="userSpaceOnUse" x1="125.05" y1="-28.05" x2="125.05" y2="28.150000000000002"> <stop offset="0%" stop-color="#71CF93"/> <stop offset="100%" stop-color="#59B15C"/> </linearGradient> <linearGradient id="Gradient_67" gradientUnits="userSpaceOnUse" x1="82.05" y1="-28.1" x2="82.05" y2="28.1"> <stop offset="0%" stop-color="#71CF93"/> <stop offset="100%" stop-color="#59B15C"/> </linearGradient> <linearGradient id="Gradient_68" gradientUnits="userSpaceOnUse" x1="-9.95" y1="-0.8000000000000007" x2="-9.95" y2="18.6"> <stop offset="0%" stop-color="#55A164"/> <stop offset="100%" stop-color="#5DB666"/> </linearGradient> <linearGradient id="Gradient_69" gradientUnits="userSpaceOnUse" x1="42.05" y1="-28.1" x2="42.05" y2="28.1"> <stop offset="0%" stop-color="#71CF93"/> <stop offset="100%" stop-color="#59B15C"/> </linearGradient> <linearGradient id="Gradient_70" gradientUnits="userSpaceOnUse" x1="0.05" y1="-28.05" x2="0.05" y2="28.150000000000002"> <stop offset="0%" stop-color="#71CF93"/> <stop offset="100%" stop-color="#59B15C"/> </linearGradient> <linearGradient id="Gradient_71" gradientUnits="userSpaceOnUse" x1="-44.95" y1="-28.1" x2="-44.95" y2="28.1"> <stop offset="0%" stop-color="#71CF93"/> <stop offset="100%" stop-color="#59B15C"/> </linearGradient> <linearGradient id="Gradient_72" gradientUnits="userSpaceOnUse" x1="-11.05" y1="-5.6000000000000005" x2="-11.05" y2="16.5"> <stop offset="0%" stop-color="#58A76A"/> <stop offset="100%" stop-color="#5EB768"/> </linearGradient> <linearGradient id="Gradient_73" gradientUnits="userSpaceOnUse" x1="-88.9" y1="-28.1" x2="-88.9" y2="28.1"> <stop offset="0%" stop-color="#71CF93"/> <stop offset="100%" stop-color="#59B15C"/> </linearGradient> <linearGradient id="Gradient_74" gradientUnits="userSpaceOnUse" x1="-11.05" y1="-5.6000000000000005" x2="-11.05" y2="16.5"> <stop offset="0%" stop-color="#647EC9"/> <stop offset="100%" stop-color="#6F80E9"/> </linearGradient> <linearGradient id="Gradient_75" gradientUnits="userSpaceOnUse" x1="-88.9" y1="-28.1" x2="-88.9" y2="28.1"> <stop offset="0%" stop-color="#7BAAEB"/> <stop offset="100%" stop-color="#6C75E9"/> </linearGradient> <linearGradient id="Gradient_76" gradientUnits="userSpaceOnUse" x1="-44.95" y1="-28.1" x2="-44.95" y2="28.1"> <stop offset="0%" stop-color="#7BAAEB"/> <stop offset="100%" stop-color="#6C75E9"/> </linearGradient> <linearGradient id="Gradient_77" gradientUnits="userSpaceOnUse" x1="0.05" y1="-28.05" x2="0.05" y2="28.150000000000002"> <stop offset="0%" stop-color="#7BAAEB"/> <stop offset="100%" stop-color="#6C75E9"/> </linearGradient> <linearGradient id="Gradient_78" gradientUnits="userSpaceOnUse" x1="-9.95" y1="-0.8000000000000007" x2="-9.95" y2="18.6"> <stop offset="0%" stop-color="#6078C5"/> <stop offset="100%" stop-color="#6E7EE9"/> </linearGradient> <linearGradient id="Gradient_79" gradientUnits="userSpaceOnUse" x1="42.05" y1="-28.1" x2="42.05" y2="28.1"> <stop offset="0%" stop-color="#7BAAEB"/> <stop offset="100%" stop-color="#6C75E9"/> </linearGradient> <linearGradient id="Gradient_80" gradientUnits="userSpaceOnUse" x1="82.05" y1="-28.1" x2="82.05" y2="28.1"> <stop offset="0%" stop-color="#7BAAEB"/> <stop offset="100%" stop-color="#6C75E9"/> </linearGradient> <linearGradient id="Gradient_81" gradientUnits="userSpaceOnUse" x1="-8.8" y1="-15.350000000000001" x2="-8.8" y2="1.4500000000000002"> <stop offset="0%" stop-color="#6788CA"/> <stop offset="100%" stop-color="#738FE9"/> </linearGradient> <linearGradient id="Gradient_82" gradientUnits="userSpaceOnUse" x1="125.05" y1="-28.05" x2="125.05" y2="28.150000000000002"> <stop offset="0%" stop-color="#7BAAEB"/> <stop offset="100%" stop-color="#6C75E9"/> </linearGradient> <linearGradient id="Gradient_83" gradientUnits="userSpaceOnUse" x1="-8.8" y1="-15.350000000000001" x2="-8.8" y2="1.4500000000000002"> <stop offset="0%" stop-color="#DE7CBB"/> <stop offset="100%" stop-color="#FF85C8"/> </linearGradient> <linearGradient id="Gradient_84" gradientUnits="userSpaceOnUse" x1="125.05" y1="-28.05" x2="125.05" y2="28.150000000000002"> <stop offset="0%" stop-color="#FF99E7"/> <stop offset="100%" stop-color="#FF72A9"/> </linearGradient> <linearGradient id="Gradient_85" gradientUnits="userSpaceOnUse" x1="82.05" y1="-28.1" x2="82.05" y2="28.1"> <stop offset="0%" stop-color="#FF99E7"/> <stop offset="100%" stop-color="#FF72A9"/> </linearGradient> <linearGradient id="Gradient_86" gradientUnits="userSpaceOnUse" x1="-9.95" y1="-0.8000000000000007" x2="-9.95" y2="18.6"> <stop offset="0%" stop-color="#D870A9"/> <stop offset="100%" stop-color="#FF78B3"/> </linearGradient> <linearGradient id="Gradient_87" gradientUnits="userSpaceOnUse" x1="42.05" y1="-28.1" x2="42.05" y2="28.1"> <stop offset="0%" stop-color="#FF99E7"/> <stop offset="100%" stop-color="#FF72A9"/> </linearGradient> <linearGradient id="Gradient_88" gradientUnits="userSpaceOnUse" x1="0.05" y1="-28.05" x2="0.05" y2="28.150000000000002"> <stop offset="0%" stop-color="#FF99E7"/> <stop offset="100%" stop-color="#FF72A9"/> </linearGradient> <linearGradient id="Gradient_89" gradientUnits="userSpaceOnUse" x1="-44.95" y1="-28.1" x2="-44.95" y2="28.1"> <stop offset="0%" stop-color="#FF99E7"/> <stop offset="100%" stop-color="#FF72A9"/> </linearGradient> <linearGradient id="Gradient_90" gradientUnits="userSpaceOnUse" x1="-11.05" y1="-5.6000000000000005" x2="-11.05" y2="16.5"> <stop offset="0%" stop-color="#DD75B0"/> <stop offset="100%" stop-color="#FF7AB6"/> </linearGradient> <linearGradient id="Gradient_91" gradientUnits="userSpaceOnUse" x1="-88.9" y1="-28.1" x2="-88.9" y2="28.1"> <stop offset="0%" stop-color="#FF99E7"/> <stop offset="100%" stop-color="#FF72A9"/> </linearGradient> <linearGradient id="Gradient_92" gradientUnits="userSpaceOnUse" x1="-8.8" y1="-15.350000000000001" x2="-8.8" y2="1.4500000000000002"> <stop offset="0%" stop-color="#E9B343"/> <stop offset="100%" stop-color="#FBB83A"/> </linearGradient> <linearGradient id="Gradient_93" gradientUnits="userSpaceOnUse" x1="125.05" y1="-28.05" x2="125.05" y2="28.150000000000002"> <stop offset="0%" stop-color="#FFCD59"/> <stop offset="100%" stop-color="#F7A41B"/> </linearGradient> <linearGradient id="Gradient_94" gradientUnits="userSpaceOnUse" x1="82.05" y1="-28.1" x2="82.05" y2="28.1"> <stop offset="0%" stop-color="#FFCD59"/> <stop offset="100%" stop-color="#F7A41B"/> </linearGradient> <linearGradient id="Gradient_95" gradientUnits="userSpaceOnUse" x1="-9.95" y1="-0.8000000000000007" x2="-9.95" y2="18.6"> <stop offset="0%" stop-color="#E3A634"/> <stop offset="100%" stop-color="#F8AB26"/> </linearGradient> <linearGradient id="Gradient_96" gradientUnits="userSpaceOnUse" x1="42.05" y1="-28.1" x2="42.05" y2="28.1"> <stop offset="0%" stop-color="#FFCD59"/> <stop offset="100%" stop-color="#F7A41B"/> </linearGradient> <linearGradient id="Gradient_97" gradientUnits="userSpaceOnUse" x1="0.05" y1="-28.05" x2="0.05" y2="28.150000000000002"> <stop offset="0%" stop-color="#FFCD59"/> <stop offset="100%" stop-color="#F7A41B"/> </linearGradient> <linearGradient id="Gradient_98" gradientUnits="userSpaceOnUse" x1="-44.95" y1="-28.1" x2="-44.95" y2="28.1"> <stop offset="0%" stop-color="#FFCD59"/> <stop offset="100%" stop-color="#F7A41B"/> </linearGradient> <linearGradient id="Gradient_99" gradientUnits="userSpaceOnUse" x1="-11.05" y1="-5.6000000000000005" x2="-11.05" y2="16.5"> <stop offset="0%" stop-color="#E7AC3A"/> <stop offset="100%" stop-color="#F8AD28"/> </linearGradient> <linearGradient id="Gradient_100" gradientUnits="userSpaceOnUse" x1="-88.9" y1="-28.1" x2="-88.9" y2="28.1"> <stop offset="0%" stop-color="#FFCD59"/> <stop offset="100%" stop-color="#F7A41B"/> </linearGradient> <g id="Symbol_Shadow_FILL"> <path fill="#58697B" fill-opacity="0.09803921568627451" stroke="none" d=" M 16.95 -7.1 Q 9.95 -10 0 -10 -9.95 -10 -17 -7.1 -24 -4.15 -24 0 -24 4.1 -17 7.05 -9.95 10 0 10 9.95 10 16.95 7.05 24 4.1 24 0 24 -4.15 16.95 -7.1 Z"/> </g> <g id="Symbol_Body_0_FILL"> <path fill="url(#Gradient_1)" stroke="none" d=" M 40 -26 Q 39.75 -36 29.45 -36 L -29.5 -36 Q -39.75 -36 -40 -26 L -40 29.95 Q -39.75 40 -29.5 40 L 29.45 40 Q 39.75 40 40 29.95 L 40 -26 Z"/> <path fill="url(#Gradient_2)" stroke="none" d=" M 40 -29.5 Q 40 -40 29.45 -40 L -29.5 -40 Q -40 -40 -40 -29.5 L -40 -26 Q -39.75 -36 -29.5 -36 L 29.45 -36 Q 39.75 -36 40 -26 L 40 -29.5 Z"/> </g> <g id="Symbol_Body_1_FILL"> <path fill="url(#Gradient_3)" stroke="none" d=" M 28.3 -24.3 Q 16.6 -36 0 -36 -16.6 -36 -28.3 -24.3 -39.3 -13.3 -39.95 2 -39.3 17.3 -28.3 28.3 -16.6 40 0 40 16.6 40 28.3 28.3 39.3 17.3 39.95 2 39.3 -13.3 28.3 -24.3 Z"/> <path fill="url(#Gradient_4)" stroke="none" d=" M 28.3 -28.3 Q 16.6 -40 0 -40 -16.6 -40 -28.3 -28.3 -40 -16.6 -40 0 -40 1 -39.95 2 -39.3 -13.3 -28.3 -24.3 -16.6 -36 0 -36 16.6 -36 28.3 -24.3 39.3 -13.3 39.95 2 40 1 40 0 40 -16.6 28.3 -28.3 Z"/> </g> <g id="Symbol_Body_2_FILL"> <path fill="url(#Gradient_5)" stroke="none" d=" M 19.75 -34.25 Q 12.4 -36 0 -36 -12.45 -36 -19.75 -34.25 -27.6 -32.35 -32 -28 -36.35 -23.6 -38.25 -15.75 -39.8 -9.15 -39.95 1.5 -39.95 2 -39.95 2.5 -39.8 13.15 -38.25 19.75 -36.35 27.65 -32 32 -27.6 36.4 -19.75 38.25 -12.45 40 0 40 12.4 40 19.75 38.25 27.65 36.4 32 32 36.4 27.65 38.25 19.75 39.8 13.25 40 2.75 40 2.6 40 2.5 L 40 1.25 Q 39.8 -9.25 38.25 -15.75 36.4 -23.6 32 -28 27.65 -32.35 19.75 -34.25 Z"/> <path fill="url(#Gradient_6)" stroke="none" d=" M 0 -36 Q 12.4 -36 19.75 -34.25 27.65 -32.35 32 -28 36.4 -23.6 38.25 -15.75 39.8 -9.25 40 1.25 40 0.65 40 0 40 -12.4 38.25 -19.75 36.4 -27.6 32 -32 27.65 -36.35 19.75 -38.25 12.4 -40 0 -40 -12.45 -40 -19.75 -38.25 -27.6 -36.35 -32 -32 -36.35 -27.6 -38.25 -19.75 -40 -12.4 -40 0 -40 0.75 -39.95 1.5 -39.8 -9.15 -38.25 -15.75 -36.35 -23.6 -32 -28 -27.6 -32.35 -19.75 -34.25 -12.45 -36 0 -36 Z"/> </g> <g id="Symbol_Body_3_FILL"> <path fill="url(#Gradient_7)" stroke="none" d=" M 23 -19 Q 6 -36 0 -36 -6 -36 -23 -19 -37.5 -4.4 -39.65 2.05 -39.55 2.3 -39.45 2.6 -36.95 9.15 -23 23 -6.05 40 0 40 6 40 23 23 36.95 9.15 39.5 2.6 39.6 2.35 39.65 2.1 37.6 -4.35 23 -19 Z"/> <path fill="url(#Gradient_8)" stroke="none" d=" M 23 -23 Q 6 -40 0 -40 -6 -40 -23 -23 -40 -5.9 -40 0 -40 0.9 -39.65 2.05 -37.5 -4.4 -23 -19 -6 -36 0 -36 6 -36 23 -19 37.6 -4.35 39.65 2.1 40 0.9 40 0 40 -5.9 23 -23 Z"/> </g> <g id="Symbol_Body_4_FILL"> <path fill="url(#Gradient_9)" stroke="none" d=" M 40 -26 Q 39.75 -36 29.45 -36 L -29.5 -36 Q -39.75 -36 -40 -26 L -40 29.95 Q -39.75 40 -29.5 40 L 29.45 40 Q 39.75 40 40 29.95 L 40 -26 Z"/> <path fill="url(#Gradient_10)" stroke="none" d=" M 40 -29.5 Q 40 -40 29.45 -40 L -29.5 -40 Q -40 -40 -40 -29.5 L -40 -26 Q -39.75 -36 -29.5 -36 L 29.45 -36 Q 39.75 -36 40 -26 L 40 -29.5 Z"/> </g> <g id="Symbol_Body_5_FILL"> <path fill="url(#Gradient_11)" stroke="none" d=" M 28.3 -24.3 Q 16.6 -36 0 -36 -16.6 -36 -28.3 -24.3 -39.3 -13.3 -39.95 2 -39.3 17.3 -28.3 28.3 -16.6 40 0 40 16.6 40 28.3 28.3 39.3 17.3 39.95 2 39.3 -13.3 28.3 -24.3 Z"/> <path fill="url(#Gradient_12)" stroke="none" d=" M 28.3 -28.3 Q 16.6 -40 0 -40 -16.6 -40 -28.3 -28.3 -40 -16.6 -40 0 -40 1 -39.95 2 -39.3 -13.3 -28.3 -24.3 -16.6 -36 0 -36 16.6 -36 28.3 -24.3 39.3 -13.3 39.95 2 40 1 40 0 40 -16.6 28.3 -28.3 Z"/> </g> <g id="Symbol_Body_6_FILL"> <path fill="url(#Gradient_9)" stroke="none" d=" M 19.75 -34.25 Q 12.4 -36 0 -36 -12.45 -36 -19.75 -34.25 -27.6 -32.35 -32 -28 -36.35 -23.6 -38.25 -15.75 -39.8 -9.15 -39.95 1.5 -39.95 2 -39.95 2.5 -39.8 13.15 -38.25 19.75 -36.35 27.65 -32 32 -27.6 36.4 -19.75 38.25 -12.45 40 0 40 12.4 40 19.75 38.25 27.65 36.4 32 32 36.4 27.65 38.25 19.75 39.8 13.25 40 2.75 40 2.6 40 2.5 L 40 1.25 Q 39.8 -9.25 38.25 -15.75 36.4 -23.6 32 -28 27.65 -32.35 19.75 -34.25 Z"/> <path fill="url(#Gradient_13)" stroke="none" d=" M 19.75 -38.25 Q 12.4 -40 0 -40 -12.45 -40 -19.75 -38.25 -27.6 -36.35 -32 -32 -36.35 -27.6 -38.25 -19.75 -40 -12.4 -40 0 -40 0.75 -39.95 1.5 -39.8 -9.15 -38.25 -15.75 -36.35 -23.6 -32 -28 -27.6 -32.35 -19.75 -34.25 -12.45 -36 0 -36 12.4 -36 19.75 -34.25 27.65 -32.35 32 -28 36.4 -23.6 38.25 -15.75 39.8 -9.25 40 1.25 40 0.65 40 0 40 -12.4 38.25 -19.75 36.4 -27.6 32 -32 27.65 -36.35 19.75 -38.25 Z"/> </g> <g id="Symbol_Body_7_FILL"> <path fill="url(#Gradient_9)" stroke="none" d=" M 23 -19 Q 6 -36 0 -36 -6 -36 -23 -19 -37.5 -4.4 -39.65 2.05 -39.55 2.3 -39.45 2.6 -36.95 9.15 -23 23 -6.05 40 0 40 6 40 23 23 36.95 9.15 39.5 2.6 39.6 2.35 39.65 2.1 37.6 -4.35 23 -19 Z"/> <path fill="url(#Gradient_14)" stroke="none" d=" M 23 -23 Q 6 -40 0 -40 -6 -40 -23 -23 -40 -5.9 -40 0 -40 0.9 -39.65 2.05 -37.5 -4.4 -23 -19 -6 -36 0 -36 6 -36 23 -19 37.6 -4.35 39.65 2.1 40 0.9 40 0 40 -5.9 23 -23 Z"/> </g> <g id="Symbol_Body_8_FILL"> <path fill="url(#Gradient_15)" stroke="none" d=" M 40 -26 Q 39.75 -36 29.45 -36 L -29.5 -36 Q -39.75 -36 -40 -26 L -40 29.95 Q -39.75 40 -29.5 40 L 29.45 40 Q 39.75 40 40 29.95 L 40 -26 Z"/> <path fill="url(#Gradient_16)" stroke="none" d=" M 40 -29.5 Q 40 -40 29.45 -40 L -29.5 -40 Q -40 -40 -40 -29.5 L -40 -26 Q -39.75 -36 -29.5 -36 L 29.45 -36 Q 39.75 -36 40 -26 L 40 -29.5 Z"/> </g> <g id="Symbol_Body_9_FILL"> <path fill="url(#Gradient_17)" stroke="none" d=" M 28.3 -24.3 Q 16.6 -36 0 -36 -16.6 -36 -28.3 -24.3 -39.3 -13.3 -39.95 2 -39.3 17.3 -28.3 28.3 -16.6 40 0 40 16.6 40 28.3 28.3 39.3 17.3 39.95 2 39.3 -13.3 28.3 -24.3 Z"/> <path fill="url(#Gradient_18)" stroke="none" d=" M 28.3 -28.3 Q 16.6 -40 0 -40 -16.6 -40 -28.3 -28.3 -40 -16.6 -40 0 -40 1 -39.95 2 -39.3 -13.3 -28.3 -24.3 -16.6 -36 0 -36 16.6 -36 28.3 -24.3 39.3 -13.3 39.95 2 40 1 40 0 40 -16.6 28.3 -28.3 Z"/> </g> <g id="Symbol_Body_10_FILL"> <path fill="url(#Gradient_19)" stroke="none" d=" M 19.75 -34.25 Q 12.4 -36 0 -36 -12.45 -36 -19.75 -34.25 -27.6 -32.35 -32 -28 -36.35 -23.6 -38.25 -15.75 -39.8 -9.15 -39.95 1.5 -39.95 2 -39.95 2.5 -39.8 13.15 -38.25 19.75 -36.35 27.65 -32 32 -27.6 36.4 -19.75 38.25 -12.45 40 0 40 12.4 40 19.75 38.25 27.65 36.4 32 32 36.4 27.65 38.25 19.75 39.8 13.25 40 2.75 40 2.6 40 2.5 L 40 1.25 Q 39.8 -9.25 38.25 -15.75 36.4 -23.6 32 -28 27.65 -32.35 19.75 -34.25 Z"/> <path fill="url(#Gradient_20)" stroke="none" d=" M 19.75 -38.25 Q 12.4 -40 0 -40 -12.45 -40 -19.75 -38.25 -27.6 -36.35 -32 -32 -36.35 -27.6 -38.25 -19.75 -40 -12.4 -40 0 -40 0.75 -39.95 1.5 -39.8 -9.15 -38.25 -15.75 -36.35 -23.6 -32 -28 -27.6 -32.35 -19.75 -34.25 -12.45 -36 0 -36 12.4 -36 19.75 -34.25 27.65 -32.35 32 -28 36.4 -23.6 38.25 -15.75 39.8 -9.25 40 1.25 40 0.65 40 0 40 -12.4 38.25 -19.75 36.4 -27.6 32 -32 27.65 -36.35 19.75 -38.25 Z"/> </g> <g id="Symbol_Body_11_FILL"> <path fill="url(#Gradient_21)" stroke="none" d=" M 23 -19 Q 6 -36 0 -36 -6 -36 -23 -19 -37.5 -4.4 -39.65 2.05 -39.55 2.3 -39.45 2.6 -36.95 9.15 -23 23 -6.05 40 0 40 6 40 23 23 36.95 9.15 39.5 2.6 39.6 2.35 39.65 2.1 37.6 -4.35 23 -19 Z"/> <path fill="url(#Gradient_22)" stroke="none" d=" M 23 -23 Q 6 -40 0 -40 -6 -40 -23 -23 -40 -5.9 -40 0 -40 0.9 -39.65 2.05 -37.5 -4.4 -23 -19 -6 -36 0 -36 6 -36 23 -19 37.6 -4.35 39.65 2.1 40 0.9 40 0 40 -5.9 23 -23 Z"/> </g> <g id="Symbol_Body_12_FILL"> <path fill="url(#Gradient_23)" stroke="none" d=" M 40 -26 Q 39.75 -36 29.45 -36 L -29.5 -36 Q -39.75 -36 -40 -26 L -40 29.95 Q -39.75 40 -29.5 40 L 29.45 40 Q 39.75 40 40 29.95 L 40 -26 Z"/> <path fill="url(#Gradient_24)" stroke="none" d=" M 40 -29.5 Q 40 -40 29.45 -40 L -29.5 -40 Q -40 -40 -40 -29.5 L -40 -26 Q -39.75 -36 -29.5 -36 L 29.45 -36 Q 39.75 -36 40 -26 L 40 -29.5 Z"/> </g> <g id="Symbol_Body_13_FILL"> <path fill="url(#Gradient_25)" stroke="none" d=" M 28.3 -24.3 Q 16.6 -36 0 -36 -16.6 -36 -28.3 -24.3 -39.3 -13.3 -39.95 2 -39.3 17.3 -28.3 28.3 -16.6 40 0 40 16.6 40 28.3 28.3 39.3 17.3 39.95 2 39.3 -13.3 28.3 -24.3 Z"/> <path fill="url(#Gradient_26)" stroke="none" d=" M 28.3 -28.3 Q 16.6 -40 0 -40 -16.6 -40 -28.3 -28.3 -40 -16.6 -40 0 -40 1 -39.95 2 -39.3 -13.3 -28.3 -24.3 -16.6 -36 0 -36 16.6 -36 28.3 -24.3 39.3 -13.3 39.95 2 40 1 40 0 40 -16.6 28.3 -28.3 Z"/> </g> <g id="Symbol_Body_14_FILL"> <path fill="url(#Gradient_27)" stroke="none" d=" M 19.75 -34.25 Q 12.4 -36 0 -36 -12.45 -36 -19.75 -34.25 -27.6 -32.35 -32 -28 -36.35 -23.6 -38.25 -15.75 -39.8 -9.15 -39.95 1.5 -39.95 2 -39.95 2.5 -39.8 13.15 -38.25 19.75 -36.35 27.65 -32 32 -27.6 36.4 -19.75 38.25 -12.45 40 0 40 12.4 40 19.75 38.25 27.65 36.4 32 32 36.4 27.65 38.25 19.75 39.8 13.25 40 2.75 40 2.6 40 2.5 L 40 1.25 Q 39.8 -9.25 38.25 -15.75 36.4 -23.6 32 -28 27.65 -32.35 19.75 -34.25 Z"/> <path fill="url(#Gradient_28)" stroke="none" d=" M 0 -36 Q 12.4 -36 19.75 -34.25 27.65 -32.35 32 -28 36.4 -23.6 38.25 -15.75 39.8 -9.25 40 1.25 40 0.65 40 0 40 -12.4 38.25 -19.75 36.4 -27.6 32 -32 27.65 -36.35 19.75 -38.25 12.4 -40 0 -40 -12.45 -40 -19.75 -38.25 -27.6 -36.35 -32 -32 -36.35 -27.6 -38.25 -19.75 -40 -12.4 -40 0 -40 0.75 -39.95 1.5 -39.8 -9.15 -38.25 -15.75 -36.35 -23.6 -32 -28 -27.6 -32.35 -19.75 -34.25 -12.45 -36 0 -36 Z"/> </g> <g id="Symbol_Body_15_FILL"> <path fill="url(#Gradient_29)" stroke="none" d=" M 23 -19 Q 6 -36 0 -36 -6 -36 -23 -19 -37.5 -4.4 -39.65 2.05 -39.55 2.3 -39.45 2.6 -36.95 9.15 -23 23 -6.05 40 0 40 6 40 23 23 36.95 9.15 39.5 2.6 39.6 2.35 39.65 2.1 37.6 -4.35 23 -19 Z"/> <path fill="url(#Gradient_30)" stroke="none" d=" M 23 -23 Q 6 -40 0 -40 -6 -40 -23 -23 -40 -5.9 -40 0 -40 0.9 -39.65 2.05 -37.5 -4.4 -23 -19 -6 -36 0 -36 6 -36 23 -19 37.6 -4.35 39.65 2.1 40 0.9 40 0 40 -5.9 23 -23 Z"/> </g> <g id="Symbol_Body_16_FILL"> <path fill="url(#Gradient_31)" stroke="none" d=" M 23 -19 Q 6 -36 0 -36 -6 -36 -23 -19 -37.5 -4.4 -39.65 2.05 -39.55 2.3 -39.45 2.6 -36.95 9.15 -23 23 -6.05 40 0 40 6 40 23 23 36.95 9.15 39.5 2.6 39.6 2.35 39.65 2.1 37.6 -4.35 23 -19 Z"/> <path fill="url(#Gradient_32)" stroke="none" d=" M 23 -23 Q 6 -40 0 -40 -6 -40 -23 -23 -40 -5.9 -40 0 -40 0.9 -39.65 2.05 -37.5 -4.4 -23 -19 -6 -36 0 -36 6 -36 23 -19 37.6 -4.35 39.65 2.1 40 0.9 40 0 40 -5.9 23 -23 Z"/> </g> <g id="Symbol_Body_17_FILL"> <path fill="url(#Gradient_33)" stroke="none" d=" M 19.75 -34.25 Q 12.4 -36 0 -36 -12.45 -36 -19.75 -34.25 -27.6 -32.35 -32 -28 -36.35 -23.6 -38.25 -15.75 -39.8 -9.15 -39.95 1.5 -39.95 2 -39.95 2.5 -39.8 13.15 -38.25 19.75 -36.35 27.65 -32 32 -27.6 36.4 -19.75 38.25 -12.45 40 0 40 12.4 40 19.75 38.25 27.65 36.4 32 32 36.4 27.65 38.25 19.75 39.8 13.25 40 2.75 40 2.6 40 2.5 L 40 1.25 Q 39.8 -9.25 38.25 -15.75 36.4 -23.6 32 -28 27.65 -32.35 19.75 -34.25 Z"/> <path fill="url(#Gradient_34)" stroke="none" d=" M 19.75 -38.25 Q 12.4 -40 0 -40 -12.45 -40 -19.75 -38.25 -27.6 -36.35 -32 -32 -36.35 -27.6 -38.25 -19.75 -40 -12.4 -40 0 -40 0.75 -39.95 1.5 -39.8 -9.15 -38.25 -15.75 -36.35 -23.6 -32 -28 -27.6 -32.35 -19.75 -34.25 -12.45 -36 0 -36 12.4 -36 19.75 -34.25 27.65 -32.35 32 -28 36.4 -23.6 38.25 -15.75 39.8 -9.25 40 1.25 40 0.65 40 0 40 -12.4 38.25 -19.75 36.4 -27.6 32 -32 27.65 -36.35 19.75 -38.25 Z"/> </g> <g id="Symbol_Body_18_FILL"> <path fill="url(#Gradient_35)" stroke="none" d=" M 28.3 -24.3 Q 16.6 -36 0 -36 -16.6 -36 -28.3 -24.3 -39.3 -13.3 -39.95 2 -39.3 17.3 -28.3 28.3 -16.6 40 0 40 16.6 40 28.3 28.3 39.3 17.3 39.95 2 39.3 -13.3 28.3 -24.3 Z"/> <path fill="url(#Gradient_36)" stroke="none" d=" M 28.3 -28.3 Q 16.6 -40 0 -40 -16.6 -40 -28.3 -28.3 -40 -16.6 -40 0 -40 1 -39.95 2 -39.3 -13.3 -28.3 -24.3 -16.6 -36 0 -36 16.6 -36 28.3 -24.3 39.3 -13.3 39.95 2 40 1 40 0 40 -16.6 28.3 -28.3 Z"/> </g> <g id="Symbol_Body_19_FILL"> <path fill="url(#Gradient_37)" stroke="none" d=" M 40 -26 Q 39.75 -36 29.45 -36 L -29.5 -36 Q -39.75 -36 -40 -26 L -40 29.95 Q -39.75 40 -29.5 40 L 29.45 40 Q 39.75 40 40 29.95 L 40 -26 Z"/> <path fill="url(#Gradient_38)" stroke="none" d=" M 29.45 -36 Q 39.75 -36 40 -26 L 40 -29.5 Q 40 -40 29.45 -40 L -29.5 -40 Q -40 -40 -40 -29.5 L -40 -26 Q -39.75 -36 -29.5 -36 L 29.45 -36 Z"/> </g> <g id="Symbol_Body_20_FILL"> <path fill="url(#Gradient_39)" stroke="none" d=" M 40 -26 Q 39.75 -36 29.45 -36 L -29.5 -36 Q -39.75 -36 -40 -26 L -40 29.95 Q -39.75 40 -29.5 40 L 29.45 40 Q 39.75 40 40 29.95 L 40 -26 Z"/> <path fill="url(#Gradient_40)" stroke="none" d=" M 29.45 -36 Q 39.75 -36 40 -26 L 40 -29.5 Q 40 -40 29.45 -40 L -29.5 -40 Q -40 -40 -40 -29.5 L -40 -26 Q -39.75 -36 -29.5 -36 L 29.45 -36 Z"/> </g> <g id="Symbol_Body_21_FILL"> <path fill="url(#Gradient_41)" stroke="none" d=" M 28.3 -24.3 Q 16.6 -36 0 -36 -16.6 -36 -28.3 -24.3 -39.3 -13.3 -39.95 2 -39.3 17.3 -28.3 28.3 -16.6 40 0 40 16.6 40 28.3 28.3 39.3 17.3 39.95 2 39.3 -13.3 28.3 -24.3 Z"/> <path fill="url(#Gradient_42)" stroke="none" d=" M 28.3 -28.3 Q 16.6 -40 0 -40 -16.6 -40 -28.3 -28.3 -40 -16.6 -40 0 -40 1 -39.95 2 -39.3 -13.3 -28.3 -24.3 -16.6 -36 0 -36 16.6 -36 28.3 -24.3 39.3 -13.3 39.95 2 40 1 40 0 40 -16.6 28.3 -28.3 Z"/> </g> <g id="Symbol_Body_22_FILL"> <path fill="url(#Gradient_43)" stroke="none" d=" M 19.75 -34.25 Q 12.4 -36 0 -36 -12.45 -36 -19.75 -34.25 -27.6 -32.35 -32 -28 -36.35 -23.6 -38.25 -15.75 -39.8 -9.15 -39.95 1.5 -39.95 2 -39.95 2.5 -39.8 13.15 -38.25 19.75 -36.35 27.65 -32 32 -27.6 36.4 -19.75 38.25 -12.45 40 0 40 12.4 40 19.75 38.25 27.65 36.4 32 32 36.4 27.65 38.25 19.75 39.8 13.25 40 2.75 40 2.6 40 2.5 L 40 1.25 Q 39.8 -9.25 38.25 -15.75 36.4 -23.6 32 -28 27.65 -32.35 19.75 -34.25 Z"/> <path fill="url(#Gradient_44)" stroke="none" d=" M 0 -36 Q 12.4 -36 19.75 -34.25 27.65 -32.35 32 -28 36.4 -23.6 38.25 -15.75 39.8 -9.25 40 1.25 40 0.65 40 0 40 -12.4 38.25 -19.75 36.4 -27.6 32 -32 27.65 -36.35 19.75 -38.25 12.4 -40 0 -40 -12.45 -40 -19.75 -38.25 -27.6 -36.35 -32 -32 -36.35 -27.6 -38.25 -19.75 -40 -12.4 -40 0 -40 0.75 -39.95 1.5 -39.8 -9.15 -38.25 -15.75 -36.35 -23.6 -32 -28 -27.6 -32.35 -19.75 -34.25 -12.45 -36 0 -36 Z"/> </g> <g id="Symbol_Body_23_FILL"> <path fill="url(#Gradient_45)" stroke="none" d=" M 23 -19 Q 6 -36 0 -36 -6 -36 -23 -19 -37.5 -4.4 -39.65 2.05 -39.55 2.3 -39.45 2.6 -36.95 9.15 -23 23 -6.05 40 0 40 6 40 23 23 36.95 9.15 39.5 2.6 39.6 2.35 39.65 2.1 37.6 -4.35 23 -19 Z"/> <path fill="url(#Gradient_46)" stroke="none" d=" M 23 -23 Q 6 -40 0 -40 -6 -40 -23 -23 -40 -5.9 -40 0 -40 0.9 -39.65 2.05 -37.5 -4.4 -23 -19 -6 -36 0 -36 6 -36 23 -19 37.6 -4.35 39.65 2.1 40 0.9 40 0 40 -5.9 23 -23 Z"/> </g> <g id="Symbol_Hand_0_FILL"> <path fill="url(#Gradient_47)" stroke="#fff" stroke-width="1" d=" M -13 -9.9 Q -12.75 -7.1 -13.1 -4.7 -13.6 -1.25 -15.55 1.4 -15.7 1.6 -15.8 1.7 L -2.4 -9.15 Q -2.4 -10 -2.5 -10.8 -2.7 -12.9 -4.45 -14.25 -6.05 -15.5 -8.25 -15.35 -10.4 -15.15 -11.8 -13.55 -13.2 -11.85 -13 -9.9 Z"/> <path fill="url(#Gradient_48)" stroke="#fff" stroke-width="1" d=" M 11.9 -17.95 Q 11.6 -17.95 11.35 -17.95 9.85 -17.85 8.55 -16.95 3.05 -13 -2.4 -9.15 L -15.8 1.7 Q -17.8 5.45 -16.4 10 -16 11 -15.45 11.95 -12.9 16.1 -7.75 17.45 -3.85 18.5 -0.2 17.55 0.4 17.4 1 17.2 L 7.1 15.25 Q 7.6 15.1 8.05 14.95 8.2 14.9 8.35 14.85 10.45 13.85 11.35 11.85 12.4 9.6 11.4 7.45 11.25 7.1 11.05 6.75 11.4 6.05 11.6 5.25 12.2 3 11 0.95 10.1 -0.45 8.65 -1.2 L 8.6 -1.25 6.05 -2.55 Q 10.4 -5.7 14.85 -8.85 16.6 -10.15 16.95 -12.25 17.2 -14.3 15.85 -16 14.55 -17.65 12.4 -17.9 12.15 -17.95 11.9 -17.95 Z"/> </g> <g id="Symbol_Hand_1_FILL"> <path fill="url(#Gradient_49)" stroke="#fff" stroke-width="1" d=" M 5.3 -18 Q 4.5 -18.5 3.55 -18.75 1.2 -19.4 -0.95 -18.25 -1.15 -18.15 -1.35 -18 -3.1 -16.85 -3.7 -14.85 -4.6 -11.7 -6.45 -8.9 -7.65 -7 -9.3 -5.3 -9.5 -5.1 -9.7 -4.85 -14.4 -0.7 -15.15 2.05 -16 4.15 -16 6.55 -16 11.7 -12.2 15.35 -8.4 19 -3.05 19 0 19 1.3 19 4.25 19 6.5 19 9.4 19 11.45 17.05 12.95 15.6 12.55 12.5 15.4 12.3 16 8.85 16 8.65 16 8.45 16 6.25 14.7 4.55 15.9 2.85 15.9 0.7 15.9 -2.1 13.85 -4.05 11.8 -6.05 8.9 -6.05 6.45 -6.05 5.4 -5.75 6.55 -8.05 7.6 -11.85 8.25 -14.05 7.1 -16.05 6.35 -17.3 5.3 -18 Z"/> </g> <g id="Symbol_Hand_2_FILL"> <path fill="url(#Gradient_50)" stroke="#fff" stroke-width="1" d=" M -13.1 11.05 Q -11.3 16.45 -5.9 18.65 L -9.6 -0.8 Q -12.6 0.25 -13.6 3.45 -14.5 6.75 -13.25 10.5 -13.15 10.75 -13.1 11.05 Z"/> <path fill="url(#Gradient_51)" stroke="#fff" stroke-width="1" d=" M 5.55 -18.6 Q 4.35 -19.9 2.6 -20 0.85 -20.05 -0.45 -18.9 -0.9 -18.5 -1.2 -18 -1.8 -17.1 -1.85 -15.95 -2 -12.3 -2.2 -9.2 L -2.55 -9.15 Q -2.95 -12.45 -3.5 -16.3 -3.65 -17.25 -4.1 -18 -4.55 -18.6 -5.15 -19.1 -6.55 -20.1 -8.35 -19.85 -10.05 -19.6 -11.1 -18.2 -11.2 -18.1 -11.25 -18 -12.15 -16.75 -11.9 -15.15 -10.7 -6.55 -9.6 -0.8 L -5.9 18.65 Q -4.05 19.4 -1.85 19.85 3.1 20.6 7.55 17.65 12.25 14.45 13.2 8.65 13.2 8.55 13.2 8.5 13.2 8.45 13.25 8.35 13.55 6 13.75 4.45 14 1.7 14 1.25 14 0.95 14 0.7 13.8 -0.75 12.7 -1.85 11.4 -3.15 9.6 -3.15 9.3 -3.6 8.9 -4 7.7 -5.25 6 -5.3 6.35 -9.8 6.65 -15.6 6.7 -16.95 6.05 -18 5.8 -18.3 5.55 -18.6 Z"/> </g> <g id="Symbol_Hand_3_FILL"> <path fill="url(#Gradient_52)" stroke="#fff" stroke-width="1" d=" M 8.8 -4.3 Q 6.7 -5.1 3.75 -5.5 1.3 -5.8 -0.4 -5.4 -0.95 -10.3 -1.55 -15.3 -1.75 -16.9 -2.95 -17.95 -3.05 -18 -3.1 -18.05 -4.45 -19.1 -6.15 -18.9 -7.4 -18.75 -8.3 -17.95 -8.6 -17.7 -8.85 -17.35 -9.9 -16 -9.7 -14.3 -8.85 -7.6 -8.2 -1.05 -8.05 0 -7.95 1.05 -9.8 -0.3 -11.85 -1.45 -13.35 -2.3 -15 -1.85 -16.6 -1.4 -17.45 0.1 -18.3 1.55 -17.85 3.2 -17.4 4.85 -15.9 5.7 -12.95 7.4 -10.65 9.4 -8.85 11 -7.5 12.8 -4.9 17.5 -0.2 18.75 0.95 19 2.2 19 6.85 19 10.45 15.5 11.05 14.85 11.6 14.2 14.1 11.15 15.55 3.75 16 1.4 16.5 -0.9 17.4 -5.2 17.95 -9.45 18.2 -11.15 17.15 -12.5 16.15 -13.85 14.45 -14.1 12.8 -14.35 11.45 -13.3 10.05 -12.25 9.85 -10.55 9.4 -7.45 8.8 -4.3 Z"/> </g> <g id="Symbol_Hand_4_FILL"> <path fill="url(#Gradient_53)" stroke="#fff" stroke-width="1" d=" M 6.15 -16 Q 5.8 -17.25 4.9 -18 4.55 -18.3 4.15 -18.5 2.65 -19.35 1.05 -18.8 0.2 -18.55 -0.35 -18 -0.95 -17.5 -1.3 -16.75 -2.1 -15.2 -1.6 -13.55 -0.25 -8.95 0.05 -4.15 -1.85 -9.05 -5.25 -13.7 -6.3 -15.05 -7.95 -15.3 -9.65 -15.55 -10.95 -14.45 -12.3 -13.4 -12.55 -11.7 -12.75 -9.95 -11.75 -8.55 -8.6 -4.35 -7.1 0.15 -6.3 2.45 -6.3 5.7 -8 4.15 -9.95 2 -11.15 0.7 -12.8 0.65 -14.5 0.6 -15.7 1.8 -16.95 3 -17 4.75 -17.05 6.45 -15.9 7.75 -14.95 8.8 -14.05 9.7 -11.65 12.2 -9.5 13.8 -9.45 13.85 -9.4 13.85 L -8.15 14.65 Q -4.35 17.45 0.35 18.7 7.45 20.05 11.35 15.05 11.5 14.85 11.65 14.65 12 14.1 12.35 13.6 14.8 9.05 15.85 0.5 L 16.55 -3.9 Q 16.85 -5.6 16.95 -7.35 17 -7.8 17 -8.25 17.05 -10 15.9 -11.25 14.7 -12.5 13.05 -12.55 11.35 -12.6 10.15 -11.4 8.9 -10.2 8.85 -8.45 8.8 -6.1 8.2 -3.8 7.9 -10.05 6.15 -16 Z"/> </g> <g id="Symbol_Hand_5_FILL"> <path fill="url(#Gradient_54)" stroke="#fff" stroke-width="1" d=" M -12.4 -5.65 Q -12.95 -5.4 -13.45 -5.1 -18.15 -2.45 -16.6 4.35 -15.1 11.15 -10.95 14.05 -8.5 15.8 -5.2 16.5 L -12.4 -5.65 Z"/> <path fill="url(#Gradient_55)" stroke="#fff" stroke-width="1" d=" M 7.6 -12.9 Q 6.6 -16.8 1.15 -17 -3.6 -17.3 -5 -13.75 -6.85 -16.35 -11.1 -13.95 -15.15 -11.7 -12.4 -5.65 L -5.2 16.5 Q -2.95 17 -0.3 17 6.2 17 10.75 12.85 11.3 12.3 11.8 11.75 18.9 2.9 16.4 -7.5 15.45 -11.9 10.8 -12.7 9.05 -13.05 7.6 -12.9 Z"/> </g> <g id="Symbol_Hand_6_FILL"> <path fill="url(#Gradient_56)" stroke="#fff" stroke-width="1" d=" M -12.4 -5.65 Q -12.95 -5.4 -13.45 -5.1 -18.15 -2.45 -16.6 4.35 -15.1 11.15 -10.95 14.05 -8.5 15.8 -5.2 16.5 L -12.4 -5.65 Z"/> <path fill="url(#Gradient_57)" stroke="#fff" stroke-width="1" d=" M 16.4 -7.5 Q 15.45 -11.9 10.8 -12.7 9.05 -13.05 7.6 -12.9 6.6 -16.8 1.15 -17 -3.6 -17.3 -5 -13.75 -6.85 -16.35 -11.1 -13.95 -15.15 -11.7 -12.4 -5.65 L -5.2 16.5 Q -2.95 17 -0.3 17 6.2 17 10.75 12.85 11.3 12.3 11.8 11.75 18.9 2.9 16.4 -7.5 Z"/> </g> <g id="Symbol_Hand_7_FILL"> <path fill="url(#Gradient_58)" stroke="#fff" stroke-width="1" d=" M 4.15 -18.5 Q 2.65 -19.35 1.05 -18.8 0.2 -18.55 -0.35 -18 -0.95 -17.5 -1.3 -16.75 -2.1 -15.2 -1.6 -13.55 -0.25 -8.95 0.05 -4.15 -1.85 -9.05 -5.25 -13.7 -6.3 -15.05 -7.95 -15.3 -9.65 -15.55 -10.95 -14.45 -12.3 -13.4 -12.55 -11.7 -12.75 -9.95 -11.75 -8.55 -8.6 -4.35 -7.1 0.15 -6.3 2.45 -6.3 5.7 -8 4.15 -9.95 2 -11.15 0.7 -12.8 0.65 -14.5 0.6 -15.7 1.8 -16.95 3 -17 4.75 -17.05 6.45 -15.9 7.75 -14.95 8.8 -14.05 9.7 -11.65 12.2 -9.5 13.8 -9.45 13.85 -9.4 13.85 L -8.15 14.65 Q -4.35 17.45 0.35 18.7 7.45 20.05 11.35 15.05 11.5 14.85 11.65 14.65 12 14.1 12.35 13.6 14.8 9.05 15.85 0.5 L 16.55 -3.9 Q 16.85 -5.6 16.95 -7.35 17 -7.8 17 -8.25 17.05 -10 15.9 -11.25 14.7 -12.5 13.05 -12.55 11.35 -12.6 10.15 -11.4 8.9 -10.2 8.85 -8.45 8.8 -6.1 8.2 -3.8 7.9 -10.05 6.15 -16 5.8 -17.25 4.9 -18 4.55 -18.3 4.15 -18.5 Z"/> </g> <g id="Symbol_Hand_8_FILL"> <path fill="url(#Gradient_59)" stroke="#fff" stroke-width="1" d=" M -1.55 -15.3 Q -1.75 -16.9 -2.95 -17.95 -3.05 -18 -3.1 -18.05 -4.45 -19.1 -6.15 -18.9 -7.4 -18.75 -8.3 -17.95 -8.6 -17.7 -8.85 -17.35 -9.9 -16 -9.7 -14.3 -8.85 -7.6 -8.2 -1.05 -8.05 0 -7.95 1.05 -9.8 -0.3 -11.85 -1.45 -13.35 -2.3 -15 -1.85 -16.6 -1.4 -17.45 0.1 -18.3 1.55 -17.85 3.2 -17.4 4.85 -15.9 5.7 -12.95 7.4 -10.65 9.4 -8.85 11 -7.5 12.8 -4.9 17.5 -0.2 18.75 0.95 19 2.2 19 6.85 19 10.45 15.5 11.05 14.85 11.6 14.2 14.1 11.15 15.55 3.75 16 1.4 16.5 -0.9 17.4 -5.2 17.95 -9.45 18.2 -11.15 17.15 -12.5 16.15 -13.85 14.45 -14.1 12.8 -14.35 11.45 -13.3 10.05 -12.25 9.85 -10.55 9.4 -7.45 8.8 -4.3 6.7 -5.1 3.75 -5.5 1.3 -5.8 -0.4 -5.4 -0.95 -10.3 -1.55 -15.3 Z"/> </g> <g id="Symbol_Hand_9_FILL"> <path fill="url(#Gradient_60)" stroke="#fff" stroke-width="1" d=" M -13.6 3.45 Q -14.5 6.75 -13.25 10.5 -13.15 10.75 -13.1 11.05 -11.3 16.45 -5.9 18.65 L -9.6 -0.8 Q -12.6 0.25 -13.6 3.45 Z"/> <path fill="url(#Gradient_61)" stroke="#fff" stroke-width="1" d=" M 12.7 -1.85 Q 11.4 -3.15 9.6 -3.15 9.3 -3.6 8.9 -4 7.7 -5.25 6 -5.3 6.35 -9.8 6.65 -15.6 6.7 -16.95 6.05 -18 5.8 -18.3 5.55 -18.6 4.35 -19.9 2.6 -20 0.85 -20.05 -0.45 -18.9 -0.9 -18.5 -1.2 -18 -1.8 -17.1 -1.85 -15.95 -2 -12.3 -2.2 -9.2 L -2.55 -9.15 Q -2.95 -12.45 -3.5 -16.3 -3.65 -17.25 -4.1 -18 -4.55 -18.6 -5.15 -19.1 -6.55 -20.1 -8.35 -19.85 -10.05 -19.6 -11.1 -18.2 -11.2 -18.1 -11.25 -18 -12.15 -16.75 -11.9 -15.15 -10.7 -6.55 -9.6 -0.8 L -5.9 18.65 Q -4.05 19.4 -1.85 19.85 3.1 20.6 7.55 17.65 12.25 14.45 13.2 8.65 13.2 8.55 13.2 8.5 13.2 8.45 13.25 8.35 13.55 6 13.75 4.45 14 1.7 14 1.25 14 0.95 14 0.7 13.8 -0.75 12.7 -1.85 Z"/> </g> <g id="Symbol_Hand_10_FILL"> <path fill="url(#Gradient_62)" stroke="#fff" stroke-width="1" d=" M -0.95 -18.25 Q -1.15 -18.15 -1.35 -18 -3.1 -16.85 -3.7 -14.85 -4.6 -11.7 -6.45 -8.9 -7.65 -7 -9.3 -5.3 -9.5 -5.1 -9.7 -4.85 -14.4 -0.7 -15.15 2.05 -16 4.15 -16 6.55 -16 11.7 -12.2 15.35 -8.4 19 -3.05 19 0 19 1.3 19 4.25 19 6.5 19 9.4 19 11.45 17.05 12.95 15.6 12.55 12.5 15.4 12.3 16 8.85 16 8.65 16 8.45 16 6.25 14.7 4.55 15.9 2.85 15.9 0.7 15.9 -2.1 13.85 -4.05 11.8 -6.05 8.9 -6.05 6.45 -6.05 5.4 -5.75 6.55 -8.05 7.6 -11.85 8.25 -14.05 7.1 -16.05 6.35 -17.3 5.3 -18 4.5 -18.5 3.55 -18.75 1.2 -19.4 -0.95 -18.25 Z"/> </g> <g id="Symbol_Hand_11_FILL"> <path fill="url(#Gradient_63)" stroke="#fff" stroke-width="1" d=" M -2.4 -9.15 Q -2.4 -10 -2.5 -10.8 -2.7 -12.9 -4.45 -14.25 -6.05 -15.5 -8.25 -15.35 -10.4 -15.15 -11.8 -13.55 -13.2 -11.85 -13 -9.9 -12.75 -7.1 -13.1 -4.7 -13.6 -1.25 -15.55 1.4 -15.7 1.6 -15.8 1.7 L -2.4 -9.15 Z"/> <path fill="url(#Gradient_64)" stroke="#fff" stroke-width="1" d=" M 15.85 -16 Q 14.55 -17.65 12.4 -17.9 12.15 -17.95 11.9 -17.95 11.6 -17.95 11.35 -17.95 9.85 -17.85 8.55 -16.95 3.05 -13 -2.4 -9.15 L -15.8 1.7 Q -17.8 5.45 -16.4 10 -16 11 -15.45 11.95 -12.9 16.1 -7.75 17.45 -3.85 18.5 -0.2 17.55 0.4 17.4 1 17.2 L 7.1 15.25 Q 7.6 15.1 8.05 14.95 8.2 14.9 8.35 14.85 10.45 13.85 11.35 11.85 12.4 9.6 11.4 7.45 11.25 7.1 11.05 6.75 11.4 6.05 11.6 5.25 12.2 3 11 0.95 10.1 -0.45 8.65 -1.2 L 8.6 -1.25 6.05 -2.55 Q 10.4 -5.7 14.85 -8.85 16.6 -10.15 16.95 -12.25 17.2 -14.3 15.85 -16 Z"/> </g> <g id="Symbol_Hand_12_FILL"> <path fill="url(#Gradient_65)" stroke="#fff" stroke-width="1" d=" M -2.4 -9.15 Q -2.4 -10 -2.5 -10.8 -2.7 -12.9 -4.45 -14.25 -6.05 -15.5 -8.25 -15.35 -10.4 -15.15 -11.8 -13.55 -13.2 -11.85 -13 -9.9 -12.75 -7.1 -13.1 -4.7 -13.6 -1.25 -15.55 1.4 -15.7 1.6 -15.8 1.7 L -2.4 -9.15 Z"/> <path fill="url(#Gradient_66)" stroke="#fff" stroke-width="1" d=" M 15.85 -16 Q 14.55 -17.65 12.4 -17.9 12.15 -17.95 11.9 -17.95 11.6 -17.95 11.35 -17.95 9.85 -17.85 8.55 -16.95 3.05 -13 -2.4 -9.15 L -15.8 1.7 Q -17.8 5.45 -16.4 10 -16 11 -15.45 11.95 -12.9 16.1 -7.75 17.45 -3.85 18.5 -0.2 17.55 0.4 17.4 1 17.2 L 7.1 15.25 Q 7.6 15.1 8.05 14.95 8.2 14.9 8.35 14.85 10.45 13.85 11.35 11.85 12.4 9.6 11.4 7.45 11.25 7.1 11.05 6.75 11.4 6.05 11.6 5.25 12.2 3 11 0.95 10.1 -0.45 8.65 -1.2 L 8.6 -1.25 6.05 -2.55 Q 10.4 -5.7 14.85 -8.85 16.6 -10.15 16.95 -12.25 17.2 -14.3 15.85 -16 Z"/> </g> <g id="Symbol_Hand_13_FILL"> <path fill="url(#Gradient_67)" stroke="#fff" stroke-width="1" d=" M -0.95 -18.25 Q -1.15 -18.15 -1.35 -18 -3.1 -16.85 -3.7 -14.85 -4.6 -11.7 -6.45 -8.9 -7.65 -7 -9.3 -5.3 -9.5 -5.1 -9.7 -4.85 -14.4 -0.7 -15.15 2.05 -16 4.15 -16 6.55 -16 11.7 -12.2 15.35 -8.4 19 -3.05 19 0 19 1.3 19 4.25 19 6.5 19 9.4 19 11.45 17.05 12.95 15.6 12.55 12.5 15.4 12.3 16 8.85 16 8.65 16 8.45 16 6.25 14.7 4.55 15.9 2.85 15.9 0.7 15.9 -2.1 13.85 -4.05 11.8 -6.05 8.9 -6.05 6.45 -6.05 5.4 -5.75 6.55 -8.05 7.6 -11.85 8.25 -14.05 7.1 -16.05 6.35 -17.3 5.3 -18 4.5 -18.5 3.55 -18.75 1.2 -19.4 -0.95 -18.25 Z"/> </g> <g id="Symbol_Hand_14_FILL"> <path fill="url(#Gradient_68)" stroke="#fff" stroke-width="1" d=" M -13.6 3.45 Q -14.5 6.75 -13.25 10.5 -13.15 10.75 -13.1 11.05 -11.3 16.45 -5.9 18.65 L -9.6 -0.8 Q -12.6 0.25 -13.6 3.45 Z"/> <path fill="url(#Gradient_69)" stroke="#fff" stroke-width="1" d=" M 12.7 -1.85 Q 11.4 -3.15 9.6 -3.15 9.3 -3.6 8.9 -4 7.7 -5.25 6 -5.3 6.35 -9.8 6.65 -15.6 6.7 -16.95 6.05 -18 5.8 -18.3 5.55 -18.6 4.35 -19.9 2.6 -20 0.85 -20.05 -0.45 -18.9 -0.9 -18.5 -1.2 -18 -1.8 -17.1 -1.85 -15.95 -2 -12.3 -2.2 -9.2 L -2.55 -9.15 Q -2.95 -12.45 -3.5 -16.3 -3.65 -17.25 -4.1 -18 -4.55 -18.6 -5.15 -19.1 -6.55 -20.1 -8.35 -19.85 -10.05 -19.6 -11.1 -18.2 -11.2 -18.1 -11.25 -18 -12.15 -16.75 -11.9 -15.15 -10.7 -6.55 -9.6 -0.8 L -5.9 18.65 Q -4.05 19.4 -1.85 19.85 3.1 20.6 7.55 17.65 12.25 14.45 13.2 8.65 13.2 8.55 13.2 8.5 13.2 8.45 13.25 8.35 13.55 6 13.75 4.45 14 1.7 14 1.25 14 0.95 14 0.7 13.8 -0.75 12.7 -1.85 Z"/> </g> <g id="Symbol_Hand_15_FILL"> <path fill="url(#Gradient_70)" stroke="#fff" stroke-width="1" d=" M -1.55 -15.3 Q -1.75 -16.9 -2.95 -17.95 -3.05 -18 -3.1 -18.05 -4.45 -19.1 -6.15 -18.9 -7.4 -18.75 -8.3 -17.95 -8.6 -17.7 -8.85 -17.35 -9.9 -16 -9.7 -14.3 -8.85 -7.6 -8.2 -1.05 -8.05 0 -7.95 1.05 -9.8 -0.3 -11.85 -1.45 -13.35 -2.3 -15 -1.85 -16.6 -1.4 -17.45 0.1 -18.3 1.55 -17.85 3.2 -17.4 4.85 -15.9 5.7 -12.95 7.4 -10.65 9.4 -8.85 11 -7.5 12.8 -4.9 17.5 -0.2 18.75 0.95 19 2.2 19 6.85 19 10.45 15.5 11.05 14.85 11.6 14.2 14.1 11.15 15.55 3.75 16 1.4 16.5 -0.9 17.4 -5.2 17.95 -9.45 18.2 -11.15 17.15 -12.5 16.15 -13.85 14.45 -14.1 12.8 -14.35 11.45 -13.3 10.05 -12.25 9.85 -10.55 9.4 -7.45 8.8 -4.3 6.7 -5.1 3.75 -5.5 1.3 -5.8 -0.4 -5.4 -0.95 -10.3 -1.55 -15.3 Z"/> </g> <g id="Symbol_Hand_16_FILL"> <path fill="url(#Gradient_71)" stroke="#fff" stroke-width="1" d=" M 4.15 -18.5 Q 2.65 -19.35 1.05 -18.8 0.2 -18.55 -0.35 -18 -0.95 -17.5 -1.3 -16.75 -2.1 -15.2 -1.6 -13.55 -0.25 -8.95 0.05 -4.15 -1.85 -9.05 -5.25 -13.7 -6.3 -15.05 -7.95 -15.3 -9.65 -15.55 -10.95 -14.45 -12.3 -13.4 -12.55 -11.7 -12.75 -9.95 -11.75 -8.55 -8.6 -4.35 -7.1 0.15 -6.3 2.45 -6.3 5.7 -8 4.15 -9.95 2 -11.15 0.7 -12.8 0.65 -14.5 0.6 -15.7 1.8 -16.95 3 -17 4.75 -17.05 6.45 -15.9 7.75 -14.95 8.8 -14.05 9.7 -11.65 12.2 -9.5 13.8 -9.45 13.85 -9.4 13.85 L -8.15 14.65 Q -4.35 17.45 0.35 18.7 7.45 20.05 11.35 15.05 11.5 14.85 11.65 14.65 12 14.1 12.35 13.6 14.8 9.05 15.85 0.5 L 16.55 -3.9 Q 16.85 -5.6 16.95 -7.35 17 -7.8 17 -8.25 17.05 -10 15.9 -11.25 14.7 -12.5 13.05 -12.55 11.35 -12.6 10.15 -11.4 8.9 -10.2 8.85 -8.45 8.8 -6.1 8.2 -3.8 7.9 -10.05 6.15 -16 5.8 -17.25 4.9 -18 4.55 -18.3 4.15 -18.5 Z"/> </g> <g id="Symbol_Hand_17_FILL"> <path fill="url(#Gradient_72)" stroke="#fff" stroke-width="1" d=" M -12.4 -5.65 Q -12.95 -5.4 -13.45 -5.1 -18.15 -2.45 -16.6 4.35 -15.1 11.15 -10.95 14.05 -8.5 15.8 -5.2 16.5 L -12.4 -5.65 Z"/> <path fill="url(#Gradient_73)" stroke="#fff" stroke-width="1" d=" M 16.4 -7.5 Q 15.45 -11.9 10.8 -12.7 9.05 -13.05 7.6 -12.9 6.6 -16.8 1.15 -17 -3.6 -17.3 -5 -13.75 -6.85 -16.35 -11.1 -13.95 -15.15 -11.7 -12.4 -5.65 L -5.2 16.5 Q -2.95 17 -0.3 17 6.2 17 10.75 12.85 11.3 12.3 11.8 11.75 18.9 2.9 16.4 -7.5 Z"/> </g> <g id="Symbol_Hand_18_FILL"> <path fill="url(#Gradient_74)" stroke="#fff" stroke-width="1" d=" M -12.4 -5.65 Q -12.95 -5.4 -13.45 -5.1 -18.15 -2.45 -16.6 4.35 -15.1 11.15 -10.95 14.05 -8.5 15.8 -5.2 16.5 L -12.4 -5.65 Z"/> <path fill="url(#Gradient_75)" stroke="#fff" stroke-width="1" d=" M 16.4 -7.5 Q 15.45 -11.9 10.8 -12.7 9.05 -13.05 7.6 -12.9 6.6 -16.8 1.15 -17 -3.6 -17.3 -5 -13.75 -6.85 -16.35 -11.1 -13.95 -15.15 -11.7 -12.4 -5.65 L -5.2 16.5 Q -2.95 17 -0.3 17 6.2 17 10.75 12.85 11.3 12.3 11.8 11.75 18.9 2.9 16.4 -7.5 Z"/> </g> <g id="Symbol_Hand_19_FILL"> <path fill="url(#Gradient_76)" stroke="#fff" stroke-width="1" d=" M 4.15 -18.5 Q 2.65 -19.35 1.05 -18.8 0.2 -18.55 -0.35 -18 -0.95 -17.5 -1.3 -16.75 -2.1 -15.2 -1.6 -13.55 -0.25 -8.95 0.05 -4.15 -1.85 -9.05 -5.25 -13.7 -6.3 -15.05 -7.95 -15.3 -9.65 -15.55 -10.95 -14.45 -12.3 -13.4 -12.55 -11.7 -12.75 -9.95 -11.75 -8.55 -8.6 -4.35 -7.1 0.15 -6.3 2.45 -6.3 5.7 -8 4.15 -9.95 2 -11.15 0.7 -12.8 0.65 -14.5 0.6 -15.7 1.8 -16.95 3 -17 4.75 -17.05 6.45 -15.9 7.75 -14.95 8.8 -14.05 9.7 -11.65 12.2 -9.5 13.8 -9.45 13.85 -9.4 13.85 L -8.15 14.65 Q -4.35 17.45 0.35 18.7 7.45 20.05 11.35 15.05 11.5 14.85 11.65 14.65 12 14.1 12.35 13.6 14.8 9.05 15.85 0.5 L 16.55 -3.9 Q 16.85 -5.6 16.95 -7.35 17 -7.8 17 -8.25 17.05 -10 15.9 -11.25 14.7 -12.5 13.05 -12.55 11.35 -12.6 10.15 -11.4 8.9 -10.2 8.85 -8.45 8.8 -6.1 8.2 -3.8 7.9 -10.05 6.15 -16 5.8 -17.25 4.9 -18 4.55 -18.3 4.15 -18.5 Z"/> </g> <g id="Symbol_Hand_20_FILL"> <path fill="url(#Gradient_77)" stroke="#fff" stroke-width="1" d=" M -1.55 -15.3 Q -1.75 -16.9 -2.95 -17.95 -3.05 -18 -3.1 -18.05 -4.45 -19.1 -6.15 -18.9 -7.4 -18.75 -8.3 -17.95 -8.6 -17.7 -8.85 -17.35 -9.9 -16 -9.7 -14.3 -8.85 -7.6 -8.2 -1.05 -8.05 0 -7.95 1.05 -9.8 -0.3 -11.85 -1.45 -13.35 -2.3 -15 -1.85 -16.6 -1.4 -17.45 0.1 -18.3 1.55 -17.85 3.2 -17.4 4.85 -15.9 5.7 -12.95 7.4 -10.65 9.4 -8.85 11 -7.5 12.8 -4.9 17.5 -0.2 18.75 0.95 19 2.2 19 6.85 19 10.45 15.5 11.05 14.85 11.6 14.2 14.1 11.15 15.55 3.75 16 1.4 16.5 -0.9 17.4 -5.2 17.95 -9.45 18.2 -11.15 17.15 -12.5 16.15 -13.85 14.45 -14.1 12.8 -14.35 11.45 -13.3 10.05 -12.25 9.85 -10.55 9.4 -7.45 8.8 -4.3 6.7 -5.1 3.75 -5.5 1.3 -5.8 -0.4 -5.4 -0.95 -10.3 -1.55 -15.3 Z"/> </g> <g id="Symbol_Hand_21_FILL"> <path fill="url(#Gradient_78)" stroke="#fff" stroke-width="1" d=" M -13.6 3.45 Q -14.5 6.75 -13.25 10.5 -13.15 10.75 -13.1 11.05 -11.3 16.45 -5.9 18.65 L -9.6 -0.8 Q -12.6 0.25 -13.6 3.45 Z"/> <path fill="url(#Gradient_79)" stroke="#fff" stroke-width="1" d=" M 12.7 -1.85 Q 11.4 -3.15 9.6 -3.15 9.3 -3.6 8.9 -4 7.7 -5.25 6 -5.3 6.35 -9.8 6.65 -15.6 6.7 -16.95 6.05 -18 5.8 -18.3 5.55 -18.6 4.35 -19.9 2.6 -20 0.85 -20.05 -0.45 -18.9 -0.9 -18.5 -1.2 -18 -1.8 -17.1 -1.85 -15.95 -2 -12.3 -2.2 -9.2 L -2.55 -9.15 Q -2.95 -12.45 -3.5 -16.3 -3.65 -17.25 -4.1 -18 -4.55 -18.6 -5.15 -19.1 -6.55 -20.1 -8.35 -19.85 -10.05 -19.6 -11.1 -18.2 -11.2 -18.1 -11.25 -18 -12.15 -16.75 -11.9 -15.15 -10.7 -6.55 -9.6 -0.8 L -5.9 18.65 Q -4.05 19.4 -1.85 19.85 3.1 20.6 7.55 17.65 12.25 14.45 13.2 8.65 13.2 8.55 13.2 8.5 13.2 8.45 13.25 8.35 13.55 6 13.75 4.45 14 1.7 14 1.25 14 0.95 14 0.7 13.8 -0.75 12.7 -1.85 Z"/> </g> <g id="Symbol_Hand_22_FILL"> <path fill="url(#Gradient_80)" stroke="#fff" stroke-width="1" d=" M -0.95 -18.25 Q -1.15 -18.15 -1.35 -18 -3.1 -16.85 -3.7 -14.85 -4.6 -11.7 -6.45 -8.9 -7.65 -7 -9.3 -5.3 -9.5 -5.1 -9.7 -4.85 -14.4 -0.7 -15.15 2.05 -16 4.15 -16 6.55 -16 11.7 -12.2 15.35 -8.4 19 -3.05 19 0 19 1.3 19 4.25 19 6.5 19 9.4 19 11.45 17.05 12.95 15.6 12.55 12.5 15.4 12.3 16 8.85 16 8.65 16 8.45 16 6.25 14.7 4.55 15.9 2.85 15.9 0.7 15.9 -2.1 13.85 -4.05 11.8 -6.05 8.9 -6.05 6.45 -6.05 5.4 -5.75 6.55 -8.05 7.6 -11.85 8.25 -14.05 7.1 -16.05 6.35 -17.3 5.3 -18 4.5 -18.5 3.55 -18.75 1.2 -19.4 -0.95 -18.25 Z"/> </g> <g id="Symbol_Hand_23_FILL"> <path fill="url(#Gradient_81)" stroke="#fff" stroke-width="1" d=" M -2.4 -9.15 Q -2.4 -10 -2.5 -10.8 -2.7 -12.9 -4.45 -14.25 -6.05 -15.5 -8.25 -15.35 -10.4 -15.15 -11.8 -13.55 -13.2 -11.85 -13 -9.9 -12.75 -7.1 -13.1 -4.7 -13.6 -1.25 -15.55 1.4 -15.7 1.6 -15.8 1.7 L -2.4 -9.15 Z"/> <path fill="url(#Gradient_82)" stroke="#fff" stroke-width="1" d=" M 15.85 -16 Q 14.55 -17.65 12.4 -17.9 12.15 -17.95 11.9 -17.95 11.6 -17.95 11.35 -17.95 9.85 -17.85 8.55 -16.95 3.05 -13 -2.4 -9.15 L -15.8 1.7 Q -17.8 5.45 -16.4 10 -16 11 -15.45 11.95 -12.9 16.1 -7.75 17.45 -3.85 18.5 -0.2 17.55 0.4 17.4 1 17.2 L 7.1 15.25 Q 7.6 15.1 8.05 14.95 8.2 14.9 8.35 14.85 10.45 13.85 11.35 11.85 12.4 9.6 11.4 7.45 11.25 7.1 11.05 6.75 11.4 6.05 11.6 5.25 12.2 3 11 0.95 10.1 -0.45 8.65 -1.2 L 8.6 -1.25 6.05 -2.55 Q 10.4 -5.7 14.85 -8.85 16.6 -10.15 16.95 -12.25 17.2 -14.3 15.85 -16 Z"/> </g> <g id="Symbol_Hand_24_FILL"> <path fill="url(#Gradient_83)" stroke="#fff" stroke-width="1" d=" M -2.4 -9.15 Q -2.4 -10 -2.5 -10.8 -2.7 -12.9 -4.45 -14.25 -6.05 -15.5 -8.25 -15.35 -10.4 -15.15 -11.8 -13.55 -13.2 -11.85 -13 -9.9 -12.75 -7.1 -13.1 -4.7 -13.6 -1.25 -15.55 1.4 -15.7 1.6 -15.8 1.7 L -2.4 -9.15 Z"/> <path fill="url(#Gradient_84)" stroke="#fff" stroke-width="1" d=" M 15.85 -16 Q 14.55 -17.65 12.4 -17.9 12.15 -17.95 11.9 -17.95 11.6 -17.95 11.35 -17.95 9.85 -17.85 8.55 -16.95 3.05 -13 -2.4 -9.15 L -15.8 1.7 Q -17.8 5.45 -16.4 10 -16 11 -15.45 11.95 -12.9 16.1 -7.75 17.45 -3.85 18.5 -0.2 17.55 0.4 17.4 1 17.2 L 7.1 15.25 Q 7.6 15.1 8.05 14.95 8.2 14.9 8.35 14.85 10.45 13.85 11.35 11.85 12.4 9.6 11.4 7.45 11.25 7.1 11.05 6.75 11.4 6.05 11.6 5.25 12.2 3 11 0.95 10.1 -0.45 8.65 -1.2 L 8.6 -1.25 6.05 -2.55 Q 10.4 -5.7 14.85 -8.85 16.6 -10.15 16.95 -12.25 17.2 -14.3 15.85 -16 Z"/> </g> <g id="Symbol_Hand_25_FILL"> <path fill="url(#Gradient_85)" stroke="#fff" stroke-width="1" d=" M -0.95 -18.25 Q -1.15 -18.15 -1.35 -18 -3.1 -16.85 -3.7 -14.85 -4.6 -11.7 -6.45 -8.9 -7.65 -7 -9.3 -5.3 -9.5 -5.1 -9.7 -4.85 -14.4 -0.7 -15.15 2.05 -16 4.15 -16 6.55 -16 11.7 -12.2 15.35 -8.4 19 -3.05 19 0 19 1.3 19 4.25 19 6.5 19 9.4 19 11.45 17.05 12.95 15.6 12.55 12.5 15.4 12.3 16 8.85 16 8.65 16 8.45 16 6.25 14.7 4.55 15.9 2.85 15.9 0.7 15.9 -2.1 13.85 -4.05 11.8 -6.05 8.9 -6.05 6.45 -6.05 5.4 -5.75 6.55 -8.05 7.6 -11.85 8.25 -14.05 7.1 -16.05 6.35 -17.3 5.3 -18 4.5 -18.5 3.55 -18.75 1.2 -19.4 -0.95 -18.25 Z"/> </g> <g id="Symbol_Hand_26_FILL"> <path fill="url(#Gradient_86)" stroke="#fff" stroke-width="1" d=" M -13.6 3.45 Q -14.5 6.75 -13.25 10.5 -13.15 10.75 -13.1 11.05 -11.3 16.45 -5.9 18.65 L -9.6 -0.8 Q -12.6 0.25 -13.6 3.45 Z"/> <path fill="url(#Gradient_87)" stroke="#fff" stroke-width="1" d=" M 12.7 -1.85 Q 11.4 -3.15 9.6 -3.15 9.3 -3.6 8.9 -4 7.7 -5.25 6 -5.3 6.35 -9.8 6.65 -15.6 6.7 -16.95 6.05 -18 5.8 -18.3 5.55 -18.6 4.35 -19.9 2.6 -20 0.85 -20.05 -0.45 -18.9 -0.9 -18.5 -1.2 -18 -1.8 -17.1 -1.85 -15.95 -2 -12.3 -2.2 -9.2 L -2.55 -9.15 Q -2.95 -12.45 -3.5 -16.3 -3.65 -17.25 -4.1 -18 -4.55 -18.6 -5.15 -19.1 -6.55 -20.1 -8.35 -19.85 -10.05 -19.6 -11.1 -18.2 -11.2 -18.1 -11.25 -18 -12.15 -16.75 -11.9 -15.15 -10.7 -6.55 -9.6 -0.8 L -5.9 18.65 Q -4.05 19.4 -1.85 19.85 3.1 20.6 7.55 17.65 12.25 14.45 13.2 8.65 13.2 8.55 13.2 8.5 13.2 8.45 13.25 8.35 13.55 6 13.75 4.45 14 1.7 14 1.25 14 0.95 14 0.7 13.8 -0.75 12.7 -1.85 Z"/> </g> <g id="Symbol_Hand_27_FILL"> <path fill="url(#Gradient_88)" stroke="#fff" stroke-width="1" d=" M -1.55 -15.3 Q -1.75 -16.9 -2.95 -17.95 -3.05 -18 -3.1 -18.05 -4.45 -19.1 -6.15 -18.9 -7.4 -18.75 -8.3 -17.95 -8.6 -17.7 -8.85 -17.35 -9.9 -16 -9.7 -14.3 -8.85 -7.6 -8.2 -1.05 -8.05 0 -7.95 1.05 -9.8 -0.3 -11.85 -1.45 -13.35 -2.3 -15 -1.85 -16.6 -1.4 -17.45 0.1 -18.3 1.55 -17.85 3.2 -17.4 4.85 -15.9 5.7 -12.95 7.4 -10.65 9.4 -8.85 11 -7.5 12.8 -4.9 17.5 -0.2 18.75 0.95 19 2.2 19 6.85 19 10.45 15.5 11.05 14.85 11.6 14.2 14.1 11.15 15.55 3.75 16 1.4 16.5 -0.9 17.4 -5.2 17.95 -9.45 18.2 -11.15 17.15 -12.5 16.15 -13.85 14.45 -14.1 12.8 -14.35 11.45 -13.3 10.05 -12.25 9.85 -10.55 9.4 -7.45 8.8 -4.3 6.7 -5.1 3.75 -5.5 1.3 -5.8 -0.4 -5.4 -0.95 -10.3 -1.55 -15.3 Z"/> </g> <g id="Symbol_Hand_28_FILL"> <path fill="url(#Gradient_89)" stroke="#fff" stroke-width="1" d=" M 4.15 -18.5 Q 2.65 -19.35 1.05 -18.8 0.2 -18.55 -0.35 -18 -0.95 -17.5 -1.3 -16.75 -2.1 -15.2 -1.6 -13.55 -0.25 -8.95 0.05 -4.15 -1.85 -9.05 -5.25 -13.7 -6.3 -15.05 -7.95 -15.3 -9.65 -15.55 -10.95 -14.45 -12.3 -13.4 -12.55 -11.7 -12.75 -9.95 -11.75 -8.55 -8.6 -4.35 -7.1 0.15 -6.3 2.45 -6.3 5.7 -8 4.15 -9.95 2 -11.15 0.7 -12.8 0.65 -14.5 0.6 -15.7 1.8 -16.95 3 -17 4.75 -17.05 6.45 -15.9 7.75 -14.95 8.8 -14.05 9.7 -11.65 12.2 -9.5 13.8 -9.45 13.85 -9.4 13.85 L -8.15 14.65 Q -4.35 17.45 0.35 18.7 7.45 20.05 11.35 15.05 11.5 14.85 11.65 14.65 12 14.1 12.35 13.6 14.8 9.05 15.85 0.5 L 16.55 -3.9 Q 16.85 -5.6 16.95 -7.35 17 -7.8 17 -8.25 17.05 -10 15.9 -11.25 14.7 -12.5 13.05 -12.55 11.35 -12.6 10.15 -11.4 8.9 -10.2 8.85 -8.45 8.8 -6.1 8.2 -3.8 7.9 -10.05 6.15 -16 5.8 -17.25 4.9 -18 4.55 -18.3 4.15 -18.5 Z"/> </g> <g id="Symbol_Hand_29_FILL"> <path fill="url(#Gradient_90)" stroke="#fff" stroke-width="1" d=" M -12.4 -5.65 Q -12.95 -5.4 -13.45 -5.1 -18.15 -2.45 -16.6 4.35 -15.1 11.15 -10.95 14.05 -8.5 15.8 -5.2 16.5 L -12.4 -5.65 Z"/> <path fill="url(#Gradient_91)" stroke="#fff" stroke-width="1" d=" M 16.4 -7.5 Q 15.45 -11.9 10.8 -12.7 9.05 -13.05 7.6 -12.9 6.6 -16.8 1.15 -17 -3.6 -17.3 -5 -13.75 -6.85 -16.35 -11.1 -13.95 -15.15 -11.7 -12.4 -5.65 L -5.2 16.5 Q -2.95 17 -0.3 17 6.2 17 10.75 12.85 11.3 12.3 11.8 11.75 18.9 2.9 16.4 -7.5 Z"/> </g> <g id="Symbol_Hand_30_FILL"> <path fill="url(#Gradient_92)" stroke="#fff" stroke-width="1" d=" M -2.4 -9.15 Q -2.4 -10 -2.5 -10.8 -2.7 -12.9 -4.45 -14.25 -6.05 -15.5 -8.25 -15.35 -10.4 -15.15 -11.8 -13.55 -13.2 -11.85 -13 -9.9 -12.75 -7.1 -13.1 -4.7 -13.6 -1.25 -15.55 1.4 -15.7 1.6 -15.8 1.7 L -2.4 -9.15 Z"/> <path fill="url(#Gradient_93)" stroke="#fff" stroke-width="1" d=" M 15.85 -16 Q 14.55 -17.65 12.4 -17.9 12.15 -17.95 11.9 -17.95 11.6 -17.95 11.35 -17.95 9.85 -17.85 8.55 -16.95 3.05 -13 -2.4 -9.15 L -15.8 1.7 Q -17.8 5.45 -16.4 10 -16 11 -15.45 11.95 -12.9 16.1 -7.75 17.45 -3.85 18.5 -0.2 17.55 0.4 17.4 1 17.2 L 7.1 15.25 Q 7.6 15.1 8.05 14.95 8.2 14.9 8.35 14.85 10.45 13.85 11.35 11.85 12.4 9.6 11.4 7.45 11.25 7.1 11.05 6.75 11.4 6.05 11.6 5.25 12.2 3 11 0.95 10.1 -0.45 8.65 -1.2 L 8.6 -1.25 6.05 -2.55 Q 10.4 -5.7 14.85 -8.85 16.6 -10.15 16.95 -12.25 17.2 -14.3 15.85 -16 Z"/> </g> <g id="Symbol_Hand_31_FILL"> <path fill="url(#Gradient_94)" stroke="#fff" stroke-width="1" d=" M -0.95 -18.25 Q -1.15 -18.15 -1.35 -18 -3.1 -16.85 -3.7 -14.85 -4.6 -11.7 -6.45 -8.9 -7.65 -7 -9.3 -5.3 -9.5 -5.1 -9.7 -4.85 -14.4 -0.7 -15.15 2.05 -16 4.15 -16 6.55 -16 11.7 -12.2 15.35 -8.4 19 -3.05 19 0 19 1.3 19 4.25 19 6.5 19 9.4 19 11.45 17.05 12.95 15.6 12.55 12.5 15.4 12.3 16 8.85 16 8.65 16 8.45 16 6.25 14.7 4.55 15.9 2.85 15.9 0.7 15.9 -2.1 13.85 -4.05 11.8 -6.05 8.9 -6.05 6.45 -6.05 5.4 -5.75 6.55 -8.05 7.6 -11.85 8.25 -14.05 7.1 -16.05 6.35 -17.3 5.3 -18 4.5 -18.5 3.55 -18.75 1.2 -19.4 -0.95 -18.25 Z"/> </g> <g id="Symbol_Hand_32_FILL"> <path fill="url(#Gradient_95)" stroke="#fff" stroke-width="1" d=" M -13.6 3.45 Q -14.5 6.75 -13.25 10.5 -13.15 10.75 -13.1 11.05 -11.3 16.45 -5.9 18.65 L -9.6 -0.8 Q -12.6 0.25 -13.6 3.45 Z"/> <path fill="url(#Gradient_96)" stroke="#fff" stroke-width="1" d=" M 12.7 -1.85 Q 11.4 -3.15 9.6 -3.15 9.3 -3.6 8.9 -4 7.7 -5.25 6 -5.3 6.35 -9.8 6.65 -15.6 6.7 -16.95 6.05 -18 5.8 -18.3 5.55 -18.6 4.35 -19.9 2.6 -20 0.85 -20.05 -0.45 -18.9 -0.9 -18.5 -1.2 -18 -1.8 -17.1 -1.85 -15.95 -2 -12.3 -2.2 -9.2 L -2.55 -9.15 Q -2.95 -12.45 -3.5 -16.3 -3.65 -17.25 -4.1 -18 -4.55 -18.6 -5.15 -19.1 -6.55 -20.1 -8.35 -19.85 -10.05 -19.6 -11.1 -18.2 -11.2 -18.1 -11.25 -18 -12.15 -16.75 -11.9 -15.15 -10.7 -6.55 -9.6 -0.8 L -5.9 18.65 Q -4.05 19.4 -1.85 19.85 3.1 20.6 7.55 17.65 12.25 14.45 13.2 8.65 13.2 8.55 13.2 8.5 13.2 8.45 13.25 8.35 13.55 6 13.75 4.45 14 1.7 14 1.25 14 0.95 14 0.7 13.8 -0.75 12.7 -1.85 Z"/> </g> <g id="Symbol_Hand_33_FILL"> <path fill="url(#Gradient_97)" stroke="#fff" stroke-width="1" d=" M -1.55 -15.3 Q -1.75 -16.9 -2.95 -17.95 -3.05 -18 -3.1 -18.05 -4.45 -19.1 -6.15 -18.9 -7.4 -18.75 -8.3 -17.95 -8.6 -17.7 -8.85 -17.35 -9.9 -16 -9.7 -14.3 -8.85 -7.6 -8.2 -1.05 -8.05 0 -7.95 1.05 -9.8 -0.3 -11.85 -1.45 -13.35 -2.3 -15 -1.85 -16.6 -1.4 -17.45 0.1 -18.3 1.55 -17.85 3.2 -17.4 4.85 -15.9 5.7 -12.95 7.4 -10.65 9.4 -8.85 11 -7.5 12.8 -6.85 14 -6.05 14.95 -3.7 17.8 -0.2 18.75 0.95 19 2.2 19 6.85 19 10.45 15.5 11.05 14.85 11.6 14.2 13.5 11.85 14.8 7 15.2 5.5 15.55 3.75 16 1.4 16.5 -0.9 17.4 -5.2 17.95 -9.45 18.2 -11.15 17.15 -12.5 16.15 -13.85 14.45 -14.1 12.8 -14.35 11.45 -13.3 10.05 -12.25 9.85 -10.55 9.4 -7.45 8.8 -4.3 6.7 -5.1 3.75 -5.5 1.3 -5.8 -0.4 -5.4 -0.95 -10.3 -1.55 -15.3 Z"/> </g> <g id="Symbol_Hand_34_FILL"> <path fill="url(#Gradient_98)" stroke="#fff" stroke-width="1" d=" M 4.15 -18.5 Q 2.65 -19.35 1.05 -18.8 0.2 -18.55 -0.35 -18 -0.95 -17.5 -1.3 -16.75 -2.1 -15.2 -1.6 -13.55 -0.25 -8.95 0.05 -4.15 -1.85 -9.05 -5.25 -13.7 -6.3 -15.05 -7.95 -15.3 -9.65 -15.55 -10.95 -14.45 -12.3 -13.4 -12.55 -11.7 -12.75 -9.95 -11.75 -8.55 -8.6 -4.35 -7.1 0.15 -6.3 2.45 -6.3 5.7 -8 4.15 -9.95 2 -11.15 0.7 -12.8 0.65 -14.5 0.6 -15.7 1.8 -16.95 3 -17 4.75 -17.05 5.95 -16.45 6.95 -16.25 7.35 -15.9 7.75 -14.95 8.8 -14.05 9.7 -11.65 12.2 -9.5 13.8 -9.45 13.85 -9.4 13.85 L -8.15 14.65 Q -4.35 17.45 0.35 18.7 7.45 20.05 11.35 15.05 11.5 14.85 11.65 14.65 12 14.1 12.35 13.6 13.8 10.95 14.75 6.95 15.4 4.05 15.85 0.5 L 16.55 -3.9 Q 16.85 -5.6 16.95 -7.35 17 -7.8 17 -8.25 17.05 -10 15.9 -11.25 14.7 -12.5 13.05 -12.55 11.35 -12.6 10.15 -11.4 8.9 -10.2 8.85 -8.45 8.8 -6.1 8.2 -3.8 7.9 -10.05 6.15 -16 5.8 -17.25 4.9 -18 4.55 -18.3 4.15 -18.5 Z"/> </g> <g id="Symbol_Hand_35_FILL"> <path fill="url(#Gradient_99)" stroke="#fff" stroke-width="1" d=" M -12.4 -5.65 Q -12.95 -5.4 -13.45 -5.1 -18.15 -2.45 -16.6 4.35 -16.3 5.75 -15.85 6.95 -14.25 11.75 -10.95 14.05 -8.5 15.8 -5.2 16.5 L -12.4 -5.65 Z"/> <path fill="url(#Gradient_100)" stroke="none" d=" M 16.4 -7.5 Q 15.45 -11.9 10.8 -12.7 9.05 -13.05 7.6 -12.9 6.6 -16.8 1.15 -17 -3.6 -17.3 -5 -13.75 -6.85 -16.35 -11.1 -13.95 -15.15 -11.7 -12.4 -5.65 L -5.2 16.5 Q -2.95 17 -0.3 17 6.2 17 10.75 12.85 11.3 12.3 11.8 11.75 13.7 9.4 14.9 6.95 18.25 0.15 16.4 -7.5 Z"/> </g> <g id="Symbol_Eye_0_0_FILL"> <path fill="#FFFFFF" stroke="none" d=" M -22.05 -11.55 Q -25 -8.6 -25 -4.5 -25 -0.35 -22.05 2.55 -19.15 5.5 -15 5.5 -10.85 5.5 -7.95 2.55 -5 -0.35 -5 -4.5 -5 -8.6 -7.95 -11.55 -10.85 -14.5 -15 -14.5 -19.15 -14.5 -22.05 -11.55 Z"/> </g> <g id="Symbol_Eye_0_1_FILL"> <path fill="#3D465D" stroke="none" d=" M -10.75 -0.25 Q -9 -2 -9 -4.5 -9 -6.95 -10.75 -8.7 -12.5 -10.5 -15 -10.5 -17.45 -10.5 -19.2 -8.7 -21 -6.95 -21 -4.5 -21 -2 -19.2 -0.25 -17.45 1.5 -15 1.5 -12.5 1.5 -10.75 -0.25 Z"/> </g> <g id="Symbol_Mouth_0_FILL"> <path fill="#3D465D" stroke="none" d=" M 8.2 11.95 L 8.2 11.9 Q 8.8 11.45 9.35 11 9.95 10.45 10 9.65 10.05 8.8 9.5 8.2 8.95 7.55 8.15 7.5 7.3 7.45 6.7 8 6.3 8.35 5.85 8.7 L 5.8 8.7 Q 3.4 10.5 0 10.5 -3.5 10.5 -5.95 8.7 -6.25 8.45 -6.5 8.2 -7.05 7.55 -7.85 7.5 -8.7 7.45 -9.3 8 -9.95 8.55 -10 9.4 -10.05 10.2 -9.5 10.85 -9.05 11.35 -8.4 11.85 -8.35 11.85 -8.35 11.9 -4.9 14.5 0 14.5 4.8 14.5 8.2 11.95 Z"/> </g> <g id="Symbol_Eye_1_0_FILL"> <path fill="#FFFFFF" stroke="none" d=" M -5 -7 L -25 -7 Q -25 -2.85 -22.05 0.05 -19.15 3 -15 3 -10.85 3 -7.95 0.05 -5 -2.85 -5 -7 Z"/> </g> <g id="Symbol_Eye_1_1_FILL"> <path fill="#3D465D" stroke="none" d=" M -10.75 -2.75 Q -9 -4.5 -9 -7 L -21 -7 Q -21 -4.5 -19.2 -2.75 -17.45 -1 -15 -1 -12.5 -1 -10.75 -2.75 Z"/> </g> <g id="Symbol_Eyebrow_0_FILL"> <path fill="#3D465D" stroke="none" d=" M -24.4 -7.55 Q -23.85 -7 -23 -7 L -7 -7 Q -6.15 -7 -5.55 -7.55 -5 -8.15 -5 -9 L -5 -10 Q -5 -10.85 -5.55 -11.4 -6.15 -12 -7 -12 L -23 -12 Q -23.85 -12 -24.4 -11.4 -25 -10.85 -25 -10 L -25 -9 Q -25 -8.15 -24.4 -7.55 Z"/> </g> <g id="Symbol_Mouth_1_FILL"> <path fill="#3D465D" stroke="none" d=" M 5.85 10.85 Q 6.3 11.15 6.7 11.5 7.3 12.05 8.15 12 8.95 11.95 9.5 11.35 10.05 10.7 10 9.9 9.95 9.05 9.35 8.5 8.8 8.05 8.2 7.6 4.8 5 0 5 -4.9 5 -8.35 7.6 -8.35 7.65 -8.4 7.65 -9.05 8.15 -9.5 8.7 -10.05 9.3 -10 10.15 -9.95 10.95 -9.3 11.5 -8.7 12.05 -7.85 12 -7.05 11.95 -6.5 11.35 -6.25 11.05 -5.95 10.8 -3.5 9 0 9 3.4 9 5.8 10.8 L 5.85 10.85 Z"/> </g> <g id="Symbol_Eye_2_0_FILL"> <path fill="#FFFFFF" stroke="none" d=" M -7.9 -5.05 Q -10.8 -8 -14.95 -8 -19.1 -8 -22 -5.05 -24.95 -2.15 -24.95 2 L -4.95 2 Q -4.95 -2.15 -7.9 -5.05 Z"/> </g> <g id="Symbol_Eye_2_1_FILL"> <path fill="#3D465D" stroke="none" d=" M -10.7 -2.25 Q -12.45 -4 -14.95 -4 -17.4 -4 -19.15 -2.25 -20.95 -0.5 -20.95 2 L -8.95 2 Q -8.95 -0.5 -10.7 -2.25 Z"/> </g> <g id="Symbol_Eyebrow_1_FILL"> <path fill="#3D465D" stroke="none" d=" M -23.95 -11 Q -23.95 -10.6 -23.65 -10.3 -23.35 -10 -22.95 -10 L -9.95 -10 Q -9.55 -10 -9.25 -10.3 -8.95 -10.6 -8.95 -11 L -8.95 -14 Q -8.95 -14.4 -9.25 -14.7 -9.55 -15 -9.95 -15 L -13.8 -15 Q -13.95 -15 -14.05 -14.95 L -23.2 -12.65 Q -23.55 -12.6 -23.75 -12.3 -23.95 -12.05 -23.95 -11.7 L -23.95 -11 Z"/> </g> <g id="Symbol_Mouth_2_FILL"> <path fill="#3D465D" stroke="none" d=" M 9.95 10.8 Q 9.25 10.35 8.4 10.6 7.6 10.8 7.15 11.45 6.75 12 6 12.5 4.15 13.65 1.65 13.65 0.5 13.65 -0.5 13.45 -1.35 13.3 -2.05 13.75 -2.75 14.1 -2.95 14.95 -3.15 15.7 -2.65 16.4 -2.25 17 -1.35 17.2 0 17.5 1.65 17.5 5.5 17.5 8.3 15.7 L 8.25 15.75 Q 9.95 14.7 10.75 13.4 11.15 12.7 10.95 11.95 10.7 11.15 9.95 10.8 Z"/> </g> <g id="Symbol_Eyebrow_2_FILL"> <path fill="#3D465D" stroke="none" d=" M -25.15 -4.8 Q -24.4 -4.4 -23.6 -4.6 L -4.3 -9.8 Q -3.45 -10 -3.1 -10.7 -2.65 -11.4 -2.85 -12.25 L -3.9 -16.1 Q -4.1 -16.95 -4.85 -17.3 -5.5 -17.75 -6.35 -17.55 L -25.65 -12.35 Q -26.45 -12.15 -26.9 -11.4 -27.3 -10.75 -27.1 -9.9 L -26.05 -6.05 Q -25.85 -5.2 -25.15 -4.8 Z"/> </g> <g id="Symbol_Mouth_3_FILL"> <path fill="#FFFFFF" stroke="none" d=" M 18.8 7.2 Q 17.65 5.75 16.1 5.75 -0.4 9.9 -16.2 5.75 -17.75 5.75 -18.9 7.2 -20 8.65 -20 10.65 L -20 10.9 Q -20 12.85 -18.9 14.35 -17.75 15.75 -16.2 15.75 -0.4 11.65 16.1 15.75 17.65 15.75 18.8 14.35 20 12.85 20 10.9 L 20 10.65 Q 20 8.65 18.8 7.2 Z"/> </g> <g id="Symbol_Eyebrow_3_FILL"> <path fill="#3D465D" stroke="none" d=" M -26.85 -10.1 Q -26.5 -9.4 -25.65 -9.2 L -6.35 -4 Q -5.55 -3.8 -4.8 -4.2 -4.1 -4.6 -3.9 -5.45 L -2.85 -9.3 Q -2.65 -10.15 -3.05 -10.8 -3.5 -11.55 -4.3 -11.75 L -23.6 -16.95 Q -24.45 -17.15 -25.1 -16.7 -25.85 -16.35 -26.05 -15.5 L -27.1 -11.65 Q -27.3 -10.8 -26.85 -10.1 Z"/> </g> </defs> <!-- 分数显示文本 - 左上角小字体 --> <text x="0" y="12" font-size="12" fill="#333" font-family="Arial"> {{ appearanceScore }} </text> <g id="face" :transform="faceTransform"> <!-- 矩阵变换: matrix( 1, 0, 0, 1, 0,0) 垂直镜像对称: scale(-1,1) 移动位置: translate(60, 0) 顺时针旋转: rotate(180) --> <g :transform="shadowTransform"> <use xlink:href="#Symbol_Shadow_FILL"/> </g> <g :transform="bodyTransform"> <!-- 身体旋转动画 --> <animateTransform attributeName="transform" type="rotate" from="0" to="3" dur="3s" repeatCount="indefinite" additive="sum" values="0; 3; 0; -3; 0" calcMode="spline" keyTimes="0; 0.25; 0.5; 0.75; 1" keySplines="0.4 0 0.2 1; 0.4 0 0.2 1; 0.4 0 0.2 1; 0.4 0 0.2 1" /> <use :xlink:href="'#Symbol_Body_'+body+'_FILL'"/> <g :transform="leftEyeTransform"> <use :xlink:href="'#Symbol_Eye_'+eye+'_0_FILL'"/> </g> <g :transform="leftEyeTransform" transform-origin="-15 -5"> <use :xlink:href="'#Symbol_Eye_'+eye+'_1_FILL'"/> <animateTransform attributeName="transform" type="scale" from="1" to="1.2" dur="2s" repeatCount="indefinite" additive="sum" values="1; 1.2; 1" /> </g> <g :transform="rightEyeTransform"> <use :xlink:href="'#Symbol_Eye_'+eye+'_0_FILL'"/> </g> <g :transform="rightEyeTransform"> <use :xlink:href="'#Symbol_Eye_'+eye+'_1_FILL'"/> <animateTransform attributeName="transform" type="translate" from="0 0" to="2 0" dur="1.5s" repeatCount="indefinite" additive="sum" values="0,0; 2,0; 0,0; -2,0; 0,0" /> </g> <g :transform="leftEyebrowTransform" transform-origin="-15 -10"> <use :xlink:href="'#Symbol_Eyebrow_'+eyebrow+'_FILL'"/> <animateTransform attributeName="transform" type="rotate" from="-10" to="10" dur="2.5s" repeatCount="indefinite" additive="sum" values="-10; 10; -10" /> <animateTransform attributeName="transform" type="scale" from="1" to="1.1" dur="3s" repeatCount="indefinite" additive="sum" values="1; 1.1; 1" /> </g> <g :transform="rightEyebrowTransform"> <use :xlink:href="'#Symbol_Eyebrow_'+eyebrow+'_FILL'"/> <animateTransform attributeName="transform" type="skewX" from="-10" to="10" dur="2s" repeatCount="indefinite" additive="sum" values="-10; 10; -10" /> </g> <g :transform="mouthTransform"> <use :xlink:href="'#Symbol_Mouth_'+mouth+'_FILL'"/> <animateTransform attributeName="transform" type="scale" from="1" to="1.2 0.8" dur="2s" repeatCount="indefinite" additive="sum" values="1,1; 1.2,0.8; 1,1" calcMode="ease-in-out" /> <animateTransform attributeName="transform" type="translate" from="0 0" to="0 3" dur="1.8s" repeatCount="indefinite" additive="sum" values="0,0; 0,3; 0,0" /> </g> <!-- 左臂 --> <g :transform="leftArmTransform"> <line v-if="dev" :x1="leftArmX" :y1="leftArmY" :x2="leftHandX" :y2="leftHandY" stroke="#aaa" stroke-width="1" /> <animateTransform attributeName="transform" type="rotate" from="0 0 0" to="-15 -100 20" dur="3s" repeatCount="indefinite" additive="sum" values="0 -100 20; -15 -100 20; 0 -100 20; 10 -100 20; 0 -100 20" calcMode="spline" keyTimes="0; 0.25; 0.5; 0.75; 1" keySplines="0.4 0 0.2 1; 0.4 0 0.2 1; 0.4 0 0.2 1; 0.4 0 0.2 1" /> <g :transform="leftHandTransform"> <use :xlink:href="'#Symbol_Hand_'+leftHand+'_FILL'"/> <animateTransform attributeName="transform" type="scale" from="1" to="1.2" dur="1.5s" repeatCount="indefinite" additive="sum" values="1; 1.2; 1" /> <animateTransform attributeName="transform" type="rotate" from="0" to="15" dur="2s" repeatCount="indefinite" additive="sum" values="0; 15; -15; 0" /> </g> </g> <!-- 右臂 --> <g :transform="rightArmTransform"> <line v-if="dev" :x1="rightArmX" :y1="rightArmY" :x2="rightHandX" :y2="rightHandY" stroke="#aaa" stroke-width="1" /> <animateTransform attributeName="transform" type="rotate" from="0 100 20" to="15 100 20" dur="3.5s" repeatCount="indefinite" additive="sum" values="0 100 20; 15 100 20; 0 100 20; -10 100 20; 0 100 20" calcMode="spline" keyTimes="0; 0.25; 0.5; 0.75; 1" keySplines="0.4 0 0.2 1; 0.4 0 0.2 1; 0.4 0 0.2 1; 0.4 0 0.2 1" /> <g :transform="rightHandTransform"> <use :xlink:href="'#Symbol_Hand_'+rightHand+'_FILL'"/> <animateTransform attributeName="transform" type="skewY" from="-5" to="5" dur="2s" repeatCount="indefinite" additive="sum" values="-5; 5; -5" /> <animateTransform attributeName="transform" type="translate" from="0 0" to="2 2" dur="1.2s" repeatCount="indefinite" additive="sum" values="0,0; 2,2; 0,0; -2,-2; 0,0" /> </g> </g> <template v-if="dev"> <template v-for="i,i1 in parseInt(100/dev + 1)"> <template v-for="j,j1 in parseInt(50/dev + 1)"> <circle :cx="dev*i1" :cy="dev*j1" r="1" fill="#000"> <title>{{dev*i1}},{{dev*j1}}</title> </circle> <circle :cx="dev*i1" :cy="-dev*j1" r="1" fill="#000"> <title>{{dev*i1}},{{-dev*j1}}</title> </circle> <circle :cx="-dev*i1" :cy="dev*j1" r="1" fill="#000"> <title>{{-dev*i1}},{{dev*j1}}</title> </circle> <circle :cx="-dev*i1" :cy="-dev*j1" r="1" fill="#000"> <title>{{-dev*i1}},{{-dev*j1}}</title> </circle> </template> </template> </template> </g> </svg> ` });





