Newer
Older
16001
16002
16003
16004
16005
16006
16007
16008
16009
16010
16011
16012
16013
16014
16015
16016
16017
16018
16019
16020
16021
16022
16023
16024
16025
16026
16027
16028
16029
16030
16031
16032
16033
16034
16035
16036
16037
16038
16039
16040
16041
16042
16043
16044
16045
16046
16047
16048
16049
16050
16051
16052
16053
16054
16055
16056
16057
16058
16059
16060
16061
16062
16063
16064
16065
16066
16067
16068
16069
16070
16071
16072
16073
16074
16075
16076
16077
16078
16079
16080
16081
16082
16083
16084
16085
16086
16087
16088
16089
16090
16091
16092
16093
16094
16095
16096
16097
16098
16099
16100
16101
16102
16103
16104
16105
16106
16107
16108
16109
16110
16111
16112
16113
16114
16115
16116
16117
16118
16119
16120
16121
16122
16123
16124
16125
16126
16127
16128
16129
16130
16131
16132
16133
16134
16135
16136
16137
16138
16139
16140
16141
16142
16143
16144
16145
16146
16147
16148
16149
16150
16151
16152
16153
16154
16155
16156
16157
16158
16159
16160
16161
16162
16163
16164
16165
16166
16167
16168
16169
16170
16171
16172
16173
16174
16175
16176
16177
16178
16179
16180
16181
16182
16183
16184
16185
16186
16187
16188
16189
16190
16191
16192
16193
16194
16195
16196
16197
16198
16199
16200
16201
16202
16203
16204
16205
16206
16207
16208
16209
16210
16211
16212
16213
16214
16215
16216
16217
16218
16219
16220
16221
16222
16223
16224
16225
16226
16227
16228
16229
16230
16231
16232
16233
16234
16235
16236
16237
16238
16239
16240
16241
16242
16243
16244
16245
16246
16247
16248
16249
16250
16251
16252
16253
16254
16255
16256
16257
16258
16259
16260
16261
16262
16263
16264
16265
16266
16267
16268
16269
16270
16271
16272
16273
16274
16275
16276
16277
16278
16279
16280
16281
16282
16283
16284
16285
16286
16287
16288
16289
16290
16291
16292
16293
16294
16295
16296
16297
16298
16299
16300
16301
16302
16303
16304
16305
16306
16307
16308
16309
16310
16311
16312
16313
16314
16315
16316
16317
16318
16319
16320
16321
16322
16323
16324
16325
16326
16327
16328
16329
16330
16331
16332
16333
16334
16335
16336
16337
16338
16339
16340
16341
16342
16343
16344
16345
16346
16347
16348
16349
16350
16351
16352
16353
16354
16355
16356
16357
16358
16359
16360
16361
16362
16363
16364
16365
16366
16367
16368
16369
16370
16371
16372
16373
16374
16375
16376
16377
16378
16379
16380
16381
16382
16383
16384
16385
16386
16387
16388
16389
16390
16391
16392
16393
16394
16395
16396
16397
16398
16399
16400
16401
16402
16403
16404
16405
16406
16407
16408
16409
16410
16411
16412
16413
16414
16415
16416
16417
16418
16419
16420
16421
16422
16423
16424
16425
16426
16427
16428
16429
16430
16431
16432
16433
16434
16435
16436
16437
16438
16439
16440
16441
16442
16443
16444
16445
16446
16447
16448
16449
16450
16451
16452
16453
16454
16455
16456
16457
16458
16459
16460
16461
16462
16463
16464
16465
16466
16467
16468
16469
16470
16471
16472
16473
16474
16475
16476
16477
16478
16479
16480
16481
16482
16483
16484
16485
16486
16487
16488
16489
16490
16491
16492
16493
16494
16495
16496
16497
16498
16499
16500
16501
16502
16503
16504
16505
16506
16507
16508
16509
16510
16511
16512
16513
16514
16515
16516
16517
16518
16519
16520
16521
16522
16523
16524
16525
16526
16527
16528
16529
16530
16531
16532
16533
16534
16535
16536
16537
16538
16539
16540
16541
16542
16543
16544
16545
16546
16547
16548
16549
16550
16551
16552
16553
16554
16555
16556
16557
16558
16559
16560
16561
16562
16563
16564
16565
16566
16567
16568
16569
16570
16571
16572
16573
16574
16575
16576
16577
16578
16579
16580
16581
16582
16583
16584
16585
16586
16587
16588
16589
16590
16591
16592
16593
16594
16595
16596
16597
16598
16599
16600
16601
16602
16603
16604
16605
16606
16607
16608
16609
16610
16611
16612
16613
16614
16615
16616
16617
16618
16619
16620
16621
16622
16623
16624
16625
16626
16627
16628
16629
16630
16631
16632
16633
16634
16635
16636
16637
16638
16639
16640
16641
16642
16643
16644
16645
16646
16647
16648
16649
16650
16651
16652
16653
16654
16655
16656
16657
16658
16659
16660
16661
16662
16663
16664
16665
16666
16667
16668
16669
16670
16671
16672
16673
16674
16675
16676
16677
16678
16679
16680
16681
16682
16683
16684
16685
16686
16687
16688
16689
16690
16691
16692
16693
16694
16695
16696
16697
16698
16699
16700
16701
16702
16703
16704
16705
16706
16707
16708
16709
16710
16711
16712
16713
16714
16715
16716
16717
16718
16719
16720
16721
16722
16723
16724
16725
16726
16727
16728
16729
16730
16731
16732
16733
16734
16735
16736
16737
16738
16739
16740
16741
16742
16743
16744
16745
16746
16747
16748
16749
16750
16751
16752
16753
16754
16755
16756
16757
16758
16759
16760
16761
16762
16763
16764
16765
16766
16767
16768
16769
16770
16771
16772
16773
16774
16775
16776
16777
16778
16779
16780
16781
16782
16783
16784
16785
16786
16787
16788
16789
16790
16791
16792
16793
16794
16795
16796
16797
16798
16799
16800
16801
16802
16803
16804
16805
16806
16807
16808
16809
16810
16811
16812
16813
16814
16815
16816
16817
16818
16819
16820
16821
16822
16823
16824
16825
16826
16827
16828
16829
16830
16831
16832
16833
16834
16835
16836
16837
16838
16839
16840
16841
16842
16843
16844
16845
16846
16847
16848
16849
16850
16851
16852
16853
16854
16855
16856
16857
16858
16859
16860
16861
16862
16863
16864
16865
16866
16867
16868
16869
16870
16871
16872
16873
16874
16875
16876
16877
16878
16879
16880
16881
16882
16883
16884
16885
16886
16887
16888
16889
16890
16891
16892
16893
16894
16895
16896
16897
16898
16899
16900
16901
16902
16903
16904
16905
16906
16907
16908
16909
16910
16911
16912
16913
16914
16915
16916
16917
16918
16919
16920
16921
16922
16923
16924
16925
16926
16927
16928
16929
16930
16931
16932
16933
16934
16935
16936
16937
16938
16939
16940
16941
16942
16943
16944
16945
16946
16947
16948
16949
16950
16951
16952
16953
16954
16955
16956
16957
16958
16959
16960
16961
16962
16963
16964
16965
16966
16967
16968
16969
16970
16971
16972
16973
16974
16975
16976
16977
16978
16979
16980
16981
16982
16983
16984
16985
16986
16987
16988
16989
16990
16991
16992
16993
16994
16995
16996
16997
16998
16999
17000
"\" style=\"fill:none;stroke:#365c8d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 480.429589 294.535099 \r\n",
"L 483.825611 293.409473 \r\n",
"L 482.688499 296.801666 \r\n",
"L 480.429589 294.535099 \r\n",
"z\r\n",
"\" style=\"fill:#365c8d;fill-opacity:0.75;stroke:#365c8d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_24\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 344.773578 416.404105 \r\n",
"Q 414.527097 354.33458 483.445382 293.008281 \r\n",
"\" style=\"fill:none;stroke:#365c8d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 479.991185 293.940226 \r\n",
"L 483.445382 293.008281 \r\n",
"L 482.11842 296.330806 \r\n",
"L 479.991185 293.940226 \r\n",
"z\r\n",
"\" style=\"fill:#365c8d;fill-opacity:0.75;stroke:#365c8d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_25\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 381.268018 468.362891 \r\n",
"Q 433.776945 381.143668 485.709217 294.88229 \r\n",
"\" style=\"fill:none;stroke:#365c8d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 482.687975 296.798563 \r\n",
"L 485.709217 294.88229 \r\n",
"L 485.42949 298.449047 \r\n",
"L 482.687975 296.798563 \r\n",
"z\r\n",
"\" style=\"fill:#365c8d;fill-opacity:0.75;stroke:#365c8d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_26\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 454.2569 286.507141 \r\n",
"Q 468.176197 286.507141 480.97746 286.507141 \r\n",
"\" style=\"fill:none;stroke:#365c8d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 477.77746 284.907141 \r\n",
"L 480.97746 286.507141 \r\n",
"L 477.77746 288.107141 \r\n",
"L 477.77746 284.907141 \r\n",
"z\r\n",
"\" style=\"fill:#365c8d;fill-opacity:0.75;stroke:#365c8d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_27\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 125.806933 52.692605 \r\n",
"Q 286.504898 167.089085 446.292043 280.837178 \r\n",
"\" style=\"fill:none;stroke:#2e6e8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 444.613022 277.677924 \r\n",
"L 446.292043 280.837178 \r\n",
"L 442.757227 280.284843 \r\n",
"L 444.613022 277.677924 \r\n",
"z\r\n",
"\" style=\"fill:#2e6e8e;fill-opacity:0.75;stroke:#2e6e8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_28\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 198.795814 416.404105 \r\n",
"Q 322.665362 353.418864 445.538312 290.940372 \r\n",
"\" style=\"fill:none;stroke:#2e6e8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 441.960685 290.964562 \r\n",
"L 445.538312 290.940372 \r\n",
"L 443.411088 293.816988 \r\n",
"L 441.960685 290.964562 \r\n",
"z\r\n",
"\" style=\"fill:#2e6e8e;fill-opacity:0.75;stroke:#2e6e8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_29\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 235.290255 468.362891 \r\n",
"Q 341.444106 380.200202 446.737869 292.751832 \r\n",
"\" style=\"fill:none;stroke:#2e6e8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 443.253908 293.565472 \r\n",
"L 446.737869 292.751832 \r\n",
"L 445.298405 296.027185 \r\n",
"L 443.253908 293.565472 \r\n",
"z\r\n",
"\" style=\"fill:#2e6e8e;fill-opacity:0.75;stroke:#2e6e8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_30\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 235.290255 104.651391 \r\n",
"Q 341.444106 192.81408 446.737869 280.26245 \r\n",
"\" style=\"fill:none;stroke:#2e6e8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 445.298405 276.987097 \r\n",
"L 446.737869 280.26245 \r\n",
"L 443.253908 279.44881 \r\n",
"L 445.298405 276.987097 \r\n",
"z\r\n",
"\" style=\"fill:#2e6e8e;fill-opacity:0.75;stroke:#2e6e8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_31\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 271.784696 416.404105 \r\n",
"Q 359.494476 353.965915 446.293436 292.176113 \r\n",
"\" style=\"fill:none;stroke:#2e6e8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 442.758619 292.728448 \r\n",
"L 446.293436 292.176113 \r\n",
"L 444.614414 295.335367 \r\n",
"L 442.758619 292.728448 \r\n",
"z\r\n",
"\" style=\"fill:#2e6e8e;fill-opacity:0.75;stroke:#2e6e8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_32\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 308.279137 468.362891 \r\n",
"Q 378.558333 380.81068 448.137658 294.130352 \r\n",
"\" style=\"fill:none;stroke:#2e6e8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 444.886772 295.624254 \r\n",
"L 448.137658 294.130352 \r\n",
"L 447.382248 297.627402 \r\n",
"L 444.886772 295.624254 \r\n",
"z\r\n",
"\" style=\"fill:#2e6e8e;fill-opacity:0.75;stroke:#2e6e8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_33\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 344.773578 243.208153 \r\n",
"Q 395.487463 263.264723 445.16167 282.910116 \r\n",
"\" style=\"fill:none;stroke:#2e6e8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 442.774363 280.24539 \r\n",
"L 445.16167 282.910116 \r\n",
"L 441.597505 283.221126 \r\n",
"L 442.774363 280.24539 \r\n",
"z\r\n",
"\" style=\"fill:#2e6e8e;fill-opacity:0.75;stroke:#2e6e8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_34\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 381.268018 468.362891 \r\n",
"Q 416.149233 381.454457 450.614008 295.583605 \r\n",
"\" style=\"fill:none;stroke:#2e6e8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 447.937219 297.957379 \r\n",
"L 450.614008 295.583605 \r\n",
"L 450.906954 299.1493 \r\n",
"L 447.937219 297.957379 \r\n",
"z\r\n",
"\" style=\"fill:#2e6e8e;fill-opacity:0.75;stroke:#2e6e8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_35\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 417.762459 286.507141 \r\n",
"Q 431.681756 286.507141 444.483019 286.507141 \r\n",
"\" style=\"fill:none;stroke:#2e6e8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 441.283019 284.907141 \r\n",
"L 444.483019 286.507141 \r\n",
"L 441.283019 288.107141 \r\n",
"L 441.283019 284.907141 \r\n",
"z\r\n",
"\" style=\"fill:#2e6e8e;fill-opacity:0.75;stroke:#2e6e8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_36\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 162.301373 104.651391 \r\n",
"Q 286.506151 193.06937 409.800109 280.838962 \r\n",
"\" style=\"fill:none;stroke:#277f8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 408.121087 277.679708 \r\n",
"L 409.800109 280.838962 \r\n",
"L 406.265292 280.286627 \r\n",
"L 408.121087 277.679708 \r\n",
"z\r\n",
"\" style=\"fill:#277f8e;fill-opacity:0.75;stroke:#277f8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_37\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 198.795814 416.404105 \r\n",
"Q 304.555407 353.664641 409.353433 291.495604 \r\n",
"\" style=\"fill:none;stroke:#277f8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 405.784936 291.752181 \r\n",
"L 409.353433 291.495604 \r\n",
"L 407.417596 294.504347 \r\n",
"L 405.784936 291.752181 \r\n",
"z\r\n",
"\" style=\"fill:#277f8e;fill-opacity:0.75;stroke:#277f8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_38\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 308.279137 468.362891 \r\n",
"Q 360.788064 381.143668 412.720335 294.88229 \r\n",
"\" style=\"fill:none;stroke:#277f8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 409.699094 296.798563 \r\n",
"L 412.720335 294.88229 \r\n",
"L 412.440608 298.449047 \r\n",
"L 409.699094 296.798563 \r\n",
"z\r\n",
"\" style=\"fill:#277f8e;fill-opacity:0.75;stroke:#277f8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_39\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 344.773578 416.404105 \r\n",
"Q 379.146378 355.231467 412.971495 295.033531 \r\n",
"\" style=\"fill:none;stroke:#277f8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 410.009055 297.039509 \r\n",
"L 412.971495 295.033531 \r\n",
"L 412.798814 298.60707 \r\n",
"L 410.009055 297.039509 \r\n",
"z\r\n",
"\" style=\"fill:#277f8e;fill-opacity:0.75;stroke:#277f8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_40\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 344.773578 243.208153 \r\n",
"Q 377.544846 262.64896 409.354547 281.519339 \r\n",
"\" style=\"fill:none;stroke:#277f8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 407.41871 278.510595 \r\n",
"L 409.354547 281.519339 \r\n",
"L 405.78605 281.262762 \r\n",
"L 407.41871 278.510595 \r\n",
"z\r\n",
"\" style=\"fill:#277f8e;fill-opacity:0.75;stroke:#277f8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_41\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 344.773578 156.610177 \r\n",
"Q 379.146378 217.782815 412.971495 277.980751 \r\n",
"\" style=\"fill:none;stroke:#277f8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 412.798814 274.407212 \r\n",
"L 412.971495 277.980751 \r\n",
"L 410.009055 275.974773 \r\n",
"L 412.798814 274.407212 \r\n",
"z\r\n",
"\" style=\"fill:#277f8e;fill-opacity:0.75;stroke:#277f8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_42\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 381.268018 104.651391 \r\n",
"Q 398.66352 191.335059 415.839042 276.922547 \r\n",
"\" style=\"fill:none;stroke:#277f8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 416.77815 273.47029 \r\n",
"L 415.839042 276.922547 \r\n",
"L 413.640701 274.099907 \r\n",
"L 416.77815 273.47029 \r\n",
"z\r\n",
"\" style=\"fill:#277f8e;fill-opacity:0.75;stroke:#277f8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_43\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 125.806933 286.507141 \r\n",
"Q 250.01171 198.089162 373.305668 110.31957 \r\n",
"\" style=\"fill:none;stroke:#21918c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 369.770851 110.871905 \r\n",
"L 373.305668 110.31957 \r\n",
"L 371.626646 113.478824 \r\n",
"L 369.770851 110.871905 \r\n",
"z\r\n",
"\" style=\"fill:#21918c;fill-opacity:0.75;stroke:#21918c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_44\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 162.301373 104.651391 \r\n",
"Q 267.456216 104.651391 371.493024 104.651391 \r\n",
"\" style=\"fill:none;stroke:#21918c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 368.293024 103.051391 \r\n",
"L 371.493024 104.651391 \r\n",
"L 368.293024 106.251391 \r\n",
"L 368.293024 103.051391 \r\n",
"z\r\n",
"\" style=\"fill:#21918c;fill-opacity:0.75;stroke:#21918c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_45\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 235.290255 104.651391 \r\n",
"Q 303.951213 104.651391 371.494137 104.651391 \r\n",
"\" style=\"fill:none;stroke:#21918c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 368.294137 103.051391 \r\n",
"L 371.494137 104.651391 \r\n",
"L 368.294137 106.251391 \r\n",
"L 368.294137 103.051391 \r\n",
"z\r\n",
"\" style=\"fill:#21918c;fill-opacity:0.75;stroke:#21918c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_46\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 308.279137 468.362891 \r\n",
"Q 343.921859 290.751348 379.344602 114.235985 \r\n",
"\" style=\"fill:none;stroke:#21918c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 377.146261 117.058625 \r\n",
"L 379.344602 114.235985 \r\n",
"L 380.283709 117.688242 \r\n",
"L 377.146261 117.058625 \r\n",
"z\r\n",
"\" style=\"fill:#21918c;fill-opacity:0.75;stroke:#21918c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_47\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 344.773578 416.404105 \r\n",
"Q 360.531629 438.839556 375.647075 460.360099 \r\n",
"\" style=\"fill:none;stroke:#21918c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 375.117137 456.821856 \r\n",
"L 375.647075 460.360099 \r\n",
"L 372.498517 458.661103 \r\n",
"L 375.117137 456.821856 \r\n",
"z\r\n",
"\" style=\"fill:#21918c;fill-opacity:0.75;stroke:#21918c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_48\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 344.773578 329.806129 \r\n",
"Q 362.327784 221.50435 379.703108 114.306202 \r\n",
"\" style=\"fill:none;stroke:#21918c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 377.611727 117.208981 \r\n",
"L 379.703108 114.306202 \r\n",
"L 380.770503 117.720974 \r\n",
"L 377.611727 117.208981 \r\n",
"z\r\n",
"\" style=\"fill:#21918c;fill-opacity:0.75;stroke:#21918c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_49\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 162.301373 468.362891 \r\n",
"Q 250.810249 359.150681 338.615184 250.807072 \r\n",
"\" style=\"fill:none;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 335.357348 252.285756 \r\n",
"L 338.615184 250.807072 \r\n",
"L 337.843429 254.300551 \r\n",
"L 335.357348 252.285756 \r\n",
"z\r\n",
"\" style=\"fill:#1fa187;fill-opacity:0.75;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_50\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 198.795814 416.404105 \r\n",
"Q 267.456772 416.404105 334.999697 416.404105 \r\n",
"\" style=\"fill:none;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 331.799697 414.804105 \r\n",
"L 334.999697 416.404105 \r\n",
"L 331.799697 418.004105 \r\n",
"L 331.799697 414.804105 \r\n",
"z\r\n",
"\" style=\"fill:#1fa187;fill-opacity:0.75;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_51\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 235.290255 104.651391 \r\n",
"Q 288.597303 256.442701 341.533894 407.179136 \r\n",
"\" style=\"fill:none;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 341.983196 403.629752 \r\n",
"L 341.533894 407.179136 \r\n",
"L 338.963968 404.690064 \r\n",
"L 341.983196 403.629752 \r\n",
"z\r\n",
"\" style=\"fill:#1fa187;fill-opacity:0.75;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_52\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 271.784696 351.455623 \r\n",
"Q 305.043774 381.050907 337.467619 409.902965 \r\n",
"\" style=\"fill:none;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 336.140657 406.580441 \r\n",
"L 337.467619 409.902965 \r\n",
"L 334.013422 408.97102 \r\n",
"L 336.140657 406.580441 \r\n",
"z\r\n",
"\" style=\"fill:#1fa187;fill-opacity:0.75;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_53\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 308.279137 468.362891 \r\n",
"Q 324.037189 445.92744 339.152634 424.406897 \r\n",
"\" style=\"fill:none;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 336.004077 426.105893 \r\n",
"L 339.152634 424.406897 \r\n",
"L 338.622696 427.94514 \r\n",
"L 336.004077 426.105893 \r\n",
"z\r\n",
"\" style=\"fill:#1fa187;fill-opacity:0.75;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_54\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 308.279137 468.362891 \r\n",
"Q 325.423216 403.272757 342.282528 339.263783 \r\n",
"\" style=\"fill:none;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 339.920247 341.95072 \r\n",
"L 342.282528 339.263783 \r\n",
"L 343.014709 342.76577 \r\n",
"L 339.920247 341.95072 \r\n",
"z\r\n",
"\" style=\"fill:#1fa187;fill-opacity:0.75;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_55\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 308.279137 468.362891 \r\n",
"Q 325.833344 360.061112 343.208667 252.862964 \r\n",
"\" style=\"fill:none;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 341.117286 255.765743 \r\n",
"L 343.208667 252.862964 \r\n",
"L 344.276062 256.277736 \r\n",
"L 341.117286 255.765743 \r\n",
"z\r\n",
"\" style=\"fill:#1fa187;fill-opacity:0.75;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_56\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 308.279137 468.362891 \r\n",
"Q 326.022676 316.789212 343.636224 166.325985 \r\n",
"\" style=\"fill:none;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 341.675017 169.318253 \r\n",
"L 343.636224 166.325985 \r\n",
"L 344.853314 169.690311 \r\n",
"L 341.675017 169.318253 \r\n",
"z\r\n",
"\" style=\"fill:#1fa187;fill-opacity:0.75;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_57\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 198.795814 416.404105 \r\n",
"Q 249.626641 440.527487 299.447409 464.171514 \r\n",
"\" style=\"fill:none;stroke:#2db27d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 297.24245 461.354041 \r\n",
"L 299.447409 464.171514 \r\n",
"L 295.870455 464.244997 \r\n",
"L 297.24245 461.354041 \r\n",
"z\r\n",
"\" style=\"fill:#2db27d;fill-opacity:0.75;stroke:#2db27d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_58\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 235.290255 104.651391 \r\n",
"Q 270.932977 282.262934 306.35572 458.778297 \r\n",
"\" style=\"fill:none;stroke:#2db27d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 307.294827 455.32604 \r\n",
"L 306.35572 458.778297 \r\n",
"L 304.157379 455.955657 \r\n",
"L 307.294827 455.32604 \r\n",
"z\r\n",
"\" style=\"fill:#2db27d;fill-opacity:0.75;stroke:#2db27d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_59\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 235.290255 104.651391 \r\n",
"Q 267.456772 104.651391 298.505256 104.651391 \r\n",
"\" style=\"fill:none;stroke:#2db27d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 295.305256 103.051391 \r\n",
"L 298.505256 104.651391 \r\n",
"L 295.305256 106.251391 \r\n",
"L 295.305256 103.051391 \r\n",
"z\r\n",
"\" style=\"fill:#2db27d;fill-opacity:0.75;stroke:#2db27d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_60\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 271.784696 286.507141 \r\n",
"Q 289.180197 373.190809 306.35572 458.778297 \r\n",
"\" style=\"fill:none;stroke:#2db27d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 307.294827 455.32604 \r\n",
"L 306.35572 458.778297 \r\n",
"L 304.157379 455.955657 \r\n",
"L 307.294827 455.32604 \r\n",
"z\r\n",
"\" style=\"fill:#2db27d;fill-opacity:0.75;stroke:#2db27d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_61\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 271.784696 221.558659 \r\n",
"Q 288.741669 167.238236 305.365486 113.985056 \r\n",
"\" style=\"fill:none;stroke:#2db27d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 302.884623 116.562908 \r\n",
"L 305.365486 113.985056 \r\n",
"L 305.93925 117.516458 \r\n",
"L 302.884623 116.562908 \r\n",
"z\r\n",
"\" style=\"fill:#2db27d;fill-opacity:0.75;stroke:#2db27d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_62\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 125.806933 286.507141 \r\n",
"Q 194.467891 286.507141 262.010815 286.507141 \r\n",
"\" style=\"fill:none;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 258.810815 284.907141 \r\n",
"L 262.010815 286.507141 \r\n",
"L 258.810815 288.107141 \r\n",
"L 258.810815 284.907141 \r\n",
"z\r\n",
"\" style=\"fill:#4ac16d;fill-opacity:0.75;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_63\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 198.795814 416.404105 \r\n",
"Q 232.054893 386.808821 264.478737 357.956763 \r\n",
"\" style=\"fill:none;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 261.02454 358.888708 \r\n",
"L 264.478737 357.956763 \r\n",
"L 263.151775 361.279288 \r\n",
"L 261.02454 358.888708 \r\n",
"z\r\n",
"\" style=\"fill:#4ac16d;fill-opacity:0.75;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_64\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 235.290255 468.362891 \r\n",
"Q 251.048307 445.92744 266.163752 424.406897 \r\n",
"\" style=\"fill:none;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 263.015195 426.105893 \r\n",
"L 266.163752 424.406897 \r\n",
"L 265.633815 427.94514 \r\n",
"L 263.015195 426.105893 \r\n",
"z\r\n",
"\" style=\"fill:#4ac16d;fill-opacity:0.75;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_65\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 235.290255 104.651391 \r\n",
"Q 252.904046 223.769757 270.354294 341.782116 \r\n",
"\" style=\"fill:none;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 271.468996 338.382492 \r\n",
"L 270.354294 341.782116 \r\n",
"L 268.303416 338.85058 \r\n",
"L 271.468996 338.382492 \r\n",
"z\r\n",
"\" style=\"fill:#4ac16d;fill-opacity:0.75;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_66\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 235.290255 104.651391 \r\n",
"Q 252.685757 191.335059 269.861279 276.922547 \r\n",
"\" style=\"fill:none;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 270.800387 273.47029 \r\n",
"L 269.861279 276.922547 \r\n",
"L 267.662938 274.099907 \r\n",
"L 270.800387 273.47029 \r\n",
"z\r\n",
"\" style=\"fill:#4ac16d;fill-opacity:0.75;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_67\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 235.290255 104.651391 \r\n",
"Q 252.247229 158.971814 268.871046 212.224994 \r\n",
"\" style=\"fill:none;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 269.444809 208.693592 \r\n",
"L 268.871046 212.224994 \r\n",
"L 266.390183 209.647142 \r\n",
"L 269.444809 208.693592 \r\n",
"z\r\n",
"\" style=\"fill:#4ac16d;fill-opacity:0.75;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_68\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 235.290255 104.651391 \r\n",
"Q 251.048307 127.086842 266.163752 148.607385 \r\n",
"\" style=\"fill:none;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 265.633815 145.069142 \r\n",
"L 266.163752 148.607385 \r\n",
"L 263.015195 146.908389 \r\n",
"L 265.633815 145.069142 \r\n",
"z\r\n",
"\" style=\"fill:#4ac16d;fill-opacity:0.75;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_69\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 125.806933 286.507141 \r\n",
"Q 178.31586 373.726364 230.248131 459.987742 \r\n",
"\" style=\"fill:none;stroke:#73d056;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 229.968404 456.420985 \r\n",
"L 230.248131 459.987742 \r\n",
"L 227.22689 458.071469 \r\n",
"L 229.968404 456.420985 \r\n",
"z\r\n",
"\" style=\"fill:#73d056;fill-opacity:0.75;stroke:#73d056;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_70\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 125.806933 286.507141 \r\n",
"Q 178.31586 199.287918 230.248131 113.02654 \r\n",
"\" style=\"fill:none;stroke:#73d056;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 227.22689 114.942812 \r\n",
"L 230.248131 113.02654 \r\n",
"L 229.968404 116.593297 \r\n",
"L 227.22689 114.942812 \r\n",
"z\r\n",
"\" style=\"fill:#73d056;fill-opacity:0.75;stroke:#73d056;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_71\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 198.795814 416.404105 \r\n",
"Q 214.553866 438.839556 229.669311 460.360099 \r\n",
"\" style=\"fill:none;stroke:#73d056;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 229.139374 456.821856 \r\n",
"L 229.669311 460.360099 \r\n",
"L 226.520754 458.661103 \r\n",
"L 229.139374 456.821856 \r\n",
"z\r\n",
"\" style=\"fill:#73d056;fill-opacity:0.75;stroke:#73d056;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_72\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 198.795814 156.610177 \r\n",
"Q 214.553866 134.174726 229.669311 112.654183 \r\n",
"\" style=\"fill:none;stroke:#73d056;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 226.520754 114.353179 \r\n",
"L 229.669311 112.654183 \r\n",
"L 229.139374 116.192426 \r\n",
"L 226.520754 114.353179 \r\n",
"z\r\n",
"\" style=\"fill:#73d056;fill-opacity:0.75;stroke:#73d056;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_73\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 125.806933 286.507141 \r\n",
"Q 160.179733 347.679779 194.00485 407.877716 \r\n",
"\" style=\"fill:none;stroke:#a0da39;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 193.832169 404.304177 \r\n",
"L 194.00485 407.877716 \r\n",
"L 191.04241 405.871737 \r\n",
"L 193.832169 404.304177 \r\n",
"z\r\n",
"\" style=\"fill:#a0da39;fill-opacity:0.75;stroke:#a0da39;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_74\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 162.301373 468.362891 \r\n",
"Q 178.059425 445.92744 193.174871 424.406897 \r\n",
"\" style=\"fill:none;stroke:#a0da39;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 190.026313 426.105893 \r\n",
"L 193.174871 424.406897 \r\n",
"L 192.644933 427.94514 \r\n",
"L 190.026313 426.105893 \r\n",
"z\r\n",
"\" style=\"fill:#a0da39;fill-opacity:0.75;stroke:#a0da39;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_75\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 162.301373 104.651391 \r\n",
"Q 178.059425 127.086842 193.174871 148.607385 \r\n",
"\" style=\"fill:none;stroke:#a0da39;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 192.644933 145.069142 \r\n",
"L 193.174871 148.607385 \r\n",
"L 190.026313 146.908389 \r\n",
"L 192.644933 145.069142 \r\n",
"z\r\n",
"\" style=\"fill:#a0da39;fill-opacity:0.75;stroke:#a0da39;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_76\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 125.806933 52.692605 \r\n",
"Q 143.675348 256.213177 161.445981 458.62 \r\n",
"\" style=\"fill:none;stroke:#d0e11c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 162.759977 455.292326 \r\n",
"L 161.445981 458.62 \r\n",
"L 159.572239 455.572198 \r\n",
"L 162.759977 455.292326 \r\n",
"z\r\n",
"\" style=\"fill:#d0e11c;fill-opacity:0.75;stroke:#d0e11c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_77\">\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 125.806933 52.692605 \r\n",
"Q 141.564984 75.128056 156.68043 96.648599 \r\n",
"\" style=\"fill:none;stroke:#d0e11c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p394bb66bd9)\" d=\"M 156.150492 93.110356 \r\n",
"L 156.68043 96.648599 \r\n",
"L 153.531873 94.949603 \r\n",
"L 156.150492 93.110356 \r\n",
"z\r\n",
"\" style=\"fill:#d0e11c;fill-opacity:0.75;stroke:#d0e11c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"matplotlib.axis_1\">\r\n",
" <g id=\"xtick_1\"/>\r\n",
" <g id=\"xtick_2\"/>\r\n",
" <g id=\"xtick_3\"/>\r\n",
" <g id=\"xtick_4\"/>\r\n",
" <g id=\"xtick_5\"/>\r\n",
" <g id=\"xtick_6\"/>\r\n",
" </g>\r\n",
" <g id=\"matplotlib.axis_2\">\r\n",
" <g id=\"ytick_1\"/>\r\n",
" <g id=\"ytick_2\"/>\r\n",
" <g id=\"ytick_3\"/>\r\n",
" <g id=\"ytick_4\"/>\r\n",
" <g id=\"ytick_5\"/>\r\n",
" </g>\r\n",
" <g id=\"PathCollection_1\">\r\n",
" <defs>\r\n",
" <path d=\"M 0 8.660254 \r\n",
"C 2.296726 8.660254 4.499694 7.747755 6.123724 6.123724 \r\n",
"C 7.747755 4.499694 8.660254 2.296726 8.660254 0 \r\n",
"C 8.660254 -2.296726 7.747755 -4.499694 6.123724 -6.123724 \r\n",
"C 4.499694 -7.747755 2.296726 -8.660254 0 -8.660254 \r\n",
"C -2.296726 -8.660254 -4.499694 -7.747755 -6.123724 -6.123724 \r\n",
"C -7.747755 -4.499694 -8.660254 -2.296726 -8.660254 0 \r\n",
"C -8.660254 2.296726 -7.747755 4.499694 -6.123724 6.123724 \r\n",
"C -4.499694 7.747755 -2.296726 8.660254 0 8.660254 \r\n",
"z\r\n",
"\" id=\"m3b964b03b2\" style=\"stroke:#add8e6;\"/>\r\n",
" </defs>\r\n",
" <g clip-path=\"url(#p394bb66bd9)\">\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"125.806933\" xlink:href=\"#m3b964b03b2\" y=\"520.321677\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"600.234663\" xlink:href=\"#m3b964b03b2\" y=\"286.507141\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"125.806933\" xlink:href=\"#m3b964b03b2\" y=\"286.507141\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"198.795814\" xlink:href=\"#m3b964b03b2\" y=\"416.404105\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"235.290255\" xlink:href=\"#m3b964b03b2\" y=\"468.362891\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"235.290255\" xlink:href=\"#m3b964b03b2\" y=\"104.651391\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"271.784696\" xlink:href=\"#m3b964b03b2\" y=\"286.507141\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"381.268018\" xlink:href=\"#m3b964b03b2\" y=\"104.651391\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"527.245782\" xlink:href=\"#m3b964b03b2\" y=\"468.362891\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"125.806933\" xlink:href=\"#m3b964b03b2\" y=\"52.692605\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"162.301373\" xlink:href=\"#m3b964b03b2\" y=\"468.362891\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"162.301373\" xlink:href=\"#m3b964b03b2\" y=\"104.651391\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"198.795814\" xlink:href=\"#m3b964b03b2\" y=\"156.610177\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"454.2569\" xlink:href=\"#m3b964b03b2\" y=\"286.507141\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"344.773578\" xlink:href=\"#m3b964b03b2\" y=\"243.208153\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"417.762459\" xlink:href=\"#m3b964b03b2\" y=\"286.507141\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"271.784696\" xlink:href=\"#m3b964b03b2\" y=\"351.455623\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"308.279137\" xlink:href=\"#m3b964b03b2\" y=\"104.651391\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"344.773578\" xlink:href=\"#m3b964b03b2\" y=\"416.404105\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"490.751341\" xlink:href=\"#m3b964b03b2\" y=\"286.507141\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"527.245782\" xlink:href=\"#m3b964b03b2\" y=\"104.651391\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"271.784696\" xlink:href=\"#m3b964b03b2\" y=\"416.404105\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"271.784696\" xlink:href=\"#m3b964b03b2\" y=\"221.558659\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"271.784696\" xlink:href=\"#m3b964b03b2\" y=\"156.610177\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"308.279137\" xlink:href=\"#m3b964b03b2\" y=\"468.362891\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"344.773578\" xlink:href=\"#m3b964b03b2\" y=\"329.806129\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"344.773578\" xlink:href=\"#m3b964b03b2\" y=\"156.610177\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"381.268018\" xlink:href=\"#m3b964b03b2\" y=\"468.362891\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"563.740222\" xlink:href=\"#m3b964b03b2\" y=\"286.507141\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"patch_78\">\r\n",
" <path d=\"M 80.371354 550.8 \r\n",
"L 80.371354 7.2 \r\n",
"\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_79\">\r\n",
" <path d=\"M 638.371354 550.8 \r\n",
"L 638.371354 7.2 \r\n",
"\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_80\">\r\n",
" <path d=\"M 80.371354 550.8 \r\n",
"L 638.371354 550.8 \r\n",
"\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_81\">\r\n",
" <path d=\"M 80.371354 7.2 \r\n",
"L 638.371354 7.2 \r\n",
"\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"text_1\">\r\n",
" <g clip-path=\"url(#p394bb66bd9)\">\r\n",
" <!-- ( + ) -->\r\n",
" <defs>\r\n",
" <path d=\"M 31 75.875 \r\n",
"Q 24.46875 64.65625 21.28125 53.65625 \r\n",
"Q 18.109375 42.671875 18.109375 31.390625 \r\n",
"Q 18.109375 20.125 21.3125 9.0625 \r\n",
"Q 24.515625 -2 31 -13.1875 \r\n",
"L 23.1875 -13.1875 \r\n",
"Q 15.875 -1.703125 12.234375 9.375 \r\n",
"Q 8.59375 20.453125 8.59375 31.390625 \r\n",
"Q 8.59375 42.28125 12.203125 53.3125 \r\n",
"Q 15.828125 64.359375 23.1875 75.875 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-40\"/>\r\n",
" <path id=\"DejaVuSans-32\"/>\r\n",
" <path d=\"M 46 62.703125 \r\n",
"L 46 35.5 \r\n",
"L 73.1875 35.5 \r\n",
"L 73.1875 27.203125 \r\n",
"L 46 27.203125 \r\n",
"L 46 0 \r\n",
"L 37.796875 0 \r\n",
"L 37.796875 27.203125 \r\n",
"L 10.59375 27.203125 \r\n",
"L 10.59375 35.5 \r\n",
"L 37.796875 35.5 \r\n",
"L 37.796875 62.703125 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-43\"/>\r\n",
" <path d=\"M 8.015625 75.875 \r\n",
"L 15.828125 75.875 \r\n",
"Q 23.140625 64.359375 26.78125 53.3125 \r\n",
"Q 30.421875 42.28125 30.421875 31.390625 \r\n",
"Q 30.421875 20.453125 26.78125 9.375 \r\n",
"Q 23.140625 -1.703125 15.828125 -13.1875 \r\n",
"L 8.015625 -13.1875 \r\n",
"Q 14.5 -2 17.703125 9.0625 \r\n",
"Q 20.90625 20.125 20.90625 31.390625 \r\n",
"Q 20.90625 42.671875 17.703125 53.65625 \r\n",
"Q 14.5 64.65625 8.015625 75.875 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-41\"/>\r\n",
" </defs>\r\n",
" <g transform=\"translate(112.283495 523.632927)scale(0.12 -0.12)\">\r\n",
" <use xlink:href=\"#DejaVuSans-40\"/>\r\n",
" <use x=\"39.013672\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
" <use x=\"70.800781\" xlink:href=\"#DejaVuSans-43\"/>\r\n",
" <use x=\"154.589844\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
" <use x=\"186.376953\" xlink:href=\"#DejaVuSans-41\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_2\">\r\n",
" <g clip-path=\"url(#p394bb66bd9)\">\r\n",
" <!-- ( + ) -->\r\n",
" <g transform=\"translate(112.283495 289.818391)scale(0.12 -0.12)\">\r\n",
" <use xlink:href=\"#DejaVuSans-40\"/>\r\n",
" <use x=\"39.013672\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
" <use x=\"70.800781\" xlink:href=\"#DejaVuSans-43\"/>\r\n",
" <use x=\"154.589844\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
" <use x=\"186.376953\" xlink:href=\"#DejaVuSans-41\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_3\">\r\n",
" <g clip-path=\"url(#p394bb66bd9)\">\r\n",
" <!-- ( + ) -->\r\n",
" <g transform=\"translate(112.283495 56.003855)scale(0.12 -0.12)\">\r\n",
" <use xlink:href=\"#DejaVuSans-40\"/>\r\n",
" <use x=\"39.013672\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
" <use x=\"70.800781\" xlink:href=\"#DejaVuSans-43\"/>\r\n",
" <use x=\"154.589844\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
" <use x=\"186.376953\" xlink:href=\"#DejaVuSans-41\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_4\">\r\n",
" <g clip-path=\"url(#p394bb66bd9)\">\r\n",
" <!-- (abs) -->\r\n",
" <defs>\r\n",
" <path d=\"M 34.28125 27.484375 \r\n",
"Q 23.390625 27.484375 19.1875 25 \r\n",
"Q 14.984375 22.515625 14.984375 16.5 \r\n",
"Q 14.984375 11.71875 18.140625 8.90625 \r\n",
"Q 21.296875 6.109375 26.703125 6.109375 \r\n",
"Q 34.1875 6.109375 38.703125 11.40625 \r\n",
"Q 43.21875 16.703125 43.21875 25.484375 \r\n",
"L 43.21875 27.484375 \r\n",
"z\r\n",
"M 52.203125 31.203125 \r\n",
"L 52.203125 0 \r\n",
"L 43.21875 0 \r\n",
"L 43.21875 8.296875 \r\n",
"Q 40.140625 3.328125 35.546875 0.953125 \r\n",
"Q 30.953125 -1.421875 24.3125 -1.421875 \r\n",
"Q 15.921875 -1.421875 10.953125 3.296875 \r\n",
"Q 6 8.015625 6 15.921875 \r\n",
"Q 6 25.140625 12.171875 29.828125 \r\n",
"Q 18.359375 34.515625 30.609375 34.515625 \r\n",
"L 43.21875 34.515625 \r\n",
"L 43.21875 35.40625 \r\n",
"Q 43.21875 41.609375 39.140625 45 \r\n",
"Q 35.0625 48.390625 27.6875 48.390625 \r\n",
"Q 23 48.390625 18.546875 47.265625 \r\n",
"Q 14.109375 46.140625 10.015625 43.890625 \r\n",
"L 10.015625 52.203125 \r\n",
"Q 14.9375 54.109375 19.578125 55.046875 \r\n",
"Q 24.21875 56 28.609375 56 \r\n",
"Q 40.484375 56 46.34375 49.84375 \r\n",
"Q 52.203125 43.703125 52.203125 31.203125 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-97\"/>\r\n",
" <path d=\"M 48.6875 27.296875 \r\n",
"Q 48.6875 37.203125 44.609375 42.84375 \r\n",
"Q 40.53125 48.484375 33.40625 48.484375 \r\n",
"Q 26.265625 48.484375 22.1875 42.84375 \r\n",
"Q 18.109375 37.203125 18.109375 27.296875 \r\n",
"Q 18.109375 17.390625 22.1875 11.75 \r\n",
"Q 26.265625 6.109375 33.40625 6.109375 \r\n",
"Q 40.53125 6.109375 44.609375 11.75 \r\n",
"Q 48.6875 17.390625 48.6875 27.296875 \r\n",
"z\r\n",
"M 18.109375 46.390625 \r\n",
"Q 20.953125 51.265625 25.265625 53.625 \r\n",
"Q 29.59375 56 35.59375 56 \r\n",
"Q 45.5625 56 51.78125 48.09375 \r\n",
"Q 58.015625 40.1875 58.015625 27.296875 \r\n",
"Q 58.015625 14.40625 51.78125 6.484375 \r\n",
"Q 45.5625 -1.421875 35.59375 -1.421875 \r\n",
"Q 29.59375 -1.421875 25.265625 0.953125 \r\n",
"Q 20.953125 3.328125 18.109375 8.203125 \r\n",
"L 18.109375 0 \r\n",
"L 9.078125 0 \r\n",
"L 9.078125 75.984375 \r\n",
"L 18.109375 75.984375 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-98\"/>\r\n",
" <path d=\"M 44.28125 53.078125 \r\n",
"L 44.28125 44.578125 \r\n",
"Q 40.484375 46.53125 36.375 47.5 \r\n",
"Q 32.28125 48.484375 27.875 48.484375 \r\n",
"Q 21.1875 48.484375 17.84375 46.4375 \r\n",
"Q 14.5 44.390625 14.5 40.28125 \r\n",
"Q 14.5 37.15625 16.890625 35.375 \r\n",
"Q 19.28125 33.59375 26.515625 31.984375 \r\n",
"L 29.59375 31.296875 \r\n",
"Q 39.15625 29.25 43.1875 25.515625 \r\n",
"Q 47.21875 21.78125 47.21875 15.09375 \r\n",
"Q 47.21875 7.46875 41.1875 3.015625 \r\n",
"Q 35.15625 -1.421875 24.609375 -1.421875 \r\n",
"Q 20.21875 -1.421875 15.453125 -0.5625 \r\n",
"Q 10.6875 0.296875 5.421875 2 \r\n",
"L 5.421875 11.28125 \r\n",
"Q 10.40625 8.6875 15.234375 7.390625 \r\n",
"Q 20.0625 6.109375 24.8125 6.109375 \r\n",
"Q 31.15625 6.109375 34.5625 8.28125 \r\n",
"Q 37.984375 10.453125 37.984375 14.40625 \r\n",
"Q 37.984375 18.0625 35.515625 20.015625 \r\n",
"Q 33.0625 21.96875 24.703125 23.78125 \r\n",
"L 21.578125 24.515625 \r\n",
"Q 13.234375 26.265625 9.515625 29.90625 \r\n",
"Q 5.8125 33.546875 5.8125 39.890625 \r\n",
"Q 5.8125 47.609375 11.28125 51.796875 \r\n",
"Q 16.75 56 26.8125 56 \r\n",
"Q 31.78125 56 36.171875 55.265625 \r\n",
"Q 40.578125 54.546875 44.28125 53.078125 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-115\"/>\r\n",
" </defs>\r\n",
" <g transform=\"translate(147.007936 471.674141)scale(0.12 -0.12)\">\r\n",
" <use xlink:href=\"#DejaVuSans-40\"/>\r\n",
" <use x=\"39.013672\" xlink:href=\"#DejaVuSans-97\"/>\r\n",
" <use x=\"100.292969\" xlink:href=\"#DejaVuSans-98\"/>\r\n",
" <use x=\"163.769531\" xlink:href=\"#DejaVuSans-115\"/>\r\n",
" <use x=\"215.869141\" xlink:href=\"#DejaVuSans-41\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_5\">\r\n",
" <g clip-path=\"url(#p394bb66bd9)\">\r\n",
" <!-- (abs) -->\r\n",
" <g transform=\"translate(147.007936 107.962641)scale(0.12 -0.12)\">\r\n",
" <use xlink:href=\"#DejaVuSans-40\"/>\r\n",
" <use x=\"39.013672\" xlink:href=\"#DejaVuSans-97\"/>\r\n",
" <use x=\"100.292969\" xlink:href=\"#DejaVuSans-98\"/>\r\n",
" <use x=\"163.769531\" xlink:href=\"#DejaVuSans-115\"/>\r\n",
" <use x=\"215.869141\" xlink:href=\"#DejaVuSans-41\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_6\">\r\n",
" <g clip-path=\"url(#p394bb66bd9)\">\r\n",
" <!-- (abs) -->\r\n",
" <g transform=\"translate(183.502377 419.715355)scale(0.12 -0.12)\">\r\n",
" <use xlink:href=\"#DejaVuSans-40\"/>\r\n",
" <use x=\"39.013672\" xlink:href=\"#DejaVuSans-97\"/>\r\n",
" <use x=\"100.292969\" xlink:href=\"#DejaVuSans-98\"/>\r\n",
" <use x=\"163.769531\" xlink:href=\"#DejaVuSans-115\"/>\r\n",
" <use x=\"215.869141\" xlink:href=\"#DejaVuSans-41\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_7\">\r\n",
" <g clip-path=\"url(#p394bb66bd9)\">\r\n",
" <!-- ( - ) -->\r\n",
" <defs>\r\n",
" <path d=\"M 4.890625 31.390625 \r\n",
"L 31.203125 31.390625 \r\n",
"L 31.203125 23.390625 \r\n",
"L 4.890625 23.390625 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-45\"/>\r\n",
" </defs>\r\n",
" <g transform=\"translate(188.135502 159.921427)scale(0.12 -0.12)\">\r\n",
" <use xlink:href=\"#DejaVuSans-40\"/>\r\n",
" <use x=\"39.013672\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
" <use x=\"70.800781\" xlink:href=\"#DejaVuSans-45\"/>\r\n",
" <use x=\"106.884766\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
" <use x=\"138.671875\" xlink:href=\"#DejaVuSans-41\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_8\">\r\n",
" <g clip-path=\"url(#p394bb66bd9)\">\r\n",
" <!-- (tanh) -->\r\n",
" <defs>\r\n",
" <path d=\"M 18.3125 70.21875 \r\n",
"L 18.3125 54.6875 \r\n",
"L 36.8125 54.6875 \r\n",
"L 36.8125 47.703125 \r\n",
"L 18.3125 47.703125 \r\n",
"L 18.3125 18.015625 \r\n",
"Q 18.3125 11.328125 20.140625 9.421875 \r\n",
"Q 21.96875 7.515625 27.59375 7.515625 \r\n",
"L 36.8125 7.515625 \r\n",
"L 36.8125 0 \r\n",
"L 27.59375 0 \r\n",
"Q 17.1875 0 13.234375 3.875 \r\n",
"Q 9.28125 7.765625 9.28125 18.015625 \r\n",
"L 9.28125 47.703125 \r\n",
"L 2.6875 47.703125 \r\n",
"L 2.6875 54.6875 \r\n",
"L 9.28125 54.6875 \r\n",
"L 9.28125 70.21875 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-116\"/>\r\n",
" <path d=\"M 54.890625 33.015625 \r\n",
"L 54.890625 0 \r\n",
"L 45.90625 0 \r\n",
"L 45.90625 32.71875 \r\n",
"Q 45.90625 40.484375 42.875 44.328125 \r\n",
"Q 39.84375 48.1875 33.796875 48.1875 \r\n",
"Q 26.515625 48.1875 22.3125 43.546875 \r\n",
"Q 18.109375 38.921875 18.109375 30.90625 \r\n",
"L 18.109375 0 \r\n",
"L 9.078125 0 \r\n",
"L 9.078125 54.6875 \r\n",
"L 18.109375 54.6875 \r\n",
"L 18.109375 46.1875 \r\n",
"Q 21.34375 51.125 25.703125 53.5625 \r\n",
"Q 30.078125 56 35.796875 56 \r\n",
"Q 45.21875 56 50.046875 50.171875 \r\n",
"Q 54.890625 44.34375 54.890625 33.015625 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-110\"/>\r\n",
" <path d=\"M 54.890625 33.015625 \r\n",
"L 54.890625 0 \r\n",
"L 45.90625 0 \r\n",
"L 45.90625 32.71875 \r\n",
"Q 45.90625 40.484375 42.875 44.328125 \r\n",
"Q 39.84375 48.1875 33.796875 48.1875 \r\n",
"Q 26.515625 48.1875 22.3125 43.546875 \r\n",
"Q 18.109375 38.921875 18.109375 30.90625 \r\n",
"L 18.109375 0 \r\n",
"L 9.078125 0 \r\n",
"L 9.078125 75.984375 \r\n",
"L 18.109375 75.984375 \r\n",
"L 18.109375 46.1875 \r\n",
"Q 21.34375 51.125 25.703125 53.5625 \r\n",
"Q 30.078125 56 35.796875 56 \r\n",
"Q 45.21875 56 50.046875 50.171875 \r\n",
"Q 54.890625 44.34375 54.890625 33.015625 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-104\"/>\r\n",
" </defs>\r\n",
" <g transform=\"translate(216.974318 471.674141)scale(0.12 -0.12)\">\r\n",
" <use xlink:href=\"#DejaVuSans-40\"/>\r\n",
" <use x=\"39.013672\" xlink:href=\"#DejaVuSans-116\"/>\r\n",
" <use x=\"78.222656\" xlink:href=\"#DejaVuSans-97\"/>\r\n",
" <use x=\"139.501953\" xlink:href=\"#DejaVuSans-110\"/>\r\n",
" <use x=\"202.880859\" xlink:href=\"#DejaVuSans-104\"/>\r\n",
" <use x=\"266.259766\" xlink:href=\"#DejaVuSans-41\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_9\">\r\n",
" <g clip-path=\"url(#p394bb66bd9)\">\r\n",
" <!-- (abs) -->\r\n",
" <g transform=\"translate(219.996818 107.962641)scale(0.12 -0.12)\">\r\n",
" <use xlink:href=\"#DejaVuSans-40\"/>\r\n",
" <use x=\"39.013672\" xlink:href=\"#DejaVuSans-97\"/>\r\n",
" <use x=\"100.292969\" xlink:href=\"#DejaVuSans-98\"/>\r\n",
" <use x=\"163.769531\" xlink:href=\"#DejaVuSans-115\"/>\r\n",
" <use x=\"215.869141\" xlink:href=\"#DejaVuSans-41\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_10\">\r\n",
" <g clip-path=\"url(#p394bb66bd9)\">\r\n",
" <!-- (relu) -->\r\n",
" <defs>\r\n",
" <path d=\"M 41.109375 46.296875 \r\n",
"Q 39.59375 47.171875 37.8125 47.578125 \r\n",
"Q 36.03125 48 33.890625 48 \r\n",
"Q 26.265625 48 22.1875 43.046875 \r\n",