多彩机械时钟变换走动效果

代码语言:html

所属分类:其他

代码描述:多彩机械时钟变换走动效果

代码标签: 变换 走动 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">

<style>
/*[this is where magic is brewed]*/
@-webkit-keyframes circle {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes circle {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes swing {
  0% {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }
  100% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
}
@keyframes swing {
  0% {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }
  100% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
}
@-webkit-keyframes anchorswing {
  0% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  100% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
}
@keyframes anchorswing {
  0% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  100% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
}
@-webkit-keyframes pulse {
  0% {
    opacity: 1;
  }
  10% {
    opacity: .5;
  }
  50% {
    opacity: .25;
  }
  90% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  10% {
    opacity: .5;
  }
  50% {
    opacity: .25;
  }
  90% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes glow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes glow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes breathe {
  0% {
    opacity: .25;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: .25;
  }
}
@keyframes breathe {
  0% {
    opacity: .25;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: .25;
  }
}
@-webkit-keyframes hue {
  0% {
    fill: #ff8000;
  }
  55% {
    fill: #ff8000;
  }
  70% {
    fill: #00ff80;
  }
  85% {
    fill: #8000ff;
  }
  99.99% {
    fill: #ff8000;
  }
}
@keyframes hue {
  0% {
    fill: #ff8000;
  }
  55% {
    fill: #ff8000;
  }
  70% {
    fill: #00ff80;
  }
  85% {
    fill: #8000ff;
  }
  99.99% {
    fill: #ff8000;
  }
}
@-webkit-keyframes stroke-hue {
  0% {
    stroke: #ff8000;
  }
  55% {
    stroke: #ff8000;
  }
  70% {
    stroke: #00ff80;
  }
  85% {
    stroke: #8000ff;
  }
  99.99% {
    stroke: #ff8000;
  }
}
@keyframes stroke-hue {
  0% {
    stroke: #ff8000;
  }
  55% {
    stroke: #ff8000;
  }
  70% {
    stroke: #00ff80;
  }
  85% {
    stroke: #8000ff;
  }
  99.99% {
    stroke: #ff8000;
  }
}
@-webkit-keyframes dust {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5) rotateZ(-15deg);
            transform: scale(0.5) rotateZ(-15deg);
  }
  50% {
    opacity: .75;
    -webkit-transform: scale(0.75) rotateZ(0deg);
            transform: scale(0.75) rotateZ(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1) rotateZ(15deg);
            transform: scale(1) rotateZ(15deg);
  }
}
@keyframes dust {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5) rotateZ(-15deg);
            transform: scale(0.5) rotateZ(-15deg);
  }
  50% {
    opacity: .75;
    -webkit-transform: scale(0.75) rotateZ(0deg);
            transform: scale(0.75) rotateZ(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1) rotateZ(15deg);
            transform: scale(1) rotateZ(15deg);
  }
}
html body {
  position: relative;
  overflow: hidden;
  height: 100vh;
  background: #0d0d0d;
}
html body .frame {
  position: absolute;
  height: 95vmin;
  width: 95vmin;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}
html body .frame svg {
  position: absolute;
  height: 125%;
  width: 125%;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  /*[animations]*/
}
html body .frame svg .primary-fill {
  fill: #ff8000;
}
html body .frame svg .primary-stroke-a {
  fill: none;
  stroke: #ff8000;
  stroke-width: 1;
}
html body .frame svg .primary-stroke-b {
  fill: none;
  stroke: #ff8000;
  stroke-width: 3;
}
html body .frame svg .hour-hand {
  fill: #38332e;
}
html body .frame svg .minute-hand {
  fill: #464039;
}
html body .frame svg .second-hand {
  fill: #544d45;
}
html body .frame svg .skeleton-frame {
  fill: url(#face_frame_skeleton_1_);
}
html body .frame svg .gear-front {
  fill: #2a2622;
}
html body .frame svg .gear-back {
  fill: #1c1a17;
}
html body .frame svg .backdrop-disk {
  fill: #110f0e;
}
html body .frame svg .backdrop-glow-gradient {
  fill: url(#backdrop_glow_gradient);
}
html body .frame svg .st11 {
  fill: none;
}
html body .frame svg .st1 {
  fill: none;
  stroke: #1A1A1A;
  stroke-width: 6;
  stroke-linecap: round;
}
html body .frame svg .st2 {
  fill: none;
  stroke: #1A1A1A;
  stroke-width: 4.75;
  stroke-linecap: round;
}
html body .frame svg .st3 {
  fill: none;
  stroke: #1A1A1A;
  stroke-width: 3.5;
  stroke-linecap: round;
}
html body .frame svg .st4 {
  fill: none;
  stroke: #1A1A1A;
  stroke-width: 2.25;
  stroke-linecap: round;
}
html body .frame svg .st5 {
  fill: none;
  stroke: #1A1A1A;
  stroke-linecap: round;
}
html body .frame svg .st6 {
  fill: url(#SVGID_1_);
}
html body .frame svg .st8 {
  fill: url(#SVGID_2_);
}
html body .frame svg .st9 {
  fill: #181818;
}
html body .frame svg .st10 {
  fill: url(#SVGID_3_);
}
html body .frame svg .st14 {
  fill: url(#SVGID_4_);
}
html body .frame svg .st15 {
  fill: url(#SVGID_5_);
  stroke: url(#SVGID_6_);
  stroke-width: 2;
}
html body .frame svg .st16 {
  fill: #0D0D0D;
  stroke: url(#SVGID_7_);
}
html body .frame svg .st17 {
  fill: #282828;
  stroke: url(#SVGID_8_);
  stroke-width: 2;
}
html body .frame svg .st18 {
  fill: #282828;
  stroke: url(#SVGID_9_);
  stroke-width: 2;
}
html body .frame svg .st19 {
  fill: #282828;
  stroke: url(#SVGID_10_);
  stroke-width: 2;
}
html body .frame svg .st20 {
  fill: #282828;
  stroke: url(#SVGID_11_);
  stroke-width: 2;
}
html body .frame svg .st21 {
  fill: #282828;
  stroke: url(#SVGID_12_);
  stroke-width: 2;
}
html body .frame svg .st22 {
  fill: #282828;
  stroke: url(#SVGID_13_);
  stroke-width: 2;
}
html body .frame svg .st23 {
  fill: #282828;
  stroke: url(#SVGID_14_);
  stroke-width: 2;
}
html body .frame svg .st24 {
  fill: #282828;
  stroke: url(#SVGID_15_);
  stroke-width: 2;
}
html body .frame svg .st25 {
  fill: #282828;
  stroke: url(#SVGID_16_);
  stroke-width: 2;
}
html body .frame svg .st26 {
  fill: #282828;
  stroke: url(#SVGID_17_);
  stroke-width: 2;
}
html body .frame svg .st27 {
  fill: #282828;
  stroke: url(#SVGID_18_);
  stroke-width: 2;
}
html body .frame svg .st28 {
  fill: #282828;
  stroke: url(#SVGID_19_);
  stroke-width: 2;
}
html body .frame svg .st29 {
  fill: url(#SVGID_20_);
  stroke: url(#SVGID_21_);
  stroke-width: 2;
}
html body .frame svg .st30 {
  fill: #0D0D0D;
  stroke: url(#SVGID_22_);
}
html body .frame svg .st31 {
  fill: url(#SVGID_23_);
  stroke: url(#SVGID_24_);
  stroke-width: 2;
}
html body .frame svg .st32 {
  fill: #0D0D0D;
  stroke: url(#SVGID_25_);
}
html body .frame svg .st34 {
  fill: url(#SVGID_26_);
  stroke: url(#SVGID_27_);
  stroke-width: 2;
}
html body .frame svg .st35 {
  fill: #0D0D0D;
  stroke: url(#SVGID_28_);
}
html body .frame svg .st36 {
  fill: url(#SVGID_29_);
  stroke: url(#SVGID_30_);
  stroke-width: 2;
}
html body .frame svg .st37 {
  fill: #0D0D0D;
  stroke: url(#SVGID_31_);
}
html body .frame svg .st38 {
  fill: url(#SVGID_32_);
  stroke: url(#SVGID_33_);
  stroke-width: 2;
}
html body .frame svg .st39 {
  fill: #0D0D0D;
  stroke: url(#SVGID_34_);
}
html body .frame svg .st40 {
  fill: url(#SVGID_35_);
  stroke: url(#SVGID_36_);
  stroke-width: 2;
}
html body .frame svg .st41 {
  fill: #0D0D0D;
  stroke: url(#SVGID_37_);
}
html body .frame svg .st42 {
  fill: url(#SVGID_38_);
}
html body .frame svg .st45 {
  fill: url(#SVGID_39_);
}
html body .frame svg .st46 {
  fill: url(#SVGID_40_);
}
html body .frame svg .st47 {
  fill: url(#SVGID_41_);
}
html body .frame svg .st48 {
  fill: url(#SVGID_42_);
}
html body .frame svg .st49 {
  fill: url(#SVGID_43_);
}
html body .frame svg .st50 {
  fill: url(#SVGID_44_);
}
html body .frame svg .st51 {
  fill: url(#SVGID_45_);
}
html body .frame svg .st52 {
  fill: url(#SVGID_46_);
}
html body .frame svg .st53 {
  fill: url(#SVGID_47_);
}
html body .frame svg .st54 {
  fill: url(#SVGID_48_);
}
html body .frame svg .st55 {
  fill: url(#SVGID_49_);
}
html body .frame svg .st60 {
  fill: url(#SVGID_50_);
  stroke: url(#SVGID_51_);
  stroke-width: 2;
}
html body .frame svg .st61 {
  fill: #0D0D0D;
  stroke: url(#SVGID_52_);
}
html body .frame svg #hands,
html body .frame svg #hands g {
  -webkit-transform-origin: 657.5px 657.5px;
          transform-origin: 657.5px 657.5px;
}
html body .frame svg #knobs {
  -webkit-animation: breathe 5s linear infinite;
          animation: breathe 5s linear infinite;
}
html body .frame svg #knobs [class^=primary-stroke] {
  -webkit-animation: stroke-hue 15s linear infinite;
          animation: stroke-hue 15s linear infinite;
}
html body .frame svg #face_marks g {
  -webkit-animation: breathe 5s linear infinite;
          animation: breathe 5s linear infinite;
}
html body .frame svg #face_marks .primary-fill {
  -webkit-animation: hue 15s linear infinite;
          animation: hue 15s linear infinite;
}
html body .frame svg #back_marks {
  -webkit-animation: breathe 10s linear infinite;
          animation: breathe 10s linear infinite;
}
html body .frame svg #second_hand {
  -webkit-animation: circle 60s steps(360) infinite;
          animation: circle 60s steps(360) infinite;
}
html body .frame svg #minute_hand {
  -webkit-animation: circle 3600s steps(360) infinite;
          animation: circle 3600s steps(360) infinite;
}
html body .frame svg #hour_hand {
  -webkit-animation: circle 216000s steps(360) infinite;
          animation: circle 216000s steps(360) infinite;
}
html body .frame svg #pendilum {
  -webkit-transform-origin: 657.5px 275px;
          transform-origin: 657.5px 275px;
  -webkit-animation: swing 1s cubic-bezier(0.75, 0, 0.25, 1) alternate infinite;
          animation: swing 1s cubic-bezier(0.75, 0, 0.25, 1) alternate infinite;
}
html body .frame svg #gear_anchor {
  -webkit-transform-origin: 657.5px 275px;
          transform-origin: 657.5px 275px;
  -webkit-animation: anchorswing 1s cubic-bezier(0.75, 0, 0.25, 1) alternate infinite;
          animation: anchorswing 1s cubic-bezier(0.75, 0, 0.25, 1) alternate infinite;
}
html body .frame svg #gear_click {
  -webkit-transform-origin: 657.5px 657.5px;
          transform-origin: 657.5px 657.5px;
  animation: circle 30s steps(30) reverse infinite;
}
html body .frame svg #backdrop_disk {
  -webkit-transform-origin: 657.5px 657.5px;
          transform-origin: 657.5px 657.5px;
  -webkit-animation: circle 300s linear infinite;
          animation: circle 300s linear infinite;
}
html body .frame svg #ticks {
  -webkit-animation: pulse 1s linear infinite;
          animation: pulse 1s linear infinite;
}
html body .frame svg #ticks [id^=minute] {
  -webkit-animation: hue 15s linear infinite;
          animation: hue 15s linear infinite;
}
html body .frame svg #gear_front_ten_mark {
  -webkit-transform-origin: 292px 447px;
          transform-origin: 292px 447px;
  -webkit-animation: circle 10s steps(90) infinite;
          animation: circle 10s steps(90) infinite;
}
html body .frame svg #gear_front_two {
  -webkit-transform-origin: 657.5px 657.5px;
          transform-origin: 657.5px 657.5px;
  -webkit-animation: circle 60s linear infinite;
          animation: circle 60s linear infinite;
}
html body .frame svg #gear_front_small,
html body .frame svg #gear_six {
  -webkit-transform-origin: 768px 732px;
          transform-origin: 768px 732px;
  animation: circle 36s linear reverse infinite;
}
html body .frame svg #gear_one {
  -webkit-transform-origin: 657.5px 657.5px;
          transform-origin: 657.5px 657.5px;
  -webkit-animation: circle 30s linear infinite;
          animation: circle 30s linear infinite;
}
html body .frame svg #gear_two {
  -webkit-transform-origin: 532.7px 585.5px;
          transform-origin: 532.7px 585.5px;
  -webkit-animation: circle 5s steps(90) infinite;
          animation: circle 5s steps(90) infinite;
}
html body .frame svg #gear_three {
  -webkit-transform-origin: 954.8px 955.5px;
          transform-origin: 954.8px 955.5px;
  -webkit-animation: circle 7.5s linear infinite;
          animation: circle 7.5s linear infinite;
}
html body .frame svg #gear_four {
  -webkit-transform-origin: 986px 629px;
          transform-origin: 986px 629px;
  -webkit-animation: circle 7.5s linear infinite;
          animation: circle 7.5s linear infinite;
}
html body .frame svg #gear_five {
  -webkit-transform-origin: 359px 955px;
          transform-origin: 359px 955px;
  -webkit-animation: circle 15s linear infinite;
          animation: circle 15s linear infinite;
}
html body .frame svg #gear_seven {
  -webkit-transform-origin: 359px 358px;
          transform-origin: 359px 358px;
  animation: circle 7.5s steps(90) reverse infinite;
}
html body .frame svg #gear_eight {
  -webkit-transform-origin: 533px 585.5px;
          transform-origin: 533px 585.5px;
  -webkit-animation: circle 15s steps(90) infinite;
          animation: circle 15s steps(90) infinite;
}
html body .frame svg #gear_nine {
  -webkit-transform-origin: 874px 444.5px;
          transform-origin: 874px 444.5px;
  -webkit-animation: circle 10s steps(90) infinite;
          animation: circle 10s steps(90) infinite;
}
html body .frame svg #gear_ten {
  -webkit-transform-origin: 328px 616.5px;
          transform-origin: 328px 616.5px;
  -webkit-animation: circle 10s steps(90) infinite;
          animation: circle 10s steps(90) infinite;
}
html body .frame svg #gear_eleven {
  -webkit-transform-origin: 533px 585.5px;
          transform-origin: 533px 585.5px;
  animation: circle 10s steps(90) reverse infinite;
}
html body .frame svg #backdrop_glow {
  -webkit-animation: glow 15s linear infinite;
          animation: glow 15s linear infinite;
}
html body .frame svg [id$=nib] {
  -webkit-animation: hue 15s linear infinite;
          animation: hue 15s linear infinite;
}
html body .dust {
  z-index: 1;
  position: absolute;
  width: 120vmin;
  height: 120vmin;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}
html body .dust .specs {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(2px 2px at 10% 10%, #ff8000, rgba(255, 128, 0, 0)), radial-gradient(2px 2px at 20% 30%, #0080ff, rgba(0, 128, 255, 0)), radial-gradient(2px 2px at 40% 70%, #ff8000, rgba(255, 128, 0, 0)), radial-gradient(2px 2px at 50% 60%, #0080ff, rgba(0, 128, 255, 0)), radial-gradient(2px 2px at 80% 40%, #ff8000, rgba(255, 128, 0, 0)), radial-gradient(2px 2px at 90% 60%, #0080ff, rgba(0, 128, 255, 0)), radial-gradient(2px 2px at 75% 80%, #ff8000, rgba(255, 128, 0, 0)), radial-gradient(2px 2px at 90% 80%, #0080ff, rgba(0, 128, 255, 0));
  background-repeat: repeat;
  background-size: 100px 100px;
  opacity: 0;
  -webkit-animation: dust 3s linear infinite;
          animation: dust 3s linear infinite;
}
html body .dust .specs:nth-child(1) {
  background-position: 50% 50%;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
html body .dust .specs:nth-child(2) {
  background-position: 20% 60%;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  animation-direction: reverse;
}
html body .dust .specs:nth-child(3) {
  background-position: -20% -30%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
html body .dust .specs:nth-child(4) {
  background-position: 40% -80%;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  animation-direction: reverse;
}
html body .dust .specs:nth-child(5) {
  background-position: -20% 30%;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
</style>

</head>
<body translate="no">
<div class="frame">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1315 1315">
<defs>
</defs>
<g id="backdrop">
<g id="backdrop_disk">
<circle cx="657.5" cy="657.5" r="657.5" class="backdrop-disk" />
<g id="back_marks">
<g id="XMLID_5_">
<path d="M694.8 23.3L592.7 125.4M643.7 101.2L601 143.9M713.3 31.7l-42.7 42.6M721.7 50.2L619.6 152.3M721.7 125.4L619.6 23.3M643.7 74.4L601 31.7M713.3 143.9l-42.7-42.7M694.8 152.3L592.7 50.2" class="st1" />
<g transform="matrix(0.7071 -0.7071 0.7071 0.7071 130.4026 490.4157)">
<ellipse cx="657.2" cy="87.8" class="st1" rx="70.2" ry="70.2" />
<ellipse cx="657.2" cy="87.8" class="st2" rx="60.8" ry="60.8" />
<ellipse cx="657.2" cy="87.8" class="st3" rx="51.3" ry="51.3" />
<ellipse cx="657.2" cy="87.8" class="st4" rx="41.9" ry="41.9" />
<ellipse cx="657.2" cy="87.8" class="st5" rx="32.5" ry="32.5" />
</g>
</g>
<g id="XMLID_6_">
<path d="M694.8 1162.7l-102.1 102.1M643.7 1240.7l-42.7 42.6M713.3 1171.1l-42.7 42.7M721.7 1189.6l-102.1 102.1M721.7 1264.8l-102.1-102.1M643.7 1213.8l-42.7-42.7M713.3 1283.3l-42.7-42.7M694.8 1291.7l-102.1-102.1" class="st1" />
<g transform="matrix(0.7071 -0.7071 0.7071 0.7071 -675.2776 824.1394)">
<ellipse cx="657.2" cy="1227.2" class="st1" rx="70.2" ry="70.2" />
<ellipse cx="657.2" cy="1227.2" class="st2" rx="60.8" ry="60.8" />
<ellipse cx="657.2" cy="1227.2" class="st3" rx="51.3" ry="51.3" />
<ellipse cx="657.2" cy="1227.2" class="st4" rx="41.9" ry="41.9" />
<ellipse cx="657.2" cy="1227.2" class="st5" rx="32.5" ry="32.5" />
</g>
</g>
<g id="XMLID_8_">
<path d="M372.6 89.5l-37.3 139.4M367.4 182.5l-15.6 58.3M392.9 87.4l-15.6 58.4M409.4 99.3L372 238.8M447 164.4l-139.5-37.3M354 159.2l-58.4-15.6M449 184.7L390.7 169M437.1 201.2l-139.4-37.4" class="st1" />
<g transform="matrix(0.2588 -0.9659 0.9659 0.2588 117.436 481.2928)">
<ellipse cx="372.3" cy="164.1" class="st1" rx="70.2" ry="70.2" />
<ellipse cx="372.3" cy="164.1" class="st2" rx="60.8" ry="60.8" />
<ellipse cx="372.3" cy="164.1" class="st3" rx="51.3" ry="51.3" />
<ellipse cx="372.3" cy="164.1" class="st4" rx="41.9" ry="41.9" />
<ellipse cx="372.3" cy="164.1" class="st5" rx="32.5" ry="32.5" />
</g>
</g>
<g id="XMLID_7_">
<path d="M942.3 1076.2L905 1215.7M937.1 1169.2l-15.6 58.4M962.6 1074.2l-15.6 58.3M979.1 1086.1l-37.4 139.4M1016.7 1151.2l-139.5-37.4M923.7 1146l-58.4-15.7M1018.7 1171.4l-58.3-15.6M1006.8 1187.9l-139.4-37.3" class="st1" />
<g transform="matrix(0.2588 -0.9659 0.9659 0.2588 -413.4417 1762.9449)">
<ellipse cx="942" cy="1150.9" class="st1" rx="70.2" ry="70.2" />
<ellipse cx="942" cy="1150.9" class="st2" rx="60.8" ry="60.8" />
<ellipse cx="942" cy="1150.9" class="st3" rx="51.3" ry="51.3" />
<ellipse cx="942" cy="1150.9" class="st4" rx="41.9" ry="41.9" />
<ellipse cx="942" cy="1150.9" class="st5" rx="32.5" ry="32.5" />
</g>
</g>
<g id="XMLID_10_">
<path d="M126.8 307.8l37.3 139.5M168.7 391l15.7 58.3M143.3 296l15.6 58.3M163.5 298l37.4 139.5M228.6 335.6L89.2 373M145.4 377.6l-58.3 15.6M240.5 352.1l-58.3 15.6M238.5 372.3L99 409.7" class="st1" />
<g transform="matrix(0.9659 -0.2588 0.2588 0.9659 -90.867 55.0946)">
<ellipse cx="163.8" cy="372.6" class="st1" rx="70.2" ry="70.2" />
<ellipse cx="163.8" cy="372.6" class="st2" rx="60.8" ry="60.8" />
<ellipse cx="163.8" cy="372.6" class="st3" rx="51.3" ry="51.3" />
<ellipse cx="163.8" cy="372.6" class="st4" rx="41.9" ry="41.9" />
<ellipse cx="163.8" cy="372.6" class="st5" rx="32.5" ry="32.5" />
</g>
</g>
<g id="XMLID_9_">
<path d="M1113.5 877.5l37.4 139.5M1155.5 960.7l15.6 58.3M1130 865.7l15.6 58.3M1150.2 867.7l37.4 139.5M1215.4 905.3l-139.5 37.4M1132.2 947.3l-58.3 15.6M1227.3 921.8l-58.4 15.6M1225.2 942l-139.4 37.4" class="st1" />
<g transform="matrix(0.9659 -0.2588 0.2588 0.9659 -204.6939 329.8972)">
<ellipse cx="1150.6" cy="942.4" class="st1" rx="70.2" ry="70.2" />
<ellipse cx="1150.6" cy="942.4" class="st2" rx="60.8" ry="60.8" />
<ellipse cx="1150.6" cy="942.4" class="st3" rx="51.3" ry="51.3" />
<ellipse cx="1150.6" cy="942.4" class="st4" rx="41.9" ry="41.9" />
<ellipse cx="1150.6" cy="942.4" class="st5" rx="32.5" ry="32.5" />
</g>
</g>
<g id="XMLID_12_">
<path d="M23 619.9L125.1 722M100.9 670.9l42.7 42.7M31.3 601.4L74 644.1M49.9 593L152 695.1M125.1 593L23 695.1M74 670.9l-42.7 42.7M143.6 601.4l-42.7 42.7M152 619.9L49.9 722" class="st1" />
<g transform="matrix(0.7071 -0.7071 0.7071 0.7071 -439.2994 254.4375)">
<ellipse cx="87.5" cy="657.5" class="st1" rx="70.2" ry="70.2" />
<ellipse cx="87.5" cy="657.5" class="st2" rx="60.8" ry="60.8" />
<ellipse cx="87.5" cy="657.5" class="st3" rx="51.3" ry="51.3" />
<ellipse cx="87.5" cy="657.5" class="st4" rx="41.9" ry="41.9" />
<ellipse cx="87.5" cy="657.5" class="st5" rx="32.5" ry="32.5" />
</g>
</g>
<g id="XMLID_11_">
<path d="M1162.4 619.9L1264.5 722M1240.3 670.9l42.7 42.7M1170.7 601.4l42.7 42.7M1189.3 593l102.1 102.1M1264.5 593l-102.1 102.1M1213.4 670.9l-42.7 42.7M1283 601.4l-42.7 42.7M1291.4 619.9L1189.3 722" class="st1" />
<g transform="matrix(0.7071 -0.7071 0.7071 0.7071 -105.5757 1060.1177)">
<ellipse cx="1226.9" cy="657.5" class="st1" rx="70.2" ry="70.2" />
<ellipse cx="1226.9" cy="657.5" class="st2" rx="60.8" ry="60.8" />
<ellipse cx="1226.9" cy="657.5" class="st3" rx="51.3" ry="51.3" />
<ellipse cx="1226.9" cy="657.5" class="st4" rx="41.9" ry="41.9" />
<ellipse cx="1226.9" cy="657.5" class="st5" rx="32.5" ry="32.5" />
</g>
</g>
<g id="XMLID_14_">
<path d="M89.2 942l139.4 37.4M182.2 947.3l58.3 15.6M87.1 921.8l58.3 15.6M99 905.3l139.5 37.4M164.1 867.7l-37.3 139.5M158.9 960.7l-15.6 58.3M184.4 865.7L168.7 924M200.9 877.5L163.5 1017" class="st1" />
<g transform="matrix(0.2588 -0.9659 0.9659 0.2588 -788.829 856.68)">
<ellipse cx="163.8" cy="942.4" class="st1" rx="70.2" ry="70.2" />
<ellipse cx="163.8" cy="942.4" class="st2" rx="60.8" ry="60.8" />
<ellipse cx="163.8" cy="942.4" class="st3" rx="51.3" ry="51.3" />
<ellipse cx="163.8" cy="942.4" class="st4" rx="41.9" ry="41.9" />
<ellipse cx="163.8" cy="942.4" class="st5" rx="32.5" ry="32.5" />
</g>
</g>
<g id="XMLID_13_">
<path d="M1075.9 372.3l139.5 37.4M1168.9 377.6l58.4 15.6M1073.9 352.1l58.3 15.6M1085.8 335.6l139.4 37.4M1150.9 298l-37.4 139.5M1145.6 391l-15.6 58.3M1171.1 296l-15.6 58.3M1187.6 307.8l-37.4 139.5" class="st1" />
<g transform="matrix(0.2588 -0.9659 0.9659 0.2588 492.8232 1387.5577)">
<ellipse cx="1150.6" cy="372.6" class="st1" rx="70.2" ry="70.2" />
<ellipse cx="1150.6" cy="372.6" class="st2" rx="60.8" ry="60.8" />
<ellipse cx="1150.6" cy="372.6" class="st3" rx="51.3" ry="51.3" />
<ellipse cx="1150.6" cy="372.6" class="st4" rx="41.9" ry="41.9" />
<ellipse cx="1150.6" cy="372.6" class="st5" rx="32.5" ry="32.5" />
</g>
</g>
<g id="XMLID_16_">
<path d="M307.5 1187.9l139.5-37.3M390.7 1146l58.3-15.7M295.6 1171.4l58.4-15.6M297.7 1151.2l139.4-37.4M335.3 1086.1l37.3 139.4M377.3 1169.2l15.6 58.4M351.8 1074.2l15.6 58.3M372 1076.2l37.4 139.5" class="st1" />
<g transform="matrix(0.9659 -0.2588 0.2588 0.9659 -285.1817 135.5824)">
<ellipse cx="372.3" cy="1150.9" class="st1" rx="70.2" ry="70.2" />
<ellipse cx="372.3" cy="1150.9" class="st2" rx="60.8" ry="60.8" />
<ellipse cx="372.3" cy="1150.9" class="st3" rx="51.3" ry="51.3" />
<ellipse cx="372.3" cy="1150.9" class="st4" rx="41.9" ry="41.9" />
<ellipse cx="372.3" cy="1150.9" class="st5" rx="32.5" ry="32.5" />
</g>
</g>
<g id="XMLID_15_">
<path d="M877.2 201.2l139.5-37.4M960.4 159.2l58.3-15.6M865.3 184.7l58.4-15.7M867.4 164.4l139.4-37.3M905 99.3l37.3 139.5M947 182.5l15.6 58.3M921.5 87.4l15.6 58.4M941.7 89.5l37.4 139.4" class="st1" />
<g transform="matrix(0.9659 -0.2588 0.2588 0.9659 -10.3792 249.4093)">
<ellipse cx="942" cy="164.1" class="st1" rx="70.2" ry="70.2" />
<ellipse cx="942" cy="164.1" class="st2" rx="60.8" ry="60.8" />
<ellipse cx="942" cy="164.1" class="st3" rx="51.3" ry="51.3" />
<ellipse cx="942" cy="164.1" class="st4" rx="41.9" ry="41.9" />
<ellipse cx="942" cy="164.1" class="st5" rx="32.5" ry="32.5" />
</g>
</g>
<g id="XMLID_33_">
<path d="M529.4 35.2l-72.2 125M500.2 123.7L470 176M549.4 38.4l-30.2 52.3M562.3 54.2l-72.2 125M581.8 126.8L456.7 54.6M493.3 97.7L441 67.5M578.5 146.9l-52.3-30.2M562.7 159.8l-125-72.2" class="st1" />
<g transform="matrix(0.5 -0.866 0.866 0.5 162.0211 495.0492)">
<ellipse cx="509.7" cy="107.2" class="st1" rx="70.2" ry="70.2" />
<ellipse cx="509.7" cy="107.2" class="st2" rx="60.8" ry="60.8" />
<ellipse cx="509.7" cy="107.2" class="st3" rx="51.3" ry="51.3" />
<ellipse cx="509.7" cy="107.2" class="st4" rx="41.9" ry="41.9" />
<ellipse cx="509.7" cy="107.2" class="st5" rx="32.5" ry="32.5" />
</g>
</g>
<g id="XMLID_32_">
<path d="M824.3 1135.8l-72.2 125M795.1 1224.3l-30.2 52.3M844.3 1139l-30.2 52.3M857.2 1154.8l-72.2 125M876.7 1227.4l-125.1-72.2M788.2 1198.3l-52.3-30.2M873.4 1247.5l-52.3-30.2M857.6 1260.4l-125-72.2" class="st1" />
<g transform="matrix(0.5 -0.866 0.866 0.5 -643.6591 1300.7294)">
<ellipse cx="804.6" cy="1207.8" class="st1" rx="70.2" ry="70.2" />
<ellipse cx="804.6" cy="1207.8" class="st2" rx="60.8" ry="60.8" />
<ellipse cx="804.6" cy="1207.8" class="st3" rx="51.3" ry="51.3" />
<ellipse cx="804.6" cy="1207.8" class="st4" rx="41.9" ry="41.9" />
<ellipse cx="804.6" cy="1207.8" class="st5" rx="32.5" ry="32.5" />
</g>
</g>
<g id="XMLID_31_">
<path d="M235.3 182.5v144.4M254.3 273.7v60.4M254.3 175.3v60.3M273.4 182.5v144.4M326.5 235.6H182.2M235.3 254.7h-60.4M333.7 254.7h-60.3M326.5 273.7H182.2" class="st1" />
<circle cx="254.3" cy="254.7" r="70.2" class="st1" />
<circle cx="254.3" cy="254.7" r="60.8" class="st2" />
<circle cx="254.3" cy="254.7" r="51.3" class="st3" />
<circle cx="254.3" cy="254.7" r="41.9" class="st4" />
<circle cx="254.3" cy="254.7" r="32.5" class="st5" />
</g>
<g id="XMLID_30_">
<path d="M1041 988.1v144.4M1060 1079.4v60.3M1060 980.9v60.4M1079 988.1v144.4M1132.2 1041.3H987.8M1041 1060.3h-60.4M1139.4 1060.3H1079M1132.2 1079.4H987.8" class="st1" />
<circle cx="1060" cy="1060.3" r="70.2" class="st1" />
<circle cx="1060" cy="1060.3" r="60.8" class="st2" />
<circle cx="1060" cy="1060.3" r="51.3" class="st3" />
<circle cx="1060" cy="1060.3" r="41.9" class="st4" />
<circle cx="1060" cy="1060.3" r="32.5" class="st5" />
</g>
<g id="XMLID_29_">
<path d="M54.3 457l72.2 125.1M116.4 526.5l30.2 52.3M67.2 441.3l30.2 52.3M87.3 438l72.2 125.1M159.9 457.5l-125 72.2M90.4 519.6l-52.3 30.2M175.7 470.3l-52.3 30.2M178.9 490.4l-125 72.2" class="st1" />
<g transform="matrix(0.866 -0.5 0.5 0.866 -240.7038 121.7816)">
<ellipse cx="106.9" cy="510.1" class="st1" rx="70.2" ry="70.2" />
<ellipse cx="106.9" cy="510.1" class="st2" rx="60.8" ry="60.8" />
<ellipse cx="106.9" cy="510.1" class="st3" rx="51.3" ry="51.3" />
<ellipse cx="106.9" cy="510.1" class="st4" rx="41.9" ry="41.9" />
<ellipse cx="106.9" cy="510.1" class="st5" rx="32.5" ry="32.5" />
</g>
</g>
<g id="XMLID_28_">
<path d="M1154.9 751.9l72.2 125.1M1217 821.4l30.2 52.3M1167.8 736.2l30.2 52.3M1187.9 732.9L1260 858M1260.5 752.4l-125.1 72.2M1191 814.5l-52.3 30.2M1276.2 765.2l-52.3 30.2M1279.5 785.3l-125 72.2" class="st1" />
<g transform="matrix(0.866 -0.5 0.5 0.866 -240.7038 711.5804)">
<ellipse cx="1207.5" cy="804.9" class="st1" rx="70.2" ry="70.2" />
<ellipse cx="1207.5" cy="804.9" class="st2" rx="60.8" ry="60.8" />
<ellipse cx="1207.5" cy="804.9" class="st3" rx="51.3" ry="51.3" />
<ellipse cx="1207.5" cy="804.9" class="st4" rx="41.9" ry="41.9" />
<ellipse cx="1207.5" cy="804.9" class="st5" rx="32.5" ry="32.5" />
</g>
</g>
<g id="XMLID_27_">
<path d="M34.9 785.3l125 72.2M123.4 814.5l52.3 30.2M38.1 765.2l52.3 30.2M53.9 752.4l125 72.2M126.5 732.9L54.3 858M97.4 821.4l-30.2 52.3M146.6 736.2l-30.2 52.3M159.5 751.9L87.3 877" class="st1" />
<g transform="matrix(0.5 -0.866 0.866 0.5 -643.6591 495.0492)">
<ellipse cx="106.9" cy="804.9" class="st1" rx="70.2" ry="70.2" />
<ellipse cx="106.9" cy="804.9" class="st2" rx="60.8" ry="60.8" />
<ellipse cx="106.9" cy="804.9" class="st3" rx="51.3" ry="51.3" />
<ellipse cx="106.9" cy="804.9" class="st4" rx="41.9" ry="41.9" />
<ellipse cx="106.9" cy="804.9" class="st5" rx="32.5" ry="32.5" />
</g>
</g>
<g id="XMLID_26_">
<path d="M1135.4 490.4l125.1 72.2M1223.9 519.6l52.3 30.2M1138.7 470.3l52.3 30.2M1154.5 457.5l125 72.2M1227.1 438l-72.2 125.1M1198 526.5l-30.2 52.3M1247.2 441.3l-30.2 52.3M1260 457l-72.1 125.1" class="st1" />
<g transform="matrix(0.5 -0.866 0.866 0.5 162.0211 1300.7294)">
<ellipse cx="1207.5" cy="510.1" class="st1" rx="70.2" ry="70.2" />
<ellipse cx="1207.5" cy="510.1" class="st2" rx="60.8" ry="60.8" />
<ellipse cx="1207.5" cy="510.1" class="st3" rx="51.3" ry="51.3" />
<ellipse cx="1207.5" cy="510.1" class="st4" rx="41.9" ry="41.9" />
<ellipse cx="1207.5" cy="510.1" class="st5" rx="32.5" ry="32.5" />
</g>
</g>
<g id="XMLID_25_">
<path d="M182.2 1079.4h144.3M273.4 1060.3h60.3M174.9 1060.3h60.4M182.2 1041.3h144.3M235.3 988.1v144.4M254.3 1079.4v60.3M254.3 980.9v60.4M273.4 988.1v144.4" class="st1" />
<circle cx="254.3" cy="1060.3" r="70.2" class="st1" />
<circle cx="254.3" cy="1060.3" r="60.8" class="st2" />
<circle cx="254.3" cy="1060.3" r="51.3" class="st3" />
<circle cx="254.3" cy="1060.3" r="41.9" class="st4" />
<circle cx="254.3" cy="1060.3" r="32.5" class="st5" />
</g>
<g id="XMLID_24_">
<path d="M987.8 273.7h144.4M1079 254.7h60.4M980.6 254.7h60.4M987.8 235.6h144.4M1041 182.5v144.4M1060 273.7v60.4M1060 175.3v60.3M1079 182.5v144.4" class="st1" />
<circle cx="1060" cy="254.7" r="70.2" class="st1" />
<circle cx="1060" cy="254.7" r="60.8" class="st2" />
<circle cx="1060" cy="254.7" r="51.3" class="st3" />
<circle cx="1060" cy="254.7" r="41.9" class="st4" />
<circle cx="1060" cy="254.7" r="32.5" class="st5" />
</g>
<g id="XMLID_23_">
<path d="M456.7 1260.4l125.1-72.2M526.2 1198.3l52.3-30.2M441 1247.5l52.3-30.2M437.7 1227.4l125-72.2M457.2 1154.8l72.2 125M519.2 1224.3l30.2 52.3M470 1139l30.2 52.3M490.1 1135.8l72.2 125" class="st1" />
<g transform="matrix(0.866 -0.5 0.5 0.866 -535.6033 416.681)">
<ellipse cx="509.7" cy="1207.8" class="st1" rx="70.2" ry="70.2" />
<ellipse cx="509.7" cy="1207.8" class="st2" rx="60.8" ry="60.8" />
<ellipse cx="509.7" cy="1207.8" class="st3" rx="51.3" ry="51.3" />
<ellipse cx="509.7" cy="1207.8" class="st4" rx="41.9" ry="41.9" />
<ellipse cx="509.7" cy="1207.8" class="st5" rx="32.5" ry="32.5" />
</g>
</g>
<g id="XMLID_22_">
<path d="M751.6 159.8l125.1-72.2M821.1 97.7l52.3-30.2M735.9 146.9l52.3-30.2M732.6 126.8l125-72.2M752.1 54.2l72.2 125M814.1 123.7l30.2 52.3M764.9 38.4l30.2 52.3M785 35.2l72.2 125" class="st1" />
<g transform="matrix(0.866 -0.5 0.5 0.866 54.1956 416.681)">
<ellipse cx="804.6" cy="107.2" class="st1" rx="70.2" ry="70.2" />
<ellipse cx="804.6" cy="107.2" class="st2" rx="60.8" ry="60.8" />
<ellipse cx="804.6" cy="107.2" class="st3" rx="51.3" ry="51.3" />
<ellipse cx="804.6" cy="107.2" class="st4" rx="41.9" ry="41.9" />
<ellipse cx="804.6" cy="107.2" class="st5" rx="32.5" ry="32.5" />
</g>
</g>
<radialGradient id="SVGID_1_" cx="657.5" cy="657.5" r="640.396" gradientUnits="userSpaceOnUse">
<stop offset=".7" style="stop-color:#000000" />
<stop offset="1" style="stop-color:#000000;stop-opacity:0" />
</radialGradient>
<circle cx="657.5" cy="657.5" r="640.4" class="st6" />
</g>
<radialGradient id="backdrop_glow_gradient" cx="657.5" cy="657.5" r="419.904" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#000000" />
<stop offset=".192" style="stop-color:#0A0500" />
<stop offset=".524" style="stop-color:#261300" />
<stop offset=".954" style="stop-color:#542900" />
<stop offset="1" style="stop-color:#592C00" />
</radialGradient>
<circle id="backdrop_glow" cx="657.5" cy="657.5" r="419.9" class="backdrop-glow-gradient" />
</g>
</g>
<g id="WOS">
<radialGradient id="SVGID_2_" cx="657.185" cy="657.5" r="292.128" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#333333" />
<stop offset="1" style="stop-color:#181818" />
</radialGradient>
<path d="M787 633.3c6.7 0 12.7 2.7 17.1 7.1l145.2-145.2c-8.8-15.9-18.9-31-30.2-45.1-2.1 8.3-6.4 16.1-12.9 22.6-13.3 13.3-32.3 17.5-49.2 12.5L735.9 606.4l-27.6-27.6 118.6-118.6c-9.5-18.7-6.5-42.1 9.1-57.7 6.1-6.1 13.5-10.3 21.3-12.6-12-9-24.7-17.2-37.9-24.5L674.3 510.6c4.4 4.4 7.1 10.4 7.1 17.1 0 13.3-10.8 24.2-24.2 24.2S633 541 633 527.6c0-6.7 2.7-12.7 7.1-17.1L494.9 365.4c-13.2 7.3-25.9 15.5-37.9 24.5 7.8 2.2 15.2 6.4 21.3 12.6 15.6 15.6 18.6 39 9.1 57.7L606 578.8l-27.6 27.6-121.1-121.2c-16.9 5-35.9.8-49.2-12.5-6.5-6.5-10.8-14.3-12.9-22.6-11.2 14.2-21.3 29.2-30.2 45.1l145.2 145.2c4.4-4.4 10.4-7.1 17.1-7.1 13.3 0 24.2 10.8 24.2 24.2 0 13.3-10.8 24.2-24.2 24.2-6.7 0-12.7-2.7-17.1-7.1L365.1 819.8c8.4 15.2 18 29.6 28.6 43.2.6-11.9 5.4-23.5 14.5-32.6 15.6-15.6 39-18.6 57.7-9.1l112.6-112.6 27.6 27.6-115.2 115.1c5 16.9.8 35.9-12.5 49.2-9.4 9.4-21.7 14.2-34 14.5 15.7 13 32.6 24.6 50.6 34.5l145.2-145.2c-4.4-4.4-7.1-10.4-7.1-17.1 0-13.3 10.8-24.2 24.2-24.2s24.2 10.8 24.2 24.2c0 6.7-2.7 12.7-7.1 17.1l145.2 145.2c17.9-10 34.9-21.6 50.6-34.5-12.3-.3-24.6-5.1-34-14.5-13.3-13.3-17.5-32.3-12.5-49.2L708.3 736.2l27.6-27.6 112.6 112.6c18.7-9.5 42.1-6.5 57.7 9.1 9.1 9.1 13.9 20.7 14.5 32.6 10.6-13.6 20.2-28 28.6-43.2L804.1 674.6c-4.4 4.4-10.4 7.1-17.1 7.1-13.3 0-24.2-10.8-24.2-24.2.1-13.3 10.9-24.2 24.2-24.2zM657.2 734c-42.3 0-76.5-34.3-76.5-76.5S615 581 657.2 581s76.5 34.3 76.5 76.5-34.2 76.5-76.5 76.5z" class="st8" />
</g>
<g id="pendilum">
<path d="M705.3 376.1v-41.4c35.9-17.8 60.7-54.8 60.7-97.5h-20c0 31.2-16.2 58.8-40.7 74.6v-75.2h-12v81.8c-5.1 2.3-10.5 4.1-16.1 5.4v-87.2h-12v89.1c-2.6.2-5.3.4-8 .4s-5.4-.1-8-.4v-89.1h-12v87.2c-5.6-1.3-11-3.1-16.1-5.4v-81.8h-12v75.2c-24.5-15.8-40.7-43.3-40.7-74.6h-20c0 42.7 24.8 79.8 60.7 97.5v40.6c-19.4 14.5-31.9 37.6-31.9 63.7s12.5 49.2 31.9 63.7v365.5h12V510.1c5.1 2.5 10.4 4.6 16.1 6v352.1h12V518.1c2.5.2 5 .4 7.5.4 2.9 0 5.7-.2 8.5-.5v350.2h12V515.8c5.6-1.5 11-3.6 16.1-6.2v358.6h12V501.9c18.8-14.5 30.9-37.3 30.9-62.9s-12.1-48.3-30.9-62.9zm-28.1-32c5.5-1 10.9-2.5 16.1-4.3v28.6c-5.1-2.6-10.4-4.7-16.1-6.2v-18.1zm-28.1 1.6c2.7.2 5.3.3 8 .3s5.4-.1 8-.3V360c-2.8-.3-5.7-.5-8.5-.5-2.5 0-5.1.1-7.5.4v-14.2zm-28-5.9c5.2 1.8 10.6 3.3 16.1 4.3v17.8c-5.6 1.4-11 3.5-16.1 6v-28.1zm35.6 153.7c-30.1 0-54.5-24.4-54.5-54.5s24.4-54.5 54.5-54.5 54.5 24.4 54.5 54.5-24.4 54.5-54.5 54.5z" class="st9" />
<radialGradient id="SVGID_3_" cx="657.185" cy="957.821" r="115.738" fx="593.423" fy="900.537" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#504d49" />
<stop offset=".941" style="stop-color:#262626" />
</radialGradient>
<circle cx="657.2" cy="957.8" r="117.6" class="st10" />
<path id="wheel" d="M657.2 837.3c-66.6 0-120.6 54-120.6 120.6s54 120.6 120.6 120.6 120.6-54 120.6-120.6-54-120.6-120.6-120.6zm76.1 202.2L667 973.2l5.6-5.6 66.3 66.3c-1.9 1.9-3.7 3.8-5.6 5.6zm5.5-157.7L672.5 948l-5.6-5.6 66.3-66.3c2 1.9 3.8 3.7 5.6 5.7zm-56.5 76l65.3-65.3c13.3 18.4 21.1 40.9 21.1 65.3s-7.8 47-21.1 65.3l-65.3-65.3zm40.2-90.5l-65.3 65.3-65.3-65.3c18.4-13.3 40.9-21.1 65.3-21.1s47 7.9 65.3 21.1zm-59.7 90.5l-5.6 5.6-5.6-5.6 5.6-5.6 5.6 5.6zm-87.3 76.1l66.3-66.3 5.6 5.6-66.3 66.3c-1.9-1.8-3.8-3.7-5.6-5.6zm66.3-85.9l-66.3-66.3c1.8-1.9 3.7-3.8 5.6-5.6l66.3 66.3-5.6 5.6zm-75.1-55.5l65.3 65.3-65.3 65.3c-13.3-18.4-21.1-40.9-21.1-65.3s7.8-46.9 21.1-65.3zm90.5 176.9c-24.4 0-47-7.8-65.3-21.1l65.3-65.3 65.3 65.3c-18.3 13.3-40.9 21.1-65.3 21.1z" class="st9" />
</g>
<g id="gear_anchor">

<path d="M792.3 363.2c0-30.6-15.9-58.3-41.5-77.9-19.2 35.5-49.3 59.5-83.7 63.4v-40.1c12.6-3.6 22.3-13.9 24.9-26.9h19.6v-13.4h-19.5c-3-16.5-17.4-29.1-34.8-29.1s-31.8 12.5-34.8 29.1H603v13.4h19.6c2.6 12.9 12.4 23.3 24.9 26.9v40.1c-34.4-3.8-64.5-27.9-83.7-63.4-25.6 19.7-41.5 47.3-41.5 77.9 0 24.7 10.4 47.5 27.9 65.7-6.1-12.3-9.4-25.8-9.4-40 0-20.6 7.1-39.7 19.2-55.6 14.9 17.8 52.8 30.5 97.2 30.5 44.4 0 82.3-12.7 97.2-30.5 12.1 16 19.2 35.1 19.2 55.6 0 14.2-3.4 27.7-9.4 40 17.7-18.2 28.1-41 28.1-65.7zm-134.8-114c11.8 0 21.8 8.1 24.5 19.1h-9.3c-2.5-6-8.4-10.2-15.3-10.2s-12.8 4.2-15.3 10.2H633c2.7-11 12.7-19.1 24.5-19.1zm-24.3 32.4h9.4c2.7 5.5 8.3 9.4 14.9 9.4s12.2-3.8 14.9-9.4h9.4c-3.1 10.5-12.8 18.2-24.3 18.2s-21.2-7.7-24.3-18.2z" class="gear-front" />
</g>
<g id="gear_click">
<path id="click_wheel" d="M898.2 661.9v-8.8h-23.4c-.3-16.4-2.5-32.3-6.2-47.6l22.5-6-2.3-8.5-22.5 6c-4.5-15.6-10.7-30.4-18.4-44.4l20.2-11.7-4.4-7.6-20.2 11.7c-8.3-13.8-18.2-26.5-29.3-38.1l16.5-16.5-6.2-6.2-16.5 16.5c-11.5-11.1-24.3-20.9-38.1-29.3l11.7-20.2-7.6-4.4-11.7 20.2c-13.9-7.7-28.8-13.9-44.4-18.4l6-22.5-8.5-2.3-6 22.5c-15.3-3.8-31.2-5.9-47.6-6.2v-23.4H653v23.4c-16.4.3-32.3 2.5-47.6 6.2l-6-22.5-8.5 2.3 6 22.5c-15.6 4.5-30.4 10.7-44.4 18.4L541 446.9l-7.6 4.4 11.7 20.2c-13.8 8.3-26.5 18.2-38.1 29.3l-16.5-16.5-6.2 6.2 16.5 16.5c-11.1 11.5-20.9 24.3-29.3 38.1l-20.2-11.7-4.4 7.6 20.2 11.7c-7.7 13.9-13.9 28.8-18.4 44.4l-22.5-6-2.3 8.5 22.5 6c-3.8 15.3-5.9 31.2-6.2 47.6h-23.4v8.8h23.4c.3 16.4 2.5 32.3 6.2 47.6l-22.5 6 2.3 8.5 22.5-6c4.5 15.6 10.7 30.4 18.4 44.4L446.9 774l4.4 7.6 20.2-11.7c8.3 13.8 18.2 26.5 29.3 38.1l-16.5 16.5 6.2 6.2 16.5-16.5c11.5 11.1 24.3 20.9 38.1 29.3l-11.7 20.2 7.6 4.4 11.7-20.2c13.9 7.7 28.8 13.9 44.4 18.4l-6 22.5 8.5 2.3 6-22.5c15.3 3.8 31.2 5.9 47.6 6.2v23.4h8.8v-23.4c16.4-.3 32.3-2.5 47.6-6.2l6 22.5 8.5-2.3-6-22.5c15.6-4.5 30.4-10.7 44.4-18.4l11.7 20.2 7.6-4.4-11.8-20.2c13.8-8.3 26.5-18.2 38.1-29.3l16.5 16.5 6.2-6.2-16.5-16.5c11.1-11.5 20.9-24.3 29.3-38.1l20.2 11.7 4.4-7.6-20.2-11.7c7.7-13.9 13.9-28.8 18.4-44.4l22.5 6 2.3-8.5-22.5-6c3.8-15.3 5.9-31.2 6.2-47.6h23.3zm-32.6-12.8H689c-3-11.3-11.8-20.1-23.1-23.1V450c108.1 4.4 195 91.1 199.7 199.1zM649.1 450v176c-11.3 3-20.1 11.8-23.1 23.1H448.9c4.7-108.2 91.9-195 200.2-199.1zM448.8 665.9H626c3 11.3 11.8 20.1 23.1 23.1v177.8c-108.9-4.2-196.4-91.9-200.3-200.9zm217.1 200.9V689c11.3-3 20.1-11.8 23.1-23.1h176.7c-3.9 108.8-91.1 196.4-199.8 200.9z" class="gear-front" />
</g>
<g id="gears">
<path id="gear_eleven" d="M615.1 581.6l9.1-1.8-.8-7.8-9.2.1c-.4-2.6-1-5.1-1.6-7.6l8.5-3.6-2.4-7.5-9 2.1c-.9-2.4-2-4.8-3.2-7.1l7.5-5.3-3.9-6.8-8.4 3.9c-1.4-2.2-3-4.3-4.6-6.3l6.3-6.8-5.2-5.8-7.4 5.5c-1.8-1.8-3.8-3.6-5.8-5.2l4.7-7.9-6.3-4.6-6.1 7c-2.2-1.4-4.4-2.7-6.7-3.9l3-8.7-7.2-3.2-4.5 8.1c-2.4-.9-4.9-1.7-7.4-2.4l1.1-9.2-7.7-1.6-2.7 8.8c-2.5-.4-5.1-.7-7.7-.8l-.8-9.2h-7.8l-.8 9.2c-2.6.1-5.2.4-7.7.8l-2.7-8.8-7.7 1.6 1.1 9.2c-2.5.7-5 1.5-7.4 2.4l-4.5-8.1-7.2 3.2 3 8.7c-2.3 1.2-4.6 2.5-6.7 3.9l-6.1-7-6.3 4.6 4.7 7.9c-2 1.6-3.9 3.4-5.8 5.2l-7.4-5.5-5.2 5.8 6.3 6.8c-1.6 2-3.1 4.1-4.6 6.3l-8.4-3.9-3.9 6.8 7.5 5.3c-1.2 2.3-2.2 4.7-3.2 7.1l-9-2.1-2.4 7.5 8.5 3.6c-.7 2.5-1.2 5-1.6 7.6l-9.2-.1-.8 7.8 9.1 1.8c-.1 1.3-.1 6.5 0 7.8l-9.1 1.8.8 7.8 9.2-.1c.4 2.6 1 5.1 1.6 7.6l-8.5 3.6 2.4 7.5 9-2.1c.9 2.4 2 4.8 3.2 7.1l-7.5 5.3 3.9 6.8 8.4-3.9c1.4 2.2 3 4.3 4.6 6.3l-6.3 6.8 5.2 5.8 7.4-5.5c1.8 1.8 3.8 3.6 5.8 5.2l-4.7 7.9 6.3 4.6 6.1-7c2.2 1.4 4.4 2.7 6.7 3.9l-3 8.7 7.2 3.2 4.5-8.1c2.4.9 4.9 1.7 7.4 2.4l-1.1 9.2 7.7 1.6 2.7-8.8c2.5.4 5.1.7 7.7.8l.8 9.2h7.8l.8-9.2c2.6-.1 5.2-.4 7.7-.8l2.7 8.8 7.7-1.6-1.1-9.2c2.5-.7 5-1.5 7.4-2.4l4.5 8.1 7.2-3.2-3-8.7c2.3-1.2 4.6-2.5 6.7-3.9l6.1 7 6.3-4.6-4.7-7.9c2-1.6 3.9-3.4 5.8-5.2l7.4 5.5 5.2-5.8-6.3-6.8c1.6-2 3.1-4.1 4.6-6.3l8.4 3.9 3.9-6.8-7.5-5.3c1.2-2.3 2.2-4.7 3.2-7.1l9 2.1 2.4-7.5-8.5-3.6c.7-2.5 1.2-5 1.6-7.6l9.2.1.8-7.8-9.1-1.8c.1-1.3.1-6.5 0-7.8zm-78.5-65.5c0-2.5 2.2-4.5 4.7-4.2 20.5 2.4 38.5 13.1 50.4 28.7 1.5 2 1 5-1.3 6.2l-43.3 25c-4.7 2.7-10.6-.7-10.6-6.1v-49.6zM473.5 541c11.7-15.6 29.4-26.4 49.7-29 2.5-.3 4.8 1.6 4.8 4.2v49.5c0 5.4-5.9 8.9-10.6 6.1l-42.6-24.6c-2.3-1.3-2.8-4.2-1.3-6.2zm-9.2 73.1c-3.7-8.8-5.7-18.5-5.7-28.6 0-10.2 2.1-20 5.8-28.9 1-2.3 3.8-3.3 6-2l42.6 24.6c4.7 2.7 4.7 9.5 0 12.3l-42.7 24.7c-2.1 1.2-5 .3-6-2.1zm63.7 40.7c0 2.6-2.3 4.5-4.8 4.2-20.4-2.6-38.2-13.5-49.9-29.2-1.5-2-.9-4.9 1.3-6.2l42.8-24.7c4.7-2.7 10.6.7 10.6 6.1v49.8zm-4.7-69.3c0-5.2 4.2-9.5 9.5-9.5 5.2 0 9.5 4.2 9.5 9.5 0 5.2-4.2 9.5-9.5 9.5s-9.5-4.3-9.5-9.5zm68.6 44.7c-11.9 15.7-30 26.6-50.6 28.9-2.5.3-4.7-1.7-4.7-4.2V605c0-5.4 5.9-8.9 10.6-6.1l43.4 25.1c2.2 1.3 2.8 4.2 1.3 6.2zm9-15.6c-1 2.3-3.8 3.3-6 2l-43.5-25.1c-4.7-2.7-4.7-9.5 0-12.3l43.4-25c2.2-1.3 5-.3 6 2 3.9 9 6 18.9 6 29.3.1 10.3-2.1 20.2-5.9 29.1z" class="gear-front" />
<path id="gear_ten" d="M447.2 610.9l13.2-2.6-1.2-11.3-13.4.2c-.6-3.7-1.4-7.4-2.3-11l12.3-5.3-3.5-10.8-13 3c-1.4-3.5-2.9-7-4.6-10.3l10.9-7.7-5.7-9.8-12.2 5.6c-2.1-3.1-4.3-6.2-6.6-9.1l9.1-9.8-7.6-8.4-10.7 8c-2.7-2.6-5.5-5.2-8.4-7.5l6.9-11.5-9.2-6.7-8.8 10.1c-3.2-2-6.4-3.9-9.8-5.6l4.3-12.7-10.4-4.6-6.5 11.7c-3.5-1.3-7.1-2.5-10.7-3.5l1.6-13.3-11.1-2.4-3.9 12.8c-3.7-.6-7.4-.9-11.2-1.2l-1.2-13.4h-11.4l-1.2 13.4c-3.8.2-7.5.6-11.2 1.2l-3.9-12.8-11.1 2.4 1.6 13.3c-3.6 1-7.2 2.2-10.7 3.5l-6.5-11.7-10.4 4.6 4.3 12.7c-3.3 1.7-6.6 3.6-9.8 5.6l-8.8-10.1-9.2 6.7L252 524c-2.9 2.4-5.7 4.9-8.4 7.5l-10.7-8-7.6 8.4 9.1 9.8c-2.3 2.9-4.6 6-6.6 9.1l-12.2-5.6-5.7 9.8 10.9 7.7c-1.7 3.3-3.2 6.8-4.6 10.3l-13-3-3.5 10.8 12.3 5.3c-.9 3.6-1.7 7.3-2.3 11l-13.4-.2-1.2 11.3 13.2 2.6c-.1 1.9-.1 9.4 0 11.3l-13.2 2.6 1.2 11.3 13.4-.2c.6 3.7 1.4 7.4 2.3 11l-12.3 5.3 3.5 10.8 13-3c1.4 3.5 2.9 7 4.6 10.3l-10.9 7.7 5.7 9.8 12.2-5.6c2.1 3.1 4.3 6.2 6.6 9.1l-9.1 9.8 7.6 8.4 10.7-8c2.7 2.6 5.5 5.2 8.4 7.5l-6.9 11.5 9.2 6.7 8.8-10.1c3.2 2 6.4 3.9 9.8 5.6l-4.3 12.7 10.4 4.6 6.5-11.7c3.5 1.3 7.1 2.5 10.7 3.5l-1.6 13.3 11.1 2.4 3.9-12.8c3.7.6 7.4.9 11.2 1.2l1.2 13.4h11.4l1.2-13.4c3.8-.2 7.5-.6 11.2-1.2l3.9 12.8 11.1-2.4-1.6-13.3c3.6-1 7.2-2.2 10.7-3.5l6.5 11.7 10.4-4.6-4.3-12.7c3.3-1.7 6.6-3.6 9.8-5.6l8.8 10.1 9.2-6.7-6.9-11.5c2.9-2.4 5.7-4.9 8.4-7.5l10.7 8 7.6-8.4-9.1-9.8c2.3-2.9 4.6-6 6.6-9.1l12.2 5.6 5.7-9.8-10.9-7.7c1.7-3.3 3.2-6.8 4.6-10.3l13 3 3.5-10.8-12.3-5.3c.9-3.6 1.7-7.3 2.3-11l13.4.2 1.2-11.3-13.2-2.6c.1-1.8.1-9.4.1-11.2zm-113.9-95c0-3.7 3.2-6.5 6.9-6.1 29.8 3.4 55.8 19 73.1 41.6 2.2 2.9 1.4 7.2-1.8 9l-62.7 36.2c-6.8 3.9-15.4-1-15.4-8.9v-71.8zm-91.5 36c17-22.6 42.7-38.2 72.1-42 3.7-.5 6.9 2.4 6.9 6.1v71.7c0 7.9-8.6 12.8-15.4 8.9L243.7 561c-3.2-1.9-4.1-6.1-1.9-9.1zM228.6 658c-5.3-12.8-8.3-26.8-8.3-41.5 0-14.8 3-29 8.5-41.8 1.4-3.4 5.5-4.8 8.7-2.9l61.8 35.7c6.8 3.9 6.8 13.8 0 17.8L237.4 661c-3.3 1.8-7.4.4-8.8-3zm92.3 59c0 3.7-3.3 6.6-6.9 6.1-29.5-3.8-55.3-19.6-72.3-42.3-2.2-2.9-1.3-7.2 1.9-9l62-35.8c6.8-3.9 15.4 1 15.4 8.9V717zM314 616.5c0-7.6 6.2-13.7 13.7-13.7s13.7 6.2 13.7 13.7c0 7.6-6.2 13.7-13.7 13.7s-13.7-6.1-13.7-13.7zm99.4 64.8c-17.3 22.8-43.4 38.5-73.3 41.9-3.7.4-6.9-2.4-6.9-6.1v-72.3c0-7.9 8.6-12.8 15.4-8.9l62.9 36.3c3.3 1.9 4.2 6.2 1.9 9.1zm13.2-22.6c-1.4 3.4-5.5 4.7-8.7 2.9l-63-36.4c-6.8-3.9-6.8-13.8 0-17.8l62.9-36.3c3.2-1.8 7.3-.5 8.7 2.9 5.6 13 8.7 27.4 8.7 42.5 0 15-3.1 29.2-8.6 42.2z" class="gear-front" />
<path id="gear_nine" d="M1025.3 437.4l16.7-3.3-1.5-14.3-17 .3c-.8-4.7-1.8-9.4-3-14l15.6-6.7-4.5-13.7-16.6 3.8c-1.7-4.5-3.7-8.8-5.8-13.1l13.9-9.8-7.2-12.5-15.4 7.1c-2.6-4-5.4-7.8-8.4-11.6l11.6-12.5-9.6-10.7-13.6 10.2c-3.4-3.4-6.9-6.5-10.6-9.6l8.7-14.6-11.7-8.5-11.2 12.8c-4-2.6-8.1-5-12.4-7.2l5.5-16.1-13.2-5.9-8.3 14.8c-4.4-1.7-9-3.2-13.6-4.4l2-16.9-14.1-3-5 16.2c-4.7-.7-9.4-1.2-14.2-1.5l-1.5-16.9h-14.4l-1.5 16.9c-4.8.3-9.5.8-14.2 1.5l-5-16.2-14.1 3 2 16.9c-4.6 1.3-9.2 2.7-13.6 4.4l-8.3-14.8-13.2 5.9 5.5 16.1c-4.2 2.2-8.4 4.6-12.4 7.2l-11.2-12.8-11.7 8.5 8.7 14.6c-3.7 3-7.2 6.2-10.6 9.6l-13.6-10.2-9.6 10.7 11.6 12.5c-3 3.7-5.8 7.6-8.4 11.6l-15.4-7.1-7.2 12.5 13.9 9.8c-2.1 4.2-4.1 8.6-5.8 13.1l-16.6-3.8-4.5 13.7 15.6 6.7c-1.2 4.6-2.2 9.3-3 14l-17-.3-1.5 14.3 16.7 3.3c-.1 2.4-.1 11.9 0 14.3l-16.7 3.3 1.5 14.3 17-.3c.8 4.7 1.8 9.4 3 14l-15.6 6.7 4.5 13.7 16.6-3.8c1.7 4.5 3.7 8.8 5.8 13.1l-13.9 9.8 7.2 12.5 15.4-7.1c2.6 4 5.4 7.8 8.4 11.6L743.7 552l9.6 10.7 13.6-10.2c3.4 3.4 6.9 6.5 10.6 9.6l-8.7 14.6 11.7 8.5 11.2-12.8c4 2.6 8.1 5 12.4 7.2l-5.5 16.1 13.2 5.9 8.3-14.8c4.4 1.7 9 3.2 13.6 4.4l-2 16.9 14.1 3 5-16.2c4.7.7 9.4 1.2 14.2 1.5l1.5 16.9H881l1.5-16.9c4.8-.3 9.5-.8 14.2-1.5l5 16.2 14.1-3-2-16.9c4.6-1.3 9.2-2.7 13.6-4.4l8.3 14.8 13.2-5.9-5.5-16.1c4.2-2.2 8.4-4.6 12.4-7.2l11.2 12.8 11.7-8.5-8.7-14.6c3.7-3 7.2-6.2 10.6-9.6l13.6 10.2 9.6-10.7-11.6-12.5c3-3.7 5.8-7.6 8.4-11.6l15.4 7.1 7.2-12.5-13.9-9.8c2.1-4.2 4.1-8.6 5.8-13.1l16.6 3.8 4.5-13.7-15.6-6.7c1.2-4.6 2.2-9.3 3-14l17 .3 1.5-14.3-16.7-3.3c.1-2.3.1-11.9-.1-14.3zM880.8 316.9c0-4.7 4.1-8.3 8.7-7.8 37.8 4.3 70.8 24.1 92.8 52.9 2.8 3.7 1.8 9.1-2.3 11.5l-79.6 46c-8.7 5-19.5-1.3-19.5-11.3v-91.3zm-116 45.8c21.6-28.6 54.2-48.5 91.5-53.3 4.7-.6 8.8 3 8.8 7.7v91.1c0 10-10.9 16.3-19.5 11.3l-78.4-45.3c-4.2-2.4-5.3-7.8-2.4-11.5zm-16.9 134.5c-6.8-16.2-10.5-34-10.5-52.6 0-18.8 3.8-36.8 10.7-53.1 1.8-4.3 7-6 11.1-3.7l78.4 45.3c8.7 5 8.7 17.5 0 22.6L759.1 501c-4.1 2.3-9.3.6-11.2-3.8zM865 572.1c0 4.7-4.1 8.3-8.8 7.7-37.5-4.8-70.2-24.9-91.8-53.7-2.8-3.7-1.7-9.1 2.4-11.4l78.7-45.4c8.7-5 19.5 1.3 19.5 11.3v91.5zm-8.7-127.5c0-9.6 7.8-17.4 17.4-17.4 9.6 0 17.4 7.8 17.4 17.4 0 9.6-7.8 17.4-17.4 17.4-9.6 0-17.4-7.8-17.4-17.4zm126.3 82.2c-21.9 28.9-55.1 48.9-93 53.2-4.6.5-8.7-3.1-8.7-7.8v-91.8c0-10 10.9-16.3 19.5-11.3l79.9 46.1c4 2.5 5.1 7.9 2.3 11.6zm16.6-28.7c-1.8 4.3-7 6-11.1 3.7l-80-46.2c-8.7-5-8.7-17.5 0-22.6l79.9-46c4-2.3 9.2-.6 11.1 3.7 7.1 16.5 11.1 34.8 11.1 53.9 0 19-3.9 37.1-11 53.5z" class="gear-back" />
<path id="gear_eight" d="M690.8 578.1l17.4-3.4-1.6-14.9-17.7.3c-.8-4.9-1.8-9.8-3.1-14.6l16.3-7-4.6-14.3-17.3 3.9c-1.8-4.7-3.8-9.2-6.1-13.6l14.5-10.2-7.5-13-16.1 7.5c-2.7-4.2-5.7-8.2-8.8-12.1l12.1-13-10.1-11.2-14.2 10.7c-3.5-3.5-7.2-6.8-11.1-10L642 448l-12.2-8.8-11.7 13.3c-4.2-2.7-8.5-5.2-12.9-7.5l5.7-16.8-13.7-6.1-8.6 15.5c-4.6-1.8-9.4-3.3-14.2-4.6l2.1-17.6-14.7-3.1-5.2 16.9c-4.9-.7-9.8-1.2-14.8-1.5l-1.6-17.7h-15l-1.6 17.7c-5 .3-10 .8-14.8 1.5l-5.2-16.9-14.7 3.1L491 433c-4.8 1.3-9.6 2.9-14.2 4.6l-8.6-15.5-13.7 6.1 5.7 16.8c-4.4 2.3-8.7 4.8-12.9 7.5l-11.7-13.3-12.2 8.8 9.1 15.2c-3.8 3.2-7.5 6.5-11.1 10l-14.2-10.6-10.1 11.2 12.1 13c-3.1 3.9-6 7.9-8.8 12.1l-16.1-7.5-7.5 13 14.5 10.2c-2.2 4.4-4.3 9-6.1 13.6l-17.3-3.9-4.6 14.3 16.3 7c-1.3 4.8-2.3 9.6-3.1 14.6l-17.7-.3-1.6 14.9 17.4 3.4c-.1 2.5-.1 12.4 0 14.9l-17.4 3.4 1.6 14.9 17.7-.3c.8 4.9 1.8 9.8 3.1 14.6l-16.3 7 4.6 14.3 17.3-3.9c1.8 4.7 3.8 9.2 6.1 13.6L377 666.9l7.5 13 16.1-7.5c2.7 4.2 5.7 8.2 8.8 12.1l-12.1 13 10.1 11.2 14.2-10.6c3.5 3.5 7.2 6.8 11.1 10l-9.1 15.2 12.2 8.8 11.7-13.3c4.2 2.7 8.5 5.2 12.9 7.5l-5.7 16.8 13.7 6.1 8.6-15.5c4.6 1.8 9.4 3.3 14.2 4.6l-2.1 17.6 14.7 3.1 5.2-16.9c4.9.7 9.8 1.2 14.8 1.5l1.6 17.7h15l1.6-17.7c5-.3 10-.8 14.8-1.5L562 759l14.7-3.1-2.1-17.6c4.8-1.3 9.6-2.9 14.2-4.6l8.6 15.5 13.7-6.1-5.7-16.8c4.4-2.3 8.7-4.8 12.9-7.5l11.7 13.3 12.2-8.8L633 708c3.8-3.2 7.5-6.5 11.1-10l14.2 10.6 10.1-11.2-12.1-13c3.1-3.9 6-7.9 8.8-12.1l16.1 7.5 7.5-13-14.5-10.2c2.2-4.4 4.3-9 6.1-13.6l17.3 3.9 4.6-14.3-16.3-7c1.3-4.8 2.3-9.6 3.1-14.6l17.7.3 1.6-14.9-17.4-3.4c0-2.4 0-12.4-.1-14.9zM540.1 452.4c0-4.9 4.2-8.6 9.1-8.1 39.4 4.5 73.9 25.1 96.7 55.1 3 3.9 1.8 9.5-2.4 12l-83 47.9c-9.1 5.2-20.4-1.3-20.4-11.8v-95.1zm-121 47.8c22.5-29.9 56.5-50.6 95.4-55.6 4.9-.6 9.2 3.2 9.2 8.1v94.9c0 10.5-11.3 17-20.4 11.8l-81.8-47.2c-4.2-2.5-5.3-8.1-2.4-12zm-17.5 140.3c-7.1-16.9-11-35.4-11-54.9 0-19.6 4-38.3 11.2-55.4 1.9-4.5 7.3-6.3 11.6-3.9l81.7 47.2c9.1 5.2 9.1 18.3 0 23.5l-81.9 47.3c-4.3 2.5-9.7.7-11.6-3.8zm122.1 78c0 4.9-4.3 8.7-9.2 8.1-39.1-5-73.2-25.9-95.7-56-2.9-3.9-1.8-9.5 2.5-11.9l82-47.4c9.1-5.2 20.4 1.3 20.4 11.8v95.4zm-9.1-132.9c0-10 8.1-18.2 18.2-18.2s18.2 8.1 18.2 18.2c0 10-8.1 18.2-18.2 18.2s-18.2-8.2-18.2-18.2zm131.6 85.7c-22.8 30.2-57.4 50.9-97 55.5-4.8.6-9.1-3.2-9.1-8.1V623c0-10.5 11.3-17 20.4-11.8l83.3 48.1c4.2 2.5 5.3 8.1 2.4 12zm17.4-29.9c-1.9 4.5-7.3 6.3-11.5 3.8l-83.4-48.1c-9.1-5.2-9.1-18.3 0-23.5l83.2-48c4.2-2.4 9.6-.7 11.5 3.8 7.4 17.2 11.6 36.3 11.6 56.2-.1 19.8-4.1 38.7-11.4 55.8z" class="gear-back" />
<path id="gear_seven" d="M449.2 354.1l9.9-2-.9-8.5-10.1.2c-.5-2.8-1-5.6-1.8-8.3l9.3-4-2.7-8.2-9.8 2.2c-1-2.7-2.2-5.2-3.5-7.8l8.3-5.8-4.3-7.4-9.2 4.3c-1.6-2.4-3.2-4.7-5-6.9l6.9-7.4-5.7-6.4-8.1 6.1c-2-2-4.1-3.9-6.3-5.7l5.2-8.7-6.9-5-6.7 7.6c-2.4-1.5-4.8-3-7.4-4.3l3.3-9.6-7.8-3.5-4.9 8.8c-2.6-1-5.3-1.9-8.1-2.6l1.2-10-8.4-1.8-3 9.7c-2.8-.4-5.6-.7-8.5-.9l-.9-10.1h-8.6l-.9 10.1c-2.9.2-5.7.5-8.5.9l-3-9.7-8.4 1.8 1.2 10c-2.8.8-5.5 1.6-8.1 2.6l-4.9-8.8-7.8 3.5 3.3 9.6c-2.5 1.3-5 2.7-7.4 4.3l-6.7-7.6-6.9 5 5.2 8.7c-2.2 1.8-4.3 3.7-6.3 5.7l-8.1-6.1-5.7 6.4 6.9 7.4c-1.8 2.2-3.4 4.5-5 6.9l-9.2-4.3-4.3 7.4 8.3 5.8c-1.3 2.5-2.4 5.1-3.5 7.8l-9.8-2.2-2.7 8.2 9.3 4c-.7 2.7-1.3 5.5-1.8 8.3l-10.1-.2-.9 8.5 9.9 2c-.1 1.4-.1 7.1 0 8.5l-9.9 2 .9 8.5 10.1-.2c.5 2.8 1 5.6 1.8 8.3l-9.3 4 2.7 8.2 9.8-2.2c1 2.7 2.2 5.2 3.5 7.8l-8.3 5.8 4.3 7.4 9.2-4.3c1.6 2.4 3.2 4.7 5 6.9l-6.9 7.4 5.7 6.4 8.1-6.1c2 2 4.1 3.9 6.3 5.7l-5.2 8.7 6.9 5 6.7-7.6c2.4 1.5 4.8 3 7.4 4.3l-3.3 9.6 7.8 3.5 4.9-8.8c2.6 1 5.3 1.9 8.1 2.6l-1.2 10 8.4 1.8 3-9.7c2.8.4 5.6.7 8.5.9l.9 10.1h8.6l.9-10.1c2.9-.2 5.7-.5 8.5-.9l3 9.7 8.4-1.8-1.2-10c2.8-.8 5.5-1.6 8.1-2.6l4.9 8.8 7.8-3.5-3.3-9.6c2.5-1.3 5-2.7 7.4-4.3l6.7 7.6 6.9-5-5.2-8.7c2.2-1.8 4.3-3.7 6.3-5.7l8.1 6.1 5.7-6.4-6.9-7.4c1.8-2.2 3.4-4.5 5-6.9l9.2 4.3 4.3-7.4-8.3-5.8c1.3-2.5 2.4-5.1 3.5-7.8l9.8 2.2 2.7-8.2-9.3-4c.7-2.7 1.3-5.5 1.8-8.3l10.1.2.9-8.5-9.9-2c.1-1.4.1-7 0-8.5zm-86-71.7c0-2.8 2.4-4.9 5.2-4.6 22.5 2.6 42.2 14.4 55.2 31.5 1.7 2.2 1 5.4-1.4 6.8l-47.4 27.4c-5.2 3-11.6-.7-11.6-6.7v-54.4zm-69.1 27.2c12.8-17 32.2-28.9 54.4-31.7 2.8-.4 5.2 1.8 5.2 4.6v54.2c0 6-6.5 9.7-11.6 6.7l-46.7-26.9c-2.3-1.4-2.9-4.6-1.3-6.9zm-10 80.1c-4-9.6-6.3-20.2-6.3-31.3 0-11.2 2.3-21.9 6.4-31.6 1.1-2.6 4.2-3.6 6.6-2.2l46.7 26.9c5.2 3 5.2 10.4 0 13.4l-46.8 27c-2.4 1.5-5.5.4-6.6-2.2zm69.7 44.6c0 2.8-2.5 5-5.2 4.6-22.3-2.9-41.8-14.8-54.6-32-1.7-2.2-1-5.4 1.4-6.8l46.8-27c5.2-3 11.6.7 11.6 6.7v54.5zm-5.2-75.9c0-5.7 4.6-10.4 10.4-10.4s10.4 4.6 10.4 10.4c0 5.7-4.6 10.4-10.4 10.4s-10.4-4.7-10.4-10.4zm75.2 49c-13 17.2-32.8 29.1-55.4 31.7-2.8.3-5.2-1.8-5.2-4.6v-54.6c0-6 6.5-9.7 11.6-6.7l47.5 27.5c2.5 1.2 3.1 4.4 1.5 6.7zm9.9-17.1c-1.1 2.6-4.2 3.6-6.6 2.2L379.5 365c-5.2-3-5.2-10.4 0-13.4l47.5-27.4c2.4-1.4 5.5-.4 6.6 2.2 4.2 9.8 6.6 20.7 6.6 32.1 0 11.2-2.3 22-6.5 31.8z" class="gear-back" />
<path id="gear_six" d="M848.1 728.5l8.8-1.7-.8-7.5-8.9.1c-.4-2.5-.9-5-1.6-7.4l8.2-3.5-2.3-7.2-8.7 2c-.9-2.3-1.9-4.6-3.1-6.9l7.3-5.1-3.8-6.6-8.1 3.8c-1.4-2.1-2.9-4.1-4.4-6.1l6.1-6.6-5.1-5.6-7.2 5.4c-1.8-1.8-3.6-3.4-5.6-5l4.6-7.7-6.1-4.5-5.9 6.7c-2.1-1.4-4.3-2.6-6.5-3.8l2.9-8.5-6.9-3.1-4.3 7.8c-2.3-.9-4.7-1.7-7.2-2.3l1.1-8.9-7.4-1.6-2.6 8.5c-2.5-.4-5-.6-7.5-.8l-.8-8.9h-7.6l-.8 8.9c-2.5.1-5 .4-7.5.8l-2.6-8.5-7.4 1.6 1.1 8.9c-2.4.7-4.8 1.4-7.2 2.3l-4.3-7.8-6.9 3.1 2.9 8.5c-2.2 1.2-4.4 2.4-6.5 3.8l-5.9-6.7-6.1 4.5 4.6 7.7c-1.9 1.6-3.8 3.3-5.6 5l-7.2-5.4-5.1 5.6 6.1 6.6c-1.6 2-3 4-4.4 6.1l-8.1-3.8-3.8 6.6 7.3 5.1c-1.1 2.2-2.2 4.5-3.1 6.9l-8.7-2-2.3 7.2 8.2 3.5c-.6 2.4-1.1 4.9-1.6 7.4l-8.9-.1-.8 7.5 8.8 1.7c-.1 1.2-.1 6.3 0 7.5l-8.8 1.7.8 7.5 8.9-.1c.4 2.5.9 5 1.6 7.4l-8.2 3.5 2.3 7.2 8.7-2c.9 2.3 1.9 4.6 3.1 6.9l-7.3 5.1 3.8 6.6 8.1-3.8c1.4 2.1 2.9 4.1 4.4 6.1l-6.1 6.6 5.1 5.6 7.2-5.4c1.8 1.8 3.6 3.4 5.6 5l-4.6 7.7 6.1 4.5 5.9-6.7c2.1 1.4 4.3 2.6 6.5 3.8l-2.9 8.5 6.9 3.1 4.3-7.8c2.3.9 4.7 1.7 7.2 2.3l-1.1 8.9 7.4 1.6 2.6-8.5c2.5.4 5 .6 7.5.8l.8 8.9h7.6l.8-8.9c2.5-.1 5-.4 7.5-.8l2.6 8.5 7.4-1.6-1.1-8.9c2.4-.7 4.8-1.4 7.2-2.3l4.3 7.8 6.9-3.1-2.9-8.5c2.2-1.2 4.4-2.4 6.5-3.8l5.9 6.7 6.1-4.5-4.6-7.7c1.9-1.6 3.8-3.3 5.6-5l7.2 5.4 5.1-5.6-6.1-6.6c1.6-2 3-4 4.4-6.1l8.1 3.8 3.8-6.6-7.3-5.1c1.1-2.2 2.2-4.5 3.1-6.9l8.7 2 2.3-7.2-8.2-3.5c.6-2.4 1.1-4.9 1.6-7.4l8.9.1.8-7.5-8.8-1.7v-7.5zm-76-63.4c0-2.5 2.1-4.4 4.6-4.1 19.9 2.3 37.3 12.7 48.8 27.8 1.5 2 .9 4.8-1.2 6L782.4 719c-4.6 2.6-10.3-.7-10.3-5.9v-48zm-61 24.1c11.3-15.1 28.5-25.5 48.1-28 2.5-.3 4.6 1.6 4.6 4.1v47.9c0 5.3-5.7 8.6-10.3 5.9l-41.2-23.8c-2.2-1.3-2.7-4.1-1.2-6.1zm-8.9 70.8c-3.6-8.5-5.5-17.9-5.5-27.7 0-9.9 2-19.3 5.6-27.9 1-2.3 3.7-3.2 5.8-1.9l41.2 23.8c4.6 2.6 4.6 9.2 0 11.9L708 762c-2.1 1.2-4.8.3-5.8-2zm61.6 39.4c0 2.5-2.2 4.4-4.6 4.1-19.7-2.5-36.9-13.1-48.3-28.3-1.5-2-.9-4.8 1.2-6l41.4-23.9c4.6-2.6 10.3.7 10.3 5.9v48.2zm-4.6-67.1c0-5.1 4.1-9.2 9.2-9.2s9.2 4.1 9.2 9.2-4.1 9.2-9.2 9.2-9.2-4.1-9.2-9.2zm66.4 43.3c-11.5 15.2-29 25.7-48.9 28-2.4.3-4.6-1.6-4.6-4.1v-48.3c0-5.3 5.7-8.6 10.3-5.9l42 24.3c2.1 1.2 2.7 4 1.2 6zm8.8-15.1c-1 2.3-3.7 3.2-5.8 1.9l-42.1-24.3c-4.6-2.6-4.6-9.2 0-11.9l42-24.2c2.1-1.2 4.8-.3 5.8 1.9 3.8 8.7 5.8 18.3 5.8 28.4 0 10-2 19.5-5.7 28.2z" class="gear-front" />
<path id="gear_five" d="M441.4 951.5l9.1-1.8-.8-7.8-9.2.1c-.4-2.6-1-5.1-1.6-7.6l8.5-3.6-2.4-7.5-9 2.1c-.9-2.4-2-4.8-3.2-7.1l7.6-5.3-3.9-6.8-8.4 3.9c-1.4-2.2-3-4.3-4.6-6.3l6.3-6.8-5.2-5.8-7.4 5.5c-1.8-1.8-3.8-3.6-5.8-5.2l4.7-7.9-6.3-4.6-6.1 7c-2.2-1.4-4.4-2.7-6.7-3.9l3-8.7-7.2-3.2-4.5 8.1c-2.4-.9-4.9-1.7-7.4-2.4l1.1-9.2-7.7-1.6-2.7 8.8c-2.5-.4-5.1-.7-7.7-.8l-.8-9.2h-7.8l-.8 9.2c-2.6.1-5.2.4-7.7.8l-2.7-8.8-7.7 1.6 1.1 9.2c-2.5.7-5 1.5-7.4 2.4l-4.5-8.1-7.2 3.2 3 8.7c-2.3 1.2-4.6 2.5-6.7 3.9l-6.1-7-6.3 4.6 4.7 7.9c-2 1.6-3.9 3.4-5.8 5.2l-7.4-5.5-5.2 5.8 6.3 6.8c-1.6 2-3.1 4.1-4.6 6.3l-8.4-3.9-3.9 6.8 7.6 5.3c-1.2 2.3-2.2 4.7-3.2 7.1l-9-2.1-2.4 7.5 8.5 3.6c-.7 2.5-1.2 5-1.6 7.6l-9.2-.1-.8 7.8 9.1 1.8c-.1 1.3-.1 6.5 0 7.8l-9.1 1.8.8 7.8 9.2-.1c.4 2.6 1 5.1 1.6 7.6L271 980l2.4 7.5 9-2.1c.9 2.4 2 4.8 3.2 7.1l-7.6 5.3 3.9 6.8 8.4-3.9c1.4 2.2 3 4.3 4.6 6.3l-6.3 6.8 5.2 5.8 7.4-5.5c1.8 1.8 3.8 3.6 5.8 5.2l-4.7 7.9 6.3 4.6 6.1-7c2.2 1.4 4.4 2.7 6.7 3.9l-3 8.7 7.2 3.2 4.5-8.1c2.4.9 4.9 1.7 7.4 2.4l-1.1 9.2 7.7 1.6 2.7-8.8c2.5.4 5.1.7 7.7.8l.8 9.2h7.8l.8-9.2c2.6-.1 5.2-.4 7.7-.8l2.7 8.8 7.7-1.6-1.1-9.2c2.5-.7 5-1.5 7.4-2.4l4.5 8.1 7.2-3.2-3-8.7c2.3-1.2 4.6-2.5 6.7-3.9l6.1 7 6.3-4.6-4.7-7.9c2-1.6 3.9-3.4 5.8-5.2l7.4 5.5 5.2-5.8-6.3-6.8c1.6-2 3.1-4.1 4.6-6.3l8.4 3.9 3.9-6.8-7.6-5.3c1.2-2.3 2.2-4.7 3.2-7.1l9 2.1 2.4-7.5-8.5-3.6c.7-2.5 1.2-5 1.6-7.6l9.2.1.8-7.8-9.1-1.8c.1-1.3.1-6.5 0-7.8zM362.8 886c0-2.5 2.2-4.5 4.7-4.2 20.5 2.4 38.5 13.1 50.4 28.7 1.5 2 1 5-1.3 6.2l-43.3 25c-4.7 2.7-10.6-.7-10.6-6.1V886zm-63 24.9c11.7-15.6 29.4-26.4 49.7-29 2.5-.3 4.8 1.6 4.8 4.2v49.5c0 5.4-5.9 8.9-10.6 6.1L301 917.1c-2.2-1.3-2.8-4.2-1.2-6.2zm-9.2 73.1c-3.7-8.8-5.7-18.5-5.7-28.6 0-10.2 2.1-20 5.8-28.9 1-2.3 3.8-3.3 6-2l42.6 24.6c4.7 2.7 4.7 9.5 0 12.3l-42.7 24.7c-2.2 1.2-5 .3-6-2.1zm63.7 40.7c0 2.6-2.3 4.5-4.8 4.2-20.4-2.6-38.2-13.5-49.9-29.2-1.5-2-.9-4.9 1.3-6.2l42.8-24.7c4.7-2.7 10.6.7 10.6 6.1v49.8zm-4.8-69.3c0-5.2 4.2-9.5 9.5-9.5s9.5 4.2 9.5 9.5-4.2 9.5-9.5 9.5-9.5-4.3-9.5-9.5zm68.6 44.7c-11.9 15.7-30 26.6-50.6 28.9-2.5.3-4.7-1.7-4.7-4.2v-49.9c0-5.4 5.9-8.9 10.6-6.1l43.4 25.1c2.3 1.3 2.9 4.2 1.3 6.2zm9.1-15.6c-1 2.3-3.8 3.3-6 2l-43.5-25.1c-4.7-2.7-4.7-9.5 0-12.3l43.4-25c2.2-1.3 5-.3 6 2 3.9 9 6 18.9 6 29.3.1 10.3-2.1 20.2-5.9 29.1z" class="gear-back" />
<path id="gear_four" d="M1086.1 624.3l11-2.2-1-9.4-11.2.2c-.5-3.1-1.2-6.2-1.9-9.2l10.3-4.4-2.9-9-10.9 2.5c-1.1-2.9-2.4-5.8-3.8-8.6l9.2-6.4-4.8-8.2-10.2 4.7c-1.7-2.6-3.6-5.2-5.5-7.6l7.6-8.2-6.4-7.1-9 6.7c-2.2-2.2-4.6-4.3-7-6.3l5.7-9.6-7.7-5.6-7.4 8.4c-2.6-1.7-5.4-3.3-8.2-4.7l3.6-10.6-8.7-3.9-5.5 9.8c-2.9-1.1-5.9-2.1-9-2.9l1.3-11.1-9.3-2-3.3 10.7c-3.1-.5-6.2-.8-9.4-1l-1-11.2h-9.5l-1 11.2c-3.2.2-6.3.5-9.4 1l-3.3-10.7-9.3 2 1.3 11.1c-3.1.8-6 1.8-9 2.9l-5.5-9.8-8.7 3.9 3.6 10.6c-2.8 1.4-5.5 3-8.2 4.7l-7.4-8.4-7.7 5.6 5.7 9.6c-2.4 2-4.8 4.1-7 6.3l-9-6.7-6.4 7.1 7.6 8.2c-2 2.4-3.8 5-5.5 7.6l-10.2-4.7-4.8 8.2 9.2 6.4c-1.4 2.8-2.7 5.7-3.8 8.6l-10.9-2.5-2.9 9 10.3 4.4c-.8 3-1.4 6.1-1.9 9.2l-11.2-.2-1 9.4 11 2.2c-.1 1.6-.1 7.9 0 9.4l-11 2.2 1 9.4 11.2-.2c.5 3.1 1.2 6.2 1.9 9.2l-10.3 4.4 2.9 9 10.9-2.5c1.1 2.9 2.4 5.8 3.8 8.6l-9.2 6.4 4.8 8.2 10.2-4.7c1.7 2.6 3.6 5.2 5.5 7.6l-7.6 8.2 6.4 7.1 9-6.7c2.2 2.2 4.6 4.3 7 6.3l-5.7 9.6 7.7 5.6 7.4-8.4c2.6 1.7 5.4 3.3 8.2 4.7l-3.6 10.6 8.7 3.9 5.5-9.8c2.9 1.1 5.9 2.1 9 2.9l-1.3 11.1 9.3 2 3.3-10.7c3.1.5 6.2.8 9.4 1l1 11.2h9.5l1-11.2c3.2-.2 6.3-.5 9.4-1l3.3 10.7 9.3-2-1.3-11.1c3.1-.8 6-1.8 9-2.9l5.5 9.8 8.7-3.9-3.6-10.6c2.8-1.4 5.5-3 8.2-4.7l7.4 8.4 7.7-5.6-5.7-9.6c2.4-2 4.8-4.1 7-6.3l9 6.7 6.4-7.1-7.6-8.2c2-2.4 3.8-5 5.5-7.6l10.2 4.7 4.8-8.2-9.2-6.4c1.4-2.8 2.7-5.7 3.8-8.6l10.9 2.5 2.9-9-10.3-4.4c.8-3 1.4-6.1 1.9-9.2l11.2.2 1-9.4-11-2.2v-9.4zm-95.3-79.5c0-3.1 2.7-5.5 5.7-5.1 24.9 2.9 46.7 15.9 61.1 34.8 1.9 2.5 1.2 6-1.5 7.6l-52.5 30.3c-5.7 3.3-12.9-.8-12.9-7.4v-60.2zM914.3 575c14.2-18.9 35.7-32 60.3-35.1 3.1-.4 5.8 2 5.8 5.1v60c0 6.6-7.2 10.7-12.9 7.4l-51.7-29.8c-2.6-1.6-3.3-5.1-1.5-7.6zm-11 88.7c-4.5-10.7-6.9-22.4-6.9-34.7 0-12.4 2.5-24.2 7.1-35 1.2-2.8 4.6-4 7.3-2.4l51.7 29.8c5.7 3.3 5.7 11.6 0 14.9l-51.8 29.9c-2.8 1.5-6.2.3-7.4-2.5zm77.1 49.3c0 3.1-2.7 5.5-5.8 5.1-24.7-3.2-46.3-16.4-60.5-35.4-1.8-2.5-1.1-6 1.6-7.5l51.9-29.9c5.7-3.3 12.9.8 12.9 7.4V713zm-5.7-84c0-6.4 5.1-11.5 11.5-11.5s11.5 5.1 11.5 11.5-5.1 11.5-11.5 11.5-11.5-5.1-11.5-11.5zm83.2 54.2c-14.4 19.1-36.3 32.2-61.3 35.1-3.1.4-5.7-2-5.7-5.1v-60.5c0-6.6 7.2-10.7 12.9-7.4l52.7 30.4c2.5 1.5 3.2 5 1.4 7.5zm11-18.9c-1.2 2.8-4.6 4-7.3 2.4l-52.7-30.4c-5.7-3.3-5.7-11.6 0-14.9l52.6-30.4c2.7-1.5 6.1-.4 7.3 2.4 4.7 10.9 7.3 22.9 7.3 35.5 0 12.6-2.6 24.5-7.2 35.4z" class="gear-back" />
<path id="gear_three" d="M1010.6 952.9l6.1-1.2-.6-5.3-6.3.1c-.3-1.7-.6-3.5-1.1-5.2l5.7-2.5-1.6-5-6.1 1.4c-.6-1.6-1.4-3.2-2.1-4.8l5.1-3.6-2.7-4.6-5.7 2.6c-1-1.5-2-2.9-3.1-4.3l4.3-4.6-3.6-3.9-5 3.8c-1.2-1.2-2.6-2.4-3.9-3.5l3.2-5.4-4.3-3.1-4.1 4.7c-1.5-.9-3-1.8-4.6-2.6l2-5.9-4.8-2.2-3 5.5c-1.6-.6-3.3-1.2-5-1.6l.7-6.2-5.2-1.1-1.8 6c-1.7-.3-3.5-.4-5.2-.5l-.6-6.2H952l-.6 6.2c-1.8.1-3.5.3-5.2.5l-1.8-6-5.2 1.1.7 6.2c-1.7.5-3.4 1-5 1.6l-3-5.5-4.8 2.2 2 5.9c-1.6.8-3.1 1.7-4.6 2.6l-4.1-4.7-4.3 3.1 3.2 5.4c-1.4 1.1-2.7 2.3-3.9 3.5l-5-3.8-3.4 4 4.3 4.6c-1.1 1.4-2.1 2.8-3.1 4.3l-5.7-2.6-2.7 4.6 5.1 3.6c-.8 1.6-1.5 3.2-2.1 4.8l-6.1-1.4-1.6 5 5.7 2.5c-.4 1.7-.8 3.4-1.1 5.2l-6.3-.1-.6 5.3 6.1 1.2v5.3l-6.1 1.2.6 5.3 6.3-.1c.3 1.7.6 3.5 1.1 5.2l-5.7 2.5 1.6 5 6.1-1.4c.6 1.6 1.4 3.2 2.1 4.8l-5.1 3.6 2.7 4.6 5.7-2.6c1 1.5 2 2.9 3.1 4.3L907 995l3.6 3.9 5-3.8c1.2 1.2 2.6 2.4 3.9 3.5l-3.2 5.4 4.3 3.1 4.1-4.7c1.5.9 3 1.8 4.6 2.6l-2 5.9 4.8 2.2 3-5.5c1.6.6 3.3 1.2 5 1.6l-.7 6.2 5.2 1.1 1.8-6c1.7.3 3.5.4 5.2.5l.6 6.2h5.3l.6-6.2c1.8-.1 3.5-.3 5.2-.5l1.8 6 5.2-1.1-.7-6.2c1.7-.5 3.4-1 5-1.6l3 5.5 4.8-2.2-2-5.9c1.6-.8 3.1-1.7 4.6-2.6l4.1 4.7 4.3-3.1-3.2-5.4c1.4-1.1 2.7-2.3 3.9-3.5l5 3.8 3.6-3.9-4.3-4.6c1.1-1.4 2.1-2.8 3.1-4.3l5.7 2.6 2.7-4.6-5.1-3.6c.8-1.6 1.5-3.2 2.1-4.8l6.1 1.4 1.6-5-5.7-2.5c.4-1.7.8-3.4 1.1-5.2l6.3.1.6-5.3-6.1-1.2c-.1-.8-.1-4.3-.2-5.1zm-53.2-44.4c0-1.7 1.5-3 3.2-2.9 13.9 1.6 26.1 8.9 34.1 19.5 1 1.4.6 3.4-.9 4.2l-29.3 16.9c-3.2 1.8-7.2-.5-7.2-4.2v-33.5zm-42.7 16.8c7.9-10.5 19.9-17.9 33.7-19.6 1.7-.2 3.2 1.1 3.2 2.8V942c0 3.7-4 6-7.2 4.2l-28.9-16.7c-1.4-.8-1.8-2.8-.8-4.2zm-6.2 49.6c-2.5-6-3.9-12.5-3.9-19.4 0-6.9 1.4-13.5 4-19.5.7-1.6 2.6-2.2 4.1-1.4l28.9 16.7c3.2 1.8 3.2 6.5 0 8.3l-28.9 16.7c-1.6.8-3.5.2-4.2-1.4zm43.1 27.5c0 1.7-1.5 3.1-3.2 2.8-13.8-1.8-25.8-9.1-33.8-19.8-1-1.4-.6-3.3.9-4.2l29-16.7c3.2-1.8 7.2.5 7.2 4.2v33.7zm-3.2-46.9c0-3.5 2.9-6.4 6.4-6.4s6.4 2.9 6.4 6.4c0 3.5-2.9 6.4-6.4 6.4s-6.4-2.9-6.4-6.4zm46.5 30.3c-8.1 10.7-20.3 18-34.2 19.6-1.7.2-3.2-1.1-3.2-2.9v-33.8c0-3.7 4-6 7.2-4.2l29.4 17c1.4.9 1.8 2.9.8 4.3zm6.1-10.6c-.7 1.6-2.6 2.2-4.1 1.4l-29.4-17c-3.2-1.8-3.2-6.5 0-8.3l29.4-17c1.5-.9 3.4-.2 4.1 1.3 2.6 6.1 4.1 12.8 4.1 19.9-.1 7-1.5 13.6-4.1 19.7z" class="gear-back" />
<path id="gear_two" d="M632.7 580.9l11-2.2-1-9.4-11.2.2c-.5-3.1-1.2-6.2-1.9-9.2l10.3-4.4-2.9-9-10.9 2.5c-1.1-2.9-2.4-5.8-3.8-8.6l9.2-6.4-4.8-8.2-10.2 4.7c-1.7-2.6-3.6-5.2-5.5-7.6l7.6-8.2-6.4-7.1-9 6.7c-2.2-2.2-4.6-4.3-7-6.3l5.7-9.6-7.7-5.6-7.4 8.4c-2.6-1.7-5.4-3.3-8.2-4.7l3.6-10.6-8.7-3.9-5.5 9.8c-2.9-1.1-5.9-2.1-9-2.9l1.3-11.1-9.3-2-3.3 10.7c-3.1-.5-6.2-.8-9.4-1l-1-11.2H528l-1 11.2c-3.2.2-6.3.5-9.4 1l-3.3-10.7-9.3 2 1.3 11.1c-3.1.8-6 1.8-9 2.9l-5.5-9.8-8.7 3.9 3.6 10.6c-2.8 1.4-5.5 3-8.2 4.7l-7.4-8.4-7.7 5.6 5.7 9.6c-2.4 2-4.8 4.1-7 6.3l-9-6.7-6.4 7.1 7.6 8.2c-2 2.4-3.8 5-5.5 7.6L439 526l-4.8 8.2 9.2 6.4c-1.4 2.8-2.7 5.7-3.8 8.6l-10.9-2.5-2.9 9 10.3 4.4c-.8 3-1.4 6.1-1.9 9.2l-11.2-.2-1 9.4 11 2.2c-.1 1.6-.1 7.9 0 9.4l-11 2.2 1 9.4 11.2-.2c.5 3.1 1.2 6.2 1.9 9.2l-10.3 4.4 2.9 9 10.9-2.5c1.1 2.9 2.4 5.8 3.8 8.6l-9.2 6.4 4.8 8.2 10.2-4.7c1.7 2.6 3.6 5.2 5.5 7.6l-7.6 8.2 6.4 7.1 9-6.7c2.2 2.2 4.6 4.3 7 6.3l-5.7 9.6 7.7 5.6 7.4-8.4c2.6 1.7 5.4 3.3 8.2 4.7l-3.6 10.6 8.7 3.9 5.5-9.8c2.9 1.1 5.9 2.1 9 2.9l-1.3 11.1 9.3 2 3.3-10.7c3.1.5 6.2.8 9.4 1l1 11.2h9.5l1-11.2c3.2-.2 6.3-.5 9.4-1l3.3 10.7 9.3-2-1.3-11.1c3.1-.8 6-1.8 9-2.9l5.5 9.8 8.7-3.9-3.6-10.6c2.8-1.4 5.5-3 8.2-4.7l7.4 8.4 7.7-5.6-5.7-9.6c2.4-2 4.8-4.1 7-6.3l9 6.7 6.4-7.1-7.6-8.2c2-2.4 3.8-5 5.5-7.6l10.2 4.7 4.8-8.2-9.2-6.4c1.4-2.8 2.7-5.7 3.8-8.6l10.9 2.5 2.9-9-10.3-4.4c.8-3 1.4-6.1 1.9-9.2l11.2.2 1-9.4-11-2.2c-.6-1.4-.6-7.7-.6-9.2zm-95.3-79.5c0-3.1 2.7-5.5 5.7-5.1 24.9 2.9 46.7 15.9 61.1 34.8 1.9 2.5 1.2 6-1.5 7.6L550.3 569c-5.7 3.3-12.9-.8-12.9-7.4v-60.2zm-76.5 30.2c14.2-18.9 35.7-32 60.3-35.1 3.1-.4 5.8 2 5.8 5.1v60c0 6.6-7.2 10.7-12.9 7.4l-51.7-29.8c-2.6-1.6-3.3-5.1-1.5-7.6zm-11.1 88.7c-4.5-10.7-6.9-22.4-6.9-34.7 0-12.4 2.5-24.2 7.1-35 1.2-2.8 4.6-4 7.3-2.4L509 578c5.7 3.3 5.7 11.6 0 14.9l-51.8 29.9c-2.7 1.5-6.2.3-7.4-2.5zm77.2 49.3c0 3.1-2.7 5.5-5.8 5.1-24.7-3.2-46.3-16.4-60.5-35.4-1.8-2.5-1.1-6 1.6-7.5l51.9-29.9c5.7-3.3 12.9.8 12.9 7.4v60.3zm-5.7-84c0-6.4 5.1-11.5 11.5-11.5s11.5 5.1 11.5 11.5-5.1 11.5-11.5 11.5-11.5-5.2-11.5-11.5zm83.2 54.2c-14.4 19.1-36.3 32.2-61.3 35.1-3.1.4-5.7-2-5.7-5.1v-60.5c0-6.6 7.2-10.7 12.9-7.4l52.7 30.4c2.5 1.5 3.2 5 1.4 7.5zm11-18.9c-1.2 2.8-4.6 4-7.3 2.4l-52.7-30.4c-5.7-3.3-5.7-11.6 0-14.9l52.6-30.4c2.7-1.5 6.1-.4 7.3 2.4 4.7 10.9 7.3 22.9 7.3 35.5 0 12.6-2.6 24.5-7.2 35.4z" class="gear-back" />
<path id="gear_one" d="M774.2 652l12.9-2.5-1.2-11.1-13.1.2c-.6-3.7-1.4-7.3-2.3-10.8l12.1-5.2-3.4-10.6-12.8 2.9c-1.3-3.4-2.8-6.8-4.5-10.1l10.7-7.5-5.6-9.6-11.9 5.5c-2-3.1-4.2-6.1-6.5-8.9l8.9-9.6-7.4-8.3-10.5 7.9c-2.6-2.6-5.3-5.1-8.2-7.4l6.7-11.3-9-6.5-8.6 9.9c-3.1-2-6.3-3.8-9.6-5.5l4.2-12.4-10.2-4.5-6.4 11.4c-3.4-1.3-6.9-2.4-10.5-3.4l1.6-13-10.9-2.3-3.9 12.5c-3.6-.5-7.3-.9-11-1.1l-1.2-13.1h-11.1l-1.2 13.1c-3.7.2-7.4.6-11 1.1l-3.9-12.5-10.9 2.3 1.6 13c-3.6 1-7.1 2.1-10.5 3.4l-6.4-11.4-10.2 4.5 4.2 12.4c-3.3 1.7-6.5 3.5-9.6 5.5l-8.6-9.9-9 6.5 6.7 11.3c-2.8 2.3-5.6 4.8-8.2 7.4l-10.5-7.9-7.4 8.3 8.9 9.6c-2.3 2.9-4.5 5.8-6.5 8.9l-11.9-5.5-5.6 9.6 10.7 7.5c-1.7 3.3-3.2 6.6-4.5 10.1l-12.8-2.9-3.4 10.6 12.1 5.2c-.9 3.5-1.7 7.1-2.3 10.8l-13.1-.2-1.2 11.1 12.9 2.5c-.1 1.8-.1 9.2 0 11l-12.9 2.5 1.2 11.1 13.1-.2c.6 3.7 1.4 7.3 2.3 10.8l-12.1 5.2 3.4 10.6 12.8-2.9c1.3 3.4 2.8 6.8 4.5 10.1l-10.7 7.5 5.6 9.6 11.9-5.5c2 3.1 4.2 6.1 6.5 8.9l-8.9 9.6 7.4 8.3 10.5-7.9c2.6 2.6 5.3 5.1 8.2 7.4l-6.7 11.3 9 6.5 8.6-9.9c3.1 2 6.3 3.8 9.6 5.5l-4.2 12.4 10.2 4.5 6.4-11.4c3.4 1.3 6.9 2.4 10.5 3.4l-1.6 13 10.9 2.3 3.9-12.5c3.6.5 7.3.9 11 1.1l1.2 13.1h11.1l1.2-13.1c3.7-.2 7.4-.6 11-1.1l3.9 12.5 10.9-2.3-1.6-13c3.6-1 7.1-2.1 10.5-3.4l6.4 11.4 10.2-4.5-4.2-12.4c3.3-1.7 6.5-3.5 9.6-5.5l8.6 9.9 9-6.5-6.7-11.3c2.8-2.3 5.6-4.8 8.2-7.4l10.5 7.9 7.4-8.3-8.9-9.6c2.3-2.9 4.5-5.8 6.5-8.9l11.9 5.5 5.6-9.6-10.7-7.5c1.7-3.3 3.2-6.6 4.5-10.1l12.8 2.9 3.4-10.6-12.1-5.2c.9-3.5 1.7-7.1 2.3-10.8l13.1.2 1.2-11.1-12.9-2.5c.1-1.8.1-9.2 0-11zm-111.6-93.1c0-3.6 3.1-6.4 6.7-6 29.2 3.3 54.7 18.6 71.6 40.8 2.2 2.9 1.4 7-1.8 8.9l-61.5 35.5c-6.7 3.9-15.1-1-15.1-8.7v-70.5zM573 594.2c16.6-22.1 41.8-37.4 70.6-41.1 3.6-.5 6.8 2.3 6.8 6v70.3c0 7.7-8.4 12.6-15.1 8.7l-60.5-35c-3.1-1.8-3.9-6-1.8-8.9zm-13 103.9c-5.2-12.5-8.1-26.2-8.1-40.6 0-14.5 3-28.4 8.3-41 1.4-3.3 5.4-4.7 8.6-2.9l60.5 34.9c6.7 3.9 6.7 13.5 0 17.4l-60.7 35c-3.1 2-7.1.6-8.6-2.8zm90.4 57.8c0 3.6-3.2 6.4-6.8 6-28.9-3.7-54.2-19.2-70.8-41.5-2.2-2.9-1.3-7 1.8-8.8l60.7-35.1c6.7-3.9 15.1 1 15.1 8.7v70.7zm-6.7-98.4c0-7.4 6-13.5 13.5-13.5 7.4 0 13.5 6 13.5 13.5 0 7.4-6 13.5-13.5 13.5s-13.5-6.1-13.5-13.5zm97.4 63.5c-16.9 22.3-42.5 37.7-71.8 41.1-3.6.4-6.7-2.4-6.7-6v-70.8c0-7.7 8.4-12.6 15.1-8.7l61.7 35.6c3.1 1.8 3.9 5.9 1.7 8.8zm12.9-22.2c-1.4 3.3-5.4 4.6-8.5 2.8L683.8 666c-6.7-3.9-6.7-13.5 0-17.4l61.6-35.6c3.1-1.8 7.1-.5 8.5 2.8 5.5 12.8 8.6 26.8 8.6 41.6s-3 28.7-8.5 41.4z" class="gear-back" />
</g>
<g id="frontframe">
<radialGradient id="SVGID_4_" cx="657.185" cy="657.5" r="425.518" gradientUnits="userSpaceOnUse">
<stop offset=".119" style="stop-color:#242424" />
<stop offset="1" style="stop-color:#252525" />
</radialGradient>
<path d="M1049.3 491.9c-21.4-50.7-52.1-96.2-91.2-135.3s-84.6-69.8-135.3-91.2C770.4 243.2 714.6 232 657.2 232c-57.4 0-113.2 11.2-165.6 33.4-50.7 21.4-96.2 52.1-135.3 91.2s-69.8 84.6-91.2 135.3c-22.2 52.5-33.4 108.2-33.4 165.6s11.2 113.2 33.4 165.6c21.4 50.7 52.1 96.2 91.2 135.3s84.6 69.8 135.3 91.2c52.5 22.2 108.2 33.4 165.6 33.4 57.4 0 113.2-11.2 165.6-33.4 50.7-21.4 96.2-52.1 135.3-91.2s69.8-84.6 91.2-135.3c22.2-52.5 33.4-108.2 33.4-165.6s-11.2-113.2-33.4-165.6zm-62.6 228.8c-29.7 28.8-70.1 46.5-114.7 46.5-27.4 0-53.3-6.7-76.1-18.6 0-.3-.1-.6-.1-1-4.4-26.9-14.8-51.8-30.2-72-15-19.6-33.9-34.1-55.5-43-1.8-9.8-2.8-19.9-2.8-30.2 0-78.3 54.6-143.8 127.7-160.5-.1.9-.1 1.9-.1 2.8 0 21.5 17.4 38.9 38.9 38.9s38.9-17.4 38.9-38.9v-1.9c2.5.6 5 1.3 7.4 2.1-8.4 131.1 32.6 212.6 66.6 275.8zM713.3 334c-2.4-5.1-3.6-10.7-3.6-16.4 0-21.5 17.6-39 39.1-38.8 19.1.2 35.4 14.5 38.1 33.4 2 14.7-4.4 28.6-15.6 36.8 9.8 16.8 23.7 30.7 40.7 40.5 17 9.8 36.3 15 55.8 15 2.2-20.1 19.9-35.7 40.9-34.4 19.7 1.2 35.6 17.4 36.4 37.1.3 7.6-1.6 14.8-5.2 20.9-12.2-4.8-25.1-8.3-38.4-10.4-7.1-7.2-16.9-11.7-27.8-11.7-10.6 0-20.1 4.2-27.2 11.1-91.4 12.4-161.9 90.7-161.9 185.5v.2c0 11.4-9.4 20.4-20.8 19.8-2.2-.1-4.5-.2-6.7-.2-21.1 0-39-8.6-51.7-24.9-18.3-23.5-23.5-59.9-14-97.4C609.7 428.2 686.6 356 713.3 334zM313.1 527.6c14.1-1.2 27.2 5.2 35 16.1 17-9.8 31.1-23.8 41-41 9.8-17 14.9-36 15-55.4-20.1-2.2-35.6-19.9-34.4-40.9 1.2-19.4 16.9-35.2 36.3-36.3 21-1.3 38.7 14.3 40.9 34.4 19.4-.1 38.6-5.2 55.4-15 17-9.8 30.9-23.7 40.7-40.5-11.2-8.2-17.6-22.1-15.6-36.8 2.6-18.9 19-33.2 38.1-33.4 21.5-.2 39.1 17.3 39.1 38.8 0 5.5-1.2 10.9-3.4 15.9l1.2.8-6.5 8.4c-24.9 32.2-57.7 82.6-72.4 140.3-7.1 27.8-8.7 55.3-5 80.9 2.1 14.8-11.7 27.1-26 22.9-11.6-3.5-23.9-5.3-36.6-5.3-30.6 0-58.7 10.7-80.7 28.7-13.6 11-33.7 7-42.4-8.1-.1-.1-.1-.3-.2-.4-5 2.3-10.5 3.5-16.1 3.5-21.6 0-39.1-17.7-38.8-39.4.4-19.9 15.8-36.5 35.4-38.2zm.1 259.8c-19.7-1.7-35.1-18.3-35.4-38-.3-21.7 17.2-39.4 38.8-39.4 3.9 0 7.8.6 11.5 1.8.4 22.8 6.8 44.1 17.7 62.5-7.9 9-19.8 14.2-32.6 13.1zm30.2-77.1c-.5-63 50.6-114.1 113.6-113.5 61.1.5 111.1 50.5 111.6 111.6.5 62.9-50.6 114.1-113.5 113.5-61.2-.6-111.1-50.5-111.7-111.6zM655 926.9c-22.1 25.3-42.8 44.5-54 54 2.4 5.1 3.7 10.7 3.7 16.5 0 21.5-17.6 39-39.1 38.8-19.1-.2-35.4-14.5-38.1-33.4-2-14.7 4.4-28.6 15.6-36.8-9.8-16.8-23.7-30.7-40.7-40.5-17-9.8-36.3-15-55.8-15h-.2c-2 20.9-20.6 37-42.4 34.9-18.3-1.7-33.1-16.5-34.8-34.8-2.1-21.8 14-40.4 34.9-42.4-.3-19.3 16.3-34.5 35.3-32.1 7.7 1 15.5 1.3 23.6.9 64.4-3.4 116.5-55 120.7-119.3 0-.5.1-.9.1-1.4 1.1-19.5 19.7-33 38.6-28.2 11.1 2.8 22.8 4.3 34.8 4.3 27.2 0 43.7 14 52.7 25.8 18.1 23.6 23 59.5 13.1 96-11.2 41.7-43.2 84.3-68 112.7zm344.5-139.4c-13.5.7-26-5.6-33.5-16.1-16.9 9.8-30.9 23.7-40.8 40.8-9.8 17-14.9 36-15 55.4 20.1 2.2 35.6 19.9 34.4 40.9-1.2 19.4-16.9 35.2-36.3 36.3-21 1.3-38.7-14.3-40.9-34.4.........完整代码请登录后点击上方下载按钮下载查看

网友评论0