aboutsummaryrefslogtreecommitdiffstats
path: root/src/bin/cow_model/cow_hoofs.rs
blob: 5d3fb259a39e29a53b6b138dbfb808e91cfe49af (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070

// This file auto-generated from cow_hoofs.c using model_c2rs.py
// Don't edit by hand!

use super::cow_vertex::Vertex;

pub const COW_HOOFS_VERTICES: [Vertex; 1031] = [
    Vertex { position: (1.970051, -3.141862, -1.065178),
             normal: (0.013288, -0.297478, -0.954636), },
    Vertex { position: (2.110033, -3.148257, -1.068816),
             normal: (-0.228294, -0.186048, -0.955651), },
    Vertex { position: (2.14888, -3.221616, -1.076203),
             normal: (-0.562282, -0.328888, -0.75873), },
    Vertex { position: (1.970051, -3.141862, -1.065178),
             normal: (0.013288, -0.297478, -0.954636), },
    Vertex { position: (2.14888, -3.221616, -1.076203),
             normal: (-0.562282, -0.328888, -0.75873), },
    Vertex { position: (2.031262, -3.256709, -1.111122),
             normal: (0.157806, 0.230904, -0.960094), },
    Vertex { position: (2.031262, -3.256709, -1.111122),
             normal: (0.157806, 0.230904, -0.960094), },
    Vertex { position: (2.14888, -3.221616, -1.076203),
             normal: (-0.562282, -0.328888, -0.75873), },
    Vertex { position: (2.247981, -3.342804, -1.127459),
             normal: (-0.144755, 0.439659, -0.886423), },
    Vertex { position: (2.031262, -3.256709, -1.111122),
             normal: (0.157806, 0.230904, -0.960094), },
    Vertex { position: (2.247981, -3.342804, -1.127459),
             normal: (-0.144755, 0.439659, -0.886423), },
    Vertex { position: (2.138771, -3.397683, -1.214726),
             normal: (0.339699, 0.626415, -0.701576), },
    Vertex { position: (2.138771, -3.397683, -1.214726),
             normal: (0.339699, 0.626415, -0.701576), },
    Vertex { position: (2.247981, -3.342804, -1.127459),
             normal: (-0.144755, 0.439659, -0.886423), },
    Vertex { position: (2.343303, -3.507846, -1.195262),
             normal: (0.457854, 0.537523, -0.708123), },
    Vertex { position: (2.138771, -3.397683, -1.214726),
             normal: (0.339699, 0.626415, -0.701576), },
    Vertex { position: (2.343303, -3.507846, -1.195262),
             normal: (0.457854, 0.537523, -0.708123), },
    Vertex { position: (2.254361, -3.550931, -1.235118),
             normal: (-0.081045, 0.409121, -0.908874), },
    Vertex { position: (2.254361, -3.550931, -1.235118),
             normal: (-0.081045, 0.409121, -0.908874), },
    Vertex { position: (2.025468, -3.556842, -1.204841),
             normal: (0.444124, 0.617475, -0.649214), },
    Vertex { position: (1.981186, -3.441282, -1.180532),
             normal: (0.010538, 0.399391, -0.91672), },
    Vertex { position: (2.254361, -3.550931, -1.235118),
             normal: (-0.081045, 0.409121, -0.908874), },
    Vertex { position: (1.981186, -3.441282, -1.180532),
             normal: (0.010538, 0.399391, -0.91672), },
    Vertex { position: (2.138771, -3.397683, -1.214726),
             normal: (0.339699, 0.626415, -0.701576), },
    Vertex { position: (2.138771, -3.397683, -1.214726),
             normal: (0.339699, 0.626415, -0.701576), },
    Vertex { position: (1.981186, -3.441282, -1.180532),
             normal: (0.010538, 0.399391, -0.91672), },
    Vertex { position: (1.926176, -3.28888, -1.093746),
             normal: (0.636282, 0.100893, -0.764831), },
    Vertex { position: (2.138771, -3.397683, -1.214726),
             normal: (0.339699, 0.626415, -0.701576), },
    Vertex { position: (1.926176, -3.28888, -1.093746),
             normal: (0.636282, 0.100893, -0.764831), },
    Vertex { position: (2.031262, -3.256709, -1.111122),
             normal: (0.157806, 0.230904, -0.960094), },
    Vertex { position: (2.031262, -3.256709, -1.111122),
             normal: (0.157806, 0.230904, -0.960094), },
    Vertex { position: (1.926176, -3.28888, -1.093746),
             normal: (0.636282, 0.100893, -0.764831), },
    Vertex { position: (1.886443, -3.191742, -1.047318),
             normal: (0.213417, -0.547723, -0.808983), },
    Vertex { position: (2.031262, -3.256709, -1.111122),
             normal: (0.157806, 0.230904, -0.960094), },
    Vertex { position: (1.886443, -3.191742, -1.047318),
             normal: (0.213417, -0.547723, -0.808983), },
    Vertex { position: (1.970051, -3.141862, -1.065178),
             normal: (0.013288, -0.297478, -0.954636), },
    Vertex { position: (2.281229, -3.33825, -1.043475),
             normal: (-0.430523, -0.648445, -0.627828), },
    Vertex { position: (2.247981, -3.342804, -1.127459),
             normal: (-0.144755, 0.439659, -0.886423), },
    Vertex { position: (2.14888, -3.221616, -1.076203),
             normal: (-0.562282, -0.328888, -0.75873), },
    Vertex { position: (2.281229, -3.33825, -1.043475),
             normal: (-0.430523, -0.648445, -0.627828), },
    Vertex { position: (2.14888, -3.221616, -1.076203),
             normal: (-0.562282, -0.328888, -0.75873), },
    Vertex { position: (2.201939, -3.226457, -0.996503),
             normal: (-0.492627, 0.113675, -0.862784), },
    Vertex { position: (2.201939, -3.226457, -0.996503),
             normal: (-0.492627, 0.113675, -0.862784), },
    Vertex { position: (2.14888, -3.221616, -1.076203),
             normal: (-0.562282, -0.328888, -0.75873), },
    Vertex { position: (2.110033, -3.148257, -1.068816),
             normal: (-0.228294, -0.186048, -0.955651), },
    Vertex { position: (2.201939, -3.226457, -0.996503),
             normal: (-0.492627, 0.113675, -0.862784), },
    Vertex { position: (2.110033, -3.148257, -1.068816),
             normal: (-0.228294, -0.186048, -0.955651), },
    Vertex { position: (2.170039, -3.134504, -0.978866),
             normal: (-0.495591, 0.225654, -0.838731), },
    Vertex { position: (2.170039, -3.134504, -0.978866),
             normal: (-0.495591, 0.225654, -0.838731), },
    Vertex { position: (2.091539, -3.032437, -0.947029),
             normal: (-0.541077, 0.245809, -0.804247), },
    Vertex { position: (2.113587, -3.011851, -0.851648),
             normal: (0.672893, 0.661099, -0.331908), },
    Vertex { position: (2.170039, -3.134504, -0.978866),
             normal: (-0.495591, 0.225654, -0.838731), },
    Vertex { position: (2.113587, -3.011851, -0.851648),
             normal: (0.672893, 0.661099, -0.331908), },
    Vertex { position: (2.217369, -3.156093, -0.888927),
             normal: (0.768072, 0.514957, -0.380637), },
    Vertex { position: (1.841888, -3.246003, -1.014774),
             normal: (0.626232, 0.565165, -0.53705), },
    Vertex { position: (1.886443, -3.191742, -1.047318),
             normal: (0.213417, -0.547723, -0.808983), },
    Vertex { position: (1.926176, -3.28888, -1.093746),
             normal: (0.636282, 0.100893, -0.764831), },
    Vertex { position: (1.841888, -3.246003, -1.014774),
             normal: (0.626232, 0.565165, -0.53705), },
    Vertex { position: (1.926176, -3.28888, -1.093746),
             normal: (0.636282, 0.100893, -0.764831), },
    Vertex { position: (1.865135, -3.353827, -1.054981),
             normal: (0.52783, 0.437826, -0.727807), },
    Vertex { position: (1.919391, -3.487078, -1.110869),
             normal: (0.862528, 0.499882, 0.078511), },
    Vertex { position: (1.865135, -3.353827, -1.054981),
             normal: (0.52783, 0.437826, -0.727807), },
    Vertex { position: (1.926176, -3.28888, -1.093746),
             normal: (0.636282, 0.100893, -0.764831), },
    Vertex { position: (1.919391, -3.487078, -1.110869),
             normal: (0.862528, 0.499882, 0.078511), },
    Vertex { position: (1.926176, -3.28888, -1.093746),
             normal: (0.636282, 0.100893, -0.764831), },
    Vertex { position: (1.981186, -3.441282, -1.180532),
             normal: (0.010538, 0.399391, -0.91672), },
    Vertex { position: (1.981186, -3.441282, -1.180532),
             normal: (0.010538, 0.399391, -0.91672), },
    Vertex { position: (2.025468, -3.556842, -1.204841),
             normal: (0.444124, 0.617475, -0.649214), },
    Vertex { position: (1.919391, -3.487078, -1.110869),
             normal: (0.862528, 0.499882, 0.078511), },
    Vertex { position: (1.980621, -3.043895, -0.964237),
             normal: (0.872426, 0.488735, 0.003222), },
    Vertex { position: (2.170039, -3.134504, -0.978866),
             normal: (-0.495591, 0.225654, -0.838731), },
    Vertex { position: (2.110033, -3.148257, -1.068816),
             normal: (-0.228294, -0.186048, -0.955651), },
    Vertex { position: (1.806407, -3.173343, -0.834455),
             normal: (-0.783521, -0.393963, -0.480508), },
    Vertex { position: (1.811797, -3.135641, -0.933096),
             normal: (0.926951, 0.366239, 0.081429), },
    Vertex { position: (1.841888, -3.246003, -1.014774),
             normal: (0.626232, 0.565165, -0.53705), },
    Vertex { position: (1.806407, -3.173343, -0.834455),
             normal: (-0.783521, -0.393963, -0.480508), },
    Vertex { position: (1.841888, -3.246003, -1.014774),
             normal: (0.626232, 0.565165, -0.53705), },
    Vertex { position: (1.83279, -3.296508, -0.865078),
             normal: (0.215809, 0.484483, -0.847763), },
    Vertex { position: (1.933899, -3.546253, -0.912438),
             normal: (-0.997638, 0.009858, 0.067986), },
    Vertex { position: (1.919391, -3.487078, -1.110869),
             normal: (0.862528, 0.499882, 0.078511), },
    Vertex { position: (2.025468, -3.556842, -1.204841),
             normal: (0.444124, 0.617475, -0.649214), },
    Vertex { position: (1.933899, -3.546253, -0.912438),
             normal: (-0.997638, 0.009858, 0.067986), },
    Vertex { position: (2.025468, -3.556842, -1.204841),
             normal: (0.444124, 0.617475, -0.649214), },
    Vertex { position: (2.078928, -3.584991, -0.917088),
             normal: (-0.987313, 0.097592, 0.125253), },
    Vertex { position: (1.83279, -3.296508, -0.865078),
             normal: (0.215809, 0.484483, -0.847763), },
    Vertex { position: (1.841888, -3.246003, -1.014774),
             normal: (0.626232, 0.565165, -0.53705), },
    Vertex { position: (1.865135, -3.353827, -1.054981),
             normal: (0.52783, 0.437826, -0.727807), },
    Vertex { position: (1.83279, -3.296508, -0.865078),
             normal: (0.215809, 0.484483, -0.847763), },
    Vertex { position: (1.865135, -3.353827, -1.054981),
             normal: (0.52783, 0.437826, -0.727807), },
    Vertex { position: (1.839523, -3.405292, -0.883488),
             normal: (-0.955753, -0.169718, 0.240275), },
    Vertex { position: (1.839523, -3.405292, -0.883488),
             normal: (-0.955753, -0.169718, 0.240275), },
    Vertex { position: (1.865135, -3.353827, -1.054981),
             normal: (0.52783, 0.437826, -0.727807), },
    Vertex { position: (1.919391, -3.487078, -1.110869),
             normal: (0.862528, 0.499882, 0.078511), },
    Vertex { position: (1.839523, -3.405292, -0.883488),
             normal: (-0.955753, -0.169718, 0.240275), },
    Vertex { position: (1.919391, -3.487078, -1.110869),
             normal: (0.862528, 0.499882, 0.078511), },
    Vertex { position: (1.933899, -3.546253, -0.912438),
             normal: (-0.997638, 0.009858, 0.067986), },
    Vertex { position: (1.83279, -3.296508, -0.865078),
             normal: (0.215809, 0.484483, -0.847763), },
    Vertex { position: (1.92973, -3.298418, -0.689538),
             normal: (-0.150944, -0.987886, 0.036011), },
    Vertex { position: (1.900481, -3.131932, -0.728621),
             normal: (-0.630099, -0.773677, 0.066329), },
    Vertex { position: (1.83279, -3.296508, -0.865078),
             normal: (0.215809, 0.484483, -0.847763), },
    Vertex { position: (1.900481, -3.131932, -0.728621),
             normal: (-0.630099, -0.773677, 0.066329), },
    Vertex { position: (1.806407, -3.173343, -0.834455),
             normal: (-0.783521, -0.393963, -0.480508), },
    Vertex { position: (1.83279, -3.296508, -0.865078),
             normal: (0.215809, 0.484483, -0.847763), },
    Vertex { position: (1.839523, -3.405292, -0.883488),
             normal: (-0.955753, -0.169718, 0.240275), },
    Vertex { position: (1.941325, -3.434803, -0.701314),
             normal: (-0.937976, -0.320543, 0.132115), },
    Vertex { position: (1.83279, -3.296508, -0.865078),
             normal: (0.215809, 0.484483, -0.847763), },
    Vertex { position: (1.941325, -3.434803, -0.701314),
             normal: (-0.937976, -0.320543, 0.132115), },
    Vertex { position: (1.92973, -3.298418, -0.689538),
             normal: (-0.150944, -0.987886, 0.036011), },
    Vertex { position: (1.941325, -3.434803, -0.701314),
             normal: (-0.937976, -0.320543, 0.132115), },
    Vertex { position: (1.839523, -3.405292, -0.883488),
             normal: (-0.955753, -0.169718, 0.240275), },
    Vertex { position: (1.933899, -3.546253, -0.912438),
             normal: (-0.997638, 0.009858, 0.067986), },
    Vertex { position: (1.941325, -3.434803, -0.701314),
             normal: (-0.937976, -0.320543, 0.132115), },
    Vertex { position: (1.933899, -3.546253, -0.912438),
             normal: (-0.997638, 0.009858, 0.067986), },
    Vertex { position: (2.002745, -3.52342, -0.688103),
             normal: (-0.4909, 0.016111, 0.871067), },
    Vertex { position: (2.002745, -3.52342, -0.688103),
             normal: (-0.4909, 0.016111, 0.871067), },
    Vertex { position: (1.933899, -3.546253, -0.912438),
             normal: (-0.997638, 0.009858, 0.067986), },
    Vertex { position: (2.078928, -3.584991, -0.917088),
             normal: (-0.987313, 0.097592, 0.125253), },
    Vertex { position: (2.002745, -3.52342, -0.688103),
             normal: (-0.4909, 0.016111, 0.871067), },
    Vertex { position: (2.078928, -3.584991, -0.917088),
             normal: (-0.987313, 0.097592, 0.125253), },
    Vertex { position: (2.126553, -3.549679, -0.701005),
             normal: (-0.184432, -0.109597, 0.976716), },
    Vertex { position: (2.126553, -3.549679, -0.701005),
             normal: (-0.184432, -0.109597, 0.976716), },
    Vertex { position: (2.078928, -3.584991, -0.917088),
             normal: (-0.987313, 0.097592, 0.125253), },
    Vertex { position: (2.197935, -3.583948, -0.936437),
             normal: (-0.554502, -0.046423, 0.830886), },
    Vertex { position: (2.126553, -3.549679, -0.701005),
             normal: (-0.184432, -0.109597, 0.976716), },
    Vertex { position: (2.197935, -3.583948, -0.936437),
             normal: (-0.554502, -0.046423, 0.830886), },
    Vertex { position: (2.244147, -3.545557, -0.732888),
             normal: (-0.554151, -0.205896, 0.806551), },
    Vertex { position: (1.898573, -3.068274, -0.994338),
             normal: (-0.069765, -0.126006, 0.989573), },
    Vertex { position: (1.980621, -3.043895, -0.964237),
             normal: (0.872426, 0.488735, 0.003222), },
    Vertex { position: (2.110033, -3.148257, -1.068816),
             normal: (-0.228294, -0.186048, -0.955651), },
    Vertex { position: (1.898573, -3.068274, -0.994338),
             normal: (-0.069765, -0.126006, 0.989573), },
    Vertex { position: (2.110033, -3.148257, -1.068816),
             normal: (-0.228294, -0.186048, -0.955651), },
    Vertex { position: (1.970051, -3.141862, -1.065178),
             normal: (0.013288, -0.297478, -0.954636), },
    Vertex { position: (1.855134, -3.083228, -0.986129),
             normal: (0.383337, -0.601981, 0.700479), },
    Vertex { position: (1.898573, -3.068274, -0.994338),
             normal: (-0.069765, -0.126006, 0.989573), },
    Vertex { position: (1.970051, -3.141862, -1.065178),
             normal: (0.013288, -0.297478, -0.954636), },
    Vertex { position: (1.855134, -3.083228, -0.986129),
             normal: (0.383337, -0.601981, 0.700479), },
    Vertex { position: (1.970051, -3.141862, -1.065178),
             normal: (0.013288, -0.297478, -0.954636), },
    Vertex { position: (1.886443, -3.191742, -1.047318),
             normal: (0.213417, -0.547723, -0.808983), },
    Vertex { position: (1.811797, -3.135641, -0.933096),
             normal: (0.926951, 0.366239, 0.081429), },
    Vertex { position: (1.855134, -3.083228, -0.986129),
             normal: (0.383337, -0.601981, 0.700479), },
    Vertex { position: (1.886443, -3.191742, -1.047318),
             normal: (0.213417, -0.547723, -0.808983), },
    Vertex { position: (1.811797, -3.135641, -0.933096),
             normal: (0.926951, 0.366239, 0.081429), },
    Vertex { position: (1.886443, -3.191742, -1.047318),
             normal: (0.213417, -0.547723, -0.808983), },
    Vertex { position: (1.841888, -3.246003, -1.014774),
             normal: (0.626232, 0.565165, -0.53705), },
    Vertex { position: (2.217369, -3.156093, -0.888927),
             normal: (0.768072, 0.514957, -0.380637), },
    Vertex { position: (2.113587, -3.011851, -0.851648),
             normal: (0.672893, 0.661099, -0.331908), },
    Vertex { position: (2.07369, -3.020848, -0.782654),
             normal: (-0.701253, 0.091018, 0.707079), },
    Vertex { position: (2.217369, -3.156093, -0.888927),
             normal: (0.768072, 0.514957, -0.380637), },
    Vertex { position: (2.07369, -3.020848, -0.782654),
             normal: (-0.701253, 0.091018, 0.707079), },
    Vertex { position: (2.187495, -3.161535, -0.800285),
             normal: (-0.706628, -0.050081, 0.705811), },
    Vertex { position: (2.170039, -3.134504, -0.978866),
             normal: (-0.495591, 0.225654, -0.838731), },
    Vertex { position: (2.217369, -3.156093, -0.888927),
             normal: (0.768072, 0.514957, -0.380637), },
    Vertex { position: (2.236407, -3.220054, -0.89203),
             normal: (-0.404532, -0.045989, -0.913367), },
    Vertex { position: (2.170039, -3.134504, -0.978866),
             normal: (-0.495591, 0.225654, -0.838731), },
    Vertex { position: (2.236407, -3.220054, -0.89203),
             normal: (-0.404532, -0.045989, -0.913367), },
    Vertex { position: (2.201939, -3.226457, -0.996503),
             normal: (-0.492627, 0.113675, -0.862784), },
    Vertex { position: (2.247981, -3.342804, -1.127459),
             normal: (-0.144755, 0.439659, -0.886423), },
    Vertex { position: (2.281229, -3.33825, -1.043475),
             normal: (-0.430523, -0.648445, -0.627828), },
    Vertex { position: (2.386827, -3.462222, -1.13648),
             normal: (0.717573, 0.343682, 0.605781), },
    Vertex { position: (2.247981, -3.342804, -1.127459),
             normal: (-0.144755, 0.439659, -0.886423), },
    Vertex { position: (2.386827, -3.462222, -1.13648),
             normal: (0.717573, 0.343682, 0.605781), },
    Vertex { position: (2.343303, -3.507846, -1.195262),
             normal: (0.457854, 0.537523, -0.708123), },
    Vertex { position: (2.386827, -3.462222, -1.13648),
             normal: (0.717573, 0.343682, 0.605781), },
    Vertex { position: (2.281229, -3.33825, -1.043475),
             normal: (-0.430523, -0.648445, -0.627828), },
    Vertex { position: (2.327021, -3.352317, -0.958234),
             normal: (0.743895, 0.373896, 0.553916), },
    Vertex { position: (2.386827, -3.462222, -1.13648),
             normal: (0.717573, 0.343682, 0.605781), },
    Vertex { position: (2.327021, -3.352317, -0.958234),
             normal: (0.743895, 0.373896, 0.553916), },
    Vertex { position: (2.440236, -3.509564, -1.019417),
             normal: (0.752232, 0.244352, 0.611914), },
    Vertex { position: (2.327021, -3.352317, -0.958234),
             normal: (0.743895, 0.373896, 0.553916), },
    Vertex { position: (2.281229, -3.33825, -1.043475),
             normal: (-0.430523, -0.648445, -0.627828), },
    Vertex { position: (2.201939, -3.226457, -0.996503),
             normal: (-0.492627, 0.113675, -0.862784), },
    Vertex { position: (2.327021, -3.352317, -0.958234),
             normal: (0.743895, 0.373896, 0.553916), },
    Vertex { position: (2.201939, -3.226457, -0.996503),
             normal: (-0.492627, 0.113675, -0.862784), },
    Vertex { position: (2.236407, -3.220054, -0.89203),
             normal: (-0.404532, -0.045989, -0.913367), },
    Vertex { position: (2.440236, -3.509564, -1.019417),
             normal: (0.752232, 0.244352, 0.611914), },
    Vertex { position: (2.327021, -3.352317, -0.958234),
             normal: (0.743895, 0.373896, 0.553916), },
    Vertex { position: (2.309358, -3.345468, -0.801508),
             normal: (0.866542, 0.493887, -0.071973), },
    Vertex { position: (2.440236, -3.509564, -1.019417),
             normal: (0.752232, 0.244352, 0.611914), },
    Vertex { position: (2.309358, -3.345468, -0.801508),
             normal: (0.866542, 0.493887, -0.071973), },
    Vertex { position: (2.377814, -3.484109, -0.800332),
             normal: (0.874983, 0.217676, -0.43246), },
    Vertex { position: (2.309358, -3.345468, -0.801508),
             normal: (0.866542, 0.493887, -0.071973), },
    Vertex { position: (2.327021, -3.352317, -0.958234),
             normal: (0.743895, 0.373896, 0.553916), },
    Vertex { position: (2.236407, -3.220054, -0.89203),
             normal: (-0.404532, -0.045989, -0.913367), },
    Vertex { position: (2.309358, -3.345468, -0.801508),
             normal: (0.866542, 0.493887, -0.071973), },
    Vertex { position: (2.236407, -3.220054, -0.89203),
             normal: (-0.404532, -0.045989, -0.913367), },
    Vertex { position: (2.235942, -3.243103, -0.823955),
             normal: (0.79991, 0.598082, -0.049409), },
    Vertex { position: (2.235942, -3.243103, -0.823955),
             normal: (0.79991, 0.598082, -0.049409), },
    Vertex { position: (2.236407, -3.220054, -0.89203),
             normal: (-0.404532, -0.045989, -0.913367), },
    Vertex { position: (2.217369, -3.156093, -0.888927),
             normal: (0.768072, 0.514957, -0.380637), },
    Vertex { position: (2.235942, -3.243103, -0.823955),
             normal: (0.79991, 0.598082, -0.049409), },
    Vertex { position: (2.217369, -3.156093, -0.888927),
             normal: (0.768072, 0.514957, -0.380637), },
    Vertex { position: (2.187495, -3.161535, -0.800285),
             normal: (-0.706628, -0.050081, 0.705811), },
    Vertex { position: (1.900481, -3.131932, -0.728621),
             normal: (-0.630099, -0.773677, 0.066329), },
    Vertex { position: (1.92973, -3.298418, -0.689538),
             normal: (-0.150944, -0.987886, 0.036011), },
    Vertex { position: (2.059222, -3.230076, -0.674936),
             normal: (0.331575, 0.146631, 0.931964), },
    Vertex { position: (1.900481, -3.131932, -0.728621),
             normal: (-0.630099, -0.773677, 0.066329), },
    Vertex { position: (2.059222, -3.230076, -0.674936),
             normal: (0.331575, 0.146631, 0.931964), },
    Vertex { position: (1.998099, -3.039955, -0.718855),
             normal: (0.714275, 0.465374, 0.522723), },
    Vertex { position: (1.998099, -3.039955, -0.718855),
             normal: (0.714275, 0.465374, 0.522723), },
    Vertex { position: (2.059222, -3.230076, -0.674936),
             normal: (0.331575, 0.146631, 0.931964), },
    Vertex { position: (2.187495, -3.161535, -0.800285),
             normal: (-0.706628, -0.050081, 0.705811), },
    Vertex { position: (1.998099, -3.039955, -0.718855),
             normal: (0.714275, 0.465374, 0.522723), },
    Vertex { position: (2.187495, -3.161535, -0.800285),
             normal: (-0.706628, -0.050081, 0.705811), },
    Vertex { position: (2.07369, -3.020848, -0.782654),
             normal: (-0.701253, 0.091018, 0.707079), },
    Vertex { position: (1.92973, -3.298418, -0.689538),
             normal: (-0.150944, -0.987886, 0.036011), },
    Vertex { position: (1.941325, -3.434803, -0.701314),
             normal: (-0.937976, -0.320543, 0.132115), },
    Vertex { position: (2.107985, -3.363571, -0.677007),
             normal: (0.43336, 0.0979, 0.895888), },
    Vertex { position: (1.92973, -3.298418, -0.689538),
             normal: (-0.150944, -0.987886, 0.036011), },
    Vertex { position: (2.107985, -3.363571, -0.677007),
             normal: (0.43336, 0.0979, 0.895888), },
    Vertex { position: (2.059222, -3.230076, -0.674936),
             normal: (0.331575, 0.146631, 0.931964), },
    Vertex { position: (2.059222, -3.230076, -0.674936),
             normal: (0.331575, 0.146631, 0.931964), },
    Vertex { position: (2.107985, -3.363571, -0.677007),
             normal: (0.43336, 0.0979, 0.895888), },
    Vertex { position: (2.235942, -3.243103, -0.823955),
             normal: (0.79991, 0.598082, -0.049409), },
    Vertex { position: (2.059222, -3.230076, -0.674936),
             normal: (0.331575, 0.146631, 0.931964), },
    Vertex { position: (2.235942, -3.243103, -0.823955),
             normal: (0.79991, 0.598082, -0.049409), },
    Vertex { position: (2.187495, -3.161535, -0.800285),
             normal: (-0.706628, -0.050081, 0.705811), },
    Vertex { position: (2.107985, -3.363571, -0.677007),
             normal: (0.43336, 0.0979, 0.895888), },
    Vertex { position: (1.941325, -3.434803, -0.701314),
             normal: (-0.937976, -0.320543, 0.132115), },
    Vertex { position: (2.002745, -3.52342, -0.688103),
             normal: (-0.4909, 0.016111, 0.871067), },
    Vertex { position: (2.126553, -3.549679, -0.701005),
             normal: (-0.184432, -0.109597, 0.976716), },
    Vertex { position: (2.107985, -3.363571, -0.677007),
             normal: (0.43336, 0.0979, 0.895888), },
    Vertex { position: (2.002745, -3.52342, -0.688103),
             normal: (-0.4909, 0.016111, 0.871067), },
    Vertex { position: (2.235942, -3.243103, -0.823955),
             normal: (0.79991, 0.598082, -0.049409), },
    Vertex { position: (2.107985, -3.363571, -0.677007),
             normal: (0.43336, 0.0979, 0.895888), },
    Vertex { position: (2.309358, -3.345468, -0.801508),
             normal: (0.866542, 0.493887, -0.071973), },
    Vertex { position: (2.126553, -3.549679, -0.701005),
             normal: (-0.184432, -0.109597, 0.976716), },
    Vertex { position: (2.244147, -3.545557, -0.732888),
             normal: (-0.554151, -0.205896, 0.806551), },
    Vertex { position: (2.107985, -3.363571, -0.677007),
             normal: (0.43336, 0.0979, 0.895888), },
    Vertex { position: (2.377814, -3.484109, -0.800332),
             normal: (0.874983, 0.217676, -0.43246), },
    Vertex { position: (2.309358, -3.345468, -0.801508),
             normal: (0.866542, 0.493887, -0.071973), },
    Vertex { position: (2.107985, -3.363571, -0.677007),
             normal: (0.43336, 0.0979, 0.895888), },
    Vertex { position: (2.377814, -3.484109, -0.800332),
             normal: (0.874983, 0.217676, -0.43246), },
    Vertex { position: (2.107985, -3.363571, -0.677007),
             normal: (0.43336, 0.0979, 0.895888), },
    Vertex { position: (2.244147, -3.545557, -0.732888),
             normal: (-0.554151, -0.205896, 0.806551), },
    Vertex { position: (2.440236, -3.509564, -1.019417),
             normal: (0.752232, 0.244352, 0.611914), },
    Vertex { position: (2.377814, -3.484109, -0.800332),
             normal: (0.874983, 0.217676, -0.43246), },
    Vertex { position: (2.244147, -3.545557, -0.732888),
             normal: (-0.554151, -0.205896, 0.806551), },
    Vertex { position: (2.440236, -3.509564, -1.019417),
             normal: (0.752232, 0.244352, 0.611914), },
    Vertex { position: (2.244147, -3.545557, -0.732888),
             normal: (-0.554151, -0.205896, 0.806551), },
    Vertex { position: (2.197935, -3.583948, -0.936437),
             normal: (-0.554502, -0.046423, 0.830886), },
    Vertex { position: (2.078928, -3.584991, -0.917088),
             normal: (-0.987313, 0.097592, 0.125253), },
    Vertex { position: (2.025468, -3.556842, -1.204841),
             normal: (0.444124, 0.617475, -0.649214), },
    Vertex { position: (2.254361, -3.550931, -1.235118),
             normal: (-0.081045, 0.409121, -0.908874), },
    Vertex { position: (2.078928, -3.584991, -0.917088),
             normal: (-0.987313, 0.097592, 0.125253), },
    Vertex { position: (2.254361, -3.550931, -1.235118),
             normal: (-0.081045, 0.409121, -0.908874), },
    Vertex { position: (2.197935, -3.583948, -0.936437),
             normal: (-0.554502, -0.046423, 0.830886), },
    Vertex { position: (1.980621, -3.043895, -0.964237),
             normal: (0.872426, 0.488735, 0.003222), },
    Vertex { position: (2.091539, -3.032437, -0.947029),
             normal: (-0.541077, 0.245809, -0.804247), },
    Vertex { position: (2.170039, -3.134504, -0.978866),
             normal: (-0.495591, 0.225654, -0.838731), },
    Vertex { position: (2.197935, -3.583948, -0.936437),
             normal: (-0.554502, -0.046423, 0.830886), },
    Vertex { position: (2.254361, -3.550931, -1.235118),
             normal: (-0.081045, 0.409121, -0.908874), },
    Vertex { position: (2.343303, -3.507846, -1.195262),
             normal: (0.457854, 0.537523, -0.708123), },
    Vertex { position: (2.197935, -3.583948, -0.936437),
             normal: (-0.554502, -0.046423, 0.830886), },
    Vertex { position: (2.343303, -3.507846, -1.195262),
             normal: (0.457854, 0.537523, -0.708123), },
    Vertex { position: (2.386827, -3.462222, -1.13648),
             normal: (0.717573, 0.343682, 0.605781), },
    Vertex { position: (2.197935, -3.583948, -0.936437),
             normal: (-0.554502, -0.046423, 0.830886), },
    Vertex { position: (2.386827, -3.462222, -1.13648),
             normal: (0.717573, 0.343682, 0.605781), },
    Vertex { position: (2.440236, -3.509564, -1.019417),
             normal: (0.752232, 0.244352, 0.611914), },
    Vertex { position: (-3.042899, -3.193907, -1.207296),
             normal: (-0.545598, -0.330415, -0.770161), },
    Vertex { position: (-2.888628, -3.200302, -1.210934),
             normal: (0.012244, -0.298111, -0.954453), },
    Vertex { position: (-2.845816, -3.273661, -1.218321),
             normal: (-0.245482, -0.183395, -0.951896), },
    Vertex { position: (-3.042899, -3.193907, -1.207296),
             normal: (-0.545598, -0.330415, -0.770161), },
    Vertex { position: (-2.845816, -3.273661, -1.218321),
             normal: (-0.245482, -0.183395, -0.951896), },
    Vertex { position: (-2.975439, -3.308754, -1.25324),
             normal: (-0.492859, -0.096405, -0.864752), },
    Vertex { position: (-2.975439, -3.308754, -1.25324),
             normal: (-0.492859, -0.096405, -0.864752), },
    Vertex { position: (-2.845816, -3.273661, -1.218321),
             normal: (-0.245482, -0.183395, -0.951896), },
    Vertex { position: (-2.736599, -3.394849, -1.269577),
             normal: (0.430301, 0.548598, -0.716855), },
    Vertex { position: (-2.975439, -3.308754, -1.25324),
             normal: (-0.492859, -0.096405, -0.864752), },
    Vertex { position: (-2.736599, -3.394849, -1.269577),
             normal: (0.430301, 0.548598, -0.716855), },
    Vertex { position: (-2.856957, -3.449728, -1.356844),
             normal: (-0.074103, 0.409269, -0.909399), },
    Vertex { position: (-2.856957, -3.449728, -1.356844),
             normal: (-0.074103, 0.409269, -0.909399), },
    Vertex { position: (-2.736599, -3.394849, -1.269577),
             normal: (0.430301, 0.548598, -0.716855), },
    Vertex { position: (-2.631547, -3.559891, -1.33738),
             normal: (-0.13251, 0.440061, -0.888137), },
    Vertex { position: (-2.856957, -3.449728, -1.356844),
             normal: (-0.074103, 0.409269, -0.909399), },
    Vertex { position: (-2.631547, -3.559891, -1.33738),
             normal: (-0.13251, 0.440061, -0.888137), },
    Vertex { position: (-2.729567, -3.602976, -1.377236),
             normal: (0.317837, 0.631876, -0.706903), },
    Vertex { position: (-2.729567, -3.602976, -1.377236),
             normal: (0.317837, 0.631876, -0.706903), },
    Vertex { position: (-2.981824, -3.608887, -1.346959),
             normal: (0.413011, 0.629609, -0.658038), },
    Vertex { position: (-3.030627, -3.493327, -1.32265),
             normal: (0.009712, 0.399549, -0.91666), },
    Vertex { position: (-2.729567, -3.602976, -1.377236),
             normal: (0.317837, 0.631876, -0.706903), },
    Vertex { position: (-3.030627, -3.493327, -1.32265),
             normal: (0.009712, 0.399549, -0.91666), },
    Vertex { position: (-2.856957, -3.449728, -1.356844),
             normal: (-0.074103, 0.409269, -0.909399), },
    Vertex { position: (-2.856957, -3.449728, -1.356844),
             normal: (-0.074103, 0.409269, -0.909399), },
    Vertex { position: (-3.030627, -3.493327, -1.32265),
             normal: (0.009712, 0.399549, -0.91666), },
    Vertex { position: (-3.091252, -3.340925, -1.235864),
             normal: (0.070969, 0.266956, -0.961092), },
    Vertex { position: (-2.856957, -3.449728, -1.356844),
             normal: (-0.074103, 0.409269, -0.909399), },
    Vertex { position: (-3.091252, -3.340925, -1.235864),
             normal: (0.070969, 0.266956, -0.961092), },
    Vertex { position: (-2.975439, -3.308754, -1.25324),
             normal: (-0.492859, -0.096405, -0.864752), },
    Vertex { position: (-2.975439, -3.308754, -1.25324),
             normal: (-0.492859, -0.096405, -0.864752), },
    Vertex { position: (-3.091252, -3.340925, -1.235864),
             normal: (0.070969, 0.266956, -0.961092), },
    Vertex { position: (-3.135041, -3.243787, -1.189436),
             normal: (0.405633, 0.57823, -0.707893), },
    Vertex { position: (-2.975439, -3.308754, -1.25324),
             normal: (-0.492859, -0.096405, -0.864752), },
    Vertex { position: (-3.135041, -3.243787, -1.189436),
             normal: (0.405633, 0.57823, -0.707893), },
    Vertex { position: (-3.042899, -3.193907, -1.207296),
             normal: (-0.545598, -0.330415, -0.770161), },
    Vertex { position: (-2.699957, -3.390295, -1.185593),
             normal: (-0.431117, -0.034268, -0.901645), },
    Vertex { position: (-2.736599, -3.394849, -1.269577),
             normal: (0.430301, 0.548598, -0.716855), },
    Vertex { position: (-2.845816, -3.273661, -1.218321),
             normal: (-0.245482, -0.183395, -0.951896), },
    Vertex { position: (-2.699957, -3.390295, -1.185593),
             normal: (-0.431117, -0.034268, -0.901645), },
    Vertex { position: (-2.845816, -3.273661, -1.218321),
             normal: (-0.245482, -0.183395, -0.951896), },
    Vertex { position: (-2.787341, -3.278502, -1.138621),
             normal: (-0.461794, 0.113692, -0.879671), },
    Vertex { position: (-2.787341, -3.278502, -1.138621),
             normal: (-0.461794, 0.113692, -0.879671), },
    Vertex { position: (-2.845816, -3.273661, -1.218321),
             normal: (-0.245482, -0.183395, -0.951896), },
    Vertex { position: (-2.888628, -3.200302, -1.210934),
             normal: (0.012244, -0.298111, -0.954453), },
    Vertex { position: (-2.787341, -3.278502, -1.138621),
             normal: (-0.461794, 0.113692, -0.879671), },
    Vertex { position: (-2.888628, -3.200302, -1.210934),
             normal: (0.012244, -0.298111, -0.954453), },
    Vertex { position: (-2.822497, -3.186549, -1.120984),
             normal: (-0.46316, 0.228643, -0.856274), },
    Vertex { position: (-2.822497, -3.186549, -1.120984),
             normal: (-0.46316, 0.228643, -0.856274), },
    Vertex { position: (-2.90901, -3.084482, -1.089147),
             normal: (0.637284, 0.689194, -0.344791), },
    Vertex { position: (-2.884711, -3.063896, -0.993766),
             normal: (0.737412, 0.542596, -0.402261), },
    Vertex { position: (-2.822497, -3.186549, -1.120984),
             normal: (-0.46316, 0.228643, -0.856274), },
    Vertex { position: (-2.884711, -3.063896, -0.993766),
             normal: (0.737412, 0.542596, -0.402261), },
    Vertex { position: (-2.770335, -3.208138, -1.031045),
             normal: (-0.508358, 0.250892, -0.823787), },
    Vertex { position: (-3.184143, -3.298048, -1.156892),
             normal: (0.851754, 0.52393, 0.003494), },
    Vertex { position: (-3.135041, -3.243787, -1.189436),
             normal: (0.405633, 0.57823, -0.707893), },
    Vertex { position: (-3.091252, -3.340925, -1.235864),
             normal: (0.070969, 0.266956, -0.961092), },
    Vertex { position: (-3.184143, -3.298048, -1.156892),
             normal: (0.851754, 0.52393, 0.003494), },
    Vertex { position: (-3.091252, -3.340925, -1.235864),
             normal: (0.070969, 0.266956, -0.961092), },
    Vertex { position: (-3.158524, -3.405872, -1.197099),
             normal: (0.596352, 0.583149, -0.551635), },
    Vertex { position: (-3.09873, -3.539123, -1.252987),
             normal: (0.840313, 0.535537, 0.084106), },
    Vertex { position: (-3.158524, -3.405872, -1.197099),
             normal: (0.596352, 0.583149, -0.551635), },
    Vertex { position: (-3.091252, -3.340925, -1.235864),
             normal: (0.070969, 0.266956, -0.961092), },
    Vertex { position: (-3.09873, -3.539123, -1.252987),
             normal: (0.840313, 0.535537, 0.084106), },
    Vertex { position: (-3.091252, -3.340925, -1.235864),
             normal: (0.070969, 0.266956, -0.961092), },
    Vertex { position: (-3.030627, -3.493327, -1.32265),
             normal: (0.009712, 0.399549, -0.91666), },
    Vertex { position: (-3.030627, -3.493327, -1.32265),
             normal: (0.009712, 0.399549, -0.91666), },
    Vertex { position: (-2.981824, -3.608887, -1.346959),
             normal: (0.413011, 0.629609, -0.658038), },
    Vertex { position: (-3.09873, -3.539123, -1.252987),
             normal: (0.840313, 0.535537, 0.084106), },
    Vertex { position: (-3.03125, -3.09594, -1.106355),
             normal: (0.503689, 0.453945, -0.735004), },
    Vertex { position: (-2.822497, -3.186549, -1.120984),
             normal: (-0.46316, 0.228643, -0.856274), },
    Vertex { position: (-2.888628, -3.200302, -1.210934),
             normal: (0.012244, -0.298111, -0.954453), },
    Vertex { position: (-3.223246, -3.225388, -0.976573),
             normal: (0.163153, 0.19945, -0.96623), },
    Vertex { position: (-3.217306, -3.187686, -1.075214),
             normal: (0.977763, 0.208696, -0.020643), },
    Vertex { position: (-3.184143, -3.298048, -1.156892),
             normal: (0.851754, 0.52393, 0.003494), },
    Vertex { position: (-3.223246, -3.225388, -0.976573),
             normal: (0.163153, 0.19945, -0.96623), },
    Vertex { position: (-3.184143, -3.298048, -1.156892),
             normal: (0.851754, 0.52393, 0.003494), },
    Vertex { position: (-3.19417, -3.348553, -1.007196),
             normal: (0.144389, 0.231536, -0.962051), },
    Vertex { position: (-3.082741, -3.598298, -1.054556),
             normal: (-0.99734, 0.010761, 0.072093), },
    Vertex { position: (-3.09873, -3.539123, -1.252987),
             normal: (0.840313, 0.535537, 0.084106), },
    Vertex { position: (-2.981824, -3.608887, -1.346959),
             normal: (0.413011, 0.629609, -0.658038), },
    Vertex { position: (-3.082741, -3.598298, -1.054556),
             normal: (-0.99734, 0.010761, 0.072093), },
    Vertex { position: (-2.981824, -3.608887, -1.346959),
             normal: (0.413011, 0.629609, -0.658038), },
    Vertex { position: (-2.922908, -3.637036, -1.059206),
             normal: (-0.985013, 0.106756, 0.135469), },
    Vertex { position: (-3.19417, -3.348553, -1.007196),
             normal: (0.144389, 0.231536, -0.962051), },
    Vertex { position: (-3.184143, -3.298048, -1.156892),
             normal: (0.851754, 0.52393, 0.003494), },
    Vertex { position: (-3.158524, -3.405872, -1.197099),
             normal: (0.596352, 0.583149, -0.551635), },
    Vertex { position: (-3.19417, -3.348553, -1.007196),
             normal: (0.144389, 0.231536, -0.962051), },
    Vertex { position: (-3.158524, -3.405872, -1.197099),
             normal: (0.596352, 0.583149, -0.551635), },
    Vertex { position: (-3.18675, -3.457336, -1.025606),
             normal: (-0.948594, -0.185732, 0.256269), },
    Vertex { position: (-3.18675, -3.457336, -1.025606),
             normal: (-0.948594, -0.185732, 0.256269), },
    Vertex { position: (-3.158524, -3.405872, -1.197099),
             normal: (0.596352, 0.583149, -0.551635), },
    Vertex { position: (-3.09873, -3.539123, -1.252987),
             normal: (0.840313, 0.535537, 0.084106), },
    Vertex { position: (-3.18675, -3.457336, -1.025606),
             normal: (-0.948594, -0.185732, 0.256269), },
    Vertex { position: (-3.09873, -3.539123, -1.252987),
             normal: (0.840313, 0.535537, 0.084106), },
    Vertex { position: (-3.082741, -3.598298, -1.054556),
             normal: (-0.99734, 0.010761, 0.072093), },
    Vertex { position: (-3.19417, -3.348553, -1.007196),
             normal: (0.144389, 0.231536, -0.962051), },
    Vertex { position: (-3.087335, -3.350463, -0.831656),
             normal: (-0.471141, 0.022027, 0.881783), },
    Vertex { position: (-3.11957, -3.183977, -0.870739),
             normal: (-0.948594, -0.185732, 0.256269), },
    Vertex { position: (-3.19417, -3.348553, -1.007196),
             normal: (0.144389, 0.231536, -0.962051), },
    Vertex { position: (-3.11957, -3.183977, -0.870739),
             normal: (-0.948594, -0.185732, 0.256269), },
    Vertex { position: (-3.223246, -3.225388, -0.976573),
             normal: (0.163153, 0.19945, -0.96623), },
    Vertex { position: (-3.19417, -3.348553, -1.007196),
             normal: (0.144389, 0.231536, -0.962051), },
    Vertex { position: (-3.18675, -3.457336, -1.025606),
             normal: (-0.948594, -0.185732, 0.256269), },
    Vertex { position: (-3.074557, -3.486847, -0.843432),
             normal: (-0.385346, -0.01874, 0.922582), },
    Vertex { position: (-3.19417, -3.348553, -1.007196),
             normal: (0.144389, 0.231536, -0.962051), },
    Vertex { position: (-3.074557, -3.486847, -0.843432),
             normal: (-0.385346, -0.01874, 0.922582), },
    Vertex { position: (-3.087335, -3.350463, -0.831656),
             normal: (-0.471141, 0.022027, 0.881783), },
    Vertex { position: (-3.074557, -3.486847, -0.843432),
             normal: (-0.385346, -0.01874, 0.922582), },
    Vertex { position: (-3.18675, -3.457336, -1.025606),
             normal: (-0.948594, -0.185732, 0.256269), },
    Vertex { position: (-3.082741, -3.598298, -1.054556),
             normal: (-0.99734, 0.010761, 0.072093), },
    Vertex { position: (-3.074557, -3.486847, -0.843432),
             normal: (-0.385346, -0.01874, 0.922582), },
    Vertex { position: (-3.082741, -3.598298, -1.054556),
             normal: (-0.99734, 0.010761, 0.072093), },
    Vertex { position: (-3.006867, -3.575464, -0.830221),
             normal: (-0.11646, -0.017993, 0.993032), },
    Vertex { position: (-3.006867, -3.575464, -0.830221),
             normal: (-0.11646, -0.017993, 0.993032), },
    Vertex { position: (-3.082741, -3.598298, -1.054556),
             normal: (-0.99734, 0.010761, 0.072093), },
    Vertex { position: (-2.922908, -3.637036, -1.059206),
             normal: (-0.985013, 0.106756, 0.135469), },
    Vertex { position: (-3.006867, -3.575464, -0.830221),
             normal: (-0.11646, -0.017993, 0.993032), },
    Vertex { position: (-2.922908, -3.637036, -1.059206),
             normal: (-0.985013, 0.106756, 0.135469), },
    Vertex { position: (-2.870422, -3.601724, -0.843123),
             normal: (-0.037581, -0.042039, 0.998409), },
    Vertex { position: (-2.870422, -3.601724, -0.843123),
             normal: (-0.037581, -0.042039, 0.998409), },
    Vertex { position: (-2.922908, -3.637036, -1.059206),
             normal: (-0.985013, 0.106756, 0.135469), },
    Vertex { position: (-2.791754, -3.635993, -1.078555),
             normal: (0.339875, 0.026681, 0.940092), },
    Vertex { position: (-2.870422, -3.601724, -0.843123),
             normal: (-0.037581, -0.042039, 0.998409), },
    Vertex { position: (-2.791754, -3.635993, -1.078555),
             normal: (0.339875, 0.026681, 0.940092), },
    Vertex { position: (-2.740824, -3.597601, -0.875006),
             normal: (0.156207, -0.109405, 0.981647), },
    Vertex { position: (-3.121673, -3.120319, -1.136456),
             normal: (-0.039603, 0.339955, -0.939607), },
    Vertex { position: (-3.03125, -3.09594, -1.106355),
             normal: (0.503689, 0.453945, -0.735004), },
    Vertex { position: (-2.888628, -3.200302, -1.210934),
             normal: (0.012244, -0.298111, -0.954453), },
    Vertex { position: (-3.121673, -3.120319, -1.136456),
             normal: (-0.039603, 0.339955, -0.939607), },
    Vertex { position: (-2.888628, -3.200302, -1.210934),
             normal: (0.012244, -0.298111, -0.954453), },
    Vertex { position: (-3.042899, -3.193907, -1.207296),
             normal: (-0.545598, -0.330415, -0.770161), },
    Vertex { position: (-3.169546, -3.135273, -1.128247),
             normal: (-0.377491, -0.043727, -0.92498), },
    Vertex { position: (-3.121673, -3.120319, -1.136456),
             normal: (-0.039603, 0.339955, -0.939607), },
    Vertex { position: (-3.042899, -3.193907, -1.207296),
             normal: (-0.545598, -0.330415, -0.770161), },
    Vertex { position: (-3.169546, -3.135273, -1.128247),
             normal: (-0.377491, -0.043727, -0.92498), },
    Vertex { position: (-3.042899, -3.193907, -1.207296),
             normal: (-0.545598, -0.330415, -0.770161), },
    Vertex { position: (-3.135041, -3.243787, -1.189436),
             normal: (0.405633, 0.57823, -0.707893), },
    Vertex { position: (-3.217306, -3.187686, -1.075214),
             normal: (0.977763, 0.208696, -0.020643), },
    Vertex { position: (-3.169546, -3.135273, -1.128247),
             normal: (-0.377491, -0.043727, -0.92498), },
    Vertex { position: (-3.135041, -3.243787, -1.189436),
             normal: (0.405633, 0.57823, -0.707893), },
    Vertex { position: (-3.217306, -3.187686, -1.075214),
             normal: (0.977763, 0.208696, -0.020643), },
    Vertex { position: (-3.135041, -3.243787, -1.189436),
             normal: (0.405633, 0.57823, -0.707893), },
    Vertex { position: (-3.184143, -3.298048, -1.156892),
             normal: (0.851754, 0.52393, 0.003494), },
    Vertex { position: (-2.770335, -3.208138, -1.031045),
             normal: (-0.508358, 0.250892, -0.823787), },
    Vertex { position: (-2.884711, -3.063896, -0.993766),
             normal: (0.737412, 0.542596, -0.402261), },
    Vertex { position: (-2.928681, -3.072892, -0.924772),
             normal: (0.684558, 0.361154, 0.633205), },
    Vertex { position: (-2.770335, -3.208138, -1.031045),
             normal: (-0.508358, 0.250892, -0.823787), },
    Vertex { position: (-2.928681, -3.072892, -0.924772),
             normal: (0.684558, 0.361154, 0.633205), },
    Vertex { position: (-2.80326, -3.21358, -0.942403),
             normal: (0.713402, 0.39471, 0.579018), },
    Vertex { position: (-2.822497, -3.186549, -1.120984),
             normal: (-0.46316, 0.228643, -0.856274), },
    Vertex { position: (-2.770335, -3.208138, -1.031045),
             normal: (-0.508358, 0.250892, -0.823787), },
    Vertex { position: (-2.749355, -3.272099, -1.034148),
             normal: (0.845209, 0.529004, -0.075999), },
    Vertex { position: (-2.822497, -3.186549, -1.120984),
             normal: (-0.46316, 0.228643, -0.856274), },
    Vertex { position: (-2.749355, -3.272099, -1.034148),
             normal: (0.845209, 0.529004, -0.075999), },
    Vertex { position: (-2.787341, -3.278502, -1.138621),
             normal: (-0.461794, 0.113692, -0.879671), },
    Vertex { position: (-2.736599, -3.394849, -1.269577),
             normal: (0.430301, 0.548598, -0.716855), },
    Vertex { position: (-2.699957, -3.390295, -1.185593),
             normal: (-0.431117, -0.034268, -0.901645), },
    Vertex { position: (-2.58358, -3.514267, -1.278598),
             normal: (0.61389, 0.702597, -0.359856), },
    Vertex { position: (-2.736599, -3.394849, -1.269577),
             normal: (0.430301, 0.548598, -0.716855), },
    Vertex { position: (-2.58358, -3.514267, -1.278598),
             normal: (0.61389, 0.702597, -0.359856), },
    Vertex { position: (-2.631547, -3.559891, -1.33738),
             normal: (-0.13251, 0.440061, -0.888137), },
    Vertex { position: (-2.58358, -3.514267, -1.278598),
             normal: (0.61389, 0.702597, -0.359856), },
    Vertex { position: (-2.699957, -3.390295, -1.185593),
             normal: (-0.431117, -0.034268, -0.901645), },
    Vertex { position: (-2.649491, -3.404362, -1.100352),
             normal: (0.77125, 0.634502, -0.050796), },
    Vertex { position: (-2.58358, -3.514267, -1.278598),
             normal: (0.61389, 0.702597, -0.359856), },
    Vertex { position: (-2.649491, -3.404362, -1.100352),
             normal: (0.77125, 0.634502, -0.050796), },
    Vertex { position: (-2.52472, -3.561609, -1.161535),
             normal: (0.780958, 0.624512, -0.009449), },
    Vertex { position: (-2.649491, -3.404362, -1.100352),
             normal: (0.77125, 0.634502, -0.050796), },
    Vertex { position: (-2.699957, -3.390295, -1.185593),
             normal: (-0.431117, -0.034268, -0.901645), },
    Vertex { position: (-2.787341, -3.278502, -1.138621),
             normal: (-0.461794, 0.113692, -0.879671), },
    Vertex { position: (-2.649491, -3.404362, -1.100352),
             normal: (0.77125, 0.634502, -0.050796), },
    Vertex { position: (-2.787341, -3.278502, -1.138621),
             normal: (-0.461794, 0.113692, -0.879671), },
    Vertex { position: (-2.749355, -3.272099, -1.034148),
             normal: (0.845209, 0.529004, -0.075999), },
    Vertex { position: (-2.52472, -3.561609, -1.161535),
             normal: (0.780958, 0.624512, -0.009449), },
    Vertex { position: (-2.649491, -3.404362, -1.100352),
             normal: (0.77125, 0.634502, -0.050796), },
    Vertex { position: (-2.668957, -3.397513, -0.943626),
             normal: (0.684834, 0.490952, 0.538488), },
    Vertex { position: (-2.52472, -3.561609, -1.161535),
             normal: (0.780958, 0.624512, -0.009449), },
    Vertex { position: (-2.668957, -3.397513, -0.943626),
             normal: (0.684834, 0.490952, 0.538488), },
    Vertex { position: (-2.593513, -3.536154, -0.94245),
             normal: (0.712283, 0.385667, 0.586441), },
    Vertex { position: (-2.668957, -3.397513, -0.943626),
             normal: (0.684834, 0.490952, 0.538488), },
    Vertex { position: (-2.649491, -3.404362, -1.100352),
             normal: (0.77125, 0.634502, -0.050796), },
    Vertex { position: (-2.749355, -3.272099, -1.034148),
             normal: (0.845209, 0.529004, -0.075999), },
    Vertex { position: (-2.668957, -3.397513, -0.943626),
             normal: (0.684834, 0.490952, 0.538488), },
    Vertex { position: (-2.749355, -3.272099, -1.034148),
             normal: (0.845209, 0.529004, -0.075999), },
    Vertex { position: (-2.749867, -3.295148, -0.966073),
             normal: (0.722848, 0.455753, 0.519404), },
    Vertex { position: (-2.749867, -3.295148, -0.966073),
             normal: (0.722848, 0.455753, 0.519404), },
    Vertex { position: (-2.749355, -3.272099, -1.034148),
             normal: (0.845209, 0.529004, -0.075999), },
    Vertex { position: (-2.770335, -3.208138, -1.031045),
             normal: (-0.508358, 0.250892, -0.823787), },
    Vertex { position: (-2.749867, -3.295148, -0.966073),
             normal: (0.722848, 0.455753, 0.519404), },
    Vertex { position: (-2.770335, -3.208138, -1.031045),
             normal: (-0.508358, 0.250892, -0.823787), },
    Vertex { position: (-2.80326, -3.21358, -0.942403),
             normal: (0.713402, 0.39471, 0.579018), },
    Vertex { position: (-3.11957, -3.183977, -0.870739),
             normal: (-0.948594, -0.185732, 0.256269), },
    Vertex { position: (-3.087335, -3.350463, -0.831656),
             normal: (-0.471141, 0.022027, 0.881783), },
    Vertex { position: (-2.944625, -3.282121, -0.817054),
             normal: (0.225987, 0.181605, 0.957053), },
    Vertex { position: (-3.11957, -3.183977, -0.870739),
             normal: (-0.948594, -0.185732, 0.256269), },
    Vertex { position: (-2.944625, -3.282121, -0.817054),
             normal: (0.225987, 0.181605, 0.957053), },
    Vertex { position: (-3.011987, -3.092, -0.860973),
             normal: (0.308087, 0.149605, 0.939521), },
    Vertex { position: (-3.011987, -3.092, -0.860973),
             normal: (0.308087, 0.149605, 0.939521), },
    Vertex { position: (-2.944625, -3.282121, -0.817054),
             normal: (0.225987, 0.181605, 0.957053), },
    Vertex { position: (-2.80326, -3.21358, -0.942403),
             normal: (0.713402, 0.39471, 0.579018), },
    Vertex { position: (-3.011987, -3.092, -0.860973),
             normal: (0.308087, 0.149605, 0.939521), },
    Vertex { position: (-2.80326, -3.21358, -0.942403),
             normal: (0.713402, 0.39471, 0.579018), },
    Vertex { position: (-2.928681, -3.072892, -0.924772),
             normal: (0.684558, 0.361154, 0.633205), },
    Vertex { position: (-3.087335, -3.350463, -0.831656),
             normal: (-0.471141, 0.022027, 0.881783), },
    Vertex { position: (-3.074557, -3.486847, -0.843432),
             normal: (-0.385346, -0.01874, 0.922582), },
    Vertex { position: (-2.890885, -3.415616, -0.819125),
             normal: (0.229413, 0.089674, 0.96919), },
    Vertex { position: (-3.087335, -3.350463, -0.831656),
             normal: (-0.471141, 0.022027, 0.881783), },
    Vertex { position: (-2.890885, -3.415616, -0.819125),
             normal: (0.229413, 0.089674, 0.96919), },
    Vertex { position: (-2.944625, -3.282121, -0.817054),
             normal: (0.225987, 0.181605, 0.957053), },
    Vertex { position: (-2.944625, -3.282121, -0.817054),
             normal: (0.225987, 0.181605, 0.957053), },
    Vertex { position: (-2.890885, -3.415616, -0.819125),
             normal: (0.229413, 0.089674, 0.96919), },
    Vertex { position: (-2.749867, -3.295148, -0.966073),
             normal: (0.722848, 0.455753, 0.519404), },
    Vertex { position: (-2.944625, -3.282121, -0.817054),
             normal: (0.225987, 0.181605, 0.957053), },
    Vertex { position: (-2.749867, -3.295148, -0.966073),
             normal: (0.722848, 0.455753, 0.519404), },
    Vertex { position: (-2.80326, -3.21358, -0.942403),
             normal: (0.713402, 0.39471, 0.579018), },
    Vertex { position: (-2.890885, -3.415616, -0.819125),
             normal: (0.229413, 0.089674, 0.96919), },
    Vertex { position: (-3.074557, -3.486847, -0.843432),
             normal: (-0.385346, -0.01874, 0.922582), },
    Vertex { position: (-3.006867, -3.575464, -0.830221),
             normal: (-0.11646, -0.017993, 0.993032), },
    Vertex { position: (-2.870422, -3.601724, -0.843123),
             normal: (-0.037581, -0.042039, 0.998409), },
    Vertex { position: (-2.890885, -3.415616, -0.819125),
             normal: (0.229413, 0.089674, 0.96919), },
    Vertex { position: (-3.006867, -3.575464, -0.830221),
             normal: (-0.11646, -0.017993, 0.993032), },
    Vertex { position: (-2.749867, -3.295148, -0.966073),
             normal: (0.722848, 0.455753, 0.519404), },
    Vertex { position: (-2.890885, -3.415616, -0.819125),
             normal: (0.229413, 0.089674, 0.96919), },
    Vertex { position: (-2.668957, -3.397513, -0.943626),
             normal: (0.684834, 0.490952, 0.538488), },
    Vertex { position: (-2.870422, -3.601724, -0.843123),
             normal: (-0.037581, -0.042039, 0.998409), },
    Vertex { position: (-2.740824, -3.597601, -0.875006),
             normal: (0.156207, -0.109405, 0.981647), },
    Vertex { position: (-2.890885, -3.415616, -0.819125),
             normal: (0.229413, 0.089674, 0.96919), },
    Vertex { position: (-2.593513, -3.536154, -0.94245),
             normal: (0.712283, 0.385667, 0.586441), },
    Vertex { position: (-2.668957, -3.397513, -0.943626),
             normal: (0.684834, 0.490952, 0.538488), },
    Vertex { position: (-2.890885, -3.415616, -0.819125),
             normal: (0.229413, 0.089674, 0.96919), },
    Vertex { position: (-2.593513, -3.536154, -0.94245),
             normal: (0.712283, 0.385667, 0.586441), },
    Vertex { position: (-2.890885, -3.415616, -0.819125),
             normal: (0.229413, 0.089674, 0.96919), },
    Vertex { position: (-2.740824, -3.597601, -0.875006),
             normal: (0.156207, -0.109405, 0.981647), },
    Vertex { position: (-2.52472, -3.561609, -1.161535),
             normal: (0.780958, 0.624512, -0.009449), },
    Vertex { position: (-2.593513, -3.536154, -0.94245),
             normal: (0.712283, 0.385667, 0.586441), },
    Vertex { position: (-2.740824, -3.597601, -0.875006),
             normal: (0.156207, -0.109405, 0.981647), },
    Vertex { position: (-2.52472, -3.561609, -1.161535),
             normal: (0.780958, 0.624512, -0.009449), },
    Vertex { position: (-2.740824, -3.597601, -0.875006),
             normal: (0.156207, -0.109405, 0.981647), },
    Vertex { position: (-2.791754, -3.635993, -1.078555),
             normal: (0.339875, 0.026681, 0.940092), },
    Vertex { position: (-2.922908, -3.637036, -1.059206),
             normal: (-0.985013, 0.106756, 0.135469), },
    Vertex { position: (-2.981824, -3.608887, -1.346959),
             normal: (0.413011, 0.629609, -0.658038), },
    Vertex { position: (-2.729567, -3.602976, -1.377236),
             normal: (0.317837, 0.631876, -0.706903), },
    Vertex { position: (-2.922908, -3.637036, -1.059206),
             normal: (-0.985013, 0.106756, 0.135469), },
    Vertex { position: (-2.729567, -3.602976, -1.377236),
             normal: (0.317837, 0.631876, -0.706903), },
    Vertex { position: (-2.791754, -3.635993, -1.078555),
             normal: (0.339875, 0.026681, 0.940092), },
    Vertex { position: (-3.03125, -3.09594, -1.106355),
             normal: (0.503689, 0.453945, -0.735004), },
    Vertex { position: (-2.90901, -3.084482, -1.089147),
             normal: (0.637284, 0.689194, -0.344791), },
    Vertex { position: (-2.822497, -3.186549, -1.120984),
             normal: (-0.46316, 0.228643, -0.856274), },
    Vertex { position: (-2.791754, -3.635993, -1.078555),
             normal: (0.339875, 0.026681, 0.940092), },
    Vertex { position: (-2.729567, -3.602976, -1.377236),
             normal: (0.317837, 0.631876, -0.706903), },
    Vertex { position: (-2.631547, -3.559891, -1.33738),
             normal: (-0.13251, 0.440061, -0.888137), },
    Vertex { position: (-2.791754, -3.635993, -1.078555),
             normal: (0.339875, 0.026681, 0.940092), },
    Vertex { position: (-2.631547, -3.559891, -1.33738),
             normal: (-0.13251, 0.440061, -0.888137), },
    Vertex { position: (-2.58358, -3.514267, -1.278598),
             normal: (0.61389, 0.702597, -0.359856), },
    Vertex { position: (-2.791754, -3.635993, -1.078555),
             normal: (0.339875, 0.026681, 0.940092), },
    Vertex { position: (-2.58358, -3.514267, -1.278598),
             normal: (0.61389, 0.702597, -0.359856), },
    Vertex { position: (-2.52472, -3.561609, -1.161535),
             normal: (0.780958, 0.624512, -0.009449), },
    Vertex { position: (2.031262, -3.256709, 1.111122),
             normal: (-0.35872, 0.092902, 0.928811), },
    Vertex { position: (2.14888, -3.221616, 1.076203),
             normal: (-0.354049, -0.10839, 0.928924), },
    Vertex { position: (2.110033, -3.148257, 1.068816),
             normal: (0.422569, -0.18743, 0.886739), },
    Vertex { position: (2.031262, -3.256709, 1.111122),
             normal: (-0.35872, 0.092902, 0.928811), },
    Vertex { position: (2.110033, -3.148257, 1.068816),
             normal: (0.422569, -0.18743, 0.886739), },
    Vertex { position: (1.970051, -3.141862, 1.065178),
             normal: (-0.019303, -0.142974, 0.989538), },
    Vertex { position: (2.138771, -3.397683, 1.214726),
             normal: (-0.501053, -0.05946, 0.863371), },
    Vertex { position: (2.247981, -3.342804, 1.127459),
             normal: (-0.453746, -0.057149, 0.889297), },
    Vertex { position: (2.14888, -3.221616, 1.076203),
             normal: (-0.354049, -0.10839, 0.928924), },
    Vertex { position: (2.138771, -3.397683, 1.214726),
             normal: (-0.501053, -0.05946, 0.863371), },
    Vertex { position: (2.14888, -3.221616, 1.076203),
             normal: (-0.354049, -0.10839, 0.928924), },
    Vertex { position: (2.031262, -3.256709, 1.111122),
             normal: (-0.35872, 0.092902, 0.928811), },
    Vertex { position: (2.254361, -3.550931, 1.235118),
             normal: (-0.765488, -0.115047, 0.633082), },
    Vertex { position: (2.343303, -3.507846, 1.195262),
             normal: (-0.779685, 0.02537, 0.625657), },
    Vertex { position: (2.247981, -3.342804, 1.127459),
             normal: (-0.453746, -0.057149, 0.889297), },
    Vertex { position: (2.254361, -3.550931, 1.235118),
             normal: (-0.765488, -0.115047, 0.633082), },
    Vertex { position: (2.247981, -3.342804, 1.127459),
             normal: (-0.453746, -0.057149, 0.889297), },
    Vertex { position: (2.138771, -3.397683, 1.214726),
             normal: (-0.501053, -0.05946, 0.863371), },
    Vertex { position: (2.138771, -3.397683, 1.214726),
             normal: (-0.501053, -0.05946, 0.863371), },
    Vertex { position: (1.981186, -3.441282, 1.180532),
             normal: (0.982106, -0.010346, 0.188044), },
    Vertex { position: (2.025468, -3.556842, 1.204841),
             normal: (-0.807765, -0.096776, 0.581507), },
    Vertex { position: (2.138771, -3.397683, 1.214726),
             normal: (-0.501053, -0.05946, 0.863371), },
    Vertex { position: (2.025468, -3.556842, 1.204841),
             normal: (-0.807765, -0.096776, 0.581507), },
    Vertex { position: (2.254361, -3.550931, 1.235118),
             normal: (-0.765488, -0.115047, 0.633082), },
    Vertex { position: (2.031262, -3.256709, 1.111122),
             normal: (-0.35872, 0.092902, 0.928811), },
    Vertex { position: (1.926176, -3.28888, 1.093746),
             normal: (0.937141, -0.149709, 0.315204), },
    Vertex { position: (1.981186, -3.441282, 1.180532),
             normal: (0.982106, -0.010346, 0.188044), },
    Vertex { position: (2.031262, -3.256709, 1.111122),
             normal: (-0.35872, 0.092902, 0.928811), },
    Vertex { position: (1.981186, -3.441282, 1.180532),
             normal: (0.982106, -0.010346, 0.188044), },
    Vertex { position: (2.138771, -3.397683, 1.214726),
             normal: (-0.501053, -0.05946, 0.863371), },
    Vertex { position: (1.970051, -3.141862, 1.065178),
             normal: (-0.019303, -0.142974, 0.989538), },
    Vertex { position: (1.886443, -3.191742, 1.047318),
             normal: (0.866898, -0.268351, 0.420091), },
    Vertex { position: (1.926176, -3.28888, 1.093746),
             normal: (0.937141, -0.149709, 0.315204), },
    Vertex { position: (1.970051, -3.141862, 1.065178),
             normal: (-0.019303, -0.142974, 0.989538), },
    Vertex { position: (1.926176, -3.28888, 1.093746),
             normal: (0.937141, -0.149709, 0.315204), },
    Vertex { position: (2.031262, -3.256709, 1.111122),
             normal: (-0.35872, 0.092902, 0.928811), },
    Vertex { position: (2.201939, -3.226457, 0.996503),
             normal: (0.567579, -0.469834, -0.6761), },
    Vertex { position: (2.14888, -3.221616, 1.076203),
             normal: (-0.354049, -0.10839, 0.928924), },
    Vertex { position: (2.247981, -3.342804, 1.127459),
             normal: (-0.453746, -0.057149, 0.889297), },
    Vertex { position: (2.201939, -3.226457, 0.996503),
             normal: (0.567579, -0.469834, -0.6761), },
    Vertex { position: (2.247981, -3.342804, 1.127459),
             normal: (-0.453746, -0.057149, 0.889297), },
    Vertex { position: (2.281229, -3.33825, 1.043475),
             normal: (0.886562, -0.46255, 0.007486), },
    Vertex { position: (2.170039, -3.134504, 0.978866),
             normal: (0.890357, -0.340018, -0.302742), },
    Vertex { position: (2.110033, -3.148257, 1.068816),
             normal: (0.422569, -0.18743, 0.886739), },
    Vertex { position: (2.14888, -3.221616, 1.076203),
             normal: (-0.354049, -0.10839, 0.928924), },
    Vertex { position: (2.170039, -3.134504, 0.978866),
             normal: (0.890357, -0.340018, -0.302742), },
    Vertex { position: (2.14888, -3.221616, 1.076203),
             normal: (-0.354049, -0.10839, 0.928924), },
    Vertex { position: (2.201939, -3.226457, 0.996503),
             normal: (0.567579, -0.469834, -0.6761), },
    Vertex { position: (2.217369, -3.156093, 0.888927),
             normal: (0.579344, -0.339433, -0.741044), },
    Vertex { position: (2.113587, -3.011851, 0.851648),
             normal: (0.789099, -0.039289, -0.613008), },
    Vertex { position: (2.091539, -3.032437, 0.947029),
             normal: (0.773659, -0.235087, -0.588375), },
    Vertex { position: (2.217369, -3.156093, 0.888927),
             normal: (0.579344, -0.339433, -0.741044), },
    Vertex { position: (2.091539, -3.032437, 0.947029),
             normal: (0.773659, -0.235087, -0.588375), },
    Vertex { position: (2.170039, -3.134504, 0.978866),
             normal: (0.890357, -0.340018, -0.302742), },
    Vertex { position: (1.865135, -3.353827, 1.054981),
             normal: (0.257818, -0.230014, -0.938415), },
    Vertex { position: (1.926176, -3.28888, 1.093746),
             normal: (0.937141, -0.149709, 0.315204), },
    Vertex { position: (1.886443, -3.191742, 1.047318),
             normal: (0.866898, -0.268351, 0.420091), },
    Vertex { position: (1.865135, -3.353827, 1.054981),
             normal: (0.257818, -0.230014, -0.938415), },
    Vertex { position: (1.886443, -3.191742, 1.047318),
             normal: (0.866898, -0.268351, 0.420091), },
    Vertex { position: (1.841888, -3.246003, 1.014774),
             normal: (0.230893, -0.309688, -0.922378), },
    Vertex { position: (1.981186, -3.441282, 1.180532),
             normal: (0.982106, -0.010346, 0.188044), },
    Vertex { position: (1.926176, -3.28888, 1.093746),
             normal: (0.937141, -0.149709, 0.315204), },
    Vertex { position: (1.865135, -3.353827, 1.054981),
             normal: (0.257818, -0.230014, -0.938415), },
    Vertex { position: (1.981186, -3.441282, 1.180532),
             normal: (0.982106, -0.010346, 0.188044), },
    Vertex { position: (1.865135, -3.353827, 1.054981),
             normal: (0.257818, -0.230014, -0.938415), },
    Vertex { position: (1.919391, -3.487078, 1.110869),
             normal: (0.148388, -0.325205, -0.933929), },
    Vertex { position: (1.919391, -3.487078, 1.110869),
             normal: (0.148388, -0.325205, -0.933929), },
    Vertex { position: (2.025468, -3.556842, 1.204841),
             normal: (-0.807765, -0.096776, 0.581507), },
    Vertex { position: (1.981186, -3.441282, 1.180532),
             normal: (0.982106, -0.010346, 0.188044), },
    Vertex { position: (2.110033, -3.148257, 1.068816),
             normal: (0.422569, -0.18743, 0.886739), },
    Vertex { position: (2.170039, -3.134504, 0.978866),
             normal: (0.890357, -0.340018, -0.302742), },
    Vertex { position: (1.980621, -3.043895, 0.964237),
             normal: (-0.215783, -0.895808, -0.388544), },
    Vertex { position: (1.83279, -3.296508, 0.865078),
             normal: (-0.085416, -0.081635, -0.992995), },
    Vertex { position: (1.841888, -3.246003, 1.014774),
             normal: (0.230893, -0.309688, -0.922378), },
    Vertex { position: (1.811797, -3.135641, 0.933096),
             normal: (-0.156447, -0.088128, 0.983747), },
    Vertex { position: (1.83279, -3.296508, 0.865078),
             normal: (-0.085416, -0.081635, -0.992995), },
    Vertex { position: (1.811797, -3.135641, 0.933096),
             normal: (-0.156447, -0.088128, 0.983747), },
    Vertex { position: (1.806407, -3.173343, 0.834455),
             normal: (-0.042094, -0.220101, -0.974568), },
    Vertex { position: (2.078928, -3.584991, 0.917088),
             normal: (-0.348227, -0.192527, -0.917427), },
    Vertex { position: (2.025468, -3.556842, 1.204841),
             normal: (-0.807765, -0.096776, 0.581507), },
    Vertex { position: (1.919391, -3.487078, 1.110869),
             normal: (0.148388, -0.325205, -0.933929), },
    Vertex { position: (2.078928, -3.584991, 0.917088),
             normal: (-0.348227, -0.192527, -0.917427), },
    Vertex { position: (1.919391, -3.487078, 1.110869),
             normal: (0.148388, -0.325205, -0.933929), },
    Vertex { position: (1.933899, -3.546253, 0.912438),
             normal: (0.255431, -0.055528, -0.965231), },
    Vertex { position: (1.839523, -3.405292, 0.883488),
             normal: (-0.401279, -0.250965, -0.880904), },
    Vertex { position: (1.865135, -3.353827, 1.054981),
             normal: (0.257818, -0.230014, -0.938415), },
    Vertex { position: (1.841888, -3.246003, 1.014774),
             normal: (0.230893, -0.309688, -0.922378), },
    Vertex { position: (1.839523, -3.405292, 0.883488),
             normal: (-0.401279, -0.250965, -0.880904), },
    Vertex { position: (1.841888, -3.246003, 1.014774),
             normal: (0.230893, -0.309688, -0.922378), },
    Vertex { position: (1.83279, -3.296508, 0.865078),
             normal: (-0.085416, -0.081635, -0.992995), },
    Vertex { position: (1.933899, -3.546253, 0.912438),
             normal: (0.255431, -0.055528, -0.965231), },
    Vertex { position: (1.919391, -3.487078, 1.110869),
             normal: (0.148388, -0.325205, -0.933929), },
    Vertex { position: (1.865135, -3.353827, 1.054981),
             normal: (0.257818, -0.230014, -0.938415), },
    Vertex { position: (1.933899, -3.546253, 0.912438),
             normal: (0.255431, -0.055528, -0.965231), },
    Vertex { position: (1.865135, -3.353827, 1.054981),
             normal: (0.257818, -0.230014, -0.938415), },
    Vertex { position: (1.839523, -3.405292, 0.883488),
             normal: (-0.401279, -0.250965, -0.880904), },
    Vertex { position: (1.806407, -3.173343, 0.834455),
             normal: (-0.042094, -0.220101, -0.974568), },
    Vertex { position: (1.900481, -3.131932, 0.728621),
             normal: (-0.363523, -0.150625, -0.919327), },
    Vertex { position: (1.92973, -3.298418, 0.689538),
             normal: (-0.924461, -0.213385, -0.315973), },
    Vertex { position: (1.806407, -3.173343, 0.834455),
             normal: (-0.042094, -0.220101, -0.974568), },
    Vertex { position: (1.92973, -3.298418, 0.689538),
             normal: (-0.924461, -0.213385, -0.315973), },
    Vertex { position: (1.83279, -3.296508, 0.865078),
             normal: (-0.085416, -0.081635, -0.992995), },
    Vertex { position: (1.92973, -3.298418, 0.689538),
             normal: (-0.924461, -0.213385, -0.315973), },
    Vertex { position: (1.941325, -3.434803, 0.701314),
             normal: (-0.914496, -0.253607, -0.315247), },
    Vertex { position: (1.839523, -3.405292, 0.883488),
             normal: (-0.401279, -0.250965, -0.880904), },
    Vertex { position: (1.92973, -3.298418, 0.689538),
             normal: (-0.924461, -0.213385, -0.315973), },
    Vertex { position: (1.839523, -3.405292, 0.883488),
             normal: (-0.401279, -0.250965, -0.880904), },
    Vertex { position: (1.83279, -3.296508, 0.865078),
             normal: (-0.085416, -0.081635, -0.992995), },
    Vertex { position: (2.002745, -3.52342, 0.688103),
             normal: (-0.943599, -0.160394, -0.289646), },
    Vertex { position: (1.933899, -3.546253, 0.912438),
             normal: (0.255431, -0.055528, -0.965231), },
    Vertex { position: (1.839523, -3.405292, 0.883488),
             normal: (-0.401279, -0.250965, -0.880904), },
    Vertex { position: (2.002745, -3.52342, 0.688103),
             normal: (-0.943599, -0.160394, -0.289646), },
    Vertex { position: (1.839523, -3.405292, 0.883488),
             normal: (-0.401279, -0.250965, -0.880904), },
    Vertex { position: (1.941325, -3.434803, 0.701314),
             normal: (-0.914496, -0.253607, -0.315247), },
    Vertex { position: (2.126553, -3.549679, 0.701005),
             normal: (0.601229, -0.111151, -0.791308), },
    Vertex { position: (2.078928, -3.584991, 0.917088),
             normal: (-0.348227, -0.192527, -0.917427), },
    Vertex { position: (1.933899, -3.546253, 0.912438),
             normal: (0.255431, -0.055528, -0.965231), },
    Vertex { position: (2.126553, -3.549679, 0.701005),
             normal: (0.601229, -0.111151, -0.791308), },
    Vertex { position: (1.933899, -3.546253, 0.912438),
             normal: (0.255431, -0.055528, -0.965231), },
    Vertex { position: (2.002745, -3.52342, 0.688103),
             normal: (-0.943599, -0.160394, -0.289646), },
    Vertex { position: (2.244147, -3.545557, 0.732888),
             normal: (0.53288, -0.088285, -0.841572), },
    Vertex { position: (2.197935, -3.583948, 0.936437),
             normal: (0.546571, -0.125171, -0.828005), },
    Vertex { position: (2.078928, -3.584991, 0.917088),
             normal: (-0.348227, -0.192527, -0.917427), },
    Vertex { position: (2.244147, -3.545557, 0.732888),
             normal: (0.53288, -0.088285, -0.841572), },
    Vertex { position: (2.078928, -3.584991, 0.917088),
             normal: (-0.348227, -0.192527, -0.917427), },
    Vertex { position: (2.126553, -3.549679, 0.701005),
             normal: (0.601229, -0.111151, -0.791308), },
    Vertex { position: (1.970051, -3.141862, 1.065178),
             normal: (-0.019303, -0.142974, 0.989538), },
    Vertex { position: (2.110033, -3.148257, 1.068816),
             normal: (0.422569, -0.18743, 0.886739), },
    Vertex { position: (1.980621, -3.043895, 0.964237),
             normal: (-0.215783, -0.895808, -0.388544), },
    Vertex { position: (1.970051, -3.141862, 1.065178),
             normal: (-0.019303, -0.142974, 0.989538), },
    Vertex { position: (1.980621, -3.043895, 0.964237),
             normal: (-0.215783, -0.895808, -0.388544), },
    Vertex { position: (1.898573, -3.068274, 0.994338),
             normal: (0.356923, -0.210291, 0.910156), },
    Vertex { position: (1.886443, -3.191742, 1.047318),
             normal: (0.866898, -0.268351, 0.420091), },
    Vertex { position: (1.970051, -3.141862, 1.065178),
             normal: (-0.019303, -0.142974, 0.989538), },
    Vertex { position: (1.898573, -3.068274, 0.994338),
             normal: (0.356923, -0.210291, 0.910156), },
    Vertex { position: (1.886443, -3.191742, 1.047318),
             normal: (0.866898, -0.268351, 0.420091), },
    Vertex { position: (1.898573, -3.068274, 0.994338),
             normal: (0.356923, -0.210291, 0.910156), },
    Vertex { position: (1.855134, -3.083228, 0.986129),
             normal: (0.517272, -0.552302, 0.653753), },
    Vertex { position: (1.841888, -3.246003, 1.014774),
             normal: (0.230893, -0.309688, -0.922378), },
    Vertex { position: (1.886443, -3.191742, 1.047318),
             normal: (0.866898, -0.268351, 0.420091), },
    Vertex { position: (1.855134, -3.083228, 0.986129),
             normal: (0.517272, -0.552302, 0.653753), },
    Vertex { position: (1.841888, -3.246003, 1.014774),
             normal: (0.230893, -0.309688, -0.922378), },
    Vertex { position: (1.855134, -3.083228, 0.986129),
             normal: (0.517272, -0.552302, 0.653753), },
    Vertex { position: (1.811797, -3.135641, 0.933096),
             normal: (-0.156447, -0.088128, 0.983747), },
    Vertex { position: (2.187495, -3.161535, 0.800285),
             normal: (-0.156072, 0.243426, 0.95728), },
    Vertex { position: (2.07369, -3.020848, 0.782654),
             normal: (-0.080858, 0.024731, 0.996419), },
    Vertex { position: (2.113587, -3.011851, 0.851648),
             normal: (0.789099, -0.039289, -0.613008), },
    Vertex { position: (2.187495, -3.161535, 0.800285),
             normal: (-0.156072, 0.243426, 0.95728), },
    Vertex { position: (2.113587, -3.011851, 0.851648),
             normal: (0.789099, -0.039289, -0.613008), },
    Vertex { position: (2.217369, -3.156093, 0.888927),
             normal: (0.579344, -0.339433, -0.741044), },
    Vertex { position: (2.201939, -3.226457, 0.996503),
             normal: (0.567579, -0.469834, -0.6761), },
    Vertex { position: (2.236407, -3.220054, 0.89203),
             normal: (-0.661663, -0.025481, 0.749369), },
    Vertex { position: (2.217369, -3.156093, 0.888927),
             normal: (0.579344, -0.339433, -0.741044), },
    Vertex { position: (2.201939, -3.226457, 0.996503),
             normal: (0.567579, -0.469834, -0.6761), },
    Vertex { position: (2.217369, -3.156093, 0.888927),
             normal: (0.579344, -0.339433, -0.741044), },
    Vertex { position: (2.170039, -3.134504, 0.978866),
             normal: (0.890357, -0.340018, -0.302742), },
    Vertex { position: (2.343303, -3.507846, 1.195262),
             normal: (-0.779685, 0.02537, 0.625657), },
    Vertex { position: (2.386827, -3.462222, 1.13648),
             normal: (0.507452, 0.36284, 0.781562), },
    Vertex { position: (2.281229, -3.33825, 1.043475),
             normal: (0.886562, -0.46255, 0.007486), },
    Vertex { position: (2.343303, -3.507846, 1.195262),
             normal: (-0.779685, 0.02537, 0.625657), },
    Vertex { position: (2.281229, -3.33825, 1.043475),
             normal: (0.886562, -0.46255, 0.007486), },
    Vertex { position: (2.247981, -3.342804, 1.127459),
             normal: (-0.453746, -0.057149, 0.889297), },
    Vertex { position: (2.440236, -3.509564, 1.019417),
             normal: (0.121953, 0.140869, 0.982488), },
    Vertex { position: (2.327021, -3.352317, 0.958234),
             normal: (0.484364, 0.195735, 0.85269), },
    Vertex { position: (2.281229, -3.33825, 1.043475),
             normal: (0.886562, -0.46255, 0.007486), },
    Vertex { position: (2.440236, -3.509564, 1.019417),
             normal: (0.121953, 0.140869, 0.982488), },
    Vertex { position: (2.281229, -3.33825, 1.043475),
             normal: (0.886562, -0.46255, 0.007486), },
    Vertex { position: (2.386827, -3.462222, 1.13648),
             normal: (0.507452, 0.36284, 0.781562), },
    Vertex { position: (2.236407, -3.220054, 0.89203),
             normal: (-0.661663, -0.025481, 0.749369), },
    Vertex { position: (2.201939, -3.226457, 0.996503),
             normal: (0.567579, -0.469834, -0.6761), },
    Vertex { position: (2.281229, -3.33825, 1.043475),
             normal: (0.886562, -0.46255, 0.007486), },
    Vertex { position: (2.236407, -3.220054, 0.89203),
             normal: (-0.661663, -0.025481, 0.749369), },
    Vertex { position: (2.281229, -3.33825, 1.043475),
             normal: (0.886562, -0.46255, 0.007486), },
    Vertex { position: (2.327021, -3.352317, 0.958234),
             normal: (0.484364, 0.195735, 0.85269), },
    Vertex { position: (2.377814, -3.484109, 0.800332),
             normal: (0.913315, 0.39776, -0.087428), },
    Vertex { position: (2.309358, -3.345468, 0.801508),
             normal: (0.170703, 0.25395, 0.952035), },
    Vertex { position: (2.327021, -3.352317, 0.958234),
             normal: (0.484364, 0.195735, 0.85269), },
    Vertex { position: (2.377814, -3.484109, 0.800332),
             normal: (0.913315, 0.39776, -0.087428), },
    Vertex { position: (2.327021, -3.352317, 0.958234),
             normal: (0.484364, 0.195735, 0.85269), },
    Vertex { position: (2.440236, -3.509564, 1.019417),
             normal: (0.121953, 0.140869, 0.982488), },
    Vertex { position: (2.235942, -3.243103, 0.823955),
             normal: (0.977763, 0.208696, 0.020643), },
    Vertex { position: (2.236407, -3.220054, 0.89203),
             normal: (-0.661663, -0.025481, 0.749369), },
    Vertex { position: (2.327021, -3.352317, 0.958234),
             normal: (0.484364, 0.195735, 0.85269), },
    Vertex { position: (2.235942, -3.243103, 0.823955),
             normal: (0.977763, 0.208696, 0.020643), },
    Vertex { position: (2.327021, -3.352317, 0.958234),
             normal: (0.484364, 0.195735, 0.85269), },
    Vertex { position: (2.309358, -3.345468, 0.801508),
             normal: (0.170703, 0.25395, 0.952035), },
    Vertex { position: (2.187495, -3.161535, 0.800285),
             normal: (-0.156072, 0.243426, 0.95728), },
    Vertex { position: (2.217369, -3.156093, 0.888927),
             normal: (0.579344, -0.339433, -0.741044), },
    Vertex { position: (2.236407, -3.220054, 0.89203),
             normal: (-0.661663, -0.025481, 0.749369), },
    Vertex { position: (2.187495, -3.161535, 0.800285),
             normal: (-0.156072, 0.243426, 0.95728), },
    Vertex { position: (2.236407, -3.220054, 0.89203),
             normal: (-0.661663, -0.025481, 0.749369), },
    Vertex { position: (2.235942, -3.243103, 0.823955),
             normal: (0.977763, 0.208696, 0.020643), },
    Vertex { position: (1.998099, -3.039955, 0.718855),
             normal: (-0.245482, -0.183394, 0.951896), },
    Vertex { position: (2.059222, -3.230076, 0.674936),
             normal: (0.430301, 0.548598, 0.716855), },
    Vertex { position: (1.92973, -3.298418, 0.689538),
             normal: (-0.924461, -0.213385, -0.315973), },
    Vertex { position: (1.998099, -3.039955, 0.718855),
             normal: (-0.245482, -0.183394, 0.951896), },
    Vertex { position: (1.92973, -3.298418, 0.689538),
             normal: (-0.924461, -0.213385, -0.315973), },
    Vertex { position: (1.900481, -3.131932, 0.728621),
             normal: (-0.363523, -0.150625, -0.919327), },
    Vertex { position: (2.07369, -3.020848, 0.782654),
             normal: (-0.080858, 0.024731, 0.996419), },
    Vertex { position: (2.187495, -3.161535, 0.800285),
             normal: (-0.156072, 0.243426, 0.95728), },
    Vertex { position: (2.059222, -3.230076, 0.674936),
             normal: (0.430301, 0.548598, 0.716855), },
    Vertex { position: (2.07369, -3.020848, 0.782654),
             normal: (-0.080858, 0.024731, 0.996419), },
    Vertex { position: (2.059222, -3.230076, 0.674936),
             normal: (0.430301, 0.548598, 0.716855), },
    Vertex { position: (1.998099, -3.039955, 0.718855),
             normal: (-0.245482, -0.183394, 0.951896), },
    Vertex { position: (2.059222, -3.230076, 0.674936),
             normal: (0.430301, 0.548598, 0.716855), },
    Vertex { position: (2.107985, -3.363571, 0.677007),
             normal: (0.317836, 0.631876, 0.706903), },
    Vertex { position: (1.941325, -3.434803, 0.701314),
             normal: (-0.914496, -0.253607, -0.315247), },
    Vertex { position: (2.059222, -3.230076, 0.674936),
             normal: (0.430301, 0.548598, 0.716855), },
    Vertex { position: (1.941325, -3.434803, 0.701314),
             normal: (-0.914496, -0.253607, -0.315247), },
    Vertex { position: (1.92973, -3.298418, 0.689538),
             normal: (-0.924461, -0.213385, -0.315973), },
    Vertex { position: (2.187495, -3.161535, 0.800285),
             normal: (-0.156072, 0.243426, 0.95728), },
    Vertex { position: (2.235942, -3.243103, 0.823955),
             normal: (0.977763, 0.208696, 0.020643), },
    Vertex { position: (2.107985, -3.363571, 0.677007),
             normal: (0.317836, 0.631876, 0.706903), },
    Vertex { position: (2.187495, -3.161535, 0.800285),
             normal: (-0.156072, 0.243426, 0.95728), },
    Vertex { position: (2.107985, -3.363571, 0.677007),
             normal: (0.317836, 0.631876, 0.706903), },
    Vertex { position: (2.059222, -3.230076, 0.674936),
             normal: (0.430301, 0.548598, 0.716855), },
    Vertex { position: (2.002745, -3.52342, 0.688103),
             normal: (-0.943599, -0.160394, -0.289646), },
    Vertex { position: (1.941325, -3.434803, 0.701314),
             normal: (-0.914496, -0.253607, -0.315247), },
    Vertex { position: (2.107985, -3.363571, 0.677007),
             normal: (0.317836, 0.631876, 0.706903), },
    Vertex { position: (2.002745, -3.52342, 0.688103),
             normal: (-0.943599, -0.160394, -0.289646), },
    Vertex { position: (2.107985, -3.363571, 0.677007),
             normal: (0.317836, 0.631876, 0.706903), },
    Vertex { position: (2.126553, -3.549679, 0.701005),
             normal: (0.601229, -0.111151, -0.791308), },
    Vertex { position: (2.309358, -3.345468, 0.801508),
             normal: (0.170703, 0.25395, 0.952035), },
    Vertex { position: (2.107985, -3.363571, 0.677007),
             normal: (0.317836, 0.631876, 0.706903), },
    Vertex { position: (2.235942, -3.243103, 0.823955),
             normal: (0.977763, 0.208696, 0.020643), },
    Vertex { position: (2.107985, -3.363571, 0.677007),
             normal: (0.317836, 0.631876, 0.706903), },
    Vertex { position: (2.244147, -3.545557, 0.732888),
             normal: (0.53288, -0.088285, -0.841572), },
    Vertex { position: (2.126553, -3.549679, 0.701005),
             normal: (0.601229, -0.111151, -0.791308), },
    Vertex { position: (2.244147, -3.545557, 0.732888),
             normal: (0.53288, -0.088285, -0.841572), },
    Vertex { position: (2.107985, -3.363571, 0.677007),
             normal: (0.317836, 0.631876, 0.706903), },
    Vertex { position: (2.309358, -3.345468, 0.801508),
             normal: (0.170703, 0.25395, 0.952035), },
    Vertex { position: (2.244147, -3.545557, 0.732888),
             normal: (0.53288, -0.088285, -0.841572), },
    Vertex { position: (2.309358, -3.345468, 0.801508),
             normal: (0.170703, 0.25395, 0.952035), },
    Vertex { position: (2.377814, -3.484109, 0.800332),
             normal: (0.913315, 0.39776, -0.087428), },
    Vertex { position: (2.197935, -3.583948, 0.936437),
             normal: (0.546571, -0.125171, -0.828005), },
    Vertex { position: (2.244147, -3.545557, 0.732888),
             normal: (0.53288, -0.088285, -0.841572), },
    Vertex { position: (2.377814, -3.484109, 0.800332),
             normal: (0.913315, 0.39776, -0.087428), },
    Vertex { position: (2.197935, -3.583948, 0.936437),
             normal: (0.546571, -0.125171, -0.828005), },
    Vertex { position: (2.377814, -3.484109, 0.800332),
             normal: (0.913315, 0.39776, -0.087428), },
    Vertex { position: (2.440236, -3.509564, 1.019417),
             normal: (0.121953, 0.140869, 0.982488), },
    Vertex { position: (2.197935, -3.583948, 0.936437),
             normal: (0.546571, -0.125171, -0.828005), },
    Vertex { position: (2.254361, -3.550931, 1.235118),
             normal: (-0.765488, -0.115047, 0.633082), },
    Vertex { position: (2.025468, -3.556842, 1.204841),
             normal: (-0.807765, -0.096776, 0.581507), },
    Vertex { position: (2.197935, -3.583948, 0.936437),
             normal: (0.546571, -0.125171, -0.828005), },
    Vertex { position: (2.025468, -3.556842, 1.204841),
             normal: (-0.807765, -0.096776, 0.581507), },
    Vertex { position: (2.078928, -3.584991, 0.917088),
             normal: (-0.348227, -0.192527, -0.917427), },
    Vertex { position: (2.170039, -3.134504, 0.978866),
             normal: (0.890357, -0.340018, -0.302742), },
    Vertex { position: (2.091539, -3.032437, 0.947029),
             normal: (0.773659, -0.235087, -0.588375), },
    Vertex { position: (1.980621, -3.043895, 0.964237),
             normal: (-0.215783, -0.895808, -0.388544), },
    Vertex { position: (2.440236, -3.509564, 1.019417),
             normal: (0.121953, 0.140869, 0.982488), },
    Vertex { position: (2.386827, -3.462222, 1.13648),
             normal: (0.507452, 0.36284, 0.781562), },
    Vertex { position: (2.343303, -3.507846, 1.195262),
             normal: (-0.779685, 0.02537, 0.625657), },
    Vertex { position: (2.440236, -3.509564, 1.019417),
             normal: (0.121953, 0.140869, 0.982488), },
    Vertex { position: (2.343303, -3.507846, 1.195262),
             normal: (-0.779685, 0.02537, 0.625657), },
    Vertex { position: (2.254361, -3.550931, 1.235118),
             normal: (-0.765488, -0.115047, 0.633082), },
    Vertex { position: (2.440236, -3.509564, 1.019417),
             normal: (0.121953, 0.140869, 0.982488), },
    Vertex { position: (2.254361, -3.550931, 1.235118),
             normal: (-0.765488, -0.115047, 0.633082), },
    Vertex { position: (2.197935, -3.583948, 0.936437),
             normal: (0.546571, -0.125171, -0.828005), },
    Vertex { position: (-2.975439, -3.308754, 1.25324),
             normal: (0.205604, 0.070037, 0.976126), },
    Vertex { position: (-2.845816, -3.273661, 1.218321),
             normal: (0.193496, 0.00102, 0.981101), },
    Vertex { position: (-2.888628, -3.200302, 1.210934),
             normal: (0.254799, -0.149124, 0.955426), },
    Vertex { position: (-2.975439, -3.308754, 1.25324),
             normal: (0.205604, 0.070037, 0.976126), },
    Vertex { position: (-2.888628, -3.200302, 1.210934),
             normal: (0.254799, -0.149124, 0.955426), },
    Vertex { position: (-3.042899, -3.193907, 1.207296),
             normal: (0.405755, -0.293021, 0.865737), },
    Vertex { position: (-2.856957, -3.449728, 1.356844),
             normal: (0.580504, -0.526296, 0.621312), },
    Vertex { position: (-2.736599, -3.394849, 1.269577),
             normal: (0.011655, 0.055061, 0.998415), },
    Vertex { position: (-2.845816, -3.273661, 1.218321),
             normal: (0.193496, 0.00102, 0.981101), },
    Vertex { position: (-2.856957, -3.449728, 1.356844),
             normal: (0.580504, -0.526296, 0.621312), },
    Vertex { position: (-2.845816, -3.273661, 1.218321),
             normal: (0.193496, 0.00102, 0.981101), },
    Vertex { position: (-2.975439, -3.308754, 1.25324),
             normal: (0.205604, 0.070037, 0.976126), },
    Vertex { position: (-2.729567, -3.602976, 1.377236),
             normal: (-0.093334, 0.204552, 0.974396), },
    Vertex { position: (-2.631547, -3.559891, 1.33738),
             normal: (-0.026425, 0.178249, 0.983631), },
    Vertex { position: (-2.736599, -3.394849, 1.269577),
             normal: (0.011655, 0.055061, 0.998415), },
    Vertex { position: (-2.729567, -3.602976, 1.377236),
             normal: (-0.093334, 0.204552, 0.974396), },
    Vertex { position: (-2.736599, -3.394849, 1.269577),
             normal: (0.011655, 0.055061, 0.998415), },
    Vertex { position: (-2.856957, -3.449728, 1.356844),
             normal: (0.580504, -0.526296, 0.621312), },
    Vertex { position: (-2.856957, -3.449728, 1.356844),
             normal: (0.580504, -0.526296, 0.621312), },
    Vertex { position: (-3.030627, -3.493327, 1.32265),
             normal: (-0.028076, 0.054588, 0.998114), },
    Vertex { position: (-2.981824, -3.608887, 1.346959),
             normal: (-0.057735, 0.03099, 0.997851), },
    Vertex { position: (-2.856957, -3.449728, 1.356844),
             normal: (0.580504, -0.526296, 0.621312), },
    Vertex { position: (-2.981824, -3.608887, 1.346959),
             normal: (-0.057735, 0.03099, 0.997851), },
    Vertex { position: (-2.729567, -3.602976, 1.377236),
             normal: (-0.093334, 0.204552, 0.974396), },
    Vertex { position: (-2.975439, -3.308754, 1.25324),
             normal: (0.205604, 0.070037, 0.976126), },
    Vertex { position: (-3.091252, -3.340925, 1.235864),
             normal: (0.089482, -0.029551, 0.99555), },
    Vertex { position: (-3.030627, -3.493327, 1.32265),
             normal: (-0.028076, 0.054588, 0.998114), },
    Vertex { position: (-2.975439, -3.308754, 1.25324),
             normal: (0.205604, 0.070037, 0.976126), },
    Vertex { position: (-3.030627, -3.493327, 1.32265),
             normal: (-0.028076, 0.054588, 0.998114), },
    Vertex { position: (-2.856957, -3.449728, 1.356844),
             normal: (0.580504, -0.526296, 0.621312), },
    Vertex { position: (-3.042899, -3.193907, 1.207296),
             normal: (0.405755, -0.293021, 0.865737), },
    Vertex { position: (-3.135041, -3.243787, 1.189436),
             normal: (0.487947, -0.44627, 0.750167), },
    Vertex { position: (-3.091252, -3.340925, 1.235864),
             normal: (0.089482, -0.029551, 0.99555), },
    Vertex { position: (-3.042899, -3.193907, 1.207296),
             normal: (0.405755, -0.293021, 0.865737), },
    Vertex { position: (-3.091252, -3.340925, 1.235864),
             normal: (0.089482, -0.029551, 0.99555), },
    Vertex { position: (-2.975439, -3.308754, 1.25324),
             normal: (0.205604, 0.070037, 0.976126), },
    Vertex { position: (-2.787341, -3.278502, 1.138621),
             normal: (0.177373, 0.037311, 0.983436), },
    Vertex { position: (-2.845816, -3.273661, 1.218321),
             normal: (0.193496, 0.00102, 0.981101), },
    Vertex { position: (-2.736599, -3.394849, 1.269577),
             normal: (0.011655, 0.055061, 0.998415), },
    Vertex { position: (-2.787341, -3.278502, 1.138621),
             normal: (0.177373, 0.037311, 0.983436), },
    Vertex { position: (-2.736599, -3.394849, 1.269577),
             normal: (0.011655, 0.055061, 0.998415), },
    Vertex { position: (-2.699957, -3.390295, 1.185593),
             normal: (-0.048366, 0.138166, 0.989227), },
    Vertex { position: (-2.822497, -3.186549, 1.120984),
             normal: (-0.308543, 0.191148, 0.931807), },
    Vertex { position: (-2.888628, -3.200302, 1.210934),
             normal: (0.254799, -0.149124, 0.955426), },
    Vertex { position: (-2.845816, -3.273661, 1.218321),
             normal: (0.193496, 0.00102, 0.981101), },
    Vertex { position: (-2.822497, -3.186549, 1.120984),
             normal: (-0.308543, 0.191148, 0.931807), },
    Vertex { position: (-2.845816, -3.273661, 1.218321),
             normal: (0.193496, 0.00102, 0.981101), },
    Vertex { position: (-2.787341, -3.278502, 1.138621),
             normal: (0.177373, 0.037311, 0.983436), },
    Vertex { position: (-2.770335, -3.208138, 1.031045),
             normal: (-0.206994, 0.072903, 0.975622), },
    Vertex { position: (-2.884711, -3.063896, 0.993766),
             normal: (-0.161613, 0.16539, 0.972896), },
    Vertex { position: (-2.90901, -3.084482, 1.089147),
             normal: (0.07463, 0.029476, 0.996776), },
    Vertex { position: (-2.770335, -3.208138, 1.031045),
             normal: (-0.206994, 0.072903, 0.975622), },
    Vertex { position: (-2.90901, -3.084482, 1.089147),
             normal: (0.07463, 0.029476, 0.996776), },
    Vertex { position: (-2.822497, -3.186549, 1.120984),
             normal: (-0.308543, 0.191148, 0.931807), },
    Vertex { position: (-3.158524, -3.405872, 1.197099),
             normal: (-0.730585, 0.298655, 0.614045), },
    Vertex { position: (-3.091252, -3.340925, 1.235864),
             normal: (0.089482, -0.029551, 0.99555), },
    Vertex { position: (-3.135041, -3.243787, 1.189436),
             normal: (0.487947, -0.44627, 0.750167), },
    Vertex { position: (-3.158524, -3.405872, 1.197099),
             normal: (-0.730585, 0.298655, 0.614045), },
    Vertex { position: (-3.135041, -3.243787, 1.189436),
             normal: (0.487947, -0.44627, 0.750167), },
    Vertex { position: (-3.184143, -3.298048, 1.156892),
             normal: (-0.059163, 0.13391, 0.989226), },
    Vertex { position: (-3.030627, -3.493327, 1.32265),
             normal: (-0.028076, 0.054588, 0.998114), },
    Vertex { position: (-3.091252, -3.340925, 1.235864),
             normal: (0.089482, -0.029551, 0.99555), },
    Vertex { position: (-3.158524, -3.405872, 1.197099),
             normal: (-0.730585, 0.298655, 0.614045), },
    Vertex { position: (-3.030627, -3.493327, 1.32265),
             normal: (-0.028076, 0.054588, 0.998114), },
    Vertex { position: (-3.158524, -3.405872, 1.197099),
             normal: (-0.730585, 0.298655, 0.614045), },
    Vertex { position: (-3.09873, -3.539123, 1.252987),
             normal: (-0.498861, 0.185917, 0.846506), },
    Vertex { position: (-3.09873, -3.539123, 1.252987),
             normal: (-0.498861, 0.185917, 0.846506), },
    Vertex { position: (-2.981824, -3.608887, 1.346959),
             normal: (-0.057735, 0.03099, 0.997851), },
    Vertex { position: (-3.030627, -3.493327, 1.32265),
             normal: (-0.028076, 0.054588, 0.998114), },
    Vertex { position: (-2.888628, -3.200302, 1.210934),
             normal: (0.254799, -0.149124, 0.955426), },
    Vertex { position: (-2.822497, -3.186549, 1.120984),
             normal: (-0.308543, 0.191148, 0.931807), },
    Vertex { position: (-3.03125, -3.09594, 1.106355),
             normal: (-0.541406, 0.227835, 0.809302), },
    Vertex { position: (-3.19417, -3.348553, 1.007196),
             normal: (-0.626758, 0.377346, 0.681751), },
    Vertex { position: (-3.184143, -3.298048, 1.156892),
             normal: (-0.059163, 0.13391, 0.989226), },
    Vertex { position: (-3.217306, -3.187686, 1.075214),
             normal: (0.085126, 0.114843, 0.98973), },
    Vertex { position: (-3.19417, -3.348553, 1.007196),
             normal: (-0.626758, 0.377346, 0.681751), },
    Vertex { position: (-3.217306, -3.187686, 1.075214),
             normal: (0.085126, 0.114843, 0.98973), },
    Vertex { position: (-3.223246, -3.225388, 0.976573),
             normal: (-0.588311, 0.26373, 0.764419), },
    Vertex { position: (-2.922908, -3.637036, 1.059206),
             normal: (-0.670566, 0.283017, -0.685743), },
    Vertex { position: (-2.981824, -3.608887, 1.346959),
             normal: (-0.057735, 0.03099, 0.997851), },
    Vertex { position: (-3.09873, -3.539123, 1.252987),
             normal: (-0.498861, 0.185917, 0.846506), },
    Vertex { position: (-2.922908, -3.637036, 1.059206),
             normal: (-0.670566, 0.283017, -0.685743), },
    Vertex { position: (-3.09873, -3.539123, 1.252987),
             normal: (-0.498861, 0.185917, 0.846506), },
    Vertex { position: (-3.082741, -3.598298, 1.054556),
             normal: (-0.738865, 0.325814, -0.589851), },
    Vertex { position: (-3.18675, -3.457336, 1.025606),
             normal: (-0.701121, 0.259575, -0.664117), },
    Vertex { position: (-3.158524, -3.405872, 1.197099),
             normal: (-0.730585, 0.298655, 0.614045), },
    Vertex { position: (-3.184143, -3.298048, 1.156892),
             normal: (-0.059163, 0.13391, 0.989226), },
    Vertex { position: (-3.18675, -3.457336, 1.025606),
             normal: (-0.701121, 0.259575, -0.664117), },
    Vertex { position: (-3.184143, -3.298048, 1.156892),
             normal: (-0.059163, 0.13391, 0.989226), },
    Vertex { position: (-3.19417, -3.348553, 1.007196),
             normal: (-0.626758, 0.377346, 0.681751), },
    Vertex { position: (-3.082741, -3.598298, 1.054556),
             normal: (-0.738865, 0.325814, -0.589851), },
    Vertex { position: (-3.09873, -3.539123, 1.252987),
             normal: (-0.498861, 0.185917, 0.846506), },
    Vertex { position: (-3.158524, -3.405872, 1.197099),
             normal: (-0.730585, 0.298655, 0.614045), },
    Vertex { position: (-3.082741, -3.598298, 1.054556),
             normal: (-0.738865, 0.325814, -0.589851), },
    Vertex { position: (-3.158524, -3.405872, 1.197099),
             normal: (-0.730585, 0.298655, 0.614045), },
    Vertex { position: (-3.18675, -3.457336, 1.025606),
             normal: (-0.701121, 0.259575, -0.664117), },
    Vertex { position: (-3.223246, -3.225388, 0.976573),
             normal: (-0.588311, 0.26373, 0.764419), },
    Vertex { position: (-3.11957, -3.183977, 0.870739),
             normal: (-0.64352, 0.086605, -0.760514), },
    Vertex { position: (-3.087335, -3.350463, 0.831656),
             normal: (-0.382827, 0.20765, -0.900181), },
    Vertex { position: (-3.223246, -3.225388, 0.976573),
             normal: (-0.588311, 0.26373, 0.764419), },
    Vertex { position: (-3.087335, -3.350463, 0.831656),
             normal: (-0.382827, 0.20765, -0.900181), },
    Vertex { position: (-3.19417, -3.348553, 1.007196),
             normal: (-0.626758, 0.377346, 0.681751), },
    Vertex { position: (-3.087335, -3.350463, 0.831656),
             normal: (-0.382827, 0.20765, -0.900181), },
    Vertex { position: (-3.074557, -3.486847, 0.843432),
             normal: (-0.421241, 0.09636, -0.901815), },
    Vertex { position: (-3.18675, -3.457336, 1.025606),
             normal: (-0.701121, 0.259575, -0.664117), },
    Vertex { position: (-3.087335, -3.350463, 0.831656),
             normal: (-0.382827, 0.20765, -0.900181), },
    Vertex { position: (-3.18675, -3.457336, 1.025606),
             normal: (-0.701121, 0.259575, -0.664117), },
    Vertex { position: (-3.19417, -3.348553, 1.007196),
             normal: (-0.626758, 0.377346, 0.681751), },
    Vertex { position: (-3.006867, -3.575464, 0.830221),
             normal: (-0.482826, -0.146891, -0.863309), },
    Vertex { position: (-3.082741, -3.598298, 1.054556),
             normal: (-0.738865, 0.325814, -0.589851), },
    Vertex { position: (-3.18675, -3.457336, 1.025606),
             normal: (-0.701121, 0.259575, -0.664117), },
    Vertex { position: (-3.006867, -3.575464, 0.830221),
             normal: (-0.482826, -0.146891, -0.863309), },
    Vertex { position: (-3.18675, -3.457336, 1.025606),
             normal: (-0.701121, 0.259575, -0.664117), },
    Vertex { position: (-3.074557, -3.486847, 0.843432),
             normal: (-0.421241, 0.09636, -0.901815), },
    Vertex { position: (-2.870422, -3.601724, 0.843123),
             normal: (-0.562406, -0.352304, -0.748051), },
    Vertex { position: (-2.922908, -3.637036, 1.059206),
             normal: (-0.670566, 0.283017, -0.685743), },
    Vertex { position: (-3.082741, -3.598298, 1.054556),
             normal: (-0.738865, 0.325814, -0.589851), },
    Vertex { position: (-2.870422, -3.601724, 0.843123),
             normal: (-0.562406, -0.352304, -0.748051), },
    Vertex { position: (-3.082741, -3.598298, 1.054556),
             normal: (-0.738865, 0.325814, -0.589851), },
    Vertex { position: (-3.006867, -3.575464, 0.830221),
             normal: (-0.482826, -0.146891, -0.863309), },
    Vertex { position: (-2.740824, -3.597601, 0.875006),
             normal: (0.115225, 0.169061, -0.978847), },
    Vertex { position: (-2.791754, -3.635993, 1.078555),
             normal: (0.024044, 0.175693, -0.984151), },
    Vertex { position: (-2.922908, -3.637036, 1.059206),
             normal: (-0.670566, 0.283017, -0.685743), },
    Vertex { position: (-2.740824, -3.597601, 0.875006),
             normal: (0.115225, 0.169061, -0.978847), },
    Vertex { position: (-2.922908, -3.637036, 1.059206),
             normal: (-0.670566, 0.283017, -0.685743), },
    Vertex { position: (-2.870422, -3.601724, 0.843123),
             normal: (-0.562406, -0.352304, -0.748051), },
    Vertex { position: (-3.042899, -3.193907, 1.207296),
             normal: (0.405755, -0.293021, 0.865737), },
    Vertex { position: (-2.888628, -3.200302, 1.210934),
             normal: (0.254799, -0.149124, 0.955426), },
    Vertex { position: (-3.03125, -3.09594, 1.106355),
             normal: (-0.541406, 0.227835, 0.809302), },
    Vertex { position: (-3.042899, -3.193907, 1.207296),
             normal: (0.405755, -0.293021, 0.865737), },
    Vertex { position: (-3.03125, -3.09594, 1.106355),
             normal: (-0.541406, 0.227835, 0.809302), },
    Vertex { position: (-3.121673, -3.120319, 1.136456),
             normal: (-0.125911, -0.68432, -0.718229), },
    Vertex { position: (-3.135041, -3.243787, 1.189436),
             normal: (0.487947, -0.44627, 0.750167), },
    Vertex { position: (-3.042899, -3.193907, 1.207296),
             normal: (0.405755, -0.293021, 0.865737), },
    Vertex { position: (-3.121673, -3.120319, 1.136456),
             normal: (-0.125911, -0.68432, -0.718229), },
    Vertex { position: (-3.135041, -3.243787, 1.189436),
             normal: (0.487947, -0.44627, 0.750167), },
    Vertex { position: (-3.121673, -3.120319, 1.136456),
             normal: (-0.125911, -0.68432, -0.718229), },
    Vertex { position: (-3.169546, -3.135273, 1.128247),
             normal: (0.535863, 0.090315, -0.83946), },
    Vertex { position: (-3.184143, -3.298048, 1.156892),
             normal: (-0.059163, 0.13391, 0.989226), },
    Vertex { position: (-3.135041, -3.243787, 1.189436),
             normal: (0.487947, -0.44627, 0.750167), },
    Vertex { position: (-3.169546, -3.135273, 1.128247),
             normal: (0.535863, 0.090315, -0.83946), },
    Vertex { position: (-3.184143, -3.298048, 1.156892),
             normal: (-0.059163, 0.13391, 0.989226), },
    Vertex { position: (-3.169546, -3.135273, 1.128247),
             normal: (0.535863, 0.090315, -0.83946), },
    Vertex { position: (-3.217306, -3.187686, 1.075214),
             normal: (0.085126, 0.114843, 0.98973), },
    Vertex { position: (-2.80326, -3.21358, 0.942403),
             normal: (0.199599, 0.097869, -0.974978), },
    Vertex { position: (-2.928681, -3.072892, 0.924772),
             normal: (0.236645, -0.06852, -0.969177), },
    Vertex { position: (-2.884711, -3.063896, 0.993766),
             normal: (-0.161613, 0.16539, 0.972896), },
    Vertex { position: (-2.80326, -3.21358, 0.942403),
             normal: (0.199599, 0.097869, -0.974978), },
    Vertex { position: (-2.884711, -3.063896, 0.993766),
             normal: (-0.161613, 0.16539, 0.972896), },
    Vertex { position: (-2.770335, -3.208138, 1.031045),
             normal: (-0.206994, 0.072903, 0.975622), },
    Vertex { position: (-2.787341, -3.278502, 1.138621),
             normal: (0.177373, 0.037311, 0.983436), },
    Vertex { position: (-2.749355, -3.272099, 1.034148),
             normal: (0.159383, -0.507401, -0.846842), },
    Vertex { position: (-2.770335, -3.208138, 1.031045),
             normal: (-0.206994, 0.072903, 0.975622), },
    Vertex { position: (-2.787341, -3.278502, 1.138621),
             normal: (0.177373, 0.037311, 0.983436), },
    Vertex { position: (-2.770335, -3.208138, 1.031045),
             normal: (-0.206994, 0.072903, 0.975622), },
    Vertex { position: (-2.822497, -3.186549, 1.120984),
             normal: (-0.308543, 0.191148, 0.931807), },
    Vertex { position: (-2.631547, -3.559891, 1.33738),
             normal: (-0.026425, 0.178249, 0.983631), },
    Vertex { position: (-2.58358, -3.514267, 1.278598),
             normal: (0.35124, -0.91474, -0.199704), },
    Vertex { position: (-2.699957, -3.390295, 1.185593),
             normal: (-0.048366, 0.138166, 0.989227), },
    Vertex { position: (-2.631547, -3.559891, 1.33738),
             normal: (-0.026425, 0.178249, 0.983631), },
    Vertex { position: (-2.699957, -3.390295, 1.185593),
             normal: (-0.048366, 0.138166, 0.989227), },
    Vertex { position: (-2.736599, -3.394849, 1.269577),
             normal: (0.011655, 0.055061, 0.998415), },
    Vertex { position: (-2.52472, -3.561609, 1.161535),
             normal: (0.285409, -0.933801, -0.215773), },
    Vertex { position: (-2.649491, -3.404362, 1.100352),
             normal: (-0.97518, 0.20982, -0.070713), },
    Vertex { position: (-2.699957, -3.390295, 1.185593),
             normal: (-0.048366, 0.138166, 0.989227), },
    Vertex { position: (-2.52472, -3.561609, 1.161535),
             normal: (0.285409, -0.933801, -0.215773), },
    Vertex { position: (-2.699957, -3.390295, 1.185593),
             normal: (-0.048366, 0.138166, 0.989227), },
    Vertex { position: (-2.58358, -3.514267, 1.278598),
             normal: (0.35124, -0.91474, -0.199704), },
    Vertex { position: (-2.749355, -3.272099, 1.034148),
             normal: (0.159383, -0.507401, -0.846842), },
    Vertex { position: (-2.787341, -3.278502, 1.138621),
             normal: (0.177373, 0.037311, 0.983436), },
    Vertex { position: (-2.699957, -3.390295, 1.185593),
             normal: (-0.048366, 0.138166, 0.989227), },
    Vertex { position: (-2.749355, -3.272099, 1.034148),
             normal: (0.159383, -0.507401, -0.846842), },
    Vertex { position: (-2.699957, -3.390295, 1.185593),
             normal: (-0.048366, 0.138166, 0.989227), },
    Vertex { position: (-2.649491, -3.404362, 1.100352),
             normal: (-0.97518, 0.20982, -0.070713), },
    Vertex { position: (-2.593513, -3.536154, 0.94245),
             normal: (-0.999995, 0.003039, 0.000095), },
    Vertex { position: (-2.668957, -3.397513, 0.943626),
             normal: (-0.830756, 0.127038, 0.541946), },
    Vertex { position: (-2.649491, -3.404362, 1.100352),
             normal: (-0.97518, 0.20982, -0.070713), },
    Vertex { position: (-2.593513, -3.536154, 0.94245),
             normal: (-0.999995, 0.003039, 0.000095), },
    Vertex { position: (-2.649491, -3.404362, 1.100352),
             normal: (-0.97518, 0.20982, -0.070713), },
    Vertex { position: (-2.52472, -3.561609, 1.161535),
             normal: (0.285409, -0.933801, -0.215773), },
    Vertex { position: (-2.749867, -3.295148, 0.966073),
             normal: (-0.874688, -0.025586, 0.48401), },
    Vertex { position: (-2.749355, -3.272099, 1.034148),
             normal: (0.159383, -0.507401, -0.846842), },
    Vertex { position: (-2.649491, -3.404362, 1.100352),
             normal: (-0.97518, 0.20982, -0.070713), },
    Vertex { position: (-2.749867, -3.295148, 0.966073),
             normal: (-0.874688, -0.025586, 0.48401), },
    Vertex { position: (-2.649491, -3.404362, 1.100352),
             normal: (-0.97518, 0.20982, -0.070713), },
    Vertex { position: (-2.668957, -3.397513, 0.943626),
             normal: (-0.830756, 0.127038, 0.541946), },
    Vertex { position: (-2.80326, -3.21358, 0.942403),
             normal: (0.199599, 0.097869, -0.974978), },
    Vertex { position: (-2.770335, -3.208138, 1.031045),
             normal: (-0.206994, 0.072903, 0.975622), },
    Vertex { position: (-2.749355, -3.272099, 1.034148),
             normal: (0.159383, -0.507401, -0.846842), },
    Vertex { position: (-2.80326, -3.21358, 0.942403),
             normal: (0.199599, 0.097869, -0.974978), },
    Vertex { position: (-2.749355, -3.272099, 1.034148),
             normal: (0.159383, -0.507401, -0.846842), },
    Vertex { position: (-2.749867, -3.295148, 0.966073),
             normal: (-0.874688, -0.025586, 0.48401), },
    Vertex { position: (-3.011987, -3.092, 0.860973),
             normal: (-0.860798, 0.234294, 0.451812), },
    Vertex { position: (-2.944625, -3.282121, 0.817054),
             normal: (-0.405387, 0.054444, 0.912522), },
    Vertex { position: (-3.087335, -3.350463, 0.831656),
             normal: (-0.382827, 0.20765, -0.900181), },
    Vertex { position: (-3.011987, -3.092, 0.860973),
             normal: (-0.860798, 0.234294, 0.451812), },
    Vertex { position: (-3.087335, -3.350463, 0.831656),
             normal: (-0.382827, 0.20765, -0.900181), },
    Vertex { position: (-3.11957, -3.183977, 0.870739),
             normal: (-0.64352, 0.086605, -0.760514), },
    Vertex { position: (-2.928681, -3.072892, 0.924772),
             normal: (0.236645, -0.06852, -0.969177), },
    Vertex { position: (-2.80326, -3.21358, 0.942403),
             normal: (0.199599, 0.097869, -0.974978), },
    Vertex { position: (-2.944625, -3.282121, 0.817054),
             normal: (-0.405387, 0.054444, 0.912522), },
    Vertex { position: (-2.928681, -3.072892, 0.924772),
             normal: (0.236645, -0.06852, -0.969177), },
    Vertex { position: (-2.944625, -3.282121, 0.817054),
             normal: (-0.405387, 0.054444, 0.912522), },
    Vertex { position: (-3.011987, -3.092, 0.860973),
             normal: (-0.860798, 0.234294, 0.451812), },
    Vertex { position: (-2.944625, -3.282121, 0.817054),
             normal: (-0.405387, 0.054444, 0.912522), },
    Vertex { position: (-2.890885, -3.415616, 0.819125),
             normal: (-0.51506, -0.054833, 0.855398), },
    Vertex { position: (-3.074557, -3.486847, 0.843432),
             normal: (-0.421241, 0.09636, -0.901815), },
    Vertex { position: (-2.944625, -3.282121, 0.817054),
             normal: (-0.405387, 0.054444, 0.912522), },
    Vertex { position: (-3.074557, -3.486847, 0.843432),
             normal: (-0.421241, 0.09636, -0.901815), },
    Vertex { position: (-3.087335, -3.350463, 0.831656),
             normal: (-0.382827, 0.20765, -0.900181), },
    Vertex { position: (-2.80326, -3.21358, 0.942403),
             normal: (0.199599, 0.097869, -0.974978), },
    Vertex { position: (-2.749867, -3.295148, 0.966073),
             normal: (-0.874688, -0.025586, 0.48401), },
    Vertex { position: (-2.890885, -3.415616, 0.819125),
             normal: (-0.51506, -0.054833, 0.855398), },
    Vertex { position: (-2.80326, -3.21358, 0.942403),
             normal: (0.199599, 0.097869, -0.974978), },
    Vertex { position: (-2.890885, -3.415616, 0.819125),
             normal: (-0.51506, -0.054833, 0.855398), },
    Vertex { position: (-2.944625, -3.282121, 0.817054),
             normal: (-0.405387, 0.054444, 0.912522), },
    Vertex { position: (-3.006867, -3.575464, 0.830221),
             normal: (-0.482826, -0.146891, -0.863309), },
    Vertex { position: (-3.074557, -3.486847, 0.843432),
             normal: (-0.421241, 0.09636, -0.901815), },
    Vertex { position: (-2.890885, -3.415616, 0.819125),
             normal: (-0.51506, -0.054833, 0.855398), },
    Vertex { position: (-3.006867, -3.575464, 0.830221),
             normal: (-0.482826, -0.146891, -0.863309), },
    Vertex { position: (-2.890885, -3.415616, 0.819125),
             normal: (-0.51506, -0.054833, 0.855398), },
    Vertex { position: (-2.870422, -3.601724, 0.843123),
             normal: (-0.562406, -0.352304, -0.748051), },
    Vertex { position: (-2.668957, -3.397513, 0.943626),
             normal: (-0.830756, 0.127038, 0.541946), },
    Vertex { position: (-2.890885, -3.415616, 0.819125),
             normal: (-0.51506, -0.054833, 0.855398), },
    Vertex { position: (-2.749867, -3.295148, 0.966073),
             normal: (-0.874688, -0.025586, 0.48401), },
    Vertex { position: (-2.890885, -3.415616, 0.819125),
             normal: (-0.51506, -0.054833, 0.855398), },
    Vertex { position: (-2.740824, -3.597601, 0.875006),
             normal: (0.115225, 0.169061, -0.978847), },
    Vertex { position: (-2.870422, -3.601724, 0.843123),
             normal: (-0.562406, -0.352304, -0.748051), },
    Vertex { position: (-2.740824, -3.597601, 0.875006),
             normal: (0.115225, 0.169061, -0.978847), },
    Vertex { position: (-2.890885, -3.415616, 0.819125),
             normal: (-0.51506, -0.054833, 0.855398), },
    Vertex { position: (-2.668957, -3.397513, 0.943626),
             normal: (-0.830756, 0.127038, 0.541946), },
    Vertex { position: (-2.740824, -3.597601, 0.875006),
             normal: (0.115225, 0.169061, -0.978847), },
    Vertex { position: (-2.668957, -3.397513, 0.943626),
             normal: (-0.830756, 0.127038, 0.541946), },
    Vertex { position: (-2.593513, -3.536154, 0.94245),
             normal: (-0.999995, 0.003039, 0.000095), },
    Vertex { position: (-2.791754, -3.635993, 1.078555),
             normal: (0.024044, 0.175693, -0.984151), },
    Vertex { position: (-2.740824, -3.597601, 0.875006),
             normal: (0.115225, 0.169061, -0.978847), },
    Vertex { position: (-2.593513, -3.536154, 0.94245),
             normal: (-0.999995, 0.003039, 0.000095), },
    Vertex { position: (-2.791754, -3.635993, 1.078555),
             normal: (0.024044, 0.175693, -0.984151), },
    Vertex { position: (-2.593513, -3.536154, 0.94245),
             normal: (-0.999995, 0.003039, 0.000095), },
    Vertex { position: (-2.52472, -3.561609, 1.161535),
             normal: (0.285409, -0.933801, -0.215773), },
    Vertex { position: (-2.791754, -3.635993, 1.078555),
             normal: (0.024044, 0.175693, -0.984151), },
    Vertex { position: (-2.729567, -3.602976, 1.377236),
             normal: (-0.093334, 0.204552, 0.974396), },
    Vertex { position: (-2.981824, -3.608887, 1.346959),
             normal: (-0.057735, 0.03099, 0.997851), },
    Vertex { position: (-2.791754, -3.635993, 1.078555),
             normal: (0.024044, 0.175693, -0.984151), },
    Vertex { position: (-2.981824, -3.608887, 1.346959),
             normal: (-0.057735, 0.03099, 0.997851), },
    Vertex { position: (-2.922908, -3.637036, 1.059206),
             normal: (-0.670566, 0.283017, -0.685743), },
    Vertex { position: (-2.822497, -3.186549, 1.120984),
             normal: (-0.308543, 0.191148, 0.931807), },
    Vertex { position: (-2.90901, -3.084482, 1.089147),
             normal: (0.07463, 0.029476, 0.996776), },
    Vertex { position: (-3.03125, -3.09594, 1.106355),
             normal: (-0.541406, 0.227835, 0.809302), },
    Vertex { position: (-2.52472, -3.561609, 1.161535),
             normal: (0.285409, -0.933801, -0.215773), },
    Vertex { position: (-2.58358, -3.514267, 1.278598),
             normal: (0.35124, -0.91474, -0.199704), },
    Vertex { position: (-2.631547, -3.559891, 1.33738),
             normal: (-0.026425, 0.178249, 0.983631), },
    Vertex { position: (-2.52472, -3.561609, 1.161535),
             normal: (0.285409, -0.933801, -0.215773), },
    Vertex { position: (-2.631547, -3.559891, 1.33738),
             normal: (-0.026425, 0.178249, 0.983631), },
    Vertex { position: (-2.729567, -3.602976, 1.377236),
             normal: (-0.093334, 0.204552, 0.974396), },
    Vertex { position: (-2.52472, -3.561609, 1.161535),
             normal: (0.285409, -0.933801, -0.215773), },
    Vertex { position: (-2.729567, -3.602976, 1.377236),
             normal: (-0.093334, 0.204552, 0.974396), },
];