-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgaia-island-core.html
10774 lines (10760 loc) · 803 KB
/
gaia-island-core.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0, shrink-to-fit=no" name="viewport">
<!--link href="css/island.css" rel="stylesheet">
<link href="island-style.css?x=<?php echo rand(0,100) ?>" rel="stylesheet"-->
<link href="img/favicon.ico" rel="shortcut icon">
<link href="css/island.css" rel="stylesheet">
<title>s1pierro.fr</title>
</head>
<body>
<style>
body{font:400 1.6em Lato, sans-serif;line-height:1.8;color:#434343;background-color:#fff;margin:0px !important;overflow:hidden;}
#s1pisland{overflow:hidden !important;}
#svg8{overflow:hidden !important;}
.cell.active{stroke:#e22 !important;stroke-width:2px !important}.dcell.active{stroke:#e22 !important;stroke-width:0.31px !important}
.cell{stroke:none !important;stroke-width:0.1px !important}
.dcell{stroke:none !important;stroke-width:0.1px !important;}
#s1p-island{padding:0;margin:0;background-color:#fff;z-index:100;}
#s1p-island-load-screen{position:fixed;left:0px;right:0px;width:100%;height:100%;padding:auto;margin:0;background-color:#4477ffaa;vertical-align:middle;z-index:1001;}
#s1p-island-load-screen h3{color:#fff;font:300 10vh Lato, sans-serif !important;text-align:center !important;vertical-align:middle !important;margin-top:40vh;}
#toggleshub{width:100%;color:#eeed;font-size:1em;position:fixed;top:0px;left:0px;z-index:1000;text-align:center;}
#promohub{width:100%;color:#444;background-color:#fff !important;font:200 5vh Lato, sans-serif !important;position:fixed;top:55vh;left:0px;z-index:1100;text-align:center;padding:0.3em;}
#promohub a{text-decoration:none;color:#444;}
#promohub.jslink-a{text-decoration:none;color:#444 !important;}
#csl{text-align:left !important;}
.jslink-a{color:#444;cursor:pointer;}
.jslink-a:hover{color:#fff;cursor:pointer;}
.hidestrate{display:none}
.hide-indicator{display:none}
.forest{fill:#0a0 !important}
.rock{fill:#aaa !important}
.plain{fill:#5f5 !important}
}
.desert{fill:#fc0 !important}
.cell-strate-1.forest{fill:#a56000 !important;stroke:#333;stroke-width:4px}
.cell-strate-2.forest{fill:#a56000 !important}
.cell-strate-3.forest{fill:#cd8d2a !important}
.cell-strate-4.forest{fill:#deac5f !important}
.cell-strate-5.forest{fill:#eac999 !important}
.cell-strate-6.forest{fill:#eac999 !important}
.cell-strate-7.forest{fill:#eac999 !important}
.cell-strate-8.forest{fill:#eac999 !important}
.cell-strate-9.forest{fill:#eac999 !important}
.cell-strate-1.rock{fill:#222 !important;}
.stem-cell.rock{fill:#222 !important;}
.cell-strate-2.rock{fill:#777 !important}
.cell-strate-3.rock{fill:#999 !important}
.cell-strate-4.rock{fill:#aaa !important}
.cell-strate-5.rock{fill:#999 !important}
.cell-strate-6.rock{fill:#999 !important}
.cell-strate-7.rock{fill:#ccc !important}
.cell-strate-8.rock{fill:#aaa !important}
.cell-strate-9.rock{fill:#fff !important}
.cell-strate-10.rock{fill:#fff !important}
.cell-strate-11.rock{fill:#fff !important}
.cell-strate-12.rock{fill:#fff !important}
.cell-strate-13.rock{fill:#fff !important}
.rock{stroke:none !important;}
.cell-strate-1.plain{fill:#1f1 !important}
.cell-strate-2.plain{fill:#2f2 !important}
.cell-strate-3.plain{fill:#5f5 !important}
.cell-strate-4.plain{fill:#7f7 !important}
.cell-strate-5.plain{fill:#9f9 !important}
.cell-strate-6.plain{fill:#9f9 !important}
.cell-strate-7.plain{fill:#9f9 !important}
.cell-strate-8.plain{fill:#9f9 !important}
.cell-strate-9.plain{fill:#9f9 !important}
.cell-strate-1.desert{fill:#fda !important;stroke:#000 !important;stroke-width:1px !important}
.cell-strate-2.desert{fill:#fc3 !important}
.cell-strate-3.desert{fill:#fd6 !important}
.cell-strate-4.desert{fill:#fe9 !important}
.cell-strate-5.desert{fill:#fca !important}
.cell-strate-6.desert{fill:#fca !important}
.cell-strate-7.desert{fill:#fcc !important}
.cell-strate-8.desert{fill:#fca !important}
.cell-strate-9.desert{fill:#fca !important}
.player-color.player-1{fill:#e00 !important;}
.player-color.player-2{fill:#00e !important;}
</style>
<div id="s1p-island">
<div id="s1p-island-load-screen">
<h3>Chargement ...</h3>
</div>
<div id="promohub">
<h3>Gaïa Island</h3>
<div id="csl" > ... </div>
<div id="buttons">
<span id="ts" class="jslink-a"> <i class="icon-toggle-off"></i> ciel</span>
<span id="tsea" class="jslink-a"> <i class="icon-toggle-on"></i> mer</span>
<span id="zi" class="jslink-a"><i class="icon-search"></i>+</span>
<span id="zo" class="jslink-a"><i class="icon-search"></i>-</span>
<span id="btn-rotate-right" class="jslink-a"><i class="icon-to-start"></i></span>
<span id="btn-rotate-left" class="jslink-a"><i class="icon-to-end"></i></span>
<span id="btn-add-soldier" class="jslink-a">add soldier</span>
<span id="btn-toggle-render-vb" class="jslink-a">render tl</span>
</div>
</div>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="600px"
viewBox="-100 -45 200 80"
version="1.1"
id="svg8">
<defs
id="defs995">
<linearGradient
id="linearGradient10575">
<stop
id="stop10571"
offset="0"
style="stop-color:#ffffff;stop-opacity:0.9" />
<stop
id="stop10573"
offset="1"
style="stop-color:#ffffff;stop-opacity:0.7;" />
</linearGradient>
<linearGradient
gradientTransform="matrix(1,0,0,1.8287671,0,44.556519)"
gradientUnits="userSpaceOnUse"
y2="1.1234967"
x2="-9.8589096"
y1="-84.610695"
x1="-9.8589096"
id="linearGradient10577"
xlink:href="#linearGradient10575" />
</defs>
<metadata
id="metadata998">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="scale(0.99, 0.43)"
id="g1816">
<rect
y="-274.043304"
x="-315"
height="545.61606"
width="634.90327"
id="rect9306"
style="opacity:0.98999999;vector-effect:none;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.82749999;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" />
<!-- ////////////////////////////////
// ROTATE LAYER STRATE 1 //
//////////////////////////////// -->
<g
transform="rotate(0)"
id="rotate-layer-strate-1"
class="rotate-layer strate-1">
<!-- /////////////////////////////
// MOVE LAYER STRATE 1 //
///////////////////////////// -->
<g
transform="translate(-22.599071572918525, 25.492978701129225)"
id="move-layer-strate-1"
class="move-layer">
<circle
id="circle9"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll0llc desert cl1lcEcl cl10lcAcl cl11lcFcl"
cy="-104"
cx="-40"
r="5.7735" />
<circle
id="circle11"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll1llc desert cl0lcBcl cl2lcEcl cl11lcAcl cl12lcFcl"
cy="-104"
cx="-30"
r="5.7735" />
<circle
id="circle13"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll2llc desert cl1lcBcl cl3lcEcl cl12lcAcl cl13lcFcl"
cy="-104"
cx="-20"
r="5.7735" />
<circle
id="circle15"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll3llc desert cl2lcBcl cl4lcEcl cl13lcAcl cl14lcFcl"
cy="-104"
cx="-10"
r="5.7735" />
<circle
id="circle17"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll4llc desert cl3lcBcl cl5lcEcl cl14lcAcl cl15lcFcl"
cy="-104"
cx="0"
r="5.7735" />
<circle
id="circle19"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll5llc desert cl4lcBcl cl6lcEcl cl15lcAcl cl16lcFcl"
cy="-104"
cx="10"
r="5.7735" />
<circle
id="circle21"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll6llc desert cl5lcBcl cl7lcEcl cl16lcAcl cl17lcFcl"
cy="-104"
cx="20"
r="5.7735" />
<circle
id="circle23"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll7llc desert cl6lcBcl cl8lcEcl cl17lcAcl cl18lcFcl"
cy="-104"
cx="30"
r="5.7735" />
<circle
id="circle25"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll8llc desert cl7lcBcl cl18lcAcl cl19lcFcl"
cy="-104"
cx="40"
r="5.7735" />
<circle
id="circle27"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll9llc desert cl10lcEcl cl21lcAcl cl22lcFcl"
cy="-96"
cx="-55"
r="5.7735" />
<circle
id="circle29"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll10llc desert cl0lcDcl cl9lcBcl cl11lcEcl cl22lcAcl cl23lcFcl"
cy="-96"
cx="-45"
r="5.7735" />
<circle
id="circle31"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll11llc cl0lcCcl cl1lcDcl cl10lcBcl cl12lcEcl cl23lcAcl cl24lcFcl"
cy="-96"
cx="-35"
r="5.7735" />
<circle
id="circle33"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll12llc cl1lcCcl cl2lcDcl cl11lcBcl cl13lcEcl cl24lcAcl cl25lcFcl"
cy="-96"
cx="-25"
r="5.7735" />
<circle
id="circle35"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll13llc cl2lcCcl cl3lcDcl cl12lcBcl cl14lcEcl cl25lcAcl cl26lcFcl"
cy="-96"
cx="-15"
r="5.7735" />
<circle
id="circle37"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll14llc desert cl3lcCcl cl4lcDcl cl13lcBcl cl15lcEcl cl26lcAcl cl27lcFcl"
cy="-96"
cx="-5"
r="5.7735" />
<circle
id="circle39"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll15llc cl4lcCcl cl5lcDcl cl14lcBcl cl16lcEcl cl27lcAcl cl28lcFcl"
cy="-96"
cx="5"
r="5.7735" />
<circle
id="circle41"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll16llc desert cl5lcCcl cl6lcDcl cl15lcBcl cl17lcEcl cl28lcAcl cl29lcFcl"
cy="-96"
cx="15"
r="5.7735" />
<circle
id="circle43"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll17llc desert cl6lcCcl cl7lcDcl cl16lcBcl cl18lcEcl cl29lcAcl cl30lcFcl"
cy="-96"
cx="25"
r="5.7735" />
<circle
id="circle45"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll18llc cl7lcCcl cl8lcDcl cl17lcBcl cl19lcEcl cl30lcAcl cl31lcFcl"
cy="-96"
cx="35"
r="5.7735" />
<circle
id="circle47"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll19llc desert cl8lcCcl cl18lcBcl cl20lcEcl cl31lcAcl cl32lcFcl"
cy="-96"
cx="45"
r="5.7735" />
<circle
id="circle49"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll20llc desert cl19lcBcl cl32lcAcl cl33lcFcl"
cy="-96"
cx="55"
r="5.7735" />
<circle
id="circle51"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll21llc desert cl9lcDcl cl22lcEcl cl35lcAcl cl36lcFcl"
cy="-88"
cx="-60"
r="5.7735" />
<circle
id="circle53"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll22llc cl9lcCcl cl10lcDcl cl21lcBcl cl23lcEcl cl36lcAcl cl37lcFcl"
cy="-88"
cx="-50"
r="5.7735" />
<circle
id="circle55"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll23llc plain cl10lcCcl cl11lcDcl cl22lcBcl cl24lcEcl cl37lcAcl cl38lcFcl"
cy="-88"
cx="-40"
r="5.7735" />
<circle
id="circle57"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll24llc plain cl11lcCcl cl12lcDcl cl23lcBcl cl25lcEcl cl38lcAcl cl39lcFcl"
cy="-88"
cx="-30"
r="5.7735" />
<circle
id="circle59"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll25llc plain cl12lcCcl cl13lcDcl cl24lcBcl cl26lcEcl cl39lcAcl cl40lcFcl"
cy="-88"
cx="-20"
r="5.7735" />
<circle
id="circle61"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll26llc cl13lcCcl cl14lcDcl cl25lcBcl cl27lcEcl cl40lcAcl cl41lcFcl"
cy="-88"
cx="-10"
r="5.7735" />
<circle
id="circle63"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll27llc desert cl14lcCcl cl15lcDcl cl26lcBcl cl28lcEcl cl41lcAcl cl42lcFcl"
cy="-88"
cx="0"
r="5.7735" />
<circle
id="circle65"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll28llc cl15lcCcl cl16lcDcl cl27lcBcl cl29lcEcl cl42lcAcl cl43lcFcl"
cy="-88"
cx="10"
r="5.7735" />
<circle
id="circle67"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll29llc cl16lcCcl cl17lcDcl cl28lcBcl cl30lcEcl cl43lcAcl cl44lcFcl"
cy="-88"
cx="20"
r="5.7735" />
<circle
id="circle69"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll30llc cl17lcCcl cl18lcDcl cl29lcBcl cl31lcEcl cl44lcAcl cl45lcFcl"
cy="-88"
cx="30"
r="5.7735" />
<circle
id="circle71"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll31llc cl18lcCcl cl19lcDcl cl30lcBcl cl32lcEcl cl45lcAcl cl46lcFcl"
cy="-88"
cx="40"
r="5.7735" />
<circle
id="circle73"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll32llc desert cl19lcCcl cl20lcDcl cl31lcBcl cl33lcEcl cl46lcAcl cl47lcFcl"
cy="-88"
cx="50"
r="5.7735" />
<circle
id="circle75"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll33llc desert cl20lcCcl cl32lcBcl cl47lcAcl cl48lcFcl"
cy="-88"
cx="60"
r="5.7735" />
<circle
id="circle77"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll34llc desert cl35lcEcl cl50lcAcl cl51lcFcl"
cy="-80"
cx="-75"
r="5.7735" />
<circle
id="circle79"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll35llc desert cl21lcDcl cl34lcBcl cl36lcEcl cl51lcAcl cl52lcFcl"
cy="-80"
cx="-65"
r="5.7735" />
<circle
id="circle81"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll36llc cl21lcCcl cl22lcDcl cl35lcBcl cl37lcEcl cl52lcAcl cl53lcFcl"
cy="-80"
cx="-55"
r="5.7735" />
<circle
id="circle83"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll37llc plain cl22lcCcl cl23lcDcl cl36lcBcl cl38lcEcl cl53lcAcl cl54lcFcl"
cy="-80"
cx="-45"
r="5.7735" />
<circle
id="circle85"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll38llc forest cl23lcCcl cl24lcDcl cl37lcBcl cl39lcEcl cl54lcAcl cl55lcFcl"
cy="-80"
cx="-35"
r="5.7735" />
<circle
id="circle87"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll39llc forest cl24lcCcl cl25lcDcl cl38lcBcl cl40lcEcl cl55lcAcl cl56lcFcl"
cy="-80"
cx="-25"
r="5.7735" />
<circle
id="circle89"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll40llc cl25lcCcl cl26lcDcl cl39lcBcl cl41lcEcl cl56lcAcl cl57lcFcl"
cy="-80"
cx="-15"
r="5.7735" />
<circle
id="circle91"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll41llc desert cl26lcCcl cl27lcDcl cl40lcBcl cl42lcEcl cl57lcAcl cl58lcFcl"
cy="-80"
cx="-5"
r="5.7735" />
<circle
id="circle93"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll42llc cl27lcCcl cl28lcDcl cl41lcBcl cl43lcEcl cl58lcAcl cl59lcFcl"
cy="-80"
cx="5"
r="5.7735" />
<circle
id="circle95"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll43llc cl28lcCcl cl29lcDcl cl42lcBcl cl44lcEcl cl59lcAcl cl60lcFcl"
cy="-80"
cx="15"
r="5.7735" />
<circle
id="circle97"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll44llc forest cl29lcCcl cl30lcDcl cl43lcBcl cl45lcEcl cl60lcAcl cl61lcFcl"
cy="-80"
cx="25"
r="5.7735" />
<circle
id="circle99"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll45llc desert cl30lcCcl cl31lcDcl cl44lcBcl cl46lcEcl cl61lcAcl cl62lcFcl"
cy="-80"
cx="35"
r="5.7735" />
<circle
id="circle101"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll46llc cl31lcCcl cl32lcDcl cl45lcBcl cl47lcEcl cl62lcAcl cl63lcFcl"
cy="-80"
cx="45"
r="5.7735" />
<circle
id="circle103"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll47llc desert cl32lcCcl cl33lcDcl cl46lcBcl cl48lcEcl cl63lcAcl cl64lcFcl"
cy="-80"
cx="55"
r="5.7735" />
<circle
id="circle105"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll48llc desert cl33lcCcl cl47lcBcl cl49lcEcl cl64lcAcl cl65lcFcl"
cy="-80"
cx="65"
r="5.7735" />
<circle
id="circle107"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll49llc desert cl48lcBcl cl65lcAcl cl66lcFcl"
cy="-80"
cx="75"
r="5.7735" />
<circle
id="circle109"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll50llc desert cl34lcDcl cl51lcEcl cl67lcAcl cl68lcFcl"
cy="-72"
cx="-80"
r="5.7735" />
<circle
id="circle111"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll51llc desert cl34lcCcl cl35lcDcl cl50lcBcl cl52lcEcl cl68lcAcl cl69lcFcl"
cy="-72"
cx="-70"
r="5.7735" />
<circle
id="circle113"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll52llc desert cl35lcCcl cl36lcDcl cl51lcBcl cl53lcEcl cl69lcAcl cl70lcFcl"
cy="-72"
cx="-60"
r="5.7735" />
<circle
id="circle115"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll53llc cl36lcCcl cl37lcDcl cl52lcBcl cl54lcEcl cl70lcAcl cl71lcFcl"
cy="-72"
cx="-50"
r="5.7735" />
<circle
id="circle117"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll54llc plain cl37lcCcl cl38lcDcl cl53lcBcl cl55lcEcl cl71lcAcl cl72lcFcl"
cy="-72"
cx="-40"
r="5.7735" />
<circle
id="circle119"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll55llc plain cl38lcCcl cl39lcDcl cl54lcBcl cl56lcEcl cl72lcAcl cl73lcFcl"
cy="-72"
cx="-30"
r="5.7735" />
<circle
id="circle121"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll56llc forest cl39lcCcl cl40lcDcl cl55lcBcl cl57lcEcl cl73lcAcl cl74lcFcl"
cy="-72"
cx="-20"
r="5.7735" />
<circle
id="circle123"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll57llc cl40lcCcl cl41lcDcl cl56lcBcl cl58lcEcl cl74lcAcl cl75lcFcl"
cy="-72"
cx="-10"
r="5.7735" />
<circle
id="circle125"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll58llc cl41lcCcl cl42lcDcl cl57lcBcl cl59lcEcl cl75lcAcl cl76lcFcl"
cy="-72"
cx="0"
r="5.7735" />
<circle
id="circle127"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll59llc forest cl42lcCcl cl43lcDcl cl58lcBcl cl60lcEcl cl76lcAcl cl77lcFcl"
cy="-72"
cx="10"
r="5.7735" />
<circle
id="circle129"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll60llc forest cl43lcCcl cl44lcDcl cl59lcBcl cl61lcEcl cl77lcAcl cl78lcFcl"
cy="-72"
cx="20"
r="5.7735" />
<circle
id="circle131"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll61llc plain cl44lcCcl cl45lcDcl cl60lcBcl cl62lcEcl cl78lcAcl cl79lcFcl"
cy="-72"
cx="30"
r="5.7735" />
<circle
id="circle133"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll62llc cl45lcCcl cl46lcDcl cl61lcBcl cl63lcEcl cl79lcAcl cl80lcFcl"
cy="-72"
cx="40"
r="5.7735" />
<circle
id="circle135"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll63llc cl46lcCcl cl47lcDcl cl62lcBcl cl64lcEcl cl80lcAcl cl81lcFcl"
cy="-72"
cx="50"
r="5.7735" />
<circle
id="circle137"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll64llc cl47lcCcl cl48lcDcl cl63lcBcl cl65lcEcl cl81lcAcl cl82lcFcl"
cy="-72"
cx="60"
r="5.7735" />
<circle
id="circle139"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll65llc desert cl48lcCcl cl49lcDcl cl64lcBcl cl66lcEcl cl82lcAcl cl83lcFcl"
cy="-72"
cx="70"
r="5.7735" />
<circle
id="circle141"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll66llc desert cl49lcCcl cl65lcBcl cl83lcAcl cl84lcFcl"
cy="-72"
cx="80"
r="5.7735" />
<circle
id="circle143"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll67llc desert cl50lcDcl cl68lcEcl cl85lcAcl cl86lcFcl"
cy="-64"
cx="-85"
r="5.7735" />
<circle
id="circle145"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll68llc desert cl50lcCcl cl51lcDcl cl67lcBcl cl69lcEcl cl86lcAcl cl87lcFcl"
cy="-64"
cx="-75"
r="5.7735" />
<circle
id="circle147"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll69llc desert cl51lcCcl cl52lcDcl cl68lcBcl cl70lcEcl cl87lcAcl cl88lcFcl"
cy="-64"
cx="-65"
r="5.7735" />
<circle
id="circle149"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll70llc desert cl52lcCcl cl53lcDcl cl69lcBcl cl71lcEcl cl88lcAcl cl89lcFcl"
cy="-64"
cx="-55"
r="5.7735" />
<circle
id="circle151"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll71llc cl53lcCcl cl54lcDcl cl70lcBcl cl72lcEcl cl89lcAcl cl90lcFcl"
cy="-64"
cx="-45"
r="5.7735" />
<circle
id="circle153"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll72llc cl54lcCcl cl55lcDcl cl71lcBcl cl73lcEcl cl90lcAcl cl91lcFcl"
cy="-64"
cx="-35"
r="5.7735" />
<circle
id="circle155"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll73llc rock cl55lcCcl cl56lcDcl cl72lcBcl cl74lcEcl cl91lcAcl cl92lcFcl"
cy="-64"
cx="-25"
r="5.7735" />
<circle
id="circle157"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll74llc rock cl56lcCcl cl57lcDcl cl73lcBcl cl75lcEcl cl92lcAcl cl93lcFcl"
cy="-64"
cx="-15"
r="5.7735" />
<circle
id="circle159"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll75llc rock cl57lcCcl cl58lcDcl cl74lcBcl cl76lcEcl cl93lcAcl cl94lcFcl"
cy="-64"
cx="-5"
r="5.7735" />
<circle
id="circle161"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll76llc plain cl58lcCcl cl59lcDcl cl75lcBcl cl77lcEcl cl94lcAcl cl95lcFcl"
cy="-64"
cx="5"
r="5.7735" />
<circle
id="circle163"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll77llc plain cl59lcCcl cl60lcDcl cl76lcBcl cl78lcEcl cl95lcAcl cl96lcFcl"
cy="-64"
cx="15"
r="5.7735" />
<circle
id="circle165"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll78llc forest cl60lcCcl cl61lcDcl cl77lcBcl cl79lcEcl cl96lcAcl cl97lcFcl"
cy="-64"
cx="25"
r="5.7735" />
<circle
id="circle167"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll79llc cl61lcCcl cl62lcDcl cl78lcBcl cl80lcEcl cl97lcAcl cl98lcFcl"
cy="-64"
cx="35"
r="5.7735" />
<circle
id="circle169"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll80llc forest cl62lcCcl cl63lcDcl cl79lcBcl cl81lcEcl cl98lcAcl cl99lcFcl"
cy="-64"
cx="45"
r="5.7735" />
<circle
id="circle171"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll81llc cl63lcCcl cl64lcDcl cl80lcBcl cl82lcEcl cl99lcAcl cl100lcFcl"
cy="-64"
cx="55"
r="5.7735" />
<circle
id="circle173"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll82llc cl64lcCcl cl65lcDcl cl81lcBcl cl83lcEcl cl100lcAcl cl101lcFcl"
cy="-64"
cx="65"
r="5.7735" />
<circle
id="circle175"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll83llc desert cl65lcCcl cl66lcDcl cl82lcBcl cl84lcEcl cl101lcAcl cl102lcFcl"
cy="-64"
cx="75"
r="5.7735" />
<circle
id="circle177"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll84llc desert cl66lcCcl cl83lcBcl cl102lcAcl cl103lcFcl"
cy="-64"
cx="85"
r="5.7735" />
<circle
id="circle179"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll85llc desert cl67lcDcl cl86lcEcl cl104lcAcl cl105lcFcl"
cy="-56"
cx="-90"
r="5.7735" />
<circle
id="circle181"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll86llc desert cl67lcCcl cl68lcDcl cl85lcBcl cl87lcEcl cl105lcAcl cl106lcFcl"
cy="-56"
cx="-80"
r="5.7735" />
<circle
id="circle183"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll87llc cl68lcCcl cl69lcDcl cl86lcBcl cl88lcEcl cl106lcAcl cl107lcFcl"
cy="-56"
cx="-70"
r="5.7735" />
<circle
id="circle185"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll88llc cl69lcCcl cl70lcDcl cl87lcBcl cl89lcEcl cl107lcAcl cl108lcFcl"
cy="-56"
cx="-60"
r="5.7735" />
<circle
id="circle187"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll89llc desert cl70lcCcl cl71lcDcl cl88lcBcl cl90lcEcl cl108lcAcl cl109lcFcl"
cy="-56"
cx="-50"
r="5.7735" />
<circle
id="circle189"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll90llc desert cl71lcCcl cl72lcDcl cl89lcBcl cl91lcEcl cl109lcAcl cl110lcFcl"
cy="-56"
cx="-40"
r="5.7735" />
<circle
id="circle191"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll91llc desert cl72lcCcl cl73lcDcl cl90lcBcl cl92lcEcl cl110lcAcl cl111lcFcl"
cy="-56"
cx="-30"
r="5.7735" />
<circle
id="circle193"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll92llc cl73lcCcl cl74lcDcl cl91lcBcl cl93lcEcl cl111lcAcl cl112lcFcl"
cy="-56"
cx="-20"
r="5.7735" />
<circle
id="circle195"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll93llc cl74lcCcl cl75lcDcl cl92lcBcl cl94lcEcl cl112lcAcl cl113lcFcl"
cy="-56"
cx="-10"
r="5.7735" />
<circle
id="circle197"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll94llc rock cl75lcCcl cl76lcDcl cl93lcBcl cl95lcEcl cl113lcAcl cl114lcFcl"
cy="-56"
cx="0"
r="5.7735" />
<circle
id="circle199"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll95llc plain cl76lcCcl cl77lcDcl cl94lcBcl cl96lcEcl cl114lcAcl cl115lcFcl"
cy="-56"
cx="10"
r="5.7735" />
<circle
id="circle201"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll96llc plain cl77lcCcl cl78lcDcl cl95lcBcl cl97lcEcl cl115lcAcl cl116lcFcl"
cy="-56"
cx="20"
r="5.7735" />
<circle
id="circle203"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll97llc plain cl78lcCcl cl79lcDcl cl96lcBcl cl98lcEcl cl116lcAcl cl117lcFcl"
cy="-56"
cx="30"
r="5.7735" />
<circle
id="circle205"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll98llc cl79lcCcl cl80lcDcl cl97lcBcl cl99lcEcl cl117lcAcl cl118lcFcl"
cy="-56"
cx="40"
r="5.7735" />
<circle
id="circle207"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll99llc forest cl80lcCcl cl81lcDcl cl98lcBcl cl100lcEcl cl118lcAcl cl119lcFcl"
cy="-56"
cx="50"
r="5.7735" />
<circle
id="circle209"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll100llc cl81lcCcl cl82lcDcl cl99lcBcl cl101lcEcl cl119lcAcl cl120lcFcl"
cy="-56"
cx="60"
r="5.7735" />
<circle
id="circle211"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll101llc desert cl82lcCcl cl83lcDcl cl100lcBcl cl102lcEcl cl120lcAcl cl121lcFcl"
cy="-56"
cx="70"
r="5.7735" />
<circle
id="circle213"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll102llc plain cl83lcCcl cl84lcDcl cl101lcBcl cl103lcEcl cl121lcAcl cl122lcFcl"
cy="-56"
cx="80"
r="5.7735" />
<circle
id="circle215"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll103llc desert cl84lcCcl cl102lcBcl cl122lcAcl cl123lcFcl"
cy="-56"
cx="90"
r="5.7735" />
<circle
id="circle217"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll104llc desert cl85lcDcl cl105lcEcl cl124lcAcl cl125lcFcl"
cy="-48"
cx="-95"
r="5.7735" />
<circle
id="circle219"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll105llc cl85lcCcl cl86lcDcl cl104lcBcl cl106lcEcl cl125lcAcl cl126lcFcl"
cy="-48"
cx="-85"
r="5.7735" />
<circle
id="circle221"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll106llc cl86lcCcl cl87lcDcl cl105lcBcl cl107lcEcl cl126lcAcl cl127lcFcl"
cy="-48"
cx="-75"
r="5.7735" />
<circle
id="circle223"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll107llc cl87lcCcl cl88lcDcl cl106lcBcl cl108lcEcl cl127lcAcl cl128lcFcl"
cy="-48"
cx="-65"
r="5.7735" />
<circle
id="circle225"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll108llc cl88lcCcl cl89lcDcl cl107lcBcl cl109lcEcl cl128lcAcl cl129lcFcl"
cy="-48"
cx="-55"
r="5.7735" />
<circle
id="circle227"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll109llc cl89lcCcl cl90lcDcl cl108lcBcl cl110lcEcl cl129lcAcl cl130lcFcl"
cy="-48"
cx="-45"
r="5.7735" />
<circle
id="circle229"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll110llc cl90lcCcl cl91lcDcl cl109lcBcl cl111lcEcl cl130lcAcl cl131lcFcl"
cy="-48"
cx="-35"
r="5.7735" />
<circle
id="circle231"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll111llc desert cl91lcCcl cl92lcDcl cl110lcBcl cl112lcEcl cl131lcAcl cl132lcFcl"
cy="-48"
cx="-25"
r="5.7735" />
<circle
id="circle233"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll112llc desert cl92lcCcl cl93lcDcl cl111lcBcl cl113lcEcl cl132lcAcl cl133lcFcl"
cy="-48"
cx="-15"
r="5.7735" />
<circle
id="circle235"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll113llc rock cl93lcCcl cl94lcDcl cl112lcBcl cl114lcEcl cl133lcAcl cl134lcFcl"
cy="-48"
cx="-5"
r="5.7735" />
<circle
id="circle237"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell desert cll114llc cl94lcCcl cl95lcDcl cl113lcBcl cl115lcEcl cl134lcAcl cl135lcFcl"
cy="-48"
cx="5"
r="5.7735" />
<circle
id="circle239"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll115llc plain cl95lcCcl cl96lcDcl cl114lcBcl cl116lcEcl cl135lcAcl cl136lcFcl"
cy="-48"
cx="15"
r="5.7735" />
<circle
id="circle241"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll116llc plain cl96lcCcl cl97lcDcl cl115lcBcl cl117lcEcl cl136lcAcl cl137lcFcl"
cy="-48"
cx="25"
r="5.7735" />
<circle
id="circle243"
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16028284;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
class="cell stem-cell cll117llc plain cl97lcCcl cl98lcDcl cl116lcBcl cl118lcEcl cl137lcAcl cl138lcFcl"