Skip to content

Can you provide an example of using fonts #2

@shiqiyue

Description

@shiqiyue

This is my code, can you help me check if there are any issues


func Example_font() {
	fontfile := "SourceHanSerifCN-Light-subset.ttf"

	img, err := resvg.Render(svgData3,
		resvg.WithResourcesDir("/root/project/resvg/testdata"),
		resvg.WithFontFiles("/root/project/resvg/testdata/"+fontfile),
		resvg.WithTextRendering(resvg.TextRenderingGeometricPrecision),
		resvg.WithLoadSystemFonts(false),
		resvg.WithBackground(color.RGBA{238, 235, 230, 240}),
	)
	if err != nil {
		fmt.Println(err)
		log.Fatal(err)
	}
	b := img.Bounds()
	fmt.Printf("width: %d height: %d\n", b.Max.X, b.Max.Y)
	buf := new(bytes.Buffer)
	if err := png.Encode(buf, img); err != nil {
		fmt.Println(err)
		log.Fatal(err)
	}
	if err := os.WriteFile("font.png", buf.Bytes(), 0o644); err != nil {
		fmt.Println(err)
		log.Fatal(err)
	}
	// Output:
	// width: 1324 height: 687
}

var svgData3 = []byte(`<svg
  width="1324px"
  height="687px"
  viewBox="0 0 1324 687"
  version="1.1"
  xmlns="http://www.w3.org/2000/svg"
  xmlns:xlink="http://www.w3.org/1999/xlink"
  style="background: rgba(238, 235, 230, 0.9)"
>
  <defs>
    <rect id="path-1" x="0" y="0" width="1324" height="729"></rect>
    <linearGradient x1="58.2897389%" y1="85.2643837%" x2="44.3797238%" y2="5.4773092%" id="linearGradient-3">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="51.2345935%" y1="98.0592169%" x2="48.6473282%" y2="1.01266543%" id="linearGradient-4">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="56.1262039%" y1="102.557048%" x2="42.3847789%" y2="-1.53328523%" id="linearGradient-5">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="56.1876592%" y1="102.581287%" x2="42.4458587%" y2="-1.50883855%" id="linearGradient-6">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="52.8244296%" y1="102.096543%" x2="46.2286126%" y2="-0.974960372%" id="linearGradient-7">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="53.4261566%" y1="102.783297%" x2="45.5691835%" y2="-1.26564658%" id="linearGradient-8">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="53.4078984%" y1="102.740313%" x2="45.5876588%" y2="-1.2699326%" id="linearGradient-9">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="57.647542%" y1="102.627538%" x2="40.7541635%" y2="-1.26354227%" id="linearGradient-10">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="57.5979183%" y1="102.639644%" x2="40.7961656%" y2="-1.12820086%" id="linearGradient-11">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="89.7173421%" y1="78.8671493%" x2="5.55171019%" y2="24.5243279%" id="linearGradient-12">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="51.4268851%" y1="100.111165%" x2="48.7204281%" y2="0.11223548%" id="linearGradient-13">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="50.565544%" y1="99.8896705%" x2="49.5658472%" y2="-0.0455487922%" id="linearGradient-14">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="50.5569621%" y1="100.118247%" x2="49.5660004%" y2="0.0916611221%" id="linearGradient-15">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="49.7038692%" y1="100.097882%" x2="50.2653454%" y2="-0.0847264029%" id="linearGradient-16">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="51.0177041%" y1="99.6135623%" x2="49.2461767%" y2="0.322438276%" id="linearGradient-17">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="49.5181066%" y1="100.009549%" x2="50.3161385%" y2="-0.0577882381%" id="linearGradient-18">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="50.6911599%" y1="100.129333%" x2="49.4011256%" y2="0.152800432%" id="linearGradient-19">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="100.390498%" y1="89.5917293%" x2="0.243058151%" y2="10.9185086%" id="linearGradient-20">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="100.387084%" y1="89.0882272%" x2="0.63688958%" y2="10.9651691%" id="linearGradient-21">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="83.4117533%" y1="100.379687%" x2="16.9073487%" y2="0.539316839%" id="linearGradient-22">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="82.1860043%" y1="99.2999748%" x2="19.401027%" y2="-0.658186564%" id="linearGradient-23">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="86.088504%" y1="102.269681%" x2="13.9322146%" y2="-1.65104976%" id="linearGradient-24">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="86.4602672%" y1="101.628761%" x2="15.2204354%" y2="-1.71090162%" id="linearGradient-25">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="57.2395953%" y1="100.139468%" x2="42.9056583%" y2="0.121860592%" id="linearGradient-26">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="54.5996011%" y1="99.765684%" x2="45.65482%" y2="-0.0518503673%" id="linearGradient-27">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="54.6187942%" y1="99.4679913%" x2="45.6740132%" y2="-0.34954302%" id="linearGradient-28">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="54.7713315%" y1="99.9861621%" x2="45.2758108%" y2="-0.299951619%" id="linearGradient-29">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="52.7055518%" y1="99.6252559%" x2="47.5817571%" y2="-0.285982726%" id="linearGradient-30">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="82.5482287%" y1="99.298362%" x2="19.4092117%" y2="-0.672140612%" id="linearGradient-31">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="52.6252436%" y1="99.5302792%" x2="47.7310485%" y2="-0.465917211%" id="linearGradient-32">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="54.6402194%" y1="99.4742114%" x2="45.6954384%" y2="-0.343322939%" id="linearGradient-33">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="50.3017478%" y1="99.8728045%" x2="49.8016515%" y2="-0.0285681168%" id="linearGradient-34">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="51.4429118%" y1="100.071506%" x2="48.7364547%" y2="0.0725772358%" id="linearGradient-35">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="53.6693146%" y1="103.414621%" x2="44.5540267%" y2="-0.751894251%" id="linearGradient-36">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="61.3087275%" y1="106.535682%" x2="34.9679997%" y2="-1.5502797%" id="linearGradient-37">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="8.5674642%" y1="7.36788017%" x2="87.3572295%" y2="93.2628157%" id="linearGradient-38">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="62.4125906%" y1="95.7901835%" x2="41.750176%" y2="2.83516937%" id="linearGradient-39">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="52.6539716%" y1="98.8959837%" x2="48.6645543%" y2="0.577024101%" id="linearGradient-40">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="52.6721677%" y1="98.9321808%" x2="48.6827597%" y2="0.613449747%" id="linearGradient-41">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="54.515562%" y1="101.20421%" x2="45.4675421%" y2="-1.04568859%" id="linearGradient-42">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="62.4510616%" y1="95.661966%" x2="41.7886951%" y2="2.707168%" id="linearGradient-43">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="54.2964805%" y1="99.6555747%" x2="44.8840511%" y2="2.75007546%" id="linearGradient-44">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="71.2761919%" y1="96.2846967%" x2="29.2816356%" y2="9.34602349%" id="linearGradient-45">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="71.2170607%" y1="96.6298393%" x2="29.2229748%" y2="9.69213977%" id="linearGradient-46">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="71.0642465%" y1="-2.71020249%" x2="31.0479522%" y2="104.413289%" id="linearGradient-47">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="54.6264144%" y1="99.4400884%" x2="45.2116941%" y2="2.52279692%" id="linearGradient-48">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="41.4272359%" y1="103.157798%" x2="58.0037392%" y2="-2.57812126%" id="linearGradient-49">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="53.5405711%" y1="98.7903234%" x2="46.4094927%" y2="1.38216092%" id="linearGradient-50">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="74.0040208%" y1="94.4039652%" x2="26.597806%" y2="7.8505675%" id="linearGradient-51">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="49.016405%" y1="100.18929%" x2="50.7618025%" y2="-0.94293847%" id="linearGradient-52">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="98.9154258%" y1="53.5225879%" x2="-4.20874919%" y2="46.0823928%" id="linearGradient-53">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="54.4702254%" y1="99.19022%" x2="45.5422056%" y2="1.29102545%" id="linearGradient-54">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="-0.519215199%" y1="42.1269341%" x2="101.988869%" y2="57.2241352%" id="linearGradient-55">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="-0.0159425843%" y1="50.1174737%" x2="99.816091%" y2="49.9479147%" id="linearGradient-56">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="-2.28103039%" y1="42.2036216%" x2="103.308811%" y2="57.1302045%" id="linearGradient-57">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="45.4209489%" y1="22.6898407%" x2="57.3748513%" y2="84.3463273%" id="linearGradient-58">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
    <linearGradient x1="48.4486981%" y1="14.2799627%" x2="61.7097873%" y2="89.3931478%" id="linearGradient-59">
      <stop stop-color="#FFCDD6" offset="0%"></stop>
      <stop stop-color="#6D8DAF" offset="39.75%"></stop>
      <stop stop-color="#253A59" offset="100%"></stop>
    </linearGradient>
  </defs>
  <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
    <mask id="mask-2" fill="white">
      <use xlink:href="#path-1"></use>
    </mask>
    <g></g>
    <text mask="url(#mask-2)" font-family="serif" font-size="66" font-weight="normal" line-spacing="80" fill="#283E5D">
      <tspan x="788" y="194">竹外桃花三两枝</tspan>
      <tspan x="788" y="274">春江水暖鸭先知</tspan>
    </text>
    <g mask="url(#mask-2)">
      <g transform="translate(-232.000000, 71.000000)">
        <g transform="translate(0.000000, 377.055514)" stroke="#253A59">
          <g opacity="0.1" transform="translate(0.000000, 82.824535)" stroke-width="40">
            <path
              d="M0,0 C50.4601421,0 50.4601421,19.1317501 101,19.1317501 C151.460142,19.1317501 151.460142,0 202,0 C252.539858,0 252.539858,19.1317501 303,19.1317501 C353.460142,19.1317501 353.460142,0 404,0 C454.539858,0 454.539858,19.1317501 505,19.1317501 C555.539858,19.1317501 555.539858,0 606,0 C656.539858,0 656.539858,19.1317501 707,19.1317501 C757.539858,19.1317501 757.539858,0 808,0 C858.539858,0 858.539858,19.1317501 909,19.1317501 C959.539858,19.1317501 959.539858,0 1010,0 C1060.53986,0 1060.53986,19.1317501 1111,19.1317501 C1161.53986,19.1317501 1161.53986,0 1212,0 C1262.53986,0 1262.53986,19.1317501 1313,19.1317501 C1363.53986,19.1317501 1363.53986,0 1414,0 C1464.46014,0 1464.53986,19.1317501 1515,19.1317501 C1565.53986,19.1317501 1565.53986,0 1616,0 C1666.53986,0 1666.53986,19.1317501 1717,19.1317501 C1767.53986,19.1317501 1767.53986,0 1818,0 C1868.53986,0 1868.53986,19.1317501 1919,19.1317501 C1969.53986,19.1317501 1969.53986,0 2020,0 C2070.53986,0 2070.53986,19.1317501 2121,19.1317501 C2171.53986,19.1317501 2171.53986,0 2222,0 C2272.53986,0 2272.53986,19.1317501 2323,19.1317501 C2373.53986,19.1317501 2373.53986,0 2424,0 C2474.53986,0 2474.53986,19.1317501 2525,19.1317501 C2575.46014,19.1317501 2575.53986,0 2626,0"
            ></path>
          </g>
          <g opacity="0.1" transform="translate(136.234412, 165.649070)" stroke-width="20">
            <path
              d="M-4.53132226e-14,0 C44.5611681,0 44.5611681,19.1317501 89.1223362,19.1317501 C133.683504,19.1317501 133.683504,0 178.244672,0 C222.805841,0 222.805841,19.1317501 267.367009,19.1317501 C311.928177,19.1317501 311.928177,0 356.489345,0 C401.050513,0 401.050513,19.1317501 445.611681,19.1317501 C490.172849,19.1317501 490.172849,0 534.734017,0 C579.295185,0 579.295185,19.1317501 623.856354,19.1317501 C668.417522,19.1317501 668.417522,0 712.97869,0 C757.539858,0 757.539858,19.1317501 802.101026,19.1317501 C846.662194,19.1317501 846.662194,0 891.223362,0 C935.78453,0 935.78453,19.1317501 980.345699,19.1317501 C1024.90687,19.1317501 1024.90687,0 1069.46803,0 C1114.0292,0 1114.0292,19.1317501 1158.59037,19.1317501 C1203.15154,19.1317501 1203.15154,0 1247.71271,0 C1292.27388,0 1292.27388,19.1317501 1336.83504,19.1317501 C1381.39621,19.1317501 1381.39621,0 1425.95738,0 C1470.51855,0 1470.51855,19.1317501 1515.07972,19.1317501 C1559.64088,19.1317501 1559.64088,0 1604.20205,0 C1648.76322,0 1648.76322,19.1317501 1693.32439,19.1317501 C1737.88556,19.1317501 1737.88556,0 1782.44672,0 C1827.00789,0 1827.00789,19.1317501 1871.56906,19.1317501 C1916.13023,19.1317501 1916.13023,0 1960.6914,0 C2005.25257,0 2005.25257,19.1317501 2049.81373,19.1317501 C2094.3749,19.1317501 2094.3749,0 2138.93607,0 C2183.49724,0 2183.49724,19.1317501 2228.05841,19.1317501 C2272.61957,19.1317501 2272.61957,0 2317.18074,0"
            ></path>
          </g>
          <g opacity="0.2" transform="translate(65.207577, 124.276660)" stroke-width="10">
            <path
              d="M0,0 C35.234412,0 35.234412,19.1317501 70.468824,19.1317501 C105.703236,19.1317501 105.703236,0 140.937648,0 C176.17206,0 176.17206,19.1317501 211.406472,19.1317501 C246.640884,19.1317501 246.640884,0 281.875296,0 C317.109708,0 317.109708,19.1317501 352.34412,19.1317501 C387.578532,19.1317501 387.578532,0 422.812944,0 C458.047356,0 458.047356,19.1317501 493.281768,19.1317501 C528.51618,19.1317501 528.51618,0 563.750592,0 C598.985004,0 598.985004,19.1317501 634.219416,19.1317501 C669.453828,19.1317501 669.453828,0 704.68824,0 C739.922652,0 739.922652,19.1317501 775.157064,19.1317501 C810.391476,19.1317501 810.391476,0 845.625888,0 C880.8603,0 880.8603,19.1317501 916.094712,19.1317501 C951.329124,19.1317501 951.329124,0 986.563536,0 C1021.79795,0 1021.79795,19.1317501 1057.03236,19.1317501 C1092.26677,19.1317501 1092.26677,0 1127.50118,0 C1162.7356,0 1162.7356,19.1317501 1197.97001,19.1317501 C1233.20442,19.1317501 1233.20442,0 1268.43883,0 C1303.67324,0 1303.67324,19.1317501 1338.90766,19.1317501 C1374.14207,19.1317501 1374.14207,0 1409.37648,0 C1444.61089,0 1444.61089,19.1317501 1479.8453,19.1317501 C1515.07972,19.1317501 1515.07972,0 1550.31413,0 C1585.54854,0 1585.54854,19.1317501 1620.78295,19.1317501 C1656.01736,19.1317501 1656.01736,0 1691.25178,0 C1726.48619,0 1726.48619,19.1317501 1761.7206,19.1317501 C1796.95501,19.1317501 1796.95501,0 1832.18942,0"
            ></path>
          </g>
          <g opacity="0.2" transform="translate(145.207577, 39.372410)" stroke-width="10">
            <path
              d="M0,0 C27.4222573,0 27.4222573,19.1317501 54.7647987,19.1317501 C82.187056,19.1317501 82.187056,0 109.529597,0 C136.951855,0 136.951855,19.1317501 164.294396,19.1317501 C191.716654,19.1317501 191.716654,0 219.059195,0 C246.481452,0 246.481452,19.1317501 273.823994,19.1317501 C301.246251,19.1317501 301.246251,0 328.588792,0 C356.01105,0 356.01105,19.1317501 383.353591,19.1317501 C410.775848,19.1317501 410.775848,0 438.11839,0 C465.540647,0 465.540647,19.1317501 492.883189,19.1317501 C520.305446,19.1317501 520.305446,0 547.647987,0 C575.070245,0 575.070245,19.1317501 602.412786,19.1317501 C629.835043,19.1317501 629.835043,0 657.177585,0 C684.599842,0 684.599842,19.1317501 711.942384,19.1317501 C739.364641,19.1317501 739.364641,0 766.707182,0 C794.12944,0 794.12944,19.1317501 821.471981,19.1317501 C848.894238,19.1317501 848.894238,0 876.23678,0 C903.659037,0 903.659037,19.1317501 931.001579,19.1317501 C958.423836,19.1317501 958.423836,0 985.766377,0 C1013.18863,0 1013.18863,19.1317501 1040.53118,19.1317501 C1067.95343,19.1317501 1067.95343,0 1095.29597,0 C1122.71823,0 1122.71823,19.1317501 1150.06077,19.1317501 C1177.48303,19.1317501 1177.48303,0 1204.82557,0 C1232.24783,0 1232.24783,19.1317501 1259.59037,19.1317501 C1287.01263,19.1317501 1287.01263,0 1314.35517,0 C1341.77743,0 1341.77743,19.1317501 1369.11997,19.1317501 C1396.54223,19.1317501 1396.54223,0 1423.88477,0"
            ></path>
          </g>
          <g opacity="0.5" transform="translate(175.207577, 207.101195)" stroke-width="5">
            <path
              d="M0,0 C27.6614049,0 27.6614049,19.1317501 55.3228098,19.1317501 C82.9842147,19.1317501 82.9842147,0 110.64562,0 C138.307024,0 138.307024,19.1317501 165.968429,19.1317501 C193.629834,19.1317501 193.629834,0 221.291239,0 C248.952644,0 248.952644,19.1317501 276.614049,19.1317501 C304.275454,19.1317501 304.275454,0 331.936859,0 C359.598264,0 359.598264,19.1317501 387.259669,19.1317501 C414.921073,19.1317501 414.921073,0 442.582478,0 C470.243883,0 470.243883,19.1317501 497.905288,19.1317501 C525.566693,19.1317501 525.566693,0 553.228098,0 C580.889503,0 580.889503,19.1317501 608.550908,19.1317501 C636.212313,19.1317501 636.212313,0 663.873717,0 C691.535122,0 691.535122,19.1317501 719.196527,19.1317501 C746.857932,19.1317501 746.857932,0 774.519337,0 C802.180742,0 802.180742,19.1317501 829.842147,19.1317501 C857.503552,19.1317501 857.503552,0 885.164957,0 C912.826361,0 912.826361,19.1317501 940.487766,19.1317501 C968.149171,19.1317501 968.149171,0 995.810576,0 C1023.47198,0 1023.47198,19.1317501 1051.13339,19.1317501 C1078.79479,19.1317501 1078.79479,0 1106.4562,0 C1134.1176,0 1134.1176,19.1317501 1161.77901,19.1317501 C1189.44041,19.1317501 1189.44041,0 1217.10182,0 C1244.76322,0 1244.76322,19.1317501 1272.42463,19.1317501 C1300.08603,19.1317501 1300.08603,0 1327.74743,0 C1355.40884,0 1355.40884,19.1317501 1383.07024,19.1317501 C1410.73165,19.1317501 1410.73165,0 1438.39305,0"
            ></path>
          </g>
          <g opacity="0.3" transform="translate(65.207577, 0.000000)" stroke-width="5">
            <path
              d="M0,0 C44.4814522,0 44.4814522,19.1317501 89.0426204,19.1317501 C133.524073,19.1317501 133.524073,0 178.085241,0 C222.566693,0 222.566693,19.1317501 267.127861,19.1317501 C311.609313,19.1317501 311.609313,0 356.170481,0 C400.651934,0 400.651934,19.1317501 445.213102,19.1317501 C489.694554,19.1317501 489.694554,0 534.255722,0 C578.737174,0 578.737174,19.1317501 623.298343,19.1317501 C667.779795,19.1317501 667.779795,0 712.340963,0 C756.822415,0 756.822415,19.1317501 801.383583,19.1317501 C845.865036,19.1317501 845.865036,0 890.426204,0 C934.907656,0 934.907656,19.1317501 979.468824,19.1317501 C1023.95028,19.1317501 1023.95028,0 1068.51144,0 C1112.9929,0 1112.9929,19.1317501 1157.55406,19.1317501 C1202.03552,19.1317501 1202.03552,0 1246.59669,0 C1291.07814,0 1291.07814,19.1317501 1335.63931,19.1317501 C1380.12076,19.1317501 1380.12076,0 1424.68193,0 C1469.24309,0 1469.16338,19.1317501 1513.72455,19.1317501 C1558.206,19.1317501 1558.206,0 1602.76717,0 C1647.24862,0 1647.24862,19.1317501 1691.80979,19.1317501 C1736.29124,19.1317501 1736.29124,0 1780.85241,0 C1825.33386,0 1825.33386,19.1317501 1869.89503,19.1317501 C1914.37648,19.1317501 1914.37648,0 1958.93765,0 C2003.4191,0 2003.4191,19.1317501 2047.98027,19.1317501 C2092.46172,19.1317501 2092.46172,0 2137.02289,0 C2181.50434,0 2181.50434,19.1317501 2226.06551,19.1317501 C2270.54696,19.1317501 2270.54696,0 2315.10813,0"
            ></path>
          </g>
        </g>
        <g transform="translate(283.423998, 0.000000)">
          <g transform="translate(0.000000, 53.091212)">
            <path
              d="M173.507336,641.870216 C173.507336,641.870216 248.360533,495.592043 264.22399,483.395552 C280.167162,471.199062 300.414992,451.748449 316.83646,440.109968 C329.351851,431.261533 364.426831,394.273483 375.587052,379.127514 C380.848299,372.032824 440.316334,306.267433 487.747273,289.128573 C536.214518,271.591136 651.563374,241.618061 692.935907,383.352442 C692.935907,383.352442 672.050351,232.450764 502.414992,278.526395 C438.562585,295.904401 380.928015,360.952352 364.028252,381.040689 C340.671503,408.702011 323.77174,427.275752 309.662032,436.921343 C295.552324,446.566933 264.064558,473.112237 257.607573,479.330055 C257.607573,479.330055 255.056665,444.016033 272.594155,404.875661 C282.71807,382.316139 285.268978,348.59643 285.268978,348.59643 C285.268978,348.59643 298.342379,299.730751 398.385789,250.466495 C398.385789,250.466495 327.119806,274.779761 286.703863,334.247617 C286.703863,334.247617 268.369214,279.16412 326.641511,210.528967 C326.641511,210.528967 361.636776,154.488882 374.869609,130.095901 C388.102443,105.702919 400.538117,66.5625472 431.627304,56.4386628 C431.627304,56.4386628 401.893287,56.6778096 371.282395,130.65391 C371.282395,130.65391 331.025884,195.70186 314.5247,218.420814 C298.023516,241.060051 284.631251,269.199667 281.920911,280.040992 C281.920911,280.040992 280.40631,242.335501 287.34159,220.49342 C294.27687,198.651338 306.154534,80.7519285 209.060611,54.4457721 C111.966689,28.1396158 36.4757654,133.762819 36.4757654,133.762819 C36.4757654,133.762819 126.076397,25.5090001 216.314755,60.3447284 C306.553113,95.1804567 285.428409,212.521857 285.428409,212.521857 C285.428409,212.521857 274.347904,250.705642 275.862506,283.867342 C277.377107,317.108758 279.44972,344.929511 278.572845,355.850552 C277.775686,366.771592 270.76069,396.266374 260.477344,414.600968 C243.97616,444.016033 245.570477,492.323702 245.570477,492.323702 C245.570477,492.323702 206.908283,540.950234 154.455244,644.899409 L173.507336,641.870216 Z"
              fill="url(#linearGradient-3)"
              fill-rule="nonzero"
            ></path>
            <g transform="translate(0.000000, 9.849190)" stroke="#253A59">
              <g transform="translate(134.702464, 0.000000)">
                <path
                  d="M247.9793,248.987446 C247.9793,248.987446 434.35499,147.908033 527.781983,570.241416"
                  stroke-width="1.5"
                ></path>
                <path
                  d="M259.777248,242.769627 C259.777248,242.769627 504.265803,77.4394199 594.504162,296.258812 C594.504162,296.258812 632.13005,379.242778 666.009292,537.398578"
                  stroke-width="3"
                ></path>
                <path
                  d="M441.927997,182.903192 C441.927997,182.903192 511.201083,195.657692 538.145046,311.803359 C565.089008,427.949025 584.380247,550.232794 584.380247,550.232794"
                  stroke-width="1.5"
                ></path>
                <path
                  d="M554.805661,362.741643 C554.805661,362.741643 565.567303,398.294812 596.257911,561.552413"
                  stroke-width="1.5"
                ></path>
                <path
                  d="M282.336837,53.6044479 C282.336837,53.6044479 423.991928,-2.43563672 509.287903,146.951445 C594.583877,296.338527 637.311581,552.943125 637.311581,552.943125"
                  stroke-width="2"
                ></path>
                <path
                  d="M276.278432,57.6699448 C276.278432,57.6699448 435.391297,-6.26198674 552.493901,555.254878"
                  stroke-width="1.5"
                ></path>
                <path
                  d="M255.233443,83.6572387 C255.233443,83.6572387 294.61308,-37.7496588 403.186087,12.0726071 C511.759095,61.894873 599.685693,547.841325 599.685693,547.841325"
                  stroke-width="1.5"
                ></path>
                <path
                  d="M215.455227,160.90168 C215.455227,160.90168 332.159252,96.7306012 368.031391,373.18439 L400.874327,579.169566"
                  stroke-width="3"
                ></path>
                <path
                  d="M229.564935,132.044623 C229.564935,132.044623 194.410239,-38.7859619 73.401557,8.16654145 C-74.1525077,65.4023605 46.3778791,539.072606 46.3778791,539.072606"
                  stroke-width="3"
                ></path>
                <path
                  d="M273.80724,332.051127 C273.80724,332.051127 405.418132,239.341855 468.393664,568.487672"
                  stroke-width="1.5"
                ></path>
              </g>
              <path
                d="M252.585473,93.4622606 C252.585473,93.4622606 167.767794,29.8491916 145.367636,184.338074 C128.308441,302.078052 119.858559,520.738013 90.0448261,649.478748"
                stroke-width="1.5"
              ></path>
              <path
                d="M245.251614,65.1632136 C245.251614,65.1632136 184.508125,-15.1901368 138.512072,42.6834072 C69.7172808,129.334292 208.741748,595.032975 208.741748,595.032975"
                stroke-width="1.5"
              ></path>
              <path
                d="M45.5633739,112.514295 C45.5633739,112.514295 -21.3182362,187.367267 6.9808956,309.730752 C42.4544552,463.342762 68.8404063,666.059598 68.8404063,666.059598"
                stroke-width="1.5"
              ></path>
              <path
                d="M337.403153,174.293905 C337.403153,174.293905 291.486815,151.256089 243.577581,186.649827 C143.295023,260.785358 185.305284,495.229012 211.292656,660.160641"
                stroke-width="1.5"
              ></path>
              <path
                d="M410.024305,161.937983 C410.024305,161.937983 493.486815,104.542733 543.70781,192.469067 C593.928804,280.395402 644.388946,557.168053 644.388946,557.168053"
                stroke-width="1.5"
              ></path>
              <path
                d="M333.337644,54.4016042 C333.337644,54.4016042 261.593366,7.3693852 245.411046,127.261686 C234.569688,207.455605 276.101653,625.245197 276.101653,625.245197"
                stroke-width="1.5"
              ></path>
            </g>
            <path
              d="M504.9659,385.504764 C504.9659,385.504764 522.184526,389.968839 502.813571,452.784752 C502.813571,452.784752 496.755166,401.208743 504.9659,385.504764 Z"
              fill="url(#linearGradient-4)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M729.12691,373.308274 C729.12691,373.308274 723.626515,379.366661 745.388946,410.216608 C745.388946,410.216608 735.823042,380.323249 729.12691,373.308274 Z"
              fill="url(#linearGradient-5)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M572.8041,272.308576 C572.8041,272.308576 567.303705,278.366964 589.066136,309.216911 C589.145852,309.216911 579.579948,279.323551 572.8041,272.308576 Z"
              fill="url(#linearGradient-6)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M711.19084,312.644683 C711.19084,312.644683 726.017991,337.276811 726.655718,355.451974 C726.655718,355.451974 718.604416,339.349417 714.698338,334.725911 C710.792261,330.102405 706.886184,317.42762 711.19084,312.644683 Z"
              fill="url(#linearGradient-7)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M500.182948,353.618514 C500.182948,353.618514 521.14822,382.316139 521.14822,403.998789 C521.14822,403.998789 509.987999,385.106186 504.328173,379.765239 C498.668346,374.504008 493.566531,359.51747 500.182948,353.618514 Z"
              fill="url(#linearGradient-8)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M511.104021,430.065799 C511.104021,430.065799 525.851456,450.313568 525.851456,465.618968 C525.851456,465.618968 517.959585,452.306458 513.973792,448.559824 C510.067715,444.733474 506.480501,434.211011 511.104021,430.065799 Z"
              fill="url(#linearGradient-9)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M559.730698,233.726214 C559.730698,233.726214 573.122963,255.329148 577.507336,271.591136 C577.507336,271.591136 569.615465,257.401754 566.506547,253.415973 C563.317912,249.350476 558.455244,238.110573 559.730698,233.726214 Z"
              fill="url(#linearGradient-10)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M589.863295,322.848283 C589.863295,322.848283 600.704653,340.226289 604.132435,353.379367 C604.132435,353.379367 597.834881,341.980033 595.283974,338.711692 C592.733066,335.443352 588.826989,326.435486 589.863295,322.848283 Z"
              fill="url(#linearGradient-11)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M542.990367,24.9509907 C542.990367,24.9509907 569.615465,35.7923158 580.935118,50.0614127 C580.935118,50.0614127 564.912229,41.9304189 558.93354,40.5752533 C553.034566,39.2200877 542.35264,31.3282408 542.990367,24.9509907 Z"
              fill="url(#linearGradient-12)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M520.909072,366.213583 C520.909072,366.213583 517.082711,379.605808 528.641511,415.238693 C528.641511,415.238693 529.916965,385.823627 520.909072,366.213583 Z"
              fill="url(#linearGradient-13)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M512.698338,449.91499 C512.698338,449.91499 507.835671,462.988352 516.684132,499.418393 C516.684132,499.338677 520.271345,470.083043 512.698338,449.91499 Z"
              fill="url(#linearGradient-14)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M520.510493,501.809862 C520.510493,501.809862 516.763847,511.854031 523.539696,539.913931 C523.539696,539.913931 526.250035,517.434124 520.510493,501.809862 Z"
              fill="url(#linearGradient-15)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M495.001417,318.543639 C495.001417,318.543639 484.957218,333.689608 489.740169,377.93178 C489.819885,377.93178 501.538117,343.414914 495.001417,318.543639 Z"
              fill="url(#linearGradient-16)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M469.014045,247.038723 C469.014045,247.038723 456.100075,263.380426 469.731488,305.310845 C469.731488,305.23113 482.486026,269.837392 469.014045,247.038723 Z"
              fill="url(#linearGradient-17)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M591.69676,337.11738 C591.69676,337.11738 584.602048,344.371502 590.580738,366.691877 C590.580738,366.691877 597.994313,349.712449 591.69676,337.11738 Z"
              fill="url(#linearGradient-18)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M735.982474,406.310543 C735.982474,406.310543 733.75043,415.716986 739.808836,441.943427 C739.808836,441.943427 740.765426,420.898502 735.982474,406.310543 Z"
              fill="url(#linearGradient-19)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M534.06219,187.33172 C534.06219,187.33172 536.134802,196.97731 557.339222,207.978067 C557.339222,207.978067 547.693603,191.556648 534.06219,187.33172 Z"
              fill="url(#linearGradient-20)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M583.565742,67.2002722 C583.565742,67.2002722 583.167162,74.693541 597.356586,79.3967629 C597.356586,79.3967629 593.211361,67.9177128 583.565742,67.2002722 Z"
              fill="url(#linearGradient-21)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M595.921701,88.5640598 C595.921701,88.5640598 594.566531,96.2167598 608.437091,103.949175 C608.437091,103.949175 605.726752,91.2743911 595.921701,88.5640598 Z"
              fill="url(#linearGradient-22)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M610.509704,116.464529 C610.509704,116.464529 610.58942,121.805476 620.79305,129.458176 C620.79305,129.458176 617.365268,119.892301 610.509704,116.464529 Z"
              fill="url(#linearGradient-23)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M617.365268,133.603388 C617.365268,133.603388 617.046405,138.386326 626.851456,144.444713 C626.77174,144.524429 624.061401,136.154288 617.365268,133.603388 Z"
              fill="url(#linearGradient-24)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M626.931172,153.930873 C626.931172,153.930873 626.692024,157.358644 633.786736,161.82272 C633.786736,161.82272 631.79384,155.844048 626.931172,153.930873 Z"
              fill="url(#linearGradient-25)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M566.745694,43.7638783 C566.745694,43.7638783 563.955639,53.0108909 577.347904,72.0629253 C577.268188,72.0629253 576.630462,53.4891846 566.745694,43.7638783 Z"
              fill="url(#linearGradient-26)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M590.34159,80.433066 C590.34159,80.433066 589.385,86.172591 596.160848,99.9633942 C596.160848,99.9633942 595.283974,87.9263348 590.34159,80.433066 Z"
              fill="url(#linearGradient-27)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M612.980896,124.515807 C612.980896,124.515807 612.024305,130.255332 618.800154,144.046135 C618.800154,143.966419 617.923279,131.92936 612.980896,124.515807 Z"
              fill="url(#linearGradient-28)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M621.988788,145.082438 C621.988788,145.082438 621.032198,149.945091 627.250035,161.82272 C627.250035,161.82272 626.452877,151.459688 621.988788,145.082438 Z"
              fill="url(#linearGradient-29)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M629.48208,163.417032 C629.48208,163.417032 628.12691,167.243382 632.431566,176.649826 C632.431566,176.649826 632.830146,168.518832 629.48208,163.417032 Z"
              fill="url(#linearGradient-30)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M634.743327,176.251248 C634.743327,176.251248 634.583895,179.599304 640.961164,184.063379 C640.961164,184.063379 639.127699,178.164423 634.743327,176.251248 Z"
              fill="url(#linearGradient-31)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M637.134802,185.577976 C637.134802,185.577976 635.939065,189.32461 639.924858,198.571623 C639.924858,198.571623 640.243721,190.60006 637.134802,185.577976 Z"
              fill="url(#linearGradient-32)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M603.654139,104.347754 C603.654139,104.347754 602.697549,110.087279 609.473398,123.878082 C609.473398,123.798366 608.596523,111.761307 603.654139,104.347754 Z"
              fill="url(#linearGradient-33)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M703.139538,292.078051 C703.139538,292.078051 699.552324,301.803358 704.973003,329.703827 C704.973003,329.703827 707.92249,307.622598 703.139538,292.078051 Z"
              fill="url(#linearGradient-34)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M720.437881,349.553017 C720.437881,349.553017 716.611519,362.945242 728.170319,398.578127 C728.170319,398.578127 729.445773,369.163061 720.437881,349.553017 Z"
              fill="url(#linearGradient-35)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M482.565742,284.345636 C482.565742,284.345636 495.718859,272.468008 508.313966,338.871123 C508.313966,338.871123 494.443405,322.051127 487.508125,315.594161 C474.673871,303.477386 475.869609,283.389048 482.565742,284.345636 Z"
              fill="url(#linearGradient-36)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M459.926436,222.326879 C459.926436,222.326879 467.021148,211.884132 485.594945,261.228104 C485.594945,261.228104 473.637565,249.82877 467.977739,245.603842 C457.455244,237.79171 455.2232,222.247164 459.926436,222.326879 Z"
              fill="url(#linearGradient-37)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M299.777265,26.7844501 C299.777265,26.7844501 291.885394,29.3353501 287.501022,15.5445469 C283.036933,1.67402813 277.855402,0 277.855402,0 C277.855402,0 305.357375,14.7473907 299.777265,26.7844501 Z"
              fill="url(#linearGradient-38)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M546.179001,209.094085 C546.179001,209.094085 554.469451,209.333232 553.91144,223.921192 C553.353429,238.509151 557.658086,241.777492 557.658086,241.777492 C557.658086,241.777492 536.852245,218.580245 546.179001,209.094085 Z"
              fill="url(#linearGradient-39)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M566.107967,258.916351 C566.107967,258.916351 570.253192,261.467251 569.057454,272.468008 C567.861716,283.468764 569.774897,287.295114 569.774897,287.295114 C569.774897,287.295114 560.84672,263.460142 566.107967,258.916351 Z"
              fill="url(#linearGradient-40)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M583.326594,306.50658 C583.326594,306.50658 587.471819,309.05748 586.276081,320.058236 C585.080343,331.058992 586.993524,334.885342 586.993524,334.885342 C586.993524,334.885342 578.065347,311.05037 583.326594,306.50658 Z"
              fill="url(#linearGradient-41)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M518.437881,481.24323 C518.437881,481.24323 515.886973,485.388443 521.785947,494.715171 C527.684921,504.121615 527.605233,508.346543 527.605233,508.346543 C527.605233,508.346543 525.213729,483.07669 518.437881,481.24323 Z"
              fill="url(#linearGradient-42)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M531.032987,18.5737407 C531.032987,18.5737407 539.323437,18.8128876 538.765426,33.400847 C538.207415,47.9090909 542.512072,51.2571471 542.512072,51.2571471 C542.512072,51.2571471 521.706231,27.9801845 531.032987,18.5737407 Z"
              fill="url(#linearGradient-43)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M426.684921,155.844048 C426.684921,155.844048 430.989578,160.866132 426.12691,163.09817 C426.12691,163.177885 420.945379,157.836938 426.684921,155.844048 Z"
              fill="url(#linearGradient-44)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M448.208204,157.119498 C448.208204,157.119498 454.186894,159.98926 450.679396,163.975041 C450.679396,163.975041 443.744116,161.26471 448.208204,157.119498 Z"
              fill="url(#linearGradient-45)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M269.8041,172.345182 C269.8041,172.345182 275.78279,175.214945 272.275292,179.200726 C272.275292,179.200726 265.340012,176.57011 269.8041,172.345182 Z"
              fill="url(#linearGradient-46)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M256.650982,195.064135 C256.650982,195.064135 256.172687,186.295417 262.789104,187.252004 C262.789104,187.252004 263.905126,196.97731 256.650982,195.064135 Z"
              fill="url(#linearGradient-47)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M666.310809,187.172288 C666.310809,187.172288 670.615465,192.194373 665.752798,194.42641 C665.752798,194.42641 660.571267,189.165179 666.310809,187.172288 Z"
              fill="url(#linearGradient-48)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M478.101653,146.836182 C478.101653,146.836182 480.174266,153.133716 474.833303,153.372863 C474.833303,153.372863 472.043248,146.517319 478.101653,146.836182 Z"
              fill="url(#linearGradient-49)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M492.849088,158.315232 C492.849088,158.315232 498.429199,165.808501 491.972214,168.757979 C491.972214,168.757979 485.196365,160.866132 492.849088,158.315232 Z"
              fill="url(#linearGradient-50)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M601.980106,367.72818 C601.980106,367.72818 610.509704,371.55453 606.284763,377.294055 C606.205047,377.294055 596.479712,373.706852 601.980106,367.72818 Z"
              fill="url(#linearGradient-51)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M605.647036,387.896233 C605.647036,387.896233 609.154534,392.679171 603.733855,393.795189 C603.733855,393.795189 599.349483,388.613674 605.647036,387.896233 Z"
              fill="url(#linearGradient-52)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M503.371582,159.98926 C503.371582,159.98926 509.350272,157.199213 510.227147,162.460445 C510.227147,162.460445 503.770162,166.047648 503.371582,159.98926 Z"
              fill="url(#linearGradient-53)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M522.583106,174.896082 C522.583106,174.896082 532.069293,193.70897 528.163216,200.484798 C528.163216,200.405082 517.321859,180.555891 522.583106,174.896082 Z"
              fill="url(#linearGradient-54)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M267.572056,12.8342157 C267.572056,12.8342157 246.766215,9.7253063 243.497865,2.55090001 C243.497865,2.55090001 265.898023,5.26123127 267.572056,12.8342157 Z"
              fill="url(#linearGradient-55)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M280.40631,19.2911813 C280.40631,19.2911813 259.759901,23.2769626 254.259506,17.6968688 C254.259506,17.6968688 276.340801,12.7545001 280.40631,19.2911813 Z"
              fill="url(#linearGradient-56)"
              fill-rule="nonzero"
            ></path>
            <path
              d="M555.984053,407.585993 C555.984053,407.585993 546.737012,410.774618 546.258717,402.962486 C546.258717,402.962486 556.302916,398.657843 555.984053,407.585993 Z"
              fill="url(#linearGradient-57)"
              fill-rule="nonzero"
            ></path>
          </g>
          <g transform="translate(307.508696, 0.000000)" fill-rule="nonzero">
            <path
              d="M23.5171875,151.619725 L21.7634385,151.619725 C21.7634385,151.619725 27.9812759,145.8802 29.0175821,144.206172 C29.0175821,144.206172 27.4232648,142.61186 31.7279215,139.263803 C31.7279215,139.263803 56.5195553,117.421722 59.2298947,114.392528 C62.4185292,110.805325 62.8171086,104.826653 74.8542041,100.920588 C86.8912996,97.014522 89.6813548,100.043716 89.6813548,100.043716 C89.6813548,100.043716 96.1383398,98.3696877 98.8486792,97.8913939 C101.559019,97.4131002 100.203849,98.927697 100.203849,98.927697 C100.203849,98.927697 94.7034543,101.000303 90.9568086,106.102103 C90.9568086,106.102103 86.4130044,116.225988 85.456414,117.581153 C84.4998236,118.936319 86.2535727,132.806838 78.1225545,142.292997 C76.3688055,144.285888 74.4556247,146.278779 72.3830123,148.191954 C72.8613075,149.786266 73.738182,151.779157 75.4122151,153.373469 L82.8257905,147.394797 C82.8257905,147.394797 84.4998236,144.285888 86.2535727,146.597641 C86.2535727,146.597641 86.652152,147.633944 86.7318678,148.191954 C86.7318678,148.191954 86.7318678,148.191954 85.8549933,147.793375 C85.6955616,147.873091 84.9781188,147.71366 83.2243698,149.626835 L76.4485214,155.446075 C76.4485214,155.446075 73.9773296,158.554985 72.0641488,156.243232 C71.0278426,155.047497 70.3901157,152.416882 69.9118205,150.105129 C65.7665955,153.214038 60.7444961,155.764938 54.6063746,156.801241 C54.6063746,157.757829 54.6063746,159.19271 54.2077952,159.591288 L63.4548355,173.382091 L66.3246066,175.135835 C66.3246066,175.135835 67.5203446,173.700954 72.0641488,178.244744 C72.0641488,178.244744 71.5858536,178.643322 71.1075584,178.404176 C70.6292633,178.165029 67.7594922,176.570716 66.7231859,177.447588 C65.6868797,178.32446 65.1288686,179.679626 65.1288686,179.679626 L64.0925624,177.527304 C64.0925624,177.527304 62.9765403,176.331569 62.4982451,174.338679 C62.0199499,172.345788 53.2512049,160.46816 53.2512049,160.46816 C53.2512049,160.46816 49.4248434,158.6347 48.0696737,157.438966 L48.0696737,157.438966 C44.2433122,157.438966 39.9386555,157.040388 35.2354195,155.924369 C19.132815,157.837544 15.2267376,160.46816 15.2267376,160.46816 L8.37117329,167.243988 C7.09571946,168.519438 5.26225458,169.236879 3.50850557,169.157163 L0.00100754186,168.997732 C-0.0787083224,169.157163 4.5448118,163.258207 23.5171875,151.619725 Z"
              fill="url(#linearGradient-58)"
            ></path>
            <path
              d="M373.549547,9.08818724 C373.549547,9.08818724 370.520345,7.25472785 364.621371,7.73302161 C364.621371,7.73302161 365.657677,-0.0791096806 363.425633,0 C363.425633,0 332.655309,5.34155284 323.089405,11.7188029 C323.089405,11.7188029 309.139129,12.8348216 305.472199,19.8497967 C305.472199,19.8497967 304.11703,20.7266685 302.203849,20.3280904 L297.899192,19.2917873 C297.899192,19.2917873 276.694772,2.0732122 266.251994,18.8932092 C266.251994,18.8932092 260.671884,19.2917873 259.476146,20.8860998 C259.476146,20.8860998 259.635577,21.8426873 265.295404,21.1252467 C265.295404,21.1252467 268.484038,29.575103 273.187274,29.0170936 C273.187274,29.0170936 275.419319,30.0533967 276.057045,34.1188936 C276.694772,38.1843905 292.319082,60.6641969 300.210952,63.5339594 C300.210952,63.5339594 303.877882,66.8820156 304.11703,68.5560438 L303.957598,70.0706406 C303.957598,70.0706406 296.78317,73.17955 296.304875,73.7375594 C296.304875,73.7375594 288.413004,75.5710188 288.094141,79.7959469 C288.094141,79.7959469 288.49272,81.1511126 288.8913,81.1511126 C288.8913,81.1511126 288.731868,80.3539563 289.130447,79.8756626 C289.130447,79.8756626 292.239366,77.0856157 294.232262,77.1653313 C294.232262,77.1653313 291.043628,83.1440032 292.717661,84.6586001 C292.717661,84.6586001 293.753967,79.3973688 295.428,78.2016344 C295.428,78.2016344 302.682144,75.8898813 304.356177,80.9119657 C304.356177,80.9119657 305.631631,76.0493126 296.862886,76.6870376 L297.978908,75.8898813 C297.978908,75.8898813 305.233052,73.5781282 307.305664,77.7233407 C307.305664,77.7233407 308.023107,72.7809719 298.855783,74.7738625 C298.855783,74.7738625 298.457203,73.6578438 302.76186,72.0635313 L312.088616,67.9183188 C312.088616,67.9183188 318.545601,72.6215407 321.415372,81.709122 L324.763438,103.711068 C324.763438,103.711068 327.63321,103.949781 327.075199,93.188172 C327.075199,93.188172 328.749232,101.159735 330.662412,102.036606 C330.662412,102.036606 334.727922,104.587506 328.191221,83.622297 C328.191221,83.622297 325.241734,68.07775 325.560597,63.7731062 C325.799745,59.5481781 325.560597,43.9239155 318.864465,37.0683717 C318.864465,37.0683717 327.394062,46.6342468 334.010479,47.3516874 C334.16991,47.5111187 385.746075,21.9224029 373.549547,9.08818724 Z"
              fill="url(#linearGradient-59)"
            ></path>
          </g>
        </g>
      </g>
    </g>
  </g>
</svg>

`)


Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions