-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathairplane.dae
1861 lines (1861 loc) · 610 KB
/
airplane.dae
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
<?xml version="1.0" encoding="utf-8"?>
<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
<asset>
<contributor>
<author>Blender User</author>
<authoring_tool>Blender 2.78.0 commit date:2016-10-24, commit time:12:20, hash:e8299c8</authoring_tool>
</contributor>
<created>2017-02-27T10:08:49</created>
<modified>2017-02-27T10:08:49</modified>
<unit name="meter" meter="1"/>
<up_axis>Z_UP</up_axis>
</asset>
<library_cameras>
<camera id="Camera-camera" name="Camera">
<optics>
<technique_common>
<perspective>
<xfov sid="xfov">49.13434</xfov>
<aspect_ratio>1.5</aspect_ratio>
<znear sid="znear">0.1</znear>
<zfar sid="zfar">100</zfar>
</perspective>
</technique_common>
</optics>
<extra>
<technique profile="blender">
<YF_dofdist>0</YF_dofdist>
<shiftx>0</shiftx>
<shifty>0</shifty>
</technique>
</extra>
</camera>
</library_cameras>
<library_lights>
<light id="Lamp-light" name="Lamp">
<technique_common>
<point>
<color sid="color">1.64 1.471154 0.8805455</color>
<constant_attenuation>1</constant_attenuation>
<linear_attenuation>0</linear_attenuation>
<quadratic_attenuation>0.00111109</quadratic_attenuation>
</point>
</technique_common>
<extra>
<technique profile="blender">
<adapt_thresh>0.000999987</adapt_thresh>
<area_shape>1</area_shape>
<area_size>0.1</area_size>
<area_sizey>0.1</area_sizey>
<area_sizez>1</area_sizez>
<atm_distance_factor>1</atm_distance_factor>
<atm_extinction_factor>1</atm_extinction_factor>
<atm_turbidity>2</atm_turbidity>
<att1>0</att1>
<att2>1</att2>
<backscattered_light>1</backscattered_light>
<bias>1</bias>
<blue>0.536918</blue>
<buffers>1</buffers>
<bufflag>0</bufflag>
<bufsize>2880</bufsize>
<buftype>2</buftype>
<clipend>30.002</clipend>
<clipsta>1.000799</clipsta>
<compressthresh>0.04999995</compressthresh>
<dist sid="blender_dist">29.99998</dist>
<energy sid="blender_energy">1.64</energy>
<falloff_type>2</falloff_type>
<filtertype>0</filtertype>
<flag>0</flag>
<gamma sid="blender_gamma">1</gamma>
<green>0.897045</green>
<halo_intensity sid="blnder_halo_intensity">1</halo_intensity>
<horizon_brightness>1</horizon_brightness>
<mode>8192</mode>
<ray_samp>1</ray_samp>
<ray_samp_method>1</ray_samp_method>
<ray_samp_type>0</ray_samp_type>
<ray_sampy>1</ray_sampy>
<ray_sampz>1</ray_sampz>
<red>1</red>
<samp>3</samp>
<shadhalostep>0</shadhalostep>
<shadow_b sid="blender_shadow_b">0</shadow_b>
<shadow_g sid="blender_shadow_g">0</shadow_g>
<shadow_r sid="blender_shadow_r">0</shadow_r>
<sky_colorspace>0</sky_colorspace>
<sky_exposure>1</sky_exposure>
<skyblendfac>1</skyblendfac>
<skyblendtype>1</skyblendtype>
<soft>3</soft>
<spotblend>0.15</spotblend>
<spotsize>75</spotsize>
<spread>1</spread>
<sun_brightness>1</sun_brightness>
<sun_effect_type>0</sun_effect_type>
<sun_intensity>1</sun_intensity>
<sun_size>1</sun_size>
<type>0</type>
</technique>
</extra>
</light>
<light id="Point-light" name="Point">
<technique_common>
<spot>
<color sid="color">3.76 3.136049 1.552115</color>
<constant_attenuation>1</constant_attenuation>
<linear_attenuation>0</linear_attenuation>
<quadratic_attenuation>0.1957865</quadratic_attenuation>
<falloff_angle sid="fall_off_angle">45</falloff_angle>
<falloff_exponent sid="fall_off_exponent">0.15</falloff_exponent>
</spot>
</technique_common>
<extra>
<technique profile="blender">
<adapt_thresh>0.000999987</adapt_thresh>
<area_shape>0</area_shape>
<area_size>0.1</area_size>
<area_sizey>0.1</area_sizey>
<area_sizez>0.1</area_sizez>
<atm_distance_factor>1</atm_distance_factor>
<atm_extinction_factor>1</atm_extinction_factor>
<atm_turbidity>2</atm_turbidity>
<att1>0</att1>
<att2>1</att2>
<backscattered_light>1</backscattered_light>
<bias>1</bias>
<blue>0.4127964</blue>
<buffers>1</buffers>
<bufflag>0</bufflag>
<bufsize>512</bufsize>
<buftype>2</buftype>
<clipend>40</clipend>
<clipsta>0.5</clipsta>
<compressthresh>0.04999995</compressthresh>
<dist sid="blender_dist">2.26</dist>
<energy sid="blender_energy">3.76</energy>
<falloff_type>2</falloff_type>
<filtertype>0</filtertype>
<flag>0</flag>
<gamma sid="blender_gamma">1</gamma>
<green>0.8340556</green>
<halo_intensity sid="blnder_halo_intensity">1</halo_intensity>
<horizon_brightness>1</horizon_brightness>
<mode>1</mode>
<ray_samp>1</ray_samp>
<ray_samp_method>1</ray_samp_method>
<ray_samp_type>0</ray_samp_type>
<ray_sampy>1</ray_sampy>
<ray_sampz>1</ray_sampz>
<red>1</red>
<samp>3</samp>
<shadhalostep>0</shadhalostep>
<shadow_b sid="blender_shadow_b">0</shadow_b>
<shadow_g sid="blender_shadow_g">0</shadow_g>
<shadow_r sid="blender_shadow_r">0</shadow_r>
<sky_colorspace>2</sky_colorspace>
<sky_exposure>1</sky_exposure>
<skyblendfac>1</skyblendfac>
<skyblendtype>1</skyblendtype>
<soft>3</soft>
<spotblend>0.15</spotblend>
<spotsize>45</spotsize>
<spread>1</spread>
<sun_brightness>1</sun_brightness>
<sun_effect_type>0</sun_effect_type>
<sun_intensity>1</sun_intensity>
<sun_size>1</sun_size>
<type>2</type>
</technique>
</extra>
</light>
<light id="Point_001-light" name="Point.002">
<technique_common>
<spot>
<color sid="color">3.34 2.785746 1.37874</color>
<constant_attenuation>1</constant_attenuation>
<linear_attenuation>0</linear_attenuation>
<quadratic_attenuation>0.1957865</quadratic_attenuation>
<falloff_angle sid="fall_off_angle">45</falloff_angle>
<falloff_exponent sid="fall_off_exponent">0.15</falloff_exponent>
</spot>
</technique_common>
<extra>
<technique profile="blender">
<adapt_thresh>0.000999987</adapt_thresh>
<area_shape>0</area_shape>
<area_size>0.1</area_size>
<area_sizey>0.1</area_sizey>
<area_sizez>0.1</area_sizez>
<atm_distance_factor>1</atm_distance_factor>
<atm_extinction_factor>1</atm_extinction_factor>
<atm_turbidity>2</atm_turbidity>
<att1>0</att1>
<att2>1</att2>
<backscattered_light>1</backscattered_light>
<bias>1</bias>
<blue>0.4127964</blue>
<buffers>1</buffers>
<bufflag>0</bufflag>
<bufsize>512</bufsize>
<buftype>2</buftype>
<clipend>40</clipend>
<clipsta>0.5</clipsta>
<compressthresh>0.04999995</compressthresh>
<dist sid="blender_dist">2.26</dist>
<energy sid="blender_energy">3.34</energy>
<falloff_type>2</falloff_type>
<filtertype>0</filtertype>
<flag>0</flag>
<gamma sid="blender_gamma">1</gamma>
<green>0.8340556</green>
<halo_intensity sid="blnder_halo_intensity">1</halo_intensity>
<horizon_brightness>1</horizon_brightness>
<mode>1</mode>
<ray_samp>1</ray_samp>
<ray_samp_method>1</ray_samp_method>
<ray_samp_type>0</ray_samp_type>
<ray_sampy>1</ray_sampy>
<ray_sampz>1</ray_sampz>
<red>1</red>
<samp>3</samp>
<shadhalostep>0</shadhalostep>
<shadow_b sid="blender_shadow_b">0</shadow_b>
<shadow_g sid="blender_shadow_g">0</shadow_g>
<shadow_r sid="blender_shadow_r">0</shadow_r>
<sky_colorspace>2</sky_colorspace>
<sky_exposure>1</sky_exposure>
<skyblendfac>1</skyblendfac>
<skyblendtype>1</skyblendtype>
<soft>3</soft>
<spotblend>0.15</spotblend>
<spotsize>45</spotsize>
<spread>1</spread>
<sun_brightness>1</sun_brightness>
<sun_effect_type>0</sun_effect_type>
<sun_intensity>1</sun_intensity>
<sun_size>1</sun_size>
<type>2</type>
</technique>
</extra>
</light>
<light id="Sun-light" name="Sun">
<technique_common>
<directional>
<color sid="color">1 1 1</color>
</directional>
</technique_common>
<extra>
<technique profile="blender">
<adapt_thresh>0.000999987</adapt_thresh>
<area_shape>0</area_shape>
<area_size>0.1</area_size>
<area_sizey>0.1</area_sizey>
<area_sizez>0.1</area_sizez>
<atm_distance_factor>1</atm_distance_factor>
<atm_extinction_factor>1</atm_extinction_factor>
<atm_turbidity>2</atm_turbidity>
<att1>0</att1>
<att2>1</att2>
<backscattered_light>1</backscattered_light>
<bias>1</bias>
<blue>1</blue>
<buffers>1</buffers>
<bufflag>0</bufflag>
<bufsize>512</bufsize>
<buftype>2</buftype>
<clipend>40</clipend>
<clipsta>0.5</clipsta>
<compressthresh>0.04999995</compressthresh>
<dist sid="blender_dist">25</dist>
<energy sid="blender_energy">1</energy>
<falloff_type>2</falloff_type>
<filtertype>0</filtertype>
<flag>0</flag>
<gamma sid="blender_gamma">1</gamma>
<green>1</green>
<halo_intensity sid="blnder_halo_intensity">1</halo_intensity>
<horizon_brightness>1</horizon_brightness>
<mode>1</mode>
<ray_samp>1</ray_samp>
<ray_samp_method>1</ray_samp_method>
<ray_samp_type>0</ray_samp_type>
<ray_sampy>1</ray_sampy>
<ray_sampz>1</ray_sampz>
<red>1</red>
<samp>3</samp>
<shadhalostep>0</shadhalostep>
<shadow_b sid="blender_shadow_b">0</shadow_b>
<shadow_g sid="blender_shadow_g">0</shadow_g>
<shadow_r sid="blender_shadow_r">0</shadow_r>
<sky_colorspace>2</sky_colorspace>
<sky_exposure>1</sky_exposure>
<skyblendfac>1</skyblendfac>
<skyblendtype>1</skyblendtype>
<soft>3</soft>
<spotblend>0.15</spotblend>
<spotsize>45</spotsize>
<spread>1</spread>
<sun_brightness>1</sun_brightness>
<sun_effect_type>0</sun_effect_type>
<sun_intensity>1</sun_intensity>
<sun_size>1</sun_size>
<type>1</type>
</technique>
</extra>
</light>
</library_lights>
<library_images/>
<library_effects>
<effect id="Rivet_Valence-effect">
<profile_COMMON>
<technique sid="common">
<phong>
<emission>
<color sid="emission">0 0 0 1</color>
</emission>
<ambient>
<color sid="ambient">0 0 0 1</color>
</ambient>
<diffuse>
<color sid="diffuse">0.2776936 0.5096852 0.6512331 1</color>
</diffuse>
<specular>
<color sid="specular">0.8720322 1 0.5706474 1</color>
</specular>
<shininess>
<float sid="shininess">511</float>
</shininess>
<index_of_refraction>
<float sid="index_of_refraction">1</float>
</index_of_refraction>
</phong>
</technique>
</profile_COMMON>
</effect>
<effect id="Valence_Rivets-effect">
<profile_COMMON>
<technique sid="common">
<phong>
<emission>
<color sid="emission">0 0 0 1</color>
</emission>
<ambient>
<color sid="ambient">0 0 0 1</color>
</ambient>
<diffuse>
<color sid="diffuse">0.2050889 0.2050889 0.2050889 1</color>
</diffuse>
<specular>
<color sid="specular">0.5789474 0.5789474 0.5789474 1</color>
</specular>
<shininess>
<float sid="shininess">50</float>
</shininess>
<index_of_refraction>
<float sid="index_of_refraction">1</float>
</index_of_refraction>
</phong>
</technique>
</profile_COMMON>
</effect>
<effect id="Body-effect">
<profile_COMMON>
<technique sid="common">
<phong>
<emission>
<color sid="emission">0.14 0.14 0.14 1</color>
</emission>
<ambient>
<color sid="ambient">0 0 0 1</color>
</ambient>
<diffuse>
<color sid="diffuse">0.3102531 0.5161507 0.64 1</color>
</diffuse>
<specular>
<color sid="specular">0.7105665 1 1 1</color>
</specular>
<shininess>
<float sid="shininess">15</float>
</shininess>
<index_of_refraction>
<float sid="index_of_refraction">1</float>
</index_of_refraction>
</phong>
</technique>
</profile_COMMON>
</effect>
<effect id="BLOCK-effect">
<profile_COMMON>
<technique sid="common">
<phong>
<emission>
<color sid="emission">0 0 0 1</color>
</emission>
<ambient>
<color sid="ambient">0 0 0 1</color>
</ambient>
<diffuse>
<color sid="diffuse">0.4101352 0.5766482 0.64 1</color>
</diffuse>
<specular>
<color sid="specular">0.1653061 0.1653061 0.1653061 1</color>
</specular>
<shininess>
<float sid="shininess">50</float>
</shininess>
<index_of_refraction>
<float sid="index_of_refraction">1</float>
</index_of_refraction>
</phong>
</technique>
</profile_COMMON>
</effect>
<effect id="Material-effect">
<profile_COMMON>
<technique sid="common">
<phong>
<emission>
<color sid="emission">0 0 0 1</color>
</emission>
<ambient>
<color sid="ambient">0 0 0 1</color>
</ambient>
<diffuse>
<color sid="diffuse">0.64 0.64 0.64 1</color>
</diffuse>
<specular>
<color sid="specular">0.5 0.5 0.5 1</color>
</specular>
<shininess>
<float sid="shininess">50</float>
</shininess>
<index_of_refraction>
<float sid="index_of_refraction">1</float>
</index_of_refraction>
</phong>
</technique>
</profile_COMMON>
</effect>
<effect id="Propellor-effect">
<profile_COMMON>
<technique sid="common">
<phong>
<emission>
<color sid="emission">0 0 0 1</color>
</emission>
<ambient>
<color sid="ambient">0 0 0 1</color>
</ambient>
<diffuse>
<color sid="diffuse">0.03655954 0.03655954 0.03655954 1</color>
</diffuse>
<specular>
<color sid="specular">0.3138686 0.3138686 0.3138686 1</color>
</specular>
<shininess>
<float sid="shininess">54</float>
</shininess>
<index_of_refraction>
<float sid="index_of_refraction">1</float>
</index_of_refraction>
</phong>
</technique>
</profile_COMMON>
</effect>
<effect id="Windshield-effect">
<profile_COMMON>
<technique sid="common">
<phong>
<emission>
<color sid="emission">0 0 0 1</color>
</emission>
<ambient>
<color sid="ambient">0 0 0 1</color>
</ambient>
<diffuse>
<color sid="diffuse">0.3431506 0.3869424 0.4239416 1</color>
</diffuse>
<specular>
<color sid="specular">0.6058394 0.6058394 0.6058394 1</color>
</specular>
<shininess>
<float sid="shininess">32</float>
</shininess>
<transparent opaque="A_ONE">
<color>1 1 1 1</color>
</transparent>
<index_of_refraction>
<float sid="index_of_refraction">1</float>
</index_of_refraction>
</phong>
</technique>
</profile_COMMON>
</effect>
<effect id="Tire-effect">
<profile_COMMON>
<technique sid="common">
<phong>
<emission>
<color sid="emission">0.04000001 0.04000001 0.04000001 1</color>
</emission>
<ambient>
<color sid="ambient">0 0 0 1</color>
</ambient>
<diffuse>
<color sid="diffuse">0.03839039 0.03839039 0.03839039 1</color>
</diffuse>
<specular>
<color sid="specular">0.8686131 0.8686131 0.8686131 1</color>
</specular>
<shininess>
<float sid="shininess">50</float>
</shininess>
<index_of_refraction>
<float sid="index_of_refraction">1</float>
</index_of_refraction>
</phong>
</technique>
</profile_COMMON>
</effect>
<effect id="Rear_Tire-effect">
<profile_COMMON>
<technique sid="common">
<phong>
<emission>
<color sid="emission">0 0 0 1</color>
</emission>
<ambient>
<color sid="ambient">0 0 0 1</color>
</ambient>
<diffuse>
<color sid="diffuse">0.05991891 0.05991891 0.05991891 1</color>
</diffuse>
<specular>
<color sid="specular">0.5 0.5 0.5 1</color>
</specular>
<shininess>
<float sid="shininess">50</float>
</shininess>
<index_of_refraction>
<float sid="index_of_refraction">1</float>
</index_of_refraction>
</phong>
</technique>
</profile_COMMON>
</effect>
<effect id="Struts-effect">
<profile_COMMON>
<technique sid="common">
<phong>
<emission>
<color sid="emission">0 0 0 1</color>
</emission>
<ambient>
<color sid="ambient">0 0 0 1</color>
</ambient>
<diffuse>
<color sid="diffuse">0.7330763 0.8 0.7494878 1</color>
</diffuse>
<specular>
<color sid="specular">1 0.847883 0.5898993 1</color>
</specular>
<shininess>
<float sid="shininess">50</float>
</shininess>
<index_of_refraction>
<float sid="index_of_refraction">1</float>
</index_of_refraction>
</phong>
</technique>
</profile_COMMON>
</effect>
<effect id="Guage_Cluster-effect">
<profile_COMMON>
<technique sid="common">
<phong>
<emission>
<color sid="emission">1.36 1.36 1.36 1</color>
</emission>
<ambient>
<color sid="ambient">0 0 0 1</color>
</ambient>
<diffuse>
<color sid="diffuse">0.1785824 0.3050608 0.3050608 1</color>
</diffuse>
<specular>
<color sid="specular">0.5 0.5 0.5 1</color>
</specular>
<shininess>
<float sid="shininess">50</float>
</shininess>
<index_of_refraction>
<float sid="index_of_refraction">1</float>
</index_of_refraction>
</phong>
</technique>
</profile_COMMON>
</effect>
<effect id="Bottom_Seat-effect">
<profile_COMMON>
<technique sid="common">
<phong>
<emission>
<color sid="emission">0 0 0 1</color>
</emission>
<ambient>
<color sid="ambient">0 0 0 1</color>
</ambient>
<diffuse>
<color sid="diffuse">0.08751046 0.09576203 0.1280227 1</color>
</diffuse>
<specular>
<color sid="specular">0.5 0.5 0.5 1</color>
</specular>
<shininess>
<float sid="shininess">53</float>
</shininess>
<index_of_refraction>
<float sid="index_of_refraction">1</float>
</index_of_refraction>
</phong>
</technique>
</profile_COMMON>
</effect>
<effect id="Interior_Paneling-effect">
<profile_COMMON>
<technique sid="common">
<phong>
<emission>
<color sid="emission">0.44 0.44 0.44 1</color>
</emission>
<ambient>
<color sid="ambient">0 0 0 1</color>
</ambient>
<diffuse>
<color sid="diffuse">0.1697846 0.2890454 0.2890454 1</color>
</diffuse>
<specular>
<color sid="specular">0.5 0.5 0.5 1</color>
</specular>
<shininess>
<float sid="shininess">50</float>
</shininess>
<index_of_refraction>
<float sid="index_of_refraction">1</float>
</index_of_refraction>
</phong>
</technique>
</profile_COMMON>
</effect>
<effect id="Joystick-effect">
<profile_COMMON>
<technique sid="common">
<phong>
<emission>
<color sid="emission">0 0 0 1</color>
</emission>
<ambient>
<color sid="ambient">0 0 0 1</color>
</ambient>
<diffuse>
<color sid="diffuse">0.64 0.5144143 0.3430829 1</color>
</diffuse>
<specular>
<color sid="specular">0.5 0.5 0.5 1</color>
</specular>
<shininess>
<float sid="shininess">50</float>
</shininess>
<index_of_refraction>
<float sid="index_of_refraction">1</float>
</index_of_refraction>
</phong>
</technique>
</profile_COMMON>
</effect>
<effect id="Guage-effect">
<profile_COMMON>
<technique sid="common">
<phong>
<emission>
<color sid="emission">0 0 0 1</color>
</emission>
<ambient>
<color sid="ambient">0 0 0 1</color>
</ambient>
<diffuse>
<color sid="diffuse">0.64 0.64 0.64 1</color>
</diffuse>
<specular>
<color sid="specular">0.5 0.5 0.5 1</color>
</specular>
<shininess>
<float sid="shininess">50</float>
</shininess>
<index_of_refraction>
<float sid="index_of_refraction">1</float>
</index_of_refraction>
</phong>
</technique>
</profile_COMMON>
</effect>
<effect id="Seat_Metal-effect">
<profile_COMMON>
<technique sid="common">
<phong>
<emission>
<color sid="emission">0 0 0 1</color>
</emission>
<ambient>
<color sid="ambient">0 0 0 1</color>
</ambient>
<diffuse>
<color sid="diffuse">0.04510145 0.04510145 0.04510145 1</color>
</diffuse>
<specular>
<color sid="specular">0.5 0.5 0.5 1</color>
</specular>
<shininess>
<float sid="shininess">50</float>
</shininess>
<index_of_refraction>
<float sid="index_of_refraction">1</float>
</index_of_refraction>
</phong>
</technique>
</profile_COMMON>
</effect>
<effect id="Rivets-effect">
<profile_COMMON>
<technique sid="common">
<phong>
<emission>
<color sid="emission">0 0 0 1</color>
</emission>
<ambient>
<color sid="ambient">0 0 0 1</color>
</ambient>
<diffuse>
<color sid="diffuse">0.257958 0.257958 0.257958 1</color>
</diffuse>
<specular>
<color sid="specular">0.7105263 0.7105263 0.7105263 1</color>
</specular>
<shininess>
<float sid="shininess">50</float>
</shininess>
<index_of_refraction>
<float sid="index_of_refraction">1</float>
</index_of_refraction>
</phong>
</technique>
</profile_COMMON>
</effect>
<effect id="Fin_Lights-effect">
<profile_COMMON>
<technique sid="common">
<phong>
<emission>
<color sid="emission">0 0 0 1</color>
</emission>
<ambient>
<color sid="ambient">0 0 0 1</color>
</ambient>
<diffuse>
<color sid="diffuse">0.1240817 0 5.27427e-5 1</color>
</diffuse>
<specular>
<color sid="specular">0.6571429 0 0.003383591 1</color>
</specular>
<shininess>
<float sid="shininess">50</float>
</shininess>
<transparent opaque="A_ONE">
<color>1 1 1 1</color>
</transparent>
<index_of_refraction>
<float sid="index_of_refraction">1</float>
</index_of_refraction>
</phong>
</technique>
</profile_COMMON>
</effect>
</library_effects>
<library_materials>
<material id="Rivet_Valence-material" name="Rivet_Valence">
<instance_effect url="#Rivet_Valence-effect"/>
</material>
<material id="Valence_Rivets-material" name="Valence_Rivets">
<instance_effect url="#Valence_Rivets-effect"/>
</material>
<material id="Body-material" name="Body">
<instance_effect url="#Body-effect"/>
</material>
<material id="BLOCK-material" name="BLOCK">
<instance_effect url="#BLOCK-effect"/>
</material>
<material id="Material-material" name="Material">
<instance_effect url="#Material-effect"/>
</material>
<material id="Propellor-material" name="Propellor">
<instance_effect url="#Propellor-effect"/>
</material>
<material id="Windshield-material" name="Windshield">
<instance_effect url="#Windshield-effect"/>
</material>
<material id="Tire-material" name="Tire">
<instance_effect url="#Tire-effect"/>
</material>
<material id="Rear_Tire-material" name="Rear_Tire">
<instance_effect url="#Rear_Tire-effect"/>
</material>
<material id="Struts-material" name="Struts">
<instance_effect url="#Struts-effect"/>
</material>
<material id="Guage_Cluster-material" name="Guage_Cluster">
<instance_effect url="#Guage_Cluster-effect"/>
</material>
<material id="Bottom_Seat-material" name="Bottom_Seat">
<instance_effect url="#Bottom_Seat-effect"/>
</material>
<material id="Interior_Paneling-material" name="Interior_Paneling">
<instance_effect url="#Interior_Paneling-effect"/>
</material>
<material id="Joystick-material" name="Joystick">
<instance_effect url="#Joystick-effect"/>
</material>
<material id="Guage-material" name="Guage">
<instance_effect url="#Guage-effect"/>
</material>
<material id="Seat_Metal-material" name="Seat_Metal">
<instance_effect url="#Seat_Metal-effect"/>
</material>
<material id="Rivets-material" name="Rivets">
<instance_effect url="#Rivets-effect"/>
</material>
<material id="Fin_Lights-material" name="Fin_Lights">
<instance_effect url="#Fin_Lights-effect"/>
</material>
</library_materials>
<library_geometries>
<geometry id="Cylinder_009-mesh" name="Cylinder.009">
<mesh>
<source id="Cylinder_009-mesh-positions">
<float_array id="Cylinder_009-mesh-positions-array" count="450">0 2.0846 1.117437 0.3587655 2.086005 1.060979 0.6907047 1.997843 0.9172134 0.95683 1.836848 0.716669 1.201041 1.393314 0.4735507 1.372517 -1.501764 0.4372169 1.340087 0.5302391 0.4118538 0 -2.141378 1.373107 1.343152 -1.874947 0.4380704 1.39022 -0.4114984 0.4352127 1.132943 -2.033697 0.8192668 0.8192848 -2.119726 1.123538 0.4310255 -2.139354 1.320623 1.388609 -1.133235 0.4383291 1.394267 -0.7185409 0.4382846 1.23863 -1.364355 0.7375142 0 1.794021 1.185902 0.3635355 1.79453 1.131086 0.7224897 1.600047 1.001061 0.9549797 1.395361 0.8476545 1.026295 1.276691 0.7929499 1.226452 0.5331372 0.6606928 1.1931 -1.489172 0.7959393 1.294723 -0.4285184 0.6548286 1.111999 -1.604071 0.8979442 0.8359475 -1.843439 1.13862 0.4379804 -1.966277 1.332309 0 -2.021566 1.397946 1.287864 -0.7079004 0.6768599 1.269768 -1.087524 0.7016715 0 2.086584 1.150263 0.3951112 2.087988 1.093806 0.7270504 1.999826 0.9500399 0.9931757 1.838831 0.7494956 1.237386 1.395297 0.5063772 1.376432 0.5322224 0.4446803 1.379497 -1.872964 0.4708969 1.408862 -1.499781 0.4700434 1.426565 -0.4095151 0.4680393 1.169289 -2.031714 0.8520933 0.8556305 -2.117743 1.156365 0.4673711 -2.13737 1.35345 0 -2.139394 1.405934 1.430613 -0.7165576 0.4711112 1.424955 -1.131252 0.4711556 0.3998811 1.796514 1.163913 0 1.796005 1.218729 0.7588353 1.602031 1.033887 0.9913253 1.397344 0.8804811 1.06264 1.278674 0.8257765 1.262798 0.5351206 0.6935193 1.229445 -1.487189 0.8287659 1.274976 -1.362372 0.7703408 1.331069 -0.426535 0.6876552 1.148345 -1.602088 0.9307708 0.8722931 -1.841456 1.171447 0.4743261 -1.964293 1.365136 0 -2.019583 1.430773 1.324209 -0.7059171 0.7096865 1.306113 -1.08554 0.734498 0 2.0846 1.117437 0.3587655 2.086005 1.060979 0.6907047 1.997843 0.9172134 0.95683 1.836848 0.716669 1.201041 1.393314 0.4735507 1.340087 0.5302391 0.4118538 1.343152 -1.874947 0.4380704 1.372517 -1.501764 0.4372169 1.39022 -0.4114984 0.4352127 1.132943 -2.033697 0.8192668 0.8192848 -2.119726 1.123538 0.4310255 -2.139354 1.320623 0 -2.141378 1.373107 1.394267 -0.7185409 0.4382846 1.388609 -1.133235 0.4383291 0.3635355 1.79453 1.131086 0 1.794021 1.185902 0.7224897 1.600047 1.001061 0.9549797 1.395361 0.8476545 1.026295 1.276691 0.7929499 1.226452 0.5331372 0.6606928 1.1931 -1.489172 0.7959393 1.23863 -1.364355 0.7375142 1.294723 -0.4285184 0.6548286 1.111999 -1.604071 0.8979442 0.8359475 -1.843439 1.13862 0.4379804 -1.966277 1.332309 0 -2.021566 1.397946 1.287864 -0.7079004 0.6768599 1.269768 -1.087524 0.7016715 0 2.086584 1.150263 0.3951112 2.087988 1.093806 0.7270504 1.999826 0.9500399 0.9931757 1.838831 0.7494956 1.237386 1.395297 0.5063772 1.376432 0.5322224 0.4446803 1.379497 -1.872964 0.4708969 1.408862 -1.499781 0.4700434 1.426565 -0.4095151 0.4680393 1.169289 -2.031714 0.8520933 0.8556305 -2.117743 1.156365 0.4673711 -2.13737 1.35345 0 -2.139394 1.405934 1.430613 -0.7165576 0.4711112 1.424955 -1.131252 0.4711556 0.3998811 1.796514 1.163913 0 1.796005 1.218729 0.7588353 1.602031 1.033887 0.9913253 1.397344 0.8804811 1.06264 1.278674 0.8257765 1.262798 0.5351206 0.6935193 1.229445 -1.487189 0.8287659 1.274976 -1.362372 0.7703408 1.331069 -0.426535 0.6876552 1.148345 -1.602088 0.9307708 0.8722931 -1.841456 1.171447 0.4743261 -1.964293 1.365136 0 -2.019583 1.430773 1.324209 -0.7059171 0.7096865 1.306113 -1.08554 0.734498 1.404791 -1.495602 0.4791752 1.374934 -1.861233 0.4817794 1.421341 -1.129862 0.4791636 0.3952562 2.079125 1.095938 0.7280169 1.987729 0.9525896 0 2.077748 1.152345 0.9931194 1.825406 0.7534787 1.232073 1.391751 0.5160899 1.372977 0.5323106 0.4522473 1.423661 -0.4100326 0.4747176 1.168652 -2.018649 0.8544859 1.427377 -0.716234 0.4783661 0.8561372 -2.109341 1.156824 0.4675826 -2.132107 1.353805 0 -2.135751 1.406689 0.986844 1.838486 0.7437769 0.7207187 1.99948 0.9443213 1.402531 -1.500126 0.4643248 1.418623 -1.131597 0.4654369 0.3887794 2.087643 1.088087 0 2.086238 1.144544 1.424281 -0.7169031 0.4653925 1.420234 -0.4098606 0.4623206 0.4610394 -2.137716 1.347731 0.8492988 -2.118088 1.150646 1.162957 -2.032059 0.8463747 1.373166 -1.873309 0.4651783 1.231055 1.394952 0.5006586 0 -2.13974 1.400215 1.3701 0.5318769 0.4389617</float_array>
<technique_common>
<accessor source="#Cylinder_009-mesh-positions-array" count="150" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="Cylinder_009-mesh-normals">
<float_array id="Cylinder_009-mesh-normals-array" count="450">0.9005363 -0.4345964 -0.01266551 0.1790881 -0.01779282 0.9836723 0.9617432 -0.2512624 -0.1091662 0.9802126 0.01593095 -0.197306 0.2008145 0.00213629 0.979627 0.1998403 0.02591085 0.9794859 0.3860381 0.7190948 0.5778211 0.1462789 0.4598948 0.875842 0.9775483 -0.09582906 -0.1876602 0.9769987 -0.05044758 -0.2071922 0.6287971 -0.6900501 0.3583927 0.8029312 -0.5819107 0.1291575 0.3255198 -0.758773 0.5641814 0.3193231 0.7335001 0.6000088 0.1660856 -0.7428991 0.6484726 0.1947144 0.7378395 0.646281 0.2852924 0.8006073 0.5269121 0.120887 -0.6287285 0.7681712 0.08209705 0.8296076 0.5522782 0.204171 -0.5861446 0.7840592 0.1659924 -0.6474896 0.7437768 0.6438559 0.7328794 0.2198576 0.1704798 -0.5007885 0.8486151 0.8079132 0.5864024 0.05838382 0.1166434 -0.2239174 0.9676029 0.9716321 0.1667861 -0.1676712 0.9107851 0.4088661 -0.05743712 0.1747501 -0.005981624 0.9845947 0.1936716 -0.009216606 0.9810232 -0.9799308 0.06479156 0.1885151 -0.3341231 -0.4227201 -0.8424189 -0.2899972 -0.2035962 -0.9351205 -0.2369469 -0.04126119 -0.9706461 -0.9789296 0.0032655 0.2041725 -0.2118009 -0.06235003 -0.9753219 -0.6706294 0.6801209 -0.296128 -0.3008582 -0.5140042 -0.8032957 -0.2238305 -0.07727551 -0.9715598 -0.2716536 -0.5238053 -0.8073615 -0.4740242 0.709724 -0.5211459 -0.1261966 -0.5823965 -0.8030497 -0.2335632 0.6952878 -0.679723 -0.002319455 -0.5937886 -0.8046178 -0.08438575 -0.7724123 -0.6294905 -0.09949254 0.395895 -0.9128902 -0.1135005 0.563993 -0.8179424 -0.5216393 -0.7729063 -0.3612593 -0.2018213 0.3978745 -0.894966 -0.7496483 -0.6566252 -0.08289068 -0.2949085 0.3388563 -0.8934234 -0.9154637 -0.3639148 0.1717333 -0.2623744 0.1709691 -0.9496995 -0.2625601 0.05804824 -0.9631681 -0.9781454 -0.0305193 0.2056699 -0.9794611 0.02942073 0.1994752 -0.8528234 0.4833907 0.1975496 -0.2648767 -0.8091574 -0.5245042 -0.07944172 0.7338977 -0.6745986 0.08487391 0.6850345 0.7235497 -0.9704581 -0.1071538 0.2161694 -0.1790881 0.01779282 -0.9836723 -0.9005363 0.4345964 0.01266551 -0.9617432 0.2512624 0.1091662 -0.9802126 -0.01593095 0.197306 -0.2008145 -0.00213629 -0.979627 -0.9769987 0.05044758 0.2071922 -0.3860381 -0.7190948 -0.5778211 -0.8029312 0.5819107 -0.1291575 -0.9775483 0.09582906 0.1876602 -0.6287971 0.6900501 -0.3583927 -0.3193231 -0.7335001 -0.6000088 -0.3255198 0.758773 -0.5641814 -0.1946524 -0.7378053 -0.6463388 -0.1660856 0.7428991 -0.6484726 -0.120887 0.6287285 -0.7681712 -0.2852924 -0.8006073 -0.5269121 -0.08209705 -0.8296076 -0.5522782 -0.204171 0.5861446 -0.7840592 -0.6438559 -0.7328794 -0.2198576 -0.1704798 0.5007885 -0.8486151 -0.8079132 -0.5864024 -0.05838382 -0.1166434 0.2239174 -0.9676029 -0.9107851 -0.4088661 0.05743712 -0.9716321 -0.1667861 0.1676712 -0.1998403 -0.02591085 -0.9794859 -0.1936716 0.009216606 -0.9810232 0.8887795 -0.07379537 0.4523553 0.9791433 -0.061679 -0.1935824 0.8997706 -0.05801719 0.4324893 0.9150592 0.03814905 0.4015114 0.9789655 -0.001464903 -0.204021 0.9780472 0.0295425 -0.2062789 0.6778411 -0.6745449 0.2924391 0.8528234 -0.4833907 -0.1975496 0.908973 -0.02758902 0.4159412 0.9133731 1.52595e-4 0.4071236 0.587089 -0.0795623 0.8056032 0.799467 -0.07580834 0.5959075 0.2949382 -0.08133381 0.9520485 0.4738736 -0.709666 0.5213618 0.1109077 -0.2012759 0.9732356 0.2250455 -0.6920438 0.6858791 0.2898378 0.2282811 0.9294524 0.08704102 0.7716193 0.6301013 0.1352593 0.2285553 0.9640889 0.5218235 0.7729385 0.3609244 0.2648791 0.8091339 0.5245393 0.5556624 0.2135731 0.8035085 0.7497639 0.6566805 0.08139455 0.7504626 0.1842738 0.6347039 0.9192986 0.3536562 -0.1726775 0.84494 0.1465507 0.5143922 0.9704552 0.1075503 -0.2159856 0.9065031 0.08816909 0.4128903 0.9792862 -0.02841293 -0.2004778 0.003112912 0.5934731 0.8048478 0.1262266 0.5823943 0.8030467 0.4020285 0.7723475 -0.4917852 0.6707007 -0.01812869 -0.7415065 0.6709339 -0.04077363 -0.7403954 0.2715927 0.5238361 0.807362 0.3008656 0.5140169 0.8032849 0.07300198 0.9873886 -0.14048 0.6699536 0.009308278 -0.7423447 0.6703798 -0.003906428 -0.7420079 0.2627375 -0.05758923 0.9631472 0.1049859 -0.9928801 -0.05627733 0.03091537 -0.9991814 0.02609342 0.2623744 -0.1709691 0.9496995 0.2136046 -0.960473 -0.1785074 0.2899907 0.2035611 0.9351301 0.2238243 0.07724291 0.9715638 0.2017951 -0.3979135 0.8949545 0.5594797 -0.5882289 -0.5839257 0.2118009 0.06235003 0.9753219 0.236983 0.04123169 0.9706385 0.6029374 0.3976957 -0.6915957 0.1135005 -0.563993 0.8179424 0.2149479 0.9312378 -0.2942678 0.3341233 0.4225372 0.8425107 0.07904493 -0.7337446 0.6748118 0.01153618 -0.9981281 0.06006163 0.2947272 -0.3389194 0.8934594 0.6650148 0.08807855 -0.7416182 0.09949254 -0.395895 0.9128902 -0.1747501 0.005981624 -0.9845947 -0.08487391 -0.6850345 -0.7235497 -0.1462789 -0.4598948 -0.875842 -0.166056 0.6475301 -0.7437273 -0.01275688 0.9981206 -0.05993908</float_array>
<technique_common>
<accessor source="#Cylinder_009-mesh-normals-array" count="150" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="Cylinder_009-mesh-vertices">
<input semantic="POSITION" source="#Cylinder_009-mesh-positions"/>
</vertices>
<polylist material="Rivet_Valence-material" count="280">
<input semantic="VERTEX" source="#Cylinder_009-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#Cylinder_009-mesh-normals" offset="1"/>
<vcount>3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 </vcount>
<p>22 0 5 1 15 2 23 3 14 4 9 5 22 0 10 6 8 7 29 8 14 4 28 9 25 10 10 6 24 11 26 12 11 13 25 10 27 14 12 15 26 12 17 16 0 17 16 18 17 16 2 19 1 20 18 21 3 22 2 19 19 23 4 24 3 22 21 25 4 24 20 26 21 25 9 5 6 27 15 2 13 28 29 8 37 29 51 30 52 31 53 32 43 33 58 34 51 30 39 35 54 36 43 33 59 37 58 34 39 35 55 38 54 36 40 39 56 40 55 38 41 41 57 42 56 40 30 43 45 44 46 45 45 44 32 46 47 47 47 47 33 48 48 49 48 49 34 50 49 51 34 50 50 52 49 51 50 52 38 53 53 32 44 54 52 31 59 37 26 12 57 42 27 14 3 22 32 46 2 19 37 29 13 28 5 1 24 11 55 38 25 10 1 20 30 43 0 17 43 33 9 5 14 4 50 52 23 3 21 25 41 41 11 13 12 15 49 51 21 25 20 26 10 6 36 55 8 7 29 8 52 31 15 2 47 47 19 23 18 21 36 55 5 1 8 7 23 3 58 34 28 9 4 24 33 48 3 22 46 45 17 16 16 18 25 10 56 40 26 12 2 19 31 56 1 20 44 54 14 4 13 28 51 30 24 11 22 0 42 57 12 15 7 58 52 31 22 0 15 2 40 39 10 6 11 13 48 49 20 26 19 23 9 5 35 59 6 27 28 9 59 37 29 8 6 27 34 50 4 24 45 44 18 21 17 16 67 60 81 61 82 62 83 63 73 64 88 65 81 61 69 66 84 67 73 64 89 68 88 65 69 66 85 69 84 67 70 70 86 71 85 69 71 72 87 73 86 71 60 74 75 75 76 76 75 75 62 77 77 78 77 78 63 79 78 80 78 80 64 81 79 82 64 81 80 83 79 82 80 83 68 84 83 63 74 85 82 62 89 68 121 86 97 87 120 88 129 89 103 90 98 91 121 86 99 92 96 93 122 94 103 90 131 95 132 96 99 92 130 97 133 98 100 99 132 96 134 100 101 101 133 98 123 102 90 103 125 104 123 102 92 105 91 106 124 107 93 108 92 105 126 109 94 110 93 108 127 111 95 112 94 110 128 113 98 91 95 112 120 88 104 114 122 94 86 71 117 115 116 116 135 117 92 105 93 108 138 118 97 87 137 119 84 67 115 120 114 121 139 122 90 103 91 106 142 123 103 90 141 124 83 63 110 125 80 83 144 126 101 101 143 127 80 83 109 128 79 82 145 129 96 93 99 92 89 68 112 130 119 131 78 80 107 132 77 78 137 119 96 93 146 133 83 63 118 134 113 135 147 136 93 108 94 110 75 75 106 137 76 76 85 69 116 116 115 120 136 138 91 106 92 105 141 124 104 114 138 118 84 67 111 139 81 61 143 127 102 140 148 141 81 61 112 130 82 62 145 129 100 99 144 126 79 82 108 142 78 80 142 123 95 112 98 91 88 65 119 131 118 134 149 143 94 110 95 112 77 78 105 144 75 75 112 130 122 94 119 131 110 125 129 89 128 113 110 125 127 111 109 128 108 142 127 111 126 109 107 132 126 109 124 107 105 144 124 107 123 102 105 144 125 104 106 137 117 115 133 98 116 116 116 116 132 96 115 120 115 120 130 97 114 121 119 131 131 95 118 134 111 139 130 97 121 86 113 135 131 95 129 89 111 139 120 88 112 130 65 145 147 136 149 143 68 84 149 143 142 123 69 66 144 126 70 70 71 72 148 141 72 146 73 64 138 118 74 85 62 77 139 122 136 138 64 81 135 117 147 136 67 60 146 133 66 147 69 66 146 133 145 129 70 70 143 127 71 72 68 84 141 124 73 64 61 148 140 149 139 122 74 85 137 119 67 60 63 79 136 138 135 117 22 0 8 7 5 1 23 3 28 9 14 4 22 0 24 11 10 6 29 8 13 28 14 4 25 10 11 13 10 6 26 12 12 15 11 13 27 14 7 58 12 15 17 16 1 20 0 17 17 16 18 21 2 19 18 21 19 23 3 22 19 23 20 26 4 24 21 25 6 27 4 24 21 25 23 3 9 5 15 2 5 1 13 28 37 29 36 55 51 30 53 32 38 53 43 33 51 30 36 55 39 35 43 33 44 54 59 37 39 35 40 39 55 38 40 39 41 41 56 40 41 41 42 57 57 42 30 43 31 56 45 44 45 44 31 56 32 46 47 47 32 46 33 48 48 49 33 48 34 50 34 50 35 59 50 52 50 52 35 59 38 53 44 54 37 29 52 31 26 12 56 40 57 42 3 22 33 48 32 46 37 29 44 54 13 28 24 11 54 36 55 38 1 20 31 56 30 43 43 33 38 53 9 5 50 52 53 32 23 3 41 41 40 39 11 13 49 51 50 52 21 25 10 6 39 35 36 55 29 8 59 37 52 31 47 47 48 49 19 23 36 55 37 29 5 1 23 3 53 32 58 34 4 24 34 50 33 48 46 45 45 44 17 16 25 10 55 38 56 40 2 19 32 46 31 56 44 54 43 33 14 4 51 30 54 36 24 11 42 57 41 41 12 15 52 31 51 30 22 0 40 39 39 35 10 6 48 49 49 51 20 26 9 5 38 53 35 59 28 9 58 34 59 37 6 27 35 59 34 50 45 44 47 47 18 21 67 60 66 147 81 61 83 63 68 84 73 64 81 61 66 147 69 66 73 64 74 85 89 68 69 66 70 70 85 69 70 70 71 72 86 71 71 72 72 146 87 73 60 74 61 148 75 75 75 75 61 148 62 77 77 78 62 77 63 79 78 80 63 79 64 81 64 81 65 145 80 83 80 83 65 145 68 84 74 85 67 60 82 62 121 86 96 93 97 87 129 89 131 95 103 90 121 86 130 97 99 92 122 94 104 114 103 90 132 96 100 99 99 92 133 98 101 101 100 99 134 100 102 140 101 101 123 102 91 106 90 103 123 102 124 107 92 105 124 107 126 109 93 108 126 109 127 111 94 110 127 111 128 113 95 112 128 113 129 89 98 91 120 88 97 87 104 114 86 71 87 73 117 115 135 117 136 138 92 105 138 118 104 114 97 87 84 67 85 69 115 120 139 122 140 149 90 103 142 123 98 91 103 90 83 63 113 135 110 125 144 126 100 99 101 101 80 83 110 125 109 128 145 129 146 133 96 93 89 68 82 62 112 130 78 80 108 142 107 132 137 119 97 87 96 93 83 63 88 65 118 134 147 136 135 117 93 108 75 75 105 144 106 137 85 69 86 71 116 116 136 138 139 122 91 106 141 124 103 90 104 114 84 67 114 121 111 139 143 127 101 101 102 140 81 61 111 139 112 130 145 129 99 92 100 99 79 82 109 128 108 142 142 123 149 143 95 112 88 65 89 68 119 131 149 143 147 136 94 110 77 78 107 132 105 144 112 130 120 88 122 94 110 125 113 135 129 89 110 125 128 113 127 111 108 142 109 128 127 111 107 132 108 142 126 109 105 144 107 132 124 107 105 144 123 102 125 104 117 115 134 100 133 98 116 116 133 98 132 96 115 120 132 96 130 97 119 131 122 94 131 95 111 139 114 121 130 97 113 135 118 134 131 95 111 139 121 86 120 88 65 145 64 81 147 136 68 84 65 145 149 143 69 66 145 129 144 126 71 72 143 127 148 141 73 64 141 124 138 118 62 77 61 148 139 122 64 81 63 79 135 117 67 60 137 119 146 133 69 66 66 147 146 133 70 70 144 126 143 127 68 84 142 123 141 124 61 148 60 74 140 149 74 85 138 118 137 119 63 79 62 77 136 138</p>
</polylist>
</mesh>
</geometry>
<geometry id="Circle_005-mesh" name="Circle.005">
<mesh>
<source id="Circle_005-mesh-positions">
<float_array id="Circle_005-mesh-positions-array" count="162">-1.52777e-5 0.06596434 0.00458765 -0.05710369 0.0333414 -1.14441e-4 -0.05710369 -0.03190433 -0.009518384 -1.52719e-5 -0.06452727 -0.01422059 0.05707311 -0.03190433 -0.009518384 0.05707311 0.0333414 -1.14441e-4 -1.52777e-5 0.0550487 0.003044843 -0.04755657 0.02788144 -8.70824e-4 -0.04755657 -0.02645301 -0.008702158 -1.52729e-5 -0.05362027 -0.01261794 0.04752606 -0.02645301 -0.008702158 0.04752606 0.02788144 -8.70824e-4 -0.03014951 0.01555544 0.01450932 6.34968e-5 0.03282052 0.01699769 0.02357196 0.01891982 0.0152322 6.3504e-5 -0.03623974 0.007043838 0.03027653 -0.01897466 0.009532332 0.03053867 0.009713888 0.01323592 -0.06266433 0.03617829 0.002707362 -1.5278e-5 0.0719788 0.007867336 -0.06266433 -0.03542262 -0.007612824 -1.52713e-5 -0.07122313 -0.01277279 0.06263375 -0.03542262 -0.007612824 0.06263375 0.03617829 0.002707362 -0.03000497 -0.01276481 0.01003575 -0.02415144 -0.02209985 0.008775472 -0.02372479 -0.01534301 0.01005566 -1.25429e-4 0.04074817 0.01639175 -0.03705614 0.01964432 0.01335012 -0.03705614 -0.02256345 0.007266402 -1.25421e-4 -0.04366737 0.004224777 0.03680533 -0.02256345 0.007266521 0.03680533 0.01964426 0.01335012 -0.0200541 -0.02163577 0.009148716 -0.02746784 -0.008926153 0.0109806 -0.02912724 -0.01723212 0.008992671 0.02026975 0.01806461 0.01487088 0.02768594 0.005350768 0.01303839 0.02922588 0.01522099 0.01343381 0.02418899 0.01134568 0.01390254 -0.02537763 -0.01602107 0.01017594 0.02622801 0.01304352 0.01415753 -0.01958096 -0.02110975 0.003251433 -0.02325165 -0.01481699 0.004158616 0.02074289 0.01859062 0.008973717 0.02466213 0.01187169 0.008005261 -0.02699464 -0.008400201 0.005083441 0.02815908 0.005876779 0.007141232 0.02080959 0.01787024 0.01418042 -0.01951426 -0.02183014 0.008458137 -0.02692794 -0.009120523 0.01029014 0.02822577 0.005156457 0.01234793 0.02472883 0.01115137 0.01321196 -0.02318495 -0.01553732 0.0093652</float_array>
<technique_common>
<accessor source="#Circle_005-mesh-positions-array" count="54" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="Circle_005-mesh-normals">
<float_array id="Circle_005-mesh-normals-array" count="162">0 0.9899312 0.1415495 0.8660254 -0.4947365 -0.0723595 -0.8660292 -0.4947387 -0.07229876 0.8612202 0.4770755 0.1752105 0.8660752 0.4949612 0.07019424 0.8612065 -0.5071594 0.0333569 0 -0.9992941 -0.03756928 0 -0.9896234 -0.1436855 -0.8612199 -0.5071368 0.03335738 -0.8660941 0.494924 0.0702238 -0.8612202 0.4770755 0.1752105 0 0.9692347 0.2461388 5.49338e-4 0.9993976 0.03469979 -0.8607641 0.5076872 -0.03659254 -0.8607549 -0.4767051 -0.1784745 5.49349e-4 -0.9685328 -0.2488856 0.8611246 -0.4764019 -0.1774986 0.8611388 0.5071124 -0.03573834 -0.7141204 -0.5231919 0.4650831 0.1441117 -0.1059017 0.9838784 0.1260417 -0.1179543 0.9849874 0.2735458 0.01757919 0.9616983 -0.001312315 0.2000525 0.9797844 0.2910646 -0.2989081 0.90881 -0.002899289 -0.465357 0.8851184 -0.270429 -0.2891677 0.9182866 -0.2901807 0.02853584 0.9565464 -0.1391658 -0.1700203 0.9755644 -0.01123088 -0.28822 0.9574984 -0.610727 0.004242181 0.79183 0.191904 0.138404 0.9716055 0.1189921 -0.2140576 0.9695464 -3.66233e-4 0.001983702 0.999998 -0.1323 -0.07941055 0.9880236 0.4722229 0.1516802 0.868331 -0.08948141 -0.246959 0.9648857 0.1390165 -0.2035348 0.969148 0.07577919 -0.06753897 0.9948347 -0.03122115 -0.4659985 0.8842345 -0.02725362 -0.1237858 0.9919347 -0.1330345 -0.2243183 0.9653928 0.1514034 -0.09311264 0.9840767 -0.2086583 -0.8616428 0.4626375 0.7919117 -0.29039 0.5371682 0.6166095 0.2521495 0.7457972 0.8915061 -0.2368926 0.3861331 -0.4201307 -0.890466 -0.1748154 0.138527 0.9885505 -0.05981779 -0.7847679 0.1304996 0.6058955 0.2175109 0.699197 0.681038 -0.8449058 -0.4514771 -0.2868846 -0.9130679 0.3039694 -0.2718634 -0.6081232 -0.4490883 0.6546038 0.844891 0.4514691 0.2869406</float_array>
<technique_common>
<accessor source="#Circle_005-mesh-normals-array" count="54" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="Circle_005-mesh-vertices">
<input semantic="POSITION" source="#Circle_005-mesh-positions"/>
</vertices>
<polylist material="Valence_Rivets-material" count="104">
<input semantic="VERTEX" source="#Circle_005-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#Circle_005-mesh-normals" offset="1"/>
<vcount>3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 </vcount>
<p>0 0 4 1 2 2 0 0 11 3 5 4 5 4 10 5 4 1 4 1 9 6 3 7 2 2 9 6 8 8 1 9 8 8 7 10 0 0 7 10 6 11 19 12 7 10 18 13 18 13 8 8 20 14 20 14 9 6 21 15 21 15 10 5 22 16 23 17 10 5 11 3 19 12 11 3 6 11 39 18 17 19 41 20 32 21 19 12 27 22 31 23 23 17 32 21 31 23 21 15 22 16 30 24 20 14 21 15 29 25 18 13 20 14 27 22 18 13 28 26 24 27 28 26 29 25 15 28 37 29 33 30 34 31 13 32 12 33 17 19 31 23 32 21 26 34 25 35 33 30 27 22 12 33 13 32 25 35 29 25 30 24 15 28 31 23 16 36 39 18 14 37 36 38 14 37 32 21 27 22 40 39 35 40 25 35 26 34 24 27 40 39 41 20 38 41 14 37 44 42 46 43 43 44 50 45 44 42 48 46 49 47 47 48 42 49 52 50 47 48 51 51 50 45 43 44 46 43 48 46 45 52 52 50 36 38 50 45 48 46 37 29 49 47 33 30 37 29 52 50 51 51 26 34 50 45 34 31 39 18 48 46 52 50 33 30 53 53 26 34 53 53 42 49 43 44 2 2 1 9 0 0 0 0 5 4 4 1 4 1 3 7 2 2 0 0 6 11 11 3 5 4 11 3 10 5 4 1 10 5 9 6 2 2 3 7 9 6 1 9 2 2 8 8 0 0 1 9 7 10 19 12 6 11 7 10 18 13 7 10 8 8 20 14 8 8 9 6 21 15 9 6 10 5 23 17 22 16 10 5 19 12 23 17 11 3 39 18 37 29 17 19 32 21 23 17 19 12 31 23 22 16 23 17 31 23 30 24 21 15 30 24 29 25 20 14 29 25 28 26 18 13 27 22 19 12 18 13 29 25 35 40 24 27 24 27 34 31 28 26 12 33 28 26 34 31 15 28 16 36 37 29 34 31 36 38 13 32 32 21 38 41 17 19 17 19 37 29 31 23 16 36 31 23 37 29 26 34 40 39 25 35 27 22 28 26 12 33 30 24 15 28 33 30 25 35 35 40 29 25 30 24 33 30 25 35 15 28 30 24 31 23 39 18 41 20 14 37 27 22 13 32 14 37 14 37 38 41 32 21 13 32 36 38 14 37 40 39 24 27 35 40 26 34 34 31 24 27 41 20 17 19 38 41 43 44 42 49 45 52 45 52 44 42 43 44 42 49 47 48 45 52 50 45 46 43 44 42 49 47 51 51 47 48 52 50 45 52 47 48 50 45 53 53 43 44 48 46 44 42 45 52 36 38 34 31 50 45 37 29 51 51 49 47 37 29 39 18 52 50 26 34 53 53 50 45 39 18 36 38 48 46 33 30 49 47 53 53 53 53 49 47 42 49</p>
</polylist>
</mesh>
</geometry>
<geometry id="Cylinder_010-mesh" name="Cylinder.010">
<mesh>
<source id="Cylinder_010-mesh-positions">
<float_array id="Cylinder_010-mesh-positions-array" count="90">0 2.0846 1.136801 0.3587655 2.086005 1.080343 0.6907047 1.997843 0.9365773 0.95683 1.836848 0.7360329 1.201041 1.393314 0.4929146 1.391229 -1.395765 0.4434151 1.340087 0.8079888 0.436559 0 -2.141378 1.392471 1.252539 -1.95716 0.6649969 1.381413 0.2073077 0.4440688 0.9698598 -2.055109 1.035353 0.7257172 -2.124456 1.190398 0.4310255 -2.139354 1.339987 1.40372 -0.863523 0.4489773 1.400693 -0.3737626 0.4429311 1.256704 -1.276401 0.7477427 0 1.794021 1.205266 0.3635355 1.79453 1.15045 0.7224897 1.600047 1.020425 0.9549797 1.395361 0.8670184 1.026295 1.276691 0.8123138 1.226452 0.8108869 0.685398 1.210379 -1.493467 0.8153032 1.277888 0.1991039 0.6766194 1.011227 -1.686909 1.058597 0.7400404 -1.873042 1.204661 0.4379804 -1.966277 1.351673 0 -2.021566 1.41731 1.298284 -0.3757652 0.6743395 1.291241 -0.8359355 0.6997548</float_array>
<technique_common>
<accessor source="#Cylinder_010-mesh-positions-array" count="30" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="Cylinder_010-mesh-normals">
<float_array id="Cylinder_010-mesh-normals-array" count="90">0.8747065 -0.07712161 0.4784776 0.9069316 -0.04321479 0.4190557 0.9076414 -0.04245221 0.4175944 0.9116122 0.0491361 0.4081044 0.9137966 0.01983726 0.4056876 0.9118385 0.04879939 0.4076386 0.7331224 -0.1192979 0.6695518 0.8435018 -0.09848684 0.5280202 0.9123112 -0.008209645 0.4094154 0.9142255 0.01937949 0.4047422 0.5087887 -0.08896398 0.8562824 0.6613481 -0.1119744 0.7416742 0.3293881 -0.0763272 0.9411045 0.4981987 -0.07767182 0.863577 0.1282427 -0.1718245 0.9767447 0.3021687 -0.08780318 0.9492022 0.3102549 0.2262059 0.9233487 0.1472226 0.229776 0.962044 0.1448726 0.2269071 0.9630811 0.53202 0.2147063 0.819058 0.290086 0.2282844 0.9293742 0.5899702 0.2136662 0.7786411 0.7208956 0.1922714 0.6658388 0.7730519 0.2001755 0.6019306 0.8365064 0.1902885 0.5138553 0.8903042 0.1363595 0.4344704 0.8166947 0.2280702 0.5300886 0.9041661 0.1180488 0.4105462 0.9119198 -0.008881092 0.4102724 0.1192992 -0.2015482 0.9721863</float_array>
<technique_common>
<accessor source="#Cylinder_010-mesh-normals-array" count="30" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="Cylinder_010-mesh-vertices">
<input semantic="POSITION" source="#Cylinder_010-mesh-positions"/>
</vertices>
<polylist count="28">
<input semantic="VERTEX" source="#Cylinder_010-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#Cylinder_010-mesh-normals" offset="1"/>
<vcount>3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 </vcount>
<p>22 0 5 1 15 2 23 3 14 4 9 5 24 6 8 7 22 0 29 8 14 4 28 9 25 10 10 11 24 6 26 12 11 13 25 10 27 14 12 15 26 12 17 16 0 17 16 18 17 16 2 19 1 20 18 21 3 22 2 19 19 23 4 24 3 22 21 25 4 24 20 26 23 3 6 27 21 25 15 2 13 28 29 8 22 0 8 7 5 1 23 3 28 9 14 4 24 6 10 11 8 7 29 8 13 28 14 4 25 10 11 13 10 11 26 12 12 15 11 13 27 14 7 29 12 15 17 16 1 20 0 17 17 16 18 21 2 19 18 21 19 23 3 22 19 23 20 26 4 24 21 25 6 27 4 24 23 3 9 5 6 27 15 2 5 1 13 28</p>
</polylist>
</mesh>
</geometry>
<geometry id="Cylinder_003-mesh" name="Cylinder.003">
<mesh>
<source id="Cylinder_003-mesh-positions">
<float_array id="Cylinder_003-mesh-positions-array" count="2490">0.3587655 2.086005 1.080343 0.6907047 1.997843 0.9365773 0.95683 1.836848 0.7360329 1.201041 1.393314 0.4929146 1.285992 1.399285 -0.1562968 1.281678 1.394262 -0.4385616 1.040047 1.463935 -0.7948942 0.7524258 1.462728 -1.077369 0.3848599 1.458153 -1.260249 0.187062 2.994439 0.9786981 0.06594324 3.644142 0.676146 0.3764864 3.668011 0.5603493 0.5229755 3.669898 0.422076 0.6219125 3.672357 0.2443113 0.6623755 3.670759 0.07258611 0.6421101 3.654928 -0.1813192 0.5496894 3.68072 -0.3557712 0.4038804 3.682911 -0.5109021 0.2149477 3.684385 -0.6124117 1.372517 -1.501764 0.4565808 1.444039 -1.502636 0.01055276 1.37422 -1.503514 -0.435857 1.169798 -1.50431 -0.838927 0.8667702 -1.482406 -1.148318 0.4168198 -1.482635 -1.375601 1.340087 0.5302391 0.4312177 1.410144 0.5383209 0.03118503 1.342189 0.5404893 -0.4461653 1.142713 0.5279597 -0.8340502 0.8311363 0.5273889 -1.146971 0.433526 0.5270019 -1.349658 0.3421099 2.462193 0.9542101 0.8558543 2.461775 -0.6641896 0.6208468 2.528434 0.8127313 0.8529484 2.514294 0.5833461 1.064515 2.46395 -0.04219049 1.00914 2.462812 -0.3700581 0.2792797 2.445732 -1.062523 1.013352 2.457364 0.3033142 0.4364877 -1.825826 1.36111 0.8417678 -1.709771 1.165724 1.114518 -1.474708 0.9268032 1.343152 -1.874947 0.4574342 1.414218 -1.876126 0.02095031 1.346889 -1.877329 -0.4165093 1.147423 -1.878433 -0.8120384 0.8683859 -1.899625 -1.097525 0.4215756 -1.901494 -1.332281 1.39022 -0.4114984 0.4545766 1.462727 -0.3354709 0.1888271 1.388418 -0.4869514 -0.504267 1.185103 -0.4137544 -0.8576356 0.8621228 -0.4143133 -1.181913 0.4547265 -0.4146737 -1.390505 0.3723159 1.620322 1.186768 0.7359707 1.411129 1.05412 0.8848261 1.282975 0.964724 1.151015 0.5347614 0.8055095 1.178527 -1.333983 0.8557118 1.22755 -0.4300619 0.7941637 1.132943 -2.033697 0.8386307 0.8192848 -2.119726 1.142902 0.4310255 -2.139354 1.339987 0.9578059 1.172938 0.9185524 1.388609 -1.133235 0.4576929 1.15333 -1.396108 0.8835713 0.8659761 -1.151482 -1.171941 1.460949 -1.012774 -0.01532959 1.201702 -1.082135 0.8354246 0.429289 -1.151701 -1.391515 1.390289 -1.13441 -0.2824455 1.183483 -1.135675 -0.8529387 1.220048 -0.7062751 0.8140158 0.4338421 -0.705174 -1.399948 0.8744583 -0.7047604 -1.176531 1.188891 -0.7208709 -0.8586286 1.396382 -0.7939943 -0.4786066 1.467126 -0.7045717 0.19946 1.394267 -0.7185409 0.4576485 0.4310255 -2.139354 1.339987 0.4459341 -1.138648 -1.38641 0.8520873 -1.138502 -1.182052 0.4508236 -0.7191094 -1.39399 0.8593684 -0.7187399 -1.186846 0.9403616 2.083336 -0.7251888 0.6417399 2.362447 0.8553509 1.168077 2.08517 -0.04117923 0.3379124 2.394917 1.000226 0.8877368 2.30202 0.63578 1.108227 2.084203 -0.4014042 0.2899886 2.059712 -1.168684 1.102287 2.048614 0.3790326 0.2773104 3.029855 0.8319025 0.5266679 2.993842 -0.7438983 0.7200287 3.018656 0.5140985 0.8552368 2.993504 -0.2953496 0.2751935 2.993408 -0.8710837 0.8552508 2.988545 0.2722495 0.04541343 3.686096 0.7343457 0.7264056 2.9937 -0.5456613 0.5256116 3.025954 0.7055551 0.9004817 2.993264 -0.01735782 0.5877259 2.133328 -1.027123 0.5680915 2.386043 -0.9602067 0.3245261 2.130769 -1.14237 0.3185801 2.386275 -1.072611 0.6750106 2.068794 -0.9891504 0.5928573 2.447663 -0.9195075 1.365186 1.390593 -0.323701 1.407166 0.5410038 -0.06354427 1.358425 0.5388015 -0.3798453 1.457266 -0.3519011 0.09112727 1.395967 -0.4750293 -0.4387191 1.461616 -0.9685209 -0.04006797 1.428895 -1.073631 -0.2239914 1.402778 -0.7851899 -0.4242826 1.462964 -0.7090448 0.1106733 1.407166 0.5410038 -0.06354427 1.358425 0.5388015 -0.3798453 1.457266 -0.3519011 0.09112727 1.395967 -0.4750293 -0.4387191 1.462964 -0.7090448 0.1106733 1.402778 -0.7851899 -0.4242826 1.461616 -0.9685209 -0.04006797 1.428895 -1.073631 -0.2239914 1.407166 0.5410038 -0.06354427 1.389175 1.39883 -0.2196707 1.358425 0.5388015 -0.3798453 1.457266 -0.3519011 0.09112727 1.395967 -0.4750293 -0.4387191 1.462964 -0.7090448 0.1106733 1.402778 -0.7851899 -0.4242826 1.461616 -0.9685209 -0.04006797 1.428895 -1.073631 -0.2239914 1.407166 0.5410038 -0.06354427 1.358425 0.5388015 -0.3798453 1.457266 -0.3519011 0.09112727 1.395967 -0.4750293 -0.4387191 1.462964 -0.7090448 0.1106733 1.402778 -0.7851899 -0.4242826 1.461616 -0.9685209 -0.04006797 1.428895 -1.073631 -0.2239914 5.119614 1.079372 0.1129325 4.815807 1.151338 0.06747633 4.818887 1.13492 0.00381416 5.105423 1.078731 0.02084159 5.382009 0.9534693 0.157965 5.364162 0.9176205 0.003700494 5.107143 0.5037855 0.1636558 5.089621 0.4816159 0.007903635 4.438097 0.1632016 0.1260978 4.438886 0.1253274 -0.04590141 1.7782 -0.9040883 -0.2656837 1.806956 -0.8561379 -0.00123769 1.894139 -0.5655441 0.1169422 1.839001 -0.6353029 -0.3731468 1.862125 -0.3140252 -0.3863725 1.918283 -0.2012237 0.09903544 1.797154 0.5968167 -0.3324365 1.841807 0.5988344 -0.03292012 1.69685 1.352977 -0.2681328 1.701847 1.413968 -0.1856958 2.798102 -0.4904167 0.04702001 3.070925 -0.2120116 -0.2287358 3.17859 0.1406614 -0.2385421 3.036156 0.7606558 -0.1985507 2.811793 1.327361 -0.1650699 2.813729 1.37146 -0.08974832 2.780543 -0.5345484 -0.1823903 3.111807 -0.1602882 0.1346458 3.220229 0.2242991 0.1213687 3.069265 0.7621518 0.0284838 3.688746 -0.1522558 0.08973813 4.16143 0.1626881 -0.1009024 4.343932 0.5431525 -0.1076819 4.132928 0.905687 -0.08003431 3.909677 1.272105 -0.07383823 3.908903 1.30125 -0.004815042 3.681098 -0.1930072 -0.1086586 4.189694 0.1984464 0.1503171 4.372718 0.6009745 0.1411381 4.155817 0.9067214 0.0879904 1.460439 -1.05832 -0.2277565 1.501901 -0.6960858 0.1112394 1.498898 -0.338294 0.09184145 1.446416 0.5462263 -0.06165868 1.492802 -0.958372 -0.03656136 1.442172 -0.7716542 -0.4196647 1.438063 -0.4604896 -0.4339919 1.398044 0.5440406 -0.375564 1.395137 1.387196 -0.3186829 1.417411 1.400197 -0.2166026 0.1618943 4.40077 0.3848828 0.2642702 4.4006 0.3347148 0.3295953 4.401733 0.2741138 0.3691877 4.404836 0.203014 0.3843222 4.419823 0.1301533 0.373773 4.428536 0.05324584 0.3372907 4.410038 -0.03382617 0.2727523 4.409647 -0.1010247 0.1672794 4.417884 -0.1617323 0.2289931 3.85815 -0.4938817 0.3897538 3.856895 -0.4075083 0.513821 3.855031 -0.2755093 0.5891819 3.865968 -0.1472372 0.6097041 3.854707 0.09331536 0.5752747 3.847915 0.2350937 0.4910904 3.845823 0.3863517 0.3664446 3.844218 0.5040068 0.2134015 3.84324 0.5785192 0.2496541 4.280661 -0.2489207 0.3562802 4.269158 -0.1625129 0.4288293 4.268068 -0.08532571 0.472897 4.361866 0.06508404 0.4848976 4.32202 0.1431318 0.4647647 4.263907 0.2132525 0.4155375 4.262683 0.3017014 0.3426501 4.261744 0.370501 0.2453032 4.257408 0.4353161 0.2508764 4.095473 -0.3599932 0.3710624 4.087099 -0.270705 0.4663623 4.085668 -0.1693124 0.5242494 4.100655 -0.07334995 0.5400132 4.074989 0.1103676 0.5135669 4.080202 0.2228978 0.4489023 4.078594 0.3390837 0.3531579 4.077361 0.4294583 0.2356007 4.07661 0.4866936 0.2310668 3.394939 0.7264572 0.4562954 3.388764 -0.6103624 0.6070927 3.391899 0.4613581 0.7248006 3.439762 -0.1505765 0.2406651 3.389424 -0.7228325 0.7215189 3.380455 0.2562375 0.09772008 3.326637 0.8662722 0.6251252 3.387449 -0.4368306 0.4401443 3.393933 0.6223341 0.7464844 3.46314 -0.03003084 0.7208671 3.460279 -0.1245561 0.6382567 3.658962 -0.2026449 0.593149 3.860851 -0.1261961 0.6067317 3.856405 0.07156848 0.6593741 3.672036 0.05081033 0.5282164 4.095538 -0.05230885 0.5370407 4.076687 0.08862078 0.4813969 4.336013 0.07199645 0.4886571 4.301333 0.1187168 0.7366046 3.484165 -0.0500757 2.077025 4.467506 -0.006796717 2.068716 4.459271 -0.1185256 2.0583 4.569344 -0.09199368 2.064837 4.567204 0.00319457 1.96349 4.623131 -0.05643016 1.967737 4.614058 0.01140218 1.918882 4.245249 -0.09581565 1.846717 4.631768 -0.01287752 1.850211 4.615077 0.009609937 1.931969 4.268319 -0.05535531 1.685957 4.261039 0.002246439 1.596857 4.012316 -0.1218985 1.615108 4.044488 -0.06547296 1.425948 4.580956 0.02512699 1.563094 4.493684 0.02762651 1.557171 4.506338 -0.06697195 1.421074 4.604234 -0.006233751 1.66125 4.393653 0.01618027 1.652133 4.396638 -0.1165685 1.674369 4.249555 -0.1535696 0.889131 3.800919 0.02909207 0.9210124 3.619395 -0.06684333 0.7277319 4.422125 0.06150615 0.7555727 4.195186 -0.06896686 0.8284609 3.982388 -0.1392283 0.8727142 3.78465 -0.1916464 0.8951562 3.573818 -0.1467792 0.7639639 4.17726 0.06504708 0.7208279 4.455102 0.01707845 0.8413771 3.978161 0.04883158 1.245133 3.801353 -0.1425025 1.194407 4.353207 0.03351044 1.068644 4.55278 -0.006348073 1.282467 4.209867 0.02003651 1.317237 4.058499 0.003634333 1.266618 3.839225 -0.07608133 1.07438 4.525379 0.03056818 1.187434 4.368102 -0.07784581 1.271735 4.21338 -0.1362282 1.303596 4.044981 -0.179784 0.09259194 3.390735 0.7581587 0.1966236 3.666862 0.6479195 0.1326093 2.652604 0.9270973 0.214344 3.03228 0.8707258 0.04565602 3.77563 0.6283347 0.07348757 4.224762 1.981616 0.03807574 4.135057 2.216882 0.05745631 4.200478 2.073876 0.05854541 4.074618 2.339187 0.05616563 4.236129 1.932093 0.07231301 3.563384 0.7826757 0.1392387 2.698217 1.072306 0.03044223 4.118957 1.672567 0.1399286 3.992392 1.812062 0.1423287 3.872639 1.938598 0.1264577 4.076501 1.721623 0.1485551 3.76745 2.047399 0.03729796 3.916881 1.217919 0.1579538 3.474303 1.463435 0.1012507 3.839203 1.264485 0.1497055 3.285783 1.558161 0.1196457 3.688252 1.347788 0.4366737 -2.680265 1.043711 0.7256997 -2.673671 0.8968741 0.9601865 -2.67449 0.6642814 1.110999 -2.675227 0.3705523 1.164996 -2.676452 0.04331004 1.114331 -2.677374 -0.2845071 0.9642214 -2.678077 -0.5807206 0.7298139 -2.678643 -0.8159909 0.430996 -2.679034 -0.9681895 0.3980134 -2.611045 1.271991 0.4033749 -2.667917 1.222263 0.7552462 -2.601914 1.090441 0.7442384 -2.66006 1.048839 1.044334 -2.595 0.8036696 1.020539 -2.660903 0.774205 1.230479 -2.581452 0.4425803 1.198029 -2.661683 0.4277894 1.29684 -2.582903 0.03936946 1.261614 -2.663113 0.04207473 1.234377 -2.584029 -0.364783 1.202033 -2.664234 -0.344325 1.049385 -2.584902 -0.7299442 1.0253 -2.665132 -0.6936264 0.7646008 -2.587468 -1.016533 0.749105 -2.665877 -0.9712018 0.3904256 -2.588104 -1.207958 0.3966732 -2.66646 -1.151133 0.4038351 -2.594105 1.250913 0.4022365 -2.680466 1.218092 0.7552477 -2.584918 1.072297 0.7419902 -2.672713 1.045483 1.039425 -2.576489 0.7903755 1.017632 -2.673676 0.7720672 1.222509 -2.56019 0.4354771 1.194915 -2.674543 0.4267849 1.287762 -2.561612 0.03895753 1.258388 -2.675983 0.04210758 1.226366 -2.562722 -0.3584203 1.198832 -2.677067 -0.3432456 1.044507 -2.56359 -0.7174869 1.022376 -2.677894 -0.6914483 0.7653682 -2.566507 -0.9985997 0.7468266 -2.678558 -0.9680117 0.3961862 -2.567171 -1.187663 0.3955624 -2.679018 -1.146923 0.8190422 -0.758856 -1.219331 0.5024893 -0.7591404 -1.379802 0.8134268 -1.099672 -1.215246 0.4983937 -1.099847 -1.374134 0.6204451 -0.6239308 -0.8187478 0.3038921 -0.6242151 -0.979219 0.6148297 -0.9647466 -0.8146623 0.2997967 -0.9649222 -0.9735508 0.6084209 -1.954046 -0.7369955 0.6129584 -1.616584 -0.7725939 0.297957 -1.957957 -0.8974227 0.2987543 -1.618602 -0.932399 0.5579976 -1.897554 -0.7690159 0.5611901 -1.674055 -0.7929604 0.3492949 -1.900223 -0.8773057 0.3496363 -1.675374 -0.9001126 0.5516242 -0.6996534 -0.8519186 0.3705539 -0.6998191 -0.9438838 0.5485755 -0.8891225 -0.8497918 0.3682042 -0.88922 -0.9405885 0.2649622 1.865423 -0.5358175 0.2453277 2.118138 -0.4689013 0.001762449 1.862864 -0.6510645 0.2159265 1.913291 -0.5439321 0.2033492 2.069871 -0.5015258 0.04695767 1.911412 -0.6169232 0.04625576 2.070259 -0.5745021 0.4434425 -1.497184 -1.368024 0.4446011 -1.890092 -1.32785 0.8462132 -1.886099 -1.118734 0.8491593 -1.495235 -1.162276 0.8447277 -0.7592077 -1.244839 0.8522505 -0.7253339 -1.191712 0.4588336 -0.7256827 -1.391179 0.5281751 -0.7594921 -1.40531 0.8455359 -1.13238 -1.186821 0.8391124 -1.100024 -1.240753 0.5240794 -1.100199 -1.399642 0.4537855 -1.13249 -1.384002 0.8502731 -0.7342376 -1.205676 0.47706 -0.7345695 -1.394893 0.8438475 -1.123875 -1.200997 0.4722622 -1.124002 -1.388113 0.7900633 -1.857928 -1.127883 0.8353356 -1.879464 -1.129139 0.8405196 -1.501529 -1.169124 0.7946009 -1.520466 -1.163481 0.4558972 -1.884499 -1.325676 0.4795995 -1.861839 -1.28831 0.4803965 -1.522484 -1.323286 0.4565033 -1.504322 -1.364307 0.8489703 -1.879961 -1.177344 0.8539531 -1.514626 -1.215963 0.4916687 -1.517177 -1.400133 0.4910032 -1.884647 -1.36264 1.017379 1.267402 0.8076177 1.187149 -1.473026 0.8080247 1.185103 -1.466697 0.8123084 0.3653317 1.768056 1.136038 0.7267832 1.571951 1.004462 0.9521406 1.373537 0.8557592 1.217065 0.5342611 0.6784619 1.213495 0.5351967 0.6851667 1.226336 -1.355438 0.7605539 1.26059 -1.085432 0.7191403 1.257095 -1.084908 0.7257196 1.285827 -0.4298191 0.6727556 1.282478 -0.4304057 0.6795183 1.113349 -1.575887 0.8987623 1.114999 -1.563979 0.8979902 0.8393145 -1.813788 1.13825 0.8416135 -1.801675 1.13762 0.4394565 -1.937272 1.33317 0.4404475 -1.925629 1.33352 1.278785 -0.7075956 0.6945475 1.275341 -0.7076914 0.7012144 0.3666563 1.757627 1.137936 0.7296782 1.56044 1.005238 0.9510107 1.365391 0.8589304 1.014196 1.263373 0.8129073 1.229746 -1.357618 0.7542507 1.008514 1.257667 0.8395479 1.005813 1.253506 0.8466107 0.3649527 1.745551 1.158496 0.3651261 1.738454 1.163115 0.7257807 1.549897 1.027606 0.7259984 1.542797 1.032048 0.9463649 1.356473 0.8834112 0.942937 1.352966 0.8906558 1.235536 -1.360239 0.7568143 1.23863 -1.364355 0.7568781 0.3625086 1.791372 1.149463 0.365524 1.780657 1.145116 0.7204594 1.597373 1.02003 0.7269337 1.585018 1.013874 0.9523854 1.393182 0.8670566 0.9561736 1.383238 0.8626027 1.023205 1.275321 0.8125252 1.02341 1.272322 0.8119566 1.223156 0.5325537 0.6804708 1.222927 0.5344496 0.6807306 1.207644 0.5331383 0.712961 1.204416 0.5333117 0.7211671 1.190275 -1.487372 0.8158102 1.19171 -1.479653 0.8122686 1.218648 -1.350962 0.7928889 1.220772 -1.350888 0.7879217 1.180622 -1.458287 0.8376597 1.178409 -1.454017 0.8440706 1.291406 -0.4285772 0.6747072 1.291454 -0.4294506 0.6747519 1.276759 -0.4301044 0.7074964 1.273724 -0.4301323 0.715793 1.109565 -1.601739 0.9174292 1.115017 -1.587525 0.9075285 1.111074 -1.553605 0.9210186 1.11115 -1.546007 0.9245451 0.8340426 -1.840672 1.157361 0.8399813 -1.825804 1.147563 0.8384499 -1.789854 1.158209 0.8384256 -1.78226 1.161904 0.4369826 -1.963276 1.350473 0.4399657 -1.94917 1.342486 0.4387604 -1.91318 1.35213 0.4383059 -1.905635 1.355922 1.28455 -0.7077454 0.6967139 1.284544 -0.707773 0.6967158 1.26962 -0.7066258 0.7291209 1.266518 -0.7066671 0.7373796 1.266463 -1.087212 0.7215235 1.266447 -1.086179 0.7214459 1.251291 -1.083295 0.7535276 1.248099 -1.083306 0.7617342 0.3652903 1.741179 1.161109 0.3651171 1.748277 1.156489 0.3635355 1.79453 1.15045 0.3644974 1.777499 1.144129 0.7265616 1.545234 1.029812 0.7263443 1.552334 1.025369 0.7224897 1.600047 1.020425 0.7249037 1.582344 1.013479 0.9436985 1.355064 0.8881234 0.9471265 1.358571 0.8808788 0.9549797 1.395361 0.8670184 0.9535835 1.381055 0.8626387 1.006905 1.254858 0.8436966 1.009606 1.259019 0.8366339 1.026295 1.276691 0.8123138 1.020323 1.270945 0.8121656 1.226452 0.5331372 0.6800566 1.219632 0.5338641 0.6811444 1.205604 0.5337932 0.7180461 1.208832 0.53362 0.70984 1.1931 -1.489172 0.8153032 1.235411 -1.36344 0.7574099 1.232317 -1.359322 0.7573453 1.188888 -1.477849 0.8127728 1.217551 -1.349844 0.7959129 1.17918 -1.456081 0.841494 1.181394 -1.46035 0.8350831 1.221869 -1.352006 0.7848979 1.294723 -0.4285184 0.6741925 1.288137 -0.4295092 0.6752666 1.274902 -0.4302186 0.7126497 1.277937 -0.4301908 0.704353 1.111999 -1.604071 0.9173081 1.112586 -1.585191 0.9076471 1.111714 -1.548534 0.9224081 1.111638 -1.556132 0.918881 0.8359475 -1.843439 1.157984 0.8380769 -1.823036 1.14694 0.8387866 -1.785093 1.160115 0.8388112 -1.792687 1.156419 0.4379804 -1.966277 1.351673 0.4389666 -1.94617 1.341287 0.4384613 -1.908618 1.3544 0.4389157 -1.916163 1.350608 1.287864 -0.7079004 0.6962238 1.281231 -0.7076173 0.6972059 1.267695 -0.7069346 0.7342516 1.270797 -0.7068935 0.7259929 1.269768 -1.087524 0.7210354 1.263142 -1.085867 0.7219339 1.249291 -1.083703 0.7586227 1.252482 -1.083692 0.7504161 0.6652672 1.880407 -0.5675527 0.4020674 1.877848 -0.6827997 0.3993987 2.133354 -0.6130411 0.6456328 2.133122 -0.5006365 0.3534945 1.559376 1.12692 0.6983945 1.361067 1.001492 0.8350541 1.242501 0.9166564 0.8942644 1.151077 0.8752132 1.080054 0.534623 0.7640874 1.090515 -1.339971 0.8357228 1.107933 -1.294036 0.8119747 1.155207 -0.4150187 0.7524982 1.060719 -1.403258 0.8743755 0.8096103 -1.621692 1.10339 0.4249955 -1.731886 1.289857 1.147871 -0.6855902 0.7719767 1.12963 -1.059004 0.7932101 0.8923556 1.292044 0.955127 0.9640262 1.183378 0.9092308 1.157934 0.5345736 0.7945812 0.3713843 1.635629 1.183704 0.7346786 1.428189 1.05126 1.233533 -0.430071 0.7840092 1.207714 -1.082287 0.8258765 1.183583 -1.336038 0.8479636 1.156579 -1.403611 0.8784532 1.114082 -1.483946 0.9265106 1.226069 -0.7063258 0.804086 0.8413348 -1.719164 1.165229 0.4367233 -1.836167 1.360438 0.3709558 1.615918 1.174202 0.7332553 1.407511 1.042075 0.8812293 1.28005 0.9530091 0.9532141 1.171359 0.9071792 1.145887 0.5347514 0.7942748 1.173425 -1.331096 0.8443099 1.148791 -1.392051 0.8718723 1.222322 -0.4289748 0.7829115 1.110631 -1.469545 0.9147732 0.8394439 -1.703406 1.152978 0.4356572 -1.819037 1.34772 1.214833 -0.7047803 0.8027366 1.196494 -1.080464 0.8241328 0.3344174 1.481323 1.139112 0.6603094 1.29405 1.021013 0.7846066 1.185203 0.9408062 0.8298521 1.112653 0.9041635 1.008113 0.5182321 0.7949822 1.026831 -1.299283 0.8600772 1.036361 -1.269769 0.8405101 1.081863 -0.4160112 0.7831428 1.006174 -1.347045 0.8940758 0.7770013 -1.548619 1.113026 0.4133382 -1.65287 1.290433 1.074696 -0.6808611 0.8022409 1.05656 -1.051795 0.8232956 0.168558 1.31062 -0.454398 0.168558 -1.485948 -0.454398 0.3333697 1.477035 -0.454398 0.6582185 1.290368 -0.454398 0.781837 1.182054 -0.454398 0.8263151 1.110542 -0.454398 1.004163 0.5173314 -0.454398 1.077835 -0.4160655 -0.454398 1.003179 -1.343956 -0.454398 0.7752098 -1.544605 -0.454398 0.4126976 -1.648529 -0.454398 1.070677 -0.6806011 -0.454398 1.052547 -1.051398 -0.454398 0.3343917 1.481218 1.10011 0.6602582 1.29396 0.9849014 0.7845388 1.185126 0.9066579 0.8297655 1.112601 0.870912 1.008017 0.51821 0.764403 1.036265 -1.269736 0.8088167 1.026746 -1.299228 0.8279048 1.081765 -0.4160125 0.7528533 1.006101 -1.346969 0.8610713 0.7769574 -1.548521 1.074663 0.4133225 -1.652764 1.247727 1.074598 -0.6808547 0.771484 1.056462 -1.051785 0.7920234 0.3333835 1.477091 -0.4335526 0.6582459 1.290416 -0.4350975 0.7818732 1.182096 -0.4361467 0.8263613 1.110569 -0.4366261 1.004214 0.5173432 -0.4380543 1.077888 -0.4160648 -0.4382092 1.003218 -1.343996 -0.4367581 0.7752332 -1.544657 -0.4338939 0.4127059 -1.648586 -0.4315732 1.07073 -0.6806045 -0.4379594 1.052599 -1.051404 -0.4376839 0.2873664 1.309065 -0.454398 0.5597258 1.15256 -0.454398 0.6519263 1.071774 -0.454398 0.6713119 1.040606 -0.454398 0.8375418 0.4861462 -0.454398 0.9090973 -0.4204296 -0.454398 0.6923084 -1.393023 -0.454398 0.8469215 -1.256939 -0.454398 0.3869774 -1.480555 -0.454398 0.9022305 -0.6742048 -0.454398 0.8846777 -1.033195 -0.454398 0.064677 4.586554 0.3258326 0.123023 4.587324 0.2961138 0.1693266 4.588524 0.2498257 0.1990554 4.590035 0.1914993 0.2092993 4.591711 0.1268439 0.1990554 4.593388 0.06218862 0.1693267 4.594899 0.003862202 0.123023 4.596099 -0.04242581 0.064677 4.596869 -0.07214462 0 2.0846 1.136801 0 1.451209 -1.291538 0 3.684984 -0.6198652 0 -1.506191 -1.407743 0 0.5071088 -1.389378 0 2.500118 1.011604 0 2.455186 -1.067987 0 -2.141378 1.392471 0 -2.009723 -1.371057 0 -0.4148004 -1.434413 0 1.63665 1.234123 0 -1.83993 1.418137 0 -1.136814 -1.428733 0 -0.721955 -1.43755 0 2.39645 1.054163 0 2.072147 -1.174554 0 2.992511 -0.8859562 0 4.406611 0.41441 0 4.431927 -0.2061183 0 3.880972 -0.5490762 0 3.816398 0.6197162 0 4.303018 -0.3469902 0 4.260517 0.4968628 0 4.078426 0.5444808 0 4.119669 -0.4583463 0 3.389385 -0.7334529 0 2.442358 1.031099 0 3.847434 0.6085402 0 4.2293 1.981713 0 4.136106 2.219211 0 4.023396 2.399069 0 4.202986 2.073881 0 4.2551 1.936041 0 3.724298 0.7252084 0 2.534055 1.120261 0 4.133521 1.65987 0 3.691537 2.098151 0 3.172338 1.606471 0 3.941729 1.207426 0 -2.684574 1.095224 0 -2.679942 -0.9952231 0 -2.672955 1.287402 0 -2.5988 1.311969 0 -2.599012 -1.243236 0 -2.667816 -1.186193 0 -2.615925 1.335181 0 -2.685554 1.283228 0 -2.579941 -1.222314 0 -2.680087 -1.181148 -0.001762449 1.862864 -0.6510645 0 2.11837 -0.5813058 0 1.757106 1.193117 0 1.767518 1.190964 0 -1.993243 1.401898 0 -1.981932 1.403531 0 1.740534 1.215077 0 1.744833 1.212369 0 1.780151 1.200167 0 1.794021 1.205266 0 -2.018436 1.415969 0 -2.004435 1.409974 0 -1.969254 1.422034 0 -1.961683 1.425714 0 1.737688 1.21687 0 1.747679 1.210575 0 1.790871 1.204108 0 1.777 1.199009 0 -2.021566 1.41731 0 -2.001304 1.408633 0 -1.964701 1.424247 0 -1.972272 1.420567 0 1.569932 1.136717 0 -1.744094 1.325631 0 1.649742 1.231887 0 -1.855706 1.431076 0 1.634126 1.218843 0 -1.840717 1.415955 0 1.486012 1.110759 0 -1.663165 1.290665 0 -1.663057 1.247954 0 1.485899 1.072451 0 -1.658778 -0.4315701 0 1.48146 -0.4339236 0 1.4814 -0.454398 0 -1.65872 -0.454398 0 4.586288 0.336073 0 4.597135 -0.082385 0.03135806 4.679361 0.2544453 0.0596466 4.679735 0.2400364 0.08209657 4.680317 0.217594 0.09651029 4.68105 0.189315 0.1014769 4.681862 0.1579674 0.09651029 4.682675 0.1266198 0.08209657 4.683408 0.0983408 0.05964666 4.68399 0.0758984 0.03135806 4.684363 0.06148946 0 4.679233 0.2594103 0 4.684492 0.05652451 0 4.718514 0.1869154 0.002805173 4.718526 0.1864713 0.005335867 4.71856 0.1851823 0.007344186 4.718612 0.1831746 0.008633613 4.718677 0.1806448 0.009077906 4.71875 0.1778405 0.008633613 4.718822 0.1750363 0.007344186 4.718888 0.1725065 0.005335867 4.71894 0.1704988 0.002805233 4.718974 0.1692098 0 4.718985 0.1687657 -0.002805233 4.718526 0.1864713 -0.005335867 4.71856 0.1851823 -0.007344186 4.718612 0.1831746 -0.008633613 4.718677 0.1806448 -0.009077906 4.71875 0.1778405 -0.008633613 4.718822 0.1750363 -0.007344186 4.718888 0.1725065 -0.005335867 4.71894 0.1704988 -0.002805233 4.718974 0.1692098 0 4.719795 0.1808145 0.01811677 4.700242 0.2202192 0 4.700168 0.2230877 0.03446018 4.700458 0.2118946 0.04743039 4.700794 0.1989288 0.05575782 4.701218 0.1825909 0.05862724 4.701687 0.1644801 0.05575782 4.702157 0.1463694 0.04743039 4.70258 0.1300315 0.03446018 4.702916 0.1170656 0.01811677 4.703132 0.108741 0 4.703207 0.1058726 -0.01811677 4.700242 0.2202192 -0.01811677 4.703132 0.108741 2.300503 -0.7268375 -0.2120501 2.266765 -0.7531378 -0.2134749 2.490551 -0.3767893 0.1344634 2.53321 -0.3481664 0.1297489 2.558008 0.002919971 0.1212868 2.599439 0.0237804 0.113067 2.442352 0.6801551 0.007824897 2.486716 0.6839601 0.001965463 2.289277 -0.7074867 0.02866643 2.332387 -0.6588535 0.02902936 2.441752 -0.4375106 -0.2892703 2.485874 -0.4085544 -0.2959052 2.543361 -0.07312196 -0.2991371 2.508552 -0.09637445 -0.3026797 2.440593 0.6811551 -0.2520157 2.403256 0.6777109 -0.2559922 2.27857 1.338135 -0.2030087 2.239557 1.341986 -0.2074757 2.281954 1.389743 -0.123709 2.243078 1.395324 -0.1290773 2.551143 -0.07334703 -0.3065693 2.478653 -0.4062037 -0.2895435 2.432486 -0.4344944 -0.3010571 2.498566 -0.09608566 -0.3130929 2.309075 -0.7050321 -0.2193813 2.324211 -0.6804391 0.0393669 2.278785 -0.6844049 0.02198094 2.255767 -0.730338 -0.2240177 2.525752 -0.3455961 0.1391156 2.480981 -0.3734914 0.1265324 2.591578 0.02377474 0.1211479 2.547922 0.0029127 0.1117058 2.448179 0.6825456 -0.259582 2.393522 0.6759268 -0.2662335 2.479161 0.6822201 0.01010161 2.432658 0.6779226 -0.001685082 2.286387 1.338722 -0.2109109 2.229526 1.341233 -0.2172868 2.28979 1.390505 -0.1319566 2.233024 1.394345 -0.1384451 0.06218111 2.579297 0.9562537 0.02785152 4.060191 2.370582 0.06687432 2.625219 1.097229 0.0707736 3.740114 2.073973 0.07007646 3.238049 1.583857</float_array>
<technique_common>
<accessor source="#Cylinder_003-mesh-positions-array" count="830" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="Cylinder_003-mesh-normals">
<float_array id="Cylinder_003-mesh-normals-array" count="2397">0.2023426 -0.7864812 0.5835281 0.01132255 -0.999929 -0.003723323 0.01937967 -0.9998087 0.002655148 0.3779465 -0.774479 0.5072858 0.01034599 -0.9999325 0.005279779 0.5166227 -0.7672434 0.380051 0.003997921 -0.9999775 0.00540179 0.6176883 -0.758903 0.2062216 0.004944026 -0.9999766 0.004730403 0.652553 -0.7577208 0.005829036 0.005035579 -0.999982 0.003296017 0.004547297 -0.9999888 0.001342833 0.6170076 -0.7620656 -0.1963608 0.003448665 -0.999994 1.52596e-4 0.5186178 -0.7693355 -0.3730398 0.002258419 -0.9999975 -2.74674e-4 0.3719059 -0.7764979 -0.5086621 0.001709043 -0.9999985 -4.27271e-4 0.1742956 -0.7817821 -0.5986969 0.00250256 -0.9999968 4.27271e-4 0.05200421 -0.8161067 -0.5755566 0.8615367 -0.2686637 0.4307836 0.5950307 0.7312374 0.3335126 0.7210093 0.4218629 0.5497066 0.7769249 0.3457204 -0.5261799 0.5506555 0.4095964 -0.7273304 0.7549844 0.3735552 -0.5389389 0.5506057 0.3033351 0.7777026 0.7520297 0.2867607 0.5934811 0.5355585 0.2956132 0.7910689 -0.08645987 0.4060839 -0.9097366 -0.1018724 0.9941564 -0.03570717 0.1326664 0.8745241 -0.466484 0.5594233 0.3538436 -0.7495601 0.2558988 0.4148399 -0.8731688 0.7583549 0.3102333 0.5732831 0.8923959 0.2870683 0.3481687 0.9006648 0.3160308 -0.2982073 0.9065107 0.3317433 -0.2611219 0.0396443 0.3568904 -0.9333047 0.2420174 0.3608288 -0.9006833 0.3206987 0.3167922 0.8926338 0.2725979 0.3176137 0.9081916 0.8960644 0.3141612 0.3136423 0.9464675 0.3160283 0.06576925 0.2288943 -0.04312366 -0.9724957 0.08380609 -0.0372641 -0.9957851 0.2510164 -0.05984717 -0.966131 0.6020517 -0.05856627 -0.7963063 0.8224702 -0.03973639 -0.5674186 0.6230864 -0.03451752 -0.7813911 0.9527447 -0.02298086 -0.3029019 0.9570835 -0.09763103 -0.2728725 0.9987351 -0.04980701 -0.00689727 0.9973955 -0.06967514 -0.01864713 0.9246938 0.1695632 0.3408662 0.9918538 0.107639 0.06811743 0.8966816 0.3645201 0.2511721 0.8728464 0.2574287 -0.4145715 0.8022981 0.07248389 -0.5925066 0.770694 0.1626963 -0.6160851 0.5871279 0.0782206 -0.8057062 0.5732116 0.1495441 -0.8056458 0.2748887 0.07681745 -0.9584025 0.2654216 0.1424005 -0.9535585 0.07214814 0.1338281 -0.9883748 0.9770323 0.2128694 0.009735524 0.9162518 0.2719579 0.2941455 0.9233849 0.2162275 0.3171846 0.5548136 0.2724779 0.7860901 0.2847467 0.3903135 0.8755425 0.2869415 0.3955899 0.8724524 0.02881002 0.2270011 -0.9734683 0.1895844 0.3190768 -0.928573 0.2006061 0.2054282 -0.9578917 0.7807754 0.2299324 -0.5809655 0.9083129 0.2839202 -0.3071759 0.9215582 0.2367985 -0.3076642 0.7730448 0.2588006 0.579158 0.7826005 0.2731152 0.5594145 0.9601137 0.2794672 -0.008942186 0.5526532 0.2672622 0.7893956 0.1896786 0.4230915 0.8860111 0.1481082 0.3484647 0.9255465 0.2476668 -0.1822937 -0.951541 0.08826023 -0.07220733 -0.9934769 0.8099868 -0.07004219 -0.5822504 0.625694 -0.1817387 -0.7586028 0.8073451 -0.1430723 -0.5724722 0.9433242 -0.1374288 -0.302081 0.9515229 -0.06235039 0.3011925 0.9914669 -0.1302851 0.00439471 0.6079179 0.01419156 -0.7938732 0.7995529 -0.006073355 -0.600565 0.08615547 -0.005493402 -0.9962667 0.2508377 0.01467972 -0.9679179 0.9536464 -0.06427222 -0.293986 0.9497462 0.1017193 0.2960327 0.9933362 0.0396443 0.1082208 0.9324496 0.04651105 -0.358294 0.7980068 0.03625637 -0.601557 0.5874704 0.02954286 -0.8087064 0.2845259 0.0300914 -0.9581961 0.08865898 0.07349085 -0.9933473 0.358416 0.5335649 0.7660592 0.6367582 0.5705919 0.5186173 0.6623058 0.4458302 0.6021516 0.115882 0.6133479 0.7812655 0.314682 0.7215925 0.6166681 0.7026718 0.1260439 0.7002608 0.6646999 0.06411999 0.744354 0.7854101 0.3317736 0.5225488 0.8951848 0.2968588 0.332444 0.8668053 0.2326781 0.4410325 0.1892203 -0.3076661 0.9324899 -0.1628488 -0.3784039 0.911203 0.06967478 -0.4847633 0.8718659 0.6236619 0.04318475 0.7805006 0.9403641 -4.27272e-4 0.3401693 0.940212 0.03720313 0.338552 0.8092444 -0.1348944 0.5717753 0.945073 -0.1197859 0.3041189 0.9930225 -0.01199388 0.1173145 0.6153579 0.02856594 0.7877302 0.6069291 0.03512722 0.7939794 0.5085741 0.1459434 0.8485594 0.6381259 0.1539998 0.7543735 0.1199412 0.2046325 0.9714627 -0.3154478 0.1189338 0.9414604 0.1179878 0.08313471 0.989529 0.2706726 0.1613842 0.9490478 0.5871383 -0.1390783 0.7974496 0.1144165 0.08939081 0.989403 0.297499 -0.1438053 0.9438297 0.3062618 0.3893051 0.8687033 0.2370421 0.5492835 0.8013106 0.3652528 0.4008991 0.8401609 0.955024 -0.0394302 0.2938958 0.2510187 -0.01608347 0.9678487 0.1482937 0.2412253 0.9590722 0.1489007 -0.05838227 0.9871273 0.208321 -0.3110472 0.927282 0.08917641 -0.4912639 0.8664337 0.1118835 0.04156714 0.9928516 -0.3141358 -0.1307449 0.9403321 0.09021526 -0.09131395 0.9917274 0.08401876 -0.2031344 0.9755395 0.9241154 -0.1077931 0.3665943 0.9605757 -0.0520038 0.2731118 0.9482641 -0.1484762 0.2806246 -0.327013 0.07986867 0.9416388 -0.3218567 0.02588033 0.9464347 0.09286874 0.03219735 -0.9951577 0.1303161 0.5264529 0.8401578 0.2563907 0.3574393 0.8980541 0.9479131 0.02926748 -0.3171817 -0.1852201 0.3366556 0.9232316 0.1221683 -0.3196578 0.9396244 0.1066645 -0.4761909 0.8728488 0.2049979 0.3605546 0.909932 0.2429296 0.5349031 0.8092366 0.106939 0.313462 0.9435601 0.1378245 0.5390599 0.8309146 0.8055518 -0.0578947 0.5896902 0.8850605 -0.08188331 0.4582172 0.8290447 -0.05520856 0.5564503 0.1296768 0.06662374 0.9893156 -0.5721795 0.6624562 -0.4834898 -0.2600256 -0.5436426 -0.7980222 -0.4238517 -0.7708253 -0.4755818 0.7091221 0.6842181 0.1702686 0.811854 -0.517278 -0.2707706 0.7302055 0.6361755 -0.2491598 0.3275627 -0.3156297 -0.8905507 0.6691721 -0.5102261 -0.5402574 0.5465621 -0.3183726 -0.7745379 0.5193728 -0.1571425 -0.8399752 -0.6263744 -0.7109123 -0.3197793 0.5287428 0.1215269 -0.8400372 0.6047383 0.196269 -0.7718614 0.3833504 0.07355099 -0.9206697 0.5146458 0.07471108 -0.8541418 0.5346385 -0.02151614 -0.844807 0.5769258 -0.619835 0.5319412 0.6322981 0.7033163 0.3248775 0.5315776 -0.01852494 -0.846807 0.2996645 0.2433267 0.922493 0.5619561 0.2343899 0.7932635 0.7683922 0.2144613 0.6029759 0.9507611 0.3099213 0.001434385 0.9054487 0.3038508 0.2963736 0.4461275 0.2319447 0.8643912 0.03170877 0.2982884 -0.953949 0.2411305 0.3418127 -0.9083063 0.7620066 0.3281133 -0.5582901 0.8989679 0.3221586 -0.2967668 0.7714089 0.2955501 0.5635411 0.5640536 0.2882832 0.7737807 0.8578881 0.4644681 -0.219767 0.4954249 0.8629727 -0.09915822 0.6704334 0.7168217 0.1915349 0.5233499 0.3706299 -0.7672929 0.4839994 0.1202445 -0.8667676 0.5482798 0.3100764 -0.7766865 0.5518853 0.3348912 -0.7637216 0.7647112 0.2865111 -0.5771728 -0.01486295 0.6266859 -0.7791303 0.3230744 -0.08118057 -0.9428853 0.7606617 0.02752834 0.6485645 0 0 1 0.8090602 -0.03524947 0.5866678 0.7830485 -0.3593881 0.5076174 0.7757645 -0.03302162 0.630158 0.7811183 0.00964415 0.6243087 0.3473729 0.7964368 -0.4949957 0.7405728 0.02154636 0.6716306 0.7882611 0.02304232 0.6149095 0.7008715 0.0730322 0.7095389 0.5013436 -0.7627123 0.4085643 0.1048646 -0.4193974 0.9017257 0.2396372 -0.5303333 0.8132163 0.03778296 -0.1388631 0.9895907 0.1095339 0.01736545 -0.9938314 0.553612 -0.6088207 -0.5682001 0.1551879 -0.1421259 -0.9776079 0.255568 -0.704994 0.6615652 0.4061785 -0.7453067 -0.5287127 0.2884686 -0.6715777 0.682473 0.3636382 -0.7772368 -0.5134884 0.01666331 -0.1080979 0.9940007 0.5128164 -0.5296936 0.6756066 -0.02508664 0.05066162 0.9984009 0.9980952 -0.01315367 0.06027513 -0.03497457 0.08569681 0.9957072 0.08496558 0.8642439 0.4958462 0.2843818 0.7250241 -0.6272698 0.1628204 0.6533266 -0.7393606 0.2332923 0.7756267 0.5864964 0.7807189 0.1383143 -0.6093826 0.7874942 0.3185929 0.5275903 -0.04150587 0.08554482 0.9954695 -0.05859595 0.1670901 0.9841989 0.08728367 0.09592044 -0.9915548 0.1338881 0.5899685 -0.7962483 0.0567668 0.8825713 0.4667391 0.5762983 0.2094853 -0.7899343 -0.08099716 0.1675793 0.9825257 -0.05392789 0.1052616 0.9929813 -0.08328562 0.1609864 0.9834364 0.1020872 0.06961458 -0.9923366 0.1130721 0.005768001 -0.9935701 0.1097782 0.007934987 -0.9939245 -0.05255407 0.1099607 0.9925457 0.03909516 -0.1777441 0.9832999 0.04223901 -0.2153762 0.9756173 0.2326464 -0.772955 0.5902681 0.1876915 -0.2820255 -0.9408685 0.3369293 -0.8231878 -0.4569908 0.3872631 -0.8767668 -0.2851445 0.2143377 -0.7385695 0.6391983 0.1861037 -0.2283113 -0.9556357 0.005035698 0.9679841 0.2509611 -0.04174983 0.9299727 0.3652505 0.3272577 0.4817461 -0.8129103 0.104834 0.5025929 -0.8581435 -0.4321547 0.09699064 0.8965685 -0.4211087 0.06650209 0.9045689 0.09659302 0.08246266 -0.9919021 0.4314792 0.1409983 -0.891036 0.3770645 -0.3111431 0.8723602 0.2510787 -0.738709 0.6255146 0.02841353 -0.1429834 0.9893172 -0.3667222 0.05118113 0.9289217 -0.3289636 -0.5028604 0.7993213 0.07687795 -0.715615 -0.6942515 0.4658168 0.002441525 -0.8848779 -0.06854552 0.1583628 0.984999 0.009094774 0.9061551 0.4228479 0.09326791 0.536962 -0.8384348 0.09168028 0.08847576 -0.9918503 -0.047854 0.09576904 0.9942526 0.1129506 0.007141411 -0.9935749 0.1667579 -0.1871448 -0.9680747 0.3445015 -0.8019243 -0.4880946 0.1009861 0.8648974 0.4916853 0.8291411 0.5289559 0.1809168 -0.04065161 0.8254851 0.5629583 0.1867462 0.6757231 -0.7131089 0.3272868 0.5749799 -0.7498543 0.3552796 0.6191527 -0.7003046 0.4599031 0.5433138 -0.7023527 0.5198094 0.6095979 -0.5984888 0.606606 0.5083026 -0.6112755 0.5925012 0.636571 -0.4936798 0.6855957 0.48209 -0.5454795 0.7794858 0.607969 -0.1509164 0.6193579 0.7550161 -0.2152829 0.6568619 0.7355402 0.1658711 0.8561764 0.4252499 0.2934694 0.6887826 0.6232889 0.3702561 0.8306132 0.3333623 0.4460396 0.730293 0.3877764 0.5624071 0.644634 0.5612546 0.5190766 0.5765445 0.3792052 0.7237402 0.4970723 0.5091581 0.7026217 0.3720972 0.3597977 0.8556222 0.2932007 0.4547098 0.840995 0.2191571 0.3520675 0.9099553 0.1729813 0.4365734 0.8828824 0.508417 0.7802807 -0.3642449 0.5395264 0.7508139 -0.3810378 0.291184 0.3139818 0.9036744 0.5442188 0.2834931 0.7895933 0.7609629 0.2587408 0.5949696 0.9565033 0.284012 0.06662344 0.8971228 0.2598742 0.3572621 0.03448635 0.002441465 0.9994023 -0.01629728 0.5319215 0.8466368 -0.03817898 0.4691962 0.8822683 0.7364049 0.3926944 -0.5509074 0.891493 0.3257302 -0.3148654 0.5605734 0.4423732 -0.7000453 0.3546038 0.4595597 -0.8142856 0.1973086 0.3926335 -0.8982807 0.3298794 0.2800419 0.9015299 0.2093922 0.2768396 0.9378245 0.5551577 0.2696132 0.7868347 0.9025249 0.2578599 0.3449017 0.9627927 0.2628628 0.06271713 0.1402048 -0.2279778 0.9635189 0.5845143 -0.6021547 0.5438315 0.7811172 -0.2357634 0.5781622 0.8769357 0.3451099 -0.3344892 0.7168892 0.404345 -0.5679569 0.6139586 0.4345656 -0.6589442 0.4494869 0.4508603 -0.7711594 0.3363496 0.4370012 -0.8342057 0.4021591 -0.6406102 0.6541305 0.5993423 -0.6676145 -0.4416784 0.1361472 0.3036073 0.94302 0.04837286 0.3377556 -0.9399902 0.9484367 0.3156573 -0.02877932 0.9903572 0.1199721 0.06927919 0.6176069 0.7084307 0.3415958 0.9233046 0.07471156 -0.3767319 0.6930547 0.2125339 -0.6888431 0.5500802 0.3589988 -0.7540103 0.7629232 0.1689247 0.6240295 0.8467652 0.1198808 0.5182831 0.560211 0.4204328 -0.7137226 0.7301491 0.6667906 -0.1492404 0.8102236 0.3486818 0.4711248 0.7720438 0.1419752 0.6195089 0.9746389 -0.1460356 0.1695661 0.711399 -0.1246092 -0.6916532 0.5926481 0.5408574 -0.5968598 0.6868039 0.4093844 0.6005871 0.229323 0.6496672 0.724806 -0.1336432 0.961871 -0.2386289 0.05826169 -0.07733637 0.9953013 -0.07220804 0.2928914 -0.9534153 0.07925897 0.01730448 -0.9967039 0.494073 -0.7282152 -0.474968 0.03354066 0.02673488 -0.9990798 0.4725838 -0.7233569 -0.5034078 -0.09845381 0.266216 -0.9588723 0.07049882 -0.07229942 0.9948883 0.04730433 -0.007324516 0.9988538 -0.06293046 0.4727415 0.8789513 -0.2131451 0.9300378 -0.2993309 0.4052374 -0.6504613 0.6424041 0.1545488 -0.2323116 0.9602844 -0.1044673 0.3087326 -0.9453945 -0.1921174 0.2899005 -0.9375759 0.1205195 -0.01846396 0.9925393 -0.05502653 0.4743331 0.8786241 0.4578259 -0.6375563 0.6196108 0.2132058 -0.2461968 0.945479 0.4557102 -0.7105137 -0.5361889 -0.3684869 0.8811152 -0.2964009 0.1121253 -0.05941969 0.9919161 -0.1472834 0.2421662 -0.9589907 -0.015473 0.013062 -0.999795 0.6810906 0.3313744 0.6529216 0.6418164 -0.1668784 0.7484806 0.6048192 -0.07824987 0.7925091 0.7534704 0.182111 0.6317578 0.3401705 0.4758908 0.8110561 0.2415602 0.4520518 0.8586605 0.7488438 0.3125142 0.5844382 0.130165 0.9406367 0.3134642 0.04171901 0.936802 0.3473638 0.01684659 0.9012627 0.4329454 0.3231651 0.9445003 0.05902361 0.5255408 -0.5704346 0.6311984 0.70749 -0.06457805 0.7037667 0.5875902 -0.5557891 0.5880786 0.9933032 0.1109062 0.0323807 0.9913594 0.1254954 -0.03817963 0.9735023 0.2281922 0.01489335 0.7097775 -0.07541215 0.7003777 0.75968 -0.5281625 0.3793822 0.8005472 -0.5062207 0.3207255 0.9927975 -0.001922667 0.1197888 0.6083941 0.7678248 0.2007532 0.8998327 0.433497 0.0488004 0.8723852 -0.4046207 0.2742741 0.9914515 0.08841454 -0.0959528 0.5981774 -0.5338428 0.5976586 0.6537457 -0.4907746 0.5759835 0.9973403 0.0634191 -0.03592121 0.7092663 0.6457863 -0.2826688 0.9348861 0.3091567 -0.1743851 0.8670827 -0.328784 0.3742576 0.2947833 0.2400932 -0.9249098 0.1199696 -0.1618109 -0.9795023 0.5949058 0.1885155 -0.7813765 0.8125194 0.1412745 -0.5655561 0.9480735 0.1180475 -0.2953326 0.9935435 0.1133472 0.004882991 0.944957 0.1228996 0.3032358 0.7990104 0.1910777 0.5701506 0.5781898 0.2572784 0.7742768 0.2756505 0.07565736 0.958276 0.1441432 -0.4897148 0.859885 0.290365 -0.4848675 0.8249799 0.559356 0.06149619 0.8266432 0.5386089 -0.4432048 0.7165683 0.7911379 0.03253298 0.6107721 0.7514109 -0.3821602 0.5378991 0.9444977 0.01300102 0.3282608 0.8971992 -0.329087 0.2945089 0.9999776 -0.005188167 0.004242062 0.9452435 -0.3262817 0.007416129 0.8969681 -0.3406282 -0.2818171 0.948191 -0.004364192 -0.317671 0.758834 -0.3677281 -0.5375379 0.7973504 0.01022398 -0.60343 0.5455916 -0.4050202 -0.7336814 0.5679355 0.03460896 -0.8223451 0.2605745 -0.4506186 -0.8538407 0.2378321 0.06280744 -0.9692735 0.08389759 -0.5115953 -0.8551208 0.08829194 0.05530071 -0.9945584 0.126136 -0.1936752 0.9729232 0.2985123 0.3214325 0.8986499 0.1355969 0.3884792 0.9114261 0.154672 0.1045592 0.9824174 0.07641887 0.2999075 -0.9509025 0.5117829 -0.1155166 -0.8513132 -0.4536964 0.7582767 -0.4681625 0.376208 -0.120367 -0.9186836 -0.2361256 0.4765543 -0.8468416 -0.2890779 -0.6647083 -0.68891 0.451106 -0.01925766 -0.8922626 0.451229 -0.01910513 -0.8922036 0.4506136 -0.01983737 -0.8924987 0.822409 0.4730218 -0.31606 0.7209615 -0.6688342 -0.1813161 0.454922 -0.09604448 -0.8853369 0.4547018 -0.09579896 -0.8854767 0.4534903 -0.09430545 -0.8862579 0.3339417 0.1241828 -0.9343776 0.5583706 0.1257371 -0.8200076 0.4561434 -0.09754008 -0.8845447 -0.2755293 0.6045592 -0.7473901 0.4516845 -0.01852512 -0.8919854 0.1865343 0.8345825 0.5183408 0.08975833 0.7685466 -0.6334665 -0.686504 0.6597079 -0.3057741 0.3949797 0.2550185 -0.8825852 0.3938162 0.2536733 -0.8834923 0.3980057 0.2588975 -0.8800929 0.4670345 -0.8842312 0.003723323 0.1561661 -0.519862 -0.8398546 0.8519429 -0.5236176 0.004242122 0.8055024 0.5254245 0.274035 -0.5970247 -0.4165623 -0.6855927 0.3909195 0.2495853 -0.8859397 0.6794198 -0.7289831 0.08350068 0.04019355 0.4546115 -0.8897824 0.7769943 0.4751265 -0.4129585 0.7653114 -0.5076949 -0.3956571 0.02884089 -0.4858089 -0.8735892 0.5998574 -0.2387527 -0.7636547 0.2891072 0.157631 -0.9442296 0.2815404 -0.2018851 -0.9380713 0.641647 0.2820024 -0.7132768 0.6106266 -0.4944098 -0.6186227 0.2340202 0.2796767 -0.9311367 0.07706105 -0.5089389 -0.8573464 0.1217101 0.313126 -0.9418805 0.6874105 0.3543258 -0.6339717 0.2332571 -0.5009092 -0.8334753 0.1441712 -0.2546802 0.956218 0.9326409 0.1326676 0.3355298 0.8937638 -0.1929138 0.4049328 0.9466357 0.03280782 0.3206317 0.8371095 -0.2627698 0.4797914 0.6831163 -0.3608617 0.6349261 0.379355 -0.4837616 0.7887107 0.1979165 -0.5481846 0.8126024 0.9462133 -0.01205497 0.323319 0.9409314 -0.04342854 0.3358006 0.950786 0.1392883 0.276776 0.7924937 0.4496403 0.4120405 0.2855334 0.2037127 0.9364678 0.5722466 0.3216789 0.7543584 0.3023229 0.4010524 0.86473 0.4462187 -0.03943055 0.8940549 0.5346661 0.1826575 0.825087 0.736834 0.2755307 0.6173804 0.589627 -0.0348832 0.8069222 0.1373661 0.1698689 0.9758459 0.1358096 0.3481913 0.9275336 0.62101 0.02194344 0.7834956 0.5917634 0.00463885 0.8060984 0.7409437 0.1463392 0.6554291 0.8866292 0.1141704 0.4481671 0.8139099 0.2014555 0.5449464 0.1302251 -0.4925482 0.8604869 0.845499 -0.02099704 0.533564 0.894162 -0.03033643 0.4467148 0.9642974 0.03137409 0.2629569 0.8604714 0.03784435 0.5080913 0.8404975 0.1091975 0.5306976 0.9028259 -0.2781847 0.3279008 0.7429915 -0.05691838 0.6668764 0.8547114 -0.1324824 0.5019133 0.8216329 -0.3831052 0.422078 0.625897 -0.5412355 0.5615311 0.5752786 -0.06909447 0.815034 0.7743219 -0.1640078 0.6111686 0.3409032 -0.6359357 0.6923663 0.3003648 -0.05047786 0.9524878 0.5995524 -0.2239814 0.7683548 0.1996253 -0.6685815 0.7163439 0.1409385 0.2902088 0.946528 0.328327 -0.2410417 0.913291 0.9632005 -0.01678526 0.2682594 0.8994141 -0.002960264 0.4370876 0.9033665 0.03631776 0.427329 0.8548544 0.002105832 0.5188639 0.3348866 0.5225794 0.7840675 0.1229937 0.5289645 0.8396839 0.1227769 0.529195 0.8395705 0.145883 -0.3374842 0.9299584 0.1404499 -0.3415417 0.9293133 0.1487815 -0.3365669 0.9298316 0.606725 0.4350536 0.6652917 0.3175545 0.5287184 0.7871569 0.1957781 -0.3444657 0.9181581 0.2854511 -0.2958278 0.911594 0.7639064 0.3635498 0.5331779 0.6356595 0.4285849 0.6420686 0.3035712 -0.291913 0.9069903 0.1797885 -0.3441039 0.9215577 0.8565862 0.2322521 0.4607809 0.7759579 0.3402312 0.5311611 0.2781209 -0.1902563 0.9415155 0.08325594 -0.2034399 0.9755412 0.6059483 -0.002624571 0.7954998 -0.8893342 0.4004445 0.2207465 0.9230446 0.1324826 0.3611608 0.8556376 0.2392709 0.4589484 0.4091364 0.181679 0.8942037 0.2504717 0.3783475 0.8911325 0.4782701 0.3095281 0.8218578 0.9165639 -0.1151198 0.3829596 0.8836196 -0.1893405 0.4282135 0.918597 -0.1030633 0.3815203 -0.9541119 -0.157508 0.2546801 0.6546751 0.0625956 0.7533143 0.9381549 0.03350985 0.3445904 0.9235901 0.1212816 0.3636924 0.4390774 0.3866763 0.8109825 0.3835646 0.416922 0.8240475 0.8198626 -0.2518733 0.5141842 0.8808738 -0.1934913 0.4319983 0.3442313 0.4123207 0.8435025 0.3105613 0.4271744 0.8491606 0.6464675 -0.33535 0.6852884 0.802082 -0.2567908 0.5391874 0.2006623 0.4338274 0.878367 0.166637 0.4386276 0.8830844 0.349477 -0.4051138 0.8448365 0.6256122 -0.3421808 0.7010861 0.08911657 0.3930591 0.9151846 0.08771204 0.3921101 0.9157272 0.1953225 -0.4287329 0.8820643 0.3502987 -0.404989 0.844556 0.05758959 0.07104855 0.995809 0.08853465 0.06433337 0.9939934 0.936011 -0.009186148 0.351851 0.9379969 0.03448629 0.344924 0.009430229 0.07858562 0.9968628 0.263258 0.08023476 0.9613832 0.9359857 -0.01043742 0.3518835 0.9313046 -0.03958386 0.3620842 -0.170632 0.2129315 0.9620524 0.9312052 -0.04214715 0.3620506 0.6740743 0.1980686 0.7116127 0.1009582 0.7151008 0.6916924 0.1405407 -0.3416009 0.9292778 0.06805771 0.5072897 0.8590841 0.1837558 -0.2542856 0.9495119 0.1953545 -0.4287668 0.8820407 -0.01107829 -0.9179149 0.3966227 0.1360549 -0.3993752 0.9066359 0.08399009 -0.5393435 0.8378868 -0.1257388 -0.8258783 0.5496496 0.1388923 -0.4606245 0.8766607 -0.280102 -0.7681593 0.575738 0.1268671 -0.406512 0.9047943 -0.4139002 -0.6779211 0.607544 0.03125107 -0.2923076 0.9558137 -0.5985695 -0.4608372 0.6552433 0.006469905 -0.08377361 0.9964639 -0.427115 0.5537999 0.7147578 0.09091752 0.2611857 0.9609974 -0.5920215 0.3307728 0.7349148 -0.7038875 0.004608333 0.7102965 -0.6962056 -0.1896772 0.6923296 -0.2670767 0.6775344 0.6852863 0.1106618 0.4187204 0.9013475 -0.02111941 0.7646647 0.6440824 0.3089187 0.4767151 0.8229897 0.05453842 0.7739451 0.6309 0.3529848 0.4540033 0.8180971 -0.003601253 0.9824823 0.1863213 0.1979482 0.4526013 0.8694646 -0.6971316 0.07181292 0.7133376 -0.01992881 0.03500515 0.9991884 -0.6913186 0.09790521 0.7158865 -0.04409939 0.0662254 0.9968298 -0.04300171 0.07394838 0.9963346 0.02124106 0.9482188 0.3169071 0.03173947 0.2327359 0.9720219 -0.01162785 0.06714242 0.9976757 -0.01052892 0.06488257 0.9978374 -0.02740567 0.02420121 0.9993315 0.04162788 0.5236755 0.8509002 0.2054832 0.3364394 0.9190132 0.3577168 0.385642 0.8504816 0.274187 0.4312098 0.8595812 0.1981886 0.4189611 0.8861112 -0.03238081 -0.1055354 0.9938883 0.03463935 -0.2739717 0.9611138 0.1488408 -0.3791672 0.9132792 0.184517 -0.3607634 0.9142228 0.08249276 -0.3650679 0.927319 -0.03888106 -0.547296 0.8360356 0.008942127 -0.5605801 0.828052 -0.06015276 -0.8161064 0.5747628 -0.1528105 -0.6280583 0.7630149 -0.05691826 -0.6388884 0.7671911 -0.3790782 -0.4444807 0.811626 -0.507108 0.3654681 0.7805605 -0.5056409 -0.1809784 0.8435486 -0.1160957 0.7174193 0.6868999 -0.3467637 0.6263538 0.6981663 0.1413654 0.7112218 0.688607 0.1134991 0.6578307 0.7445648 -0.5437049 0.01171946 0.8391947 -0.544619 0.09592252 0.8331801 -0.5460866 0.07489496 0.8343743 -0.2642964 -0.9644376 0.002746701 -0.01413029 -0.9998963 0.002807736 -0.5804851 -0.8142662 0.002777278 -0.7610537 -0.6486825 0.002899289 -0.9109001 -0.4126166 0.002960324 -0.9352298 0.3540225 0.003662288 -0.9795906 0.2008133 0.008728325 -0.9828752 -0.1842452 0.003174006 -0.8076503 0.5896543 0.002990841 -0.4783585 0.8781604 0.002716183 -0.1508572 0.9885525 0.00250256 -0.02487313 0.9996874 0.002533078 -0.9992682 0.03811877 0.003174006 -0.999663 -0.02575832 0.003235042 -0.9972437 0.07385629 0.007110953 -0.8735834 0.4866602 0.003723323 -0.9941683 0.1077944 0.003143489 -0.9992751 0.03793478 0.003204464 -0.9996606 -0.02584981 0.003235042 -0.02469015 0.9996921 0.00250256 -0.1512838 0.9884871 0.002563595 -0.4797373 0.8774075 0.002899348 -0.6712418 0.3736479 0.6401731 -0.7146641 0.07748776 0.6951625 -0.9829269 -0.1839688 0.003234982 -0.9114908 -0.4113092 0.003051877 -0.7623296 -0.6471821 0.002990841 -0.5814148 -0.8136023 0.002868771 -0.2641466 -0.9644784 0.002838313 -0.01309245 -0.99991 0.002929747 -0.1994441 -0.7282227 0.6556782 -0.00927788 -0.708966 0.7051816 -0.4227555 -0.5915281 0.6865657 -0.5613982 -0.4765247 0.6765771 -0.6686519 -0.3016548 0.679639 -0.7159444 -0.1339782 0.6851813 -0.3596709 0.6576316 0.6619348 -0.1108774 0.724259 0.680555 -0.7079039 0.02685731 0.705798 -0.7172557 -0.01852494 0.6965638 -0.01754826 0.7115761 0.70239 0.2344773 0.646331 -0.7261382 0.2225489 0.7158982 -0.6617869 0.4066982 0.7187565 -0.5639023 0.5498681 0.7324656 -0.4014217 0.6315358 0.7470819 -0.2074397 0.6774016 0.7351741 0.02542239 0.6788056 0.6933326 0.2418943 0.6042195 0.6447795 0.4681648 0.4576029 0.5833414 0.6710532 0.2482444 0.5317387 0.809709 0.1322389 0.5121704 0.8486427 0.5486959 0.8355718 0.02743631 0.5441839 0.813697 0.2043551 0.4808014 0.7916712 0.3769441 0.3599464 0.7725085 0.523134 0.1928778 0.7593647 0.6214205 0.1002574 0.7508777 0.6527872 0.07523 0.8887518 -0.4521735 0.1494816 0.8890159 -0.4327887 0.2895959 0.8821855 -0.371326 0.4103301 0.8708033 -0.2707965 0.5005776 0.8550593 -0.1352615 0.1396259 0.8812149 0.4516249 0.2582201 0.889167 0.3777625 0.3409278 0.9002802 0.270673 0.3816122 0.9124633 0.1475909 0.3814001 0.9240949 0.02414077 0.3458467 0.9341708 -0.08783507 0.2824851 0.9421563 -0.1803986 0.1989822 0.9478818 -0.2488499 0.1026049 0.9513082 -0.2906631 0.02261453 0.958083 -0.2855968 -0.06128221 0.9533231 0.2956684 0 0.9391664 0.3434627 0 0.9975055 0.07058984 0 0.9863874 -0.1644386 -0.03372341 0.9908587 -0.1306211 0.1175601 0.984032 -0.1336438 0.06003165 0.9858078 -0.1567782 -0.05609333 0.9969847 -0.05362135 -0.08203619 0.9959709 -0.03622651 0.2117443 0.976502 -0.0401026 0.1694734 0.9809802 -0.09464019 0.2456156 0.9632354 0.1088607 0.2391746 0.9705537 0.02865695 -0.1046815 0.9944438 -0.01110905 -0.1215884 0.9923313 0.02224844 0.1740211 0.9472893 0.2689973 0.2249849 0.9550871 0.1928485 -0.1294003 0.9895467 0.06366252 -0.1234812 0.986171 0.110541 0.0954039 0.9414041 0.3235065 -0.09952372 0.9826941 0.1562288 -0.04245185 0.9690683 -0.2431139 0.02822989 0.882269 0.4698985 -0.2746719 0.01113945 -0.9614736 -0.2037757 -0.09326618 -0.974565 0.2949721 -0.3766427 0.8781411 0.7707819 -0.6352786 0.04812806 0.3339151 0.09345102 0.9379593 0.3213346 0.2366749 0.9169129 -0.3225523 0.005066096 -0.9465382 -0.0222482 0.9930533 0.1155444 -0.3383976 0.416588 -0.8437663 0.4696 -0.2654566 -0.8420265 -0.3400744 0.03744691 -0.9396528 0.4164369 -0.01443564 -0.9090501 -0.3746772 0.03445547 -0.9265149 0.6925488 -0.5992811 -0.4015452 -0.2528814 -0.7642595 0.593261 -0.2092075 -0.9146843 -0.3458105 0.479119 -0.3517018 -0.8042082 0.5380845 -0.5737615 0.617465 -0.195932 -0.1394108 0.9706572 0.3474267 -0.1973959 0.9166949 -0.3563461 0.08923912 0.9300827 0.4133253 0.1406642 -0.8996532 -0.3440689 -0.002441465 -0.9389413 0.3886947 0.09808921 0.9161305 -0.4002901 0.07532143 0.9132878 -0.2751926 0.5043621 -0.8184669 0.4097565 0.5548468 -0.7240476 -0.2837114 0.8500357 0.4437875 0.179058 0.8275065 0.5321385 0.3419336 0.2366739 0.9094322 0.3151449 0.4594108 0.830437 0.1093507 -0.7814166 0.6143539 0.03341805 0.3490738 -0.9364992 0.5859661 0.7424678 -0.3246313 -0.02038675 0.8320136 0.5543807 0.111059 0.7220823 -0.6828347 -0.06778395 0.8897978 0.4512928</float_array>
<technique_common>
<accessor source="#Cylinder_003-mesh-normals-array" count="799" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="Cylinder_003-mesh-vertices">
<input semantic="POSITION" source="#Cylinder_003-mesh-positions"/>
</vertices>
<lines count="2">
<input semantic="VERTEX" source="#Cylinder_003-mesh-vertices" offset="0"/>
<p>79 660 703 702</p>
</lines>
<polylist material="Body-material" count="1545">
<input semantic="VERTEX" source="#Cylinder_003-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#Cylinder_003-mesh-normals" offset="1"/>
<vcount>3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 </vcount>
<p>338 0 692 1 310 2 340 3 310 2 311 4 342 5 311 4 312 6 344 7 312 6 313 8 346 9 313 8 314 10 346 9 315 11 348 12 348 12 316 13 350 14 350 14 317 15 352 16 352 16 318 17 354 18 354 18 693 19 701 20 304 21 294 22 296 23 235 24 17 25 16 26 236 27 12 28 11 29 263 30 255 31 252 32 229 33 18 34 17 25 230 35 13 36 12 28 235 24 239 37 231 38 678 39 18 34 232 40 228 41 11 29 289 42 233 43 14 44 13 36 24 45 665 46 69 47 66 48 24 45 69 47 71 49 23 50 66 48 21 51 71 49 70 52 20 53 70 52 67 54 3 55 26 56 4 57 5 58 28 59 6 60 6 60 29 61 7 62 7 62 30 63 8 64 30 63 654 65 8 64 86 66 38 67 91 68 85 69 31 70 87 71 668 72 37 73 90 74 84 75 36 76 89 77 88 78 38 67 34 79 89 77 35 80 86 66 85 69 34 79 33 81 87 71 679 82 667 83 47 84 656 85 24 45 22 86 46 87 23 50 21 51 45 88 22 86 20 53 44 89 21 51 19 90 43 91 20 53 71 49 74 92 75 93 69 47 666 94 73 95 76 96 71 49 75 93 25 97 49 98 26 56 27 99 51 100 28 59 28 59 52 101 29 61 29 61 53 102 30 63 53 102 657 103 30 63 431 104 493 105 432 106 704 107 489 108 431 104 508 109 19 90 445 110 433 111 501 112 434 113 415 114 503 115 499 116 516 117 78 118 48 119 508 109 60 120 42 121 48 119 77 122 49 98 536 123 78 118 532 124 524 125 60 120 520 126 435 127 537 128 419 129 528 130 61 131 524 125 720 132 62 133 528 130 425 134 521 135 423 136 64 137 20 53 67 54 490 138 653 139 711 140 414 141 499 116 495 142 421 143 505 144 416 145 410 146 505 144 503 115 418 147 539 148 515 149 64 137 77 122 78 118 421 143 533 150 517 151 73 95 662 152 53 102 74 92 53 102 52 101 51 100 74 92 52 101 423 136 511 153 411 154 50 155 75 93 51 100 411 154 510 156 435 127 413 157 495 142 491 158 427 159 525 160 425 134 706 161 529 162 427 159 565 163 512 164 564 165 419 129 533 150 429 166 398 167 364 168 401 169 403 170 366 171 365 172 383 173 399 174 384 175 391 176 355 177 386 178 387 179 82 180 83 181 392 182 356 183 358 184 389 185 355 177 356 183 0 186 667 83 653 139 1 187 88 78 85 69 4 57 89 77 86 66 2 188 91 68 88 78 6 60 89 77 5 58 654 65 90 74 8 64 0 186 85 69 87 71 4 57 91 68 3 55 38 67 101 189 97 190 33 81 92 191 31 70 659 192 96 193 37 73 36 76 99 194 95 195 34 79 97 190 94 196 35 80 95 195 101 189 33 81 94 196 100 197 303 198 297 199 293 200 104 201 37 73 105 202 107 203 96 193 93 204 32 205 93 204 99 194 102 206 90 74 104 201 103 207 37 73 107 203 107 203 102 206 103 207 112 208 122 209 115 210 114 211 123 209 113 212 115 210 124 209 114 211 113 212 121 209 116 213 108 214 27 99 5 58 27 99 112 208 50 155 50 155 115 210 76 96 115 210 70 52 76 96 114 211 67 54 70 52 67 54 116 213 77 122 77 122 111 215 49 98 111 215 26 56 49 98 120 209 131 209 122 209 124 209 132 209 123 209 122 209 133 209 124 209 123 209 130 209 121 209 116 213 119 209 111 215 110 216 120 209 112 208 111 215 117 209 109 217 129 209 139 218 131 209 133 209 140 219 132 209 131 209 141 220 133 209 132 209 138 221 130 209 121 209 128 209 119 209 118 209 129 209 120 209 119 209 125 209 117 209 174 222 149 223 173 224 172 225 151 226 150 227 173 224 151 226 178 228 179 229 150 227 148 230 130 209 136 231 128 209 127 209 137 232 129 209 128 209 134 233 125 209 143 234 145 235 144 236 150 227 149 223 148 230 142 237 147 238 145 235 148 230 147 238 146 239 180 240 148 230 146 239 174 222 145 235 147 238 180 240 142 237 181 241 175 242 144 236 145 235 176 243 143 234 144 236 181 241 143 234 177 244 106 245 6 60 7 62 107 203 84 75 106 245 106 245 8 64 90 74 185 246 157 247 159 248 189 249 156 250 188 251 184 252 154 253 157 247 183 254 153 255 154 253 187 256 152 257 182 258 186 259 152 257 153 255 188 251 155 260 187 256 159 248 824 261 161 262 161 262 822 263 160 264 159 248 816 265 820 266 158 267 822 263 818 268 788 269 162 270 169 271 157 247 814 272 816 265 154 253 811 273 814 272 153 255 812 274 811 273 158 267 808 275 156 250 171 276 177 244 167 277 167 277 176 243 166 278 165 279 176 243 175 242 170 280 181 241 171 276 164 281 175 242 174 222 170 280 179 229 180 240 169 271 172 225 179 229 163 282 178 228 168 283 162 270 178 228 172 225 164 281 173 224 163 282 4 57 108 214 5 58 109 217 4 57 26 56 110 216 108 214 118 209 126 284 109 217 117 209 118 209 108 214 127 209 126 284 117 209 125 209 127 209 108 214 135 285 126 284 125 209 134 233 185 246 161 262 191 286 191 286 160 264 190 287 189 249 160 264 158 267 108 214 189 249 135 285 126 284 190 287 108 214 126 284 185 246 191 286 137 232 187 256 139 218 140 219 182 258 186 259 139 218 182 258 141 220 138 221 186 259 183 254 136 231 183 254 184 252 135 285 188 251 137 232 134 233 184 252 185 246 674 288 200 289 210 290 210 290 199 291 211 292 211 292 198 293 212 294 213 295 198 293 197 296 213 295 196 297 214 298 214 298 195 299 215 300 216 301 195 299 194 302 217 303 194 302 193 304 218 305 193 304 192 306 675 307 192 306 670 308 688 309 297 199 300 310 11 29 209 311 289 42 12 28 208 312 11 29 13 36 207 313 12 28 13 36 205 314 206 315 262 316 256 317 261 318 239 37 203 319 204 320 16 26 202 321 203 319 17 25 201 322 202 321 18 34 672 323 201 322 227 324 675 307 676 325 226 326 218 305 227 324 225 313 217 303 226 326 224 327 216 301 225 313 223 328 215 300 224 327 258 329 257 330 248 331 222 332 212 294 213 295 221 333 211 292 212 294 220 334 210 290 211 292 219 335 674 288 210 290 201 322 677 336 219 335 202 321 219 335 220 334 203 319 220 334 221 333 204 320 221 333 222 332 260 337 254 338 257 330 206 315 223 328 224 327 206 315 225 313 207 313 207 313 226 326 208 312 208 312 227 324 209 311 209 311 676 325 680 339 101 189 233 43 97 190 92 191 236 27 228 41 669 340 232 40 96 193 95 195 235 24 231 38 94 196 233 43 230 35 93 204 232 40 229 33 101 189 231 38 237 341 100 197 230 35 236 27 99 194 229 33 235 24 302 342 295 343 294 22 238 344 239 37 15 345 15 345 204 320 240 346 241 347 14 44 242 348 240 346 222 332 243 349 241 347 223 328 205 314 245 350 214 298 246 351 245 350 222 332 213 295 246 351 223 328 244 352 247 353 14 44 237 341 238 344 237 341 231 38 257 330 249 354 248 331 248 331 250 355 251 356 253 357 255 31 256 317 251 356 252 32 253 357 261 318 255 31 264 358 265 359 253 357 262 316 266 360 252 32 250 355 265 359 248 331 251 356 266 360 249 354 267 361 267 361 254 338 259 362 287 363 259 362 278 364 286 365 267 361 287 363 281 366 258 329 265 359 286 365 263 30 266 360 281 366 262 316 279 367 284 368 264 358 280 369 283 370 259 362 260 337 282 371 260 337 258 329 279 367 261 318 284 368 285 372 264 358 263 30 245 350 271 373 243 349 246 351 275 374 270 375 242 348 269 376 268 377 247 353 274 378 269 376 245 350 270 375 276 379 244 352 277 380 275 374 243 349 272 381 240 346 241 347 268 377 277 380 240 346 273 382 15 345 15 345 274 378 238 344 271 373 280 369 285 372 275 374 284 368 270 375 268 377 283 370 282 371 269 376 278 364 283 370 276 379 284 368 280 369 277 380 279 367 275 374 271 373 286 365 272 381 277 380 282 371 281 366 272 381 287 363 273 382 273 382 278 364 274 378 10 383 228 41 289 42 825 384 679 82 31 70 290 385 92 191 291 386 292 387 289 42 209 311 292 387 680 339 673 388 291 386 228 41 288 389 295 343 681 390 684 391 296 23 294 22 682 392 681 390 297 199 685 393 294 22 684 391 682 392 828 394 683 395 689 396 301 397 293 200 295 343 288 389 298 398 234 399 658 400 827 401 687 402 291 386 234 399 9 403 292 387 686 404 98 405 10 383 98 405 298 398 290 385 9 403 299 406 309 407 303 198 301 397 829 408 689 396 690 409 309 407 302 342 306 410 305 411 688 309 300 310 307 412 300 310 303 198 306 410 304 21 308 413 9 403 308 413 299 406 98 405 307 412 298 398 686 404 305 411 98 405 234 399 306 410 9 403 827 401 690 409 687 402 298 398 309 407 234 399 353 414 661 415 47 84 351 416 47 84 46 87 349 417 46 87 45 88 44 89 349 417 45 88 43 91 347 418 44 89 42 121 345 419 43 91 60 120 343 420 42 121 61 131 341 421 60 120 62 133 339 422 61 131 319 423 694 424 320 425 321 426 320 425 322 427 323 428 322 427 324 429 325 430 324 429 326 431 327 432 326 431 328 433 327 432 330 434 329 435 329 435 332 436 331 437 331 437 334 438 333 439 333 439 336 440 335 441 335 441 697 442 696 443 660 444 337 445 62 133 319 423 695 446 698 447 694 424 338 0 320 425 321 426 337 445 319 423 320 425 340 3 322 427 323 428 339 422 321 426 324 429 340 3 342 5 325 430 341 421 323 428 326 431 342 5 344 7 327 432 343 420 325 430 328 433 344 7 346 9 327 432 347 418 345 419 328 433 348 12 330 434 329 435 349 417 347 418 330 434 350 14 332 436 331 437 351 416 349 417 332 436 352 16 334 438 333 439 353 414 351 416 334 438 354 18 336 440 335 441 700 448 353 414 697 442 354 18 701 20 83 181 66 48 81 449 392 182 357 450 391 176 80 451 66 48 69 47 82 180 69 47 73 95 355 177 361 452 359 453 372 454 373 455 374 456 356 183 362 457 358 184 357 450 362 457 361 452 355 177 360 458 356 183 368 459 369 460 370 461 382 462 47 84 24 45 382 462 23 50 385 463 23 50 384 175 385 463 367 464 364 168 363 465 370 461 365 172 366 171 370 461 364 168 368 459 367 464 365 172 369 460 371 466 360 458 359 453 374 456 361 452 362 457 374 456 360 458 372 454 371 466 361 452 373 455 541 467 375 468 540 469 378 470 381 471 379 472 542 473 376 474 703 475 541 467 703 475 377 476 543 477 375 468 376 474 379 472 375 468 378 470 380 478 703 475 381 471 379 472 703 475 376 474 380 478 375 468 377 476 401 169 366 171 404 479 395 480 387 179 394 481 396 482 392 182 391 176 395 480 392 182 397 483 394 481 390 484 396 482 83 181 73 95 74 92 388 485 80 451 82 180 393 486 81 449 80 451 387 179 81 449 390 484 386 178 396 482 391 176 388 485 397 483 393 486 390 484 397 483 396 482 389 185 394 481 386 178 398 167 365 172 363 465 407 487 399 174 406 488 408 489 402 490 405 491 408 489 400 492 407 487 409 493 399 174 402 490 385 463 399 174 400 492 405 491 385 463 400 492 405 491 383 173 382 462 47 84 384 175 46 87 398 167 409 493 403 170 401 169 408 489 407 487 403 170 408 489 404 479 398 167 407 487 406 488 704 107 413 157 705 494 431 104 414 141 413 157 432 106 415 114 414 141 433 111 410 146 415 114 410 146 417 495 416 145 435 127 412 496 411 154 416 145 422 497 421 143 411 154 424 498 423 136 423 136 426 499 425 134 425 134 428 500 427 159 427 159 707 501 706 161 429 166 422 497 430 502 419 129 430 502 420 503 419 129 418 147 435 127 434 113 507 504 417 495 432 106 497 505 433 111 490 138 1 187 0 186 560 506 441 507 439 508 494 509 2 188 1 187 561 510 443 511 441 507 498 512 3 55 2 188 726 513 439 508 716 514 504 515 3 55 502 516 504 515 48 119 25 97 558 517 457 518 437 519 705 494 491 158 719 520 563 521 512 164 487 522 422 497 507 504 519 523 562 524 457 518 559 525 412 496 515 149 514 526 566 527 463 528 565 163 426 499 523 529 527 530 568 531 471 532 566 527 428 500 527 530 531 533 569 534 475 535 568 531 707 501 531 533 723 536 727 537 479 538 569 534 430 502 519 523 535 539 562 524 483 540 467 541 420 503 535 539 539 148 567 542 487 522 483 540 445 110 64 137 536 123 424 498 514 526 523 529 488 543 709 544 708 545 446 546 710 547 447 548 488 543 440 549 438 550 448 551 447 548 449 552 496 553 440 549 492 554 450 555 449 552 451 556 500 557 442 558 496 553 452 559 451 556 453 560 454 561 453 560 455 562 506 563 436 564 500 557 509 565 459 566 458 567 460 568 462 569 461 570 454 561 465 571 464 572 518 573 456 574 506 563 458 567 469 575 468 576 522 577 462 569 513 578 468 576 473 579 472 580 526 581 470 582 522 577 472 580 477 583 476 584 530 585 474 586 526 581 476 584 713 587 712 588 722 589 478 590 530 585 480 591 465 571 481 592 518 573 482 593 466 594 480 591 485 595 484 596 534 597 486 598 482 593 484 596 444 599 509 565 538 600 461 570 486 598 557 601 437 519 443 511 708 545 439 508 488 543 438 550 717 602 709 544 446 546 711 140 718 603 710 547 491 158 447 548 492 554 439 508 441 507 438 550 493 105 489 108 446 546 494 509 490 138 449 552 491 158 495 142 492 554 443 511 496 553 442 558 493 105 440 549 450 555 494 509 448 551 449 552 499 116 451 556 496 553 437 519 500 557 436 564 497 505 442 558 450 555 502 516 498 512 453 560 499 116 503 115 452 559 504 515 502 516 455 562 503 115 505 144 506 563 437 519 457 518 436 564 507 504 501 112 458 567 445 110 509 565 444 599 511 153 459 566 513 578 512 164 463 528 461 570 514 526 515 149 454 561 516 117 504 515 465 571 505 144 517 151 518 573 457 518 467 541 456 574 519 523 507 504 458 567 520 126 508 109 469 575 511 153 521 135 522 577 463 528 471 532 462 569 523 529 514 526 472 580 520 126 468 576 469 575 525 160 473 579 522 577 475 535 526 581 474 586 523 529 470 582 472 580 528 130 524 125 477 583 525 160 529 162 530 585 475 535 479 538 474 586 531 533 527 530 712 588 528 130 476 584 477 583 721 604 713 587 530 585 715 605 722 589 714 606 531 533 478 590 464 572 532 124 516 117 481 592 517 151 533 150 534 597 467 541 483 540 466 594 535 539 519 523 484 596 532 124 480 591 481 592 537 128 485 595 534 597 487 522 538 600 486 598 535 539 482 593 509 565 536 123 484 596 485 595 510 156 444 599 538 600 512 164 460 568 461 570 539 148 486 598 102 206 543 477 103 207 104 201 542 473 541 467 103 207 542 473 105 202 102 206 541 467 540 469 728 607 54 608 663 609 570 610 55 611 54 608 571 612 56 613 55 611 572 614 63 615 56 613 573 616 57 617 63 615 576 618 58 619 575 620 577 621 57 617 574 622 578 623 65 624 576 618 579 625 41 626 578 623 580 627 40 628 579 625 729 629 39 630 580 627 581 631 59 632 577 621 582 633 72 634 581 631 575 620 68 635 582 633 56 613 558 517 557 601 72 634 563 521 567 542 59 632 567 542 562 524 664 636 569 534 39 630 39 630 568 531 40 628 40 628 566 527 41 626 41 626 565 163 65 624 59 632 559 525 57 617 68 635 564 165 563 521 63 615 559 525 558 517 663 609 560 506 726 513 55 611 557 601 561 510 54 608 561 510 560 506 65 624 564 165 58 619 550 637 582 633 556 638 556 638 581 631 555 639 555 639 577 621 551 640 725 641 580 627 554 642 554 642 579 625 553 643 553 643 578 623 552 644 552 644 576 618 549 645 551 640 574 622 548 646 549 645 575 620 550 637 548 646 573 616 547 647 546 648 573 616 572 614 545 649 572 614 571 612 544 650 571 612 570 610 544 650 728 607 724 651 643 209 642 209 597 209 583 652 724 651 730 653 583 652 545 649 544 650 585 654 545 649 584 655 586 656 546 648 585 654 586 656 548 646 547 647 589 657 549 645 550 637 587 658 551 640 548 646 591 659 549 645 588 660 591 659 553 643 552 644 592 661 554 642 553 643 593 662 725 641 554 642 590 663 555 639 551 640 595 664 555 639 594 665 589 657 556 638 595 664 609 666 730 653 733 667 609 666 584 655 583 652 610 668 585 654 584 655 611 669 586 656 585 654 612 670 587 658 586 656 615 671 589 657 614 672 613 673 590 663 587 658 617 674 588 660 615 671 618 675 591 659 617 674 619 676 592 661 618 675 732 677 593 662 619 676 620 678 590 663 616 679 621 680 594 665 620 678 614 672 595 664 621 680 615 671 628 681 617 674 632 682 620 678 631 683 631 683 616 679 627 684 734 685 619 676 630 686 630 686 618 675 629 687 629 687 617 674 628 681 604 688 632 682 608 689 626 690 616 679 613 673 625 691 613 673 612 670 624 692 612 670 611 669 623 693 611 669 610 668 622 694 610 668 609 666 622 694 733 667 735 695 598 696 735 695 736 697 598 696 623 693 622 694 599 698 624 692 623 693 600 699 625 691 624 692 601 700 626 690 625 691 602 701 627 684 626 690 605 702 628 681 604 688 606 703 629 687 605 702 606 703 734 685 630 686 607 704 627 684 603 705 608 689 631 683 607 704 597 209 736 697 737 706 596 209 598 696 736 697 633 209 599 698 598 696 635 209 599 698 634 209 635 209 601 700 600 699 636 209 602 701 601 700 637 209 603 705 602 701 640 209 605 702 604 688 639 209 606 703 605 702 597 209 606 703 641 209 638 209 607 704 603 705 643 209 607 704 642 209 640 209 608 689 643 209 671 707 652 708 200 289 200 289 651 709 199 291 199 291 650 710 198 293 198 293 649 711 197 296 197 296 648 712 196 297 195 299 648 712 647 713 194 302 647 713 646 714 193 304 646 714 645 715 192 306 645 715 644 716 670 308 644 716 738 717 647 713 744 718 743 719 645 715 742 720 741 721 738 717 740 722 749 723 652 708 750 724 748 725 650 710 747 726 746 727 648 712 745 728 744 718 646 714 743 719 742 720 644 716 741 721 740 722 651 709 748 725 747 726 649 711 746 727 745 728 772 729 749 723 740 722 774 730 740 722 741 721 775 731 741 721 742 720 776 732 742 720 743 719 777 733 743 719 744 718 778 734 744 718 745 728 779 735 745 728 746 727 780 736 746 727 747 726 781 737 747 726 748 725 782 738 748 725 750 724 762 739 751 740 771 741 761 742 770 743 771 741 759 744 760 745 771 741 769 746 768 747 771 741 757 748 758 749 771 741 755 750 756 751 771 741 767 752 766 753 771 741 753 754 754 755 771 741 765 756 764 757 771 741 751 740 752 758 771 741 763 759 762 739 771 741 760 745 761 742 771 741 770 743 769 746 771 741 758 749 759 744 771 741 768 747 767 752 771 741 756 751 757 748 771 741 754 755 755 750 771 741 766 753 765 756 771 741 752 758 753 754 771 741 764 757 763 759 771 741 761 742 784 760 770 743 762 739 773 761 751 740 761 742 781 737 782 738 760 745 780 736 781 737 759 744 779 735 780 736 758 749 778 734 779 735 757 748 777 733 778 734 756 751 776 732 777 733 755 750 775 731 776 732 754 755 774 730 775 731 753 754 772 729 774 730 752 758 773 761 772 729 805 762 163 282 796 763 796 763 168 283 809 764 794 765 168 283 162 270 790 766 169 271 170 280 792 767 170 280 171 276 817 768 164 281 805 762 792 767 167 277 823 769 817 768 166 278 165 279 823 769 166 278 821 770 156 250 807 771 155 260 806 772 798 773 797 774 785 775 793 776 786 777 785 775 795 778 806 772 810 779 787 780 793 776 813 781 789 782 787 780 797 774 800 783 799 784 815 785 791 786 789 782 801 787 800 783 802 788 801 787 804 789 803 790 803 790 791 786 819 791 155 260 812 274 152 257 797 774 796 763 806 772 798 773 807 771 808 275 785 775 794 765 810 779 786 777 811 273 812 274 806 772 809 764 785 775 795 778 812 274 807 771 813 781 794 765 788 269 787 780 811 273 793 776 815 785 788 269 790 766 789 782 814 272 787 780 797 774 817 768 805 762 798 773 818 268 800 783 819 791 790 766 792 767 791 786 816 265 789 782 799 784 821 770 817 768 802 788 818 268 822 263 801 787 823 769 821 770 802 788 824 261 804 789 803 790 792 767 823 769 804 789 820 266 791 786 299 406 829 408 827 401 308 413 828 394 829 408 825 384 299 406 827 401 828 394 296 23 826 792 338 0 699 793 692 1 340 3 338 0 310 2 342 5 340 3 311 4 344 7 342 5 312 6 346 9 344 7 313 8 346 9 314 10 315 11 348 12 315 11 316 13 350 14 316 13 317 15 352 16 317 15 318 17 354 18 318 17 693 19 304 21 302 342 294 22 235 24 229 33 17 25 236 27 230 35 12 28 263 30 264 358 255 31 229 33 232 40 18 34 230 35 233 43 13 36 235 24 16 26 239 37 678 39 655 794 18 34 228 41 236 27 11 29 233 43 237 341 14 44 24 45 656 85 665 46 66 48 23 50 24 45 71 49 22 86 23 50 21 51 22 86 71 49 20 53 21 51 70 52 3 55 25 97 26 56 5 58 27 99 28 59 6 60 28 59 29 61 7 62 29 61 30 63 30 63 657 103 654 65 86 66 35 80 38 67 85 69 33 81 31 70 668 72 659 192 37 73 84 75 32 205 36 76 88 78 91 68 38 67 89 77 36 76 35 80 85 69 88 78 34 79 87 71 31 70 679 82 47 84 661 415 656 85 22 86 45 88 46 87 21 51 44 89 45 88 20 53 43 91 44 89 19 90 42 121 43 91 71 49 66 48 74 92 69 47 665 46 666 94 76 96 70 52 71 49 25 97 48 119 49 98 27 99 50 155 51 100 28 59 51 100 52 101 29 61 52 101 53 102 53 102 662 152 657 103 431 104 489 108 493 105 704 107 717 602 489 108 508 109 42 121 19 90 433 111 497 505 501 112 415 114 410 146 503 115 516 117 532 124 78 118 508 109 520 126 60 120 48 119 78 118 77 122 536 123 64 137 78 118 524 125 61 131 60 120 435 127 510 156 537 128 528 130 62 133 61 131 720 132 660 444 62 133 425 134 525 160 521 135 64 137 19 90 20 53 490 138 0 186 653 139 414 141 415 114 499 116 421 143 517 151 505 144 410 146 416 145 505 144 418 147 420 503 539 148 64 137 67 54 77 122 421 143 429 166 533 150 73 95 666 94 662 152 74 92 73 95 53 102 51 100 75 93 74 92 423 136 521 135 511 153 50 155 76 96 75 93 411 154 511 153 510 156 413 157 414 141 495 142 427 159 529 162 525 160 706 161 721 604 529 162 565 163 463 528 512 164 419 129 537 128 533 150 398 167 363 465 364 168 403 170 404 479 366 171 383 173 402 490 399 174 391 176 357 450 355 177 387 179 388 485 82 180 392 182 389 185 356 183 389 185 386 178 355 177 0 186 87 71 667 83 1 187 2 188 88 78 4 57 5 58 89 77 2 188 3 55 91 68 6 60 84 75 89 77 654 65 668 72 90 74 0 186 1 187 85 69 4 57 86 66 91 68 38 67 35 80 101 189 33 81 100 197 92 191 659 192 669 340 96 193 36 76 32 205 99 194 34 79 38 67 97 190 35 80 36 76 95 195 33 81 34 79 94 196 303 198 300 310 297 199 104 201 90 74 37 73 107 203 37 73 96 193 32 205 107 203 93 204 102 206 106 245 90 74 103 207 105 202 37 73 107 203 106 245 102 206 112 208 120 209 122 209 114 211 124 209 123 209 115 210 122 209 124 209 113 212 123 209 121 209 108 214 110 216 27 99 27 99 110 216 112 208 50 155 112 208 115 210 115 210 114 211 70 52 114 211 113 212 67 54 67 54 113 212 116 213 77 122 116 213 111 215 111 215 109 217 26 56 120 209 129 209 131 209 124 209 133 209 132 209 122 209 131 209 133 209 123 209 132 209 130 209 116 213 121 209 119 209 110 216 118 209 120 209 111 215 119 209 117 209 129 209 137 232 139 218 133 209 141 220 140 219 131 209 139 218 141 220 132 209 140 219 138 221 121 209 130 209 128 209 118 209 127 209 129 209 119 209 128 209 125 209 174 222 147 238 149 223 172 225 178 228 151 226 173 224 149 223 151 226 179 229 172 225 150 227 130 209 138 221 136 231 127 209 135 285 137 232 128 209 136 231 134 233 143 234 142 237 145 235 150 227 151 226 149 223 142 237 146 239 147 238 148 230 149 223 147 238 180 240 179 229 148 230 174 222 175 242 145 235 180 240 146 239 142 237 175 242 176 243 144 236 176 243 177 244 143 234 181 241 142 237 143 234 106 245 84 75 6 60 107 203 32 205 84 75 106 245 7 62 8 64 185 246 184 252 157 247 189 249 158 267 156 250 184 252 183 254 154 253 183 254 186 259 153 255 187 256 155 260 152 257 186 259 182 258 152 257 188 251 156 250 155 260 159 248 820 266 824 261 161 262 824 261 822 263 159 248 157 247 816 265 158 267 160 264 822 263 788 269 794 765 162 270 157 247 154 253 814 272 154 253 153 255 811 273 153 255 152 257 812 274 158 267 818 268 808 275 171 276 181 241 177 244 167 277 177 244 176 243 165 279 166 278 176 243 170 280 180 240 181 241 164 281 165 279 175 242 170 280 169 271 179 229 169 271 162 270 172 225 163 282 173 224 178 228 162 270 168 283 178 228 164 281 174 222 173 224 4 57 126 284 108 214 109 217 126 284 4 57 185 246 159 248 161 262 191 286 161 262 160 264 189 249 190 287 160 264 108 214 190 287 189 249 126 284 191 286 190 287 126 284 134 233 185 246 137 232 188 251 187 256 140 219 141 220 182 258 139 218 187 256 182 258 138 221 140 219 186 259 136 231 138 221 183 254 135 285 189 249 188 251 134 233 136 231 184 252 674 288 671 707 200 289 210 290 200 289 199 291 211 292 199 291 198 293 213 295 212 294 198 293 213 295 197 296 196 297 214 298 196 297 195 299 216 301 215 300 195 299 217 303 216 301 194 302 218 305 217 303 193 304 675 307 218 305 192 306 688 309 685 393 297 199 11 29 208 312 209 311 12 28 207 313 208 312 13 36 206 315 207 313 13 36 14 44 205 314 262 316 253 357 256 317 239 37 16 26 203 319 16 26 17 25 202 321 17 25 18 34 201 322 18 34 655 794 672 323 227 324 218 305 675 307 226 326 217 303 218 305 225 313 216 301 217 303 224 327 215 300 216 301 223 328 214 298 215 300 258 329 260 337 257 330 222 332 221 333 212 294 221 333 220 334 211 292 220 334 219 335 210 290 219 335 677 336 674 288 201 322 672 323 677 336 202 321 201 322 219 335 203 319 202 321 220 334 204 320 203 319 221 333 260 337 259 362 254 338 206 315 205 314 223 328 206 315 224 327 225 313 207 313 225 313 226 326 208 312 226 326 227 324 209 311 227 324 676 325 101 189 237 341 233 43 92 191 100 197 236 27 669 340 678 39 232 40 95 195 99 194 235 24 94 196 97 190 233 43 93 204 96 193 232 40 101 189 95 195 231 38 100 197 94 196 230 35 99 194 93 204 229 33 302 342 301 397 295 343 238 344 231 38 239 37 15 345 239 37 204 320 241 347 205 314 14 44 240 346 204 320 222 332 241 347 244 352 223 328 245 350 213 295 214 298 245 350 243 349 222 332 246 351 214 298 223 328 247 353 242 348 14 44 238 344 247 353 237 341 257 330 254 338 249 354 248 331 249 354 250 355 253 357 252 32 255 31 251 356 250 355 252 32 261 318 256 317 255 31 265 359 251 356 253 357 266 360 263 30 252 32 265 359 258 329 248 331 266 360 250 355 249 354 267 361 249 354 254 338 287 363 267 361 259 362 286 365 266 360 267 361 281 366 282 371 258 329 286 365 285 372 263 30 281 366 265 359 262 316 284 368 261 318 264 358 283 370 278 364 259 362 282 371 283 370 260 337 279 367 262 316 261 318 285 372 280 369 264 358 245 350 276 379 271 373 246 351 244 352 275 374 242 348 247 353 269 376 247 353 238 344 274 378 245 350 246 351 270 375 244 352 241 347 277 380 243 349 271 373 272 381 241 347 242 348 268 377 240 346 272 381 273 382 15 345 273 382 274 378 271 373 276 379 280 369 275 374 279 367 284 368 268 377 269 376 283 370 269 376 274 378 278 364 276 379 270 375 284 368 277 380 281 366 279 367 271 373 285 372 286 365 277 380 268 377 282 371 272 381 286 365 287 363 273 382 287 363 278 364 10 383 288 389 228 41 31 70 290 385 825 384 825 384 658 400 679 82 290 385 31 70 92 191 292 387 10 383 289 42 292 387 209 311 680 339 291 386 92 191 228 41 295 343 293 200 681 390 682 392 683 395 826 792 826 792 296 23 682 392 681 390 293 200 297 199 294 22 295 343 684 391 828 394 826 792 683 395 301 397 303 198 293 200 288 389 10 383 298 398 658 400 825 384 827 401 291 386 288 389 234 399 292 387 673 388 686 404 10 383 292 387 98 405 290 385 291 386 9 403 309 407 307 412 303 198 829 408 828 394 689 396 309 407 301 397 302 342 305 411 691 795 688 309 307 412 305 411 300 310 306 410 302 342 304 21 9 403 306 410 308 413 98 405 305 411 307 412 686 404 691 795 305 411 234 399 309 407 306 410 827 401 829 408 690 409 298 398 307 412 309 407 353 414 700 448 661 415 351 416 353 414 47 84 349 417 351 416 46 87 44 89 347 418 349 417 43 91 345 419 347 418 42 121 343 420 345 419 60 120 341 421 343 420 61 131 339 422 341 421 62 133 337 445 339 422 319 423 698 447 694 424 321 426 319 423 320 425 323 428 321 426 322 427 325 430 323 428 324 429 327 432 325 430 326 431 327 432 328 433 330 434 329 435 330 434 332 436 331 437 332 436 334 438 333 439 334 438 336 440 335 441 336 440 697 442 660 444 695 446 337 445 319 423 337 445 695 446 694 424 699 793 338 0 321 426 339 422 337 445 320 425 338 0 340 3 323 428 341 421 339 422 324 429 322 427 340 3 325 430 343 420 341 421 326 431 324 429 342 5 327 432 345 419 343 420 328 433 326 431 344 7 327 432 329 435 347 418 328 433 346 9 348 12 329 435 331 437 349 417 330 434 348 12 350 14 331 437 333 439 351 416 332 436 350 14 352 16 333 439 335 441 353 414 334 438 352 16 354 18 335 441 696 443 700 448 697 442 336 440 354 18 83 181 74 92 66 48 392 182 358 184 357 450 80 451 81 449 66 48 82 180 80 451 69 47 355 177 357 450 361 452 372 454 371 466 373 455 356 183 360 458 362 457 357 450 358 184 362 457 355 177 359 453 360 458 368 459 367 464 369 460 382 462 383 173 47 84 382 462 24 45 23 50 23 50 46 87 384 175 367 464 368 459 364 168 370 461 369 460 365 172 370 461 366 171 364 168 367 464 363 465 365 172 371 466 372 454 360 458 374 456 373 455 361 452 374 456 362 457 360 458 371 466 359 453 361 452 541 467 377 476 375 468 378 470 380 478 381 471 542 473 543 477 376 474 541 467 542 473 703 475 543 477 540 469 375 468 379 472 376 474 375 468 380 478 377 476 703 475 379 472 381 471 703 475 380 478 378 470 375 468 401 169 364 168 366 171 395 480 388 485 387 179 396 482 397 483 392 182 395 480 389 185 392 182 394 481 387 179 390 484 83 181 82 180 73 95 388 485 393 486 80 451 393 486 390 484 81 449 387 179 83 181 81 449 386 178 394 481 396 482 388 485 395 480 397 483 390 484 393 486 397 483 389 185 395 480 394 481 398 167 403 170 365 172 407 487 400 492 399 174 408 489 409 493 402 490 408 489 405 491 400 492 409 493 406 488 399 174 385 463 384 175 399 174 405 491 382 462 385 463 405 491 402 490 383 173 47 84 383 173 384 175 398 167 406 488 409 493 401 169 404 479 408 489 403 170 409 493 408 489 398 167 401 169 407 487 704 107 431 104 413 157 431 104 432 106 414 141 432 106 433 111 415 114 433 111 434 113 410 146 410 146 434 113 417 495 435 127 418 147 412 496 416 145 417 495 422 497 411 154 412 496 424 498 423 136 424 498 426 499 425 134 426 499 428 500 427 159 428 500 707 501 429 166 421 143 422 497 419 129 429 166 430 502 419 129 420 503 418 147 434 113 501 112 507 504 432 106 493 105 497 505 490 138 494 509 1 187 560 506 561 510 441 507 494 509 498 512 2 188 561 510 557 601 443 511 498 512 502 516 3 55 726 513 560 506 439 508 504 515 25 97 3 55 504 515 516 117 48 119 558 517 559 525 457 518 705 494 413 157 491 158 563 521 564 165 512 164 422 497 417 495 507 504 562 524 467 541 457 518 412 496 418 147 515 149 566 527 471 532 463 528 426 499 424 498 523 529 568 531 475 535 471 532 428 500 426 499 527 530 569 534 479 538 475 535 707 501 428 500 531 533 727 537 715 605 479 538 430 502 422 497 519 523 562 524 567 542 483 540 420 503 430 502 535 539 567 542 563 521 487 522 445 110 19 90 64 137 424 498 412 496 514 526 488 543 438 550 709 544 446 546 718 603 710 547 488 543 492 554 440 549 448 551 446 546 447 548 496 553 442 558 440 549 450 555 448 551 449 552 500 557 436 564 442 558 452 559 450 555 451 556 454 561 452 559 453 560 506 563 456 574 436 564 509 565 444 599 459 566 460 568 513 578 462 569 454 561 455 562 465 571 518 573 466 594 456 574 458 567 459 566 469 575 522 577 470 582 462 569 468 576 469 575 473 579 526 581 474 586 470 582 472 580 473 579 477 583 530 585 478 590 474 586 476 584 477 583 713 587 722 589 714 606 478 590 480 591 464 572 465 571 518 573 534 597 482 593 480 591 481 592 485 595 534 597 538 600 486 598 484 596 485 595 444 599 538 600 460 568 461 570 557 601 558 517 437 519 708 545 716 514 439 508 438 550 489 108 717 602 446 546 490 138 711 140 710 547 719 520 491 158 492 554 488 543 439 508 438 550 440 549 493 105 446 546 448 551 494 509 449 552 447 548 491 158 492 554 441 507 443 511 442 558 497 505 493 105 450 555 498 512 494 509 449 552 495 142 499 116 496 553 443 511 437 519 436 564 501 112 497 505 450 555 452 559 502 516 453 560 451 556 499 116 452 559 454 561 504 515 455 562 453 560 503 115 506 563 500 557 437 519 436 564 456 574 507 504 458 567 508 109 445 110 444 599 510 156 511 153 513 578 460 568 512 164 461 570 462 569 514 526 454 561 464 572 516 117 465 571 455 562 505 144 518 573 506 563 457 518 456 574 466 594 519 523 458 567 468 576 520 126 469 575 459 566 511 153 522 577 513 578 463 528 462 569 470 582 523 529 472 580 524 125 520 126 469 575 521 135 525 160 522 577 471 532 475 535 474 586 527 530 523 529 472 580 476 584 528 130 477 583 473 579 525 160 530 585 526 581 475 535 474 586 478 590 531 533 712 588 720 132 528 130 477 583 529 162 721 604 530 585 479 538 715 605 714 606 723 536 531 533 464 572 480 591 532 124 481 592 465 571 517 151 534 597 518 573 467 541 466 594 482 593 535 539 484 596 536 123 532 124 481 592 533 150 537 128 534 597 483 540 487 522 486 598 539 148 535 539 509 565 445 110 536 123 485 595 537 128 510 156 538 600 487 522 512 164 461 570 515 149 539 148 102 206 540 469 543 477 104 201 105 202 542 473 103 207 543 477 542 473 102 206 104 201 541 467 728 607 570 610 54 608 570 610 571 612 55 611 571 612 572 614 56 613 572 614 573 616 63 615 573 616 574 622 57 617 576 618 65 624 58 619 577 621 59 632 57 617 578 623 41 626 65 624 579 625 40 628 41 626 580 627 39 630 40 628 729 629 664 636 39 630 581 631 72 634 59 632 582 633 68 635 72 634 575 620 58 619 68 635 56 613 63 615 558 517 72 634 68 635 563 521 59 632 72 634 567 542 664 636 727 537 569 534 39 630 569 534 568 531 40 628 568 531 566 527 41 626 566 527 565 163 59 632 562 524 559 525 68 635 58 619 564 165 63 615 57 617 559 525 663 609 54 608 560 506 55 611 56 613 557 601 54 608 55 611 561 510 65 624 565 163 564 165 550 637 575 620 582 633 556 638 582 633 581 631 555 639 581 631 577 621 725 641 729 629 580 627 554 642 580 627 579 625 553 643 579 625 578 623 552 644 578 623 576 618 551 640 577 621 574 622 549 645 576 618 575 620 548 646 574 622 573 616 546 648 547 647 573 616 545 649 546 648 572 614 544 650 545 649 571 612 544 650 570 610 728 607 634 209 633 209 596 209 596 209 597 209 637 209 641 209 639 209 643 209 640 209 643 209 639 209 642 209 638 209 597 209 637 209 636 209 596 209 635 209 634 209 636 209 597 209 638 209 637 209 643 209 597 209 641 209 636 209 634 209 596 209 583 652 544 650 724 651 583 652 584 655 545 649 585 654 546 648 545 649 586 656 547 647 546 648 586 656 587 658 548 646 589 657 588 660 549 645 587 658 590 663 551 640 591 659 552 644 549 645 591 659 592 661 553 643 592 661 593 662 554 642 593 662 731 796 725 641 590 663 594 665 555 639 595 664 556 638 555 639 589 657 550 637 556 638 609 666 583 652 730 653 609 666 610 668 584 655 610 668 611 669 585 654 611 669 612 670 586 656 612 670 613 673 587 658 615 671 588 660 589 657 613 673 616 679 590 663 617 674 591 659 588 660 618 675 592 661 591 659 619 676 593 662 592 661 732 677 731 796 593 662 620 678 594 665 590 663 621 680 595 664 594 665 614 672 589 657 595 664 614 672 621 680 628 681 632 682 628 681 621 680 615 671 614 672 628 681 632 682 621 680 620 678 631 683 620 678 616 679 734 685 732 677 619 676 630 686 619 676 618 675 629 687 618 675 617 674 604 688 628 681 632 682 626 690 627 684 616 679 625 691 626 690 613 673 624 692 625 691 612 670 623 693 624 692 611 669 622 694 623 693 610 668 622 694 609 666 733 667 598 696 622 694 735 695 598 696 599 698 623 693 599 698 600 699 624 692 600 699 601 700 625 691 601 700 602 701 626 690 602 701 603 705 627 684 605 702 629 687 628 681 606 703 630 686 629 687 606 703 737 706 734 685 607 704 631 683 627 684 608 689 632 682 631 683 597 209 596 209 736 697 596 209 633 209 598 696 633 209 634 209 599 698 635 209 600 699 599 698 635 209 636 209 601 700 636 209 637 209 602 701 637 209 638 209 603 705 640 209 639 209 605 702 639 209 641 209 606 703 597 209 737 706 606 703 638 209 642 209 607 704 643 209 608 689 607 704 640 209 604 688 608 689 671 707 739 797 652 708 200 289 652 708 651 709 199 291 651 709 650 710 198 293 650 710 649 711 197 296 649 711 648 712 195 299 196 297 648 712 194 302 195 299 647 713 193 304 194 302 646 714 192 306 193 304 645 715 670 308 192 306 644 716 647 713 648 712 744 718 645 715 646 714 742 720 738 717 644 716 740 722 652 708 739 797 750 724 650 710 651 709 747 726 648 712 649 711 745 728 646 714 647 713 743 719 644 716 645 715 741 721 651 709 652 708 748 725 649 711 650 710 746 727 772 729 773 761 749 723 774 730 772 729 740 722 775 731 774 730 741 721 776 732 775 731 742 720 777 733 776 732 743 719 778 734 777 733 744 718 779 735 778 734 745 728 780 736 779 735 746 727 781 737 780 736 747 726 782 738 781 737 748 725 761 742 782 738 784 760 762 739 783 798 773 761 761 742 760 745 781 737 760 745 759 744 780 736 759 744 758 749 779 735 758 749 757 748 778 734 757 748 756 751 777 733 756 751 755 750 776 732 755 750 754 755 775 731 754 755 753 754 774 730 753 754 752 758 772 729 752 758 751 740 773 761 805 762 164 281 163 282 796 763 163 282 168 283 794 765 809 764 168 283 790 766 788 269 169 271 792 767 790 766 170 280 817 768 165 279 164 281 792 767 171 276 167 277 817 768 821 770 166 278 823 769 167 277 166 278 156 250 808 275 807 771 806 772 795 778 798 773 785 775 810 779 793 776 785 775 786 777 795 778 810 779 813 781 787 780 813 781 815 785 789 782 797 774 798 773 800 783 815 785 819 791 791 786 801 787 799 784 800 783 801 787 802 788 804 789 803 790 804 789 791 786 155 260 807 771 812 274 797 774 805 762 796 763 798 773 795 778 807 771 785 775 809 764 794 765 786 777 793 776 811 273 806 772 796 763 809 764 795 778 786 777 812 274 813 781 810 779 794 765 787 780 814 272 811 273 815 785 813 781 788 269 789 782 816 265 814 272 797 774 799 784 817 768 798 773 808 275 818 268 819 791 815 785 790 766 791 786 820 266 816 265 799 784 801 787 821 770 802 788 800 783 818 268 801 787 803 790 823 769 802 788 822 263 824 261 803 790 819 791 792 767 804 789 824 261 820 266 299 406 308 413 829 408 308 413 304 21 828 394 825 384 290 385 299 406 828 394 304 21 296 23</p>
</polylist>
</mesh>
</geometry>
<geometry id="Cylinder_002-mesh" name="Cylinder.002">
<mesh>
<source id="Cylinder_002-mesh-positions">
<float_array id="Cylinder_002-mesh-positions-array" count="600">0 1.57862 1.237595 0 -2.676028 1.31913 0.3902409 1.578521 1.175787 0.3945717 -2.676128 1.256636 0.7422822 1.578235 0.9964134 0.75052 -2.676418 1.075272 1.021664 1.577788 0.717032 1.033002 -2.676869 0.7927899 1.201038 1.577226 0.364991 1.214367 -2.677437 0.4368421 1.262846 1.576603 -0.02524942 1.276861 -2.678067 0.04227083 1.201038 1.57598 -0.4154899 1.214367 -2.678697 -0.3523003 1.021664 1.575418 -0.7675306 1.033002 -2.679265 -0.7082481 0.7422822 1.574972 -1.046912 0.7505199 -2.679717 -0.9907301 0.3902406 1.574685 -1.226286 0.3945714 -2.680006 -1.172094 -4.45419e-7 1.574586 -1.288094 -4.50287e-7 -2.680106 -1.234588 -0.3902415 1.574685 -1.226286 -0.3945723 -2.680006 -1.172094 -0.7422829 1.574972 -1.046912 -0.7505206 -2.679717 -0.9907295 -1.021664 1.575418 -0.76753 -1.033003 -2.679265 -0.7082474 -1.201038 1.57598 -0.4154888 -1.214367 -2.678697 -0.3522992 -1.262846 1.576603 -0.02524811 -1.276861 -2.678067 0.04227209 -1.201038 1.577226 0.3649923 -1.214366 -2.677437 0.4368435 -1.021663 1.577788 0.7170332 -1.033001 -2.676868 0.7927913 -0.742281 1.578235 0.9964142 -0.7505186 -2.676418 1.075273 -0.3902392 1.578521 1.175788 -0.3945699 -2.676128 1.256637 0 3.661846 0.6485369 0.1928446 3.661797 0.6179933 0.3668123 3.661656 0.5293525 0.5048738 3.661435 0.3912912 0.5935148 3.661157 0.2173237 0.6240583 3.66085 0.02447932 0.5935148 3.660542 -0.1683651 0.5048738 3.660264 -0.3423324 0.3668123 3.660043 -0.4803938 0.1928445 3.659902 -0.5690347 -1.74127e-7 3.659853 -0.5995782 -0.1928448 3.659902 -0.5690345 -0.3668125 3.660043 -0.4803935 -0.504874 3.660264 -0.342332 -0.5935149 3.660542 -0.1683645 -0.6240583 3.66085 0.02447998 -0.5935146 3.661157 0.2173244 -0.5048733 3.661435 0.3912918 -0.3668115 3.661656 0.5293529 -0.1928437 3.661797 0.6179935 0 4.466081 0.2956147 0.09112828 4.466058 0.2811814 0.1733363 4.465991 0.2392944 0.238577 4.465887 0.1740538 0.280464 4.465756 0.09184587 0.2948973 4.46561 7.17685e-4 0.280464 4.465465 -0.09041047 0.238577 4.465333 -0.1726183 0.1733363 4.465229 -0.237859 0.09112823 4.465163 -0.279746 0 4.465139 -0.2941793 -0.09112834 4.465163 -0.2797459 -0.1733364 4.465229 -0.2378588 -0.238577 4.465333 -0.1726182 -0.280464 4.465465 -0.09041023 -0.2948973 4.46561 7.17983e-4 -0.2804639 4.465756 0.09184616 -0.2385767 4.465887 0.174054 -0.1733359 4.465991 0.2392945 -0.09112781 4.466058 0.2811815 0 -1.049855 1.444117 0.4461159 -1.049968 1.373459 0.8485629 -1.050295 1.168402 1.167947 -1.050805 0.849019 1.373004 -1.051448 0.4465724 1.443661 -1.05216 4.57014e-4 1.373004 -1.052873 -0.4456583 1.167947 -1.053515 -0.8481047 0.8485628 -1.054025 -1.167488 0.4461156 -1.054352 -1.372545 -5.22163e-7 -1.054465 -1.443203 -0.4461166 -1.054352 -1.372545 -0.8485636 -1.054025 -1.167488 -1.167947 -1.053515 -0.848104 -1.373004 -1.052873 -0.4456571 -1.443661 -1.05216 4.58477e-4 -1.373003 -1.051448 0.446574 -1.167946 -1.050805 0.8490204 -0.8485614 -1.050295 1.168403 -0.446114 -1.049968 1.37346 0.4364051 0.2366441 1.342398 0.8300918 0.2363237 1.141805 1.142524 0.2358248 0.8293737 1.343117 0.2351962 0.4356874 1.412237 0.2344993 -7.1728e-4 1.343117 0.2338024 -0.4371219 1.142524 0.2331739 -0.830808 0.8300918 0.2326748 -1.143239 0.4364048 0.2323546 -1.343833 -5.10147e-7 0.2322441 -1.412952 -0.4364058 0.2323546 -1.343832 -0.8300926 0.2326748 -1.143239 -1.142524 0.2331739 -0.8308073 -1.343117 0.2338024 -0.4371207 -1.412237 0.2344993 -7.15849e-4 -1.343116 0.2351962 0.4356889 -1.142522 0.2358248 0.8293751 -0.8300905 0.2363237 1.141806 -0.4364032 0.2366442 1.342399 0 0.2367544 1.411518 -0.5885579 2.565501 0.7689161 -0.3094224 2.565729 0.9111421 0 2.565807 0.9601495 0.3094238 2.565728 0.9111416 0.810082 2.563268 -0.6297237 0.5885589 2.562915 -0.8512466 -3.33872e-7 2.562609 -1.042481 -0.3094242 2.562687 -0.9934728 0.588559 2.565501 0.7689153 0.810082 2.565147 0.5473927 -0.8100823 2.563268 -0.6297233 -0.9523087 2.563714 -0.3505883 -0.9523081 2.564702 0.2682588 -0.8100813 2.565147 0.5473936 1.001316 2.564208 -0.04116564 0.9523084 2.563714 -0.3505891 0.3094235 2.562687 -0.9934729 -0.5885595 2.562914 -0.8512462 0.9523084 2.564702 0.2682577 -1.001316 2.564208 -0.04116463 0 -2.021594 1.383223 0.4228489 -2.021701 1.316251 0.8043063 -2.022011 1.121888 1.107033 -2.022495 0.8191623 1.301395 -2.023104 0.4377052 1.368368 -2.023779 0.01485681 1.301395 -2.024455 -0.4079914 1.107033 -2.025064 -0.7894484 0.8043063 -2.025547 -1.092174 0.4228485 -2.025858 -1.286536 -4.93167e-7 -2.025965 -1.353509 -0.4228495 -2.025858 -1.286536 -0.8043071 -2.025547 -1.092174 -1.107033 -2.025064 -0.7894476 -1.301395 -2.024455 -0.4079903 -1.368368 -2.023779 0.01485824 -1.301395 -2.023104 0.4377068 -1.107032 -2.022495 0.8191636 -0.804305 -2.022011 1.121889 -0.422847 -2.021701 1.316251 0.2179979 -3.802936 0.694346 0 -3.802881 0.7288734 0.4146566 -3.803096 0.5941434 0.5707258 -3.803345 0.4380744 0.6298668 -3.823044 0.2988735 0.7054558 -3.804007 0.06467199 0.6709283 -3.804355 -0.1533255 0.5707258 -3.804669 -0.3499839 0.4146565 -3.804919 -0.5060531 0.2179977 -3.805079 -0.6062555 -2.10777e-7 -3.805134 -0.640783 -0.2179981 -3.734613 -0.5992088 -0.4146568 -3.734453 -0.4990062 -0.570726 -3.734204 -0.342937 -0.6709285 -3.73389 -0.1462783 -0.7054558 -3.733541 0.07171922 -0.6709281 -3.733194 0.2897169 -0.5707253 -3.732879 0.4863753 -0.4146558 -3.73263 0.6424442 -0.2179968 -3.73247 0.7426465 0.07673037 -4.210566 0.2625039 0 -4.21079 0.2746548 0.1459499 -4.209913 0.2272409 0.2008827 -4.208899 0.1723174 0.2361517 -4.207619 0.1031098 0.2483047 -4.2062 0.02639251 0.2361517 -4.204781 -0.05032461 0.2008827 -4.203501 -0.1195322 0.1459498 -4.202486 -0.1744558 0.07673031 -4.201834 -0.2097188 0 -4.201609 -0.2218697 -0.07673037 -4.201834 -0.2097187 -0.1459499 -4.202486 -0.1744557 -0.2008827 -4.203501 -0.1195321 -0.2361518 -4.204781 -0.05032444 -0.2483046 -4.2062 0.02639275 -0.2361516 -4.207619 0.10311 -0.2008824 -4.208899 0.1723177 -0.1459495 -4.209913 0.2272411 -0.07672995 -4.210566 0.2625041</float_array>
<technique_common>
<accessor source="#Cylinder_002-mesh-positions-array" count="200" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="Cylinder_002-mesh-normals">
<float_array id="Cylinder_002-mesh-normals-array" count="600">0 -0.07986772 0.9968055 0.2955481 -0.2815703 0.9128907 0.3083349 -0.08124196 0.9478025 0.5621039 -0.283585 0.7769291 0.5861868 -0.08521026 0.8056825 0.7735167 -0.2867002 0.5652211 0.8061637 -0.09137433 0.5845946 0.9090349 -0.2899903 0.299268 0.946695 -0.0991252 0.3065009 0.9555156 -0.2949345 0.001892149 0.9941862 -0.1076709 -0.001037597 0.9068009 -0.3033657 -0.2927143 0.9443194 -0.1161553 -0.3078453 0.7698193 -0.3109308 -0.5574049 0.8023199 -0.1237554 -0.5839243 0.5584113 -0.3169122 -0.7666443 0.5823326 -0.1297667 -0.802527 0.2932611 -0.3207286 -0.9006282 0.3059571 -0.133614 -0.9426227 -0.004577875 -0.3284485 -0.9445108 0 -0.1349539 -0.990852 -0.3059571 -0.133614 -0.9426227 -0.2916432 -0.3351333 -0.8958963 -0.5823326 -0.1297667 -0.802527 -0.5554555 -0.3309844 -0.7628358 -0.8023199 -0.1237554 -0.5839243 -0.7660551 -0.324477 -0.5548642 -0.9443194 -0.1161553 -0.3078453 -0.9027425 -0.3162345 -0.2916365 -0.9941862 -0.1076709 -0.001037597 -0.9516898 -0.3070568 0.001648008 -0.946695 -0.0991252 0.3065009 -0.9074258 -0.2978058 0.296463 -0.8061637 -0.09137433 0.5845946 -0.7736077 -0.2894467 0.5636948 -0.5861868 -0.08521026 0.8056825 0.642886 -0.5981754 0.4784182 0.7276105 -0.6214949 0.2903911 -0.29631 -0.2784868 0.9135894 -0.3083349 -0.08124196 0.9478025 -0.563021 -0.2827618 0.776565 -0.2983884 0.2728741 0.914606 -0.5512359 0.3391587 0.7623059 -0.5668259 0.2755239 0.7763987 -0.7584054 0.3424574 0.5545668 -0.3448981 0.8114155 0.4718583 -0.4762273 0.809623 0.3431009 0 0.2719588 0.962309 0.2898666 0.3370485 0.8957543 0 0.33629 0.9417586 0.7700362 0.2998536 -0.5631449 0.5494959 0.3622614 -0.7528751 0.7566383 0.3592445 -0.5462983 -0.2931383 0.3057123 -0.9058753 0 0.3648251 -0.9310761 0 0.3064784 -0.9518777 0.5668259 0.2755239 0.7763987 0.7584054 0.3424574 0.5545668 0.5512359 0.3391587 0.7623059 -0.9075822 0.2952129 -0.29857 -0.7566383 0.3592445 -0.5462983 -0.7700362 0.2998536 -0.5631449 -0.7785437 0.2795554 0.5618882 -0.891081 0.3465502 0.2930493 -0.9128372 0.2845635 0.2928343 0.95703 0.2899656 -0.003692805 0.889989 0.3553913 -0.2856864 0.9363574 0.351031 0.003479123 -0.2898666 0.3370485 0.8957543 0.5583193 0.303453 -0.7721372 0.2888014 0.3641834 -0.8854175 -0.5583193 0.303453 -0.7721372 -0.2888014 0.3641834 -0.8854175 0.7785437 0.2795554 0.5618882 0.891081 0.3465502 0.2930493 -0.95703 0.2899656 -0.003692805 -0.889989 0.3553913 -0.2856864 0.9075822 0.2952129 -0.29857 0.2931383 0.3057123 -0.9058753 0.2983884 0.2728741 0.914606 -0.5494959 0.3622614 -0.7528751 0.9128372 0.2845635 0.2928343 -0.9363574 0.351031 0.003479123 0.4841271 0.7999099 -0.3546338 -0.5935422 0.8047978 -0.002899289 -0.1809511 0.8125558 0.5540847 0.5669291 0.8022341 -0.1871147 0.5620375 0.807349 0.1797263 -0.5620375 0.807349 0.1797263 0.3448981 0.8114155 0.4718583 -0.5669291 0.8022341 -0.1871147 -0.4841218 0.7999013 -0.3546605 0 0.812945 0.5823405 -0.3528019 0.7980466 -0.4885208 -0.1858348 0.7968404 -0.5749008 0.1858348 0.7968404 -0.5749008 0.5935422 0.8047978 -0.002899289 0.4762273 0.809623 0.3431009 0.1809511 0.8125558 0.5540847 0 0.7964004 -0.6047699 0.3528019 0.7980466 -0.4885208 -0.5857914 0.07486432 0.8069968 -0.309131 -0.01889151 0.9508318 -0.3079106 0.07617646 0.9483609 0 -0.01852494 0.9998285 0 0.07663345 0.9970594 -0.8065276 0.072788 0.5866987 -0.5879776 -0.02002036 0.8086294 -0.9484968 0.07019346 0.3089122 -0.8091321 -0.02172982 0.5872251 -0.9977329 0.06729477 7.01941e-4 -0.950977 -0.02392697 0.3083351 -0.9493033 0.06439572 -0.3076957 -0.9996538 -0.02630746 -6.10382e-4 -0.8078181 0.06177127 -0.5861862 -0.9504784 -0.02871817 -0.3094609 -0.587092 0.05969494 -0.8073163 -0.8083292 -0.03088533 -0.5879201 -0.3087036 0.05835306 -0.9493666 -0.5871568 -0.03259438 -0.8088169 0 0.05786323 -0.9983246 -0.3086407 -0.03369319 -0.9505818 0.3086407 -0.03369319 -0.9505818 0.3087036 0.05835306 -0.9493666 0.5871568 -0.03259438 -0.8088169 0.587092 0.05969494 -0.8073163 0.8083292 -0.03088533 -0.5879201 0.8078181 0.06177127 -0.5861862 0.9504784 -0.02871817 -0.3094609 0.9493033 0.06439572 -0.3076957 0.9996538 -0.02630746 -6.10382e-4 0.9977329 0.06729477 7.01941e-4 0.950977 -0.02392697 0.3083351 0.9484968 0.07019346 0.3089122 0.8091321 -0.02172982 0.5872251 0.8065276 0.072788 0.5866987 0.5879776 -0.02002036 0.8086294 0.5857914 0.07486432 0.8069968 0.3091586 -0.01889133 0.9508229 0.3079106 0.07617646 0.9483609 0 0.1986802 0.9800644 0.3030533 0.1978849 0.9322019 0.5766805 0.195594 0.7932103 0.7942095 0.1919983 0.5765138 0.9343489 0.1874802 0.3030568 0.9832105 0.182475 -4.88309e-4 0.9358212 0.1774407 -0.3045547 0.796605 0.1728897 -0.5792492 0.5790758 0.1692913 -0.7975035 0.3045187 0.1669695 -0.9377578 0 0.1661457 -0.9861012 -0.3045187 0.1669695 -0.9377578 -0.5790758 0.1692913 -0.7975035 -0.796605 0.1728897 -0.5792492 -0.9358212 0.1774407 -0.3045547 -0.9832105 0.182475 -4.88309e-4 -0.9343489 0.1874802 0.3030568 -0.7942095 0.1919983 0.5765138 -0.5766805 0.195594 0.7932103 -0.3030533 0.1978849 0.9322019 0 -0.03405964 -0.9994199 -0.01263511 -0.619488 0.7849045 -0.1311393 -0.9207528 0.3674466 0 -0.9249137 0.3801771 -0.7744171 -0.5822396 -0.2475388 -0.8113425 -0.5845572 0.004028439 -0.6522287 -0.5884433 0.4778412 -0.4727758 -0.5897871 0.6547018 0.6490264 -0.5996765 -0.4681377 -0.09625667 -0.596706 -0.796666 0.2460476 -0.6053528 0.7569734 0.4680421 -0.6052259 0.6439242 -0.4815597 -0.5781219 -0.6586921 -0.6609897 -0.5799911 -0.4761335 0.7974008 -0.6022622 0.03784352 -0.7690017 -0.5866777 0.2538618 -0.2523351 -0.5775814 0.7763548 0.4726762 -0.5981393 -0.6471526 -0.3390673 -0.5574011 -0.7578507 0.7607451 -0.6015279 -0.2437851 0.001220703 -0.2791841 0.9602369 0.2488549 -0.5971419 -0.7625568 -0.4044975 -0.9021692 -0.1499088 0.3658627 -0.9205164 -0.1370916 -0.2433028 -0.9168108 0.3166415 0.2284035 -0.9149265 -0.3327782 0.1203976 -0.9132213 -0.3892704 0.3129463 -0.917445 -0.2456815 0.3866711 -0.9221205 -0.01339763 -0.3982798 -0.9105195 0.11103 0.31185 -0.9254481 0.2151637 0.1221998 -0.9247694 0.3603734 -0.2533391 -0.8949118 -0.3673585 0 -0.9125981 -0.4088579 -0.3365674 -0.9140852 0.2262094 0.3704999 -0.923564 0.09878975 -0.4219616 -0.906427 -0.01840317 0.2313957 -0.9244534 0.3030545 -0.3466101 -0.8981892 -0.2704029 -0.1453005 -0.9011626 -0.4084041</float_array>
<technique_common>
<accessor source="#Cylinder_002-mesh-normals-array" count="200" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>