Merge pull request #25 from devZoGok/develop

Merge into master
This commit is contained in:
devZoGok
2023-12-30 12:59:24 +00:00
committed by GitHub
13 changed files with 470 additions and 326 deletions
+3 -3
View File
@@ -15,7 +15,7 @@ cmake_policy(SET CMP0015 NEW)
set(GUI text.cpp)
set(UTILS util.cpp)
set(MATH quaternion.cpp vector.cpp matrix.cpp ray.cpp)
set(MATH quaternion.cpp vector.cpp matrix.cpp rayCaster.cpp)
set(RENDER lineRenderer.cpp particleEmitter.cpp camera.cpp light.cpp material.cpp mesh.cpp meshData.cpp model.cpp node.cpp quad.cpp box.cpp root.cpp shader.cpp texture.cpp)
set(ANIM animationController.cpp animationChannel.cpp animation.cpp animatable.cpp keyframeChannel.cpp driver.cpp)
set(ARMATURE skeleton.cpp bone.cpp ikSolver.cpp)
@@ -121,8 +121,8 @@ if(BUILD_SAMPLES)
add_executable(particleEmitterSample particleEmitterSample.cpp)
target_link_libraries(particleEmitterSample ${LIB_NAME})
add_executable(raySample raySample.cpp)
target_link_libraries(raySample ${LIB_NAME})
add_executable(rayCasterSample rayCasterSample.cpp)
target_link_libraries(rayCasterSample ${LIB_NAME})
add_executable(pbrSample pbrSample.cpp)
target_link_libraries(pbrSample ${LIB_NAME})
+122 -31
View File
@@ -5,6 +5,8 @@
#include "slider.h"
#include "checkbox.h"
#include "listbox.h"
#include "node.h"
#include "text.h"
#include "util.h"
namespace vb01Gui{
@@ -120,10 +122,6 @@ namespace vb01Gui{
}
}
void AbstractGuiManager::addButton(Button* b) {
buttons.push_back(b);
}
void AbstractGuiManager::addListbox(Listbox* l) {
listboxes.push_back(l);
buttons.push_back(l->getListboxButton());
@@ -205,11 +203,46 @@ namespace vb01Gui{
}
}
void AbstractGuiManager::removeGuiRectangle(Node* r) {
for (int i = 0; i < guiRectangles.size(); i++) {
if (r == guiRectangles[i]) {
guiRectangles.erase(guiRectangles.begin() + i);
Root::getSingleton()->getGuiNode()->dettachChild(r);
delete r;
break;
}
}
}
void AbstractGuiManager::removeText(Text* t) {
for (int i = 0; i < texts.size(); i++) {
if (t == texts[i]) {
texts.erase(texts.begin() + i);
Node *textNode = t->getNode();
Root::getSingleton()->getGuiNode()->dettachChild(textNode);
delete textNode;
break;
}
}
}
Text* AbstractGuiManager::getText(string name){
Text *text = nullptr;
for(Text *t : texts)
if(t->getNode()->getName() == name){
text = t;
break;
}
return text;
}
void AbstractGuiManager::removeAllButtons(vector<Button*> exceptions){
int targetId = 0;
while(targetId != buttons.size()){
if(find(exceptions.begin(), exceptions.end(), buttons[targetId]) == exceptions.end()){
if(buttons[targetId]->isSeparate() && find(exceptions.begin(), exceptions.end(), buttons[targetId]) == exceptions.end()){
delete buttons[targetId];
buttons.erase(buttons.begin() + targetId);
}
@@ -218,36 +251,90 @@ namespace vb01Gui{
}
}
void AbstractGuiManager::removeAllListboxes() {
while (listboxes.size() > 0) {
removeButton(listboxes[listboxes.size() - 1]->getListboxButton());
delete listboxes[listboxes.size() - 1];
listboxes.pop_back();
void AbstractGuiManager::removeAllListboxes(vector<Listbox*> exceptions) {
int targetId = 0;
while(targetId != listboxes.size()) {
if(find(exceptions.begin(), exceptions.end(), listboxes[targetId]) == exceptions.end()){
removeButton(listboxes[listboxes.size() - 1]->getListboxButton());
delete listboxes[listboxes.size() - 1];
listboxes.pop_back();
}
else
targetId++;
}
}
void AbstractGuiManager::removeAllCheckboxes() {
while (checkboxes.size() > 0) {
removeButton(checkboxes[checkboxes.size() - 1]->getCheckboxButton());
delete checkboxes[checkboxes.size() - 1];
checkboxes.pop_back();
void AbstractGuiManager::removeAllCheckboxes(vector<Checkbox*> exceptions) {
int targetId = 0;
while(targetId != checkboxes.size()) {
if(find(exceptions.begin(), exceptions.end(), checkboxes[targetId]) == exceptions.end()){
removeButton(checkboxes[checkboxes.size() - 1]->getCheckboxButton());
delete checkboxes[checkboxes.size() - 1];
checkboxes.pop_back();
}
else
targetId++;
}
}
void AbstractGuiManager::removeAllSliders() {
while (sliders.size() > 0) {
removeButton(sliders[sliders.size() - 1]->getMovableSliderButton());
removeButton(sliders[sliders.size() - 1]->getStaticSliderButton());
delete sliders[sliders.size() - 1];
sliders.pop_back();
void AbstractGuiManager::removeAllSliders(vector<Slider*> exceptions) {
int targetId = 0;
while(targetId != sliders.size()) {
if(find(exceptions.begin(), exceptions.end(), sliders[targetId]) == exceptions.end()){
removeButton(sliders[sliders.size() - 1]->getMovableSliderButton());
removeButton(sliders[sliders.size() - 1]->getStaticSliderButton());
delete sliders[sliders.size() - 1];
sliders.pop_back();
}
else
targetId++;
}
}
void AbstractGuiManager::removeAllTextboxes() {
while (textboxes.size() > 0) {
removeButton(textboxes[textboxes.size() - 1]->getTextboxButton());
delete textboxes[textboxes.size() - 1];
textboxes.pop_back();
void AbstractGuiManager::removeAllTextboxes(vector<Textbox*> exceptions) {
int targetId = 0;
while(targetId != textboxes.size()) {
if(find(exceptions.begin(), exceptions.end(), textboxes[targetId]) == exceptions.end()){
removeButton(textboxes[textboxes.size() - 1]->getTextboxButton());
delete textboxes[textboxes.size() - 1];
textboxes.pop_back();
}
else
targetId++;
}
}
void AbstractGuiManager::removeAllGuiRectangles(vector<Node*> exceptions) {
int targetId = 0;
while(targetId != guiRectangles.size()) {
if(find(exceptions.begin(), exceptions.end(), guiRectangles[targetId]) == exceptions.end()){
Node *guiRect = guiRectangles[guiRectangles.size() - 1];
guiRectangles.pop_back();
Root::getSingleton()->getGuiNode()->dettachChild(guiRect);
delete guiRect;
}
else
targetId++;
}
}
void AbstractGuiManager::removeAllTexts(vector<Text*> exceptions) {
int targetId = 0;
while(targetId != texts.size()) {
if(find(exceptions.begin(), exceptions.end(), texts[targetId]) == exceptions.end()){
Node *textNode = texts[texts.size() - 1]->getNode();
texts.pop_back();
Root::getSingleton()->getGuiNode()->dettachChild(textNode);
delete textNode;
}
else
targetId++;
}
}
@@ -256,11 +343,15 @@ namespace vb01Gui{
vector<Listbox*> listboxExceptions,
vector<Checkbox*> checkboxExceptions,
vector<Slider*> sliderExceptions,
vector<Textbox*> textboxExceptions){
vector<Textbox*> textboxExceptions,
vector<Node*> guiRectExceptions,
vector<Text*> textExceptions){
removeAllButtons(buttonExceptions);
removeAllListboxes();
removeAllCheckboxes();
removeAllSliders();
removeAllTextboxes();
removeAllListboxes(listboxExceptions);
removeAllCheckboxes(checkboxExceptions);
removeAllSliders(sliderExceptions);
removeAllTextboxes(textboxExceptions);
removeAllGuiRectangles(guiRectExceptions);
removeAllTexts(textExceptions);
}
}
+38 -22
View File
@@ -4,6 +4,11 @@
#include <vector>
#include <string>
namespace vb01{
class Node;
class Text;
}
namespace vb01Gui{
class Button;
class Listbox;
@@ -15,45 +20,56 @@ namespace vb01Gui{
public:
void update();
void findClickedButton();
void addButton(vb01Gui::Button*);
void removeButton(vb01Gui::Button*);
void addButton(Button *b){buttons.push_back(b);}
void removeButton(Button*);
void removeButton(std::string);
void addListbox(vb01Gui::Listbox*);
void removeListbox(vb01Gui::Listbox*);
void addCheckbox(vb01Gui::Checkbox*);
void removeCheckbox(vb01Gui::Checkbox*);
void addTextbox(vb01Gui::Textbox*);
void removeTextbox(vb01Gui::Textbox*);
void addSlider(vb01Gui::Slider*);
void removeSlider(vb01Gui::Slider*);
void removeAllButtons(std::vector<vb01Gui::Button*> = std::vector<vb01Gui::Button*>{});
void removeAllListboxes();
void removeAllCheckboxes();
void removeAllSliders();
void removeAllTextboxes();
void addListbox(Listbox*);
void removeListbox(Listbox*);
void addCheckbox(Checkbox*);
void removeCheckbox(Checkbox*);
void addTextbox(Textbox*);
void removeTextbox(Textbox*);
void addSlider(Slider*);
void addGuiRectangle(vb01::Node *r){guiRectangles.push_back(r);}
void removeGuiRectangle(vb01::Node*);
void addText(vb01::Text *t){texts.push_back(t);}
void removeText(vb01::Text*);
vb01::Text* getText(std::string);
void removeSlider(Slider*);
void removeAllButtons(std::vector<Button*> = std::vector<Button*>{});
void removeAllListboxes(std::vector<Listbox*> = std::vector<Listbox*>{});
void removeAllCheckboxes(std::vector<Checkbox*> = std::vector<Checkbox*>{});
void removeAllSliders(std::vector<Slider*> = std::vector<Slider*>{});
void removeAllTextboxes(std::vector<Textbox*> = std::vector<Textbox*>{});
void removeAllGuiRectangles(std::vector<vb01::Node*> = std::vector<vb01::Node*>{});
void removeAllTexts(std::vector<vb01::Text*> = std::vector<vb01::Text*>{});
void removeAllGuiElements(
std::vector<Button*> = std::vector<Button*>{},
std::vector<Listbox*> = std::vector<Listbox*>{},
std::vector<Checkbox*> = std::vector<Checkbox*>{},
std::vector<Slider*> = std::vector<Slider*>{},
std::vector<Textbox*> = std::vector<Textbox*>{}
std::vector<Textbox*> = std::vector<Textbox*>{},
std::vector<vb01::Node*> = std::vector<vb01::Node*>{},
std::vector<vb01::Text*> = std::vector<vb01::Text*>{}
);
inline std::vector<Button*> getButtons(){return buttons;}
inline std::vector<Listbox*> getListboxes(){return listboxes;}
inline std::vector<Textbox*> getTextboxes(){return textboxes;}
private:
void updateCurrentListbox(vb01Gui::Button*, bool&);
void updateCurrentSlider(vb01Gui::Button*);
void updateCurrentTextbox(vb01Gui::Button*, bool&);
void updateCurrentListbox(Button*, bool&);
void updateCurrentSlider(Button*);
void updateCurrentTextbox(Button*, bool&);
std::vector<Button*> buttons;
std::vector<Listbox*> listboxes;
std::vector<Checkbox*> checkboxes;
std::vector<Slider*> sliders;
std::vector<Textbox*> textboxes;
vb01Gui::Slider *currentSlider = nullptr;
vb01Gui::Textbox *currentTextbox = nullptr;
vb01Gui::Listbox *currentListbox = nullptr;
std::vector<vb01::Node*> guiRectangles;
std::vector<vb01::Text*> texts;
Slider *currentSlider = nullptr;
Textbox *currentTextbox = nullptr;
Listbox *currentListbox = nullptr;
protected:
AbstractGuiManager(){}
};
+1
View File
@@ -52,6 +52,7 @@ namespace vb01{
inline std::vector<Skeleton*>& getSkeletons(){return skeletons;}
inline Mesh* getMesh(int i){return meshes[i];}
inline int getNumMeshes(){return meshes.size();}
inline ParticleEmitter* getParticleEmitter(int i){return emitters[i];}
inline Node* getParent(){return parent;}
inline void setParent(Node *par){this->parent = par;}
inline Node* getChild(int i){return children[i];}
+1 -1
View File
@@ -19,6 +19,7 @@ namespace vb01{
ParticleEmitter() : Animatable(Animatable::NONE){}
~ParticleEmitter();
void update();
inline Material* getMaterial(){return material;}
inline void setMaterial(Material *mat){this->material = mat;}
inline void setNode(Node *node){this->node = node;}
inline void setSize(Vector2 size){this->size = size;}
@@ -54,7 +55,6 @@ namespace vb01{
int numParticles;
Particle **particles;
Material *material = nullptr;
Node *node = nullptr;
Vector2 size = Vector2::VEC_IJ;
Vector3 gravity = Vector3::VEC_ZERO;
Vector4 startColor = Vector4::VEC_IJKL, endColor = Vector4::VEC_IJKL;
-22
View File
@@ -1,22 +0,0 @@
#include "vector.h"
#include "util.h"
#include <vector>
namespace vb01{
class Node;
class Mesh;
class Ray{
public:
struct CollisionResult{
Vector3 pos, norm;
float distance;
Mesh *mesh = nullptr;
};
static void retrieveCollisions(Vector3, Vector3, Node*, std::vector<CollisionResult>&, const float = .0);
static void castRay(Vector3, Vector3, Node*, std::vector<CollisionResult>&, const float);
static void sortResults(std::vector<CollisionResult>&);
};
}
+31 -14
View File
@@ -1,22 +1,38 @@
#include <algorithm>
#include "ray.h"
#include "rayCaster.h"
#include "mesh.h"
#include "node.h"
using namespace std;
namespace vb01{
void Ray::retrieveCollisions(Vector3 rayPos, Vector3 rayDir, Node *node, std::vector<CollisionResult> &results, const float rayLength){
castRay(rayPos, rayDir, node, results, rayLength);
for(Node *c : node->getChildren())
retrieveCollisions(rayPos, rayDir, c, results, rayLength);
vector<RayCaster::CollisionResult> RayCaster::cast(Vector3 rayPos, Vector3 rayDir, Node *node, const float rayLength){
return cast(rayPos, rayDir, vector<Node*>{node}, rayLength);
}
void Ray::castRay(Vector3 rayPos, Vector3 rayDir, Node *node, vector<CollisionResult> &results, float rayLength){
vector<RayCaster::CollisionResult> RayCaster::cast(Vector3 rayPos, Vector3 rayDir, vector<Node*> nodes, const float rayLength){
vector<CollisionResult> results;
for(Node *node : nodes){
vector<Node*> descendants = vector<Node*>{node};
node->getDescendants(descendants);
for(Node *desc : descendants){
vector<CollisionResult> res = retrieveCollisions(rayPos, rayDir, desc, rayLength);
results.insert(results.end(), res.begin(), res.end());
}
}
if(!results.empty()) sortResults(results);
return results;
}
vector<RayCaster::CollisionResult> RayCaster::retrieveCollisions(Vector3 rayPos, Vector3 rayDir, Node *node, float rayLength){
Vector3 pos = node->localToGlobalPosition(Vector3::VEC_ZERO);
Quaternion rot = node->localToGlobalOrientation(Quaternion::QUAT_W);
vector<CollisionResult> results;
for(Mesh *m : node->getMeshes()){
const int numVerts = m->getMeshBase().numTris * 3;
@@ -64,14 +80,15 @@ namespace vb01{
}
}
}
return results;
}
void Ray::sortResults(std::vector<CollisionResult> &results){
if(!results.empty())
for(int i = 0; i < results.size(); i++){
for(int i2 = i; i2 < results.size(); i2++)
if(results[i].distance > results[i2].distance)
swap(results[i], results[i2]);
}
void RayCaster::sortResults(std::vector<CollisionResult> &results){
for(int i = 0; i < results.size(); i++){
for(int j = i; j < results.size(); j++)
if(results[i].distance > results[j].distance)
swap(results[i], results[j]);
}
}
}
+25
View File
@@ -0,0 +1,25 @@
#include "vector.h"
#include "util.h"
#include <vector>
namespace vb01{
class Node;
class Mesh;
class RayCaster{
public:
struct CollisionResult{
Vector3 pos, norm;
float distance;
Mesh *mesh = nullptr;
};
static std::vector<CollisionResult> cast(Vector3, Vector3, Node*, const float = .0);
static std::vector<CollisionResult> cast(Vector3, Vector3, std::vector<Node*>, const float = .0);
private:
static std::vector<CollisionResult> retrieveCollisions(Vector3, Vector3, Node*, const float);
static void sortResults(std::vector<CollisionResult>&);
};
}
+2 -4
View File
@@ -3,7 +3,7 @@
#include "material.h"
#include "assetManager.h"
#include "lineRenderer.h"
#include "ray.h"
#include "rayCaster.h"
using namespace std;
using namespace vb01;
@@ -76,11 +76,9 @@ int main(){
* Casts an infinite ray that checks for collision against meshes under
* the icoshpere model node and paints it red upon collision
*/
vector<Ray::CollisionResult> results;
Ray::retrieveCollisions(rayStart, rayEnd - rayStart, sphModel, results);
Ray::sortResults(results);
mat->setVec4Uniform("diffuseColor", Vector4::VEC_L);
vector<RayCaster::CollisionResult> results = RayCaster::cast(rayStart, rayEnd - rayStart, sphModel);
if(!results.empty())
mat->setVec4Uniform("diffuseColor", Vector4(1, 0, 0, 1));
+227 -227
View File
@@ -1,288 +1,288 @@
<model>
<node name="Icosphere">
<mesh num_faces="80" num_vertex_groups="0" num_shape_keys="0">
<vertdata px="0.0" py="-1.0" pz="-0.0" nx="0.0" ny="1.0" nz="0.0" />
<vertdata px="0.7236073017120361" py="-0.44721952080726624" pz="0.5257253050804138" nx="0.7235938310623169" ny="0.44718772172927856" nz="-0.5257118344306946" />
<vertdata px="-0.276388019323349" py="-0.4472198486328125" pz="0.8506492376327515" nx="-0.2763756215572357" ny="0.44721823930740356" nz="-0.8506424427032471" />
<vertdata px="-0.8944262266159058" py="-0.44721561670303345" pz="-0.0" nx="-0.8944059610366821" ny="0.44718772172927856" nz="0.0" />
<vertdata px="-0.276388019323349" py="-0.4472198486328125" pz="-0.8506492376327515" nx="-0.2763756215572357" ny="0.44721823930740356" nz="0.8506424427032471" />
<vertdata px="0.7236073017120361" py="-0.44721952080726624" pz="-0.5257253050804138" nx="0.7235938310623169" ny="0.44718772172927856" nz="0.5257118344306946" />
<vertdata px="0.276388019323349" py="0.4472198486328125" pz="0.8506492376327515" nx="0.2763756215572357" ny="-0.44721823930740356" nz="-0.8506424427032471" />
<vertdata px="-0.7236073017120361" py="0.44721952080726624" pz="0.5257253050804138" nx="-0.7235938310623169" ny="-0.44718772172927856" nz="-0.5257118344306946" />
<vertdata px="-0.7236073017120361" py="0.44721952080726624" pz="-0.5257253050804138" nx="-0.7235938310623169" ny="-0.44718772172927856" nz="0.5257118344306946" />
<vertdata px="0.276388019323349" py="0.4472198486328125" pz="-0.8506492376327515" nx="0.2763756215572357" ny="-0.44721823930740356" nz="0.8506424427032471" />
<vertdata px="0.8944262266159058" py="0.44721561670303345" pz="-0.0" nx="0.8944059610366821" ny="-0.44718772172927856" nz="0.0" />
<vertdata px="0.0" py="1.0" pz="-0.0" nx="0.0" ny="-1.0" nz="0.0" />
<vertdata px="-0.16245555877685547" py="-0.8506544232368469" pz="0.49999526143074036" nx="-0.16245003044605255" ny="0.8506424427032471" nz="-0.4999847412109375" />
<vertdata px="0.42532268166542053" py="-0.8506541848182678" pz="0.30901139974594116" nx="0.42530596256256104" ny="0.8506424427032471" nz="-0.3089998960494995" />
<vertdata px="0.26286882162094116" py="-0.5257376432418823" pz="0.8090116381645203" nx="0.2628559172153473" ny="0.5257118344306946" nz="-0.808984637260437" />
<vertdata px="0.8506478667259216" py="-0.5257359147071838" pz="-0.0" nx="0.8506424427032471" ny="0.5257118344306946" nz="0.0" />
<vertdata px="0.42532268166542053" py="-0.8506541848182678" pz="-0.30901139974594116" nx="0.42530596256256104" ny="0.8506424427032471" nz="0.3089998960494995" />
<vertdata px="-0.525729775428772" py="-0.8506516814231873" pz="-0.0" nx="-0.5257118344306946" ny="0.8506424427032471" nz="0.0" />
<vertdata px="-0.6881893873214722" py="-0.5257362127304077" pz="0.49999693036079407" nx="-0.6881618499755859" ny="0.5257118344306946" nz="-0.4999847412109375" />
<vertdata px="-0.16245555877685547" py="-0.8506544232368469" pz="-0.49999526143074036" nx="-0.16245003044605255" ny="0.8506424427032471" nz="0.4999847412109375" />
<vertdata px="-0.6881893873214722" py="-0.5257362127304077" pz="-0.49999693036079407" nx="-0.6881618499755859" ny="0.5257118344306946" nz="0.4999847412109375" />
<vertdata px="0.26286882162094116" py="-0.5257376432418823" pz="-0.8090116381645203" nx="0.2628559172153473" ny="0.5257118344306946" nz="0.808984637260437" />
<vertdata px="0.9510578513145447" py="0.0" pz="0.30901262164115906" nx="0.9510483145713806" ny="-0.0" nz="-0.3089998960494995" />
<vertdata px="0.9510578513145447" py="0.0" pz="-0.30901262164115906" nx="0.9510483145713806" ny="-0.0" nz="0.3089998960494995" />
<vertdata px="0.0" py="0.0" pz="0.9999999403953552" nx="0.0" ny="-0.0" nz="-1.0" />
<vertdata px="0.5877856016159058" py="0.0" pz="0.8090167045593262" nx="0.5877559781074524" ny="-0.0" nz="-0.809015154838562" />
<vertdata px="-0.9510578513145447" py="0.0" pz="0.30901262164115906" nx="-0.9510483145713806" ny="-0.0" nz="-0.3089998960494995" />
<vertdata px="-0.5877856016159058" py="0.0" pz="0.8090167045593262" nx="-0.5877559781074524" ny="-0.0" nz="-0.809015154838562" />
<vertdata px="-0.5877856016159058" py="0.0" pz="-0.8090167045593262" nx="-0.5877559781074524" ny="-0.0" nz="0.809015154838562" />
<vertdata px="-0.9510578513145447" py="0.0" pz="-0.30901262164115906" nx="-0.9510483145713806" ny="-0.0" nz="0.3089998960494995" />
<vertdata px="0.5877856016159058" py="0.0" pz="-0.8090167045593262" nx="0.5877559781074524" ny="-0.0" nz="0.809015154838562" />
<vertdata px="0.0" py="0.0" pz="-0.9999999403953552" nx="0.0" ny="-0.0" nz="1.0" />
<vertdata px="0.6881893873214722" py="0.5257362127304077" pz="0.49999693036079407" nx="0.6881618499755859" ny="-0.5257118344306946" nz="-0.4999847412109375" />
<vertdata px="-0.26286882162094116" py="0.5257376432418823" pz="0.8090116381645203" nx="-0.2628559172153473" ny="-0.5257118344306946" nz="-0.808984637260437" />
<vertdata px="-0.8506478667259216" py="0.5257359147071838" pz="-0.0" nx="-0.8506424427032471" ny="-0.5257118344306946" nz="0.0" />
<vertdata px="-0.26286882162094116" py="0.5257376432418823" pz="-0.8090116381645203" nx="-0.2628559172153473" ny="-0.5257118344306946" nz="0.808984637260437" />
<vertdata px="0.6881893873214722" py="0.5257362127304077" pz="-0.49999693036079407" nx="0.6881618499755859" ny="-0.5257118344306946" nz="0.4999847412109375" />
<vertdata px="0.16245555877685547" py="0.8506543636322021" pz="0.49999526143074036" nx="0.16245003044605255" ny="-0.8506424427032471" nz="-0.4999847412109375" />
<vertdata px="0.525729775428772" py="0.8506516814231873" pz="-0.0" nx="0.5257118344306946" ny="-0.8506424427032471" nz="0.0" />
<vertdata px="-0.42532268166542053" py="0.8506541848182678" pz="0.30901139974594116" nx="-0.42530596256256104" ny="-0.8506424427032471" nz="-0.3089998960494995" />
<vertdata px="-0.42532268166542053" py="0.8506541848182678" pz="-0.30901139974594116" nx="-0.42530596256256104" ny="-0.8506424427032471" nz="0.3089998960494995" />
<vertdata px="0.16245555877685547" py="0.8506543636322021" pz="-0.49999526143074036" nx="0.16245003044605255" ny="-0.8506424427032471" nz="0.4999847412109375" />
<vert id="0" uvx="0.18181900680065155" uvy="0.0" tx="0.9510550498962402" ty="2.318227103614845e-07" tz="-0.309021532535553" bx="0.2915689945220947" by="0.3313056528568268" bz="0.8973427414894104" />
<vert id="13" uvx="0.22727349400520325" uvy="0.0787305012345314" tx="0.9510550498962402" ty="2.318227245723392e-07" tz="-0.30902156233787537" bx="0.2915690243244171" by="0.3313056528568268" bz="0.8973427414894104" />
<vert id="12" uvx="0.13636450469493866" uvy="0.0787305012345314" tx="0.9510549902915955" ty="2.3182269615062978e-07" tz="-0.309021532535553" bx="0.2915689945220947" by="0.3313056230545044" bz="0.8973426818847656" />
<vert id="1" uvx="0.27272799611091614" uvy="0.1574610024690628" tx="0.2324509620666504" ty="-0.1436644345521927" tz="-0.9619393348693848" bx="0.6750208139419556" by="0.7358772158622742" bz="0.05321526527404785" />
<vert id="13" uvx="0.31818249821662903" uvy="0.0787305012345314" tx="0.232450932264328" ty="-0.1436644196510315" tz="-0.96193927526474" bx="0.6750207543373108" by="0.7358771562576294" bz="0.05321526527404785" />
<vert id="15" uvx="0.3636370003223419" uvy="0.1574610024690628" tx="0.2324509471654892" ty="-0.1436644345521927" tz="-0.9619393348693848" bx="0.6750208139419556" by="0.7358772158622742" bz="0.05321525037288666" />
<vert id="0" uvx="0.9090909957885742" uvy="0.0" tx="0.5877920389175415" ty="-4.381917278806213e-06" tz="0.8090120553970337" bx="-0.7633205652236938" by="0.3313073515892029" bz="0.5545964241027832" />
<vert id="12" uvx="0.9545454978942871" uvy="0.0787305012345314" tx="0.5877920389175415" ty="-4.381917733553564e-06" tz="0.8090120553970337" bx="-0.7633205652236938" by="0.3313073515892029" bz="0.5545964241027832" />
<vert id="17" uvx="0.8636364936828613" uvy="0.0787305012345314" tx="0.5877920985221863" ty="-4.381917733553564e-06" tz="0.8090121150016785" bx="-0.7633206248283386" by="0.33130738139152527" bz="0.554596483707428" />
<vert id="0" uvx="0.7272729873657227" uvy="0.0" tx="-0.5877920389175415" ty="4.381917278806213e-06" tz="0.8090120553970337" bx="-0.7633205652236938" by="0.3313073515892029" bz="-0.5545964241027832" />
<vert id="17" uvx="0.7727274894714355" uvy="0.0787305012345314" tx="-0.5877920985221863" ty="4.381917733553564e-06" tz="0.8090121150016785" bx="-0.7633206248283386" by="0.33130738139152527" bz="-0.554596483707428" />
<vert id="19" uvx="0.6818184852600098" uvy="0.0787305012345314" tx="-0.5877920389175415" ty="4.381917733553564e-06" tz="0.8090120553970337" bx="-0.7633205652236938" by="0.3313073515892029" bz="-0.5545964241027832" />
<vert id="0" uvx="0.5454549789428711" uvy="0.0" tx="-0.9510550498962402" ty="-2.318227103614845e-07" tz="-0.309021532535553" bx="0.2915689945220947" by="0.3313056528568268" bz="-0.8973427414894104" />
<vert id="19" uvx="0.590909481048584" uvy="0.0787305012345314" tx="-0.9510549902915955" ty="-2.3182269615062978e-07" tz="-0.309021532535553" bx="0.2915689945220947" by="0.3313056230545044" bz="-0.8973426818847656" />
<vert id="16" uvx="0.5000004768371582" uvy="0.0787305012345314" tx="-0.9510550498962402" ty="-2.318227245723392e-07" tz="-0.30902156233787537" bx="0.2915690243244171" by="0.3313056528568268" bz="-0.8973427414894104" />
<vert id="1" uvx="0.27272799611091614" uvy="0.1574610024690628" tx="0.23245079815387726" ty="-0.14366434514522552" tz="-0.96193927526474" bx="0.35631638765335083" by="0.9328486323356628" bz="-0.05321650952100754" />
<vert id="15" uvx="0.3636370003223419" uvy="0.1574610024690628" tx="0.23245079815387726" ty="-0.14366434514522552" tz="-0.96193927526474" bx="0.35631638765335083" by="0.9328486323356628" bz="-0.05321650952100754" />
<vert id="22" uvx="0.31818249821662903" uvy="0.2361910045146942" tx="0.23245081305503845" ty="-0.14366436004638672" tz="-0.9619393348693848" bx="0.3563164472579956" by="0.9328486323356628" bz="-0.05321652442216873" />
<vert id="2" uvx="0.09091000258922577" uvy="0.1574610024690628" tx="0.9866893291473389" ty="-0.143665611743927" tz="-0.0761852040886879" bx="0.16072210669517517" by="0.9328476786613464" bz="0.3224334120750427" />
<mesh name="IcosphereIcosphere" num_faces="80" num_vertex_groups="0" num_shape_keys="0">
<vertdata px="0.0" py="-1.0" pz="-0.0" nx="-1.4244246813177597e-06" ny="1.0" nz="-5.2561794916528015e-09" />
<vertdata px="0.7236073017120361" py="-0.44721952080726624" pz="0.5257253050804138" nx="0.7236078381538391" ny="0.44721710681915283" nz="-0.525726854801178" />
<vertdata px="-0.276388019323349" py="-0.4472198486328125" pz="0.8506492376327515" nx="-0.2763892412185669" ny="0.4472183883190155" nz="-0.8506495952606201" />
<vertdata px="-0.8944262266159058" py="-0.44721561670303345" pz="-0.0" nx="-0.8944264650344849" ny="0.4472152292728424" nz="0.0" />
<vertdata px="-0.276388019323349" py="-0.4472198486328125" pz="-0.8506492376327515" nx="-0.2763892412185669" ny="0.4472184181213379" nz="0.8506495952606201" />
<vertdata px="0.7236073017120361" py="-0.44721952080726624" pz="-0.5257253050804138" nx="0.7236077189445496" ny="0.44721710681915283" nz="0.5257267951965332" />
<vertdata px="0.276388019323349" py="0.4472198486328125" pz="0.8506492376327515" nx="0.2763892114162445" ny="-0.4472184181213379" nz="-0.8506495952606201" />
<vertdata px="-0.7236073017120361" py="0.44721952080726624" pz="0.5257253050804138" nx="-0.7236077189445496" ny="-0.4472171664237976" nz="-0.525726854801178" />
<vertdata px="-0.7236073017120361" py="0.44721952080726624" pz="-0.5257253050804138" nx="-0.7236077189445496" ny="-0.4472171664237976" nz="0.525726854801178" />
<vertdata px="0.276388019323349" py="0.4472198486328125" pz="-0.8506492376327515" nx="0.2763891816139221" ny="-0.4472184181213379" nz="0.8506495952606201" />
<vertdata px="0.8944262266159058" py="0.44721561670303345" pz="-0.0" nx="0.8944264650344849" ny="-0.44721519947052" nz="0.0" />
<vertdata px="0.0" py="1.0" pz="-0.0" nx="1.4296808785729809e-06" ny="-1.0" nz="-2.6280897458264008e-09" />
<vertdata px="-0.16245555877685547" py="-0.8506544232368469" pz="0.49999526143074036" nx="-0.16245700418949127" ny="0.8506535291671753" nz="-0.4999963939189911" />
<vertdata px="0.42532268166542053" py="-0.8506541848182678" pz="0.30901139974594116" nx="0.4253235161304474" ny="0.8506532311439514" nz="-0.3090130090713501" />
<vertdata px="0.26286882162094116" py="-0.5257376432418823" pz="0.8090116381645203" nx="0.2628689408302307" ny="0.5257353782653809" nz="-0.8090131282806396" />
<vertdata px="0.8506478667259216" py="-0.5257359147071838" pz="-0.0" nx="0.850648820400238" ny="0.5257343649864197" nz="1.0611704404084321e-08" />
<vertdata px="0.42532268166542053" py="-0.8506541848182678" pz="-0.30901139974594116" nx="0.4253235161304474" ny="0.8506532311439514" nz="0.3090130090713501" />
<vertdata px="-0.525729775428772" py="-0.8506516814231873" pz="-0.0" nx="-0.5257296562194824" ny="0.850651741027832" nz="-5.3058522020421606e-09" />
<vertdata px="-0.6881893873214722" py="-0.5257362127304077" pz="0.49999693036079407" nx="-0.6881894469261169" ny="0.5257342457771301" nz="-0.4999988079071045" />
<vertdata px="-0.16245555877685547" py="-0.8506544232368469" pz="-0.49999526143074036" nx="-0.16245700418949127" ny="0.8506535291671753" nz="0.4999963939189911" />
<vertdata px="-0.6881893873214722" py="-0.5257362127304077" pz="-0.49999693036079407" nx="-0.6881893873214722" ny="0.5257342457771301" nz="0.4999987483024597" />
<vertdata px="0.26286882162094116" py="-0.5257376432418823" pz="-0.8090116381645203" nx="0.2628689408302307" ny="0.5257353186607361" nz="0.8090131282806396" />
<vertdata px="0.9510578513145447" py="0.0" pz="0.30901262164115906" nx="0.9510571360588074" ny="2.0692853297532565e-07" nz="-0.3090151846408844" />
<vertdata px="0.9510578513145447" py="0.0" pz="-0.30901262164115906" nx="0.9510570764541626" ny="2.175402613602273e-07" nz="0.3090152144432068" />
<vertdata px="0.0" py="0.0" pz="0.9999999403953552" nx="5.305865968807666e-09" ny="5.305865968807666e-09" nz="-1.0" />
<vertdata px="0.5877856016159058" py="0.0" pz="0.8090167045593262" nx="0.5877860188484192" ny="-1.910112530367769e-07" nz="-0.8090164661407471" />
<vertdata px="-0.9510578513145447" py="0.0" pz="0.30901262164115906" nx="-0.9510570764541626" ny="-2.3345785393757978e-07" nz="-0.3090152144432068" />
<vertdata px="-0.5877856016159058" py="0.0" pz="0.8090167045593262" nx="-0.5877860188484192" ny="2.2815233080564212e-07" nz="-0.8090164661407471" />
<vertdata px="-0.5877856016159058" py="0.0" pz="-0.8090167045593262" nx="-0.5877860188484192" ny="2.5733461939125846e-07" nz="0.8090164661407471" />
<vertdata px="-0.9510578513145447" py="0.0" pz="-0.30901262164115906" nx="-0.9510570764541626" ny="-2.2815198974512896e-07" nz="0.3090152144432068" />
<vertdata px="0.5877856016159058" py="0.0" pz="-0.8090167045593262" nx="0.5877860188484192" ny="-1.7774658545022248e-07" nz="0.8090164661407471" />
<vertdata px="0.0" py="0.0" pz="-0.9999999403953552" nx="-9.948498913558979e-09" ny="3.1835195812845996e-08" nz="1.0" />
<vertdata px="0.6881893873214722" py="0.5257362127304077" pz="0.49999693036079407" nx="0.6881893873214722" ny="-0.5257342457771301" nz="-0.4999988079071045" />
<vertdata px="-0.26286882162094116" py="0.5257376432418823" pz="0.8090116381645203" nx="-0.2628689408302307" ny="-0.5257353782653809" nz="-0.8090130686759949" />
<vertdata px="-0.8506478667259216" py="0.5257359147071838" pz="-0.0" nx="-0.850648820400238" ny="-0.5257343053817749" nz="-1.5917555273858852e-08" />
<vertdata px="-0.26286882162094116" py="0.5257376432418823" pz="-0.8090116381645203" nx="-0.2628689408302307" ny="-0.5257353782653809" nz="0.8090131282806396" />
<vertdata px="0.6881893873214722" py="0.5257362127304077" pz="-0.49999693036079407" nx="0.6881893873214722" ny="-0.5257342457771301" nz="0.4999988079071045" />
<vertdata px="0.16245555877685547" py="0.8506543636322021" pz="0.49999526143074036" nx="0.16245701909065247" ny="-0.8506534099578857" nz="-0.4999964237213135" />
<vertdata px="0.525729775428772" py="0.8506516814231873" pz="-0.0" nx="0.5257296562194824" ny="-0.8506516814231873" nz="2.6529263230656852e-09" />
<vertdata px="-0.42532268166542053" py="0.8506541848182678" pz="0.30901139974594116" nx="-0.425323486328125" ny="-0.8506532311439514" nz="-0.3090130090713501" />
<vertdata px="-0.42532268166542053" py="0.8506541848182678" pz="-0.30901139974594116" nx="-0.42532339692115784" ny="-0.8506532311439514" nz="0.3090130090713501" />
<vertdata px="0.16245555877685547" py="0.8506543636322021" pz="-0.49999526143074036" nx="0.16245701909065247" ny="-0.8506534099578857" nz="0.4999964237213135" />
<vert id="0" uvx="0.18181900680065155" uvy="0.0" tx="0.9510549902915955" ty="2.3182269615062978e-07" tz="-0.309021532535553" bx="0.2915689945220947" by="0.3313056230545044" bz="0.8973426818847656" />
<vert id="13" uvx="0.22727349400520325" uvy="0.0787305012345314" tx="0.9510549902915955" ty="2.318227103614845e-07" tz="-0.3090215027332306" bx="0.2915689945220947" by="0.3313056230545044" bz="0.8973426818847656" />
<vert id="12" uvx="0.13636450469493866" uvy="0.0787305012345314" tx="0.9510550498962402" ty="2.318227103614845e-07" tz="-0.30902156233787537" bx="0.2915690243244171" by="0.3313056528568268" bz="0.8973427414894104" />
<vert id="1" uvx="0.27272799611091614" uvy="0.1574610024690628" tx="0.2324509471654892" ty="-0.1436644345521927" tz="-0.96193927526474" bx="0.6750207543373108" by="0.7358771562576294" bz="0.05321525037288666" />
<vert id="13" uvx="0.31818249821662903" uvy="0.0787305012345314" tx="0.232450932264328" ty="-0.1436644196510315" tz="-0.9619391560554504" bx="0.675020694732666" by="0.7358770966529846" bz="0.05321526527404785" />
<vert id="15" uvx="0.3636370003223419" uvy="0.1574610024690628" tx="0.232450932264328" ty="-0.1436644196510315" tz="-0.9619392156600952" bx="0.6750207543373108" by="0.7358770966529846" bz="0.05321526527404785" />
<vert id="0" uvx="0.9090909957885742" uvy="0.0" tx="0.5877919793128967" ty="-4.381917278806213e-06" tz="0.8090120553970337" bx="-0.7633205652236938" by="0.3313073515892029" bz="0.5545963644981384" />
<vert id="12" uvx="0.9545454978942871" uvy="0.0787305012345314" tx="0.5877920985221863" ty="-4.381917733553564e-06" tz="0.8090121150016785" bx="-0.7633206248283386" by="0.33130738139152527" bz="0.554596483707428" />
<vert id="17" uvx="0.8636364936828613" uvy="0.0787305012345314" tx="0.5877920389175415" ty="-4.381917278806213e-06" tz="0.8090120553970337" bx="-0.7633205652236938" by="0.3313073515892029" bz="0.5545964241027832" />
<vert id="0" uvx="0.7272729873657227" uvy="0.0" tx="-0.5877919793128967" ty="4.381917278806213e-06" tz="0.8090120553970337" bx="-0.7633205652236938" by="0.3313073515892029" bz="-0.5545963644981384" />
<vert id="17" uvx="0.7727274894714355" uvy="0.0787305012345314" tx="-0.5877920389175415" ty="4.381917278806213e-06" tz="0.8090120553970337" bx="-0.7633205652236938" by="0.3313073515892029" bz="-0.5545964241027832" />
<vert id="19" uvx="0.6818184852600098" uvy="0.0787305012345314" tx="-0.5877920985221863" ty="4.381917733553564e-06" tz="0.8090121150016785" bx="-0.7633206248283386" by="0.33130738139152527" bz="-0.554596483707428" />
<vert id="0" uvx="0.5454549789428711" uvy="0.0" tx="-0.9510549902915955" ty="-2.3182269615062978e-07" tz="-0.309021532535553" bx="0.2915689945220947" by="0.3313056230545044" bz="-0.8973426818847656" />
<vert id="19" uvx="0.590909481048584" uvy="0.0787305012345314" tx="-0.9510550498962402" ty="-2.318227103614845e-07" tz="-0.30902156233787537" bx="0.2915690243244171" by="0.3313056528568268" bz="-0.8973427414894104" />
<vert id="16" uvx="0.5000004768371582" uvy="0.0787305012345314" tx="-0.9510549902915955" ty="-2.318227103614845e-07" tz="-0.3090215027332306" bx="0.2915689945220947" by="0.3313056230545044" bz="-0.8973426818847656" />
<vert id="1" uvx="0.27272799611091614" uvy="0.1574610024690628" tx="0.23245081305503845" ty="-0.14366436004638672" tz="-0.96193927526474" bx="0.35631638765335083" by="0.9328486323356628" bz="-0.05321652442216873" />
<vert id="15" uvx="0.3636370003223419" uvy="0.1574610024690628" tx="0.23245078325271606" ty="-0.14366434514522552" tz="-0.9619392156600952" bx="0.35631635785102844" by="0.9328485727310181" bz="-0.053216516971588135" />
<vert id="22" uvx="0.31818249821662903" uvy="0.2361910045146942" tx="0.23245078325271606" ty="-0.14366433024406433" tz="-0.9619392156600952" bx="0.35631635785102844" by="0.9328485727310181" bz="-0.05321650207042694" />
<vert id="2" uvx="0.09091000258922577" uvy="0.1574610024690628" tx="0.9866894483566284" ty="-0.1436656266450882" tz="-0.07618521898984909" bx="0.16072212159633636" by="0.932847797870636" bz="0.3224334418773651" />
<vert id="14" uvx="0.18181899189949036" uvy="0.1574610024690628" tx="0.9866893887519836" ty="-0.1436656266450882" tz="-0.07618521898984909" bx="0.16072212159633636" by="0.9328477382659912" bz="0.3224334418773651" />
<vert id="24" uvx="0.13636450469493866" uvy="0.2361910045146942" tx="0.9866893887519836" ty="-0.1436656266450882" tz="-0.07618521898984909" bx="0.16072212159633636" by="0.9328477382659912" bz="0.3224334418773651" />
<vert id="24" uvx="0.13636450469493866" uvy="0.2361910045146942" tx="0.9866894483566284" ty="-0.1436656266450882" tz="-0.07618521898984909" bx="0.16072212159633636" by="0.932847797870636" bz="0.3224334418773651" />
<vert id="3" uvx="0.8181819915771484" uvy="0.1574610024690628" tx="0.37735623121261597" ty="-0.14367088675498962" tz="0.9148556590080261" bx="-0.2569844126701355" by="0.9328474998474121" bz="0.2524963319301605" />
<vert id="18" uvx="0.9090909957885742" uvy="0.1574610024690628" tx="0.37735623121261597" ty="-0.14367088675498962" tz="0.9148556590080261" bx="-0.2569844126701355" by="0.9328474998474121" bz="0.2524963319301605" />
<vert id="26" uvx="0.8636364936828613" uvy="0.2361910045146942" tx="0.37735623121261597" ty="-0.14367088675498962" tz="0.9148556590080261" bx="-0.2569844126701355" by="0.9328474998474121" bz="0.2524963319301605" />
<vert id="4" uvx="0.6363639831542969" uvy="0.1574610024690628" tx="-0.7534744143486023" ty="-0.14366163313388824" tz="0.6415899991989136" bx="-0.31954482197761536" by="0.9328480958938599" bz="-0.1663903295993805" />
<vert id="18" uvx="0.9090909957885742" uvy="0.1574610024690628" tx="0.37735629081726074" ty="-0.14367088675498962" tz="0.9148557782173157" bx="-0.2569844424724579" by="0.9328476786613464" bz="0.2524963617324829" />
<vert id="26" uvx="0.8636364936828613" uvy="0.2361910045146942" tx="0.37735626101493835" ty="-0.14367088675498962" tz="0.9148557186126709" bx="-0.2569844126701355" by="0.9328476190567017" bz="0.2524963319301605" />
<vert id="4" uvx="0.6363639831542969" uvy="0.1574610024690628" tx="-0.7534744143486023" ty="-0.14366161823272705" tz="0.6415899395942688" bx="-0.31954479217529297" by="0.9328480958938599" bz="-0.1663903295993805" />
<vert id="20" uvx="0.7272729873657227" uvy="0.1574610024690628" tx="-0.7534744143486023" ty="-0.14366163313388824" tz="0.6415899991989136" bx="-0.31954482197761536" by="0.9328480958938599" bz="-0.1663903295993805" />
<vert id="28" uvx="0.6818184852600098" uvy="0.2361910045146942" tx="-0.7534743547439575" ty="-0.14366163313388824" tz="0.6415899991989136" bx="-0.31954482197761536" by="0.9328480362892151" bz="-0.1663903146982193" />
<vert id="5" uvx="0.4545460045337677" uvy="0.1574610024690628" tx="-0.8430234789848328" ty="-0.1436663419008255" tz="-0.5183352828025818" bx="0.0594981387257576" by="0.9328476190567017" bz="-0.35532432794570923" />
<vert id="21" uvx="0.5454549789428711" uvy="0.1574610024690628" tx="-0.8430234789848328" ty="-0.1436663419008255" tz="-0.5183353424072266" bx="0.05949815362691879" by="0.9328476190567017" bz="-0.35532432794570923" />
<vert id="30" uvx="0.5000004768371582" uvy="0.2361910045146942" tx="-0.8430234789848328" ty="-0.1436663419008255" tz="-0.5183352828025818" bx="0.0594981387257576" by="0.9328476190567017" bz="-0.35532432794570923" />
<vert id="28" uvx="0.6818184852600098" uvy="0.2361910045146942" tx="-0.7534744143486023" ty="-0.14366163313388824" tz="0.6415899991989136" bx="-0.31954482197761536" by="0.9328480958938599" bz="-0.1663903295993805" />
<vert id="5" uvx="0.4545460045337677" uvy="0.1574610024690628" tx="-0.8430234789848328" ty="-0.1436663419008255" tz="-0.5183353424072266" bx="0.05949815362691879" by="0.9328476190567017" bz="-0.35532432794570923" />
<vert id="21" uvx="0.5454549789428711" uvy="0.1574610024690628" tx="-0.8430234789848328" ty="-0.1436663419008255" tz="-0.5183352828025818" bx="0.0594981387257576" by="0.9328476190567017" bz="-0.35532432794570923" />
<vert id="30" uvx="0.5000004768371582" uvy="0.2361910045146942" tx="-0.843023419380188" ty="-0.1436663419008255" tz="-0.5183352828025818" bx="0.0594981387257576" by="0.9328476190567017" bz="-0.35532429814338684" />
<vert id="1" uvx="0.27272799611091614" uvy="0.1574610024690628" tx="0.5877832174301147" ty="-7.487970243857944e-09" tz="-0.8090184330940247" bx="0.10163480043411255" by="0.9920774698257446" bz="0.07384160906076431" />
<vert id="22" uvx="0.31818249821662903" uvy="0.2361910045146942" tx="0.58778315782547" ty="-7.487969355679525e-09" tz="-0.8090183734893799" bx="0.10163479298353195" by="0.9920773506164551" bz="0.07384160161018372" />
<vert id="25" uvx="0.22727349400520325" uvy="0.2361910045146942" tx="0.5877832174301147" ty="-7.487970243857944e-09" tz="-0.8090184330940247" bx="0.10163480043411255" by="0.9920774698257446" bz="0.07384160906076431" />
<vert id="2" uvx="0.09091000258922577" uvy="0.1574610024690628" tx="0.9510565400123596" ty="3.744035304009685e-09" tz="0.309017151594162" bx="-0.0388215072453022" by="0.9920773506164551" bz="0.11948024481534958" />
<vert id="24" uvx="0.13636450469493866" uvy="0.2361910045146942" tx="0.9510564804077148" ty="3.744035304009685e-09" tz="0.309017151594162" bx="-0.0388215072453022" by="0.9920772910118103" bz="0.11948023736476898" />
<vert id="27" uvx="0.045455001294612885" uvy="0.2361910045146942" tx="0.9510564804077148" ty="3.744034859920475e-09" tz="0.3090171217918396" bx="-0.0388215035200119" by="0.9920772910118103" bz="0.11948023736476898" />
<vert id="22" uvx="0.31818249821662903" uvy="0.2361910045146942" tx="0.5877832770347595" ty="-7.487971132036364e-09" tz="-0.8090184926986694" bx="0.10163481533527374" by="0.9920775890350342" bz="0.07384161651134491" />
<vert id="25" uvx="0.22727349400520325" uvy="0.2361910045146942" tx="0.5877832770347595" ty="-7.487970243857944e-09" tz="-0.8090184926986694" bx="0.10163481533527374" by="0.9920775890350342" bz="0.07384161651134491" />
<vert id="2" uvx="0.09091000258922577" uvy="0.1574610024690628" tx="0.9510564804077148" ty="3.744034859920475e-09" tz="0.3090171217918396" bx="-0.0388215035200119" by="0.9920772910118103" bz="0.11948023736476898" />
<vert id="24" uvx="0.13636450469493866" uvy="0.2361910045146942" tx="0.9510564804077148" ty="3.744035304009685e-09" tz="0.3090171217918396" bx="-0.0388215035200119" by="0.9920772910118103" bz="0.11948023736476898" />
<vert id="27" uvx="0.045455001294612885" uvy="0.2361910045146942" tx="0.9510564208030701" ty="3.744034859920475e-09" tz="0.3090171217918396" bx="-0.0388215035200119" by="0.9920772910118103" bz="0.11948022991418839" />
<vert id="3" uvx="0.8181819915771484" uvy="0.1574610024690628" tx="0.0" ty="0.0" tz="1.0" bx="-0.12562832236289978" by="0.9920774102210999" bz="-0.0" />
<vert id="26" uvx="0.8636364936828613" uvy="0.2361910045146942" tx="0.0" ty="0.0" tz="0.9999999403953552" bx="-0.1256283074617386" by="0.9920773506164551" bz="-0.0" />
<vert id="29" uvx="0.7727274894714355" uvy="0.2361910045146942" tx="0.0" ty="0.0" tz="0.9999999403953552" bx="-0.1256283074617386" by="0.9920773506164551" bz="-0.0" />
<vert id="4" uvx="0.6363639831542969" uvy="0.1574610024690628" tx="-0.9510565400123596" ty="-3.744035304009685e-09" tz="0.309017151594162" bx="-0.0388215072453022" by="0.9920773506164551" bz="-0.11948024481534958" />
<vert id="28" uvx="0.6818184852600098" uvy="0.2361910045146942" tx="-0.9510564804077148" ty="-3.744034859920475e-09" tz="0.3090171217918396" bx="-0.0388215035200119" by="0.9920772910118103" bz="-0.11948023736476898" />
<vert id="31" uvx="0.590909481048584" uvy="0.2361910045146942" tx="-0.9510564804077148" ty="-3.744035304009685e-09" tz="0.309017151594162" bx="-0.0388215072453022" by="0.9920772910118103" bz="-0.11948023736476898" />
<vert id="26" uvx="0.8636364936828613" uvy="0.2361910045146942" tx="0.0" ty="0.0" tz="1.0" bx="-0.12562832236289978" by="0.9920774102210999" bz="-0.0" />
<vert id="29" uvx="0.7727274894714355" uvy="0.2361910045146942" tx="0.0" ty="0.0" tz="1.0" bx="-0.12562832236289978" by="0.9920774102210999" bz="-0.0" />
<vert id="4" uvx="0.6363639831542969" uvy="0.1574610024690628" tx="-0.9510564804077148" ty="-3.744034859920475e-09" tz="0.3090171217918396" bx="-0.0388215035200119" by="0.9920772910118103" bz="-0.11948023736476898" />
<vert id="28" uvx="0.6818184852600098" uvy="0.2361910045146942" tx="-0.9510564208030701" ty="-3.744034859920475e-09" tz="0.3090171217918396" bx="-0.0388215035200119" by="0.9920772910118103" bz="-0.11948022991418839" />
<vert id="31" uvx="0.590909481048584" uvy="0.2361910045146942" tx="-0.9510564804077148" ty="-3.744035304009685e-09" tz="0.3090171217918396" bx="-0.0388215035200119" by="0.9920772910118103" bz="-0.11948023736476898" />
<vert id="5" uvx="0.4545460045337677" uvy="0.1574610024690628" tx="-0.5877832174301147" ty="7.487970243857944e-09" tz="-0.8090184330940247" bx="0.10163480043411255" by="0.9920774698257446" bz="-0.07384160906076431" />
<vert id="30" uvx="0.5000004768371582" uvy="0.2361910045146942" tx="-0.5877832174301147" ty="7.487970243857944e-09" tz="-0.8090184330940247" bx="0.10163480043411255" by="0.9920774698257446" bz="-0.07384160906076431" />
<vert id="23" uvx="0.4090915024280548" uvy="0.2361910045146942" tx="-0.58778315782547" ty="7.487969355679525e-09" tz="-0.8090183734893799" bx="0.10163479298353195" by="0.9920773506164551" bz="-0.07384160161018372" />
<vert id="6" uvx="0.18181900680065155" uvy="0.31492099165916443" tx="0.7534745335578918" ty="0.1436617374420166" tz="-0.6415898203849792" bx="-0.5148196816444397" by="0.7358779311180115" bz="-0.4398231506347656" />
<vert id="32" uvx="0.27272799611091614" uvy="0.31492099165916443" tx="0.7534744739532471" ty="0.1436617374420166" tz="-0.6415898203849792" bx="-0.5148196816444397" by="0.7358778715133667" bz="-0.43982309103012085" />
<vert id="37" uvx="0.22727349400520325" uvy="0.39365148544311523" tx="0.7534744739532471" ty="0.1436617374420166" tz="-0.6415898203849792" bx="-0.5148196816444397" by="0.7358778715133667" bz="-0.43982309103012085" />
<vert id="7" uvx="0.0" uvy="0.31492099165916443" tx="0.8430233597755432" ty="0.14366649091243744" tz="0.5183354020118713" bx="0.25920677185058594" by="0.7358770370483398" bz="-0.6255374550819397" />
<vert id="33" uvx="0.09090950340032578" uvy="0.31492099165916443" tx="0.8430233597755432" ty="0.14366649091243744" tz="0.5183354020118713" bx="0.25920677185058594" by="0.7358770370483398" bz="-0.6255374550819397" />
<vert id="39" uvx="0.045455001294612885" uvy="0.39365148544311523" tx="0.8430233001708984" ty="0.14366647601127625" tz="0.5183354020118713" bx="0.25920677185058594" by="0.7358769774436951" bz="-0.6255373954772949" />
<vert id="8" uvx="0.7272729873657227" uvy="0.31492099165916443" tx="-0.2324509620666504" ty="0.1436644345521927" tz="0.9619393348693848" bx="0.6750208139419556" by="0.7358772158622742" bz="0.05321526527404785" />
<vert id="34" uvx="0.8181819915771484" uvy="0.31492099165916443" tx="-0.2324509471654892" ty="0.1436644345521927" tz="0.9619393348693848" bx="0.6750208139419556" by="0.7358772158622742" bz="0.05321525037288666" />
<vert id="40" uvx="0.7727274894714355" uvy="0.39365148544311523" tx="-0.232450932264328" ty="0.1436644196510315" tz="0.96193927526474" bx="0.6750207543373108" by="0.7358771562576294" bz="0.05321526527404785" />
<vert id="30" uvx="0.5000004768371582" uvy="0.2361910045146942" tx="-0.5877832770347595" ty="7.487970243857944e-09" tz="-0.8090184926986694" bx="0.10163481533527374" by="0.9920775890350342" bz="-0.07384161651134491" />
<vert id="23" uvx="0.4090915024280548" uvy="0.2361910045146942" tx="-0.5877832770347595" ty="7.487971132036364e-09" tz="-0.8090184926986694" bx="0.10163481533527374" by="0.9920775890350342" bz="-0.07384161651134491" />
<vert id="6" uvx="0.18181900680065155" uvy="0.31492099165916443" tx="0.7534744739532471" ty="0.1436617374420166" tz="-0.6415898203849792" bx="-0.5148196816444397" by="0.7358778715133667" bz="-0.43982309103012085" />
<vert id="32" uvx="0.27272799611091614" uvy="0.31492099165916443" tx="0.7534745335578918" ty="0.1436617374420166" tz="-0.6415898203849792" bx="-0.5148196816444397" by="0.7358779311180115" bz="-0.4398231506347656" />
<vert id="37" uvx="0.22727349400520325" uvy="0.39365148544311523" tx="0.7534744739532471" ty="0.1436617225408554" tz="-0.6415898203849792" bx="-0.5148196816444397" by="0.7358778715133667" bz="-0.43982309103012085" />
<vert id="7" uvx="0.0" uvy="0.31492099165916443" tx="0.843023419380188" ty="0.14366650581359863" tz="0.5183354616165161" bx="0.25920677185058594" by="0.7358770966529846" bz="-0.6255374550819397" />
<vert id="33" uvx="0.09090950340032578" uvy="0.31492099165916443" tx="0.8430233597755432" ty="0.14366649091243744" tz="0.5183354616165161" bx="0.25920677185058594" by="0.7358770966529846" bz="-0.6255374550819397" />
<vert id="39" uvx="0.045455001294612885" uvy="0.39365148544311523" tx="0.8430233597755432" ty="0.14366649091243744" tz="0.5183354020118713" bx="0.25920677185058594" by="0.7358770370483398" bz="-0.6255374550819397" />
<vert id="8" uvx="0.7272729873657227" uvy="0.31492099165916443" tx="-0.2324509471654892" ty="0.1436644345521927" tz="0.96193927526474" bx="0.6750207543373108" by="0.7358771562576294" bz="0.05321525037288666" />
<vert id="34" uvx="0.8181819915771484" uvy="0.31492099165916443" tx="-0.232450932264328" ty="0.1436644196510315" tz="0.9619392156600952" bx="0.6750207543373108" by="0.7358770966529846" bz="0.05321526527404785" />
<vert id="40" uvx="0.7727274894714355" uvy="0.39365148544311523" tx="-0.232450932264328" ty="0.1436644196510315" tz="0.9619391560554504" bx="0.675020694732666" by="0.7358770966529846" bz="0.05321526527404785" />
<vert id="9" uvx="0.5454549789428711" uvy="0.31492099165916443" tx="-0.9866893887519836" ty="0.14366565644741058" tz="0.07618515193462372" bx="0.15798546373844147" by="0.7358769178390503" bz="0.6584266424179077" />
<vert id="35" uvx="0.6363639831542969" uvy="0.31492099165916443" tx="-0.9866893291473389" ty="0.14366565644741058" tz="0.07618515938520432" bx="0.15798547863960266" by="0.7358769178390503" bz="0.6584265828132629" />
<vert id="41" uvx="0.590909481048584" uvy="0.39365148544311523" tx="-0.9866895079612732" ty="0.14366567134857178" tz="0.07618516683578491" bx="0.15798547863960266" by="0.7358770370483398" bz="0.6584267020225525" />
<vert id="10" uvx="0.3636370003223419" uvy="0.31492099165916443" tx="-0.37735623121261597" ty="0.14367088675498962" tz="-0.9148556590080261" bx="-0.5773779153823853" by="0.7358788847923279" bz="0.353718638420105" />
<vert id="36" uvx="0.4545459747314453" uvy="0.31492099165916443" tx="-0.37735623121261597" ty="0.14367090165615082" tz="-0.9148557186126709" bx="-0.57737797498703" by="0.7358789443969727" bz="0.35371866822242737" />
<vert id="38" uvx="0.4090915024280548" uvy="0.39365148544311523" tx="-0.3773562014102936" ty="0.14367088675498962" tz="-0.9148556590080261" bx="-0.5773779153823853" by="0.7358788251876831" bz="0.353718638420105" />
<vert id="38" uvx="0.4090915024280548" uvy="0.39365148544311523" tx="-0.5877920389175415" ty="4.272458227205789e-06" tz="-0.8090121746063232" bx="-0.7633206844329834" by="0.33130747079849243" bz="0.5545963644981384" />
<vert id="41" uvx="0.5000004768371582" uvy="0.39365148544311523" tx="-0.587791919708252" ty="4.272457317711087e-06" tz="-0.8090120553970337" bx="-0.7633205652236938" by="0.33130741119384766" bz="0.5545962452888489" />
<vert id="11" uvx="0.4545460045337677" uvy="0.4723820090293884" tx="-0.5877919793128967" ty="4.272457317711087e-06" tz="-0.8090121150016785" bx="-0.7633206248283386" by="0.33130741119384766" bz="0.5545963048934937" />
<vert id="38" uvx="0.4090915024280548" uvy="0.39365148544311523" tx="-0.587791919708252" ty="4.464943685889011e-06" tz="-0.8090120553970337" bx="-0.6428857445716858" by="0.607058048248291" bz="0.46709537506103516" />
<vert id="36" uvx="0.4545459747314453" uvy="0.31492099165916443" tx="-0.5877919793128967" ty="4.464944595383713e-06" tz="-0.8090121150016785" bx="-0.6428858041763306" by="0.6070581674575806" bz="0.46709543466567993" />
<vert id="41" uvx="0.5000004768371582" uvy="0.39365148544311523" tx="-0.5877919793128967" ty="4.464944140636362e-06" tz="-0.8090121746063232" bx="-0.6428858637809753" by="0.6070581674575806" bz="0.46709543466567993" />
<vert id="36" uvx="0.4545459747314453" uvy="0.31492099165916443" tx="-0.7534745335578918" ty="-0.1436617523431778" tz="-0.6415898203849792" bx="-0.5148196816444397" by="0.7358779907226562" bz="0.43982309103012085" />
<vert id="35" uvx="0.6363639831542969" uvy="0.31492099165916443" tx="-0.9866893887519836" ty="0.1436656415462494" tz="0.07618515193462372" bx="0.15798544883728027" by="0.7358769178390503" bz="0.6584266424179077" />
<vert id="41" uvx="0.590909481048584" uvy="0.39365148544311523" tx="-0.9866893887519836" ty="0.1436656415462494" tz="0.07618515193462372" bx="0.15798544883728027" by="0.7358769178390503" bz="0.6584266424179077" />
<vert id="10" uvx="0.3636370003223419" uvy="0.31492099165916443" tx="-0.37735623121261597" ty="0.14367090165615082" tz="-0.9148557186126709" bx="-0.57737797498703" by="0.7358789443969727" bz="0.35371866822242737" />
<vert id="36" uvx="0.4545459747314453" uvy="0.31492099165916443" tx="-0.37735623121261597" ty="0.14367090165615082" tz="-0.9148556590080261" bx="-0.5773779153823853" by="0.7358788847923279" bz="0.35371866822242737" />
<vert id="38" uvx="0.4090915024280548" uvy="0.39365148544311523" tx="-0.3773562014102936" ty="0.14367090165615082" tz="-0.9148556590080261" bx="-0.5773779153823853" by="0.7358788251876831" bz="0.353718638420105" />
<vert id="38" uvx="0.4090915024280548" uvy="0.39365148544311523" tx="-0.5877919793128967" ty="4.272458227205789e-06" tz="-0.8090121150016785" bx="-0.7633206248283386" by="0.33130741119384766" bz="0.5545963048934937" />
<vert id="41" uvx="0.5000004768371582" uvy="0.39365148544311523" tx="-0.5877919793128967" ty="4.272457772458438e-06" tz="-0.8090121150016785" bx="-0.7633206248283386" by="0.33130741119384766" bz="0.5545963048934937" />
<vert id="11" uvx="0.4545460045337677" uvy="0.4723820090293884" tx="-0.5877919793128967" ty="4.272457317711087e-06" tz="-0.8090120553970337" bx="-0.7633205652236938" by="0.33130741119384766" bz="0.5545963048934937" />
<vert id="38" uvx="0.4090915024280548" uvy="0.39365148544311523" tx="-0.587791919708252" ty="4.464944140636362e-06" tz="-0.8090120553970337" bx="-0.6428857445716858" by="0.607058048248291" bz="0.46709537506103516" />
<vert id="36" uvx="0.4545459747314453" uvy="0.31492099165916443" tx="-0.5877919793128967" ty="4.464944595383713e-06" tz="-0.8090121746063232" bx="-0.6428858637809753" by="0.6070581674575806" bz="0.46709543466567993" />
<vert id="41" uvx="0.5000004768371582" uvy="0.39365148544311523" tx="-0.587791919708252" ty="4.464944140636362e-06" tz="-0.8090120553970337" bx="-0.6428857445716858" by="0.607058048248291" bz="0.46709537506103516" />
<vert id="36" uvx="0.4545459747314453" uvy="0.31492099165916443" tx="-0.7534745931625366" ty="-0.1436617523431778" tz="-0.6415898203849792" bx="-0.5148196816444397" by="0.7358779907226562" bz="0.4398231506347656" />
<vert id="9" uvx="0.5454549789428711" uvy="0.31492099165916443" tx="-0.7534745335578918" ty="-0.1436617374420166" tz="-0.6415897607803345" bx="-0.5148196220397949" by="0.7358779311180115" bz="0.43982309103012085" />
<vert id="41" uvx="0.5000004768371582" uvy="0.39365148544311523" tx="-0.7534744739532471" ty="-0.1436617374420166" tz="-0.6415897607803345" bx="-0.5148196220397949" by="0.7358778715133667" bz="0.43982306122779846" />
<vert id="41" uvx="0.590909481048584" uvy="0.39365148544311523" tx="-0.9510549902915955" ty="-1.93443227658463e-07" tz="0.30902156233787537" bx="0.2915690243244171" by="0.33130571246147156" bz="0.8973426818847656" />
<vert id="40" uvx="0.6818184852600098" uvy="0.39365148544311523" tx="-0.9510549306869507" ty="-1.9344321344760829e-07" tz="0.30902156233787537" bx="0.2915690243244171" by="0.33130568265914917" bz="0.8973426222801208" />
<vert id="11" uvx="0.6363639831542969" uvy="0.4723820090293884" tx="-0.9510550498962402" ty="-1.93443227658463e-07" tz="0.30902156233787537" bx="0.2915690243244171" by="0.33130574226379395" bz="0.8973427414894104" />
<vert id="41" uvx="0.590909481048584" uvy="0.39365148544311523" tx="-0.951055109500885" ty="-3.557571659484893e-08" tz="0.3090214133262634" bx="0.2455662339925766" by="0.6070578098297119" bz="0.7557632923126221" />
<vert id="41" uvx="0.5000004768371582" uvy="0.39365148544311523" tx="-0.7534745931625366" ty="-0.1436617374420166" tz="-0.6415897607803345" bx="-0.5148196220397949" by="0.7358779907226562" bz="0.4398231506347656" />
<vert id="41" uvx="0.590909481048584" uvy="0.39365148544311523" tx="-0.9510550498962402" ty="-1.93443227658463e-07" tz="0.30902159214019775" bx="0.2915690541267395" by="0.33130574226379395" bz="0.8973427414894104" />
<vert id="40" uvx="0.6818184852600098" uvy="0.39365148544311523" tx="-0.9510549902915955" ty="-1.93443227658463e-07" tz="0.309021532535553" bx="0.2915689945220947" by="0.33130571246147156" bz="0.8973426818847656" />
<vert id="11" uvx="0.6363639831542969" uvy="0.4723820090293884" tx="-0.9510549902915955" ty="-1.9344321344760829e-07" tz="0.30902156233787537" bx="0.2915690243244171" by="0.33130571246147156" bz="0.8973426818847656" />
<vert id="41" uvx="0.590909481048584" uvy="0.39365148544311523" tx="-0.9510550498962402" ty="-3.557570948942157e-08" tz="0.30902138352394104" bx="0.2455662041902542" by="0.6070577502250671" bz="0.7557632327079773" />
<vert id="35" uvx="0.6363639831542969" uvy="0.31492099165916443" tx="-0.951055109500885" ty="-3.557571304213525e-08" tz="0.3090214133262634" bx="0.2455662339925766" by="0.6070578098297119" bz="0.7557632923126221" />
<vert id="40" uvx="0.6818184852600098" uvy="0.39365148544311523" tx="-0.9510549902915955" ty="-3.557570948942157e-08" tz="0.30902138352394104" bx="0.2455662041902542" by="0.6070576906204224" bz="0.7557631731033325" />
<vert id="35" uvx="0.6363639831542969" uvy="0.31492099165916443" tx="-0.8430233597755432" ty="-0.14366649091243744" tz="0.5183354616165161" bx="0.25920674204826355" by="0.7358770966529846" bz="0.6255373954772949" />
<vert id="8" uvx="0.7272729873657227" uvy="0.31492099165916443" tx="-0.8430233597755432" ty="-0.14366649091243744" tz="0.5183354020118713" bx="0.25920671224594116" by="0.7358770966529846" bz="0.6255373954772949" />
<vert id="40" uvx="0.6818184852600098" uvy="0.39365148544311523" tx="-0.8430233001708984" ty="-0.14366646111011505" tz="0.5183354020118713" bx="0.25920674204826355" by="0.7358770370483398" bz="0.6255373358726501" />
<vert id="40" uvx="0.6818184852600098" uvy="0.39365148544311523" tx="-0.951055109500885" ty="-3.557571304213525e-08" tz="0.3090214133262634" bx="0.2455662339925766" by="0.6070578098297119" bz="0.7557632923126221" />
<vert id="35" uvx="0.6363639831542969" uvy="0.31492099165916443" tx="-0.8430233001708984" ty="-0.14366647601127625" tz="0.5183354020118713" bx="0.25920671224594116" by="0.7358770370483398" bz="0.6255373358726501" />
<vert id="8" uvx="0.7272729873657227" uvy="0.31492099165916443" tx="-0.8430233597755432" ty="-0.14366647601127625" tz="0.5183354020118713" bx="0.25920671224594116" by="0.7358770966529846" bz="0.6255373954772949" />
<vert id="40" uvx="0.6818184852600098" uvy="0.39365148544311523" tx="-0.8430233597755432" ty="-0.14366647601127625" tz="0.5183354020118713" bx="0.25920671224594116" by="0.7358770966529846" bz="0.6255373954772949" />
<vert id="40" uvx="0.7727274894714355" uvy="0.39365148544311523" tx="0.0" ty="0.0" tz="1.0" bx="0.9435237646102905" by="0.33130449056625366" bz="-0.0" />
<vert id="39" uvx="0.8636364936828613" uvy="0.39365148544311523" tx="0.0" ty="0.0" tz="1.0" bx="0.9435237646102905" by="0.33130449056625366" bz="-0.0" />
<vert id="11" uvx="0.8181819915771484" uvy="0.4723820090293884" tx="0.0" ty="0.0" tz="1.0" bx="0.9435237646102905" by="0.33130449056625366" bz="-0.0" />
<vert id="40" uvx="0.7727274894714355" uvy="0.39365148544311523" tx="0.0" ty="0.0" tz="1.0" bx="0.7946555614471436" by="0.6070604920387268" bz="-0.0" />
<vert id="34" uvx="0.8181819915771484" uvy="0.31492099165916443" tx="0.0" ty="0.0" tz="1.0" bx="0.7946555614471436" by="0.6070604920387268" bz="-0.0" />
<vert id="39" uvx="0.8636364936828613" uvy="0.39365148544311523" tx="0.0" ty="0.0" tz="1.0" bx="0.7946555614471436" by="0.6070604920387268" bz="-0.0" />
<vert id="34" uvx="0.8181819915771484" uvy="0.31492099165916443" tx="0.23245100677013397" ty="-0.14366449415683746" tz="0.9619392156600952" bx="0.6750208139419556" by="0.7358770966529846" bz="-0.053215257823467255" />
<vert id="7" uvx="0.9090909957885742" uvy="0.31492099165916443" tx="0.23245100677013397" ty="-0.14366447925567627" tz="0.9619392156600952" bx="0.6750208139419556" by="0.7358770966529846" bz="-0.05321526527404785" />
<vert id="39" uvx="0.8636364936828613" uvy="0.39365148544311523" tx="0.23245100677013397" ty="-0.14366447925567627" tz="0.9619392156600952" bx="0.6750208139419556" by="0.7358770966529846" bz="-0.05321526527404785" />
<vert id="39" uvx="0.045455001294612885" uvy="0.39365148544311523" tx="0.9510549306869507" ty="1.9344321344760829e-07" tz="0.30902156233787537" bx="0.2915690243244171" by="0.33130568265914917" bz="-0.8973426222801208" />
<vert id="37" uvx="0.13636450469493866" uvy="0.39365148544311523" tx="0.9510549902915955" ty="1.93443227658463e-07" tz="0.30902156233787537" bx="0.2915690243244171" by="0.33130571246147156" bz="-0.8973426818847656" />
<vert id="11" uvx="0.09091000258922577" uvy="0.4723820090293884" tx="0.9510550498962402" ty="1.93443227658463e-07" tz="0.30902156233787537" bx="0.2915690243244171" by="0.33130574226379395" bz="-0.8973427414894104" />
<vert id="39" uvx="0.045455001294612885" uvy="0.39365148544311523" tx="0.9510549902915955" ty="1.0662364502422861e-07" tz="0.3090214431285858" bx="0.2455662190914154" by="0.6070577502250671" bz="-0.7557631731033325" />
<vert id="33" uvx="0.09090950340032578" uvy="0.31492099165916443" tx="0.951055109500885" ty="1.0662365923508332e-07" tz="0.3090214729309082" bx="0.2455662339925766" by="0.6070578694343567" bz="-0.7557632923126221" />
<vert id="37" uvx="0.13636450469493866" uvy="0.39365148544311523" tx="0.951055109500885" ty="1.0662366634051068e-07" tz="0.3090214729309082" bx="0.2455662339925766" by="0.6070578694343567" bz="-0.7557632923126221" />
<vert id="33" uvx="0.09090950340032578" uvy="0.31492099165916443" tx="0.9866893887519836" ty="-0.14366565644741058" tz="0.07618515938520432" bx="0.15798544883728027" by="0.7358768582344055" bz="-0.6584265828132629" />
<vert id="6" uvx="0.18181900680065155" uvy="0.31492099165916443" tx="0.9866893887519836" ty="-0.14366565644741058" tz="0.07618515938520432" bx="0.15798544883728027" by="0.7358768582344055" bz="-0.6584265828132629" />
<vert id="37" uvx="0.13636450469493866" uvy="0.39365148544311523" tx="0.9866895079612732" ty="-0.14366567134857178" tz="0.07618516683578491" bx="0.15798547863960266" by="0.7358769774436951" bz="-0.6584266424179077" />
<vert id="37" uvx="0.22727349400520325" uvy="0.39365148544311523" tx="0.587791919708252" ty="-4.258398348611081e-06" tz="-0.8090120553970337" bx="-0.7633205652236938" by="0.33130741119384766" bz="-0.5545962452888489" />
<vert id="38" uvx="0.31818249821662903" uvy="0.39365148544311523" tx="0.5877920389175415" ty="-4.258398803358432e-06" tz="-0.8090121746063232" bx="-0.7633206844329834" by="0.33130747079849243" bz="-0.5545963644981384" />
<vert id="11" uvx="0.27272799611091614" uvy="0.4723820090293884" tx="0.5877919793128967" ty="-4.258398348611081e-06" tz="-0.8090121150016785" bx="-0.7633206248283386" by="0.33130744099617004" bz="-0.5545963048934937" />
<vert id="37" uvx="0.22727349400520325" uvy="0.39365148544311523" tx="0.587791919708252" ty="-4.5123097152099945e-06" tz="-0.8090121746063232" bx="-0.6428858637809753" by="0.6070581674575806" bz="-0.46709537506103516" />
<vert id="32" uvx="0.27272799611091614" uvy="0.31492099165916443" tx="0.587791919708252" ty="-4.512310169957345e-06" tz="-0.8090121150016785" bx="-0.6428858041763306" by="0.6070581674575806" bz="-0.46709537506103516" />
<vert id="34" uvx="0.8181819915771484" uvy="0.31492099165916443" tx="0.23245102167129517" ty="-0.14366449415683746" tz="0.96193927526474" bx="0.6750208139419556" by="0.7358771562576294" bz="-0.05321527272462845" />
<vert id="7" uvx="0.9090909957885742" uvy="0.31492099165916443" tx="0.23245099186897278" ty="-0.14366447925567627" tz="0.9619391560554504" bx="0.6750207543373108" by="0.7358770966529846" bz="-0.05321525037288666" />
<vert id="39" uvx="0.8636364936828613" uvy="0.39365148544311523" tx="0.23245102167129517" ty="-0.14366449415683746" tz="0.9619392156600952" bx="0.6750208139419556" by="0.7358771562576294" bz="-0.05321527272462845" />
<vert id="39" uvx="0.045455001294612885" uvy="0.39365148544311523" tx="0.9510549902915955" ty="1.93443227658463e-07" tz="0.309021532535553" bx="0.2915689945220947" by="0.33130571246147156" bz="-0.8973426818847656" />
<vert id="37" uvx="0.13636450469493866" uvy="0.39365148544311523" tx="0.9510550498962402" ty="1.93443227658463e-07" tz="0.30902159214019775" bx="0.2915690541267395" by="0.33130574226379395" bz="-0.8973427414894104" />
<vert id="11" uvx="0.09091000258922577" uvy="0.4723820090293884" tx="0.9510549902915955" ty="1.9344321344760829e-07" tz="0.30902156233787537" bx="0.2915690243244171" by="0.33130571246147156" bz="-0.8973426818847656" />
<vert id="39" uvx="0.045455001294612885" uvy="0.39365148544311523" tx="0.9510549902915955" ty="1.0662364502422861e-07" tz="0.3090214133262634" bx="0.24556618928909302" by="0.6070576906204224" bz="-0.7557631731033325" />
<vert id="33" uvx="0.09090950340032578" uvy="0.31492099165916443" tx="0.951055109500885" ty="1.0662366634051068e-07" tz="0.3090214729309082" bx="0.2455662339925766" by="0.6070578694343567" bz="-0.7557632923126221" />
<vert id="37" uvx="0.13636450469493866" uvy="0.39365148544311523" tx="0.9510550498962402" ty="1.0662365212965597e-07" tz="0.3090214431285858" bx="0.2455662190914154" by="0.6070578098297119" bz="-0.7557632327079773" />
<vert id="33" uvx="0.09090950340032578" uvy="0.31492099165916443" tx="0.9866894483566284" ty="-0.14366565644741058" tz="0.07618515938520432" bx="0.15798544883728027" by="0.7358769178390503" bz="-0.6584265828132629" />
<vert id="6" uvx="0.18181900680065155" uvy="0.31492099165916443" tx="0.9866893887519836" ty="-0.14366565644741058" tz="0.07618515193462372" bx="0.15798544883728027" by="0.7358768582344055" bz="-0.6584265828132629" />
<vert id="37" uvx="0.13636450469493866" uvy="0.39365148544311523" tx="0.9866894483566284" ty="-0.14366565644741058" tz="0.07618515938520432" bx="0.15798544883728027" by="0.7358769178390503" bz="-0.6584265828132629" />
<vert id="37" uvx="0.22727349400520325" uvy="0.39365148544311523" tx="0.5877919793128967" ty="-4.258398803358432e-06" tz="-0.8090121150016785" bx="-0.7633206248283386" by="0.33130744099617004" bz="-0.5545963048934937" />
<vert id="38" uvx="0.31818249821662903" uvy="0.39365148544311523" tx="0.5877919793128967" ty="-4.258398803358432e-06" tz="-0.8090121150016785" bx="-0.7633206248283386" by="0.33130744099617004" bz="-0.5545963048934937" />
<vert id="11" uvx="0.27272799611091614" uvy="0.4723820090293884" tx="0.5877919793128967" ty="-4.258398348611081e-06" tz="-0.8090120553970337" bx="-0.7633205652236938" by="0.33130741119384766" bz="-0.5545963048934937" />
<vert id="37" uvx="0.22727349400520325" uvy="0.39365148544311523" tx="0.587791919708252" ty="-4.512310169957345e-06" tz="-0.8090121746063232" bx="-0.6428858637809753" by="0.6070581674575806" bz="-0.46709537506103516" />
<vert id="32" uvx="0.27272799611091614" uvy="0.31492099165916443" tx="0.587791919708252" ty="-4.512310169957345e-06" tz="-0.8090121746063232" bx="-0.6428858637809753" by="0.6070581674575806" bz="-0.46709537506103516" />
<vert id="38" uvx="0.31818249821662903" uvy="0.39365148544311523" tx="0.587791919708252" ty="-4.512310169957345e-06" tz="-0.8090121746063232" bx="-0.6428858637809753" by="0.6070581674575806" bz="-0.46709537506103516" />
<vert id="32" uvx="0.27272799611091614" uvy="0.31492099165916443" tx="0.37735623121261597" ty="-0.14367090165615082" tz="-0.9148557186126709" bx="-0.57737797498703" by="0.7358789443969727" bz="-0.35371866822242737" />
<vert id="10" uvx="0.3636370003223419" uvy="0.31492099165916443" tx="0.37735623121261597" ty="-0.14367088675498962" tz="-0.9148556590080261" bx="-0.5773779153823853" by="0.7358788847923279" bz="-0.353718638420105" />
<vert id="38" uvx="0.31818249821662903" uvy="0.39365148544311523" tx="0.3773562014102936" ty="-0.14367088675498962" tz="-0.9148556590080261" bx="-0.5773779153823853" by="0.7358788251876831" bz="-0.353718638420105" />
<vert id="23" uvx="0.4090915024280548" uvy="0.2361910045146942" tx="-0.3773562014102936" ty="0.14367090165615082" tz="-0.9148556590080261" bx="-0.2569844722747803" by="0.9328475594520569" bz="0.2524963617324829" />
<vert id="36" uvx="0.4545459747314453" uvy="0.31492099165916443" tx="-0.3773562014102936" ty="0.14367090165615082" tz="-0.9148556590080261" bx="-0.2569844722747803" by="0.9328475594520569" bz="0.2524963617324829" />
<vert id="10" uvx="0.3636370003223419" uvy="0.31492099165916443" tx="-0.37735623121261597" ty="0.14367090165615082" tz="-0.9148556590080261" bx="-0.2569844722747803" by="0.9328475594520569" bz="0.2524963915348053" />
<vert id="23" uvx="0.4090915024280548" uvy="0.2361910045146942" tx="-0.5877830386161804" ty="2.236307317105002e-08" tz="-0.809018611907959" bx="-0.15176787972450256" by="0.9822465181350708" bz="0.11026520282030106" />
<vert id="30" uvx="0.5000004768371582" uvy="0.2361910045146942" tx="-0.5877830386161804" ty="2.2363074947406858e-08" tz="-0.809018611907959" bx="-0.15176787972450256" by="0.9822465181350708" bz="0.11026520282030106" />
<vert id="32" uvx="0.27272799611091614" uvy="0.31492099165916443" tx="0.37735623121261597" ty="-0.14367090165615082" tz="-0.9148556590080261" bx="-0.5773779153823853" by="0.7358788847923279" bz="-0.35371866822242737" />
<vert id="10" uvx="0.3636370003223419" uvy="0.31492099165916443" tx="0.37735623121261597" ty="-0.14367090165615082" tz="-0.9148557186126709" bx="-0.57737797498703" by="0.7358789443969727" bz="-0.35371866822242737" />
<vert id="38" uvx="0.31818249821662903" uvy="0.39365148544311523" tx="0.3773562014102936" ty="-0.14367090165615082" tz="-0.9148556590080261" bx="-0.5773779153823853" by="0.7358788251876831" bz="-0.353718638420105" />
<vert id="23" uvx="0.4090915024280548" uvy="0.2361910045146942" tx="-0.3773562014102936" ty="0.14367090165615082" tz="-0.9148557186126709" bx="-0.2569844722747803" by="0.9328476190567017" bz="0.2524963617324829" />
<vert id="36" uvx="0.4545459747314453" uvy="0.31492099165916443" tx="-0.37735626101493835" ty="0.14367090165615082" tz="-0.9148557782173157" bx="-0.25698450207710266" by="0.9328476786613464" bz="0.2524963915348053" />
<vert id="10" uvx="0.3636370003223419" uvy="0.31492099165916443" tx="-0.3773562014102936" ty="0.14367088675498962" tz="-0.9148556590080261" bx="-0.2569844722747803" by="0.9328475594520569" bz="0.2524963617324829" />
<vert id="23" uvx="0.4090915024280548" uvy="0.2361910045146942" tx="-0.5877830982208252" ty="2.2363078500120537e-08" tz="-0.8090186715126038" bx="-0.15176787972450256" by="0.9822466373443604" bz="0.11026521772146225" />
<vert id="30" uvx="0.5000004768371582" uvy="0.2361910045146942" tx="-0.5877830386161804" ty="2.236307317105002e-08" tz="-0.8090185523033142" bx="-0.15176786482334137" by="0.982246458530426" bz="0.11026520282030106" />
<vert id="36" uvx="0.4545459747314453" uvy="0.31492099165916443" tx="-0.5877830386161804" ty="2.2363074947406858e-08" tz="-0.809018611907959" bx="-0.15176787972450256" by="0.9822465181350708" bz="0.11026520282030106" />
<vert id="30" uvx="0.5000004768371582" uvy="0.2361910045146942" tx="-0.7534744739532471" ty="-0.14366163313388824" tz="-0.6415899395942688" bx="-0.31954479217529297" by="0.9328480958938599" bz="0.1663903295993805" />
<vert id="30" uvx="0.5000004768371582" uvy="0.2361910045146942" tx="-0.7534744739532471" ty="-0.14366161823272705" tz="-0.6415898203849792" bx="-0.3195447325706482" by="0.9328479766845703" bz="0.1663903295993805" />
<vert id="9" uvx="0.5454549789428711" uvy="0.31492099165916443" tx="-0.7534744739532471" ty="-0.14366161823272705" tz="-0.641589879989624" bx="-0.3195447325706482" by="0.9328480362892151" bz="0.1663903295993805" />
<vert id="36" uvx="0.4545459747314453" uvy="0.31492099165916443" tx="-0.7534744143486023" ty="-0.14366161823272705" tz="-0.641589879989624" bx="-0.3195447325706482" by="0.9328479766845703" bz="0.1663902997970581" />
<vert id="31" uvx="0.590909481048584" uvy="0.2361910045146942" tx="-0.9866894483566284" ty="0.14366555213928223" tz="0.0761852115392685" bx="0.1607220619916916" by="0.932847797870636" bz="0.32243356108665466" />
<vert id="35" uvx="0.6363639831542969" uvy="0.31492099165916443" tx="-0.9866893291473389" ty="0.14366553723812103" tz="0.0761852040886879" bx="0.1607220470905304" by="0.9328476786613464" bz="0.3224335312843323" />
<vert id="9" uvx="0.5454549789428711" uvy="0.31492099165916443" tx="-0.9866894483566284" ty="0.14366555213928223" tz="0.0761852115392685" bx="0.1607220619916916" by="0.932847797870636" bz="0.32243356108665466" />
<vert id="36" uvx="0.4545459747314453" uvy="0.31492099165916443" tx="-0.7534744739532471" ty="-0.14366161823272705" tz="-0.6415898203849792" bx="-0.3195447325706482" by="0.9328479766845703" bz="0.1663903295993805" />
<vert id="31" uvx="0.590909481048584" uvy="0.2361910045146942" tx="-0.9866893887519836" ty="0.14366553723812103" tz="0.0761852040886879" bx="0.1607220470905304" by="0.9328477382659912" bz="0.32243356108665466" />
<vert id="35" uvx="0.6363639831542969" uvy="0.31492099165916443" tx="-0.9866894483566284" ty="0.14366555213928223" tz="0.0761852115392685" bx="0.1607220619916916" by="0.932847797870636" bz="0.32243356108665466" />
<vert id="9" uvx="0.5454549789428711" uvy="0.31492099165916443" tx="-0.9866893291473389" ty="0.14366553723812103" tz="0.0761852040886879" bx="0.1607220470905304" by="0.9328476786613464" bz="0.3224335312843323" />
<vert id="31" uvx="0.590909481048584" uvy="0.2361910045146942" tx="-0.9510564208030701" ty="0.0" tz="0.309017151594162" bx="0.057970788329839706" by="0.9822460412979126" bz="0.17841564118862152" />
<vert id="28" uvx="0.6818184852600098" uvy="0.2361910045146942" tx="-0.9510564208030701" ty="0.0" tz="0.3090171217918396" bx="0.05797078460454941" by="0.9822460412979126" bz="0.17841564118862152" />
<vert id="35" uvx="0.6363639831542969" uvy="0.31492099165916443" tx="-0.9510564208030701" ty="0.0" tz="0.309017151594162" bx="0.057970788329839706" by="0.9822460412979126" bz="0.17841564118862152" />
<vert id="28" uvx="0.6818184852600098" uvy="0.2361910045146942" tx="-0.8430233597755432" ty="-0.14366628229618073" tz="0.5183352828025818" bx="0.05949816107749939" by="0.9328474998474121" bz="0.3553242087364197" />
<vert id="8" uvx="0.7272729873657227" uvy="0.31492099165916443" tx="-0.843023419380188" ty="-0.14366629719734192" tz="0.5183353424072266" bx="0.05949816852807999" by="0.9328475594520569" bz="0.35532423853874207" />
<vert id="35" uvx="0.6363639831542969" uvy="0.31492099165916443" tx="-0.8430234789848328" ty="-0.14366629719734192" tz="0.5183354020118713" bx="0.05949818342924118" by="0.9328476190567017" bz="0.35532423853874207" />
<vert id="29" uvx="0.7727274894714355" uvy="0.2361910045146942" tx="-0.23245076835155487" ty="0.14366434514522552" tz="0.9619393348693848" bx="0.3563164472579956" by="0.9328487515449524" bz="-0.05321653187274933" />
<vert id="34" uvx="0.8181819915771484" uvy="0.31492099165916443" tx="-0.23245075345039368" ty="0.14366433024406433" tz="0.96193927526474" bx="0.3563164174556732" by="0.9328486919403076" bz="-0.053216516971588135" />
<vert id="8" uvx="0.7272729873657227" uvy="0.31492099165916443" tx="-0.23245078325271606" ty="0.14366434514522552" tz="0.9619393944740295" bx="0.3563164472579956" by="0.9328488111495972" bz="-0.05321652442216873" />
<vert id="28" uvx="0.6818184852600098" uvy="0.2361910045146942" tx="-0.843023419380188" ty="-0.14366629719734192" tz="0.5183353424072266" bx="0.05949816852807999" by="0.9328475594520569" bz="0.35532423853874207" />
<vert id="8" uvx="0.7272729873657227" uvy="0.31492099165916443" tx="-0.8430234789848328" ty="-0.14366629719734192" tz="0.5183354020118713" bx="0.05949818342924118" by="0.9328476190567017" bz="0.35532423853874207" />
<vert id="35" uvx="0.6363639831542969" uvy="0.31492099165916443" tx="-0.843023419380188" ty="-0.14366629719734192" tz="0.5183353424072266" bx="0.05949816852807999" by="0.9328475594520569" bz="0.35532423853874207" />
<vert id="29" uvx="0.7727274894714355" uvy="0.2361910045146942" tx="-0.23245076835155487" ty="0.14366433024406433" tz="0.9619393348693848" bx="0.3563164472579956" by="0.9328487515449524" bz="-0.053216516971588135" />
<vert id="34" uvx="0.8181819915771484" uvy="0.31492099165916443" tx="-0.23245076835155487" ty="0.14366434514522552" tz="0.9619393348693848" bx="0.3563164472579956" by="0.9328487515449524" bz="-0.05321653187274933" />
<vert id="8" uvx="0.7272729873657227" uvy="0.31492099165916443" tx="-0.23245078325271606" ty="0.14366433024406433" tz="0.9619393944740295" bx="0.3563164472579956" by="0.9328488111495972" bz="-0.05321650952100754" />
<vert id="29" uvx="0.7727274894714355" uvy="0.2361910045146942" tx="0.0" ty="0.0" tz="1.0" bx="0.18759854137897491" by="0.9822458028793335" bz="-0.0" />
<vert id="26" uvx="0.8636364936828613" uvy="0.2361910045146942" tx="0.0" ty="0.0" tz="1.0" bx="0.18759854137897491" by="0.9822458028793335" bz="-0.0" />
<vert id="34" uvx="0.8181819915771484" uvy="0.31492099165916443" tx="0.0" ty="0.0" tz="1.0" bx="0.18759854137897491" by="0.9822458028793335" bz="-0.0" />
<vert id="26" uvx="0.8636364936828613" uvy="0.2361910045146942" tx="0.23245076835155487" ty="-0.14366434514522552" tz="0.9619393348693848" bx="0.3563164472579956" by="0.9328487515449524" bz="0.05321653187274933" />
<vert id="7" uvx="0.9090909957885742" uvy="0.31492099165916443" tx="0.23245078325271606" ty="-0.14366434514522552" tz="0.9619393944740295" bx="0.3563164472579956" by="0.9328488111495972" bz="0.05321652442216873" />
<vert id="34" uvx="0.8181819915771484" uvy="0.31492099165916443" tx="0.23245075345039368" ty="-0.14366433024406433" tz="0.96193927526474" bx="0.3563164174556732" by="0.9328486919403076" bz="0.053216516971588135" />
<vert id="27" uvx="0.045455001294612885" uvy="0.2361910045146942" tx="0.8430233597755432" ty="0.14366628229618073" tz="0.5183352828025818" bx="0.05949816107749939" by="0.9328474998474121" bz="-0.3553242087364197" />
<vert id="33" uvx="0.09090950340032578" uvy="0.31492099165916443" tx="0.8430234789848328" ty="0.14366629719734192" tz="0.5183354020118713" bx="0.05949818342924118" by="0.9328476190567017" bz="-0.35532423853874207" />
<vert id="7" uvx="0.0" uvy="0.31492099165916443" tx="0.843023419380188" ty="0.14366629719734192" tz="0.5183353424072266" bx="0.05949816852807999" by="0.9328475594520569" bz="-0.35532423853874207" />
<vert id="27" uvx="0.045455001294612885" uvy="0.2361910045146942" tx="0.9510564804077148" ty="0.0" tz="0.309017151594162" bx="0.0579708069562912" by="0.9822459816932678" bz="-0.1784157007932663" />
<vert id="26" uvx="0.8636364936828613" uvy="0.2361910045146942" tx="0.23245076835155487" ty="-0.14366433024406433" tz="0.9619393348693848" bx="0.3563164472579956" by="0.9328487515449524" bz="0.053216516971588135" />
<vert id="7" uvx="0.9090909957885742" uvy="0.31492099165916443" tx="0.23245078325271606" ty="-0.14366433024406433" tz="0.9619393944740295" bx="0.3563164472579956" by="0.9328488111495972" bz="0.05321650952100754" />
<vert id="34" uvx="0.8181819915771484" uvy="0.31492099165916443" tx="0.23245076835155487" ty="-0.14366434514522552" tz="0.9619393348693848" bx="0.3563164472579956" by="0.9328487515449524" bz="0.05321653187274933" />
<vert id="27" uvx="0.045455001294612885" uvy="0.2361910045146942" tx="0.843023419380188" ty="0.14366629719734192" tz="0.5183353424072266" bx="0.05949816852807999" by="0.9328475594520569" bz="-0.35532423853874207" />
<vert id="33" uvx="0.09090950340032578" uvy="0.31492099165916443" tx="0.843023419380188" ty="0.14366629719734192" tz="0.5183353424072266" bx="0.05949816852807999" by="0.9328475594520569" bz="-0.35532423853874207" />
<vert id="7" uvx="0.0" uvy="0.31492099165916443" tx="0.8430234789848328" ty="0.14366629719734192" tz="0.5183354020118713" bx="0.05949818342924118" by="0.9328476190567017" bz="-0.35532423853874207" />
<vert id="27" uvx="0.045455001294612885" uvy="0.2361910045146942" tx="0.9510564208030701" ty="0.0" tz="0.3090171217918396" bx="0.0579708032310009" by="0.982245922088623" bz="-0.1784156858921051" />
<vert id="24" uvx="0.13636450469493866" uvy="0.2361910045146942" tx="0.9510564208030701" ty="0.0" tz="0.309017151594162" bx="0.0579708069562912" by="0.982245922088623" bz="-0.1784156858921051" />
<vert id="33" uvx="0.09090950340032578" uvy="0.31492099165916443" tx="0.9510564208030701" ty="0.0" tz="0.309017151594162" bx="0.0579708069562912" by="0.982245922088623" bz="-0.1784156858921051" />
<vert id="24" uvx="0.13636450469493866" uvy="0.2361910045146942" tx="0.9866894483566284" ty="-0.14366555213928223" tz="0.0761852115392685" bx="0.1607220619916916" by="0.932847797870636" bz="-0.32243356108665466" />
<vert id="6" uvx="0.18181900680065155" uvy="0.31492099165916443" tx="0.9866894483566284" ty="-0.14366555213928223" tz="0.0761852115392685" bx="0.1607220619916916" by="0.932847797870636" bz="-0.32243356108665466" />
<vert id="33" uvx="0.09090950340032578" uvy="0.31492099165916443" tx="0.9866893291473389" ty="-0.14366553723812103" tz="0.0761852040886879" bx="0.1607220470905304" by="0.9328476786613464" bz="-0.3224335312843323" />
<vert id="25" uvx="0.22727349400520325" uvy="0.2361910045146942" tx="0.7534744739532471" ty="0.14366163313388824" tz="-0.6415899395942688" bx="-0.31954479217529297" by="0.9328480958938599" bz="-0.1663903295993805" />
<vert id="32" uvx="0.27272799611091614" uvy="0.31492099165916443" tx="0.7534744143486023" ty="0.14366161823272705" tz="-0.641589879989624" bx="-0.3195447325706482" by="0.9328479766845703" bz="-0.1663902997970581" />
<vert id="24" uvx="0.13636450469493866" uvy="0.2361910045146942" tx="0.9866893887519836" ty="-0.14366553723812103" tz="0.0761852040886879" bx="0.1607220470905304" by="0.9328477382659912" bz="-0.32243356108665466" />
<vert id="6" uvx="0.18181900680065155" uvy="0.31492099165916443" tx="0.9866893291473389" ty="-0.14366553723812103" tz="0.0761852040886879" bx="0.1607220470905304" by="0.9328476786613464" bz="-0.3224335312843323" />
<vert id="33" uvx="0.09090950340032578" uvy="0.31492099165916443" tx="0.9866894483566284" ty="-0.14366555213928223" tz="0.0761852115392685" bx="0.1607220619916916" by="0.932847797870636" bz="-0.32243356108665466" />
<vert id="25" uvx="0.22727349400520325" uvy="0.2361910045146942" tx="0.7534744739532471" ty="0.14366161823272705" tz="-0.6415898203849792" bx="-0.3195447325706482" by="0.9328479766845703" bz="-0.1663903295993805" />
<vert id="32" uvx="0.27272799611091614" uvy="0.31492099165916443" tx="0.7534744739532471" ty="0.14366161823272705" tz="-0.6415898203849792" bx="-0.3195447325706482" by="0.9328479766845703" bz="-0.1663903295993805" />
<vert id="6" uvx="0.18181900680065155" uvy="0.31492099165916443" tx="0.7534744739532471" ty="0.14366161823272705" tz="-0.641589879989624" bx="-0.3195447325706482" by="0.9328480362892151" bz="-0.1663903295993805" />
<vert id="25" uvx="0.22727349400520325" uvy="0.2361910045146942" tx="0.5877830386161804" ty="-2.2363080276477376e-08" tz="-0.809018611907959" bx="-0.15176790952682495" by="0.9822465181350708" bz="-0.11026523262262344" />
<vert id="22" uvx="0.31818249821662903" uvy="0.2361910045146942" tx="0.5877830386161804" ty="-2.2363080276477376e-08" tz="-0.8090185523033142" bx="-0.15176789462566376" by="0.982246458530426" bz="-0.11026523262262344" />
<vert id="25" uvx="0.22727349400520325" uvy="0.2361910045146942" tx="0.5877830386161804" ty="-2.2363078500120537e-08" tz="-0.8090185523033142" bx="-0.15176789462566376" by="0.982246458530426" bz="-0.11026523262262344" />
<vert id="22" uvx="0.31818249821662903" uvy="0.2361910045146942" tx="0.5877830386161804" ty="-2.2363078500120537e-08" tz="-0.809018611907959" bx="-0.15176790952682495" by="0.9822465181350708" bz="-0.11026523262262344" />
<vert id="32" uvx="0.27272799611091614" uvy="0.31492099165916443" tx="0.5877830386161804" ty="-2.2363080276477376e-08" tz="-0.809018611907959" bx="-0.15176790952682495" by="0.9822465181350708" bz="-0.11026523262262344" />
<vert id="22" uvx="0.31818249821662903" uvy="0.2361910045146942" tx="0.3773562014102936" ty="-0.14367090165615082" tz="-0.9148556590080261" bx="-0.2569844722747803" by="0.9328475594520569" bz="-0.2524963617324829" />
<vert id="10" uvx="0.3636370003223419" uvy="0.31492099165916443" tx="0.37735623121261597" ty="-0.14367090165615082" tz="-0.9148556590080261" bx="-0.2569844722747803" by="0.9328475594520569" bz="-0.2524963915348053" />
<vert id="32" uvx="0.27272799611091614" uvy="0.31492099165916443" tx="0.3773562014102936" ty="-0.14367090165615082" tz="-0.9148556590080261" bx="-0.2569844722747803" by="0.9328475594520569" bz="-0.2524963617324829" />
<vert id="30" uvx="0.5000004768371582" uvy="0.2361910045146942" tx="-0.9510564804077148" ty="-3.744028198582328e-09" tz="-0.3090171217918396" bx="-0.03882143646478653" by="0.9920772910118103" bz="0.11948002874851227" />
<vert id="31" uvx="0.590909481048584" uvy="0.2361910045146942" tx="-0.9510564804077148" ty="-3.7440286426715375e-09" tz="-0.309017151594162" bx="-0.03882144019007683" by="0.9920772910118103" bz="0.11948002874851227" />
<vert id="9" uvx="0.5454549789428711" uvy="0.31492099165916443" tx="-0.9510564804077148" ty="-3.7440286426715375e-09" tz="-0.309017151594162" bx="-0.03882144019007683" by="0.9920772910118103" bz="0.11948002874851227" />
<vert id="30" uvx="0.5000004768371582" uvy="0.2361910045146942" tx="-0.9510564804077148" ty="0.0" tz="-0.309017151594162" bx="0.0579708069562912" by="0.9822459816932678" bz="-0.1784157007932663" />
<vert id="22" uvx="0.31818249821662903" uvy="0.2361910045146942" tx="0.3773562014102936" ty="-0.14367090165615082" tz="-0.9148557186126709" bx="-0.2569844722747803" by="0.9328476190567017" bz="-0.2524963617324829" />
<vert id="10" uvx="0.3636370003223419" uvy="0.31492099165916443" tx="0.3773562014102936" ty="-0.14367088675498962" tz="-0.9148556590080261" bx="-0.2569844722747803" by="0.9328475594520569" bz="-0.2524963617324829" />
<vert id="32" uvx="0.27272799611091614" uvy="0.31492099165916443" tx="0.37735626101493835" ty="-0.14367090165615082" tz="-0.9148557782173157" bx="-0.25698450207710266" by="0.9328476786613464" bz="-0.2524963915348053" />
<vert id="30" uvx="0.5000004768371582" uvy="0.2361910045146942" tx="-0.9510564208030701" ty="-3.744028198582328e-09" tz="-0.3090171217918396" bx="-0.03882143646478653" by="0.9920772910118103" bz="0.11948002129793167" />
<vert id="31" uvx="0.590909481048584" uvy="0.2361910045146942" tx="-0.9510564804077148" ty="-3.744028198582328e-09" tz="-0.3090171217918396" bx="-0.03882143646478653" by="0.9920772910118103" bz="0.11948002874851227" />
<vert id="9" uvx="0.5454549789428711" uvy="0.31492099165916443" tx="-0.9510564208030701" ty="-3.744028198582328e-09" tz="-0.3090170919895172" bx="-0.03882143273949623" by="0.9920772910118103" bz="0.11948002129793167" />
<vert id="30" uvx="0.5000004768371582" uvy="0.2361910045146942" tx="-0.9510564208030701" ty="0.0" tz="-0.3090171217918396" bx="0.0579708032310009" by="0.982245922088623" bz="-0.1784156858921051" />
<vert id="21" uvx="0.5454549789428711" uvy="0.1574610024690628" tx="-0.9510564208030701" ty="0.0" tz="-0.309017151594162" bx="0.0579708069562912" by="0.982245922088623" bz="-0.1784156858921051" />
<vert id="31" uvx="0.590909481048584" uvy="0.2361910045146942" tx="-0.9510564208030701" ty="0.0" tz="-0.309017151594162" bx="0.0579708069562912" by="0.982245922088623" bz="-0.1784156858921051" />
<vert id="21" uvx="0.5454549789428711" uvy="0.1574610024690628" tx="-0.9866893887519836" ty="0.1436656266450882" tz="-0.07618521898984909" bx="0.16072212159633636" by="0.9328477382659912" bz="-0.3224334418773651" />
<vert id="4" uvx="0.6363639831542969" uvy="0.1574610024690628" tx="-0.9866893291473389" ty="0.143665611743927" tz="-0.0761852040886879" bx="0.16072210669517517" by="0.9328476786613464" bz="-0.3224334120750427" />
<vert id="31" uvx="0.590909481048584" uvy="0.2361910045146942" tx="-0.9866893887519836" ty="0.1436656266450882" tz="-0.07618521898984909" bx="0.16072212159633636" by="0.9328477382659912" bz="-0.3224334418773651" />
<vert id="28" uvx="0.6818184852600098" uvy="0.2361910045146942" tx="-0.5877832174301147" ty="7.487970243857944e-09" tz="0.8090184330940247" bx="0.10163480043411255" by="0.9920774698257446" bz="0.07384160906076431" />
<vert id="29" uvx="0.7727274894714355" uvy="0.2361910045146942" tx="-0.58778315782547" ty="7.487969355679525e-09" tz="0.8090183734893799" bx="0.10163479298353195" by="0.9920773506164551" bz="0.07384160161018372" />
<vert id="4" uvx="0.6363639831542969" uvy="0.1574610024690628" tx="-0.9866894483566284" ty="0.1436656266450882" tz="-0.07618521898984909" bx="0.16072212159633636" by="0.932847797870636" bz="-0.3224334418773651" />
<vert id="31" uvx="0.590909481048584" uvy="0.2361910045146942" tx="-0.9866894483566284" ty="0.1436656266450882" tz="-0.07618521898984909" bx="0.16072212159633636" by="0.932847797870636" bz="-0.3224334418773651" />
<vert id="28" uvx="0.6818184852600098" uvy="0.2361910045146942" tx="-0.5877832770347595" ty="7.487970243857944e-09" tz="0.8090184926986694" bx="0.10163481533527374" by="0.9920775890350342" bz="0.07384161651134491" />
<vert id="29" uvx="0.7727274894714355" uvy="0.2361910045146942" tx="-0.5877832770347595" ty="7.487971132036364e-09" tz="0.8090184926986694" bx="0.10163481533527374" by="0.9920775890350342" bz="0.07384161651134491" />
<vert id="8" uvx="0.7272729873657227" uvy="0.31492099165916443" tx="-0.5877832174301147" ty="7.487970243857944e-09" tz="0.8090184330940247" bx="0.10163480043411255" by="0.9920774698257446" bz="0.07384160906076431" />
<vert id="28" uvx="0.6818184852600098" uvy="0.2361910045146942" tx="-0.5877830386161804" ty="2.2363080276477376e-08" tz="0.809018611907959" bx="-0.15176790952682495" by="0.9822465181350708" bz="-0.11026523262262344" />
<vert id="28" uvx="0.6818184852600098" uvy="0.2361910045146942" tx="-0.5877830386161804" ty="2.2363078500120537e-08" tz="0.8090185523033142" bx="-0.15176789462566376" by="0.982246458530426" bz="-0.11026523262262344" />
<vert id="20" uvx="0.7272729873657227" uvy="0.1574610024690628" tx="-0.5877830386161804" ty="2.2363080276477376e-08" tz="0.809018611907959" bx="-0.15176790952682495" by="0.9822465181350708" bz="-0.11026523262262344" />
<vert id="29" uvx="0.7727274894714355" uvy="0.2361910045146942" tx="-0.5877830386161804" ty="2.2363080276477376e-08" tz="0.8090185523033142" bx="-0.15176789462566376" by="0.982246458530426" bz="-0.11026523262262344" />
<vert id="20" uvx="0.7272729873657227" uvy="0.1574610024690628" tx="-0.37735623121261597" ty="0.14367088675498962" tz="0.9148556590080261" bx="-0.2569844126701355" by="0.9328474998474121" bz="-0.2524963319301605" />
<vert id="29" uvx="0.7727274894714355" uvy="0.2361910045146942" tx="-0.5877830386161804" ty="2.2363078500120537e-08" tz="0.809018611907959" bx="-0.15176790952682495" by="0.9822465181350708" bz="-0.11026523262262344" />
<vert id="20" uvx="0.7272729873657227" uvy="0.1574610024690628" tx="-0.37735629081726074" ty="0.14367088675498962" tz="0.9148557782173157" bx="-0.2569844424724579" by="0.9328476786613464" bz="-0.2524963617324829" />
<vert id="3" uvx="0.8181819915771484" uvy="0.1574610024690628" tx="-0.37735623121261597" ty="0.14367088675498962" tz="0.9148556590080261" bx="-0.2569844126701355" by="0.9328474998474121" bz="-0.2524963319301605" />
<vert id="29" uvx="0.7727274894714355" uvy="0.2361910045146942" tx="-0.37735623121261597" ty="0.14367088675498962" tz="0.9148556590080261" bx="-0.2569844126701355" by="0.9328474998474121" bz="-0.2524963319301605" />
<vert id="26" uvx="0.8636364936828613" uvy="0.2361910045146942" tx="0.58778315782547" ty="-7.487969355679525e-09" tz="0.8090183734893799" bx="0.10163479298353195" by="0.9920773506164551" bz="-0.07384160161018372" />
<vert id="27" uvx="0.9545454978942871" uvy="0.2361910045146942" tx="0.5877832174301147" ty="-7.487970243857944e-09" tz="0.8090184330940247" bx="0.10163480043411255" by="0.9920774698257446" bz="-0.07384160906076431" />
<vert id="29" uvx="0.7727274894714355" uvy="0.2361910045146942" tx="-0.37735626101493835" ty="0.14367088675498962" tz="0.9148557186126709" bx="-0.2569844126701355" by="0.9328476190567017" bz="-0.2524963319301605" />
<vert id="26" uvx="0.8636364936828613" uvy="0.2361910045146942" tx="0.5877832770347595" ty="-7.487971132036364e-09" tz="0.8090184926986694" bx="0.10163481533527374" by="0.9920775890350342" bz="-0.07384161651134491" />
<vert id="27" uvx="0.9545454978942871" uvy="0.2361910045146942" tx="0.5877832770347595" ty="-7.487970243857944e-09" tz="0.8090184926986694" bx="0.10163481533527374" by="0.9920775890350342" bz="-0.07384161651134491" />
<vert id="7" uvx="0.9090909957885742" uvy="0.31492099165916443" tx="0.5877832174301147" ty="-7.487970243857944e-09" tz="0.8090184330940247" bx="0.10163480043411255" by="0.9920774698257446" bz="-0.07384160906076431" />
<vert id="26" uvx="0.8636364936828613" uvy="0.2361910045146942" tx="0.5877830386161804" ty="-2.236307317105002e-08" tz="0.809018611907959" bx="-0.15176787972450256" by="0.9822465181350708" bz="0.11026520282030106" />
<vert id="26" uvx="0.8636364936828613" uvy="0.2361910045146942" tx="0.5877830982208252" ty="-2.2363078500120537e-08" tz="0.8090186715126038" bx="-0.15176787972450256" by="0.9822466373443604" bz="0.11026521772146225" />
<vert id="18" uvx="0.9090909957885742" uvy="0.1574610024690628" tx="0.5877830386161804" ty="-2.2363074947406858e-08" tz="0.809018611907959" bx="-0.15176787972450256" by="0.9822465181350708" bz="0.11026520282030106" />
<vert id="27" uvx="0.9545454978942871" uvy="0.2361910045146942" tx="0.5877830386161804" ty="-2.2363074947406858e-08" tz="0.809018611907959" bx="-0.15176787972450256" by="0.9822465181350708" bz="0.11026520282030106" />
<vert id="18" uvx="0.9090909957885742" uvy="0.1574610024690628" tx="0.7534744143486023" ty="0.14366166293621063" tz="0.641589879989624" bx="-0.31954479217529297" by="0.9328480362892151" bz="0.16639026999473572" />
<vert id="27" uvx="0.9545454978942871" uvy="0.2361910045146942" tx="0.5877830386161804" ty="-2.236307317105002e-08" tz="0.8090185523033142" bx="-0.15176786482334137" by="0.982246458530426" bz="0.11026520282030106" />
<vert id="18" uvx="0.9090909957885742" uvy="0.1574610024690628" tx="0.7534744739532471" ty="0.14366166293621063" tz="0.6415898203849792" bx="-0.3195447623729706" by="0.9328479766845703" bz="0.1663902997970581" />
<vert id="2" uvx="1.0" uvy="0.1574610024690628" tx="0.7534744739532471" ty="0.14366166293621063" tz="0.641589879989624" bx="-0.31954479217529297" by="0.9328480362892151" bz="0.1663902997970581" />
<vert id="27" uvx="0.9545454978942871" uvy="0.2361910045146942" tx="0.7534744739532471" ty="0.14366166293621063" tz="0.6415899395942688" bx="-0.31954482197761536" by="0.9328480958938599" bz="0.1663902997970581" />
<vert id="24" uvx="0.13636450469493866" uvy="0.2361910045146942" tx="0.9510564804077148" ty="3.7440286426715375e-09" tz="-0.309017151594162" bx="-0.03882144019007683" by="0.9920772910118103" bz="-0.11948002874851227" />
<vert id="25" uvx="0.22727349400520325" uvy="0.2361910045146942" tx="0.9510564804077148" ty="3.744028198582328e-09" tz="-0.3090171217918396" bx="-0.03882143646478653" by="0.9920772910118103" bz="-0.11948002874851227" />
<vert id="6" uvx="0.18181900680065155" uvy="0.31492099165916443" tx="0.9510564804077148" ty="3.7440286426715375e-09" tz="-0.309017151594162" bx="-0.03882144019007683" by="0.9920772910118103" bz="-0.11948002874851227" />
<vert id="27" uvx="0.9545454978942871" uvy="0.2361910045146942" tx="0.7534744739532471" ty="0.14366166293621063" tz="0.6415898203849792" bx="-0.3195447623729706" by="0.9328479766845703" bz="0.1663902997970581" />
<vert id="24" uvx="0.13636450469493866" uvy="0.2361910045146942" tx="0.9510564804077148" ty="3.744028198582328e-09" tz="-0.3090171217918396" bx="-0.03882143646478653" by="0.9920772910118103" bz="-0.11948002874851227" />
<vert id="25" uvx="0.22727349400520325" uvy="0.2361910045146942" tx="0.9510564208030701" ty="3.744028198582328e-09" tz="-0.3090171217918396" bx="-0.03882143646478653" by="0.9920772910118103" bz="-0.11948002129793167" />
<vert id="6" uvx="0.18181900680065155" uvy="0.31492099165916443" tx="0.9510564208030701" ty="3.744028198582328e-09" tz="-0.3090170919895172" bx="-0.03882143273949623" by="0.9920772910118103" bz="-0.11948002129793167" />
<vert id="24" uvx="0.13636450469493866" uvy="0.2361910045146942" tx="0.9510564208030701" ty="0.0" tz="-0.309017151594162" bx="0.057970788329839706" by="0.9822460412979126" bz="0.17841564118862152" />
<vert id="14" uvx="0.18181899189949036" uvy="0.1574610024690628" tx="0.9510564208030701" ty="0.0" tz="-0.309017151594162" bx="0.057970788329839706" by="0.9822460412979126" bz="0.17841564118862152" />
<vert id="25" uvx="0.22727349400520325" uvy="0.2361910045146942" tx="0.9510564208030701" ty="0.0" tz="-0.3090171217918396" bx="0.05797078460454941" by="0.9822460412979126" bz="0.17841564118862152" />
<vert id="14" uvx="0.18181899189949036" uvy="0.1574610024690628" tx="0.8430234789848328" ty="0.1436663269996643" tz="-0.5183353424072266" bx="0.05949816852807999" by="0.9328476190567017" bz="0.35532429814338684" />
<vert id="1" uvx="0.27272799611091614" uvy="0.1574610024690628" tx="0.8430234789848328" ty="0.1436663419008255" tz="-0.5183352828025818" bx="0.0594981387257576" by="0.9328476190567017" bz="0.35532432794570923" />
<vert id="25" uvx="0.22727349400520325" uvy="0.2361910045146942" tx="0.8430233597755432" ty="0.1436663269996643" tz="-0.5183352828025818" bx="0.05949815362691879" by="0.9328474998474121" bz="0.35532426834106445" />
<vert id="22" uvx="0.31818249821662903" uvy="0.2361910045146942" tx="0.0" ty="0.0" tz="-0.9999999403953552" bx="-0.1256283074617386" by="0.9920773506164551" bz="-0.0" />
<vert id="23" uvx="0.4090915024280548" uvy="0.2361910045146942" tx="0.0" ty="0.0" tz="-0.9999999403953552" bx="-0.1256283074617386" by="0.9920773506164551" bz="-0.0" />
<vert id="14" uvx="0.18181899189949036" uvy="0.1574610024690628" tx="0.8430234789848328" ty="0.1436663269996643" tz="-0.5183352828025818" bx="0.05949815362691879" by="0.9328476190567017" bz="0.35532429814338684" />
<vert id="1" uvx="0.27272799611091614" uvy="0.1574610024690628" tx="0.8430234789848328" ty="0.1436663269996643" tz="-0.5183353424072266" bx="0.05949816852807999" by="0.9328476190567017" bz="0.35532429814338684" />
<vert id="25" uvx="0.22727349400520325" uvy="0.2361910045146942" tx="0.8430234789848328" ty="0.1436663419008255" tz="-0.5183352828025818" bx="0.0594981387257576" by="0.9328476190567017" bz="0.35532432794570923" />
<vert id="22" uvx="0.31818249821662903" uvy="0.2361910045146942" tx="0.0" ty="0.0" tz="-1.0" bx="-0.12562832236289978" by="0.9920774102210999" bz="-0.0" />
<vert id="23" uvx="0.4090915024280548" uvy="0.2361910045146942" tx="0.0" ty="0.0" tz="-1.0" bx="-0.12562832236289978" by="0.9920774102210999" bz="-0.0" />
<vert id="10" uvx="0.3636370003223419" uvy="0.31492099165916443" tx="0.0" ty="0.0" tz="-1.0" bx="-0.12562832236289978" by="0.9920774102210999" bz="-0.0" />
<vert id="22" uvx="0.31818249821662903" uvy="0.2361910045146942" tx="0.0" ty="0.0" tz="-1.0" bx="0.18759854137897491" by="0.9822458028793335" bz="0.0" />
<vert id="15" uvx="0.3636370003223419" uvy="0.1574610024690628" tx="0.0" ty="0.0" tz="-1.0" bx="0.18759854137897491" by="0.9822458028793335" bz="0.0" />
<vert id="23" uvx="0.4090915024280548" uvy="0.2361910045146942" tx="0.0" ty="0.0" tz="-1.0" bx="0.18759854137897491" by="0.9822458028793335" bz="0.0" />
<vert id="15" uvx="0.3636370003223419" uvy="0.1574610024690628" tx="-0.23245076835155487" ty="0.14366433024406433" tz="-0.9619393348693848" bx="0.3563164174556732" by="0.9328486919403076" bz="0.05321652442216873" />
<vert id="5" uvx="0.4545460045337677" uvy="0.1574610024690628" tx="-0.23245078325271606" ty="0.14366433024406433" tz="-0.9619393944740295" bx="0.3563164174556732" by="0.9328487515449524" bz="0.053216516971588135" />
<vert id="23" uvx="0.4090915024280548" uvy="0.2361910045146942" tx="-0.23245075345039368" ty="0.14366433024406433" tz="-0.96193927526474" bx="0.35631638765335083" by="0.9328486323356628" bz="0.05321652442216873" />
<vert id="16" uvx="0.5000004768371582" uvy="0.0787305012345314" tx="-0.8430233001708984" ty="-0.14366647601127625" tz="-0.5183354020118713" bx="0.2592066824436188" by="0.7358769178390503" bz="-0.6255372762680054" />
<vert id="21" uvx="0.5454549789428711" uvy="0.1574610024690628" tx="-0.8430233597755432" ty="-0.14366649091243744" tz="-0.5183354020118713" bx="0.2592066824436188" by="0.7358769774436951" bz="-0.6255373358726501" />
<vert id="5" uvx="0.4545460045337677" uvy="0.1574610024690628" tx="-0.8430233597755432" ty="-0.14366649091243744" tz="-0.5183354020118713" bx="0.2592066824436188" by="0.7358769774436951" bz="-0.6255373358726501" />
<vert id="16" uvx="0.5000004768371582" uvy="0.0787305012345314" tx="-0.9510549902915955" ty="-3.43467348784543e-07" tz="-0.30902156233787537" bx="0.24556617438793182" by="0.6070578098297119" bz="-0.7557632327079773" />
<vert id="19" uvx="0.590909481048584" uvy="0.0787305012345314" tx="-0.9510549902915955" ty="-3.43467348784543e-07" tz="-0.30902156233787537" bx="0.24556617438793182" by="0.6070578098297119" bz="-0.7557632327079773" />
<vert id="21" uvx="0.5454549789428711" uvy="0.1574610024690628" tx="-0.9510549902915955" ty="-3.43467348784543e-07" tz="-0.30902156233787537" bx="0.24556617438793182" by="0.6070578098297119" bz="-0.7557632327079773" />
<vert id="19" uvx="0.590909481048584" uvy="0.0787305012345314" tx="-0.9866893291473389" ty="0.1436658501625061" tz="-0.07618498057126999" bx="0.15798549354076385" by="0.7358769774436951" bz="-0.6584265232086182" />
<vert id="4" uvx="0.6363639831542969" uvy="0.1574610024690628" tx="-0.9866893887519836" ty="0.1436658501625061" tz="-0.07618498802185059" bx="0.15798549354076385" by="0.7358769774436951" bz="-0.6584265828132629" />
<vert id="21" uvx="0.5454549789428711" uvy="0.1574610024690628" tx="-0.9866894483566284" ty="0.1436658501625061" tz="-0.07618498802185059" bx="0.15798549354076385" by="0.7358770370483398" bz="-0.6584265828132629" />
<vert id="15" uvx="0.3636370003223419" uvy="0.1574610024690628" tx="-0.23245075345039368" ty="0.14366433024406433" tz="-0.96193927526474" bx="0.35631638765335083" by="0.9328486323356628" bz="0.05321652442216873" />
<vert id="5" uvx="0.4545460045337677" uvy="0.1574610024690628" tx="-0.23245075345039368" ty="0.14366433024406433" tz="-0.96193927526474" bx="0.35631638765335083" by="0.9328486323356628" bz="0.05321652442216873" />
<vert id="23" uvx="0.4090915024280548" uvy="0.2361910045146942" tx="-0.23245075345039368" ty="0.14366431534290314" tz="-0.96193927526474" bx="0.35631638765335083" by="0.9328486323356628" bz="0.05321650952100754" />
<vert id="16" uvx="0.5000004768371582" uvy="0.0787305012345314" tx="-0.8430233597755432" ty="-0.14366649091243744" tz="-0.5183354020118713" bx="0.2592066824436188" by="0.7358769774436951" bz="-0.6255373358726501" />
<vert id="21" uvx="0.5454549789428711" uvy="0.1574610024690628" tx="-0.8430233597755432" ty="-0.14366649091243744" tz="-0.5183354616165161" bx="0.25920674204826355" by="0.7358769774436951" bz="-0.6255373358726501" />
<vert id="5" uvx="0.4545460045337677" uvy="0.1574610024690628" tx="-0.843023419380188" ty="-0.14366650581359863" tz="-0.5183354616165161" bx="0.25920671224594116" by="0.7358770370483398" bz="-0.6255373954772949" />
<vert id="16" uvx="0.5000004768371582" uvy="0.0787305012345314" tx="-0.9510550498962402" ty="-3.43467348784543e-07" tz="-0.30902156233787537" bx="0.24556617438793182" by="0.6070578694343567" bz="-0.7557632923126221" />
<vert id="19" uvx="0.590909481048584" uvy="0.0787305012345314" tx="-0.9510550498962402" ty="-3.43467348784543e-07" tz="-0.30902156233787537" bx="0.24556617438793182" by="0.6070578694343567" bz="-0.7557632923126221" />
<vert id="21" uvx="0.5454549789428711" uvy="0.1574610024690628" tx="-0.9510550498962402" ty="-3.434673772062524e-07" tz="-0.30902159214019775" bx="0.24556618928909302" by="0.6070578694343567" bz="-0.7557632923126221" />
<vert id="19" uvx="0.590909481048584" uvy="0.0787305012345314" tx="-0.9866894483566284" ty="0.1436658501625061" tz="-0.07618498802185059" bx="0.15798549354076385" by="0.7358770370483398" bz="-0.6584265828132629" />
<vert id="4" uvx="0.6363639831542969" uvy="0.1574610024690628" tx="-0.9866894483566284" ty="0.1436658501625061" tz="-0.07618499547243118" bx="0.15798550844192505" by="0.7358770370483398" bz="-0.6584265828132629" />
<vert id="21" uvx="0.5454549789428711" uvy="0.1574610024690628" tx="-0.9866893887519836" ty="0.1436658501625061" tz="-0.07618498802185059" bx="0.15798549354076385" by="0.7358769774436951" bz="-0.6584265828132629" />
<vert id="19" uvx="0.6818184852600098" uvy="0.0787305012345314" tx="-0.7534745335578918" ty="-0.143661767244339" tz="0.6415897607803345" bx="-0.5148196816444397" by="0.7358779311180115" bz="-0.43982306122779846" />
<vert id="20" uvx="0.7272729873657227" uvy="0.1574610024690628" tx="-0.7534745335578918" ty="-0.1436617523431778" tz="0.6415897011756897" bx="-0.5148196220397949" by="0.7358778715133667" bz="-0.43982309103012085" />
<vert id="20" uvx="0.7272729873657227" uvy="0.1574610024690628" tx="-0.7534745931625366" ty="-0.143661767244339" tz="0.6415897607803345" bx="-0.5148196816444397" by="0.7358779907226562" bz="-0.43982312083244324" />
<vert id="4" uvx="0.6363639831542969" uvy="0.1574610024690628" tx="-0.7534745931625366" ty="-0.143661767244339" tz="0.6415897607803345" bx="-0.5148196816444397" by="0.7358779907226562" bz="-0.43982312083244324" />
<vert id="19" uvx="0.6818184852600098" uvy="0.0787305012345314" tx="-0.587791919708252" ty="4.595216523739509e-06" tz="0.8090121746063232" bx="-0.6428858041763306" by="0.6070581674575806" bz="-0.46709543466567993" />
<vert id="17" uvx="0.7727274894714355" uvy="0.0787305012345314" tx="-0.5877918601036072" ty="4.595216068992158e-06" tz="0.8090121150016785" bx="-0.6428857445716858" by="0.6070581078529358" bz="-0.46709537506103516" />
<vert id="20" uvx="0.7272729873657227" uvy="0.1574610024690628" tx="-0.587791919708252" ty="4.595216068992158e-06" tz="0.8090121150016785" bx="-0.6428857445716858" by="0.6070581078529358" bz="-0.46709543466567993" />
<vert id="17" uvx="0.7727274894714355" uvy="0.0787305012345314" tx="-0.3773562014102936" ty="0.14367082715034485" tz="0.9148556590080261" bx="-0.5773779153823853" by="0.7358788847923279" bz="-0.3537185788154602" />
<vert id="3" uvx="0.8181819915771484" uvy="0.1574610024690628" tx="-0.37735623121261597" ty="0.14367084205150604" tz="0.9148556590080261" bx="-0.5773779153823853" by="0.7358788847923279" bz="-0.3537186086177826" />
<vert id="20" uvx="0.7272729873657227" uvy="0.1574610024690628" tx="-0.37735623121261597" ty="0.14367084205150604" tz="0.9148557186126709" bx="-0.57737797498703" by="0.7358789443969727" bz="-0.3537186086177826" />
<vert id="17" uvx="0.8636364936828613" uvy="0.0787305012345314" tx="0.3773562014102936" ty="-0.14367082715034485" tz="0.9148556590080261" bx="-0.5773779153823853" by="0.7358788847923279" bz="0.3537185788154602" />
<vert id="18" uvx="0.9090909957885742" uvy="0.1574610024690628" tx="0.37735623121261597" ty="-0.14367084205150604" tz="0.9148557186126709" bx="-0.57737797498703" by="0.7358789443969727" bz="0.3537186086177826" />
<vert id="3" uvx="0.8181819915771484" uvy="0.1574610024690628" tx="0.37735623121261597" ty="-0.14367084205150604" tz="0.9148556590080261" bx="-0.5773779153823853" by="0.7358788847923279" bz="0.3537186086177826" />
<vert id="17" uvx="0.7727274894714355" uvy="0.0787305012345314" tx="-0.587791919708252" ty="4.595216068992158e-06" tz="0.8090121746063232" bx="-0.6428858041763306" by="0.6070581674575806" bz="-0.46709543466567993" />
<vert id="20" uvx="0.7272729873657227" uvy="0.1574610024690628" tx="-0.587791919708252" ty="4.595216523739509e-06" tz="0.8090121746063232" bx="-0.6428858041763306" by="0.6070581674575806" bz="-0.46709543466567993" />
<vert id="17" uvx="0.7727274894714355" uvy="0.0787305012345314" tx="-0.3773562014102936" ty="0.14367084205150604" tz="0.9148556590080261" bx="-0.5773779153823853" by="0.7358788847923279" bz="-0.3537186086177826" />
<vert id="3" uvx="0.8181819915771484" uvy="0.1574610024690628" tx="-0.37735623121261597" ty="0.14367085695266724" tz="0.9148557186126709" bx="-0.57737797498703" by="0.7358789443969727" bz="-0.353718638420105" />
<vert id="20" uvx="0.7272729873657227" uvy="0.1574610024690628" tx="-0.37735623121261597" ty="0.14367084205150604" tz="0.9148556590080261" bx="-0.5773779153823853" by="0.7358788847923279" bz="-0.3537186086177826" />
<vert id="17" uvx="0.8636364936828613" uvy="0.0787305012345314" tx="0.3773562014102936" ty="-0.14367084205150604" tz="0.9148556590080261" bx="-0.5773779153823853" by="0.7358788847923279" bz="0.3537186086177826" />
<vert id="18" uvx="0.9090909957885742" uvy="0.1574610024690628" tx="0.37735623121261597" ty="-0.14367084205150604" tz="0.9148556590080261" bx="-0.5773779153823853" by="0.7358788847923279" bz="0.3537186086177826" />
<vert id="3" uvx="0.8181819915771484" uvy="0.1574610024690628" tx="0.37735623121261597" ty="-0.14367085695266724" tz="0.9148557186126709" bx="-0.57737797498703" by="0.7358789443969727" bz="0.353718638420105" />
<vert id="17" uvx="0.8636364936828613" uvy="0.0787305012345314" tx="0.587791919708252" ty="-4.571532826957991e-06" tz="0.8090121150016785" bx="-0.6428859233856201" by="0.6070581674575806" bz="0.4670954644680023" />
<vert id="12" uvx="0.9545454978942871" uvy="0.0787305012345314" tx="0.587791919708252" ty="-4.571532826957991e-06" tz="0.8090121150016785" bx="-0.6428859233856201" by="0.6070581674575806" bz="0.4670954644680023" />
<vert id="18" uvx="0.9090909957885742" uvy="0.1574610024690628" tx="0.5877919793128967" ty="-4.571532826957991e-06" tz="0.8090121150016785" bx="-0.6428859233856201" by="0.6070581674575806" bz="0.4670955240726471" />
<vert id="12" uvx="0.9545454978942871" uvy="0.0787305012345314" tx="0.5877919793128967" ty="-4.571533281705342e-06" tz="0.8090121746063232" bx="-0.6428859829902649" by="0.6070581674575806" bz="0.4670955240726471" />
<vert id="18" uvx="0.9090909957885742" uvy="0.1574610024690628" tx="0.5877918601036072" ty="-4.571532826957991e-06" tz="0.8090120553970337" bx="-0.6428858637809753" by="0.6070581078529358" bz="0.46709543466567993" />
<vert id="12" uvx="0.9545454978942871" uvy="0.0787305012345314" tx="0.7534745335578918" ty="0.143661767244339" tz="0.6415897607803345" bx="-0.5148196816444397" by="0.7358779311180115" bz="0.43982306122779846" />
<vert id="2" uvx="1.0" uvy="0.1574610024690628" tx="0.7534745931625366" ty="0.143661767244339" tz="0.6415897607803345" bx="-0.5148196816444397" by="0.7358779907226562" bz="0.43982312083244324" />
<vert id="18" uvx="0.9090909957885742" uvy="0.1574610024690628" tx="0.7534745335578918" ty="0.1436617523431778" tz="0.6415897011756897" bx="-0.5148196220397949" by="0.7358778715133667" bz="0.43982309103012085" />
<vert id="15" uvx="0.3636370003223419" uvy="0.1574610024690628" tx="-0.23245100677013397" ty="0.14366449415683746" tz="-0.9619392156600952" bx="0.6750208139419556" by="0.7358770966529846" bz="-0.053215257823467255" />
<vert id="16" uvx="0.4090915024280548" uvy="0.0787305012345314" tx="-0.23245100677013397" ty="0.14366447925567627" tz="-0.9619392156600952" bx="0.6750208139419556" by="0.7358770966529846" bz="-0.05321526527404785" />
<vert id="5" uvx="0.4545460045337677" uvy="0.1574610024690628" tx="-0.23245100677013397" ty="0.14366447925567627" tz="-0.9619392156600952" bx="0.6750208139419556" by="0.7358770966529846" bz="-0.05321526527404785" />
<vert id="18" uvx="0.9090909957885742" uvy="0.1574610024690628" tx="0.7534745931625366" ty="0.143661767244339" tz="0.6415897607803345" bx="-0.5148196816444397" by="0.7358779907226562" bz="0.43982312083244324" />
<vert id="15" uvx="0.3636370003223419" uvy="0.1574610024690628" tx="-0.23245102167129517" ty="0.14366449415683746" tz="-0.96193927526474" bx="0.6750208139419556" by="0.7358771562576294" bz="-0.05321527272462845" />
<vert id="16" uvx="0.4090915024280548" uvy="0.0787305012345314" tx="-0.23245102167129517" ty="0.14366449415683746" tz="-0.9619392156600952" bx="0.6750208139419556" by="0.7358771562576294" bz="-0.05321527272462845" />
<vert id="5" uvx="0.4545460045337677" uvy="0.1574610024690628" tx="-0.23245099186897278" ty="0.14366447925567627" tz="-0.9619391560554504" bx="0.6750207543373108" by="0.7358770966529846" bz="-0.05321525037288666" />
<vert id="15" uvx="0.3636370003223419" uvy="0.1574610024690628" tx="0.0" ty="0.0" tz="-1.0" bx="0.7946555614471436" by="0.6070605516433716" bz="0.0" />
<vert id="13" uvx="0.31818249821662903" uvy="0.0787305012345314" tx="0.0" ty="0.0" tz="-1.0" bx="0.7946555614471436" by="0.6070605516433716" bz="0.0" />
<vert id="16" uvx="0.4090915024280548" uvy="0.0787305012345314" tx="0.0" ty="0.0" tz="-1.0" bx="0.7946555614471436" by="0.6070605516433716" bz="0.0" />
<vert id="13" uvx="0.31818249821662903" uvy="0.0787305012345314" tx="0.0" ty="0.0" tz="-1.0" bx="0.9435237646102905" by="0.33130449056625366" bz="0.0" />
<vert id="0" uvx="0.3636370003223419" uvy="0.0" tx="0.0" ty="0.0" tz="-1.0" bx="0.9435237646102905" by="0.33130449056625366" bz="0.0" />
<vert id="16" uvx="0.4090915024280548" uvy="0.0787305012345314" tx="0.0" ty="0.0" tz="-1.0" bx="0.9435237646102905" by="0.33130449056625366" bz="0.0" />
<vert id="12" uvx="0.13636450469493866" uvy="0.0787305012345314" tx="0.9866893291473389" ty="-0.1436658501625061" tz="-0.07618498057126999" bx="0.15798549354076385" by="0.7358769774436951" bz="0.6584265232086182" />
<vert id="14" uvx="0.18181899189949036" uvy="0.1574610024690628" tx="0.9866894483566284" ty="-0.1436658501625061" tz="-0.07618498802185059" bx="0.15798549354076385" by="0.7358770370483398" bz="0.6584265828132629" />
<vert id="2" uvx="0.09091000258922577" uvy="0.1574610024690628" tx="0.9866893887519836" ty="-0.1436658501625061" tz="-0.07618498802185059" bx="0.15798549354076385" by="0.7358769774436951" bz="0.6584265828132629" />
<vert id="12" uvx="0.13636450469493866" uvy="0.0787305012345314" tx="0.9510549902915955" ty="3.43467348784543e-07" tz="-0.30902156233787537" bx="0.24556617438793182" by="0.6070578098297119" bz="0.7557632327079773" />
<vert id="13" uvx="0.22727349400520325" uvy="0.0787305012345314" tx="0.9510549902915955" ty="3.43467348784543e-07" tz="-0.30902156233787537" bx="0.24556617438793182" by="0.6070578098297119" bz="0.7557632327079773" />
<vert id="14" uvx="0.18181899189949036" uvy="0.1574610024690628" tx="0.9510549902915955" ty="3.43467348784543e-07" tz="-0.30902156233787537" bx="0.24556617438793182" by="0.6070578098297119" bz="0.7557632327079773" />
<vert id="13" uvx="0.22727349400520325" uvy="0.0787305012345314" tx="0.8430233001708984" ty="0.14366647601127625" tz="-0.5183354020118713" bx="0.2592066824436188" by="0.7358769178390503" bz="0.6255372762680054" />
<vert id="1" uvx="0.27272799611091614" uvy="0.1574610024690628" tx="0.8430233597755432" ty="0.14366649091243744" tz="-0.5183354020118713" bx="0.2592066824436188" by="0.7358769774436951" bz="0.6255373358726501" />
<vert id="14" uvx="0.18181899189949036" uvy="0.1574610024690628" tx="0.8430233597755432" ty="0.14366649091243744" tz="-0.5183354020118713" bx="0.2592066824436188" by="0.7358769774436951" bz="0.6255373358726501" />
<vert id="12" uvx="0.13636450469493866" uvy="0.0787305012345314" tx="0.9866894483566284" ty="-0.1436658501625061" tz="-0.07618498802185059" bx="0.15798549354076385" by="0.7358770370483398" bz="0.6584265828132629" />
<vert id="14" uvx="0.18181899189949036" uvy="0.1574610024690628" tx="0.9866893887519836" ty="-0.1436658501625061" tz="-0.07618498802185059" bx="0.15798549354076385" by="0.7358769774436951" bz="0.6584265828132629" />
<vert id="2" uvx="0.09091000258922577" uvy="0.1574610024690628" tx="0.9866894483566284" ty="-0.1436658501625061" tz="-0.07618499547243118" bx="0.15798550844192505" by="0.7358770370483398" bz="0.6584265828132629" />
<vert id="12" uvx="0.13636450469493866" uvy="0.0787305012345314" tx="0.9510550498962402" ty="3.43467348784543e-07" tz="-0.30902156233787537" bx="0.24556617438793182" by="0.6070578694343567" bz="0.7557632923126221" />
<vert id="13" uvx="0.22727349400520325" uvy="0.0787305012345314" tx="0.9510550498962402" ty="3.43467348784543e-07" tz="-0.30902156233787537" bx="0.24556617438793182" by="0.6070578694343567" bz="0.7557632923126221" />
<vert id="14" uvx="0.18181899189949036" uvy="0.1574610024690628" tx="0.9510550498962402" ty="3.434673772062524e-07" tz="-0.30902159214019775" bx="0.24556618928909302" by="0.6070578694343567" bz="0.7557632923126221" />
<vert id="13" uvx="0.22727349400520325" uvy="0.0787305012345314" tx="0.8430233597755432" ty="0.14366649091243744" tz="-0.5183354020118713" bx="0.2592066824436188" by="0.7358769774436951" bz="0.6255373358726501" />
<vert id="1" uvx="0.27272799611091614" uvy="0.1574610024690628" tx="0.843023419380188" ty="0.14366650581359863" tz="-0.5183354616165161" bx="0.25920671224594116" by="0.7358770370483398" bz="0.6255373954772949" />
<vert id="14" uvx="0.18181899189949036" uvy="0.1574610024690628" tx="0.8430233597755432" ty="0.14366649091243744" tz="-0.5183354616165161" bx="0.25920674204826355" by="0.7358769774436951" bz="0.6255373358726501" />
</mesh>
</node>
</model>
+13
View File
@@ -151,6 +151,19 @@ def export(node, parentTag):
nodeTag = ET.SubElement(parentTag, 'node')
nodeTag.set('name', node.name)
nodeTag.set('px', str(node.location[0]))
nodeTag.set('py', str(node.location[2]))
nodeTag.set('pz', str(-node.location[1]))
nodeTag.set('rw', str(node.rotation_quaternion[0]))
nodeTag.set('rx', str(node.rotation_quaternion[1]))
nodeTag.set('ry', str(node.rotation_quaternion[2]))
nodeTag.set('rz', str(node.rotation_quaternion[3]))
nodeTag.set('sx', str(node.scale[0]))
nodeTag.set('sy', str(node.scale[1]))
nodeTag.set('sz', str(node.scale[2]))
if node.type == 'MESH':
mesh = node.data
numFaces = len(mesh.polygons)
+1
View File
@@ -28,6 +28,7 @@ namespace vb01{
void update();
void setText(std::wstring);
inline void setScale(float s){this->scale = s;}
inline float getScale(){return scale;}
inline int getLength(){return entry.length();}
inline std::wstring getText(){return entry;}
inline bool isHorizontal(){return horizontal;}
+6 -2
View File
@@ -276,8 +276,12 @@ namespace vb01{
((Bone*)node)->setIkChainLength(ikChainLength);
}
}
else
node = new Node(Vector3::VEC_ZERO, Quaternion::QUAT_W, Vector3::VEC_IJK, name);
else{
Vector3 pos = Vector3(atof(xmlEl->Attribute("px")), atof(xmlEl->Attribute("py")), atof(xmlEl->Attribute("pz")));
Quaternion rot = Quaternion(atof(xmlEl->Attribute("rw")), atof(xmlEl->Attribute("rx")), atof(xmlEl->Attribute("ry")), atof(xmlEl->Attribute("rz")));
Vector3 scale = Vector3(atof(xmlEl->Attribute("sx")), atof(xmlEl->Attribute("sy")), atof(xmlEl->Attribute("sz")));
node = new Node(pos, rot, scale, name);
}
XMLElement *skeletonTag = xmlEl->FirstChildElement("skeleton");