From dce3e67b7384fd6c661ee052af3084a300778a4f Mon Sep 17 00:00:00 2001 From: kaetemi Date: Fri, 24 Aug 2012 13:49:12 +0200 Subject: [PATCH] Added: #1440 Parse references --HG-- branch : build_pipeline_v3 --- .../tools/pipeline/max/builtin/animatable.cpp | 2 +- .../tools/pipeline/max/builtin/animatable.h | 3 +- .../pipeline/max/builtin/base_object.cpp | 2 +- .../tools/pipeline/max/builtin/base_object.h | 2 +- .../tools/pipeline/max/builtin/bitmap_tex.cpp | 2 +- .../tools/pipeline/max/builtin/bitmap_tex.h | 2 +- .../nel/tools/pipeline/max/builtin/i_node.cpp | 2 +- code/nel/tools/pipeline/max/builtin/i_node.h | 2 +- .../tools/pipeline/max/builtin/modifier.cpp | 2 +- .../nel/tools/pipeline/max/builtin/modifier.h | 2 +- code/nel/tools/pipeline/max/builtin/mtl.cpp | 2 +- code/nel/tools/pipeline/max/builtin/mtl.h | 2 +- .../tools/pipeline/max/builtin/mtl_base.cpp | 2 +- .../nel/tools/pipeline/max/builtin/mtl_base.h | 2 +- .../tools/pipeline/max/builtin/node_impl.cpp | 2 +- .../tools/pipeline/max/builtin/node_impl.h | 2 +- .../nel/tools/pipeline/max/builtin/object.cpp | 2 +- code/nel/tools/pipeline/max/builtin/object.h | 2 +- .../pipeline/max/builtin/param_block.cpp | 2 +- .../tools/pipeline/max/builtin/param_block.h | 2 +- .../pipeline/max/builtin/param_block_2.cpp | 2 +- .../pipeline/max/builtin/param_block_2.h | 2 +- .../pipeline/max/builtin/patch_object.cpp | 2 +- .../tools/pipeline/max/builtin/patch_object.h | 2 +- .../pipeline/max/builtin/poly_object.cpp | 2 +- .../tools/pipeline/max/builtin/poly_object.h | 2 +- .../pipeline/max/builtin/reference_maker.cpp | 144 +- .../pipeline/max/builtin/reference_maker.h | 17 +- .../pipeline/max/builtin/reference_target.cpp | 2 +- .../pipeline/max/builtin/reference_target.h | 2 +- .../tools/pipeline/max/builtin/std_mat.cpp | 2 +- code/nel/tools/pipeline/max/builtin/std_mat.h | 2 +- .../tools/pipeline/max/builtin/std_mat_2.cpp | 2 +- .../tools/pipeline/max/builtin/std_mat_2.h | 2 +- .../nel/tools/pipeline/max/builtin/texmap.cpp | 2 +- code/nel/tools/pipeline/max/builtin/texmap.h | 2 +- .../tools/pipeline/max/builtin/tri_object.cpp | 2 +- .../tools/pipeline/max/builtin/tri_object.h | 2 +- code/nel/tools/pipeline/max/scene.cpp | 28 + code/nel/tools/pipeline/max/scene.h | 16 +- code/nel/tools/pipeline/max/scene_class.cpp | 33 +- code/nel/tools/pipeline/max/scene_class.h | 20 +- code/nel/tools/pipeline/max_dump/main.cpp | 4 +- code/nel/tools/pipeline/max_dump/scene_2010.c | 11059 +++++++--------- 44 files changed, 5211 insertions(+), 6183 deletions(-) diff --git a/code/nel/tools/pipeline/max/builtin/animatable.cpp b/code/nel/tools/pipeline/max/builtin/animatable.cpp index af860395c..5fac3e450 100644 --- a/code/nel/tools/pipeline/max/builtin/animatable.cpp +++ b/code/nel/tools/pipeline/max/builtin/animatable.cpp @@ -43,7 +43,7 @@ namespace PIPELINE { namespace MAX { namespace BUILTIN { -CAnimatable::CAnimatable(CScene *scene) : CSceneClass(scene), m_AppData(NULL) +CAnimatable::CAnimatable(PIPELINE::MAX::CScene *scene) : CSceneClass(scene), m_AppData(NULL) { } diff --git a/code/nel/tools/pipeline/max/builtin/animatable.h b/code/nel/tools/pipeline/max/builtin/animatable.h index d31d2e59e..15c7879d3 100644 --- a/code/nel/tools/pipeline/max/builtin/animatable.h +++ b/code/nel/tools/pipeline/max/builtin/animatable.h @@ -34,6 +34,7 @@ // NeL includes // Project includes +#include "../scene.h" #include "../scene_class.h" #include "../super_class_desc.h" @@ -55,7 +56,7 @@ class CAppData; class CAnimatable : public CSceneClass { public: - CAnimatable(CScene *scene); + CAnimatable(PIPELINE::MAX::CScene *scene); virtual ~CAnimatable(); // class desc diff --git a/code/nel/tools/pipeline/max/builtin/base_object.cpp b/code/nel/tools/pipeline/max/builtin/base_object.cpp index 34f03479c..f84346795 100644 --- a/code/nel/tools/pipeline/max/builtin/base_object.cpp +++ b/code/nel/tools/pipeline/max/builtin/base_object.cpp @@ -42,7 +42,7 @@ namespace PIPELINE { namespace MAX { namespace BUILTIN { -CBaseObject::CBaseObject(CScene *scene) : CReferenceTarget(scene) +CBaseObject::CBaseObject(PIPELINE::MAX::CScene *scene) : CReferenceTarget(scene) { } diff --git a/code/nel/tools/pipeline/max/builtin/base_object.h b/code/nel/tools/pipeline/max/builtin/base_object.h index f959642ec..12c186714 100644 --- a/code/nel/tools/pipeline/max/builtin/base_object.h +++ b/code/nel/tools/pipeline/max/builtin/base_object.h @@ -49,7 +49,7 @@ namespace BUILTIN { class CBaseObject : public CReferenceTarget { public: - CBaseObject(CScene *scene); + CBaseObject(PIPELINE::MAX::CScene *scene); virtual ~CBaseObject(); }; /* class CBaseObject */ diff --git a/code/nel/tools/pipeline/max/builtin/bitmap_tex.cpp b/code/nel/tools/pipeline/max/builtin/bitmap_tex.cpp index 2a451279b..1cff5b8fa 100644 --- a/code/nel/tools/pipeline/max/builtin/bitmap_tex.cpp +++ b/code/nel/tools/pipeline/max/builtin/bitmap_tex.cpp @@ -42,7 +42,7 @@ namespace PIPELINE { namespace MAX { namespace BUILTIN { -CBitmapTex::CBitmapTex(CScene *scene) : CTexmap(scene) +CBitmapTex::CBitmapTex(PIPELINE::MAX::CScene *scene) : CTexmap(scene) { } diff --git a/code/nel/tools/pipeline/max/builtin/bitmap_tex.h b/code/nel/tools/pipeline/max/builtin/bitmap_tex.h index 559d46a3a..c9bde8985 100644 --- a/code/nel/tools/pipeline/max/builtin/bitmap_tex.h +++ b/code/nel/tools/pipeline/max/builtin/bitmap_tex.h @@ -49,7 +49,7 @@ namespace BUILTIN { class CBitmapTex : public CTexmap { public: - CBitmapTex(CScene *scene); + CBitmapTex(PIPELINE::MAX::CScene *scene); virtual ~CBitmapTex(); }; /* class CBitmapTex */ diff --git a/code/nel/tools/pipeline/max/builtin/i_node.cpp b/code/nel/tools/pipeline/max/builtin/i_node.cpp index 944fb8b56..13f330cc3 100644 --- a/code/nel/tools/pipeline/max/builtin/i_node.cpp +++ b/code/nel/tools/pipeline/max/builtin/i_node.cpp @@ -42,7 +42,7 @@ namespace PIPELINE { namespace MAX { namespace BUILTIN { -INode::INode(CScene *scene) : CReferenceTarget(scene) +INode::INode(PIPELINE::MAX::CScene *scene) : CReferenceTarget(scene) { } diff --git a/code/nel/tools/pipeline/max/builtin/i_node.h b/code/nel/tools/pipeline/max/builtin/i_node.h index fbf83adde..1b2b88394 100644 --- a/code/nel/tools/pipeline/max/builtin/i_node.h +++ b/code/nel/tools/pipeline/max/builtin/i_node.h @@ -49,7 +49,7 @@ namespace BUILTIN { class INode : public CReferenceTarget { public: - INode(CScene *scene); + INode(PIPELINE::MAX::CScene *scene); virtual ~INode(); // class desc diff --git a/code/nel/tools/pipeline/max/builtin/modifier.cpp b/code/nel/tools/pipeline/max/builtin/modifier.cpp index d21db02da..65f2ec4dc 100644 --- a/code/nel/tools/pipeline/max/builtin/modifier.cpp +++ b/code/nel/tools/pipeline/max/builtin/modifier.cpp @@ -42,7 +42,7 @@ namespace PIPELINE { namespace MAX { namespace BUILTIN { -CModifier::CModifier(CScene *scene) : CBaseObject(scene) +CModifier::CModifier(PIPELINE::MAX::CScene *scene) : CBaseObject(scene) { } diff --git a/code/nel/tools/pipeline/max/builtin/modifier.h b/code/nel/tools/pipeline/max/builtin/modifier.h index 4e7ab45b3..024eb4da5 100644 --- a/code/nel/tools/pipeline/max/builtin/modifier.h +++ b/code/nel/tools/pipeline/max/builtin/modifier.h @@ -49,7 +49,7 @@ namespace BUILTIN { class CModifier : public CBaseObject { public: - CModifier(CScene *scene); + CModifier(PIPELINE::MAX::CScene *scene); virtual ~CModifier(); }; /* class CModifier */ diff --git a/code/nel/tools/pipeline/max/builtin/mtl.cpp b/code/nel/tools/pipeline/max/builtin/mtl.cpp index 431b978f5..fb20973ab 100644 --- a/code/nel/tools/pipeline/max/builtin/mtl.cpp +++ b/code/nel/tools/pipeline/max/builtin/mtl.cpp @@ -42,7 +42,7 @@ namespace PIPELINE { namespace MAX { namespace BUILTIN { -CMtl::CMtl(CScene *scene) : CMtlBase(scene) +CMtl::CMtl(PIPELINE::MAX::CScene *scene) : CMtlBase(scene) { } diff --git a/code/nel/tools/pipeline/max/builtin/mtl.h b/code/nel/tools/pipeline/max/builtin/mtl.h index ec7e927fa..c75cc5ca0 100644 --- a/code/nel/tools/pipeline/max/builtin/mtl.h +++ b/code/nel/tools/pipeline/max/builtin/mtl.h @@ -49,7 +49,7 @@ namespace BUILTIN { class CMtl : public CMtlBase { public: - CMtl(CScene *scene); + CMtl(PIPELINE::MAX::CScene *scene); virtual ~CMtl(); }; /* class CMtl */ diff --git a/code/nel/tools/pipeline/max/builtin/mtl_base.cpp b/code/nel/tools/pipeline/max/builtin/mtl_base.cpp index 6cbb25319..7ff894ef9 100644 --- a/code/nel/tools/pipeline/max/builtin/mtl_base.cpp +++ b/code/nel/tools/pipeline/max/builtin/mtl_base.cpp @@ -42,7 +42,7 @@ namespace PIPELINE { namespace MAX { namespace BUILTIN { -CMtlBase::CMtlBase(CScene *scene) : CReferenceTarget(scene) +CMtlBase::CMtlBase(PIPELINE::MAX::CScene *scene) : CReferenceTarget(scene) { } diff --git a/code/nel/tools/pipeline/max/builtin/mtl_base.h b/code/nel/tools/pipeline/max/builtin/mtl_base.h index f5fd0e646..21a602b63 100644 --- a/code/nel/tools/pipeline/max/builtin/mtl_base.h +++ b/code/nel/tools/pipeline/max/builtin/mtl_base.h @@ -49,7 +49,7 @@ namespace BUILTIN { class CMtlBase : public CReferenceTarget { public: - CMtlBase(CScene *scene); + CMtlBase(PIPELINE::MAX::CScene *scene); virtual ~CMtlBase(); }; /* class CMtlBase */ diff --git a/code/nel/tools/pipeline/max/builtin/node_impl.cpp b/code/nel/tools/pipeline/max/builtin/node_impl.cpp index a16a65a08..a64b3e401 100644 --- a/code/nel/tools/pipeline/max/builtin/node_impl.cpp +++ b/code/nel/tools/pipeline/max/builtin/node_impl.cpp @@ -42,7 +42,7 @@ namespace PIPELINE { namespace MAX { namespace BUILTIN { -CNodeImpl::CNodeImpl(CScene *scene) : INode(scene) +CNodeImpl::CNodeImpl(PIPELINE::MAX::CScene *scene) : INode(scene) { } diff --git a/code/nel/tools/pipeline/max/builtin/node_impl.h b/code/nel/tools/pipeline/max/builtin/node_impl.h index bf7184f18..3ba43ac94 100644 --- a/code/nel/tools/pipeline/max/builtin/node_impl.h +++ b/code/nel/tools/pipeline/max/builtin/node_impl.h @@ -49,7 +49,7 @@ namespace BUILTIN { class CNodeImpl : public INode { public: - CNodeImpl(CScene *scene); + CNodeImpl(PIPELINE::MAX::CScene *scene); virtual ~CNodeImpl(); // class desc diff --git a/code/nel/tools/pipeline/max/builtin/object.cpp b/code/nel/tools/pipeline/max/builtin/object.cpp index 745b49888..4fa944a0d 100644 --- a/code/nel/tools/pipeline/max/builtin/object.cpp +++ b/code/nel/tools/pipeline/max/builtin/object.cpp @@ -42,7 +42,7 @@ namespace PIPELINE { namespace MAX { namespace BUILTIN { -CObject::CObject(CScene *scene) : CBaseObject(scene) +CObject::CObject(PIPELINE::MAX::CScene *scene) : CBaseObject(scene) { } diff --git a/code/nel/tools/pipeline/max/builtin/object.h b/code/nel/tools/pipeline/max/builtin/object.h index f2a6e4724..3830b4bca 100644 --- a/code/nel/tools/pipeline/max/builtin/object.h +++ b/code/nel/tools/pipeline/max/builtin/object.h @@ -49,7 +49,7 @@ namespace BUILTIN { class CObject : public CBaseObject { public: - CObject(CScene *scene); + CObject(PIPELINE::MAX::CScene *scene); virtual ~CObject(); }; /* class CObject */ diff --git a/code/nel/tools/pipeline/max/builtin/param_block.cpp b/code/nel/tools/pipeline/max/builtin/param_block.cpp index a6321f716..793c21048 100644 --- a/code/nel/tools/pipeline/max/builtin/param_block.cpp +++ b/code/nel/tools/pipeline/max/builtin/param_block.cpp @@ -42,7 +42,7 @@ namespace PIPELINE { namespace MAX { namespace BUILTIN { -CParamBlock::CParamBlock(CScene *scene) : CReferenceTarget(scene) +CParamBlock::CParamBlock(PIPELINE::MAX::CScene *scene) : CReferenceTarget(scene) { } diff --git a/code/nel/tools/pipeline/max/builtin/param_block.h b/code/nel/tools/pipeline/max/builtin/param_block.h index 76cfa0e76..3f4db5922 100644 --- a/code/nel/tools/pipeline/max/builtin/param_block.h +++ b/code/nel/tools/pipeline/max/builtin/param_block.h @@ -49,7 +49,7 @@ namespace BUILTIN { class CParamBlock : public CReferenceTarget { public: - CParamBlock(CScene *scene); + CParamBlock(PIPELINE::MAX::CScene *scene); virtual ~CParamBlock(); }; /* class CParamBlock */ diff --git a/code/nel/tools/pipeline/max/builtin/param_block_2.cpp b/code/nel/tools/pipeline/max/builtin/param_block_2.cpp index e450c1aa4..1de6489a4 100644 --- a/code/nel/tools/pipeline/max/builtin/param_block_2.cpp +++ b/code/nel/tools/pipeline/max/builtin/param_block_2.cpp @@ -42,7 +42,7 @@ namespace PIPELINE { namespace MAX { namespace BUILTIN { -CParamBlock2::CParamBlock2(CScene *scene) : CReferenceTarget(scene) +CParamBlock2::CParamBlock2(PIPELINE::MAX::CScene *scene) : CReferenceTarget(scene) { } diff --git a/code/nel/tools/pipeline/max/builtin/param_block_2.h b/code/nel/tools/pipeline/max/builtin/param_block_2.h index f70506b8e..18eca113a 100644 --- a/code/nel/tools/pipeline/max/builtin/param_block_2.h +++ b/code/nel/tools/pipeline/max/builtin/param_block_2.h @@ -49,7 +49,7 @@ namespace BUILTIN { class CParamBlock2 : public CReferenceTarget { public: - CParamBlock2(CScene *scene); + CParamBlock2(PIPELINE::MAX::CScene *scene); virtual ~CParamBlock2(); }; /* class CParamBlock2 */ diff --git a/code/nel/tools/pipeline/max/builtin/patch_object.cpp b/code/nel/tools/pipeline/max/builtin/patch_object.cpp index 9ef811e9e..807979a80 100644 --- a/code/nel/tools/pipeline/max/builtin/patch_object.cpp +++ b/code/nel/tools/pipeline/max/builtin/patch_object.cpp @@ -42,7 +42,7 @@ namespace PIPELINE { namespace MAX { namespace BUILTIN { -CPatchObject::CPatchObject(CScene *scene) : CObject(scene) +CPatchObject::CPatchObject(PIPELINE::MAX::CScene *scene) : CObject(scene) { } diff --git a/code/nel/tools/pipeline/max/builtin/patch_object.h b/code/nel/tools/pipeline/max/builtin/patch_object.h index ee4f0f984..3a4b64eda 100644 --- a/code/nel/tools/pipeline/max/builtin/patch_object.h +++ b/code/nel/tools/pipeline/max/builtin/patch_object.h @@ -49,7 +49,7 @@ namespace BUILTIN { class CPatchObject : public CObject { public: - CPatchObject(CScene *scene); + CPatchObject(PIPELINE::MAX::CScene *scene); virtual ~CPatchObject(); }; /* class CPatchObject */ diff --git a/code/nel/tools/pipeline/max/builtin/poly_object.cpp b/code/nel/tools/pipeline/max/builtin/poly_object.cpp index 414dd0637..9c7b78c9c 100644 --- a/code/nel/tools/pipeline/max/builtin/poly_object.cpp +++ b/code/nel/tools/pipeline/max/builtin/poly_object.cpp @@ -42,7 +42,7 @@ namespace PIPELINE { namespace MAX { namespace BUILTIN { -CPolyObject::CPolyObject(CScene *scene) : CObject(scene) +CPolyObject::CPolyObject(PIPELINE::MAX::CScene *scene) : CObject(scene) { } diff --git a/code/nel/tools/pipeline/max/builtin/poly_object.h b/code/nel/tools/pipeline/max/builtin/poly_object.h index 13d250376..1ede2aa84 100644 --- a/code/nel/tools/pipeline/max/builtin/poly_object.h +++ b/code/nel/tools/pipeline/max/builtin/poly_object.h @@ -49,7 +49,7 @@ namespace BUILTIN { class CPolyObject : public CObject { public: - CPolyObject(CScene *scene); + CPolyObject(PIPELINE::MAX::CScene *scene); virtual ~CPolyObject(); }; /* class CPolyObject */ diff --git a/code/nel/tools/pipeline/max/builtin/reference_maker.cpp b/code/nel/tools/pipeline/max/builtin/reference_maker.cpp index 42a6eee7b..484932108 100644 --- a/code/nel/tools/pipeline/max/builtin/reference_maker.cpp +++ b/code/nel/tools/pipeline/max/builtin/reference_maker.cpp @@ -29,6 +29,7 @@ #include "reference_maker.h" // STL includes +#include // NeL includes // #include @@ -63,7 +64,7 @@ namespace BUILTIN { //////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////// -CReferenceMaker::CReferenceMaker(CScene *scene) : CAnimatable(scene) +CReferenceMaker::CReferenceMaker(PIPELINE::MAX::CScene *scene) : CAnimatable(scene), m_ReferenceMap(false), m_References2035Value0(0) { } @@ -72,10 +73,6 @@ CReferenceMaker::~CReferenceMaker() { if (!m_ChunksOwnsPointers) { - delete m_References2034; - m_References2034 = NULL; - delete m_References2035; - m_References2035 = NULL; delete m_204B_Equals_2E; m_204B_Equals_2E = NULL; } @@ -94,35 +91,100 @@ void CReferenceMaker::parse(uint16 version, TParseLevel level) CAnimatable::parse(version, level); if (!m_ChunksOwnsPointers) { - m_References2034 = static_cast *>(getChunk(PMB_REFERENCES_2034_CHUNK_ID)); - m_References2035 = static_cast *>(getChunk(PMB_REFERENCES_2035_CHUNK_ID)); - if (m_References2034) nlassert(m_References2035 == NULL); // Apparently, there can be only one. - if (m_References2035) nlassert(m_References2034 == NULL); + CStorageArray *references2034 = static_cast *>(getChunk(PMB_REFERENCES_2034_CHUNK_ID)); + CStorageArray *references2035 = static_cast *>(getChunk(PMB_REFERENCES_2035_CHUNK_ID)); + if (references2034) nlassert(references2035 == NULL); // Apparently, there can be only one. + if (references2035) nlassert(references2034 == NULL); m_204B_Equals_2E = static_cast *>(getChunk(PMB_204B_EQUALS_2E_CHUNK_ID)); if (m_204B_Equals_2E) nlassert(m_204B_Equals_2E->Value == 0x2e); // Really, let me know when it has another value. - // TODO: Parse contents + + // Parse contents + if (references2034) + { + m_ReferenceMap = false; // NOTE: Plugins may check after parse if they parsed with the correct type, to find a pattern + m_ArchivedChunks.push_back(references2034); + for (std::vector::size_type i = 0; i < references2034->Value.size(); ++i) + { + if (references2034->Value[i] > 0) + { + CReferenceMaker *referenceMaker = dynamic_cast(container()->getByStorageIndex(references2034->Value[i])); + if (!referenceMaker) nlerror("Reference maker is %s not a reference maker", container()->getByStorageIndex(references2034->Value[i])->classDesc()->classId().toString().c_str()); + setReference(i, referenceMaker); + } + } + } + if (references2035) + { + m_ReferenceMap = true; + m_ArchivedChunks.push_back(references2035); + std::vector::iterator it = references2035->Value.begin(); + m_References2035Value0 = (*it); + ++it; + std::vector::iterator end = references2035->Value.end(); + while (it != end) + { + sint32 index = (*it); + ++it; + sint32 referenceindex = (*it); + ++it; + CReferenceMaker *referenceMaker = dynamic_cast(container()->getByStorageIndex(referenceindex)); + if (!referenceMaker) nlerror("Reference maker is %s not a reference maker", container()->getByStorageIndex(referenceindex)->classDesc()->classId().toString().c_str()); + setReference(index, referenceMaker); + } + } } } void CReferenceMaker::clean() { - CAnimatable::clean(); - // TODO: Delete unnecessary stuff + CAnimatable::clean(); // Nothing to do here, m_ArchivedChunks is cleaned (deleted) for us! } void CReferenceMaker::build(uint16 version) { CAnimatable::build(version); // TODO: Build contents - if (m_References2034) putChunk(PMB_REFERENCES_2034_CHUNK_ID, m_References2034); - if (m_References2035) putChunk(PMB_REFERENCES_2035_CHUNK_ID, m_References2035); + //if (m_References2034) putChunk(PMB_REFERENCES_2034_CHUNK_ID, m_References2034); + //if (m_References2035) putChunk(PMB_REFERENCES_2035_CHUNK_ID, m_References2035); + if (!m_ReferenceMap) + { + CStorageArray *references2034 = new CStorageArray(); + uint nb = nbReferences(); + references2034->Value.resize(nb); + for (uint i = 0; i < nb; ++i) + { + CReferenceMaker *referenceMaker = getReference(i); + if (referenceMaker) references2034->Value[i] = container()->getOrCreateStorageIndex(referenceMaker); + else references2034->Value[i] = -1; + } + putChunk(PMB_REFERENCES_2034_CHUNK_ID, references2034); + m_ArchivedChunks.push_back(references2034); + } + else + { + CStorageArray *references2035 = new CStorageArray(); + uint nb = nbReferences(); + references2035->Value.push_back(m_References2035Value0); + for (uint i = 0; i < nb; ++i) + { + CReferenceMaker *referenceMaker = getReference(i); + if (referenceMaker) + { + references2035->Value.push_back(i); + references2035->Value.push_back(container()->getOrCreateStorageIndex(referenceMaker)); + } + } + putChunk(PMB_REFERENCES_2035_CHUNK_ID, references2035); + m_ArchivedChunks.push_back(references2035); + } if (m_204B_Equals_2E) putChunk(PMB_204B_EQUALS_2E_CHUNK_ID, m_204B_Equals_2E); } void CReferenceMaker::disown() { - m_References2034 = NULL; - m_References2035 = NULL; + m_References.clear(); + m_ReferenceMap = false; + m_References2035Value0 = 0; m_204B_Equals_2E = NULL; CAnimatable::disown(); } @@ -146,15 +208,32 @@ const ISceneClassDesc *CReferenceMaker::classDesc() const void CReferenceMaker::toStringLocal(std::ostream &ostream, const std::string &pad) const { CAnimatable::toStringLocal(ostream, pad); - if (m_References2034) - { - ostream << "\n" << pad << "References 0x2034: "; - m_References2034->toString(ostream, pad + "\t"); - } - if (m_References2035) + uint nb = nbReferences(); + if (nb) { - ostream << "\n" << pad << "References 0x2035: "; - m_References2035->toString(ostream, pad + "\t"); + if (!m_ReferenceMap) ostream << "\n" << pad << "References 0x2034: "; + else ostream << "\n" << pad << "References 0x2035: "; + std::string padpad = pad + "\t"; + ostream << "PARSED "; + if (!m_References.size()) ostream << "VIRTUAL "; + ostream << "{ "; + for (uint i = 0; i < nb; ++i) + { + CReferenceMaker *referenceMaker = getReference(i); + if (referenceMaker) + { + ostream << "\n" << padpad << i << ": "; + ostream << "(" << ucstring(referenceMaker->classDesc()->displayName()).toUtf8() << ", " << referenceMaker->classDesc()->classId().toString() << ") "; + } + } + ostream << "} "; } if (m_204B_Equals_2E) { @@ -163,6 +242,23 @@ void CReferenceMaker::toStringLocal(std::ostream &ostream, const std::string &pa } } +CReferenceMaker *CReferenceMaker::getReference(uint index) const +{ + if (m_References.size() <= index) return NULL; + return m_References[index]; +} + +void CReferenceMaker::setReference(uint index, CReferenceMaker *reference) +{ + if (m_References.size() <= index) m_References.resize(index + 1); + m_References[index] = reference; +} + +uint CReferenceMaker::nbReferences() const +{ + return m_References.size(); +} + IStorageObject *CReferenceMaker::createChunkById(uint16 id, bool container) { switch (id) diff --git a/code/nel/tools/pipeline/max/builtin/reference_maker.h b/code/nel/tools/pipeline/max/builtin/reference_maker.h index 81c9e3909..8163c8d2f 100644 --- a/code/nel/tools/pipeline/max/builtin/reference_maker.h +++ b/code/nel/tools/pipeline/max/builtin/reference_maker.h @@ -50,7 +50,7 @@ namespace BUILTIN { class CReferenceMaker : public CAnimatable { public: - CReferenceMaker(CScene *scene); + CReferenceMaker(PIPELINE::MAX::CScene *scene); virtual ~CReferenceMaker(); // class desc @@ -70,15 +70,26 @@ public: virtual const ISceneClassDesc *classDesc() const; virtual void toStringLocal(std::ostream &ostream, const std::string &pad = "") const; + // child classes should inherit, default implementation stores in a vector + /// Get a reference + virtual CReferenceMaker *getReference(uint index) const; + virtual void setReference(uint index, CReferenceMaker *reference); + virtual uint nbReferences() const; + protected: // inherited virtual IStorageObject *createChunkById(uint16 id, bool container); + /// Storage method + bool m_ReferenceMap; private: - CStorageArray *m_References2034; - CStorageArray *m_References2035; CStorageValue *m_204B_Equals_2E; + /// Default implementation, should preferably not use this, no direct read access will be provided + std::vector > m_References; + /// Unknown value + uint32 m_References2035Value0; + }; /* class CReferenceMaker */ typedef CSceneClassDesc CReferenceMakerClassDesc; diff --git a/code/nel/tools/pipeline/max/builtin/reference_target.cpp b/code/nel/tools/pipeline/max/builtin/reference_target.cpp index e19a10710..2b84efbc6 100644 --- a/code/nel/tools/pipeline/max/builtin/reference_target.cpp +++ b/code/nel/tools/pipeline/max/builtin/reference_target.cpp @@ -42,7 +42,7 @@ namespace PIPELINE { namespace MAX { namespace BUILTIN { -CReferenceTarget::CReferenceTarget(CScene *scene) : CReferenceMaker(scene) +CReferenceTarget::CReferenceTarget(PIPELINE::MAX::CScene *scene) : CReferenceMaker(scene) { } diff --git a/code/nel/tools/pipeline/max/builtin/reference_target.h b/code/nel/tools/pipeline/max/builtin/reference_target.h index b6daa94de..3e45ab87f 100644 --- a/code/nel/tools/pipeline/max/builtin/reference_target.h +++ b/code/nel/tools/pipeline/max/builtin/reference_target.h @@ -50,7 +50,7 @@ namespace BUILTIN { class CReferenceTarget : public CReferenceMaker { public: - CReferenceTarget(CScene *scene); + CReferenceTarget(PIPELINE::MAX::CScene *scene); virtual ~CReferenceTarget(); // class desc diff --git a/code/nel/tools/pipeline/max/builtin/std_mat.cpp b/code/nel/tools/pipeline/max/builtin/std_mat.cpp index dae98c4c9..b0173fc8b 100644 --- a/code/nel/tools/pipeline/max/builtin/std_mat.cpp +++ b/code/nel/tools/pipeline/max/builtin/std_mat.cpp @@ -42,7 +42,7 @@ namespace PIPELINE { namespace MAX { namespace BUILTIN { -CStdMat::CStdMat(CScene *scene) : CMtl(scene) +CStdMat::CStdMat(PIPELINE::MAX::CScene *scene) : CMtl(scene) { } diff --git a/code/nel/tools/pipeline/max/builtin/std_mat.h b/code/nel/tools/pipeline/max/builtin/std_mat.h index f3d9e7b69..fbaba1b8a 100644 --- a/code/nel/tools/pipeline/max/builtin/std_mat.h +++ b/code/nel/tools/pipeline/max/builtin/std_mat.h @@ -49,7 +49,7 @@ namespace BUILTIN { class CStdMat : public CMtl { public: - CStdMat(CScene *scene); + CStdMat(PIPELINE::MAX::CScene *scene); virtual ~CStdMat(); }; /* class CStdMat */ diff --git a/code/nel/tools/pipeline/max/builtin/std_mat_2.cpp b/code/nel/tools/pipeline/max/builtin/std_mat_2.cpp index 45e17d868..146056290 100644 --- a/code/nel/tools/pipeline/max/builtin/std_mat_2.cpp +++ b/code/nel/tools/pipeline/max/builtin/std_mat_2.cpp @@ -42,7 +42,7 @@ namespace PIPELINE { namespace MAX { namespace BUILTIN { -CStdMat2::CStdMat2(CScene *scene) : CStdMat(scene) +CStdMat2::CStdMat2(PIPELINE::MAX::CScene *scene) : CStdMat(scene) { } diff --git a/code/nel/tools/pipeline/max/builtin/std_mat_2.h b/code/nel/tools/pipeline/max/builtin/std_mat_2.h index 331ca7978..889cacfe8 100644 --- a/code/nel/tools/pipeline/max/builtin/std_mat_2.h +++ b/code/nel/tools/pipeline/max/builtin/std_mat_2.h @@ -55,7 +55,7 @@ protected: // instances // ... public: - CStdMat2(CScene *scene); + CStdMat2(PIPELINE::MAX::CScene *scene); virtual ~CStdMat2(); }; /* class CStdMat2 */ diff --git a/code/nel/tools/pipeline/max/builtin/texmap.cpp b/code/nel/tools/pipeline/max/builtin/texmap.cpp index 600542bb7..089d0110b 100644 --- a/code/nel/tools/pipeline/max/builtin/texmap.cpp +++ b/code/nel/tools/pipeline/max/builtin/texmap.cpp @@ -42,7 +42,7 @@ namespace PIPELINE { namespace MAX { namespace BUILTIN { -CTexmap::CTexmap(CScene *scene) : CMtlBase(scene) +CTexmap::CTexmap(PIPELINE::MAX::CScene *scene) : CMtlBase(scene) { } diff --git a/code/nel/tools/pipeline/max/builtin/texmap.h b/code/nel/tools/pipeline/max/builtin/texmap.h index da2fc376a..43db10d20 100644 --- a/code/nel/tools/pipeline/max/builtin/texmap.h +++ b/code/nel/tools/pipeline/max/builtin/texmap.h @@ -49,7 +49,7 @@ namespace BUILTIN { class CTexmap : public CMtlBase { public: - CTexmap(CScene *scene); + CTexmap(PIPELINE::MAX::CScene *scene); virtual ~CTexmap(); }; /* class CTexmap */ diff --git a/code/nel/tools/pipeline/max/builtin/tri_object.cpp b/code/nel/tools/pipeline/max/builtin/tri_object.cpp index 0a355446e..99d28f7f6 100644 --- a/code/nel/tools/pipeline/max/builtin/tri_object.cpp +++ b/code/nel/tools/pipeline/max/builtin/tri_object.cpp @@ -42,7 +42,7 @@ namespace PIPELINE { namespace MAX { namespace BUILTIN { -CTriObject::CTriObject(CScene *scene) : CObject(scene) +CTriObject::CTriObject(PIPELINE::MAX::CScene *scene) : CObject(scene) { } diff --git a/code/nel/tools/pipeline/max/builtin/tri_object.h b/code/nel/tools/pipeline/max/builtin/tri_object.h index 9f979cd3b..cd0b9d427 100644 --- a/code/nel/tools/pipeline/max/builtin/tri_object.h +++ b/code/nel/tools/pipeline/max/builtin/tri_object.h @@ -50,7 +50,7 @@ class CTriObject : public CObject { public: - CTriObject(CScene *scene); + CTriObject(PIPELINE::MAX::CScene *scene); virtual ~CTriObject(); }; /* class CTriObject */ diff --git a/code/nel/tools/pipeline/max/scene.cpp b/code/nel/tools/pipeline/max/scene.cpp index ef1b4716d..2de170cea 100644 --- a/code/nel/tools/pipeline/max/scene.cpp +++ b/code/nel/tools/pipeline/max/scene.cpp @@ -141,24 +141,52 @@ void CSceneClassContainer::toString(std::ostream &ostream, const std::string &pa void CSceneClassContainer::parse(uint16 version, TParseLevel level) { + // Temporary 'readonly' implementation, not modifying m_Chunks! + m_StorageObjectByIndex.resize(m_Chunks.size()); + TStorageObjectIterator it = m_Chunks.begin(); + for (std::vector::size_type i = 0; i < m_StorageObjectByIndex.size(); ++i) + { + m_StorageObjectByIndex[i] = static_cast(it->second); + ++it; + } CStorageContainer::parse(version, level); } void CSceneClassContainer::clean() { + // Temporary 'readonly' implementation, not modifying m_Chunks! CStorageContainer::clean(); } void CSceneClassContainer::build(uint16 version) { + // Temporary 'readonly' implementation, not modifying m_Chunks! + for (std::vector::size_type i = 0; i < m_StorageObjectByIndex.size(); ++i) + { + m_StorageObjectToIndex[m_StorageObjectByIndex[i]] = i; + } CStorageContainer::build(version); } void CSceneClassContainer::disown() { + // Temporary 'readonly' implementation, not modifying m_Chunks! CStorageContainer::disown(); } +CSceneClass *CSceneClassContainer::getByStorageIndex(uint32 index) const +{ + // Temporary 'readonly' implementation, not modifying m_Chunks! + if (index >= m_StorageObjectByIndex.size()) { nlerror("Index %i is outside size %i", index, m_StorageObjectByIndex.size()); return NULL; } + return m_StorageObjectByIndex[index]; +} + +uint32 CSceneClassContainer::getOrCreateStorageIndex(CSceneClass *storageObject) +{ + // Temporary 'readonly' implementation, not modifying m_Chunks! + return m_StorageObjectToIndex[storageObject]; +} + IStorageObject *CSceneClassContainer::createChunkById(uint16 id, bool container) { // nldebug("Scene class id %x (%i)", (uint32)id, (uint32)id); diff --git a/code/nel/tools/pipeline/max/scene.h b/code/nel/tools/pipeline/max/scene.h index 21011860c..23fe163d9 100644 --- a/code/nel/tools/pipeline/max/scene.h +++ b/code/nel/tools/pipeline/max/scene.h @@ -37,10 +37,16 @@ // Project includes #include "storage_object.h" #include "storage_value.h" -#include "scene_class.h" namespace PIPELINE { namespace MAX { +namespace BUILTIN { + +class CScene; + +} + +class CSceneClass; // Registry containing available scene classes class CSceneClassRegistry; @@ -114,6 +120,10 @@ public: protected: virtual IStorageObject *createChunkById(uint16 id, bool container); +public: + /// Return the single instance of the builtin scene class + inline BUILTIN::CScene *scene() { return NULL; } + private: CScene *m_Scene; @@ -121,8 +131,8 @@ private: CDllDirectory *m_DllDirectory; CClassDirectory3 *m_ClassDirectory3; - std::vector m_StorageObjectByIndex; - std::map m_StorageObjectToIndex; + std::vector m_StorageObjectByIndex; + std::map m_StorageObjectToIndex; }; /* class CSceneClassContainer */ diff --git a/code/nel/tools/pipeline/max/scene_class.cpp b/code/nel/tools/pipeline/max/scene_class.cpp index 49e2c6c67..cb88f4f01 100644 --- a/code/nel/tools/pipeline/max/scene_class.cpp +++ b/code/nel/tools/pipeline/max/scene_class.cpp @@ -68,7 +68,15 @@ CSceneClass::CSceneClass(CScene *scene) : m_Scene(scene) CSceneClass::~CSceneClass() { - + if (!m_ChunksOwnsPointers) + { + for (TStorageObjectContainer::iterator it = m_OrphanedChunks.begin(), end = m_OrphanedChunks.end(); it != end; ++it) + delete it->second; + m_OrphanedChunks.clear(); + for (std::vector::iterator it = m_ArchivedChunks.begin(), end = m_ArchivedChunks.end(); it != end; ++it) + delete (*it); + m_ArchivedChunks.clear(); + } } std::string CSceneClass::className() const @@ -84,7 +92,22 @@ void CSceneClass::toString(std::ostream &ostream, const std::string &pad) const } else { - ostream << "(" << className() << ": " << ucstring(classDesc()->displayName()).toUtf8() << ", " << classDesc()->classId().toString() << ", " << ucstring(classDesc()->dllPluginDesc()->internalName()).toUtf8() << ") [" << m_Chunks.size() << "] { "; + ostream << " "; + ostream << "(" << className() << ": " << ucstring(classDesc()->displayName()).toUtf8() << ", " << classDesc()->classId().toString() << ", 0x"; + { + std::stringstream ss; + ss << std::hex << std::setfill('0'); + ss << std::setw(8) << classDesc()->superClassId(); + ostream << ss.str(); + } + ostream << ", " << ucstring(classDesc()->dllPluginDesc()->internalName()).toUtf8() << ") [" << m_OrphanedChunks.size() << "] { "; toStringLocal(ostream, pad); // Append orphans std::string padpad = pad + "\t"; @@ -137,6 +160,11 @@ void CSceneClass::clean() static_cast(it->second)->clean(); } } + + // Erase archived chunks, they must have been parsed perfectly + for (std::vector::iterator it = m_ArchivedChunks.begin(), end = m_ArchivedChunks.end(); it != end; ++it) + delete (*it); + m_ArchivedChunks.clear(); } void CSceneClass::build(uint16 version) @@ -166,6 +194,7 @@ void CSceneClass::disown() // Clear local references m_OrphanedChunks.clear(); + m_ArchivedChunks.clear(); // Return ownership m_ChunksOwnsPointers = true; diff --git a/code/nel/tools/pipeline/max/scene_class.h b/code/nel/tools/pipeline/max/scene_class.h index 7fe9b1d9b..a2add12e0 100644 --- a/code/nel/tools/pipeline/max/scene_class.h +++ b/code/nel/tools/pipeline/max/scene_class.h @@ -40,11 +40,16 @@ #include "storage_object.h" #include "storage_value.h" #include "dll_plugin_desc.h" +#include "scene.h" namespace PIPELINE { namespace MAX { +namespace BUILTIN { class CScene; + +} + class ISceneClassDesc; /** @@ -62,7 +67,7 @@ class ISceneClassDesc; * CRefPtr is a safe handle, which you can use to verify if the class * has been deleted or not, similar to AnimHandle in max. */ -class CSceneClass : public CStorageContainer, public NLMISC::CRefCount +class CSceneClass : public CStorageContainer, public NLMISC::CVirtualRefCount { public: CSceneClass(CScene *scene); @@ -116,6 +121,16 @@ public: inline const TStorageObjectContainer &orphanedChunks() const { return m_OrphanedChunks; } //@} + //! \name Scene utility access + //@{ + /// Return the scene scene class + inline BUILTIN::CScene *scene() const { return m_Scene->container()->scene(); } + /// Return the scene version + inline uint16 version() const { return m_Scene->version(); } + /// Return the scene container + inline CSceneClassContainer *container() const { return m_Scene->container(); } + //@} + protected: //! \name Methods used by inheriting classes to read and write to the storage safely //@{ @@ -128,6 +143,9 @@ protected: protected: virtual IStorageObject *createChunkById(uint16 id, bool container); + /// Chunks which have been parsed, kept unmodified, and which are no longer necessary, should be placed here + std::vector m_ArchivedChunks; + private: TStorageObjectContainer m_OrphanedChunks; TStorageObjectIterator m_PutChunkInsert; diff --git a/code/nel/tools/pipeline/max_dump/main.cpp b/code/nel/tools/pipeline/max_dump/main.cpp index 3fcc02e35..9e7f7a4cc 100644 --- a/code/nel/tools/pipeline/max_dump/main.cpp +++ b/code/nel/tools/pipeline/max_dump/main.cpp @@ -31,8 +31,8 @@ #include "../max/builtin/storage/app_data.h" #include "../max/builtin/builtin.h" -static const char *filename = "/srv/work/database/interfaces/anims_max/cp_fy_hof_species.max"; -//static const char *filename = "/home/kaetemi/source/minimax/GE_Acc_MikotoBaniere.max"; +//static const char *filename = "/srv/work/database/interfaces/anims_max/cp_fy_hof_species.max"; +static const char *filename = "/home/kaetemi/source/minimax/GE_Acc_MikotoBaniere.max"; //static const char *filename = "/home/kaetemi/3dsMax/scenes/test2008.max"; //static const char *filename = "/home/kaetemi/3dsMax/scenes/teapot_test_scene.max"; static const char *streamname = "Scene"; diff --git a/code/nel/tools/pipeline/max_dump/scene_2010.c b/code/nel/tools/pipeline/max_dump/scene_2010.c index 20e701980..e2baa5b1a 100644 --- a/code/nel/tools/pipeline/max_dump/scene_2010.c +++ b/code/nel/tools/pipeline/max_dump/scene_2010.c @@ -403,580 +403,541 @@ Entries[56]: (ClassEntry) [2] PARSED { SuperClassId: 256 } Name: Scene} } +DBG caa50940 main.cpp 163 main : BUILD +DBG caa50940 main.cpp 165 main : DISOWN +DBG caa50940 main.cpp 167 main : PARSE +DBG caa50940 main.cpp 171 main : CLEAN (Scene) [1] { 0 0x2012: (SceneClassContainer) [452] { - 0 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [6] { - 0 0x000b: (StorageRaw) { + 0 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [6] { + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: <).Z..B0`......!........ Hex: 3c 29 06 5a 1e 0c 42 30 60 11 00 00 00 00 00 21 e0 2e 04 00 01 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 09 00 00 00 00 00 80 06 00 00 00 00 40 ff ff ff ff } - 5 0x000c: (StorageRaw) { + Orphan[5] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 1 0x0001: (SceneClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), ViewportManager.gup) [3] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: ........ - Hex: 00 00 00 00 ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1000: (StorageRaw) { + 1 0x0001: (CustAttribSuperClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), 0x00001160, Viewport Manager for DirectX (Autodesk)) [1] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 2 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [41] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: .... - Hex: 09 00 00 00 - Int: 9 - Float: 1.26117e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x000b: (StorageRaw) { + 2 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [39] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: Y..!...%`......!..%..... Hex: 59 b4 8a 21 80 89 dc 25 60 11 00 00 00 00 00 21 e0 2e 25 00 03 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 00 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 15 String: ......@ ......@ Hex: 01 00 0f 00 00 00 40 20 81 10 00 00 00 00 40 } - 5 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 15 String: ......@ ......@ Hex: 02 00 0f 00 00 00 40 20 81 10 00 00 00 00 40 } - 6 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 15 String: ......@ ......@ Hex: 03 00 0f 00 00 00 40 20 81 10 00 00 00 00 40 } - 7 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 15 String: ......@.......@ Hex: 04 00 0f 00 00 00 40 00 81 10 00 00 00 00 40 } - 8 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 15 String: ......@.......@ Hex: 05 00 0f 00 00 00 40 00 81 10 00 00 00 00 40 } - 9 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 15 String: ......@.......@ Hex: 06 00 0f 00 00 00 40 00 81 10 00 00 00 00 40 } - 10 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 15 String: ......@ ......@ Hex: 07 00 0f 00 00 00 40 20 81 10 00 00 00 00 40 } - 11 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 15 String: ......@.......@ Hex: 08 00 0f 00 00 00 40 00 81 10 00 00 00 00 40 } - 12 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 15 String: ......@.......@ Hex: 09 00 0f 00 00 00 40 00 81 10 00 00 00 00 40 } - 13 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: d.............@.... Hex: 64 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 14 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: e.............@.... Hex: 65 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 15 0x000e: (StorageRaw) { + Orphan[13] 0x000e: (StorageRaw) { Size: 19 String: f.............@.... Hex: 66 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 16 0x000e: (StorageRaw) { + Orphan[14] 0x000e: (StorageRaw) { Size: 19 String: g.............@.... Hex: 67 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 17 0x000e: (StorageRaw) { + Orphan[15] 0x000e: (StorageRaw) { Size: 19 String: h.............@.... Hex: 68 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 18 0x000e: (StorageRaw) { + Orphan[16] 0x000e: (StorageRaw) { Size: 19 String: i.............@.... Hex: 69 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 19 0x000e: (StorageRaw) { + Orphan[17] 0x000e: (StorageRaw) { Size: 19 String: j.............@.... Hex: 6a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 20 0x000e: (StorageRaw) { + Orphan[18] 0x000e: (StorageRaw) { Size: 19 String: k.............@.... Hex: 6b 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 21 0x000e: (StorageRaw) { + Orphan[19] 0x000e: (StorageRaw) { Size: 19 String: l.............@.... Hex: 6c 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 22 0x000e: (StorageRaw) { + Orphan[20] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: c8 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 23 0x000e: (StorageRaw) { + Orphan[21] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: c9 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 24 0x000e: (StorageRaw) { + Orphan[22] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: ca 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 25 0x000e: (StorageRaw) { + Orphan[23] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: cb 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 26 0x000e: (StorageRaw) { + Orphan[24] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: cc 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 27 0x000e: (StorageRaw) { + Orphan[25] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: cd 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 28 0x000e: (StorageRaw) { + Orphan[26] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: ce 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 29 0x000e: (StorageRaw) { + Orphan[27] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: cf 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 30 0x000e: (StorageRaw) { + Orphan[28] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: d0 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 31 0x000e: (StorageRaw) { + Orphan[29] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: dc 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 32 0x000e: (StorageRaw) { + Orphan[30] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: dd 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 33 0x000e: (StorageRaw) { + Orphan[31] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: de 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 34 0x000e: (StorageRaw) { + Orphan[32] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: df 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 35 0x000e: (StorageRaw) { + Orphan[33] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: e0 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 36 0x000e: (StorageRaw) { + Orphan[34] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: e1 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 37 0x000e: (StorageRaw) { + Orphan[35] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: e2 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 38 0x000e: (StorageRaw) { + Orphan[36] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: e3 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 39 0x000e: (StorageRaw) { + Orphan[37] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: e4 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 40 0x000c: (StorageRaw) { + Orphan[38] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 3 0x0002: (SceneClassUnknown: mental ray: material custom attribute, (0x218ab459, 0x25dc8980), mrMaterialAttribs.gup) [2] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: 02 00 00 00 - Int: 2 - Float: 2.8026e-45 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } } - 4 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [4] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: ........ - Hex: 01 00 00 00 03 00 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1030: (StorageRaw) { + 3 0x0002: (CustAttribSuperClassUnknown: mental ray: material custom attribute, (0x218ab459, 0x25dc8980), 0x00001160, mental ray: Material Custom Attributes (Autodesk)) [0] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } } + 4 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ViewportManager, (0x5a06293c, 0x30420c1e)) + 1: (mental ray: material custom attribute, (0x218ab459, 0x25dc8980)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: .... Hex: 0f 00 00 00 Int: 15 Float: 2.10195e-44 } - 3 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } } - 5 0x0004: (SceneClassUnknown: Texmaps, (0x00001200, 0x00000000), mtl.dlt) [8] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: 0... - Hex: 30 00 00 00 - Int: 48 - Float: 6.72623e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5003: (StorageRaw) { + 5 0x0004: (TexmapContainerSuperClassUnknown: Texmaps, (0x00001200, 0x00000000), 0x00001080, Standard Materials and Textures (Autodesk)) [6] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5003: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x5108: (StorageRaw) { + Orphan[1] 0x5108: (StorageRaw) { Size: 4 String: ...> Hex: 9a 99 99 3e Int: 1050253722 Float: 0.3 } - 4 0x510c: (StorageRaw) { + Orphan[2] 0x510c: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x510d: (StorageRaw) { + Orphan[3] 0x510d: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x510e: (StorageRaw) { + Orphan[4] 0x510e: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x510f: (StorageRaw) { + Orphan[5] 0x510f: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 6 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 6 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 05 00 00 00 00 00 00 21 e0 2e 0c 00 07 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 01 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ...............fff?fff?fff? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 66 66 66 3f 66 66 66 3f 66 66 66 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 27 String: ........................... Hex: 08 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0a 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 cc cc cc 3d } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 cd cc cc 3d } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 7 0x0005: (SceneClassUnknown: Blinn, (0x00000038, 0x00000000), mtl.dlt) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: 06 00 00 00 - Int: 6 - Float: 8.40779e-45 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5300: (StorageRaw) { + 7 0x0005: (ShaderSuperClassUnknown: Blinn, (0x00000038, 0x00000000), 0x000010b0, Standard Materials and Textures (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x5020: (StorageContainer) [1] { + Orphan[1] 0x5020: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 8 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [8] { - 0 0x0009: (StorageRaw) { + 8 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [8] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 00 00 00 21 e0 2e 06 00 0f 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 7 0x000c: (StorageRaw) { + Orphan[7] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 9 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 9 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 01 00 00 21 e0 2e 0c 00 0f 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 3f 00 00 00 3f 00 00 00 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: .......)......@.... Hex: 03 00 0f 00 00 00 00 29 81 10 00 00 00 00 40 ff ff ff ff } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 06 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 c0 3f } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 07 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: .................@@ Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 40 40 } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 10 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [13] { - 0 0x0009: (StorageRaw) { + 10 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [13] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 02 00 00 21 e0 2e 0b 00 0f 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 03 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@...= Hex: 04 00 00 00 00 00 00 00 92 00 00 00 00 00 40 cd cc cc 3d } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 12 0x000c: (StorageRaw) { + Orphan[12] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 11 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [7] { - 0 0x0009: (StorageRaw) { + 11 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [7] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 03 00 00 21 e0 2e 04 00 0f 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 00 00 04 08 00 00 00 00 82 00 00 00 00 00 00 18 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 01 00 0f 08 00 00 00 01 81 00 00 00 00 00 00 18 00 00 00 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 139 String: ...................@...?@...?@...?@...?@...?@...?@...?@...?@...>@...?@...?@...?@....@....@....@....@...?@...?@...?@...?@...?@...?@...?@...? Hex: 02 00 06 08 00 00 00 00 92 00 00 00 00 00 00 18 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 9a 99 99 3e 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x0005: (StorageRaw) { + Orphan[5] 0x0005: (StorageRaw) { Size: 961 String: $.......ambientMap...........ambientMapAmount...........ambientMapEnable...........bumpMap...........bumpMapAmount...........bumpMapEnable...........diffuseMap...........diffuseMapAmount...........diffuseMapEnable...........displacementMap...........displacementMapAmount...........displacementMapEnable...........filterMap...........filterMapAmount...........filterMapEnable...........glossinessMap...........glossinessMapAmount...........glossinessMapEnable...........opacityMap...........opacityMapAmount...........opacityMapEnable...........reflectionMap...........reflectionMapAmount...........reflectionMapEnable...........refractionMap...........refractionMapAmount...........refractionMapEnable...........selfIllumMap...........selfIllumMapAmount...........selfIllumMapEnable...........specularLevelMap...........specularLevelMapAmount...........specularLevelMapEnable...........specularMap...........specularMapAmount...........specularMapEnable....... Hex: 24 00 00 00 0b 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 00 01 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 00 00 00 00 08 00 00 00 62 75 6d 70 4d 61 70 00 01 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 41 6d 6f 75 6e 74 00 02 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 45 6e 61 62 6c 65 00 00 00 08 00 00 00 0b 00 00 00 64 69 66 66 75 73 65 4d 61 70 00 01 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 41 6d 6f 75 6e 74 00 02 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 45 6e 61 62 6c 65 00 00 00 01 00 00 00 10 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 00 01 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 0b 00 00 00 0a 00 00 00 66 69 6c 74 65 72 4d 61 70 00 01 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 07 00 00 00 0e 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 00 01 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 41 6d 6f 75 6e 74 00 02 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 45 6e 61 62 6c 65 00 00 00 04 00 00 00 0b 00 00 00 6f 70 61 63 69 74 79 4d 61 70 00 01 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 41 6d 6f 75 6e 74 00 02 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 45 6e 61 62 6c 65 00 00 00 06 00 00 00 0e 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 00 01 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 09 00 00 00 0e 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 00 01 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 0a 00 00 00 0d 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 00 01 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 41 6d 6f 75 6e 74 00 02 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 45 6e 61 62 6c 65 00 00 00 05 00 00 00 11 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 00 01 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 41 6d 6f 75 6e 74 00 02 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 45 6e 61 62 6c 65 00 00 00 03 00 00 00 0c 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 00 01 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 02 00 00 00 } - 6 0x000c: (StorageRaw) { + Orphan[6] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 12 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [5] { - 0 0x0009: (StorageRaw) { + 12 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [5] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 04 00 00 21 e0 2e 03 00 0f 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 00 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000c: (StorageRaw) { + Orphan[4] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 13 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [5] { - 0 0x0001: (StorageRaw) { + 13 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [5] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 03 00 00 00 Int: 3 Float: 4.2039e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 02 00 } - 2 0x0002: (StorageContainer) [2] { + Orphan[2] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -989,7 +950,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } } - 3 0x0002: (StorageContainer) [2] { + Orphan[3] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -1002,7 +963,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [2] { + Orphan[4] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -1015,45 +976,40 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 14 0x0007: (SceneClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), samplers.dlh) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: 0d 00 00 00 - Int: 13 - Float: 1.82169e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0200: (StorageRaw) { + 14 0x0007: (SamplerSuperClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), 0x00001110, Standard Samplers (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0200: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x39bf: (StorageContainer) [1] { + Orphan[1] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 0 String: Hex: } } } - 15 0x0008: (SceneClassUnknown: Standard, (0x00000002, 0x00000000), mtl.dlt) [6] { - 0 0x2034: (StorageRaw) { - Size: 36 - String: .................................... - Hex: ff ff ff ff 05 00 00 00 07 00 00 00 08 00 00 00 09 00 00 00 0a 00 00 00 0b 00 00 00 0c 00 00 00 0e 00 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x21b0: (StorageContainer) [1] { + 15 0x0008: (MtlSuperClassUnknown: Standard, (0x00000002, 0x00000000), 0x00000c00, Standard Materials and Textures (Autodesk)) [4] { + References 0x2034: PARSED { + 1: (Texmaps, (0x00001200, 0x00000000)) + 2: (Blinn, (0x00000038, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) + 4: (ParamBlock2, (0x00000082, 0x00000000)) + 5: (ParamBlock2, (0x00000082, 0x00000000)) + 6: (ParamBlock2, (0x00000082, 0x00000000)) + 7: (ParamBlock2, (0x00000082, 0x00000000)) + 8: (Max 2.5 Star, (0x25773211, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: .... Hex: 04 00 00 00 Int: 4 Float: 5.60519e-45 } } - 3 0x4000: (StorageContainer) [4] { + Orphan[1] 0x4000: (StorageContainer) [4] { 0 0x4001: (StorageRaw) { Size: 24 String: 0.9. .-. .D.e.f.a.u.l.t. } @@ -1073,591 +1029,550 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } - 4 0x5300: (StorageRaw) { + Orphan[2] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 0d 00 00 00 Int: 13 Float: 1.82169e-44 } - 5 0x5600: (StorageContainer) [1] { + Orphan[3] 0x5600: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 16 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [6] { - 0 0x000b: (StorageRaw) { + 16 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [6] { + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: <).Z..B0`......!........ Hex: 3c 29 06 5a 1e 0c 42 30 60 11 00 00 00 00 00 21 e0 2e 04 00 11 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 09 00 00 00 00 00 80 06 00 00 00 00 40 ff ff ff ff } - 5 0x000c: (StorageRaw) { + Orphan[5] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 17 0x0001: (SceneClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), ViewportManager.gup) [3] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: ........ - Hex: 10 00 00 00 ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1000: (StorageRaw) { + 17 0x0001: (CustAttribSuperClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), 0x00001160, Viewport Manager for DirectX (Autodesk)) [1] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 18 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [41] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: .... - Hex: 09 00 00 00 - Int: 9 - Float: 1.26117e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x000b: (StorageRaw) { + 18 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [39] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: Y..!...%`......!..%..... Hex: 59 b4 8a 21 80 89 dc 25 60 11 00 00 00 00 00 21 e0 2e 25 00 13 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 00 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 15 String: ......@ ......@ Hex: 01 00 0f 00 00 00 40 20 81 10 00 00 00 00 40 } - 5 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 15 String: ......@ ......@ Hex: 02 00 0f 00 00 00 40 20 81 10 00 00 00 00 40 } - 6 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 15 String: ......@ ......@ Hex: 03 00 0f 00 00 00 40 20 81 10 00 00 00 00 40 } - 7 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 15 String: ......@.......@ Hex: 04 00 0f 00 00 00 40 00 81 10 00 00 00 00 40 } - 8 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 15 String: ......@.......@ Hex: 05 00 0f 00 00 00 40 00 81 10 00 00 00 00 40 } - 9 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 15 String: ......@.......@ Hex: 06 00 0f 00 00 00 40 00 81 10 00 00 00 00 40 } - 10 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 15 String: ......@ ......@ Hex: 07 00 0f 00 00 00 40 20 81 10 00 00 00 00 40 } - 11 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 15 String: ......@.......@ Hex: 08 00 0f 00 00 00 40 00 81 10 00 00 00 00 40 } - 12 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 15 String: ......@.......@ Hex: 09 00 0f 00 00 00 40 00 81 10 00 00 00 00 40 } - 13 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: d.............@.... Hex: 64 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 14 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: e.............@.... Hex: 65 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 15 0x000e: (StorageRaw) { + Orphan[13] 0x000e: (StorageRaw) { Size: 19 String: f.............@.... Hex: 66 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 16 0x000e: (StorageRaw) { + Orphan[14] 0x000e: (StorageRaw) { Size: 19 String: g.............@.... Hex: 67 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 17 0x000e: (StorageRaw) { + Orphan[15] 0x000e: (StorageRaw) { Size: 19 String: h.............@.... Hex: 68 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 18 0x000e: (StorageRaw) { + Orphan[16] 0x000e: (StorageRaw) { Size: 19 String: i.............@.... Hex: 69 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 19 0x000e: (StorageRaw) { + Orphan[17] 0x000e: (StorageRaw) { Size: 19 String: j.............@.... Hex: 6a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 20 0x000e: (StorageRaw) { + Orphan[18] 0x000e: (StorageRaw) { Size: 19 String: k.............@.... Hex: 6b 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 21 0x000e: (StorageRaw) { + Orphan[19] 0x000e: (StorageRaw) { Size: 19 String: l.............@.... Hex: 6c 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 22 0x000e: (StorageRaw) { + Orphan[20] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: c8 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 23 0x000e: (StorageRaw) { + Orphan[21] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: c9 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 24 0x000e: (StorageRaw) { + Orphan[22] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: ca 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 25 0x000e: (StorageRaw) { + Orphan[23] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: cb 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 26 0x000e: (StorageRaw) { + Orphan[24] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: cc 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 27 0x000e: (StorageRaw) { + Orphan[25] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: cd 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 28 0x000e: (StorageRaw) { + Orphan[26] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: ce 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 29 0x000e: (StorageRaw) { + Orphan[27] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: cf 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 30 0x000e: (StorageRaw) { + Orphan[28] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: d0 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 31 0x000e: (StorageRaw) { + Orphan[29] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: dc 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 32 0x000e: (StorageRaw) { + Orphan[30] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: dd 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 33 0x000e: (StorageRaw) { + Orphan[31] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: de 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 34 0x000e: (StorageRaw) { + Orphan[32] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: df 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 35 0x000e: (StorageRaw) { + Orphan[33] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: e0 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 36 0x000e: (StorageRaw) { + Orphan[34] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: e1 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 37 0x000e: (StorageRaw) { + Orphan[35] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: e2 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 38 0x000e: (StorageRaw) { + Orphan[36] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: e3 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 39 0x000e: (StorageRaw) { + Orphan[37] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: e4 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 40 0x000c: (StorageRaw) { + Orphan[38] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 19 0x0002: (SceneClassUnknown: mental ray: material custom attribute, (0x218ab459, 0x25dc8980), mrMaterialAttribs.gup) [2] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: 12 00 00 00 - Int: 18 - Float: 2.52234e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } } - 20 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [4] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: ........ - Hex: 11 00 00 00 13 00 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1030: (StorageRaw) { + 19 0x0002: (CustAttribSuperClassUnknown: mental ray: material custom attribute, (0x218ab459, 0x25dc8980), 0x00001160, mental ray: Material Custom Attributes (Autodesk)) [0] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } } + 20 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ViewportManager, (0x5a06293c, 0x30420c1e)) + 1: (mental ray: material custom attribute, (0x218ab459, 0x25dc8980)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: .... Hex: 1f 00 00 00 Int: 31 Float: 4.34403e-44 } - 3 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } } - 21 0x0004: (SceneClassUnknown: Texmaps, (0x00001200, 0x00000000), mtl.dlt) [8] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: 0... - Hex: 30 00 00 00 - Int: 48 - Float: 6.72623e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5003: (StorageRaw) { + 21 0x0004: (TexmapContainerSuperClassUnknown: Texmaps, (0x00001200, 0x00000000), 0x00001080, Standard Materials and Textures (Autodesk)) [6] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5003: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x5108: (StorageRaw) { + Orphan[1] 0x5108: (StorageRaw) { Size: 4 String: ...> Hex: 9a 99 99 3e Int: 1050253722 Float: 0.3 } - 4 0x510c: (StorageRaw) { + Orphan[2] 0x510c: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x510d: (StorageRaw) { + Orphan[3] 0x510d: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x510e: (StorageRaw) { + Orphan[4] 0x510e: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x510f: (StorageRaw) { + Orphan[5] 0x510f: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 22 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 22 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 05 00 00 00 00 00 00 21 e0 2e 0c 00 17 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 01 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ...............fff?fff?fff? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 66 66 66 3f 66 66 66 3f 66 66 66 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 27 String: ........................... Hex: 08 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0a 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 cc cc cc 3d } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 cd cc cc 3d } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 23 0x0005: (SceneClassUnknown: Blinn, (0x00000038, 0x00000000), mtl.dlt) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: 16 00 00 00 - Int: 22 - Float: 3.08286e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5300: (StorageRaw) { + 23 0x0005: (ShaderSuperClassUnknown: Blinn, (0x00000038, 0x00000000), 0x000010b0, Standard Materials and Textures (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x5020: (StorageContainer) [1] { + Orphan[1] 0x5020: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 24 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [8] { - 0 0x0009: (StorageRaw) { + 24 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [8] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 00 00 00 21 e0 2e 06 00 1f 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 7 0x000c: (StorageRaw) { + Orphan[7] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 25 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 25 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 01 00 00 21 e0 2e 0c 00 1f 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 3f 00 00 00 3f 00 00 00 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: .......)......@.... Hex: 03 00 0f 00 00 00 00 29 81 10 00 00 00 00 40 ff ff ff ff } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 06 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 c0 3f } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 07 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: .................@@ Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 40 40 } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 26 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [13] { - 0 0x0009: (StorageRaw) { + 26 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [13] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 02 00 00 21 e0 2e 0b 00 1f 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 03 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@...= Hex: 04 00 00 00 00 00 00 00 92 00 00 00 00 00 40 cd cc cc 3d } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 12 0x000c: (StorageRaw) { + Orphan[12] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 27 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [7] { - 0 0x0009: (StorageRaw) { + 27 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [7] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 03 00 00 21 e0 2e 04 00 1f 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 00 00 04 08 00 00 00 00 82 00 00 00 00 00 00 18 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 01 00 0f 08 00 00 00 01 81 00 00 00 00 00 00 18 00 00 00 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 139 String: ...................@...?@...?@...?@...?@...?@...?@...?@...?@...>@...?@...?@...?@....@....@....@....@...?@...?@...?@...?@...?@...?@...?@...? Hex: 02 00 06 08 00 00 00 00 92 00 00 00 00 00 00 18 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 9a 99 99 3e 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x0005: (StorageRaw) { + Orphan[5] 0x0005: (StorageRaw) { Size: 961 String: $.......ambientMap...........ambientMapAmount...........ambientMapEnable...........bumpMap...........bumpMapAmount...........bumpMapEnable...........diffuseMap...........diffuseMapAmount...........diffuseMapEnable...........displacementMap...........displacementMapAmount...........displacementMapEnable...........filterMap...........filterMapAmount...........filterMapEnable...........glossinessMap...........glossinessMapAmount...........glossinessMapEnable...........opacityMap...........opacityMapAmount...........opacityMapEnable...........reflectionMap...........reflectionMapAmount...........reflectionMapEnable...........refractionMap...........refractionMapAmount...........refractionMapEnable...........selfIllumMap...........selfIllumMapAmount...........selfIllumMapEnable...........specularLevelMap...........specularLevelMapAmount...........specularLevelMapEnable...........specularMap...........specularMapAmount...........specularMapEnable....... Hex: 24 00 00 00 0b 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 00 01 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 00 00 00 00 08 00 00 00 62 75 6d 70 4d 61 70 00 01 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 41 6d 6f 75 6e 74 00 02 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 45 6e 61 62 6c 65 00 00 00 08 00 00 00 0b 00 00 00 64 69 66 66 75 73 65 4d 61 70 00 01 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 41 6d 6f 75 6e 74 00 02 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 45 6e 61 62 6c 65 00 00 00 01 00 00 00 10 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 00 01 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 0b 00 00 00 0a 00 00 00 66 69 6c 74 65 72 4d 61 70 00 01 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 07 00 00 00 0e 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 00 01 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 41 6d 6f 75 6e 74 00 02 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 45 6e 61 62 6c 65 00 00 00 04 00 00 00 0b 00 00 00 6f 70 61 63 69 74 79 4d 61 70 00 01 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 41 6d 6f 75 6e 74 00 02 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 45 6e 61 62 6c 65 00 00 00 06 00 00 00 0e 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 00 01 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 09 00 00 00 0e 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 00 01 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 0a 00 00 00 0d 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 00 01 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 41 6d 6f 75 6e 74 00 02 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 45 6e 61 62 6c 65 00 00 00 05 00 00 00 11 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 00 01 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 41 6d 6f 75 6e 74 00 02 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 45 6e 61 62 6c 65 00 00 00 03 00 00 00 0c 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 00 01 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 02 00 00 00 } - 6 0x000c: (StorageRaw) { + Orphan[6] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 28 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [5] { - 0 0x0009: (StorageRaw) { + 28 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [5] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 04 00 00 21 e0 2e 03 00 1f 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 00 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000c: (StorageRaw) { + Orphan[4] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 29 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [5] { - 0 0x0001: (StorageRaw) { + 29 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [5] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 03 00 00 00 Int: 3 Float: 4.2039e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 02 00 } - 2 0x0002: (StorageContainer) [2] { + Orphan[2] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -1670,7 +1585,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } } - 3 0x0002: (StorageContainer) [2] { + Orphan[3] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -1683,7 +1598,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [2] { + Orphan[4] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -1696,45 +1611,40 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 30 0x0007: (SceneClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), samplers.dlh) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: 1d 00 00 00 - Int: 29 - Float: 4.06377e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0200: (StorageRaw) { + 30 0x0007: (SamplerSuperClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), 0x00001110, Standard Samplers (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0200: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x39bf: (StorageContainer) [1] { + Orphan[1] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 0 String: Hex: } } } - 31 0x0008: (SceneClassUnknown: Standard, (0x00000002, 0x00000000), mtl.dlt) [6] { - 0 0x2034: (StorageRaw) { - Size: 36 - String: .................................... - Hex: ff ff ff ff 15 00 00 00 17 00 00 00 18 00 00 00 19 00 00 00 1a 00 00 00 1b 00 00 00 1c 00 00 00 1e 00 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x21b0: (StorageContainer) [1] { + 31 0x0008: (MtlSuperClassUnknown: Standard, (0x00000002, 0x00000000), 0x00000c00, Standard Materials and Textures (Autodesk)) [4] { + References 0x2034: PARSED { + 1: (Texmaps, (0x00001200, 0x00000000)) + 2: (Blinn, (0x00000038, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) + 4: (ParamBlock2, (0x00000082, 0x00000000)) + 5: (ParamBlock2, (0x00000082, 0x00000000)) + 6: (ParamBlock2, (0x00000082, 0x00000000)) + 7: (ParamBlock2, (0x00000082, 0x00000000)) + 8: (Max 2.5 Star, (0x25773211, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: .... Hex: 14 00 00 00 Int: 20 Float: 2.8026e-44 } } - 3 0x4000: (StorageContainer) [4] { + Orphan[1] 0x4000: (StorageContainer) [4] { 0 0x4001: (StorageRaw) { Size: 24 String: 0.9. .-. .D.e.f.a.u.l.t. } @@ -1754,590 +1664,550 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } - 4 0x5300: (StorageRaw) { + Orphan[2] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 0d 00 00 00 Int: 13 Float: 1.82169e-44 } - 5 0x5600: (StorageContainer) [1] { + Orphan[3] 0x5600: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 32 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [6] { - 0 0x000b: (StorageRaw) { + 32 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [6] { + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: <).Z..B0`......!....!... Hex: 3c 29 06 5a 1e 0c 42 30 60 11 00 00 00 00 00 21 e0 2e 04 00 21 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 09 00 00 00 00 00 80 06 00 00 00 00 40 ff ff ff ff } - 5 0x000c: (StorageRaw) { + Orphan[5] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 33 0x0001: (SceneClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), ViewportManager.gup) [3] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: ....... - Hex: 20 00 00 00 ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1000: (StorageRaw) { + 33 0x0001: (CustAttribSuperClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), 0x00001160, Viewport Manager for DirectX (Autodesk)) [1] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 34 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [41] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: .... - Hex: 09 00 00 00 - Int: 9 - Float: 1.26117e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x000b: (StorageRaw) { + 34 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [39] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: Y..!...%`......!..%.#... Hex: 59 b4 8a 21 80 89 dc 25 60 11 00 00 00 00 00 21 e0 2e 25 00 23 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 00 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 15 String: ......@ ......@ Hex: 01 00 0f 00 00 00 40 20 81 10 00 00 00 00 40 } - 5 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 15 String: ......@ ......@ Hex: 02 00 0f 00 00 00 40 20 81 10 00 00 00 00 40 } - 6 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 15 String: ......@ ......@ Hex: 03 00 0f 00 00 00 40 20 81 10 00 00 00 00 40 } - 7 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 15 String: ......@.......@ Hex: 04 00 0f 00 00 00 40 00 81 10 00 00 00 00 40 } - 8 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 15 String: ......@.......@ Hex: 05 00 0f 00 00 00 40 00 81 10 00 00 00 00 40 } - 9 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 15 String: ......@.......@ Hex: 06 00 0f 00 00 00 40 00 81 10 00 00 00 00 40 } - 10 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 15 String: ......@ ......@ Hex: 07 00 0f 00 00 00 40 20 81 10 00 00 00 00 40 } - 11 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 15 String: ......@.......@ Hex: 08 00 0f 00 00 00 40 00 81 10 00 00 00 00 40 } - 12 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 15 String: ......@.......@ Hex: 09 00 0f 00 00 00 40 00 81 10 00 00 00 00 40 } - 13 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: d.............@.... Hex: 64 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 14 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: e.............@.... Hex: 65 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 15 0x000e: (StorageRaw) { + Orphan[13] 0x000e: (StorageRaw) { Size: 19 String: f.............@.... Hex: 66 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 16 0x000e: (StorageRaw) { + Orphan[14] 0x000e: (StorageRaw) { Size: 19 String: g.............@.... Hex: 67 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 17 0x000e: (StorageRaw) { + Orphan[15] 0x000e: (StorageRaw) { Size: 19 String: h.............@.... Hex: 68 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 18 0x000e: (StorageRaw) { + Orphan[16] 0x000e: (StorageRaw) { Size: 19 String: i.............@.... Hex: 69 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 19 0x000e: (StorageRaw) { + Orphan[17] 0x000e: (StorageRaw) { Size: 19 String: j.............@.... Hex: 6a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 20 0x000e: (StorageRaw) { + Orphan[18] 0x000e: (StorageRaw) { Size: 19 String: k.............@.... Hex: 6b 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 21 0x000e: (StorageRaw) { + Orphan[19] 0x000e: (StorageRaw) { Size: 19 String: l.............@.... Hex: 6c 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 22 0x000e: (StorageRaw) { + Orphan[20] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: c8 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 23 0x000e: (StorageRaw) { + Orphan[21] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: c9 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 24 0x000e: (StorageRaw) { + Orphan[22] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: ca 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 25 0x000e: (StorageRaw) { + Orphan[23] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: cb 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 26 0x000e: (StorageRaw) { + Orphan[24] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: cc 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 27 0x000e: (StorageRaw) { + Orphan[25] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: cd 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 28 0x000e: (StorageRaw) { + Orphan[26] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: ce 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 29 0x000e: (StorageRaw) { + Orphan[27] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: cf 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 30 0x000e: (StorageRaw) { + Orphan[28] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: d0 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 31 0x000e: (StorageRaw) { + Orphan[29] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: dc 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 32 0x000e: (StorageRaw) { + Orphan[30] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: dd 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 33 0x000e: (StorageRaw) { + Orphan[31] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: de 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 34 0x000e: (StorageRaw) { + Orphan[32] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: df 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 35 0x000e: (StorageRaw) { + Orphan[33] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: e0 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 36 0x000e: (StorageRaw) { + Orphan[34] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: e1 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 37 0x000e: (StorageRaw) { + Orphan[35] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: e2 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 38 0x000e: (StorageRaw) { + Orphan[36] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: e3 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 39 0x000e: (StorageRaw) { + Orphan[37] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: e4 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 40 0x000c: (StorageRaw) { + Orphan[38] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 35 0x0002: (SceneClassUnknown: mental ray: material custom attribute, (0x218ab459, 0x25dc8980), mrMaterialAttribs.gup) [2] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: "... - Hex: 22 00 00 00 - Int: 34 - Float: 4.76441e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } } - 36 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [4] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: !...#... } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1030: (StorageRaw) { + 35 0x0002: (CustAttribSuperClassUnknown: mental ray: material custom attribute, (0x218ab459, 0x25dc8980), 0x00001160, mental ray: Material Custom Attributes (Autodesk)) [0] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } } + 36 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ViewportManager, (0x5a06293c, 0x30420c1e)) + 1: (mental ray: material custom attribute, (0x218ab459, 0x25dc8980)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: /... Hex: 2f 00 00 00 Int: 47 Float: 6.5861e-44 } - 3 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } } - 37 0x0004: (SceneClassUnknown: Texmaps, (0x00001200, 0x00000000), mtl.dlt) [8] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: 0... - Hex: 30 00 00 00 - Int: 48 - Float: 6.72623e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5003: (StorageRaw) { + 37 0x0004: (TexmapContainerSuperClassUnknown: Texmaps, (0x00001200, 0x00000000), 0x00001080, Standard Materials and Textures (Autodesk)) [6] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5003: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x5108: (StorageRaw) { + Orphan[1] 0x5108: (StorageRaw) { Size: 4 String: ...> Hex: 9a 99 99 3e Int: 1050253722 Float: 0.3 } - 4 0x510c: (StorageRaw) { + Orphan[2] 0x510c: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x510d: (StorageRaw) { + Orphan[3] 0x510d: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x510e: (StorageRaw) { + Orphan[4] 0x510e: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x510f: (StorageRaw) { + Orphan[5] 0x510f: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 38 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 38 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....'... Hex: 05 00 00 00 00 00 00 21 e0 2e 0c 00 27 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 01 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ...............fff?fff?fff? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 66 66 66 3f 66 66 66 3f 66 66 66 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 27 String: ........................... Hex: 08 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0a 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 cc cc cc 3d } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 cd cc cc 3d } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 39 0x0005: (SceneClassUnknown: Blinn, (0x00000038, 0x00000000), mtl.dlt) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: &... - Hex: 26 00 00 00 - Int: 38 - Float: 5.32493e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5300: (StorageRaw) { + 39 0x0005: (ShaderSuperClassUnknown: Blinn, (0x00000038, 0x00000000), 0x000010b0, Standard Materials and Textures (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x5020: (StorageContainer) [1] { + Orphan[1] 0x5020: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 40 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [8] { - 0 0x0009: (StorageRaw) { + 40 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [8] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!..../... Hex: 08 00 00 00 00 00 00 21 e0 2e 06 00 2f 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 7 0x000c: (StorageRaw) { + Orphan[7] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 41 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 41 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!..../... Hex: 08 00 00 00 01 00 00 21 e0 2e 0c 00 2f 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 3f 00 00 00 3f 00 00 00 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: .......)......@.... Hex: 03 00 0f 00 00 00 00 29 81 10 00 00 00 00 40 ff ff ff ff } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 06 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 c0 3f } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 07 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: .................@@ Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 40 40 } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 42 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [13] { - 0 0x0009: (StorageRaw) { + 42 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [13] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!..../... Hex: 08 00 00 00 02 00 00 21 e0 2e 0b 00 2f 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 03 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@...= Hex: 04 00 00 00 00 00 00 00 92 00 00 00 00 00 40 cd cc cc 3d } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 12 0x000c: (StorageRaw) { + Orphan[12] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 43 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [7] { - 0 0x0009: (StorageRaw) { + 43 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [7] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!..../... Hex: 08 00 00 00 03 00 00 21 e0 2e 04 00 2f 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 00 00 04 08 00 00 00 00 82 00 00 00 00 00 00 18 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 01 00 0f 08 00 00 00 01 81 00 00 00 00 00 00 18 00 00 00 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 139 String: ...................@...?@...?@...?@...?@...?@...?@...?@...?@...>@...?@...?@...?@....@....@....@....@...?@...?@...?@...?@...?@...?@...?@...? Hex: 02 00 06 08 00 00 00 00 92 00 00 00 00 00 00 18 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 9a 99 99 3e 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x0005: (StorageRaw) { + Orphan[5] 0x0005: (StorageRaw) { Size: 961 String: $.......ambientMap...........ambientMapAmount...........ambientMapEnable...........bumpMap...........bumpMapAmount...........bumpMapEnable...........diffuseMap...........diffuseMapAmount...........diffuseMapEnable...........displacementMap...........displacementMapAmount...........displacementMapEnable...........filterMap...........filterMapAmount...........filterMapEnable...........glossinessMap...........glossinessMapAmount...........glossinessMapEnable...........opacityMap...........opacityMapAmount...........opacityMapEnable...........reflectionMap...........reflectionMapAmount...........reflectionMapEnable...........refractionMap...........refractionMapAmount...........refractionMapEnable...........selfIllumMap...........selfIllumMapAmount...........selfIllumMapEnable...........specularLevelMap...........specularLevelMapAmount...........specularLevelMapEnable...........specularMap...........specularMapAmount...........specularMapEnable....... Hex: 24 00 00 00 0b 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 00 01 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 00 00 00 00 08 00 00 00 62 75 6d 70 4d 61 70 00 01 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 41 6d 6f 75 6e 74 00 02 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 45 6e 61 62 6c 65 00 00 00 08 00 00 00 0b 00 00 00 64 69 66 66 75 73 65 4d 61 70 00 01 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 41 6d 6f 75 6e 74 00 02 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 45 6e 61 62 6c 65 00 00 00 01 00 00 00 10 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 00 01 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 0b 00 00 00 0a 00 00 00 66 69 6c 74 65 72 4d 61 70 00 01 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 07 00 00 00 0e 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 00 01 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 41 6d 6f 75 6e 74 00 02 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 45 6e 61 62 6c 65 00 00 00 04 00 00 00 0b 00 00 00 6f 70 61 63 69 74 79 4d 61 70 00 01 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 41 6d 6f 75 6e 74 00 02 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 45 6e 61 62 6c 65 00 00 00 06 00 00 00 0e 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 00 01 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 09 00 00 00 0e 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 00 01 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 0a 00 00 00 0d 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 00 01 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 41 6d 6f 75 6e 74 00 02 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 45 6e 61 62 6c 65 00 00 00 05 00 00 00 11 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 00 01 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 41 6d 6f 75 6e 74 00 02 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 45 6e 61 62 6c 65 00 00 00 03 00 00 00 0c 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 00 01 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 02 00 00 00 } - 6 0x000c: (StorageRaw) { + Orphan[6] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 44 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [5] { - 0 0x0009: (StorageRaw) { + 44 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [5] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!..../... Hex: 08 00 00 00 04 00 00 21 e0 2e 03 00 2f 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 00 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000c: (StorageRaw) { + Orphan[4] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 45 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [5] { - 0 0x0001: (StorageRaw) { + 45 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [5] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 03 00 00 00 Int: 3 Float: 4.2039e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 02 00 } - 2 0x0002: (StorageContainer) [2] { + Orphan[2] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -2350,7 +2220,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } } - 3 0x0002: (StorageContainer) [2] { + Orphan[3] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -2363,7 +2233,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [2] { + Orphan[4] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -2376,45 +2246,40 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 46 0x0007: (SceneClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), samplers.dlh) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: -... - Hex: 2d 00 00 00 - Int: 45 - Float: 6.30584e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0200: (StorageRaw) { + 46 0x0007: (SamplerSuperClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), 0x00001110, Standard Samplers (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0200: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x39bf: (StorageContainer) [1] { + Orphan[1] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 0 String: Hex: } } } - 47 0x0008: (SceneClassUnknown: Standard, (0x00000002, 0x00000000), mtl.dlt) [6] { - 0 0x2034: (StorageRaw) { - Size: 36 - String: ....%...'...(...)...*...+...,....... - Hex: ff ff ff ff 25 00 00 00 27 00 00 00 28 00 00 00 29 00 00 00 2a 00 00 00 2b 00 00 00 2c 00 00 00 2e 00 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x21b0: (StorageContainer) [1] { + 47 0x0008: (MtlSuperClassUnknown: Standard, (0x00000002, 0x00000000), 0x00000c00, Standard Materials and Textures (Autodesk)) [4] { + References 0x2034: PARSED { + 1: (Texmaps, (0x00001200, 0x00000000)) + 2: (Blinn, (0x00000038, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) + 4: (ParamBlock2, (0x00000082, 0x00000000)) + 5: (ParamBlock2, (0x00000082, 0x00000000)) + 6: (ParamBlock2, (0x00000082, 0x00000000)) + 7: (ParamBlock2, (0x00000082, 0x00000000)) + 8: (Max 2.5 Star, (0x25773211, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: $... Hex: 24 00 00 00 Int: 36 Float: 5.04467e-44 } } - 3 0x4000: (StorageContainer) [4] { + Orphan[1] 0x4000: (StorageContainer) [4] { 0 0x4001: (StorageRaw) { Size: 24 String: 0.9. .-. .D.e.f.a.u.l.t. } @@ -2434,415 +2299,387 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } - 4 0x5300: (StorageRaw) { + Orphan[2] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 0d 00 00 00 Int: 13 Float: 1.82169e-44 } - 5 0x5600: (StorageContainer) [1] { + Orphan[3] 0x5600: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 48 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [6] { - 0 0x000b: (StorageRaw) { + 48 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [6] { + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: <).Z..B0`......!....1... Hex: 3c 29 06 5a 1e 0c 42 30 60 11 00 00 00 00 00 21 e0 2e 04 00 31 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 09 00 00 00 00 00 80 06 00 00 00 00 40 ff ff ff ff } - 5 0x000c: (StorageRaw) { + Orphan[5] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 49 0x0001: (SceneClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), ViewportManager.gup) [3] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: 0....... - Hex: 30 00 00 00 ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1000: (StorageRaw) { + 49 0x0001: (CustAttribSuperClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), 0x00001160, Viewport Manager for DirectX (Autodesk)) [1] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 50 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: 1... - Hex: 31 00 00 00 - Int: 49 - Float: 6.86636e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1030: (StorageRaw) { + 50 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ViewportManager, (0x5a06293c, 0x30420c1e)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: =... Hex: 3d 00 00 00 Int: 61 Float: 8.54792e-44 } - 3 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 51 0x0004: (SceneClassUnknown: Texmaps, (0x00001200, 0x00000000), mtl.dlt) [8] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: 0... - Hex: 30 00 00 00 - Int: 48 - Float: 6.72623e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5003: (StorageRaw) { + 51 0x0004: (TexmapContainerSuperClassUnknown: Texmaps, (0x00001200, 0x00000000), 0x00001080, Standard Materials and Textures (Autodesk)) [6] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5003: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x5108: (StorageRaw) { + Orphan[1] 0x5108: (StorageRaw) { Size: 4 String: ...> Hex: 9a 99 99 3e Int: 1050253722 Float: 0.3 } - 4 0x510c: (StorageRaw) { + Orphan[2] 0x510c: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x510d: (StorageRaw) { + Orphan[3] 0x510d: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x510e: (StorageRaw) { + Orphan[4] 0x510e: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x510f: (StorageRaw) { + Orphan[5] 0x510f: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 52 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 52 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....5... Hex: 05 00 00 00 00 00 00 21 e0 2e 0c 00 35 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 01 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ...............fff?fff?fff? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 66 66 66 3f 66 66 66 3f 66 66 66 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 27 String: ........................... Hex: 08 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0a 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 cc cc cc 3d } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 cd cc cc 3d } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 53 0x0005: (SceneClassUnknown: Blinn, (0x00000038, 0x00000000), mtl.dlt) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: 4... - Hex: 34 00 00 00 - Int: 52 - Float: 7.28675e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5300: (StorageRaw) { + 53 0x0005: (ShaderSuperClassUnknown: Blinn, (0x00000038, 0x00000000), 0x000010b0, Standard Materials and Textures (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x5020: (StorageContainer) [1] { + Orphan[1] 0x5020: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 54 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [8] { - 0 0x0009: (StorageRaw) { + 54 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [8] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....=... Hex: 08 00 00 00 00 00 00 21 e0 2e 06 00 3d 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 7 0x000c: (StorageRaw) { + Orphan[7] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 55 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 55 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....=... Hex: 08 00 00 00 01 00 00 21 e0 2e 0c 00 3d 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 3f 00 00 00 3f 00 00 00 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: .......)......@.... Hex: 03 00 0f 00 00 00 00 29 81 10 00 00 00 00 40 ff ff ff ff } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 06 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 c0 3f } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 07 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: .................@@ Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 40 40 } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 56 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [13] { - 0 0x0009: (StorageRaw) { + 56 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [13] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....=... Hex: 08 00 00 00 02 00 00 21 e0 2e 0b 00 3d 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 03 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@...= Hex: 04 00 00 00 00 00 00 00 92 00 00 00 00 00 40 cd cc cc 3d } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 12 0x000c: (StorageRaw) { + Orphan[12] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 57 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [7] { - 0 0x0009: (StorageRaw) { + 57 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [7] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....=... Hex: 08 00 00 00 03 00 00 21 e0 2e 04 00 3d 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 00 00 04 08 00 00 00 00 82 00 00 00 00 00 00 18 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 01 00 0f 08 00 00 00 01 81 00 00 00 00 00 00 18 00 00 00 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 139 String: ...................@...?@...?@...?@...?@...?@...?@...?@...?@...>@...?@...?@...?@....@....@....@....@...?@...?@...?@...?@...?@...?@...?@...? Hex: 02 00 06 08 00 00 00 00 92 00 00 00 00 00 00 18 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 9a 99 99 3e 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x0005: (StorageRaw) { + Orphan[5] 0x0005: (StorageRaw) { Size: 961 String: $.......ambientMap...........ambientMapAmount...........ambientMapEnable...........bumpMap...........bumpMapAmount...........bumpMapEnable...........diffuseMap...........diffuseMapAmount...........diffuseMapEnable...........displacementMap...........displacementMapAmount...........displacementMapEnable...........filterMap...........filterMapAmount...........filterMapEnable...........glossinessMap...........glossinessMapAmount...........glossinessMapEnable...........opacityMap...........opacityMapAmount...........opacityMapEnable...........reflectionMap...........reflectionMapAmount...........reflectionMapEnable...........refractionMap...........refractionMapAmount...........refractionMapEnable...........selfIllumMap...........selfIllumMapAmount...........selfIllumMapEnable...........specularLevelMap...........specularLevelMapAmount...........specularLevelMapEnable...........specularMap...........specularMapAmount...........specularMapEnable....... Hex: 24 00 00 00 0b 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 00 01 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 00 00 00 00 08 00 00 00 62 75 6d 70 4d 61 70 00 01 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 41 6d 6f 75 6e 74 00 02 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 45 6e 61 62 6c 65 00 00 00 08 00 00 00 0b 00 00 00 64 69 66 66 75 73 65 4d 61 70 00 01 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 41 6d 6f 75 6e 74 00 02 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 45 6e 61 62 6c 65 00 00 00 01 00 00 00 10 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 00 01 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 0b 00 00 00 0a 00 00 00 66 69 6c 74 65 72 4d 61 70 00 01 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 07 00 00 00 0e 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 00 01 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 41 6d 6f 75 6e 74 00 02 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 45 6e 61 62 6c 65 00 00 00 04 00 00 00 0b 00 00 00 6f 70 61 63 69 74 79 4d 61 70 00 01 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 41 6d 6f 75 6e 74 00 02 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 45 6e 61 62 6c 65 00 00 00 06 00 00 00 0e 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 00 01 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 09 00 00 00 0e 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 00 01 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 0a 00 00 00 0d 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 00 01 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 41 6d 6f 75 6e 74 00 02 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 45 6e 61 62 6c 65 00 00 00 05 00 00 00 11 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 00 01 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 41 6d 6f 75 6e 74 00 02 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 45 6e 61 62 6c 65 00 00 00 03 00 00 00 0c 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 00 01 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 02 00 00 00 } - 6 0x000c: (StorageRaw) { + Orphan[6] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 58 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [5] { - 0 0x0009: (StorageRaw) { + 58 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [5] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....=... Hex: 08 00 00 00 04 00 00 21 e0 2e 03 00 3d 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 00 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000c: (StorageRaw) { + Orphan[4] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 59 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [5] { - 0 0x0001: (StorageRaw) { + 59 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [5] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 03 00 00 00 Int: 3 Float: 4.2039e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 02 00 } - 2 0x0002: (StorageContainer) [2] { + Orphan[2] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -2855,7 +2692,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } } - 3 0x0002: (StorageContainer) [2] { + Orphan[3] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -2868,7 +2705,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [2] { + Orphan[4] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -2881,44 +2718,39 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 60 0x0007: (SceneClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), samplers.dlh) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: ;... - Hex: 3b 00 00 00 - Int: 59 - Float: 8.26766e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0200: (StorageRaw) { + 60 0x0007: (SamplerSuperClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), 0x00001110, Standard Samplers (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0200: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x39bf: (StorageContainer) [1] { + Orphan[1] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 24 String: M.a.x. .2...5. .S.t.a.r. } } } - 61 0x0008: (SceneClassUnknown: Standard, (0x00000002, 0x00000000), mtl.dlt) [6] { - 0 0x2034: (StorageRaw) { - Size: 36 - String: ....3...5...6...7...8...9...:...<... - Hex: ff ff ff ff 33 00 00 00 35 00 00 00 36 00 00 00 37 00 00 00 38 00 00 00 39 00 00 00 3a 00 00 00 3c 00 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x21b0: (StorageContainer) [1] { + 61 0x0008: (MtlSuperClassUnknown: Standard, (0x00000002, 0x00000000), 0x00000c00, Standard Materials and Textures (Autodesk)) [4] { + References 0x2034: PARSED { + 1: (Texmaps, (0x00001200, 0x00000000)) + 2: (Blinn, (0x00000038, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) + 4: (ParamBlock2, (0x00000082, 0x00000000)) + 5: (ParamBlock2, (0x00000082, 0x00000000)) + 6: (ParamBlock2, (0x00000082, 0x00000000)) + 7: (ParamBlock2, (0x00000082, 0x00000000)) + 8: (Max 2.5 Star, (0x25773211, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: 2... Hex: 32 00 00 00 Int: 50 Float: 7.00649e-44 } } - 3 0x4000: (StorageContainer) [4] { + Orphan[1] 0x4000: (StorageContainer) [4] { 0 0x4001: (StorageRaw) { Size: 24 String: 0.4. .-. .D.e.f.a.u.l.t. } @@ -2938,415 +2770,387 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } - 4 0x5300: (StorageRaw) { + Orphan[2] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 0d 00 00 00 Int: 13 Float: 1.82169e-44 } - 5 0x5600: (StorageContainer) [1] { + Orphan[3] 0x5600: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 62 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [6] { - 0 0x000b: (StorageRaw) { + 62 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [6] { + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: <).Z..B0`......!....?... Hex: 3c 29 06 5a 1e 0c 42 30 60 11 00 00 00 00 00 21 e0 2e 04 00 3f 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 09 00 00 00 00 00 80 06 00 00 00 00 40 ff ff ff ff } - 5 0x000c: (StorageRaw) { + Orphan[5] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 63 0x0001: (SceneClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), ViewportManager.gup) [3] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: >....... - Hex: 3e 00 00 00 ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1000: (StorageRaw) { + 63 0x0001: (CustAttribSuperClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), 0x00001160, Viewport Manager for DirectX (Autodesk)) [1] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 64 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: ?... - Hex: 3f 00 00 00 - Int: 63 - Float: 8.82818e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1030: (StorageRaw) { + 64 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ViewportManager, (0x5a06293c, 0x30420c1e)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: K... Hex: 4b 00 00 00 Int: 75 Float: 1.05097e-43 } - 3 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 65 0x0004: (SceneClassUnknown: Texmaps, (0x00001200, 0x00000000), mtl.dlt) [8] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: 0... - Hex: 30 00 00 00 - Int: 48 - Float: 6.72623e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5003: (StorageRaw) { + 65 0x0004: (TexmapContainerSuperClassUnknown: Texmaps, (0x00001200, 0x00000000), 0x00001080, Standard Materials and Textures (Autodesk)) [6] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5003: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x5108: (StorageRaw) { + Orphan[1] 0x5108: (StorageRaw) { Size: 4 String: ...> Hex: 9a 99 99 3e Int: 1050253722 Float: 0.3 } - 4 0x510c: (StorageRaw) { + Orphan[2] 0x510c: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x510d: (StorageRaw) { + Orphan[3] 0x510d: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x510e: (StorageRaw) { + Orphan[4] 0x510e: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x510f: (StorageRaw) { + Orphan[5] 0x510f: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 66 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 66 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....C... Hex: 05 00 00 00 00 00 00 21 e0 2e 0c 00 43 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 01 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ...............fff?fff?fff? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 66 66 66 3f 66 66 66 3f 66 66 66 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 27 String: ........................... Hex: 08 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0a 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 cc cc cc 3d } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 cd cc cc 3d } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 67 0x0005: (SceneClassUnknown: Blinn, (0x00000038, 0x00000000), mtl.dlt) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: B... - Hex: 42 00 00 00 - Int: 66 - Float: 9.24857e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5300: (StorageRaw) { + 67 0x0005: (ShaderSuperClassUnknown: Blinn, (0x00000038, 0x00000000), 0x000010b0, Standard Materials and Textures (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x5020: (StorageContainer) [1] { + Orphan[1] 0x5020: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 68 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [8] { - 0 0x0009: (StorageRaw) { + 68 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [8] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....K... Hex: 08 00 00 00 00 00 00 21 e0 2e 06 00 4b 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 7 0x000c: (StorageRaw) { + Orphan[7] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 69 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 69 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....K... Hex: 08 00 00 00 01 00 00 21 e0 2e 0c 00 4b 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 3f 00 00 00 3f 00 00 00 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: .......)......@.... Hex: 03 00 0f 00 00 00 00 29 81 10 00 00 00 00 40 ff ff ff ff } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 06 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 c0 3f } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 07 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: .................@@ Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 40 40 } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 70 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [13] { - 0 0x0009: (StorageRaw) { + 70 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [13] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....K... Hex: 08 00 00 00 02 00 00 21 e0 2e 0b 00 4b 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 03 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@...= Hex: 04 00 00 00 00 00 00 00 92 00 00 00 00 00 40 cd cc cc 3d } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 12 0x000c: (StorageRaw) { + Orphan[12] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 71 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [7] { - 0 0x0009: (StorageRaw) { + 71 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [7] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....K... Hex: 08 00 00 00 03 00 00 21 e0 2e 04 00 4b 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 00 00 04 08 00 00 00 00 82 00 00 00 00 00 00 18 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 01 00 0f 08 00 00 00 01 81 00 00 00 00 00 00 18 00 00 00 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 139 String: ...................@...?@...?@...?@...?@...?@...?@...?@...?@...>@...?@...?@...?@....@....@....@....@...?@...?@...?@...?@...?@...?@...?@...? Hex: 02 00 06 08 00 00 00 00 92 00 00 00 00 00 00 18 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 9a 99 99 3e 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x0005: (StorageRaw) { + Orphan[5] 0x0005: (StorageRaw) { Size: 961 String: $.......ambientMap...........ambientMapAmount...........ambientMapEnable...........bumpMap...........bumpMapAmount...........bumpMapEnable...........diffuseMap...........diffuseMapAmount...........diffuseMapEnable...........displacementMap...........displacementMapAmount...........displacementMapEnable...........filterMap...........filterMapAmount...........filterMapEnable...........glossinessMap...........glossinessMapAmount...........glossinessMapEnable...........opacityMap...........opacityMapAmount...........opacityMapEnable...........reflectionMap...........reflectionMapAmount...........reflectionMapEnable...........refractionMap...........refractionMapAmount...........refractionMapEnable...........selfIllumMap...........selfIllumMapAmount...........selfIllumMapEnable...........specularLevelMap...........specularLevelMapAmount...........specularLevelMapEnable...........specularMap...........specularMapAmount...........specularMapEnable....... Hex: 24 00 00 00 0b 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 00 01 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 00 00 00 00 08 00 00 00 62 75 6d 70 4d 61 70 00 01 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 41 6d 6f 75 6e 74 00 02 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 45 6e 61 62 6c 65 00 00 00 08 00 00 00 0b 00 00 00 64 69 66 66 75 73 65 4d 61 70 00 01 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 41 6d 6f 75 6e 74 00 02 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 45 6e 61 62 6c 65 00 00 00 01 00 00 00 10 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 00 01 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 0b 00 00 00 0a 00 00 00 66 69 6c 74 65 72 4d 61 70 00 01 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 07 00 00 00 0e 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 00 01 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 41 6d 6f 75 6e 74 00 02 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 45 6e 61 62 6c 65 00 00 00 04 00 00 00 0b 00 00 00 6f 70 61 63 69 74 79 4d 61 70 00 01 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 41 6d 6f 75 6e 74 00 02 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 45 6e 61 62 6c 65 00 00 00 06 00 00 00 0e 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 00 01 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 09 00 00 00 0e 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 00 01 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 0a 00 00 00 0d 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 00 01 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 41 6d 6f 75 6e 74 00 02 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 45 6e 61 62 6c 65 00 00 00 05 00 00 00 11 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 00 01 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 41 6d 6f 75 6e 74 00 02 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 45 6e 61 62 6c 65 00 00 00 03 00 00 00 0c 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 00 01 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 02 00 00 00 } - 6 0x000c: (StorageRaw) { + Orphan[6] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 72 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [5] { - 0 0x0009: (StorageRaw) { + 72 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [5] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....K... Hex: 08 00 00 00 04 00 00 21 e0 2e 03 00 4b 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 00 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000c: (StorageRaw) { + Orphan[4] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 73 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [5] { - 0 0x0001: (StorageRaw) { + 73 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [5] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 03 00 00 00 Int: 3 Float: 4.2039e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 02 00 } - 2 0x0002: (StorageContainer) [2] { + Orphan[2] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -3359,7 +3163,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } } - 3 0x0002: (StorageContainer) [2] { + Orphan[3] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -3372,7 +3176,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [2] { + Orphan[4] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -3385,44 +3189,39 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 74 0x0007: (SceneClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), samplers.dlh) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: I... - Hex: 49 00 00 00 - Int: 73 - Float: 1.02295e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0200: (StorageRaw) { + 74 0x0007: (SamplerSuperClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), 0x00001110, Standard Samplers (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0200: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x39bf: (StorageContainer) [1] { + Orphan[1] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 24 String: M.a.x. .2...5. .S.t.a.r. } } } - 75 0x0008: (SceneClassUnknown: Standard, (0x00000002, 0x00000000), mtl.dlt) [6] { - 0 0x2034: (StorageRaw) { - Size: 36 - String: ....A...C...D...E...F...G...H...J... - Hex: ff ff ff ff 41 00 00 00 43 00 00 00 44 00 00 00 45 00 00 00 46 00 00 00 47 00 00 00 48 00 00 00 4a 00 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x21b0: (StorageContainer) [1] { + 75 0x0008: (MtlSuperClassUnknown: Standard, (0x00000002, 0x00000000), 0x00000c00, Standard Materials and Textures (Autodesk)) [4] { + References 0x2034: PARSED { + 1: (Texmaps, (0x00001200, 0x00000000)) + 2: (Blinn, (0x00000038, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) + 4: (ParamBlock2, (0x00000082, 0x00000000)) + 5: (ParamBlock2, (0x00000082, 0x00000000)) + 6: (ParamBlock2, (0x00000082, 0x00000000)) + 7: (ParamBlock2, (0x00000082, 0x00000000)) + 8: (Max 2.5 Star, (0x25773211, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: @... Hex: 40 00 00 00 Int: 64 Float: 8.96831e-44 } } - 3 0x4000: (StorageContainer) [4] { + Orphan[1] 0x4000: (StorageContainer) [4] { 0 0x4001: (StorageRaw) { Size: 24 String: 0.5. .-. .D.e.f.a.u.l.t. } @@ -3442,415 +3241,387 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } - 4 0x5300: (StorageRaw) { + Orphan[2] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 0d 00 00 00 Int: 13 Float: 1.82169e-44 } - 5 0x5600: (StorageContainer) [1] { + Orphan[3] 0x5600: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 76 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [6] { - 0 0x000b: (StorageRaw) { + 76 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [6] { + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: <).Z..B0`......!....M... Hex: 3c 29 06 5a 1e 0c 42 30 60 11 00 00 00 00 00 21 e0 2e 04 00 4d 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 09 00 00 00 00 00 80 06 00 00 00 00 40 ff ff ff ff } - 5 0x000c: (StorageRaw) { + Orphan[5] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 77 0x0001: (SceneClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), ViewportManager.gup) [3] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: L....... - Hex: 4c 00 00 00 ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1000: (StorageRaw) { + 77 0x0001: (CustAttribSuperClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), 0x00001160, Viewport Manager for DirectX (Autodesk)) [1] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 78 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: M... - Hex: 4d 00 00 00 - Int: 77 - Float: 1.079e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1030: (StorageRaw) { + 78 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ViewportManager, (0x5a06293c, 0x30420c1e)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: Y... Hex: 59 00 00 00 Int: 89 Float: 1.24716e-43 } - 3 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 79 0x0004: (SceneClassUnknown: Texmaps, (0x00001200, 0x00000000), mtl.dlt) [8] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: 0... - Hex: 30 00 00 00 - Int: 48 - Float: 6.72623e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5003: (StorageRaw) { + 79 0x0004: (TexmapContainerSuperClassUnknown: Texmaps, (0x00001200, 0x00000000), 0x00001080, Standard Materials and Textures (Autodesk)) [6] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5003: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x5108: (StorageRaw) { + Orphan[1] 0x5108: (StorageRaw) { Size: 4 String: ...> Hex: 9a 99 99 3e Int: 1050253722 Float: 0.3 } - 4 0x510c: (StorageRaw) { + Orphan[2] 0x510c: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x510d: (StorageRaw) { + Orphan[3] 0x510d: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x510e: (StorageRaw) { + Orphan[4] 0x510e: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x510f: (StorageRaw) { + Orphan[5] 0x510f: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 80 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 80 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....Q... Hex: 05 00 00 00 00 00 00 21 e0 2e 0c 00 51 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 01 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ...............fff?fff?fff? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 66 66 66 3f 66 66 66 3f 66 66 66 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 27 String: ........................... Hex: 08 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0a 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 cc cc cc 3d } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 cd cc cc 3d } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 81 0x0005: (SceneClassUnknown: Blinn, (0x00000038, 0x00000000), mtl.dlt) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: P... - Hex: 50 00 00 00 - Int: 80 - Float: 1.12104e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5300: (StorageRaw) { + 81 0x0005: (ShaderSuperClassUnknown: Blinn, (0x00000038, 0x00000000), 0x000010b0, Standard Materials and Textures (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x5020: (StorageContainer) [1] { + Orphan[1] 0x5020: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 82 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [8] { - 0 0x0009: (StorageRaw) { + 82 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [8] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....Y... Hex: 08 00 00 00 00 00 00 21 e0 2e 06 00 59 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 7 0x000c: (StorageRaw) { + Orphan[7] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 83 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 83 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....Y... Hex: 08 00 00 00 01 00 00 21 e0 2e 0c 00 59 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 3f 00 00 00 3f 00 00 00 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: .......)......@.... Hex: 03 00 0f 00 00 00 00 29 81 10 00 00 00 00 40 ff ff ff ff } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 06 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 c0 3f } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 07 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: .................@@ Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 40 40 } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 84 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [13] { - 0 0x0009: (StorageRaw) { + 84 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [13] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....Y... Hex: 08 00 00 00 02 00 00 21 e0 2e 0b 00 59 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 03 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@...= Hex: 04 00 00 00 00 00 00 00 92 00 00 00 00 00 40 cd cc cc 3d } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 12 0x000c: (StorageRaw) { + Orphan[12] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 85 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [7] { - 0 0x0009: (StorageRaw) { + 85 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [7] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....Y... Hex: 08 00 00 00 03 00 00 21 e0 2e 04 00 59 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 00 00 04 08 00 00 00 00 82 00 00 00 00 00 00 18 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 01 00 0f 08 00 00 00 01 81 00 00 00 00 00 00 18 00 00 00 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 139 String: ...................@...?@...?@...?@...?@...?@...?@...?@...?@...>@...?@...?@...?@....@....@....@....@...?@...?@...?@...?@...?@...?@...?@...? Hex: 02 00 06 08 00 00 00 00 92 00 00 00 00 00 00 18 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 9a 99 99 3e 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x0005: (StorageRaw) { + Orphan[5] 0x0005: (StorageRaw) { Size: 961 String: $.......ambientMap...........ambientMapAmount...........ambientMapEnable...........bumpMap...........bumpMapAmount...........bumpMapEnable...........diffuseMap...........diffuseMapAmount...........diffuseMapEnable...........displacementMap...........displacementMapAmount...........displacementMapEnable...........filterMap...........filterMapAmount...........filterMapEnable...........glossinessMap...........glossinessMapAmount...........glossinessMapEnable...........opacityMap...........opacityMapAmount...........opacityMapEnable...........reflectionMap...........reflectionMapAmount...........reflectionMapEnable...........refractionMap...........refractionMapAmount...........refractionMapEnable...........selfIllumMap...........selfIllumMapAmount...........selfIllumMapEnable...........specularLevelMap...........specularLevelMapAmount...........specularLevelMapEnable...........specularMap...........specularMapAmount...........specularMapEnable....... Hex: 24 00 00 00 0b 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 00 01 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 00 00 00 00 08 00 00 00 62 75 6d 70 4d 61 70 00 01 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 41 6d 6f 75 6e 74 00 02 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 45 6e 61 62 6c 65 00 00 00 08 00 00 00 0b 00 00 00 64 69 66 66 75 73 65 4d 61 70 00 01 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 41 6d 6f 75 6e 74 00 02 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 45 6e 61 62 6c 65 00 00 00 01 00 00 00 10 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 00 01 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 0b 00 00 00 0a 00 00 00 66 69 6c 74 65 72 4d 61 70 00 01 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 07 00 00 00 0e 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 00 01 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 41 6d 6f 75 6e 74 00 02 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 45 6e 61 62 6c 65 00 00 00 04 00 00 00 0b 00 00 00 6f 70 61 63 69 74 79 4d 61 70 00 01 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 41 6d 6f 75 6e 74 00 02 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 45 6e 61 62 6c 65 00 00 00 06 00 00 00 0e 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 00 01 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 09 00 00 00 0e 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 00 01 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 0a 00 00 00 0d 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 00 01 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 41 6d 6f 75 6e 74 00 02 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 45 6e 61 62 6c 65 00 00 00 05 00 00 00 11 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 00 01 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 41 6d 6f 75 6e 74 00 02 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 45 6e 61 62 6c 65 00 00 00 03 00 00 00 0c 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 00 01 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 02 00 00 00 } - 6 0x000c: (StorageRaw) { + Orphan[6] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 86 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [5] { - 0 0x0009: (StorageRaw) { + 86 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [5] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....Y... Hex: 08 00 00 00 04 00 00 21 e0 2e 03 00 59 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 00 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000c: (StorageRaw) { + Orphan[4] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 87 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [5] { - 0 0x0001: (StorageRaw) { + 87 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [5] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 03 00 00 00 Int: 3 Float: 4.2039e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 02 00 } - 2 0x0002: (StorageContainer) [2] { + Orphan[2] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -3863,7 +3634,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } } - 3 0x0002: (StorageContainer) [2] { + Orphan[3] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -3876,7 +3647,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [2] { + Orphan[4] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -3889,44 +3660,39 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 88 0x0007: (SceneClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), samplers.dlh) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: W... - Hex: 57 00 00 00 - Int: 87 - Float: 1.21913e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0200: (StorageRaw) { + 88 0x0007: (SamplerSuperClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), 0x00001110, Standard Samplers (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0200: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x39bf: (StorageContainer) [1] { + Orphan[1] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 24 String: M.a.x. .2...5. .S.t.a.r. } } } - 89 0x0008: (SceneClassUnknown: Standard, (0x00000002, 0x00000000), mtl.dlt) [6] { - 0 0x2034: (StorageRaw) { - Size: 36 - String: ....O...Q...R...S...T...U...V...X... - Hex: ff ff ff ff 4f 00 00 00 51 00 00 00 52 00 00 00 53 00 00 00 54 00 00 00 55 00 00 00 56 00 00 00 58 00 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x21b0: (StorageContainer) [1] { + 89 0x0008: (MtlSuperClassUnknown: Standard, (0x00000002, 0x00000000), 0x00000c00, Standard Materials and Textures (Autodesk)) [4] { + References 0x2034: PARSED { + 1: (Texmaps, (0x00001200, 0x00000000)) + 2: (Blinn, (0x00000038, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) + 4: (ParamBlock2, (0x00000082, 0x00000000)) + 5: (ParamBlock2, (0x00000082, 0x00000000)) + 6: (ParamBlock2, (0x00000082, 0x00000000)) + 7: (ParamBlock2, (0x00000082, 0x00000000)) + 8: (Max 2.5 Star, (0x25773211, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: N... Hex: 4e 00 00 00 Int: 78 Float: 1.09301e-43 } } - 3 0x4000: (StorageContainer) [4] { + Orphan[1] 0x4000: (StorageContainer) [4] { 0 0x4001: (StorageRaw) { Size: 24 String: 0.6. .-. .D.e.f.a.u.l.t. } @@ -3946,337 +3712,304 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } - 4 0x5300: (StorageRaw) { + Orphan[2] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 0d 00 00 00 Int: 13 Float: 1.82169e-44 } - 5 0x5600: (StorageContainer) [1] { + Orphan[3] 0x5600: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 90 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [6] { - 0 0x000b: (StorageRaw) { + 90 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [6] { + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: <).Z..B0`......!....[... Hex: 3c 29 06 5a 1e 0c 42 30 60 11 00 00 00 00 00 21 e0 2e 04 00 5b 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 09 00 00 00 00 00 80 06 00 00 00 00 40 ff ff ff ff } - 5 0x000c: (StorageRaw) { + Orphan[5] 0x000c: (StorageRaw) { Size: 10 String: ........&. Hex: 01 00 00 00 01 00 00 00 26 03 } } - 91 0x0001: (SceneClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), ViewportManager.gup) [3] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: Z....... - Hex: 5a 00 00 00 ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1000: (StorageRaw) { + 91 0x0001: (CustAttribSuperClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), 0x00001160, Viewport Manager for DirectX (Autodesk)) [1] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 92 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [41] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: .... - Hex: 09 00 00 00 - Int: 9 - Float: 1.26117e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x000b: (StorageRaw) { + 92 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [39] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: Y..!...%`......!..%.]... Hex: 59 b4 8a 21 80 89 dc 25 60 11 00 00 00 00 00 21 e0 2e 25 00 5d 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 00 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 15 String: ......@ ......@ Hex: 01 00 0f 00 00 00 40 20 81 10 00 00 00 00 40 } - 5 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 15 String: ......@ ......@ Hex: 02 00 0f 00 00 00 40 20 81 10 00 00 00 00 40 } - 6 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 15 String: ......@ ......@ Hex: 03 00 0f 00 00 00 40 20 81 10 00 00 00 00 40 } - 7 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 15 String: ......@.......@ Hex: 04 00 0f 00 00 00 40 00 81 10 00 00 00 00 40 } - 8 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 15 String: ......@.......@ Hex: 05 00 0f 00 00 00 40 00 81 10 00 00 00 00 40 } - 9 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 15 String: ......@.......@ Hex: 06 00 0f 00 00 00 40 00 81 10 00 00 00 00 40 } - 10 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 15 String: ......@ ......@ Hex: 07 00 0f 00 00 00 40 20 81 10 00 00 00 00 40 } - 11 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 15 String: ......@.......@ Hex: 08 00 0f 00 00 00 40 00 81 10 00 00 00 00 40 } - 12 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 15 String: ......@.......@ Hex: 09 00 0f 00 00 00 40 00 81 10 00 00 00 00 40 } - 13 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: d.............@.... Hex: 64 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 14 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: e.............@.... Hex: 65 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 15 0x000e: (StorageRaw) { + Orphan[13] 0x000e: (StorageRaw) { Size: 19 String: f.............@.... Hex: 66 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 16 0x000e: (StorageRaw) { + Orphan[14] 0x000e: (StorageRaw) { Size: 19 String: g.............@.... Hex: 67 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 17 0x000e: (StorageRaw) { + Orphan[15] 0x000e: (StorageRaw) { Size: 19 String: h.............@.... Hex: 68 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 18 0x000e: (StorageRaw) { + Orphan[16] 0x000e: (StorageRaw) { Size: 19 String: i.............@.... Hex: 69 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 19 0x000e: (StorageRaw) { + Orphan[17] 0x000e: (StorageRaw) { Size: 19 String: j.............@.... Hex: 6a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 20 0x000e: (StorageRaw) { + Orphan[18] 0x000e: (StorageRaw) { Size: 19 String: k.............@.... Hex: 6b 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 21 0x000e: (StorageRaw) { + Orphan[19] 0x000e: (StorageRaw) { Size: 19 String: l.............@.... Hex: 6c 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 22 0x000e: (StorageRaw) { + Orphan[20] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: c8 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 23 0x000e: (StorageRaw) { + Orphan[21] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: c9 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 24 0x000e: (StorageRaw) { + Orphan[22] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: ca 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 25 0x000e: (StorageRaw) { + Orphan[23] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: cb 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 26 0x000e: (StorageRaw) { + Orphan[24] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: cc 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 27 0x000e: (StorageRaw) { + Orphan[25] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: cd 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 28 0x000e: (StorageRaw) { + Orphan[26] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: ce 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 29 0x000e: (StorageRaw) { + Orphan[27] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: cf 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 30 0x000e: (StorageRaw) { + Orphan[28] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: d0 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 31 0x000e: (StorageRaw) { + Orphan[29] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: dc 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 32 0x000e: (StorageRaw) { + Orphan[30] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: dd 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 33 0x000e: (StorageRaw) { + Orphan[31] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: de 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 34 0x000e: (StorageRaw) { + Orphan[32] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: df 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 35 0x000e: (StorageRaw) { + Orphan[33] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: e0 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 36 0x000e: (StorageRaw) { + Orphan[34] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: e1 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 37 0x000e: (StorageRaw) { + Orphan[35] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: e2 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 38 0x000e: (StorageRaw) { + Orphan[36] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: e3 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 39 0x000e: (StorageRaw) { + Orphan[37] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: e4 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 40 0x000c: (StorageRaw) { + Orphan[38] 0x000c: (StorageRaw) { Size: 10 String: ........&. Hex: 01 00 00 00 00 00 00 00 26 03 } } - 93 0x0002: (SceneClassUnknown: mental ray: material custom attribute, (0x218ab459, 0x25dc8980), mrMaterialAttribs.gup) [2] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: \... - Hex: 5c 00 00 00 - Int: 92 - Float: 1.28919e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } } - 94 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [4] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: [...]... } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1030: (StorageRaw) { + 93 0x0002: (CustAttribSuperClassUnknown: mental ray: material custom attribute, (0x218ab459, 0x25dc8980), 0x00001160, mental ray: Material Custom Attributes (Autodesk)) [0] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } } + 94 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ViewportManager, (0x5a06293c, 0x30420c1e)) + 1: (mental ray: material custom attribute, (0x218ab459, 0x25dc8980)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: .... Hex: 86 00 00 00 Int: 134 Float: 1.87774e-43 } - 3 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } } - 95 0x0009: (SceneClassUnknown: Bezier Float, (0x00002007, 0x00000000), Builtin) [11] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: .... - Hex: 02 00 00 00 - Int: 2 - Float: 2.8026e-45 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x2501: (StorageRaw) { + 95 0x0009: (ControlFloatSuperClassUnknown: Bezier Float, (0x00002007, 0x00000000), 0x00009003, Builtin) [9] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x2501: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 80 3f Int: 1065353216 Float: 1 } - 3 0x2500: (StorageRaw) { + Orphan[1] 0x2500: (StorageRaw) { Size: 8 String: ........ Hex: 00 00 00 80 ff ff ff 7f } - 4 0x3002: (StorageRaw) { + Orphan[2] 0x3002: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x3003: (StorageRaw) { + Orphan[3] 0x3003: (StorageRaw) { Size: 8 String: ........ Hex: 00 00 00 80 00 00 00 80 } - 6 0x2532: (StorageRaw) { + Orphan[4] 0x2532: (StorageRaw) { Size: 0 String: Hex: } - 7 0x2533: (StorageRaw) { + Orphan[5] 0x2533: (StorageRaw) { Size: 0 String: Hex: } - 8 0x2534: (StorageRaw) { + Orphan[6] 0x2534: (StorageRaw) { Size: 0 String: Hex: } - 9 0x3005: (StorageRaw) { + Orphan[7] 0x3005: (StorageRaw) { Size: 4 String: .... Hex: 86 01 00 00 Int: 390 Float: 5.46506e-43 } - 10 0x2535: (StorageRaw) { + Orphan[8] 0x2535: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 96 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [2] { - 0 0x1030: (StorageRaw) { + 96 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: g... Hex: 67 00 00 00 Int: 103 Float: 1.44334e-43 } - 1 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 97 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [15] { - 0 0x0001: (StorageRaw) { + 97 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [15] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 0d 00 00 00 Int: 13 Float: 1.82169e-44 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 06 00 } - 2 0x0002: (StorageContainer) [3] { + Orphan[2] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -4293,7 +4026,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 3 0x0002: (StorageContainer) [3] { + Orphan[3] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -4310,7 +4043,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [3] { + Orphan[4] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -4327,7 +4060,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 80 3f Int: 1065353216 Float: 1 } } - 5 0x0002: (StorageContainer) [3] { + Orphan[5] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -4344,7 +4077,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 80 3f Int: 1065353216 Float: 1 } } - 6 0x0002: (StorageContainer) [3] { + Orphan[6] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -4361,7 +4094,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 7 0x0002: (StorageContainer) [3] { + Orphan[7] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -4378,7 +4111,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 8 0x0002: (StorageContainer) [3] { + Orphan[8] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -4395,7 +4128,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 9 0x0002: (StorageContainer) [3] { + Orphan[9] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -4412,7 +4145,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 80 3f Int: 1065353216 Float: 1 } } - 10 0x0002: (StorageContainer) [3] { + Orphan[10] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -4429,7 +4162,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 80 3f Int: 1065353216 Float: 1 } } - 11 0x0002: (StorageContainer) [3] { + Orphan[11] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -4446,7 +4179,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 80 3f Int: 1065353216 Float: 1 } } - 12 0x0002: (StorageContainer) [3] { + Orphan[12] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -4463,7 +4196,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 13 0x0002: (StorageContainer) [3] { + Orphan[13] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -4480,7 +4213,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 14 0x0002: (StorageContainer) [3] { + Orphan[14] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -4497,129 +4230,121 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 98 0x000a: (SceneClassUnknown: Placement, (0x00000100, 0x00000000), mtlgen.dlt) [9] { - 0 0x2150: (AppData) [2] { - 0 0x0100: (CStorageValue) { 1 } - 1 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + 98 0x000a: (UVGenSuperClassUnknown: Placement, (0x00000100, 0x00000000), 0x00000c20, Default Materials and Textures (Autodesk)) [6] { + AppData: (AppData) [1] PARSED { + Entries[0]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x00000100, 0x00000000) SuperClassId: 3104 SubId: 0 Size: 4 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 1 0x2034: (StorageRaw) { - Size: 4 - String: a... - Hex: 61 00 00 00 - Int: 97 - Float: 1.35926e-43 } - 2 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 3 0x9002: (StorageRaw) { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x9002: (StorageRaw) { Size: 4 String: ...P Hex: 03 00 00 50 Int: 1342177283 Float: 8.58994e+09 } - 4 0x9003: (StorageRaw) { + Orphan[1] 0x9003: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x9009: (StorageRaw) { + Orphan[2] 0x9009: (StorageRaw) { Size: 4 String: .... Hex: 04 00 00 00 Int: 4 Float: 5.60519e-45 } - 6 0x9005: (StorageRaw) { + Orphan[3] 0x9005: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x9006: (StorageRaw) { + Orphan[4] 0x9006: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 8 0x900b: (StorageRaw) { + Orphan[5] 0x900b: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 99 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [21] { - 0 0x0009: (StorageRaw) { + 99 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [21] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....g... Hex: 0c 00 00 00 00 00 00 21 e0 2e 11 00 67 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 00 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 02 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 03 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 04 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 01 00 00 00 00 00 92 00 00 00 00 00 40 01 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0a 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0b 00 01 00 00 00 00 00 92 00 00 00 00 00 40 02 00 00 00 } - 13 0x000e: (StorageRaw) { + Orphan[13] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0c 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 14 0x000e: (StorageRaw) { + Orphan[14] 0x000e: (StorageRaw) { Size: 16 String: ..............@. Hex: 0d 00 10 00 00 00 00 00 80 00 00 00 00 00 40 01 } - 15 0x0003: (StorageContainer) [3] { + Orphan[15] 0x0003: (StorageContainer) [3] { 0 0x1201: (StorageRaw) { Size: 70 String: .......?...>................@..............................?.......... @@ -4632,39 +4357,39 @@ Entries[56]: (ClassEntry) [2] PARSED { 2 0x1240: (StorageRaw) { Size: 28 String: P.N.G. .I.m.a.g.e. .F.i.l.e. } } - 16 0x000e: (StorageRaw) { + Orphan[16] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0e 00 12 00 00 00 00 03 81 08 00 00 00 00 40 ff ff ff ff } - 17 0x000e: (StorageRaw) { + Orphan[17] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0f 00 12 00 00 00 00 03 81 08 00 00 00 00 40 ff ff ff ff } - 18 0x000e: (StorageRaw) { + Orphan[18] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 10 00 09 00 00 00 02 00 80 00 00 00 02 00 40 fe ff ff ff } - 19 0x000f: (StorageContainer) [1] { + Orphan[19] 0x000f: (StorageContainer) [1] { 0 0x0002: (StorageRaw) { Size: 16 String: .R3....K...[..R9 Hex: 1d 52 33 cb ba d8 80 4b 96 bb 05 5b e6 e7 52 39 } } - 20 0x000c: (StorageRaw) { + Orphan[20] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 100 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [6] { - 0 0x0001: (StorageRaw) { + 100 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [6] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 04 00 00 00 Int: 4 Float: 5.60519e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 03 00 } - 2 0x0002: (StorageContainer) [3] { + Orphan[2] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -4681,7 +4406,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 80 3f Int: 1065353216 Float: 1 } } - 3 0x0002: (StorageContainer) [3] { + Orphan[3] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -4698,7 +4423,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [3] { + Orphan[4] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -4715,7 +4440,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 80 3f Int: 1065353216 Float: 1 } } - 5 0x0002: (StorageContainer) [3] { + Orphan[5] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -4732,62 +4457,56 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 80 3f Int: 1065353216 Float: 1 } } } - 101 0x000b: (SceneClassUnknown: Output, (0x00000100, 0x00000000), mtlgen.dlt) [3] { - 0 0x2034: (StorageRaw) { - Size: 12 - String: d........... - Hex: 64 00 00 00 ff ff ff ff ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0002: (StorageRaw) { + 101 0x000b: (TextureOutputSuperClassUnknown: Output, (0x00000100, 0x00000000), 0x00000c40, Default Materials and Textures (Autodesk)) [1] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0002: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 102 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [6] { - 0 0x0009: (StorageRaw) { + 102 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [6] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....g... Hex: 0c 00 00 00 01 00 00 21 e0 2e 04 00 67 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 0c 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@...? Hex: 01 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000c: (StorageRaw) { + Orphan[5] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 103 0x000c: (SceneClassUnknown: Bitmap, (0x00000240, 0x00000000), mtl.dlt) [4] { - 0 0x2034: (StorageRaw) { - Size: 16 - String: b...c...e...f... } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x21b0: (StorageContainer) [1] { + 103 0x000c: (TexmapSuperClassUnknown: Bitmap, (0x00000240, 0x00000000), 0x00000c10, Standard Materials and Textures (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (Placement, (0x00000100, 0x00000000)) + 1: (ParamBlock2, (0x00000082, 0x00000000)) + 2: (Output, (0x00000100, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: `... Hex: 60 00 00 00 Int: 96 Float: 1.34525e-43 } } - 3 0x4000: (StorageContainer) [4] { + Orphan[1] 0x4000: (StorageContainer) [4] { 0 0x4001: (StorageRaw) { Size: 12 String: M.a.p. .#.0. } @@ -4807,141 +4526,123 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } } - 104 0x0009: (SceneClassUnknown: Bezier Float, (0x00002007, 0x00000000), Builtin) [11] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: .... - Hex: 02 00 00 00 - Int: 2 - Float: 2.8026e-45 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x2501: (StorageRaw) { + 104 0x0009: (ControlFloatSuperClassUnknown: Bezier Float, (0x00002007, 0x00000000), 0x00009003, Builtin) [9] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x2501: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 80 3f Int: 1065353216 Float: 1 } - 3 0x2500: (StorageRaw) { + Orphan[1] 0x2500: (StorageRaw) { Size: 8 String: ........ Hex: 00 00 00 80 ff ff ff 7f } - 4 0x3002: (StorageRaw) { + Orphan[2] 0x3002: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x3003: (StorageRaw) { + Orphan[3] 0x3003: (StorageRaw) { Size: 8 String: ........ Hex: 00 00 00 80 00 00 00 80 } - 6 0x2532: (StorageRaw) { + Orphan[4] 0x2532: (StorageRaw) { Size: 0 String: Hex: } - 7 0x2533: (StorageRaw) { + Orphan[5] 0x2533: (StorageRaw) { Size: 0 String: Hex: } - 8 0x2534: (StorageRaw) { + Orphan[6] 0x2534: (StorageRaw) { Size: 0 String: Hex: } - 9 0x3005: (StorageRaw) { + Orphan[7] 0x3005: (StorageRaw) { Size: 4 String: .... Hex: 86 01 00 00 Int: 390 Float: 5.46506e-43 } - 10 0x2535: (StorageRaw) { + Orphan[8] 0x2535: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 105 0x0009: (SceneClassUnknown: Bezier Float, (0x00002007, 0x00000000), Builtin) [11] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: .... - Hex: 02 00 00 00 - Int: 2 - Float: 2.8026e-45 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x2501: (StorageRaw) { + 105 0x0009: (ControlFloatSuperClassUnknown: Bezier Float, (0x00002007, 0x00000000), 0x00009003, Builtin) [9] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x2501: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 80 3f Int: 1065353216 Float: 1 } - 3 0x2500: (StorageRaw) { + Orphan[1] 0x2500: (StorageRaw) { Size: 8 String: ........ Hex: 00 00 00 80 ff ff ff 7f } - 4 0x3002: (StorageRaw) { + Orphan[2] 0x3002: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x3003: (StorageRaw) { + Orphan[3] 0x3003: (StorageRaw) { Size: 8 String: ........ Hex: 00 00 00 80 00 00 00 80 } - 6 0x2532: (StorageRaw) { + Orphan[4] 0x2532: (StorageRaw) { Size: 0 String: Hex: } - 7 0x2533: (StorageRaw) { + Orphan[5] 0x2533: (StorageRaw) { Size: 0 String: Hex: } - 8 0x2534: (StorageRaw) { + Orphan[6] 0x2534: (StorageRaw) { Size: 0 String: Hex: } - 9 0x3005: (StorageRaw) { + Orphan[7] 0x3005: (StorageRaw) { Size: 4 String: .... Hex: 86 01 00 00 Int: 390 Float: 5.46506e-43 } - 10 0x2535: (StorageRaw) { + Orphan[8] 0x2535: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 106 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [2] { - 0 0x1030: (StorageRaw) { + 106 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: q... Hex: 71 00 00 00 Int: 113 Float: 1.58347e-43 } - 1 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 107 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [15] { - 0 0x0001: (StorageRaw) { + 107 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [15] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 0d 00 00 00 Int: 13 Float: 1.82169e-44 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 06 00 } - 2 0x0002: (StorageContainer) [3] { + Orphan[2] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -4958,7 +4659,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 3 0x0002: (StorageContainer) [3] { + Orphan[3] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -4975,7 +4676,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [3] { + Orphan[4] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -4992,7 +4693,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 80 3f Int: 1065353216 Float: 1 } } - 5 0x0002: (StorageContainer) [3] { + Orphan[5] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -5009,7 +4710,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 80 3f Int: 1065353216 Float: 1 } } - 6 0x0002: (StorageContainer) [3] { + Orphan[6] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -5026,7 +4727,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 7 0x0002: (StorageContainer) [3] { + Orphan[7] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -5043,7 +4744,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 8 0x0002: (StorageContainer) [3] { + Orphan[8] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -5060,7 +4761,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 9 0x0002: (StorageContainer) [3] { + Orphan[9] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -5077,7 +4778,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 80 3f Int: 1065353216 Float: 1 } } - 10 0x0002: (StorageContainer) [3] { + Orphan[10] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -5094,7 +4795,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 80 3f Int: 1065353216 Float: 1 } } - 11 0x0002: (StorageContainer) [3] { + Orphan[11] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -5111,7 +4812,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 80 3f Int: 1065353216 Float: 1 } } - 12 0x0002: (StorageContainer) [3] { + Orphan[12] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -5128,7 +4829,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 13 0x0002: (StorageContainer) [3] { + Orphan[13] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -5145,7 +4846,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 14 0x0002: (StorageContainer) [3] { + Orphan[14] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -5162,129 +4863,121 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 108 0x000a: (SceneClassUnknown: Placement, (0x00000100, 0x00000000), mtlgen.dlt) [9] { - 0 0x2150: (AppData) [2] { - 0 0x0100: (CStorageValue) { 1 } - 1 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + 108 0x000a: (UVGenSuperClassUnknown: Placement, (0x00000100, 0x00000000), 0x00000c20, Default Materials and Textures (Autodesk)) [6] { + AppData: (AppData) [1] PARSED { + Entries[0]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x00000100, 0x00000000) SuperClassId: 3104 SubId: 0 Size: 4 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 1 0x2034: (StorageRaw) { - Size: 4 - String: k... - Hex: 6b 00 00 00 - Int: 107 - Float: 1.49939e-43 } - 2 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 3 0x9002: (StorageRaw) { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x9002: (StorageRaw) { Size: 4 String: ...P Hex: 03 00 00 50 Int: 1342177283 Float: 8.58994e+09 } - 4 0x9003: (StorageRaw) { + Orphan[1] 0x9003: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x9009: (StorageRaw) { + Orphan[2] 0x9009: (StorageRaw) { Size: 4 String: .... Hex: 04 00 00 00 Int: 4 Float: 5.60519e-45 } - 6 0x9005: (StorageRaw) { + Orphan[3] 0x9005: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x9006: (StorageRaw) { + Orphan[4] 0x9006: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 8 0x900b: (StorageRaw) { + Orphan[5] 0x900b: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 109 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [21] { - 0 0x0009: (StorageRaw) { + 109 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [21] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....q... Hex: 0c 00 00 00 00 00 00 21 e0 2e 11 00 71 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 00 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 02 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 03 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 04 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 01 00 00 00 00 00 92 00 00 00 00 00 40 01 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0a 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0b 00 01 00 00 00 00 00 92 00 00 00 00 00 40 02 00 00 00 } - 13 0x000e: (StorageRaw) { + Orphan[13] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0c 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 14 0x000e: (StorageRaw) { + Orphan[14] 0x000e: (StorageRaw) { Size: 16 String: ..............@. Hex: 0d 00 10 00 00 00 00 00 80 00 00 00 00 00 40 01 } - 15 0x0003: (StorageContainer) [3] { + Orphan[15] 0x0003: (StorageContainer) [3] { 0 0x1201: (StorageRaw) { Size: 70 String: @.@....?...@................@..............................?.......... @@ -5297,39 +4990,39 @@ Entries[56]: (ClassEntry) [2] PARSED { 2 0x1240: (StorageRaw) { Size: 28 String: P.N.G. .I.m.a.g.e. .F.i.l.e. } } - 16 0x000e: (StorageRaw) { + Orphan[16] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0e 00 12 00 00 00 00 03 81 08 00 00 00 00 40 ff ff ff ff } - 17 0x000e: (StorageRaw) { + Orphan[17] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0f 00 12 00 00 00 00 03 81 08 00 00 00 00 40 ff ff ff ff } - 18 0x000e: (StorageRaw) { + Orphan[18] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 10 00 09 00 00 00 02 00 80 00 00 00 02 00 40 fe ff ff ff } - 19 0x000f: (StorageContainer) [1] { + Orphan[19] 0x000f: (StorageContainer) [1] { 0 0x0002: (StorageRaw) { Size: 16 String: ..]..".K..SLh4.. Hex: e1 e4 5d 11 c6 22 7d 4b be e1 53 4c 68 34 97 1f } } - 20 0x000c: (StorageRaw) { + Orphan[20] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 110 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [6] { - 0 0x0001: (StorageRaw) { + 110 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [6] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 04 00 00 00 Int: 4 Float: 5.60519e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 03 00 } - 2 0x0002: (StorageContainer) [3] { + Orphan[2] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -5346,7 +5039,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 80 3f Int: 1065353216 Float: 1 } } - 3 0x0002: (StorageContainer) [3] { + Orphan[3] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -5363,7 +5056,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [3] { + Orphan[4] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -5380,7 +5073,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 80 3f Int: 1065353216 Float: 1 } } - 5 0x0002: (StorageContainer) [3] { + Orphan[5] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -5397,62 +5090,56 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 80 3f Int: 1065353216 Float: 1 } } } - 111 0x000b: (SceneClassUnknown: Output, (0x00000100, 0x00000000), mtlgen.dlt) [3] { - 0 0x2034: (StorageRaw) { - Size: 12 - String: n........... - Hex: 6e 00 00 00 ff ff ff ff ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0002: (StorageRaw) { + 111 0x000b: (TextureOutputSuperClassUnknown: Output, (0x00000100, 0x00000000), 0x00000c40, Default Materials and Textures (Autodesk)) [1] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0002: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 112 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [6] { - 0 0x0009: (StorageRaw) { + 112 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [6] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....q... Hex: 0c 00 00 00 01 00 00 21 e0 2e 04 00 71 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 0c 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@...? Hex: 01 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000c: (StorageRaw) { + Orphan[5] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 113 0x000c: (SceneClassUnknown: Bitmap, (0x00000240, 0x00000000), mtl.dlt) [4] { - 0 0x2034: (StorageRaw) { - Size: 16 - String: l...m...o...p... } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x21b0: (StorageContainer) [1] { + 113 0x000c: (TexmapSuperClassUnknown: Bitmap, (0x00000240, 0x00000000), 0x00000c10, Standard Materials and Textures (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (Placement, (0x00000100, 0x00000000)) + 1: (ParamBlock2, (0x00000082, 0x00000000)) + 2: (Output, (0x00000100, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: j... Hex: 6a 00 00 00 Int: 106 Float: 1.48538e-43 } } - 3 0x4000: (StorageContainer) [4] { + Orphan[1] 0x4000: (StorageContainer) [4] { 0 0x4001: (StorageRaw) { Size: 12 String: M.a.p. .#.1. } @@ -5472,337 +5159,330 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } } - 114 0x0004: (SceneClassUnknown: Texmaps, (0x00001200, 0x00000000), mtl.dlt) [8] { - 0 0x2035: (StorageRaw) { - Size: 52 - String: 0......._.......g.......h.......g.......i.......q... - Hex: 30 00 00 00 00 00 00 00 5f 00 00 00 01 00 00 00 67 00 00 00 02 00 00 00 68 00 00 00 03 00 00 00 67 00 00 00 04 00 00 00 69 00 00 00 05 00 00 00 71 00 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5003: (StorageRaw) { + 114 0x0004: (TexmapContainerSuperClassUnknown: Texmaps, (0x00001200, 0x00000000), 0x00001080, Standard Materials and Textures (Autodesk)) [6] { + References 0x2035: PARSED { + 0: (Bezier Float, (0x00002007, 0x00000000)) + 1: (Bitmap, (0x00000240, 0x00000000)) + 2: (Bezier Float, (0x00002007, 0x00000000)) + 3: (Bitmap, (0x00000240, 0x00000000)) + 4: (Bezier Float, (0x00002007, 0x00000000)) + 5: (Bitmap, (0x00000240, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5003: (StorageRaw) { Size: 4 String: .... Hex: 07 00 00 00 Int: 7 Float: 9.80909e-45 } - 3 0x5108: (StorageRaw) { + Orphan[1] 0x5108: (StorageRaw) { Size: 4 String: ...> Hex: 9a 99 99 3e Int: 1050253722 Float: 0.3 } - 4 0x510c: (StorageRaw) { + Orphan[2] 0x510c: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x510d: (StorageRaw) { + Orphan[3] 0x510d: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x510e: (StorageRaw) { + Orphan[4] 0x510e: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x510f: (StorageRaw) { + Orphan[5] 0x510f: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 115 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 115 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....t... Hex: 05 00 00 00 00 00 00 21 e0 2e 0c 00 74 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 80 3f 00 00 80 3f 00 00 80 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 01 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 80 3f 00 00 80 3f 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 80 3f 00 00 80 3f 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 27 String: ........................... Hex: 08 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 116 0x0005: (SceneClassUnknown: Blinn, (0x00000038, 0x00000000), mtl.dlt) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: s... - Hex: 73 00 00 00 - Int: 115 - Float: 1.61149e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5300: (StorageRaw) { + 116 0x0005: (ShaderSuperClassUnknown: Blinn, (0x00000038, 0x00000000), 0x000010b0, Standard Materials and Textures (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x5020: (StorageContainer) [1] { + Orphan[1] 0x5020: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 117 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [8] { - 0 0x0009: (StorageRaw) { + 117 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [8] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....|... Hex: 08 00 00 00 00 00 00 21 e0 2e 06 00 7c 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 7 0x000c: (StorageRaw) { + Orphan[7] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 118 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 118 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....|... Hex: 08 00 00 00 01 00 00 21 e0 2e 0c 00 7c 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 3f 00 00 00 3f 00 00 00 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: .......)......@.... Hex: 03 00 0f 00 00 00 00 29 81 10 00 00 00 00 40 ff ff ff ff } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 06 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 c0 3f } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 07 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: .................@@ Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 40 40 } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 119 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [13] { - 0 0x0009: (StorageRaw) { + 119 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [13] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....|... Hex: 08 00 00 00 02 00 00 21 e0 2e 0b 00 7c 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 03 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@...= Hex: 04 00 00 00 00 00 00 00 92 00 00 00 00 00 40 cd cc cc 3d } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 12 0x000c: (StorageRaw) { + Orphan[12] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 120 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [7] { - 0 0x0009: (StorageRaw) { + 120 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [7] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....|... Hex: 08 00 00 00 03 00 00 21 e0 2e 04 00 7c 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 00 00 04 08 00 00 00 00 82 00 00 00 00 00 00 18 00 00 00 40 01 00 00 00 40 01 00 00 00 40 01 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 139 String: ...................@g...@g...@q...@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 01 00 0f 08 00 00 00 01 81 00 00 00 00 00 00 18 00 00 00 40 67 00 00 00 40 67 00 00 00 40 71 00 00 00 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 139 String: ...................@...?@...?@...?@...?@...?@...?@...?@...?@...>@...?@...?@...?@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 02 00 06 08 00 00 00 00 92 00 00 00 00 00 00 18 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 9a 99 99 3e 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x0005: (StorageRaw) { + Orphan[5] 0x0005: (StorageRaw) { Size: 961 String: $.......ambientMap...........ambientMapAmount...........ambientMapEnable...........bumpMap...........bumpMapAmount...........bumpMapEnable...........diffuseMap...........diffuseMapAmount...........diffuseMapEnable...........displacementMap...........displacementMapAmount...........displacementMapEnable...........filterMap...........filterMapAmount...........filterMapEnable...........glossinessMap...........glossinessMapAmount...........glossinessMapEnable...........opacityMap...........opacityMapAmount...........opacityMapEnable...........reflectionMap...........reflectionMapAmount...........reflectionMapEnable...........refractionMap...........refractionMapAmount...........refractionMapEnable...........selfIllumMap...........selfIllumMapAmount...........selfIllumMapEnable...........specularLevelMap...........specularLevelMapAmount...........specularLevelMapEnable...........specularMap...........specularMapAmount...........specularMapEnable....... Hex: 24 00 00 00 0b 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 00 01 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 00 00 00 00 08 00 00 00 62 75 6d 70 4d 61 70 00 01 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 41 6d 6f 75 6e 74 00 02 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 45 6e 61 62 6c 65 00 00 00 08 00 00 00 0b 00 00 00 64 69 66 66 75 73 65 4d 61 70 00 01 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 41 6d 6f 75 6e 74 00 02 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 45 6e 61 62 6c 65 00 00 00 01 00 00 00 10 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 00 01 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 0b 00 00 00 0a 00 00 00 66 69 6c 74 65 72 4d 61 70 00 01 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 07 00 00 00 0e 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 00 01 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 41 6d 6f 75 6e 74 00 02 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 45 6e 61 62 6c 65 00 00 00 04 00 00 00 0b 00 00 00 6f 70 61 63 69 74 79 4d 61 70 00 01 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 41 6d 6f 75 6e 74 00 02 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 45 6e 61 62 6c 65 00 00 00 06 00 00 00 0e 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 00 01 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 09 00 00 00 0e 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 00 01 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 0a 00 00 00 0d 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 00 01 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 41 6d 6f 75 6e 74 00 02 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 45 6e 61 62 6c 65 00 00 00 05 00 00 00 11 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 00 01 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 41 6d 6f 75 6e 74 00 02 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 45 6e 61 62 6c 65 00 00 00 03 00 00 00 0c 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 00 01 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 02 00 00 00 } - 6 0x000c: (StorageRaw) { + Orphan[6] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 121 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [5] { - 0 0x0009: (StorageRaw) { + 121 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [5] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....|... Hex: 08 00 00 00 04 00 00 21 e0 2e 03 00 7c 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 00 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000c: (StorageRaw) { + Orphan[4] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 122 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [5] { - 0 0x0001: (StorageRaw) { + 122 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [5] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 03 00 00 00 Int: 3 Float: 4.2039e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 02 00 } - 2 0x0002: (StorageContainer) [2] { + Orphan[2] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -5815,7 +5495,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } } - 3 0x0002: (StorageContainer) [2] { + Orphan[3] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -5828,7 +5508,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [2] { + Orphan[4] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -5841,37 +5521,32 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 123 0x0007: (SceneClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), samplers.dlh) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: z... - Hex: 7a 00 00 00 - Int: 122 - Float: 1.70958e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0200: (StorageRaw) { + 123 0x0007: (SamplerSuperClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), 0x00001110, Standard Samplers (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0200: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x39bf: (StorageContainer) [1] { + Orphan[1] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 24 String: M.a.x. .2...5. .S.t.a.r. } } } - 124 0x0008: (SceneClassUnknown: Standard, (0x00000002, 0x00000000), mtl.dlt) [5] { - 0 0x2034: (StorageRaw) { - Size: 36 - String: ....r...t...u...v...w...x...y....... - Hex: ff ff ff ff 72 00 00 00 74 00 00 00 75 00 00 00 76 00 00 00 77 00 00 00 78 00 00 00 79 00 00 00 7b 00 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x4000: (StorageContainer) [4] { + 124 0x0008: (MtlSuperClassUnknown: Standard, (0x00000002, 0x00000000), 0x00000c00, Standard Materials and Textures (Autodesk)) [3] { + References 0x2034: PARSED { + 1: (Texmaps, (0x00001200, 0x00000000)) + 2: (Blinn, (0x00000038, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) + 4: (ParamBlock2, (0x00000082, 0x00000000)) + 5: (ParamBlock2, (0x00000082, 0x00000000)) + 6: (ParamBlock2, (0x00000082, 0x00000000)) + 7: (ParamBlock2, (0x00000082, 0x00000000)) + 8: (Max 2.5 Star, (0x25773211, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x4000: (StorageContainer) [4] { 0 0x4001: (StorageRaw) { Size: 0 String: @@ -5892,1343 +5567,1302 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } - 3 0x5300: (StorageRaw) { + Orphan[1] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 0d 00 00 00 Int: 13 Float: 1.82169e-44 } - 4 0x5600: (StorageContainer) [1] { + Orphan[2] 0x5600: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 125 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [13] { - 0 0x0007: (StorageRaw) { + 125 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [13] { + Orphan[0] 0x0007: (StorageRaw) { Size: 0 String: Hex: } - 1 0x0009: (StorageRaw) { + Orphan[1] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 0d 00 00 00 00 00 00 21 e0 2e 0a 00 86 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 00 00 04 00 00 00 01 00 80 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 01 00 02 00 00 00 01 00 80 00 00 00 00 00 c0 00 00 80 3f 00 00 80 3f 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 02 00 02 00 00 00 01 00 80 00 00 00 00 00 c0 00 00 80 3f 00 00 80 3f 00 00 80 3f } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 03 00 06 00 00 00 01 00 80 00 00 00 00 00 c0 00 00 80 3f } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 04 00 02 00 00 00 01 00 80 00 00 00 00 00 c0 00 00 80 3f 00 00 80 3f 00 00 80 3f } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 06 00 00 00 01 00 80 00 00 00 00 00 c0 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 06 00 06 00 00 00 01 00 80 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 27 String: ........................... Hex: 07 00 02 00 00 00 01 00 80 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 08 00 06 00 00 00 01 00 80 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 04 00 00 00 01 00 80 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000c: (StorageRaw) { + Orphan[12] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 126 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [40] { - 0 0x0007: (StorageRaw) { + 126 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [40] { + Orphan[0] 0x0007: (StorageRaw) { Size: 0 String: Hex: } - 1 0x0009: (StorageRaw) { + Orphan[1] 0x0009: (StorageRaw) { Size: 16 String: .......!..%..... Hex: 0d 00 00 00 01 00 00 21 e0 2e 25 00 86 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 00 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 03 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 04 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 06 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 08 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: .................#< Hex: 09 00 00 00 00 00 01 00 82 00 00 00 00 00 c0 0a d7 23 3c } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: .................#< Hex: 0a 00 00 00 00 00 01 00 82 00 00 00 00 00 c0 0a d7 23 3c } - 13 0x000e: (StorageRaw) { + Orphan[13] 0x000e: (StorageRaw) { Size: 19 String: .................#< Hex: 0b 00 00 00 00 00 01 00 82 00 00 00 00 00 c0 0a d7 23 3c } - 14 0x000e: (StorageRaw) { + Orphan[14] 0x000e: (StorageRaw) { Size: 19 String: .................#< Hex: 0c 00 00 00 00 00 01 00 82 00 00 00 00 00 c0 0a d7 23 3c } - 15 0x000e: (StorageRaw) { + Orphan[15] 0x000e: (StorageRaw) { Size: 19 String: ..................; Hex: 0d 00 00 00 00 00 01 00 82 00 00 00 00 00 c0 0a d7 a3 3b } - 16 0x000e: (StorageRaw) { + Orphan[16] 0x000e: (StorageRaw) { Size: 19 String: ..................; Hex: 0e 00 00 00 00 00 01 00 82 00 00 00 00 00 c0 0a d7 a3 3b } - 17 0x000e: (StorageRaw) { + Orphan[17] 0x000e: (StorageRaw) { Size: 19 String: ..................; Hex: 0f 00 00 00 00 00 01 00 82 00 00 00 00 00 c0 0a d7 a3 3b } - 18 0x000e: (StorageRaw) { + Orphan[18] 0x000e: (StorageRaw) { Size: 19 String: ..................; Hex: 10 00 00 00 00 00 01 00 82 00 00 00 00 00 c0 0a d7 a3 3b } - 19 0x000e: (StorageRaw) { + Orphan[19] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 11 00 00 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 80 3f } - 20 0x000e: (StorageRaw) { + Orphan[20] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 12 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 21 0x000e: (StorageRaw) { + Orphan[21] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 13 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 22 0x000e: (StorageRaw) { + Orphan[22] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 14 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 23 0x000e: (StorageRaw) { + Orphan[23] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 15 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 24 0x000e: (StorageRaw) { + Orphan[24] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 16 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 25 0x000e: (StorageRaw) { + Orphan[25] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 17 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 26 0x000e: (StorageRaw) { + Orphan[26] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 18 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 27 0x000e: (StorageRaw) { + Orphan[27] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 19 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 28 0x000e: (StorageRaw) { + Orphan[28] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 1a 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 29 0x000e: (StorageRaw) { + Orphan[29] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 1b 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 30 0x000e: (StorageRaw) { + Orphan[30] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 1c 00 00 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 31 0x000e: (StorageRaw) { + Orphan[31] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 1d 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 02 00 00 00 } - 32 0x000e: (StorageRaw) { + Orphan[32] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 1e 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 05 00 00 00 } - 33 0x000e: (StorageRaw) { + Orphan[33] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 1f 00 04 00 00 00 01 00 80 00 00 00 00 00 c0 00 00 00 00 } - 34 0x000e: (StorageRaw) { + Orphan[34] 0x000e: (StorageRaw) { Size: 19 String: .................. Hex: 20 00 04 00 00 00 01 00 80 00 00 00 00 00 c0 01 00 00 00 } - 35 0x000e: (StorageRaw) { + Orphan[35] 0x000e: (StorageRaw) { Size: 19 String: !.................. Hex: 21 00 04 00 00 00 01 00 80 00 00 00 00 00 c0 00 00 00 00 } - 36 0x000e: (StorageRaw) { + Orphan[36] 0x000e: (StorageRaw) { Size: 19 String: ".................. Hex: 22 00 04 00 00 00 01 00 80 00 00 00 00 00 c0 00 00 00 00 } - 37 0x000e: (StorageRaw) { + Orphan[37] 0x000e: (StorageRaw) { Size: 27 String: #.................?.......? Hex: 23 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 80 3f 00 00 00 00 00 00 80 3f } - 38 0x000e: (StorageRaw) { + Orphan[38] 0x000e: (StorageRaw) { Size: 19 String: $.................. Hex: 24 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 39 0x000c: (StorageRaw) { + Orphan[39] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 127 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [29] { - 0 0x2035: (StorageRaw) { - Size: 20 - String: ........g.......q... - Hex: 08 00 00 00 00 00 00 00 67 00 00 00 01 00 00 00 71 00 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0007: (StorageRaw) { + 127 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [27] { + References 0x2035: PARSED { + 0: (Bitmap, (0x00000240, 0x00000000)) + 1: (Bitmap, (0x00000240, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0007: (StorageRaw) { Size: 0 String: Hex: } - 3 0x0009: (StorageRaw) { + Orphan[1] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 0d 00 00 00 02 00 00 21 e0 2e 18 00 86 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 00 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 03 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 04 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 06 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 08 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 13 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 14 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 15 0x000e: (StorageRaw) { + Orphan[13] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0b 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 16 0x000e: (StorageRaw) { + Orphan[14] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0c 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 17 0x000e: (StorageRaw) { + Orphan[15] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0d 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 18 0x000e: (StorageRaw) { + Orphan[16] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0e 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 19 0x000e: (StorageRaw) { + Orphan[17] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0f 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 20 0x000e: (StorageRaw) { + Orphan[18] 0x000e: (StorageRaw) { Size: 15 String: ..............@ Hex: 10 00 0f 00 00 00 00 00 81 00 00 00 00 00 40 } - 21 0x000e: (StorageRaw) { + Orphan[19] 0x000e: (StorageRaw) { Size: 15 String: ..............@ Hex: 11 00 0f 00 00 00 00 00 81 00 00 00 00 00 40 } - 22 0x000e: (StorageRaw) { + Orphan[20] 0x000e: (StorageRaw) { Size: 15 String: ..............@ Hex: 12 00 0f 00 00 00 00 00 81 00 00 00 00 00 40 } - 23 0x000e: (StorageRaw) { + Orphan[21] 0x000e: (StorageRaw) { Size: 15 String: ..............@ Hex: 13 00 0f 00 00 00 00 00 81 00 00 00 00 00 40 } - 24 0x000e: (StorageRaw) { + Orphan[22] 0x000e: (StorageRaw) { Size: 15 String: ..............@ Hex: 14 00 0f 00 00 00 00 00 81 00 00 00 00 00 40 } - 25 0x000e: (StorageRaw) { + Orphan[23] 0x000e: (StorageRaw) { Size: 15 String: ..............@ Hex: 15 00 0f 00 00 00 00 00 81 00 00 00 00 00 40 } - 26 0x000e: (StorageRaw) { + Orphan[24] 0x000e: (StorageRaw) { Size: 15 String: ..............@ Hex: 16 00 0f 00 00 00 00 00 81 00 00 00 00 00 40 } - 27 0x000e: (StorageRaw) { + Orphan[25] 0x000e: (StorageRaw) { Size: 15 String: ..............@ Hex: 17 00 0f 00 00 00 00 00 81 00 00 00 00 00 40 } - 28 0x000c: (StorageRaw) { + Orphan[26] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 128 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [22] { - 0 0x0007: (StorageRaw) { + 128 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [22] { + Orphan[0] 0x0007: (StorageRaw) { Size: 0 String: Hex: } - 1 0x0009: (StorageRaw) { + Orphan[1] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 0d 00 00 00 03 00 00 21 e0 2e 13 00 86 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 80 3f 00 00 80 3f 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 02 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 03 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 04 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 02 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 06 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 08 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 02 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 13 0x000e: (StorageRaw) { + Orphan[13] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0b 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 14 0x000e: (StorageRaw) { + Orphan[14] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0c 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 02 00 00 00 } - 15 0x000e: (StorageRaw) { + Orphan[15] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0d 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 16 0x000e: (StorageRaw) { + Orphan[16] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0e 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 03 00 00 00 } - 17 0x000e: (StorageRaw) { + Orphan[17] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0f 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 03 00 00 00 } - 18 0x000e: (StorageRaw) { + Orphan[18] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 10 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 03 00 00 00 } - 19 0x000e: (StorageRaw) { + Orphan[19] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 11 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 20 0x000e: (StorageRaw) { + Orphan[20] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 12 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 ff 00 00 00 } - 21 0x000c: (StorageRaw) { + Orphan[21] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 129 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [22] { - 0 0x0007: (StorageRaw) { + 129 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [22] { + Orphan[0] 0x0007: (StorageRaw) { Size: 0 String: Hex: } - 1 0x0009: (StorageRaw) { + Orphan[1] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 0d 00 00 00 04 00 00 21 e0 2e 13 00 86 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 80 3f 00 00 80 3f 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 03 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 04 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 06 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 08 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 13 0x000e: (StorageRaw) { + Orphan[13] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0b 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 14 0x000e: (StorageRaw) { + Orphan[14] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0c 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 15 0x000e: (StorageRaw) { + Orphan[15] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0d 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 16 0x000e: (StorageRaw) { + Orphan[16] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0e 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 03 00 00 00 } - 17 0x000e: (StorageRaw) { + Orphan[17] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0f 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 03 00 00 00 } - 18 0x000e: (StorageRaw) { + Orphan[18] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 10 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 03 00 00 00 } - 19 0x000e: (StorageRaw) { + Orphan[19] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 11 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 20 0x000e: (StorageRaw) { + Orphan[20] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 12 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 ff 00 00 00 } - 21 0x000c: (StorageRaw) { + Orphan[21] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 130 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [22] { - 0 0x0007: (StorageRaw) { + 130 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [22] { + Orphan[0] 0x0007: (StorageRaw) { Size: 0 String: Hex: } - 1 0x0009: (StorageRaw) { + Orphan[1] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 0d 00 00 00 05 00 00 21 e0 2e 13 00 86 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 80 3f 00 00 80 3f 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 03 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 04 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 06 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 08 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 13 0x000e: (StorageRaw) { + Orphan[13] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0b 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 14 0x000e: (StorageRaw) { + Orphan[14] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0c 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 15 0x000e: (StorageRaw) { + Orphan[15] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0d 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 16 0x000e: (StorageRaw) { + Orphan[16] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0e 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 03 00 00 00 } - 17 0x000e: (StorageRaw) { + Orphan[17] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0f 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 03 00 00 00 } - 18 0x000e: (StorageRaw) { + Orphan[18] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 10 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 03 00 00 00 } - 19 0x000e: (StorageRaw) { + Orphan[19] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 11 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 20 0x000e: (StorageRaw) { + Orphan[20] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 12 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 ff 00 00 00 } - 21 0x000c: (StorageRaw) { + Orphan[21] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 131 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [22] { - 0 0x0007: (StorageRaw) { + 131 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [22] { + Orphan[0] 0x0007: (StorageRaw) { Size: 0 String: Hex: } - 1 0x0009: (StorageRaw) { + Orphan[1] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 0d 00 00 00 06 00 00 21 e0 2e 13 00 86 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 80 3f 00 00 80 3f 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 03 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 04 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 06 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 08 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 13 0x000e: (StorageRaw) { + Orphan[13] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0b 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 14 0x000e: (StorageRaw) { + Orphan[14] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0c 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 15 0x000e: (StorageRaw) { + Orphan[15] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0d 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 16 0x000e: (StorageRaw) { + Orphan[16] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0e 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 03 00 00 00 } - 17 0x000e: (StorageRaw) { + Orphan[17] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0f 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 03 00 00 00 } - 18 0x000e: (StorageRaw) { + Orphan[18] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 10 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 03 00 00 00 } - 19 0x000e: (StorageRaw) { + Orphan[19] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 11 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 01 00 00 00 } - 20 0x000e: (StorageRaw) { + Orphan[20] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 12 00 01 00 00 00 01 00 82 00 00 00 00 00 c0 ff 00 00 00 } - 21 0x000c: (StorageRaw) { + Orphan[21] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 132 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [3] { - 0 0x0007: (StorageRaw) { + 132 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [3] { + Orphan[0] 0x0007: (StorageRaw) { Size: 0 String: Hex: } - 1 0x0009: (StorageRaw) { + Orphan[1] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 0d 00 00 00 07 00 00 21 e0 2e 00 00 86 00 00 00 } - 2 0x000c: (StorageRaw) { + Orphan[2] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 133 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [3] { - 0 0x0007: (StorageRaw) { + 133 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [3] { + Orphan[0] 0x0007: (StorageRaw) { Size: 0 String: Hex: } - 1 0x0009: (StorageRaw) { + Orphan[1] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 0d 00 00 00 08 00 00 21 e0 2e 00 00 86 00 00 00 } - 2 0x000c: (StorageRaw) { + Orphan[2] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 134 0x000d: (SceneClassUnknown: NeL Material, (0x64c75fec, 0x222b9eb9), Script) [8] { - 0 0x2034: (StorageRaw) { - Size: 40 - String: |.......~............................... - Hex: 7c 00 00 00 7d 00 00 00 7e 00 00 00 7f 00 00 00 80 00 00 00 81 00 00 00 82 00 00 00 83 00 00 00 84 00 00 00 85 00 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x21b0: (StorageContainer) [1] { + 134 0x000d: (MtlSuperClassUnknown: NeL Material, (0x64c75fec, 0x222b9eb9), 0x00000c00, Script) [6] { + References 0x2034: PARSED { + 0: (Standard, (0x00000002, 0x00000000)) + 1: (ParamBlock2, (0x00000082, 0x00000000)) + 2: (ParamBlock2, (0x00000082, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) + 4: (ParamBlock2, (0x00000082, 0x00000000)) + 5: (ParamBlock2, (0x00000082, 0x00000000)) + 6: (ParamBlock2, (0x00000082, 0x00000000)) + 7: (ParamBlock2, (0x00000082, 0x00000000)) + 8: (ParamBlock2, (0x00000082, 0x00000000)) + 9: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: ^... Hex: 5e 00 00 00 Int: 94 Float: 1.31722e-43 } } - 3 0x0010: (StorageRaw) { + Orphan[1] 0x0010: (StorageRaw) { Size: 8 String: ........ Hex: 0e 00 00 00 09 00 00 00 } - 4 0x4001: (StorageRaw) { + Orphan[2] 0x4001: (StorageRaw) { Size: 50 String: M.T.R.L._.G.E._.A.c.c._.M.i.k.o.t.o.B.a.n.i.e.r.e. } - 5 0x4003: (StorageRaw) { + Orphan[3] 0x4003: (StorageRaw) { Size: 4 String: .... Hex: 0a 02 00 00 Int: 522 Float: 7.31478e-43 } - 6 0x4020: (StorageRaw) { + Orphan[4] 0x4020: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x4030: (StorageRaw) { + Orphan[5] 0x4030: (StorageRaw) { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } - 135 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [6] { - 0 0x000b: (StorageRaw) { + 135 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [6] { + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: <).Z..B0`......!........ Hex: 3c 29 06 5a 1e 0c 42 30 60 11 00 00 00 00 00 21 e0 2e 04 00 88 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 09 00 00 00 00 00 80 06 00 00 00 00 40 ff ff ff ff } - 5 0x000c: (StorageRaw) { + Orphan[5] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 136 0x0001: (SceneClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), ViewportManager.gup) [3] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: ........ - Hex: 87 00 00 00 ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1000: (StorageRaw) { + 136 0x0001: (CustAttribSuperClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), 0x00001160, Viewport Manager for DirectX (Autodesk)) [1] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 137 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [41] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: .... - Hex: 09 00 00 00 - Int: 9 - Float: 1.26117e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x000b: (StorageRaw) { + 137 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [39] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: Y..!...%`......!..%..... Hex: 59 b4 8a 21 80 89 dc 25 60 11 00 00 00 00 00 21 e0 2e 25 00 8a 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 00 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 15 String: ......@ ......@ Hex: 01 00 0f 00 00 00 40 20 81 10 00 00 00 00 40 } - 5 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 15 String: ......@ ......@ Hex: 02 00 0f 00 00 00 40 20 81 10 00 00 00 00 40 } - 6 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 15 String: ......@ ......@ Hex: 03 00 0f 00 00 00 40 20 81 10 00 00 00 00 40 } - 7 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 15 String: ......@.......@ Hex: 04 00 0f 00 00 00 40 00 81 10 00 00 00 00 40 } - 8 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 15 String: ......@.......@ Hex: 05 00 0f 00 00 00 40 00 81 10 00 00 00 00 40 } - 9 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 15 String: ......@.......@ Hex: 06 00 0f 00 00 00 40 00 81 10 00 00 00 00 40 } - 10 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 15 String: ......@ ......@ Hex: 07 00 0f 00 00 00 40 20 81 10 00 00 00 00 40 } - 11 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 15 String: ......@.......@ Hex: 08 00 0f 00 00 00 40 00 81 10 00 00 00 00 40 } - 12 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 15 String: ......@.......@ Hex: 09 00 0f 00 00 00 40 00 81 10 00 00 00 00 40 } - 13 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: d.............@.... Hex: 64 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 14 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: e.............@.... Hex: 65 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 15 0x000e: (StorageRaw) { + Orphan[13] 0x000e: (StorageRaw) { Size: 19 String: f.............@.... Hex: 66 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 16 0x000e: (StorageRaw) { + Orphan[14] 0x000e: (StorageRaw) { Size: 19 String: g.............@.... Hex: 67 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 17 0x000e: (StorageRaw) { + Orphan[15] 0x000e: (StorageRaw) { Size: 19 String: h.............@.... Hex: 68 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 18 0x000e: (StorageRaw) { + Orphan[16] 0x000e: (StorageRaw) { Size: 19 String: i.............@.... Hex: 69 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 19 0x000e: (StorageRaw) { + Orphan[17] 0x000e: (StorageRaw) { Size: 19 String: j.............@.... Hex: 6a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 20 0x000e: (StorageRaw) { + Orphan[18] 0x000e: (StorageRaw) { Size: 19 String: k.............@.... Hex: 6b 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 21 0x000e: (StorageRaw) { + Orphan[19] 0x000e: (StorageRaw) { Size: 19 String: l.............@.... Hex: 6c 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 22 0x000e: (StorageRaw) { + Orphan[20] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: c8 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 23 0x000e: (StorageRaw) { + Orphan[21] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: c9 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 24 0x000e: (StorageRaw) { + Orphan[22] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: ca 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 25 0x000e: (StorageRaw) { + Orphan[23] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: cb 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 26 0x000e: (StorageRaw) { + Orphan[24] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: cc 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 27 0x000e: (StorageRaw) { + Orphan[25] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: cd 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 28 0x000e: (StorageRaw) { + Orphan[26] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: ce 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 29 0x000e: (StorageRaw) { + Orphan[27] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: cf 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 30 0x000e: (StorageRaw) { + Orphan[28] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: d0 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 31 0x000e: (StorageRaw) { + Orphan[29] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: dc 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 32 0x000e: (StorageRaw) { + Orphan[30] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: dd 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 33 0x000e: (StorageRaw) { + Orphan[31] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: de 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 34 0x000e: (StorageRaw) { + Orphan[32] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: df 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 35 0x000e: (StorageRaw) { + Orphan[33] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: e0 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 36 0x000e: (StorageRaw) { + Orphan[34] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: e1 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 37 0x000e: (StorageRaw) { + Orphan[35] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: e2 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 38 0x000e: (StorageRaw) { + Orphan[36] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: e3 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 39 0x000e: (StorageRaw) { + Orphan[37] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: e4 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 40 0x000c: (StorageRaw) { + Orphan[38] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 138 0x0002: (SceneClassUnknown: mental ray: material custom attribute, (0x218ab459, 0x25dc8980), mrMaterialAttribs.gup) [2] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: 89 00 00 00 - Int: 137 - Float: 1.91978e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } } - 139 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [4] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: ........ - Hex: 88 00 00 00 8a 00 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1030: (StorageRaw) { + 138 0x0002: (CustAttribSuperClassUnknown: mental ray: material custom attribute, (0x218ab459, 0x25dc8980), 0x00001160, mental ray: Material Custom Attributes (Autodesk)) [0] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } } + 139 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ViewportManager, (0x5a06293c, 0x30420c1e)) + 1: (mental ray: material custom attribute, (0x218ab459, 0x25dc8980)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: .... Hex: 96 00 00 00 Int: 150 Float: 2.10195e-43 } - 3 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } } - 140 0x0004: (SceneClassUnknown: Texmaps, (0x00001200, 0x00000000), mtl.dlt) [8] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: 0... - Hex: 30 00 00 00 - Int: 48 - Float: 6.72623e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5003: (StorageRaw) { + 140 0x0004: (TexmapContainerSuperClassUnknown: Texmaps, (0x00001200, 0x00000000), 0x00001080, Standard Materials and Textures (Autodesk)) [6] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5003: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x5108: (StorageRaw) { + Orphan[1] 0x5108: (StorageRaw) { Size: 4 String: ...> Hex: 9a 99 99 3e Int: 1050253722 Float: 0.3 } - 4 0x510c: (StorageRaw) { + Orphan[2] 0x510c: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x510d: (StorageRaw) { + Orphan[3] 0x510d: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x510e: (StorageRaw) { + Orphan[4] 0x510e: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x510f: (StorageRaw) { + Orphan[5] 0x510f: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 141 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 141 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 05 00 00 00 00 00 00 21 e0 2e 0c 00 8e 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 01 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ...............fff?fff?fff? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 66 66 66 3f 66 66 66 3f 66 66 66 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 27 String: ........................... Hex: 08 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0a 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 cc cc cc 3d } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 cd cc cc 3d } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 142 0x0005: (SceneClassUnknown: Blinn, (0x00000038, 0x00000000), mtl.dlt) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: 8d 00 00 00 - Int: 141 - Float: 1.97583e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5300: (StorageRaw) { + 142 0x0005: (ShaderSuperClassUnknown: Blinn, (0x00000038, 0x00000000), 0x000010b0, Standard Materials and Textures (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x5020: (StorageContainer) [1] { + Orphan[1] 0x5020: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 143 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [8] { - 0 0x0009: (StorageRaw) { + 143 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [8] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 00 00 00 21 e0 2e 06 00 96 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 7 0x000c: (StorageRaw) { + Orphan[7] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 144 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 144 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 01 00 00 21 e0 2e 0c 00 96 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 3f 00 00 00 3f 00 00 00 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: .......)......@.... Hex: 03 00 0f 00 00 00 00 29 81 10 00 00 00 00 40 ff ff ff ff } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 06 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 c0 3f } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 07 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: .................@@ Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 40 40 } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 145 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [13] { - 0 0x0009: (StorageRaw) { + 145 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [13] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 02 00 00 21 e0 2e 0b 00 96 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 03 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@...= Hex: 04 00 00 00 00 00 00 00 92 00 00 00 00 00 40 cd cc cc 3d } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 12 0x000c: (StorageRaw) { + Orphan[12] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 146 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [7] { - 0 0x0009: (StorageRaw) { + 146 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [7] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 03 00 00 21 e0 2e 04 00 96 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 00 00 04 08 00 00 00 00 82 00 00 00 00 00 00 18 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 01 00 0f 08 00 00 00 01 81 00 00 00 00 00 00 18 00 00 00 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 139 String: ...................@...?@...?@...?@...?@...?@...?@...?@...?@...>@...?@...?@...?@....@....@....@....@...?@...?@...?@...?@...?@...?@...?@...? Hex: 02 00 06 08 00 00 00 00 92 00 00 00 00 00 00 18 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 9a 99 99 3e 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x0005: (StorageRaw) { + Orphan[5] 0x0005: (StorageRaw) { Size: 961 String: $.......ambientMap...........ambientMapAmount...........ambientMapEnable...........bumpMap...........bumpMapAmount...........bumpMapEnable...........diffuseMap...........diffuseMapAmount...........diffuseMapEnable...........displacementMap...........displacementMapAmount...........displacementMapEnable...........filterMap...........filterMapAmount...........filterMapEnable...........glossinessMap...........glossinessMapAmount...........glossinessMapEnable...........opacityMap...........opacityMapAmount...........opacityMapEnable...........reflectionMap...........reflectionMapAmount...........reflectionMapEnable...........refractionMap...........refractionMapAmount...........refractionMapEnable...........selfIllumMap...........selfIllumMapAmount...........selfIllumMapEnable...........specularLevelMap...........specularLevelMapAmount...........specularLevelMapEnable...........specularMap...........specularMapAmount...........specularMapEnable....... Hex: 24 00 00 00 0b 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 00 01 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 00 00 00 00 08 00 00 00 62 75 6d 70 4d 61 70 00 01 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 41 6d 6f 75 6e 74 00 02 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 45 6e 61 62 6c 65 00 00 00 08 00 00 00 0b 00 00 00 64 69 66 66 75 73 65 4d 61 70 00 01 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 41 6d 6f 75 6e 74 00 02 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 45 6e 61 62 6c 65 00 00 00 01 00 00 00 10 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 00 01 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 0b 00 00 00 0a 00 00 00 66 69 6c 74 65 72 4d 61 70 00 01 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 07 00 00 00 0e 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 00 01 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 41 6d 6f 75 6e 74 00 02 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 45 6e 61 62 6c 65 00 00 00 04 00 00 00 0b 00 00 00 6f 70 61 63 69 74 79 4d 61 70 00 01 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 41 6d 6f 75 6e 74 00 02 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 45 6e 61 62 6c 65 00 00 00 06 00 00 00 0e 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 00 01 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 09 00 00 00 0e 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 00 01 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 0a 00 00 00 0d 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 00 01 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 41 6d 6f 75 6e 74 00 02 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 45 6e 61 62 6c 65 00 00 00 05 00 00 00 11 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 00 01 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 41 6d 6f 75 6e 74 00 02 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 45 6e 61 62 6c 65 00 00 00 03 00 00 00 0c 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 00 01 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 02 00 00 00 } - 6 0x000c: (StorageRaw) { + Orphan[6] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 147 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [5] { - 0 0x0009: (StorageRaw) { + 147 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [5] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 04 00 00 21 e0 2e 03 00 96 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 00 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000c: (StorageRaw) { + Orphan[4] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 148 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [5] { - 0 0x0001: (StorageRaw) { + 148 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [5] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 03 00 00 00 Int: 3 Float: 4.2039e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 02 00 } - 2 0x0002: (StorageContainer) [2] { + Orphan[2] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -7241,7 +6875,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } } - 3 0x0002: (StorageContainer) [2] { + Orphan[3] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -7254,7 +6888,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [2] { + Orphan[4] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -7267,45 +6901,40 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 149 0x0007: (SceneClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), samplers.dlh) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: 94 00 00 00 - Int: 148 - Float: 2.07392e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0200: (StorageRaw) { + 149 0x0007: (SamplerSuperClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), 0x00001110, Standard Samplers (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0200: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x39bf: (StorageContainer) [1] { + Orphan[1] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 0 String: Hex: } } } - 150 0x0008: (SceneClassUnknown: Standard, (0x00000002, 0x00000000), mtl.dlt) [6] { - 0 0x2034: (StorageRaw) { - Size: 36 - String: .................................... - Hex: ff ff ff ff 8c 00 00 00 8e 00 00 00 8f 00 00 00 90 00 00 00 91 00 00 00 92 00 00 00 93 00 00 00 95 00 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x21b0: (StorageContainer) [1] { + 150 0x0008: (MtlSuperClassUnknown: Standard, (0x00000002, 0x00000000), 0x00000c00, Standard Materials and Textures (Autodesk)) [4] { + References 0x2034: PARSED { + 1: (Texmaps, (0x00001200, 0x00000000)) + 2: (Blinn, (0x00000038, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) + 4: (ParamBlock2, (0x00000082, 0x00000000)) + 5: (ParamBlock2, (0x00000082, 0x00000000)) + 6: (ParamBlock2, (0x00000082, 0x00000000)) + 7: (ParamBlock2, (0x00000082, 0x00000000)) + 8: (Max 2.5 Star, (0x25773211, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: .... Hex: 8b 00 00 00 Int: 139 Float: 1.9478e-43 } } - 3 0x4000: (StorageContainer) [4] { + Orphan[1] 0x4000: (StorageContainer) [4] { 0 0x4001: (StorageRaw) { Size: 24 String: 0.9. .-. .D.e.f.a.u.l.t. } @@ -7325,415 +6954,387 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } - 4 0x5300: (StorageRaw) { + Orphan[2] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 0d 00 00 00 Int: 13 Float: 1.82169e-44 } - 5 0x5600: (StorageContainer) [1] { + Orphan[3] 0x5600: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 151 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [6] { - 0 0x000b: (StorageRaw) { + 151 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [6] { + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: <).Z..B0`......!........ Hex: 3c 29 06 5a 1e 0c 42 30 60 11 00 00 00 00 00 21 e0 2e 04 00 98 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 09 00 00 00 00 00 80 06 00 00 00 00 40 ff ff ff ff } - 5 0x000c: (StorageRaw) { + Orphan[5] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 152 0x0001: (SceneClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), ViewportManager.gup) [3] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: ........ - Hex: 97 00 00 00 ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1000: (StorageRaw) { + 152 0x0001: (CustAttribSuperClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), 0x00001160, Viewport Manager for DirectX (Autodesk)) [1] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 153 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: 98 00 00 00 - Int: 152 - Float: 2.12997e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1030: (StorageRaw) { + 153 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ViewportManager, (0x5a06293c, 0x30420c1e)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: .... Hex: a4 00 00 00 Int: 164 Float: 2.29813e-43 } - 3 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 154 0x0004: (SceneClassUnknown: Texmaps, (0x00001200, 0x00000000), mtl.dlt) [8] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: 0... - Hex: 30 00 00 00 - Int: 48 - Float: 6.72623e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5003: (StorageRaw) { + 154 0x0004: (TexmapContainerSuperClassUnknown: Texmaps, (0x00001200, 0x00000000), 0x00001080, Standard Materials and Textures (Autodesk)) [6] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5003: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x5108: (StorageRaw) { + Orphan[1] 0x5108: (StorageRaw) { Size: 4 String: ...> Hex: 9a 99 99 3e Int: 1050253722 Float: 0.3 } - 4 0x510c: (StorageRaw) { + Orphan[2] 0x510c: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x510d: (StorageRaw) { + Orphan[3] 0x510d: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x510e: (StorageRaw) { + Orphan[4] 0x510e: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x510f: (StorageRaw) { + Orphan[5] 0x510f: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 155 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 155 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 05 00 00 00 00 00 00 21 e0 2e 0c 00 9c 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 01 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ...............fff?fff?fff? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 66 66 66 3f 66 66 66 3f 66 66 66 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 27 String: ........................... Hex: 08 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0a 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 cc cc cc 3d } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 cd cc cc 3d } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 156 0x0005: (SceneClassUnknown: Blinn, (0x00000038, 0x00000000), mtl.dlt) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: 9b 00 00 00 - Int: 155 - Float: 2.17201e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5300: (StorageRaw) { + 156 0x0005: (ShaderSuperClassUnknown: Blinn, (0x00000038, 0x00000000), 0x000010b0, Standard Materials and Textures (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x5020: (StorageContainer) [1] { + Orphan[1] 0x5020: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 157 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [8] { - 0 0x0009: (StorageRaw) { + 157 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [8] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 00 00 00 21 e0 2e 06 00 a4 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 7 0x000c: (StorageRaw) { + Orphan[7] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 158 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 158 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 01 00 00 21 e0 2e 0c 00 a4 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 3f 00 00 00 3f 00 00 00 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: .......)......@.... Hex: 03 00 0f 00 00 00 00 29 81 10 00 00 00 00 40 ff ff ff ff } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 06 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 c0 3f } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 07 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: .................@@ Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 40 40 } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 159 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [13] { - 0 0x0009: (StorageRaw) { + 159 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [13] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 02 00 00 21 e0 2e 0b 00 a4 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 03 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@...= Hex: 04 00 00 00 00 00 00 00 92 00 00 00 00 00 40 cd cc cc 3d } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 12 0x000c: (StorageRaw) { + Orphan[12] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 160 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [7] { - 0 0x0009: (StorageRaw) { + 160 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [7] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 03 00 00 21 e0 2e 04 00 a4 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 00 00 04 08 00 00 00 00 82 00 00 00 00 00 00 18 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 01 00 0f 08 00 00 00 01 81 00 00 00 00 00 00 18 00 00 00 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 139 String: ...................@...?@...?@...?@...?@...?@...?@...?@...?@...>@...?@...?@...?@....@....@....@....@...?@...?@...?@...?@...?@...?@...?@...? Hex: 02 00 06 08 00 00 00 00 92 00 00 00 00 00 00 18 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 9a 99 99 3e 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x0005: (StorageRaw) { + Orphan[5] 0x0005: (StorageRaw) { Size: 961 String: $.......ambientMap...........ambientMapAmount...........ambientMapEnable...........bumpMap...........bumpMapAmount...........bumpMapEnable...........diffuseMap...........diffuseMapAmount...........diffuseMapEnable...........displacementMap...........displacementMapAmount...........displacementMapEnable...........filterMap...........filterMapAmount...........filterMapEnable...........glossinessMap...........glossinessMapAmount...........glossinessMapEnable...........opacityMap...........opacityMapAmount...........opacityMapEnable...........reflectionMap...........reflectionMapAmount...........reflectionMapEnable...........refractionMap...........refractionMapAmount...........refractionMapEnable...........selfIllumMap...........selfIllumMapAmount...........selfIllumMapEnable...........specularLevelMap...........specularLevelMapAmount...........specularLevelMapEnable...........specularMap...........specularMapAmount...........specularMapEnable....... Hex: 24 00 00 00 0b 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 00 01 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 00 00 00 00 08 00 00 00 62 75 6d 70 4d 61 70 00 01 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 41 6d 6f 75 6e 74 00 02 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 45 6e 61 62 6c 65 00 00 00 08 00 00 00 0b 00 00 00 64 69 66 66 75 73 65 4d 61 70 00 01 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 41 6d 6f 75 6e 74 00 02 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 45 6e 61 62 6c 65 00 00 00 01 00 00 00 10 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 00 01 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 0b 00 00 00 0a 00 00 00 66 69 6c 74 65 72 4d 61 70 00 01 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 07 00 00 00 0e 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 00 01 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 41 6d 6f 75 6e 74 00 02 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 45 6e 61 62 6c 65 00 00 00 04 00 00 00 0b 00 00 00 6f 70 61 63 69 74 79 4d 61 70 00 01 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 41 6d 6f 75 6e 74 00 02 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 45 6e 61 62 6c 65 00 00 00 06 00 00 00 0e 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 00 01 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 09 00 00 00 0e 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 00 01 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 0a 00 00 00 0d 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 00 01 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 41 6d 6f 75 6e 74 00 02 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 45 6e 61 62 6c 65 00 00 00 05 00 00 00 11 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 00 01 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 41 6d 6f 75 6e 74 00 02 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 45 6e 61 62 6c 65 00 00 00 03 00 00 00 0c 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 00 01 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 02 00 00 00 } - 6 0x000c: (StorageRaw) { + Orphan[6] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 161 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [5] { - 0 0x0009: (StorageRaw) { + 161 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [5] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 04 00 00 21 e0 2e 03 00 a4 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 00 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000c: (StorageRaw) { + Orphan[4] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 162 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [5] { - 0 0x0001: (StorageRaw) { + 162 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [5] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 03 00 00 00 Int: 3 Float: 4.2039e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 02 00 } - 2 0x0002: (StorageContainer) [2] { + Orphan[2] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -7746,7 +7347,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } } - 3 0x0002: (StorageContainer) [2] { + Orphan[3] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -7759,7 +7360,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [2] { + Orphan[4] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -7772,44 +7373,39 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 163 0x0007: (SceneClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), samplers.dlh) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: a2 00 00 00 - Int: 162 - Float: 2.2701e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0200: (StorageRaw) { + 163 0x0007: (SamplerSuperClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), 0x00001110, Standard Samplers (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0200: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x39bf: (StorageContainer) [1] { + Orphan[1] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 24 String: M.a.x. .2...5. .S.t.a.r. } } } - 164 0x0008: (SceneClassUnknown: Standard, (0x00000002, 0x00000000), mtl.dlt) [6] { - 0 0x2034: (StorageRaw) { - Size: 36 - String: .................................... - Hex: ff ff ff ff 9a 00 00 00 9c 00 00 00 9d 00 00 00 9e 00 00 00 9f 00 00 00 a0 00 00 00 a1 00 00 00 a3 00 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x21b0: (StorageContainer) [1] { + 164 0x0008: (MtlSuperClassUnknown: Standard, (0x00000002, 0x00000000), 0x00000c00, Standard Materials and Textures (Autodesk)) [4] { + References 0x2034: PARSED { + 1: (Texmaps, (0x00001200, 0x00000000)) + 2: (Blinn, (0x00000038, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) + 4: (ParamBlock2, (0x00000082, 0x00000000)) + 5: (ParamBlock2, (0x00000082, 0x00000000)) + 6: (ParamBlock2, (0x00000082, 0x00000000)) + 7: (ParamBlock2, (0x00000082, 0x00000000)) + 8: (Max 2.5 Star, (0x25773211, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: .... Hex: 99 00 00 00 Int: 153 Float: 2.14399e-43 } } - 3 0x4000: (StorageContainer) [4] { + Orphan[1] 0x4000: (StorageContainer) [4] { 0 0x4001: (StorageRaw) { Size: 24 String: 0.9. .-. .D.e.f.a.u.l.t. } @@ -7829,415 +7425,387 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } - 4 0x5300: (StorageRaw) { + Orphan[2] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 0d 00 00 00 Int: 13 Float: 1.82169e-44 } - 5 0x5600: (StorageContainer) [1] { + Orphan[3] 0x5600: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 165 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [6] { - 0 0x000b: (StorageRaw) { + 165 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [6] { + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: <).Z..B0`......!........ Hex: 3c 29 06 5a 1e 0c 42 30 60 11 00 00 00 00 00 21 e0 2e 04 00 a6 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 09 00 00 00 00 00 80 06 00 00 00 00 40 ff ff ff ff } - 5 0x000c: (StorageRaw) { + Orphan[5] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 166 0x0001: (SceneClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), ViewportManager.gup) [3] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: ........ - Hex: a5 00 00 00 ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1000: (StorageRaw) { + 166 0x0001: (CustAttribSuperClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), 0x00001160, Viewport Manager for DirectX (Autodesk)) [1] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 167 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: a6 00 00 00 - Int: 166 - Float: 2.32616e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1030: (StorageRaw) { + 167 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ViewportManager, (0x5a06293c, 0x30420c1e)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: .... Hex: b2 00 00 00 Int: 178 Float: 2.49431e-43 } - 3 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 168 0x0004: (SceneClassUnknown: Texmaps, (0x00001200, 0x00000000), mtl.dlt) [8] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: 0... - Hex: 30 00 00 00 - Int: 48 - Float: 6.72623e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5003: (StorageRaw) { + 168 0x0004: (TexmapContainerSuperClassUnknown: Texmaps, (0x00001200, 0x00000000), 0x00001080, Standard Materials and Textures (Autodesk)) [6] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5003: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x5108: (StorageRaw) { + Orphan[1] 0x5108: (StorageRaw) { Size: 4 String: ...> Hex: 9a 99 99 3e Int: 1050253722 Float: 0.3 } - 4 0x510c: (StorageRaw) { + Orphan[2] 0x510c: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x510d: (StorageRaw) { + Orphan[3] 0x510d: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x510e: (StorageRaw) { + Orphan[4] 0x510e: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x510f: (StorageRaw) { + Orphan[5] 0x510f: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 169 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 169 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 05 00 00 00 00 00 00 21 e0 2e 0c 00 aa 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 01 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ...............fff?fff?fff? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 66 66 66 3f 66 66 66 3f 66 66 66 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 27 String: ........................... Hex: 08 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0a 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 cc cc cc 3d } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 cd cc cc 3d } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 170 0x0005: (SceneClassUnknown: Blinn, (0x00000038, 0x00000000), mtl.dlt) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: a9 00 00 00 - Int: 169 - Float: 2.36819e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5300: (StorageRaw) { + 170 0x0005: (ShaderSuperClassUnknown: Blinn, (0x00000038, 0x00000000), 0x000010b0, Standard Materials and Textures (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x5020: (StorageContainer) [1] { + Orphan[1] 0x5020: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 171 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [8] { - 0 0x0009: (StorageRaw) { + 171 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [8] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 00 00 00 21 e0 2e 06 00 b2 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 7 0x000c: (StorageRaw) { + Orphan[7] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 172 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 172 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 01 00 00 21 e0 2e 0c 00 b2 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 3f 00 00 00 3f 00 00 00 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: .......)......@.... Hex: 03 00 0f 00 00 00 00 29 81 10 00 00 00 00 40 ff ff ff ff } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 06 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 c0 3f } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 07 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: .................@@ Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 40 40 } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 173 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [13] { - 0 0x0009: (StorageRaw) { + 173 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [13] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 02 00 00 21 e0 2e 0b 00 b2 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 03 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@...= Hex: 04 00 00 00 00 00 00 00 92 00 00 00 00 00 40 cd cc cc 3d } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 12 0x000c: (StorageRaw) { + Orphan[12] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 174 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [7] { - 0 0x0009: (StorageRaw) { + 174 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [7] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 03 00 00 21 e0 2e 04 00 b2 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 00 00 04 08 00 00 00 00 82 00 00 00 00 00 00 18 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 01 00 0f 08 00 00 00 01 81 00 00 00 00 00 00 18 00 00 00 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 139 String: ...................@...?@...?@...?@...?@...?@...?@...?@...?@...>@...?@...?@...?@....@....@....@....@...?@...?@...?@...?@...?@...?@...?@...? Hex: 02 00 06 08 00 00 00 00 92 00 00 00 00 00 00 18 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 9a 99 99 3e 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x0005: (StorageRaw) { + Orphan[5] 0x0005: (StorageRaw) { Size: 961 String: $.......ambientMap...........ambientMapAmount...........ambientMapEnable...........bumpMap...........bumpMapAmount...........bumpMapEnable...........diffuseMap...........diffuseMapAmount...........diffuseMapEnable...........displacementMap...........displacementMapAmount...........displacementMapEnable...........filterMap...........filterMapAmount...........filterMapEnable...........glossinessMap...........glossinessMapAmount...........glossinessMapEnable...........opacityMap...........opacityMapAmount...........opacityMapEnable...........reflectionMap...........reflectionMapAmount...........reflectionMapEnable...........refractionMap...........refractionMapAmount...........refractionMapEnable...........selfIllumMap...........selfIllumMapAmount...........selfIllumMapEnable...........specularLevelMap...........specularLevelMapAmount...........specularLevelMapEnable...........specularMap...........specularMapAmount...........specularMapEnable....... Hex: 24 00 00 00 0b 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 00 01 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 00 00 00 00 08 00 00 00 62 75 6d 70 4d 61 70 00 01 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 41 6d 6f 75 6e 74 00 02 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 45 6e 61 62 6c 65 00 00 00 08 00 00 00 0b 00 00 00 64 69 66 66 75 73 65 4d 61 70 00 01 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 41 6d 6f 75 6e 74 00 02 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 45 6e 61 62 6c 65 00 00 00 01 00 00 00 10 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 00 01 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 0b 00 00 00 0a 00 00 00 66 69 6c 74 65 72 4d 61 70 00 01 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 07 00 00 00 0e 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 00 01 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 41 6d 6f 75 6e 74 00 02 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 45 6e 61 62 6c 65 00 00 00 04 00 00 00 0b 00 00 00 6f 70 61 63 69 74 79 4d 61 70 00 01 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 41 6d 6f 75 6e 74 00 02 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 45 6e 61 62 6c 65 00 00 00 06 00 00 00 0e 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 00 01 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 09 00 00 00 0e 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 00 01 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 0a 00 00 00 0d 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 00 01 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 41 6d 6f 75 6e 74 00 02 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 45 6e 61 62 6c 65 00 00 00 05 00 00 00 11 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 00 01 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 41 6d 6f 75 6e 74 00 02 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 45 6e 61 62 6c 65 00 00 00 03 00 00 00 0c 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 00 01 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 02 00 00 00 } - 6 0x000c: (StorageRaw) { + Orphan[6] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 175 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [5] { - 0 0x0009: (StorageRaw) { + 175 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [5] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 04 00 00 21 e0 2e 03 00 b2 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 00 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000c: (StorageRaw) { + Orphan[4] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 176 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [5] { - 0 0x0001: (StorageRaw) { + 176 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [5] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 03 00 00 00 Int: 3 Float: 4.2039e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 02 00 } - 2 0x0002: (StorageContainer) [2] { + Orphan[2] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -8250,7 +7818,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } } - 3 0x0002: (StorageContainer) [2] { + Orphan[3] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -8263,7 +7831,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [2] { + Orphan[4] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -8276,44 +7844,39 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 177 0x0007: (SceneClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), samplers.dlh) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: b0 00 00 00 - Int: 176 - Float: 2.46629e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0200: (StorageRaw) { + 177 0x0007: (SamplerSuperClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), 0x00001110, Standard Samplers (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0200: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x39bf: (StorageContainer) [1] { + Orphan[1] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 24 String: M.a.x. .2...5. .S.t.a.r. } } } - 178 0x0008: (SceneClassUnknown: Standard, (0x00000002, 0x00000000), mtl.dlt) [6] { - 0 0x2034: (StorageRaw) { - Size: 36 - String: .................................... - Hex: ff ff ff ff a8 00 00 00 aa 00 00 00 ab 00 00 00 ac 00 00 00 ad 00 00 00 ae 00 00 00 af 00 00 00 b1 00 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x21b0: (StorageContainer) [1] { + 178 0x0008: (MtlSuperClassUnknown: Standard, (0x00000002, 0x00000000), 0x00000c00, Standard Materials and Textures (Autodesk)) [4] { + References 0x2034: PARSED { + 1: (Texmaps, (0x00001200, 0x00000000)) + 2: (Blinn, (0x00000038, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) + 4: (ParamBlock2, (0x00000082, 0x00000000)) + 5: (ParamBlock2, (0x00000082, 0x00000000)) + 6: (ParamBlock2, (0x00000082, 0x00000000)) + 7: (ParamBlock2, (0x00000082, 0x00000000)) + 8: (Max 2.5 Star, (0x25773211, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: .... Hex: a7 00 00 00 Int: 167 Float: 2.34017e-43 } } - 3 0x4000: (StorageContainer) [4] { + Orphan[1] 0x4000: (StorageContainer) [4] { 0 0x4001: (StorageRaw) { Size: 24 String: 1.0. .-. .D.e.f.a.u.l.t. } @@ -8333,415 +7896,387 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } - 4 0x5300: (StorageRaw) { + Orphan[2] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 0d 00 00 00 Int: 13 Float: 1.82169e-44 } - 5 0x5600: (StorageContainer) [1] { + Orphan[3] 0x5600: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 179 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [6] { - 0 0x000b: (StorageRaw) { + 179 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [6] { + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: <).Z..B0`......!........ Hex: 3c 29 06 5a 1e 0c 42 30 60 11 00 00 00 00 00 21 e0 2e 04 00 b4 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 09 00 00 00 00 00 80 06 00 00 00 00 40 ff ff ff ff } - 5 0x000c: (StorageRaw) { + Orphan[5] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 180 0x0001: (SceneClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), ViewportManager.gup) [3] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: ........ - Hex: b3 00 00 00 ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1000: (StorageRaw) { + 180 0x0001: (CustAttribSuperClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), 0x00001160, Viewport Manager for DirectX (Autodesk)) [1] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 181 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: b4 00 00 00 - Int: 180 - Float: 2.52234e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1030: (StorageRaw) { + 181 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ViewportManager, (0x5a06293c, 0x30420c1e)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: .... Hex: c0 00 00 00 Int: 192 Float: 2.69049e-43 } - 3 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 182 0x0004: (SceneClassUnknown: Texmaps, (0x00001200, 0x00000000), mtl.dlt) [8] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: 0... - Hex: 30 00 00 00 - Int: 48 - Float: 6.72623e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5003: (StorageRaw) { + 182 0x0004: (TexmapContainerSuperClassUnknown: Texmaps, (0x00001200, 0x00000000), 0x00001080, Standard Materials and Textures (Autodesk)) [6] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5003: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x5108: (StorageRaw) { + Orphan[1] 0x5108: (StorageRaw) { Size: 4 String: ...> Hex: 9a 99 99 3e Int: 1050253722 Float: 0.3 } - 4 0x510c: (StorageRaw) { + Orphan[2] 0x510c: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x510d: (StorageRaw) { + Orphan[3] 0x510d: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x510e: (StorageRaw) { + Orphan[4] 0x510e: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x510f: (StorageRaw) { + Orphan[5] 0x510f: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 183 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 183 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 05 00 00 00 00 00 00 21 e0 2e 0c 00 b8 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 01 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ...............fff?fff?fff? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 66 66 66 3f 66 66 66 3f 66 66 66 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 27 String: ........................... Hex: 08 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0a 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 cc cc cc 3d } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 cd cc cc 3d } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 184 0x0005: (SceneClassUnknown: Blinn, (0x00000038, 0x00000000), mtl.dlt) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: b7 00 00 00 - Int: 183 - Float: 2.56438e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5300: (StorageRaw) { + 184 0x0005: (ShaderSuperClassUnknown: Blinn, (0x00000038, 0x00000000), 0x000010b0, Standard Materials and Textures (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x5020: (StorageContainer) [1] { + Orphan[1] 0x5020: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 185 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [8] { - 0 0x0009: (StorageRaw) { + 185 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [8] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 00 00 00 21 e0 2e 06 00 c0 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 7 0x000c: (StorageRaw) { + Orphan[7] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 186 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 186 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 01 00 00 21 e0 2e 0c 00 c0 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 3f 00 00 00 3f 00 00 00 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: .......)......@.... Hex: 03 00 0f 00 00 00 00 29 81 10 00 00 00 00 40 ff ff ff ff } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 06 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 c0 3f } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 07 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: .................@@ Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 40 40 } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 187 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [13] { - 0 0x0009: (StorageRaw) { + 187 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [13] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 02 00 00 21 e0 2e 0b 00 c0 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 03 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@...= Hex: 04 00 00 00 00 00 00 00 92 00 00 00 00 00 40 cd cc cc 3d } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 12 0x000c: (StorageRaw) { + Orphan[12] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 188 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [7] { - 0 0x0009: (StorageRaw) { + 188 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [7] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 03 00 00 21 e0 2e 04 00 c0 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 00 00 04 08 00 00 00 00 82 00 00 00 00 00 00 18 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 01 00 0f 08 00 00 00 01 81 00 00 00 00 00 00 18 00 00 00 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 139 String: ...................@...?@...?@...?@...?@...?@...?@...?@...?@...>@...?@...?@...?@....@....@....@....@...?@...?@...?@...?@...?@...?@...?@...? Hex: 02 00 06 08 00 00 00 00 92 00 00 00 00 00 00 18 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 9a 99 99 3e 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x0005: (StorageRaw) { + Orphan[5] 0x0005: (StorageRaw) { Size: 961 String: $.......ambientMap...........ambientMapAmount...........ambientMapEnable...........bumpMap...........bumpMapAmount...........bumpMapEnable...........diffuseMap...........diffuseMapAmount...........diffuseMapEnable...........displacementMap...........displacementMapAmount...........displacementMapEnable...........filterMap...........filterMapAmount...........filterMapEnable...........glossinessMap...........glossinessMapAmount...........glossinessMapEnable...........opacityMap...........opacityMapAmount...........opacityMapEnable...........reflectionMap...........reflectionMapAmount...........reflectionMapEnable...........refractionMap...........refractionMapAmount...........refractionMapEnable...........selfIllumMap...........selfIllumMapAmount...........selfIllumMapEnable...........specularLevelMap...........specularLevelMapAmount...........specularLevelMapEnable...........specularMap...........specularMapAmount...........specularMapEnable....... Hex: 24 00 00 00 0b 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 00 01 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 00 00 00 00 08 00 00 00 62 75 6d 70 4d 61 70 00 01 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 41 6d 6f 75 6e 74 00 02 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 45 6e 61 62 6c 65 00 00 00 08 00 00 00 0b 00 00 00 64 69 66 66 75 73 65 4d 61 70 00 01 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 41 6d 6f 75 6e 74 00 02 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 45 6e 61 62 6c 65 00 00 00 01 00 00 00 10 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 00 01 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 0b 00 00 00 0a 00 00 00 66 69 6c 74 65 72 4d 61 70 00 01 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 07 00 00 00 0e 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 00 01 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 41 6d 6f 75 6e 74 00 02 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 45 6e 61 62 6c 65 00 00 00 04 00 00 00 0b 00 00 00 6f 70 61 63 69 74 79 4d 61 70 00 01 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 41 6d 6f 75 6e 74 00 02 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 45 6e 61 62 6c 65 00 00 00 06 00 00 00 0e 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 00 01 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 09 00 00 00 0e 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 00 01 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 0a 00 00 00 0d 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 00 01 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 41 6d 6f 75 6e 74 00 02 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 45 6e 61 62 6c 65 00 00 00 05 00 00 00 11 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 00 01 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 41 6d 6f 75 6e 74 00 02 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 45 6e 61 62 6c 65 00 00 00 03 00 00 00 0c 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 00 01 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 02 00 00 00 } - 6 0x000c: (StorageRaw) { + Orphan[6] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 189 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [5] { - 0 0x0009: (StorageRaw) { + 189 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [5] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 04 00 00 21 e0 2e 03 00 c0 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 00 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000c: (StorageRaw) { + Orphan[4] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 190 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [5] { - 0 0x0001: (StorageRaw) { + 190 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [5] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 03 00 00 00 Int: 3 Float: 4.2039e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 02 00 } - 2 0x0002: (StorageContainer) [2] { + Orphan[2] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -8754,7 +8289,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } } - 3 0x0002: (StorageContainer) [2] { + Orphan[3] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -8767,7 +8302,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [2] { + Orphan[4] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -8780,44 +8315,39 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 191 0x0007: (SceneClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), samplers.dlh) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: be 00 00 00 - Int: 190 - Float: 2.66247e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0200: (StorageRaw) { + 191 0x0007: (SamplerSuperClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), 0x00001110, Standard Samplers (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0200: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x39bf: (StorageContainer) [1] { + Orphan[1] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 24 String: M.a.x. .2...5. .S.t.a.r. } } } - 192 0x0008: (SceneClassUnknown: Standard, (0x00000002, 0x00000000), mtl.dlt) [6] { - 0 0x2034: (StorageRaw) { - Size: 36 - String: .................................... - Hex: ff ff ff ff b6 00 00 00 b8 00 00 00 b9 00 00 00 ba 00 00 00 bb 00 00 00 bc 00 00 00 bd 00 00 00 bf 00 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x21b0: (StorageContainer) [1] { + 192 0x0008: (MtlSuperClassUnknown: Standard, (0x00000002, 0x00000000), 0x00000c00, Standard Materials and Textures (Autodesk)) [4] { + References 0x2034: PARSED { + 1: (Texmaps, (0x00001200, 0x00000000)) + 2: (Blinn, (0x00000038, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) + 4: (ParamBlock2, (0x00000082, 0x00000000)) + 5: (ParamBlock2, (0x00000082, 0x00000000)) + 6: (ParamBlock2, (0x00000082, 0x00000000)) + 7: (ParamBlock2, (0x00000082, 0x00000000)) + 8: (Max 2.5 Star, (0x25773211, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: .... Hex: b5 00 00 00 Int: 181 Float: 2.53635e-43 } } - 3 0x4000: (StorageContainer) [4] { + Orphan[1] 0x4000: (StorageContainer) [4] { 0 0x4001: (StorageRaw) { Size: 24 String: 1.1. .-. .D.e.f.a.u.l.t. } @@ -8837,415 +8367,387 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } - 4 0x5300: (StorageRaw) { + Orphan[2] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 0d 00 00 00 Int: 13 Float: 1.82169e-44 } - 5 0x5600: (StorageContainer) [1] { + Orphan[3] 0x5600: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 193 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [6] { - 0 0x000b: (StorageRaw) { + 193 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [6] { + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: <).Z..B0`......!........ Hex: 3c 29 06 5a 1e 0c 42 30 60 11 00 00 00 00 00 21 e0 2e 04 00 c2 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 09 00 00 00 00 00 80 06 00 00 00 00 40 ff ff ff ff } - 5 0x000c: (StorageRaw) { + Orphan[5] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 194 0x0001: (SceneClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), ViewportManager.gup) [3] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: ........ - Hex: c1 00 00 00 ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1000: (StorageRaw) { + 194 0x0001: (CustAttribSuperClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), 0x00001160, Viewport Manager for DirectX (Autodesk)) [1] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 195 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: c2 00 00 00 - Int: 194 - Float: 2.71852e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1030: (StorageRaw) { + 195 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ViewportManager, (0x5a06293c, 0x30420c1e)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: .... Hex: ce 00 00 00 Int: 206 Float: 2.88667e-43 } - 3 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 196 0x0004: (SceneClassUnknown: Texmaps, (0x00001200, 0x00000000), mtl.dlt) [8] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: 0... - Hex: 30 00 00 00 - Int: 48 - Float: 6.72623e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5003: (StorageRaw) { + 196 0x0004: (TexmapContainerSuperClassUnknown: Texmaps, (0x00001200, 0x00000000), 0x00001080, Standard Materials and Textures (Autodesk)) [6] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5003: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x5108: (StorageRaw) { + Orphan[1] 0x5108: (StorageRaw) { Size: 4 String: ...> Hex: 9a 99 99 3e Int: 1050253722 Float: 0.3 } - 4 0x510c: (StorageRaw) { + Orphan[2] 0x510c: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x510d: (StorageRaw) { + Orphan[3] 0x510d: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x510e: (StorageRaw) { + Orphan[4] 0x510e: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x510f: (StorageRaw) { + Orphan[5] 0x510f: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 197 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 197 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 05 00 00 00 00 00 00 21 e0 2e 0c 00 c6 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 01 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ...............fff?fff?fff? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 66 66 66 3f 66 66 66 3f 66 66 66 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 27 String: ........................... Hex: 08 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0a 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 cc cc cc 3d } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 cd cc cc 3d } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 198 0x0005: (SceneClassUnknown: Blinn, (0x00000038, 0x00000000), mtl.dlt) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: c5 00 00 00 - Int: 197 - Float: 2.76056e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5300: (StorageRaw) { + 198 0x0005: (ShaderSuperClassUnknown: Blinn, (0x00000038, 0x00000000), 0x000010b0, Standard Materials and Textures (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x5020: (StorageContainer) [1] { + Orphan[1] 0x5020: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 199 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [8] { - 0 0x0009: (StorageRaw) { + 199 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [8] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 00 00 00 21 e0 2e 06 00 ce 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 7 0x000c: (StorageRaw) { + Orphan[7] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 200 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 200 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 01 00 00 21 e0 2e 0c 00 ce 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 3f 00 00 00 3f 00 00 00 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: .......)......@.... Hex: 03 00 0f 00 00 00 00 29 81 10 00 00 00 00 40 ff ff ff ff } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 06 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 c0 3f } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 07 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: .................@@ Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 40 40 } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 201 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [13] { - 0 0x0009: (StorageRaw) { + 201 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [13] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 02 00 00 21 e0 2e 0b 00 ce 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 03 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@...= Hex: 04 00 00 00 00 00 00 00 92 00 00 00 00 00 40 cd cc cc 3d } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 12 0x000c: (StorageRaw) { + Orphan[12] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 202 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [7] { - 0 0x0009: (StorageRaw) { + 202 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [7] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 03 00 00 21 e0 2e 04 00 ce 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 00 00 04 08 00 00 00 00 82 00 00 00 00 00 00 18 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 01 00 0f 08 00 00 00 01 81 00 00 00 00 00 00 18 00 00 00 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 139 String: ...................@...?@...?@...?@...?@...?@...?@...?@...?@...>@...?@...?@...?@....@....@....@....@...?@...?@...?@...?@...?@...?@...?@...? Hex: 02 00 06 08 00 00 00 00 92 00 00 00 00 00 00 18 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 9a 99 99 3e 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x0005: (StorageRaw) { + Orphan[5] 0x0005: (StorageRaw) { Size: 961 String: $.......ambientMap...........ambientMapAmount...........ambientMapEnable...........bumpMap...........bumpMapAmount...........bumpMapEnable...........diffuseMap...........diffuseMapAmount...........diffuseMapEnable...........displacementMap...........displacementMapAmount...........displacementMapEnable...........filterMap...........filterMapAmount...........filterMapEnable...........glossinessMap...........glossinessMapAmount...........glossinessMapEnable...........opacityMap...........opacityMapAmount...........opacityMapEnable...........reflectionMap...........reflectionMapAmount...........reflectionMapEnable...........refractionMap...........refractionMapAmount...........refractionMapEnable...........selfIllumMap...........selfIllumMapAmount...........selfIllumMapEnable...........specularLevelMap...........specularLevelMapAmount...........specularLevelMapEnable...........specularMap...........specularMapAmount...........specularMapEnable....... Hex: 24 00 00 00 0b 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 00 01 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 00 00 00 00 08 00 00 00 62 75 6d 70 4d 61 70 00 01 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 41 6d 6f 75 6e 74 00 02 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 45 6e 61 62 6c 65 00 00 00 08 00 00 00 0b 00 00 00 64 69 66 66 75 73 65 4d 61 70 00 01 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 41 6d 6f 75 6e 74 00 02 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 45 6e 61 62 6c 65 00 00 00 01 00 00 00 10 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 00 01 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 0b 00 00 00 0a 00 00 00 66 69 6c 74 65 72 4d 61 70 00 01 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 07 00 00 00 0e 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 00 01 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 41 6d 6f 75 6e 74 00 02 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 45 6e 61 62 6c 65 00 00 00 04 00 00 00 0b 00 00 00 6f 70 61 63 69 74 79 4d 61 70 00 01 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 41 6d 6f 75 6e 74 00 02 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 45 6e 61 62 6c 65 00 00 00 06 00 00 00 0e 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 00 01 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 09 00 00 00 0e 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 00 01 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 0a 00 00 00 0d 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 00 01 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 41 6d 6f 75 6e 74 00 02 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 45 6e 61 62 6c 65 00 00 00 05 00 00 00 11 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 00 01 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 41 6d 6f 75 6e 74 00 02 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 45 6e 61 62 6c 65 00 00 00 03 00 00 00 0c 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 00 01 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 02 00 00 00 } - 6 0x000c: (StorageRaw) { + Orphan[6] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 203 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [5] { - 0 0x0009: (StorageRaw) { + 203 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [5] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 04 00 00 21 e0 2e 03 00 ce 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 00 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000c: (StorageRaw) { + Orphan[4] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 204 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [5] { - 0 0x0001: (StorageRaw) { + 204 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [5] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 03 00 00 00 Int: 3 Float: 4.2039e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 02 00 } - 2 0x0002: (StorageContainer) [2] { + Orphan[2] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -9258,7 +8760,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } } - 3 0x0002: (StorageContainer) [2] { + Orphan[3] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -9271,7 +8773,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [2] { + Orphan[4] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -9284,44 +8786,39 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 205 0x0007: (SceneClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), samplers.dlh) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: cc 00 00 00 - Int: 204 - Float: 2.85865e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0200: (StorageRaw) { + 205 0x0007: (SamplerSuperClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), 0x00001110, Standard Samplers (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0200: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x39bf: (StorageContainer) [1] { + Orphan[1] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 24 String: M.a.x. .2...5. .S.t.a.r. } } } - 206 0x0008: (SceneClassUnknown: Standard, (0x00000002, 0x00000000), mtl.dlt) [6] { - 0 0x2034: (StorageRaw) { - Size: 36 - String: .................................... - Hex: ff ff ff ff c4 00 00 00 c6 00 00 00 c7 00 00 00 c8 00 00 00 c9 00 00 00 ca 00 00 00 cb 00 00 00 cd 00 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x21b0: (StorageContainer) [1] { + 206 0x0008: (MtlSuperClassUnknown: Standard, (0x00000002, 0x00000000), 0x00000c00, Standard Materials and Textures (Autodesk)) [4] { + References 0x2034: PARSED { + 1: (Texmaps, (0x00001200, 0x00000000)) + 2: (Blinn, (0x00000038, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) + 4: (ParamBlock2, (0x00000082, 0x00000000)) + 5: (ParamBlock2, (0x00000082, 0x00000000)) + 6: (ParamBlock2, (0x00000082, 0x00000000)) + 7: (ParamBlock2, (0x00000082, 0x00000000)) + 8: (Max 2.5 Star, (0x25773211, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: .... Hex: c3 00 00 00 Int: 195 Float: 2.73253e-43 } } - 3 0x4000: (StorageContainer) [4] { + Orphan[1] 0x4000: (StorageContainer) [4] { 0 0x4001: (StorageRaw) { Size: 24 String: 1.2. .-. .D.e.f.a.u.l.t. } @@ -9341,415 +8838,387 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } - 4 0x5300: (StorageRaw) { + Orphan[2] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 0d 00 00 00 Int: 13 Float: 1.82169e-44 } - 5 0x5600: (StorageContainer) [1] { + Orphan[3] 0x5600: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 207 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [6] { - 0 0x000b: (StorageRaw) { + 207 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [6] { + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: <).Z..B0`......!........ Hex: 3c 29 06 5a 1e 0c 42 30 60 11 00 00 00 00 00 21 e0 2e 04 00 d0 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 09 00 00 00 00 00 80 06 00 00 00 00 40 ff ff ff ff } - 5 0x000c: (StorageRaw) { + Orphan[5] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 208 0x0001: (SceneClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), ViewportManager.gup) [3] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: ........ - Hex: cf 00 00 00 ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1000: (StorageRaw) { + 208 0x0001: (CustAttribSuperClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), 0x00001160, Viewport Manager for DirectX (Autodesk)) [1] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 209 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: d0 00 00 00 - Int: 208 - Float: 2.9147e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1030: (StorageRaw) { + 209 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ViewportManager, (0x5a06293c, 0x30420c1e)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: .... Hex: dc 00 00 00 Int: 220 Float: 3.08286e-43 } - 3 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 210 0x0004: (SceneClassUnknown: Texmaps, (0x00001200, 0x00000000), mtl.dlt) [8] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: 0... - Hex: 30 00 00 00 - Int: 48 - Float: 6.72623e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5003: (StorageRaw) { + 210 0x0004: (TexmapContainerSuperClassUnknown: Texmaps, (0x00001200, 0x00000000), 0x00001080, Standard Materials and Textures (Autodesk)) [6] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5003: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x5108: (StorageRaw) { + Orphan[1] 0x5108: (StorageRaw) { Size: 4 String: ...> Hex: 9a 99 99 3e Int: 1050253722 Float: 0.3 } - 4 0x510c: (StorageRaw) { + Orphan[2] 0x510c: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x510d: (StorageRaw) { + Orphan[3] 0x510d: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x510e: (StorageRaw) { + Orphan[4] 0x510e: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x510f: (StorageRaw) { + Orphan[5] 0x510f: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 211 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 211 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 05 00 00 00 00 00 00 21 e0 2e 0c 00 d4 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 01 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ...............fff?fff?fff? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 66 66 66 3f 66 66 66 3f 66 66 66 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 27 String: ........................... Hex: 08 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0a 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 cc cc cc 3d } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 cd cc cc 3d } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 212 0x0005: (SceneClassUnknown: Blinn, (0x00000038, 0x00000000), mtl.dlt) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: d3 00 00 00 - Int: 211 - Float: 2.95674e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5300: (StorageRaw) { + 212 0x0005: (ShaderSuperClassUnknown: Blinn, (0x00000038, 0x00000000), 0x000010b0, Standard Materials and Textures (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x5020: (StorageContainer) [1] { + Orphan[1] 0x5020: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 213 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [8] { - 0 0x0009: (StorageRaw) { + 213 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [8] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 00 00 00 21 e0 2e 06 00 dc 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 7 0x000c: (StorageRaw) { + Orphan[7] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 214 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 214 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 01 00 00 21 e0 2e 0c 00 dc 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 3f 00 00 00 3f 00 00 00 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: .......)......@.... Hex: 03 00 0f 00 00 00 00 29 81 10 00 00 00 00 40 ff ff ff ff } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 06 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 c0 3f } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 07 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: .................@@ Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 40 40 } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 215 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [13] { - 0 0x0009: (StorageRaw) { + 215 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [13] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 02 00 00 21 e0 2e 0b 00 dc 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 03 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@...= Hex: 04 00 00 00 00 00 00 00 92 00 00 00 00 00 40 cd cc cc 3d } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 12 0x000c: (StorageRaw) { + Orphan[12] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 216 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [7] { - 0 0x0009: (StorageRaw) { + 216 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [7] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 03 00 00 21 e0 2e 04 00 dc 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 00 00 04 08 00 00 00 00 82 00 00 00 00 00 00 18 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 01 00 0f 08 00 00 00 01 81 00 00 00 00 00 00 18 00 00 00 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 139 String: ...................@...?@...?@...?@...?@...?@...?@...?@...?@...>@...?@...?@...?@....@....@....@....@...?@...?@...?@...?@...?@...?@...?@...? Hex: 02 00 06 08 00 00 00 00 92 00 00 00 00 00 00 18 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 9a 99 99 3e 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x0005: (StorageRaw) { + Orphan[5] 0x0005: (StorageRaw) { Size: 961 String: $.......ambientMap...........ambientMapAmount...........ambientMapEnable...........bumpMap...........bumpMapAmount...........bumpMapEnable...........diffuseMap...........diffuseMapAmount...........diffuseMapEnable...........displacementMap...........displacementMapAmount...........displacementMapEnable...........filterMap...........filterMapAmount...........filterMapEnable...........glossinessMap...........glossinessMapAmount...........glossinessMapEnable...........opacityMap...........opacityMapAmount...........opacityMapEnable...........reflectionMap...........reflectionMapAmount...........reflectionMapEnable...........refractionMap...........refractionMapAmount...........refractionMapEnable...........selfIllumMap...........selfIllumMapAmount...........selfIllumMapEnable...........specularLevelMap...........specularLevelMapAmount...........specularLevelMapEnable...........specularMap...........specularMapAmount...........specularMapEnable....... Hex: 24 00 00 00 0b 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 00 01 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 00 00 00 00 08 00 00 00 62 75 6d 70 4d 61 70 00 01 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 41 6d 6f 75 6e 74 00 02 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 45 6e 61 62 6c 65 00 00 00 08 00 00 00 0b 00 00 00 64 69 66 66 75 73 65 4d 61 70 00 01 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 41 6d 6f 75 6e 74 00 02 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 45 6e 61 62 6c 65 00 00 00 01 00 00 00 10 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 00 01 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 0b 00 00 00 0a 00 00 00 66 69 6c 74 65 72 4d 61 70 00 01 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 07 00 00 00 0e 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 00 01 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 41 6d 6f 75 6e 74 00 02 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 45 6e 61 62 6c 65 00 00 00 04 00 00 00 0b 00 00 00 6f 70 61 63 69 74 79 4d 61 70 00 01 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 41 6d 6f 75 6e 74 00 02 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 45 6e 61 62 6c 65 00 00 00 06 00 00 00 0e 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 00 01 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 09 00 00 00 0e 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 00 01 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 0a 00 00 00 0d 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 00 01 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 41 6d 6f 75 6e 74 00 02 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 45 6e 61 62 6c 65 00 00 00 05 00 00 00 11 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 00 01 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 41 6d 6f 75 6e 74 00 02 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 45 6e 61 62 6c 65 00 00 00 03 00 00 00 0c 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 00 01 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 02 00 00 00 } - 6 0x000c: (StorageRaw) { + Orphan[6] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 217 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [5] { - 0 0x0009: (StorageRaw) { + 217 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [5] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 04 00 00 21 e0 2e 03 00 dc 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 00 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000c: (StorageRaw) { + Orphan[4] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 218 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [5] { - 0 0x0001: (StorageRaw) { + 218 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [5] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 03 00 00 00 Int: 3 Float: 4.2039e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 02 00 } - 2 0x0002: (StorageContainer) [2] { + Orphan[2] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -9762,7 +9231,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } } - 3 0x0002: (StorageContainer) [2] { + Orphan[3] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -9775,7 +9244,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [2] { + Orphan[4] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -9788,44 +9257,39 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 219 0x0007: (SceneClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), samplers.dlh) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: da 00 00 00 - Int: 218 - Float: 3.05483e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0200: (StorageRaw) { + 219 0x0007: (SamplerSuperClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), 0x00001110, Standard Samplers (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0200: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x39bf: (StorageContainer) [1] { + Orphan[1] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 24 String: M.a.x. .2...5. .S.t.a.r. } } } - 220 0x0008: (SceneClassUnknown: Standard, (0x00000002, 0x00000000), mtl.dlt) [6] { - 0 0x2034: (StorageRaw) { - Size: 36 - String: .................................... - Hex: ff ff ff ff d2 00 00 00 d4 00 00 00 d5 00 00 00 d6 00 00 00 d7 00 00 00 d8 00 00 00 d9 00 00 00 db 00 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x21b0: (StorageContainer) [1] { + 220 0x0008: (MtlSuperClassUnknown: Standard, (0x00000002, 0x00000000), 0x00000c00, Standard Materials and Textures (Autodesk)) [4] { + References 0x2034: PARSED { + 1: (Texmaps, (0x00001200, 0x00000000)) + 2: (Blinn, (0x00000038, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) + 4: (ParamBlock2, (0x00000082, 0x00000000)) + 5: (ParamBlock2, (0x00000082, 0x00000000)) + 6: (ParamBlock2, (0x00000082, 0x00000000)) + 7: (ParamBlock2, (0x00000082, 0x00000000)) + 8: (Max 2.5 Star, (0x25773211, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: .... Hex: d1 00 00 00 Int: 209 Float: 2.92871e-43 } } - 3 0x4000: (StorageContainer) [4] { + Orphan[1] 0x4000: (StorageContainer) [4] { 0 0x4001: (StorageRaw) { Size: 24 String: 1.3. .-. .D.e.f.a.u.l.t. } @@ -9845,415 +9309,387 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } - 4 0x5300: (StorageRaw) { + Orphan[2] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 0d 00 00 00 Int: 13 Float: 1.82169e-44 } - 5 0x5600: (StorageContainer) [1] { + Orphan[3] 0x5600: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 221 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [6] { - 0 0x000b: (StorageRaw) { + 221 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [6] { + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: <).Z..B0`......!........ Hex: 3c 29 06 5a 1e 0c 42 30 60 11 00 00 00 00 00 21 e0 2e 04 00 de 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 09 00 00 00 00 00 80 06 00 00 00 00 40 ff ff ff ff } - 5 0x000c: (StorageRaw) { + Orphan[5] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 222 0x0001: (SceneClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), ViewportManager.gup) [3] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: ........ - Hex: dd 00 00 00 ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1000: (StorageRaw) { + 222 0x0001: (CustAttribSuperClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), 0x00001160, Viewport Manager for DirectX (Autodesk)) [1] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 223 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: de 00 00 00 - Int: 222 - Float: 3.11088e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1030: (StorageRaw) { + 223 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ViewportManager, (0x5a06293c, 0x30420c1e)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: .... Hex: ea 00 00 00 Int: 234 Float: 3.27904e-43 } - 3 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 224 0x0004: (SceneClassUnknown: Texmaps, (0x00001200, 0x00000000), mtl.dlt) [8] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: 0... - Hex: 30 00 00 00 - Int: 48 - Float: 6.72623e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5003: (StorageRaw) { + 224 0x0004: (TexmapContainerSuperClassUnknown: Texmaps, (0x00001200, 0x00000000), 0x00001080, Standard Materials and Textures (Autodesk)) [6] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5003: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x5108: (StorageRaw) { + Orphan[1] 0x5108: (StorageRaw) { Size: 4 String: ...> Hex: 9a 99 99 3e Int: 1050253722 Float: 0.3 } - 4 0x510c: (StorageRaw) { + Orphan[2] 0x510c: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x510d: (StorageRaw) { + Orphan[3] 0x510d: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x510e: (StorageRaw) { + Orphan[4] 0x510e: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x510f: (StorageRaw) { + Orphan[5] 0x510f: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 225 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 225 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 05 00 00 00 00 00 00 21 e0 2e 0c 00 e2 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 01 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ...............fff?fff?fff? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 66 66 66 3f 66 66 66 3f 66 66 66 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 27 String: ........................... Hex: 08 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0a 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 cc cc cc 3d } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 cd cc cc 3d } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 226 0x0005: (SceneClassUnknown: Blinn, (0x00000038, 0x00000000), mtl.dlt) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: e1 00 00 00 - Int: 225 - Float: 3.15292e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5300: (StorageRaw) { + 226 0x0005: (ShaderSuperClassUnknown: Blinn, (0x00000038, 0x00000000), 0x000010b0, Standard Materials and Textures (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x5020: (StorageContainer) [1] { + Orphan[1] 0x5020: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 227 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [8] { - 0 0x0009: (StorageRaw) { + 227 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [8] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 00 00 00 21 e0 2e 06 00 ea 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 7 0x000c: (StorageRaw) { + Orphan[7] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 228 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 228 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 01 00 00 21 e0 2e 0c 00 ea 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 3f 00 00 00 3f 00 00 00 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: .......)......@.... Hex: 03 00 0f 00 00 00 00 29 81 10 00 00 00 00 40 ff ff ff ff } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 06 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 c0 3f } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 07 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: .................@@ Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 40 40 } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 229 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [13] { - 0 0x0009: (StorageRaw) { + 229 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [13] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 02 00 00 21 e0 2e 0b 00 ea 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 03 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@...= Hex: 04 00 00 00 00 00 00 00 92 00 00 00 00 00 40 cd cc cc 3d } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 12 0x000c: (StorageRaw) { + Orphan[12] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 230 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [7] { - 0 0x0009: (StorageRaw) { + 230 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [7] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 03 00 00 21 e0 2e 04 00 ea 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 00 00 04 08 00 00 00 00 82 00 00 00 00 00 00 18 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 01 00 0f 08 00 00 00 01 81 00 00 00 00 00 00 18 00 00 00 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 139 String: ...................@...?@...?@...?@...?@...?@...?@...?@...?@...>@...?@...?@...?@....@....@....@....@...?@...?@...?@...?@...?@...?@...?@...? Hex: 02 00 06 08 00 00 00 00 92 00 00 00 00 00 00 18 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 9a 99 99 3e 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x0005: (StorageRaw) { + Orphan[5] 0x0005: (StorageRaw) { Size: 961 String: $.......ambientMap...........ambientMapAmount...........ambientMapEnable...........bumpMap...........bumpMapAmount...........bumpMapEnable...........diffuseMap...........diffuseMapAmount...........diffuseMapEnable...........displacementMap...........displacementMapAmount...........displacementMapEnable...........filterMap...........filterMapAmount...........filterMapEnable...........glossinessMap...........glossinessMapAmount...........glossinessMapEnable...........opacityMap...........opacityMapAmount...........opacityMapEnable...........reflectionMap...........reflectionMapAmount...........reflectionMapEnable...........refractionMap...........refractionMapAmount...........refractionMapEnable...........selfIllumMap...........selfIllumMapAmount...........selfIllumMapEnable...........specularLevelMap...........specularLevelMapAmount...........specularLevelMapEnable...........specularMap...........specularMapAmount...........specularMapEnable....... Hex: 24 00 00 00 0b 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 00 01 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 00 00 00 00 08 00 00 00 62 75 6d 70 4d 61 70 00 01 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 41 6d 6f 75 6e 74 00 02 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 45 6e 61 62 6c 65 00 00 00 08 00 00 00 0b 00 00 00 64 69 66 66 75 73 65 4d 61 70 00 01 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 41 6d 6f 75 6e 74 00 02 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 45 6e 61 62 6c 65 00 00 00 01 00 00 00 10 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 00 01 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 0b 00 00 00 0a 00 00 00 66 69 6c 74 65 72 4d 61 70 00 01 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 07 00 00 00 0e 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 00 01 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 41 6d 6f 75 6e 74 00 02 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 45 6e 61 62 6c 65 00 00 00 04 00 00 00 0b 00 00 00 6f 70 61 63 69 74 79 4d 61 70 00 01 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 41 6d 6f 75 6e 74 00 02 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 45 6e 61 62 6c 65 00 00 00 06 00 00 00 0e 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 00 01 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 09 00 00 00 0e 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 00 01 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 0a 00 00 00 0d 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 00 01 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 41 6d 6f 75 6e 74 00 02 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 45 6e 61 62 6c 65 00 00 00 05 00 00 00 11 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 00 01 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 41 6d 6f 75 6e 74 00 02 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 45 6e 61 62 6c 65 00 00 00 03 00 00 00 0c 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 00 01 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 02 00 00 00 } - 6 0x000c: (StorageRaw) { + Orphan[6] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 231 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [5] { - 0 0x0009: (StorageRaw) { + 231 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [5] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 04 00 00 21 e0 2e 03 00 ea 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 00 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000c: (StorageRaw) { + Orphan[4] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 232 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [5] { - 0 0x0001: (StorageRaw) { + 232 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [5] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 03 00 00 00 Int: 3 Float: 4.2039e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 02 00 } - 2 0x0002: (StorageContainer) [2] { + Orphan[2] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -10266,7 +9702,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } } - 3 0x0002: (StorageContainer) [2] { + Orphan[3] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -10279,7 +9715,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [2] { + Orphan[4] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -10292,44 +9728,39 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 233 0x0007: (SceneClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), samplers.dlh) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: e8 00 00 00 - Int: 232 - Float: 3.25101e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0200: (StorageRaw) { + 233 0x0007: (SamplerSuperClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), 0x00001110, Standard Samplers (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0200: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x39bf: (StorageContainer) [1] { + Orphan[1] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 24 String: M.a.x. .2...5. .S.t.a.r. } } } - 234 0x0008: (SceneClassUnknown: Standard, (0x00000002, 0x00000000), mtl.dlt) [6] { - 0 0x2034: (StorageRaw) { - Size: 36 - String: .................................... - Hex: ff ff ff ff e0 00 00 00 e2 00 00 00 e3 00 00 00 e4 00 00 00 e5 00 00 00 e6 00 00 00 e7 00 00 00 e9 00 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x21b0: (StorageContainer) [1] { + 234 0x0008: (MtlSuperClassUnknown: Standard, (0x00000002, 0x00000000), 0x00000c00, Standard Materials and Textures (Autodesk)) [4] { + References 0x2034: PARSED { + 1: (Texmaps, (0x00001200, 0x00000000)) + 2: (Blinn, (0x00000038, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) + 4: (ParamBlock2, (0x00000082, 0x00000000)) + 5: (ParamBlock2, (0x00000082, 0x00000000)) + 6: (ParamBlock2, (0x00000082, 0x00000000)) + 7: (ParamBlock2, (0x00000082, 0x00000000)) + 8: (Max 2.5 Star, (0x25773211, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: .... Hex: df 00 00 00 Int: 223 Float: 3.1249e-43 } } - 3 0x4000: (StorageContainer) [4] { + Orphan[1] 0x4000: (StorageContainer) [4] { 0 0x4001: (StorageRaw) { Size: 24 String: 1.4. .-. .D.e.f.a.u.l.t. } @@ -10349,415 +9780,387 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } - 4 0x5300: (StorageRaw) { + Orphan[2] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 0d 00 00 00 Int: 13 Float: 1.82169e-44 } - 5 0x5600: (StorageContainer) [1] { + Orphan[3] 0x5600: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 235 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [6] { - 0 0x000b: (StorageRaw) { + 235 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [6] { + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: <).Z..B0`......!........ Hex: 3c 29 06 5a 1e 0c 42 30 60 11 00 00 00 00 00 21 e0 2e 04 00 ec 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 09 00 00 00 00 00 80 06 00 00 00 00 40 ff ff ff ff } - 5 0x000c: (StorageRaw) { + Orphan[5] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 236 0x0001: (SceneClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), ViewportManager.gup) [3] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: ........ - Hex: eb 00 00 00 ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1000: (StorageRaw) { + 236 0x0001: (CustAttribSuperClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), 0x00001160, Viewport Manager for DirectX (Autodesk)) [1] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 237 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: ec 00 00 00 - Int: 236 - Float: 3.30706e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1030: (StorageRaw) { + 237 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ViewportManager, (0x5a06293c, 0x30420c1e)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: .... Hex: f8 00 00 00 Int: 248 Float: 3.47522e-43 } - 3 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 238 0x0004: (SceneClassUnknown: Texmaps, (0x00001200, 0x00000000), mtl.dlt) [8] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: 0... - Hex: 30 00 00 00 - Int: 48 - Float: 6.72623e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5003: (StorageRaw) { + 238 0x0004: (TexmapContainerSuperClassUnknown: Texmaps, (0x00001200, 0x00000000), 0x00001080, Standard Materials and Textures (Autodesk)) [6] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5003: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x5108: (StorageRaw) { + Orphan[1] 0x5108: (StorageRaw) { Size: 4 String: ...> Hex: 9a 99 99 3e Int: 1050253722 Float: 0.3 } - 4 0x510c: (StorageRaw) { + Orphan[2] 0x510c: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x510d: (StorageRaw) { + Orphan[3] 0x510d: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x510e: (StorageRaw) { + Orphan[4] 0x510e: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x510f: (StorageRaw) { + Orphan[5] 0x510f: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 239 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 239 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 05 00 00 00 00 00 00 21 e0 2e 0c 00 f0 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 01 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ...............fff?fff?fff? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 66 66 66 3f 66 66 66 3f 66 66 66 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 27 String: ........................... Hex: 08 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0a 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 cc cc cc 3d } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 cd cc cc 3d } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 240 0x0005: (SceneClassUnknown: Blinn, (0x00000038, 0x00000000), mtl.dlt) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: ef 00 00 00 - Int: 239 - Float: 3.3491e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5300: (StorageRaw) { + 240 0x0005: (ShaderSuperClassUnknown: Blinn, (0x00000038, 0x00000000), 0x000010b0, Standard Materials and Textures (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x5020: (StorageContainer) [1] { + Orphan[1] 0x5020: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 241 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [8] { - 0 0x0009: (StorageRaw) { + 241 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [8] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 00 00 00 21 e0 2e 06 00 f8 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 7 0x000c: (StorageRaw) { + Orphan[7] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 242 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 242 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 01 00 00 21 e0 2e 0c 00 f8 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 3f 00 00 00 3f 00 00 00 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: .......)......@.... Hex: 03 00 0f 00 00 00 00 29 81 10 00 00 00 00 40 ff ff ff ff } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 06 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 c0 3f } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 07 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: .................@@ Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 40 40 } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 243 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [13] { - 0 0x0009: (StorageRaw) { + 243 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [13] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 02 00 00 21 e0 2e 0b 00 f8 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 03 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@...= Hex: 04 00 00 00 00 00 00 00 92 00 00 00 00 00 40 cd cc cc 3d } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 12 0x000c: (StorageRaw) { + Orphan[12] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 244 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [7] { - 0 0x0009: (StorageRaw) { + 244 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [7] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 03 00 00 21 e0 2e 04 00 f8 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 00 00 04 08 00 00 00 00 82 00 00 00 00 00 00 18 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 01 00 0f 08 00 00 00 01 81 00 00 00 00 00 00 18 00 00 00 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 139 String: ...................@...?@...?@...?@...?@...?@...?@...?@...?@...>@...?@...?@...?@....@....@....@....@...?@...?@...?@...?@...?@...?@...?@...? Hex: 02 00 06 08 00 00 00 00 92 00 00 00 00 00 00 18 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 9a 99 99 3e 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x0005: (StorageRaw) { + Orphan[5] 0x0005: (StorageRaw) { Size: 961 String: $.......ambientMap...........ambientMapAmount...........ambientMapEnable...........bumpMap...........bumpMapAmount...........bumpMapEnable...........diffuseMap...........diffuseMapAmount...........diffuseMapEnable...........displacementMap...........displacementMapAmount...........displacementMapEnable...........filterMap...........filterMapAmount...........filterMapEnable...........glossinessMap...........glossinessMapAmount...........glossinessMapEnable...........opacityMap...........opacityMapAmount...........opacityMapEnable...........reflectionMap...........reflectionMapAmount...........reflectionMapEnable...........refractionMap...........refractionMapAmount...........refractionMapEnable...........selfIllumMap...........selfIllumMapAmount...........selfIllumMapEnable...........specularLevelMap...........specularLevelMapAmount...........specularLevelMapEnable...........specularMap...........specularMapAmount...........specularMapEnable....... Hex: 24 00 00 00 0b 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 00 01 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 00 00 00 00 08 00 00 00 62 75 6d 70 4d 61 70 00 01 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 41 6d 6f 75 6e 74 00 02 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 45 6e 61 62 6c 65 00 00 00 08 00 00 00 0b 00 00 00 64 69 66 66 75 73 65 4d 61 70 00 01 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 41 6d 6f 75 6e 74 00 02 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 45 6e 61 62 6c 65 00 00 00 01 00 00 00 10 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 00 01 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 0b 00 00 00 0a 00 00 00 66 69 6c 74 65 72 4d 61 70 00 01 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 07 00 00 00 0e 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 00 01 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 41 6d 6f 75 6e 74 00 02 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 45 6e 61 62 6c 65 00 00 00 04 00 00 00 0b 00 00 00 6f 70 61 63 69 74 79 4d 61 70 00 01 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 41 6d 6f 75 6e 74 00 02 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 45 6e 61 62 6c 65 00 00 00 06 00 00 00 0e 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 00 01 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 09 00 00 00 0e 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 00 01 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 0a 00 00 00 0d 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 00 01 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 41 6d 6f 75 6e 74 00 02 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 45 6e 61 62 6c 65 00 00 00 05 00 00 00 11 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 00 01 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 41 6d 6f 75 6e 74 00 02 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 45 6e 61 62 6c 65 00 00 00 03 00 00 00 0c 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 00 01 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 02 00 00 00 } - 6 0x000c: (StorageRaw) { + Orphan[6] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 245 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [5] { - 0 0x0009: (StorageRaw) { + 245 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [5] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 04 00 00 21 e0 2e 03 00 f8 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 00 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000c: (StorageRaw) { + Orphan[4] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 246 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [5] { - 0 0x0001: (StorageRaw) { + 246 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [5] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 03 00 00 00 Int: 3 Float: 4.2039e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 02 00 } - 2 0x0002: (StorageContainer) [2] { + Orphan[2] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -10770,7 +10173,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } } - 3 0x0002: (StorageContainer) [2] { + Orphan[3] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -10783,7 +10186,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [2] { + Orphan[4] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -10796,44 +10199,39 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 247 0x0007: (SceneClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), samplers.dlh) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: f6 00 00 00 - Int: 246 - Float: 3.44719e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0200: (StorageRaw) { + 247 0x0007: (SamplerSuperClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), 0x00001110, Standard Samplers (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0200: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x39bf: (StorageContainer) [1] { + Orphan[1] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 24 String: M.a.x. .2...5. .S.t.a.r. } } } - 248 0x0008: (SceneClassUnknown: Standard, (0x00000002, 0x00000000), mtl.dlt) [6] { - 0 0x2034: (StorageRaw) { - Size: 36 - String: .................................... - Hex: ff ff ff ff ee 00 00 00 f0 00 00 00 f1 00 00 00 f2 00 00 00 f3 00 00 00 f4 00 00 00 f5 00 00 00 f7 00 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x21b0: (StorageContainer) [1] { + 248 0x0008: (MtlSuperClassUnknown: Standard, (0x00000002, 0x00000000), 0x00000c00, Standard Materials and Textures (Autodesk)) [4] { + References 0x2034: PARSED { + 1: (Texmaps, (0x00001200, 0x00000000)) + 2: (Blinn, (0x00000038, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) + 4: (ParamBlock2, (0x00000082, 0x00000000)) + 5: (ParamBlock2, (0x00000082, 0x00000000)) + 6: (ParamBlock2, (0x00000082, 0x00000000)) + 7: (ParamBlock2, (0x00000082, 0x00000000)) + 8: (Max 2.5 Star, (0x25773211, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: .... Hex: ed 00 00 00 Int: 237 Float: 3.32108e-43 } } - 3 0x4000: (StorageContainer) [4] { + Orphan[1] 0x4000: (StorageContainer) [4] { 0 0x4001: (StorageRaw) { Size: 24 String: 1.5. .-. .D.e.f.a.u.l.t. } @@ -10853,415 +10251,387 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } - 4 0x5300: (StorageRaw) { + Orphan[2] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 0d 00 00 00 Int: 13 Float: 1.82169e-44 } - 5 0x5600: (StorageContainer) [1] { + Orphan[3] 0x5600: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 249 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [6] { - 0 0x000b: (StorageRaw) { + 249 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [6] { + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: <).Z..B0`......!........ Hex: 3c 29 06 5a 1e 0c 42 30 60 11 00 00 00 00 00 21 e0 2e 04 00 fa 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 09 00 00 00 00 00 80 06 00 00 00 00 40 ff ff ff ff } - 5 0x000c: (StorageRaw) { + Orphan[5] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 250 0x0001: (SceneClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), ViewportManager.gup) [3] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: ........ - Hex: f9 00 00 00 ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1000: (StorageRaw) { + 250 0x0001: (CustAttribSuperClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), 0x00001160, Viewport Manager for DirectX (Autodesk)) [1] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 251 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: fa 00 00 00 - Int: 250 - Float: 3.50325e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1030: (StorageRaw) { + 251 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ViewportManager, (0x5a06293c, 0x30420c1e)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: .... Hex: 06 01 00 00 Int: 262 Float: 3.6714e-43 } - 3 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 252 0x0004: (SceneClassUnknown: Texmaps, (0x00001200, 0x00000000), mtl.dlt) [8] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: 0... - Hex: 30 00 00 00 - Int: 48 - Float: 6.72623e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5003: (StorageRaw) { + 252 0x0004: (TexmapContainerSuperClassUnknown: Texmaps, (0x00001200, 0x00000000), 0x00001080, Standard Materials and Textures (Autodesk)) [6] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5003: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x5108: (StorageRaw) { + Orphan[1] 0x5108: (StorageRaw) { Size: 4 String: ...> Hex: 9a 99 99 3e Int: 1050253722 Float: 0.3 } - 4 0x510c: (StorageRaw) { + Orphan[2] 0x510c: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x510d: (StorageRaw) { + Orphan[3] 0x510d: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x510e: (StorageRaw) { + Orphan[4] 0x510e: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x510f: (StorageRaw) { + Orphan[5] 0x510f: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 253 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 253 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 05 00 00 00 00 00 00 21 e0 2e 0c 00 fe 00 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 01 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ...............fff?fff?fff? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 66 66 66 3f 66 66 66 3f 66 66 66 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 27 String: ........................... Hex: 08 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0a 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 cc cc cc 3d } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 cd cc cc 3d } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 254 0x0005: (SceneClassUnknown: Blinn, (0x00000038, 0x00000000), mtl.dlt) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: fd 00 00 00 - Int: 253 - Float: 3.54529e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5300: (StorageRaw) { + 254 0x0005: (ShaderSuperClassUnknown: Blinn, (0x00000038, 0x00000000), 0x000010b0, Standard Materials and Textures (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x5020: (StorageContainer) [1] { + Orphan[1] 0x5020: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 255 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [8] { - 0 0x0009: (StorageRaw) { + 255 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [8] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 00 00 00 21 e0 2e 06 00 06 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 7 0x000c: (StorageRaw) { + Orphan[7] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 256 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 256 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 01 00 00 21 e0 2e 0c 00 06 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 3f 00 00 00 3f 00 00 00 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: .......)......@.... Hex: 03 00 0f 00 00 00 00 29 81 10 00 00 00 00 40 ff ff ff ff } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 06 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 c0 3f } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 07 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: .................@@ Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 40 40 } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 257 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [13] { - 0 0x0009: (StorageRaw) { + 257 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [13] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 02 00 00 21 e0 2e 0b 00 06 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 03 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@...= Hex: 04 00 00 00 00 00 00 00 92 00 00 00 00 00 40 cd cc cc 3d } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 12 0x000c: (StorageRaw) { + Orphan[12] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 258 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [7] { - 0 0x0009: (StorageRaw) { + 258 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [7] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 03 00 00 21 e0 2e 04 00 06 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 00 00 04 08 00 00 00 00 82 00 00 00 00 00 00 18 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 01 00 0f 08 00 00 00 01 81 00 00 00 00 00 00 18 00 00 00 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 139 String: ...................@...?@...?@...?@...?@...?@...?@...?@...?@...>@...?@...?@...?@....@....@....@....@...?@...?@...?@...?@...?@...?@...?@...? Hex: 02 00 06 08 00 00 00 00 92 00 00 00 00 00 00 18 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 9a 99 99 3e 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x0005: (StorageRaw) { + Orphan[5] 0x0005: (StorageRaw) { Size: 961 String: $.......ambientMap...........ambientMapAmount...........ambientMapEnable...........bumpMap...........bumpMapAmount...........bumpMapEnable...........diffuseMap...........diffuseMapAmount...........diffuseMapEnable...........displacementMap...........displacementMapAmount...........displacementMapEnable...........filterMap...........filterMapAmount...........filterMapEnable...........glossinessMap...........glossinessMapAmount...........glossinessMapEnable...........opacityMap...........opacityMapAmount...........opacityMapEnable...........reflectionMap...........reflectionMapAmount...........reflectionMapEnable...........refractionMap...........refractionMapAmount...........refractionMapEnable...........selfIllumMap...........selfIllumMapAmount...........selfIllumMapEnable...........specularLevelMap...........specularLevelMapAmount...........specularLevelMapEnable...........specularMap...........specularMapAmount...........specularMapEnable....... Hex: 24 00 00 00 0b 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 00 01 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 00 00 00 00 08 00 00 00 62 75 6d 70 4d 61 70 00 01 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 41 6d 6f 75 6e 74 00 02 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 45 6e 61 62 6c 65 00 00 00 08 00 00 00 0b 00 00 00 64 69 66 66 75 73 65 4d 61 70 00 01 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 41 6d 6f 75 6e 74 00 02 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 45 6e 61 62 6c 65 00 00 00 01 00 00 00 10 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 00 01 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 0b 00 00 00 0a 00 00 00 66 69 6c 74 65 72 4d 61 70 00 01 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 07 00 00 00 0e 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 00 01 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 41 6d 6f 75 6e 74 00 02 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 45 6e 61 62 6c 65 00 00 00 04 00 00 00 0b 00 00 00 6f 70 61 63 69 74 79 4d 61 70 00 01 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 41 6d 6f 75 6e 74 00 02 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 45 6e 61 62 6c 65 00 00 00 06 00 00 00 0e 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 00 01 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 09 00 00 00 0e 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 00 01 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 0a 00 00 00 0d 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 00 01 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 41 6d 6f 75 6e 74 00 02 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 45 6e 61 62 6c 65 00 00 00 05 00 00 00 11 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 00 01 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 41 6d 6f 75 6e 74 00 02 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 45 6e 61 62 6c 65 00 00 00 03 00 00 00 0c 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 00 01 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 02 00 00 00 } - 6 0x000c: (StorageRaw) { + Orphan[6] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 259 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [5] { - 0 0x0009: (StorageRaw) { + 259 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [5] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 04 00 00 21 e0 2e 03 00 06 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 00 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000c: (StorageRaw) { + Orphan[4] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 260 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [5] { - 0 0x0001: (StorageRaw) { + 260 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [5] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 03 00 00 00 Int: 3 Float: 4.2039e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 02 00 } - 2 0x0002: (StorageContainer) [2] { + Orphan[2] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -11274,7 +10644,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } } - 3 0x0002: (StorageContainer) [2] { + Orphan[3] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -11287,7 +10657,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [2] { + Orphan[4] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -11300,44 +10670,39 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 261 0x0007: (SceneClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), samplers.dlh) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: 04 01 00 00 - Int: 260 - Float: 3.64338e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0200: (StorageRaw) { + 261 0x0007: (SamplerSuperClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), 0x00001110, Standard Samplers (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0200: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x39bf: (StorageContainer) [1] { + Orphan[1] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 24 String: M.a.x. .2...5. .S.t.a.r. } } } - 262 0x0008: (SceneClassUnknown: Standard, (0x00000002, 0x00000000), mtl.dlt) [6] { - 0 0x2034: (StorageRaw) { - Size: 36 - String: .................................... - Hex: ff ff ff ff fc 00 00 00 fe 00 00 00 ff 00 00 00 00 01 00 00 01 01 00 00 02 01 00 00 03 01 00 00 05 01 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x21b0: (StorageContainer) [1] { + 262 0x0008: (MtlSuperClassUnknown: Standard, (0x00000002, 0x00000000), 0x00000c00, Standard Materials and Textures (Autodesk)) [4] { + References 0x2034: PARSED { + 1: (Texmaps, (0x00001200, 0x00000000)) + 2: (Blinn, (0x00000038, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) + 4: (ParamBlock2, (0x00000082, 0x00000000)) + 5: (ParamBlock2, (0x00000082, 0x00000000)) + 6: (ParamBlock2, (0x00000082, 0x00000000)) + 7: (ParamBlock2, (0x00000082, 0x00000000)) + 8: (Max 2.5 Star, (0x25773211, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: .... Hex: fb 00 00 00 Int: 251 Float: 3.51726e-43 } } - 3 0x4000: (StorageContainer) [4] { + Orphan[1] 0x4000: (StorageContainer) [4] { 0 0x4001: (StorageRaw) { Size: 24 String: 1.6. .-. .D.e.f.a.u.l.t. } @@ -11357,415 +10722,387 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } - 4 0x5300: (StorageRaw) { + Orphan[2] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 0d 00 00 00 Int: 13 Float: 1.82169e-44 } - 5 0x5600: (StorageContainer) [1] { + Orphan[3] 0x5600: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 263 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [6] { - 0 0x000b: (StorageRaw) { + 263 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [6] { + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: <).Z..B0`......!........ Hex: 3c 29 06 5a 1e 0c 42 30 60 11 00 00 00 00 00 21 e0 2e 04 00 08 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 09 00 00 00 00 00 80 06 00 00 00 00 40 ff ff ff ff } - 5 0x000c: (StorageRaw) { + Orphan[5] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 264 0x0001: (SceneClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), ViewportManager.gup) [3] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: ........ - Hex: 07 01 00 00 ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1000: (StorageRaw) { + 264 0x0001: (CustAttribSuperClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), 0x00001160, Viewport Manager for DirectX (Autodesk)) [1] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 265 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: 08 01 00 00 - Int: 264 - Float: 3.69943e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1030: (StorageRaw) { + 265 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ViewportManager, (0x5a06293c, 0x30420c1e)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: .... Hex: 14 01 00 00 Int: 276 Float: 3.86758e-43 } - 3 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 266 0x0004: (SceneClassUnknown: Texmaps, (0x00001200, 0x00000000), mtl.dlt) [8] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: 0... - Hex: 30 00 00 00 - Int: 48 - Float: 6.72623e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5003: (StorageRaw) { + 266 0x0004: (TexmapContainerSuperClassUnknown: Texmaps, (0x00001200, 0x00000000), 0x00001080, Standard Materials and Textures (Autodesk)) [6] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5003: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x5108: (StorageRaw) { + Orphan[1] 0x5108: (StorageRaw) { Size: 4 String: ...> Hex: 9a 99 99 3e Int: 1050253722 Float: 0.3 } - 4 0x510c: (StorageRaw) { + Orphan[2] 0x510c: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x510d: (StorageRaw) { + Orphan[3] 0x510d: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x510e: (StorageRaw) { + Orphan[4] 0x510e: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x510f: (StorageRaw) { + Orphan[5] 0x510f: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 267 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 267 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 05 00 00 00 00 00 00 21 e0 2e 0c 00 0c 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 01 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ...............fff?fff?fff? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 66 66 66 3f 66 66 66 3f 66 66 66 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 27 String: ........................... Hex: 08 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0a 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 cc cc cc 3d } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 cd cc cc 3d } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 268 0x0005: (SceneClassUnknown: Blinn, (0x00000038, 0x00000000), mtl.dlt) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: 0b 01 00 00 - Int: 267 - Float: 3.74147e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5300: (StorageRaw) { + 268 0x0005: (ShaderSuperClassUnknown: Blinn, (0x00000038, 0x00000000), 0x000010b0, Standard Materials and Textures (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x5020: (StorageContainer) [1] { + Orphan[1] 0x5020: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 269 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [8] { - 0 0x0009: (StorageRaw) { + 269 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [8] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 00 00 00 21 e0 2e 06 00 14 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 7 0x000c: (StorageRaw) { + Orphan[7] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 270 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 270 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 01 00 00 21 e0 2e 0c 00 14 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 3f 00 00 00 3f 00 00 00 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: .......)......@.... Hex: 03 00 0f 00 00 00 00 29 81 10 00 00 00 00 40 ff ff ff ff } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 06 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 c0 3f } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 07 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: .................@@ Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 40 40 } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 271 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [13] { - 0 0x0009: (StorageRaw) { + 271 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [13] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 02 00 00 21 e0 2e 0b 00 14 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 03 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@...= Hex: 04 00 00 00 00 00 00 00 92 00 00 00 00 00 40 cd cc cc 3d } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 12 0x000c: (StorageRaw) { + Orphan[12] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 272 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [7] { - 0 0x0009: (StorageRaw) { + 272 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [7] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 03 00 00 21 e0 2e 04 00 14 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 00 00 04 08 00 00 00 00 82 00 00 00 00 00 00 18 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 01 00 0f 08 00 00 00 01 81 00 00 00 00 00 00 18 00 00 00 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 139 String: ...................@...?@...?@...?@...?@...?@...?@...?@...?@...>@...?@...?@...?@....@....@....@....@...?@...?@...?@...?@...?@...?@...?@...? Hex: 02 00 06 08 00 00 00 00 92 00 00 00 00 00 00 18 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 9a 99 99 3e 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x0005: (StorageRaw) { + Orphan[5] 0x0005: (StorageRaw) { Size: 961 String: $.......ambientMap...........ambientMapAmount...........ambientMapEnable...........bumpMap...........bumpMapAmount...........bumpMapEnable...........diffuseMap...........diffuseMapAmount...........diffuseMapEnable...........displacementMap...........displacementMapAmount...........displacementMapEnable...........filterMap...........filterMapAmount...........filterMapEnable...........glossinessMap...........glossinessMapAmount...........glossinessMapEnable...........opacityMap...........opacityMapAmount...........opacityMapEnable...........reflectionMap...........reflectionMapAmount...........reflectionMapEnable...........refractionMap...........refractionMapAmount...........refractionMapEnable...........selfIllumMap...........selfIllumMapAmount...........selfIllumMapEnable...........specularLevelMap...........specularLevelMapAmount...........specularLevelMapEnable...........specularMap...........specularMapAmount...........specularMapEnable....... Hex: 24 00 00 00 0b 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 00 01 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 00 00 00 00 08 00 00 00 62 75 6d 70 4d 61 70 00 01 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 41 6d 6f 75 6e 74 00 02 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 45 6e 61 62 6c 65 00 00 00 08 00 00 00 0b 00 00 00 64 69 66 66 75 73 65 4d 61 70 00 01 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 41 6d 6f 75 6e 74 00 02 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 45 6e 61 62 6c 65 00 00 00 01 00 00 00 10 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 00 01 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 0b 00 00 00 0a 00 00 00 66 69 6c 74 65 72 4d 61 70 00 01 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 07 00 00 00 0e 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 00 01 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 41 6d 6f 75 6e 74 00 02 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 45 6e 61 62 6c 65 00 00 00 04 00 00 00 0b 00 00 00 6f 70 61 63 69 74 79 4d 61 70 00 01 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 41 6d 6f 75 6e 74 00 02 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 45 6e 61 62 6c 65 00 00 00 06 00 00 00 0e 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 00 01 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 09 00 00 00 0e 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 00 01 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 0a 00 00 00 0d 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 00 01 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 41 6d 6f 75 6e 74 00 02 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 45 6e 61 62 6c 65 00 00 00 05 00 00 00 11 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 00 01 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 41 6d 6f 75 6e 74 00 02 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 45 6e 61 62 6c 65 00 00 00 03 00 00 00 0c 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 00 01 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 02 00 00 00 } - 6 0x000c: (StorageRaw) { + Orphan[6] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 273 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [5] { - 0 0x0009: (StorageRaw) { + 273 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [5] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 08 00 00 00 04 00 00 21 e0 2e 03 00 14 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 00 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000c: (StorageRaw) { + Orphan[4] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 274 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [5] { - 0 0x0001: (StorageRaw) { + 274 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [5] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 03 00 00 00 Int: 3 Float: 4.2039e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 02 00 } - 2 0x0002: (StorageContainer) [2] { + Orphan[2] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -11778,7 +11115,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } } - 3 0x0002: (StorageContainer) [2] { + Orphan[3] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -11791,7 +11128,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [2] { + Orphan[4] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -11804,44 +11141,39 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 275 0x0007: (SceneClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), samplers.dlh) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: 12 01 00 00 - Int: 274 - Float: 3.83956e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0200: (StorageRaw) { + 275 0x0007: (SamplerSuperClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), 0x00001110, Standard Samplers (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0200: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x39bf: (StorageContainer) [1] { + Orphan[1] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 24 String: M.a.x. .2...5. .S.t.a.r. } } } - 276 0x0008: (SceneClassUnknown: Standard, (0x00000002, 0x00000000), mtl.dlt) [6] { - 0 0x2034: (StorageRaw) { - Size: 36 - String: .................................... - Hex: ff ff ff ff 0a 01 00 00 0c 01 00 00 0d 01 00 00 0e 01 00 00 0f 01 00 00 10 01 00 00 11 01 00 00 13 01 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x21b0: (StorageContainer) [1] { + 276 0x0008: (MtlSuperClassUnknown: Standard, (0x00000002, 0x00000000), 0x00000c00, Standard Materials and Textures (Autodesk)) [4] { + References 0x2034: PARSED { + 1: (Texmaps, (0x00001200, 0x00000000)) + 2: (Blinn, (0x00000038, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) + 4: (ParamBlock2, (0x00000082, 0x00000000)) + 5: (ParamBlock2, (0x00000082, 0x00000000)) + 6: (ParamBlock2, (0x00000082, 0x00000000)) + 7: (ParamBlock2, (0x00000082, 0x00000000)) + 8: (Max 2.5 Star, (0x25773211, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: .... Hex: 09 01 00 00 Int: 265 Float: 3.71344e-43 } } - 3 0x4000: (StorageContainer) [4] { + Orphan[1] 0x4000: (StorageContainer) [4] { 0 0x4001: (StorageRaw) { Size: 24 String: 1.7. .-. .D.e.f.a.u.l.t. } @@ -11861,415 +11193,387 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } - 4 0x5300: (StorageRaw) { + Orphan[2] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 0d 00 00 00 Int: 13 Float: 1.82169e-44 } - 5 0x5600: (StorageContainer) [1] { + Orphan[3] 0x5600: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 277 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [6] { - 0 0x000b: (StorageRaw) { + 277 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [6] { + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: <).Z..B0`......!........ Hex: 3c 29 06 5a 1e 0c 42 30 60 11 00 00 00 00 00 21 e0 2e 04 00 16 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 09 00 00 00 00 00 80 06 00 00 00 00 40 ff ff ff ff } - 5 0x000c: (StorageRaw) { + Orphan[5] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 278 0x0001: (SceneClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), ViewportManager.gup) [3] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: ........ - Hex: 15 01 00 00 ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1000: (StorageRaw) { + 278 0x0001: (CustAttribSuperClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), 0x00001160, Viewport Manager for DirectX (Autodesk)) [1] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 279 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: 16 01 00 00 - Int: 278 - Float: 3.89561e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1030: (StorageRaw) { + 279 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ViewportManager, (0x5a06293c, 0x30420c1e)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: "... Hex: 22 01 00 00 Int: 290 Float: 4.06377e-43 } - 3 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 280 0x0004: (SceneClassUnknown: Texmaps, (0x00001200, 0x00000000), mtl.dlt) [8] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: 0... - Hex: 30 00 00 00 - Int: 48 - Float: 6.72623e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5003: (StorageRaw) { + 280 0x0004: (TexmapContainerSuperClassUnknown: Texmaps, (0x00001200, 0x00000000), 0x00001080, Standard Materials and Textures (Autodesk)) [6] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5003: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x5108: (StorageRaw) { + Orphan[1] 0x5108: (StorageRaw) { Size: 4 String: ...> Hex: 9a 99 99 3e Int: 1050253722 Float: 0.3 } - 4 0x510c: (StorageRaw) { + Orphan[2] 0x510c: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x510d: (StorageRaw) { + Orphan[3] 0x510d: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x510e: (StorageRaw) { + Orphan[4] 0x510e: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x510f: (StorageRaw) { + Orphan[5] 0x510f: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 281 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 281 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!........ Hex: 05 00 00 00 00 00 00 21 e0 2e 0c 00 1a 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 01 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ...............fff?fff?fff? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 66 66 66 3f 66 66 66 3f 66 66 66 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 27 String: ........................... Hex: 08 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0a 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 cc cc cc 3d } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 cd cc cc 3d } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 282 0x0005: (SceneClassUnknown: Blinn, (0x00000038, 0x00000000), mtl.dlt) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: 19 01 00 00 - Int: 281 - Float: 3.93765e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5300: (StorageRaw) { + 282 0x0005: (ShaderSuperClassUnknown: Blinn, (0x00000038, 0x00000000), 0x000010b0, Standard Materials and Textures (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x5020: (StorageContainer) [1] { + Orphan[1] 0x5020: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 283 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [8] { - 0 0x0009: (StorageRaw) { + 283 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [8] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!...."... Hex: 08 00 00 00 00 00 00 21 e0 2e 06 00 22 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 7 0x000c: (StorageRaw) { + Orphan[7] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 284 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 284 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!...."... Hex: 08 00 00 00 01 00 00 21 e0 2e 0c 00 22 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 3f 00 00 00 3f 00 00 00 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: .......)......@.... Hex: 03 00 0f 00 00 00 00 29 81 10 00 00 00 00 40 ff ff ff ff } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 06 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 c0 3f } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 07 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: .................@@ Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 40 40 } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 285 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [13] { - 0 0x0009: (StorageRaw) { + 285 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [13] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!...."... Hex: 08 00 00 00 02 00 00 21 e0 2e 0b 00 22 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 03 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@...= Hex: 04 00 00 00 00 00 00 00 92 00 00 00 00 00 40 cd cc cc 3d } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 12 0x000c: (StorageRaw) { + Orphan[12] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 286 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [7] { - 0 0x0009: (StorageRaw) { + 286 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [7] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!...."... Hex: 08 00 00 00 03 00 00 21 e0 2e 04 00 22 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 00 00 04 08 00 00 00 00 82 00 00 00 00 00 00 18 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 01 00 0f 08 00 00 00 01 81 00 00 00 00 00 00 18 00 00 00 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 139 String: ...................@...?@...?@...?@...?@...?@...?@...?@...?@...>@...?@...?@...?@....@....@....@....@...?@...?@...?@...?@...?@...?@...?@...? Hex: 02 00 06 08 00 00 00 00 92 00 00 00 00 00 00 18 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 9a 99 99 3e 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x0005: (StorageRaw) { + Orphan[5] 0x0005: (StorageRaw) { Size: 961 String: $.......ambientMap...........ambientMapAmount...........ambientMapEnable...........bumpMap...........bumpMapAmount...........bumpMapEnable...........diffuseMap...........diffuseMapAmount...........diffuseMapEnable...........displacementMap...........displacementMapAmount...........displacementMapEnable...........filterMap...........filterMapAmount...........filterMapEnable...........glossinessMap...........glossinessMapAmount...........glossinessMapEnable...........opacityMap...........opacityMapAmount...........opacityMapEnable...........reflectionMap...........reflectionMapAmount...........reflectionMapEnable...........refractionMap...........refractionMapAmount...........refractionMapEnable...........selfIllumMap...........selfIllumMapAmount...........selfIllumMapEnable...........specularLevelMap...........specularLevelMapAmount...........specularLevelMapEnable...........specularMap...........specularMapAmount...........specularMapEnable....... Hex: 24 00 00 00 0b 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 00 01 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 00 00 00 00 08 00 00 00 62 75 6d 70 4d 61 70 00 01 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 41 6d 6f 75 6e 74 00 02 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 45 6e 61 62 6c 65 00 00 00 08 00 00 00 0b 00 00 00 64 69 66 66 75 73 65 4d 61 70 00 01 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 41 6d 6f 75 6e 74 00 02 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 45 6e 61 62 6c 65 00 00 00 01 00 00 00 10 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 00 01 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 0b 00 00 00 0a 00 00 00 66 69 6c 74 65 72 4d 61 70 00 01 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 07 00 00 00 0e 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 00 01 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 41 6d 6f 75 6e 74 00 02 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 45 6e 61 62 6c 65 00 00 00 04 00 00 00 0b 00 00 00 6f 70 61 63 69 74 79 4d 61 70 00 01 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 41 6d 6f 75 6e 74 00 02 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 45 6e 61 62 6c 65 00 00 00 06 00 00 00 0e 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 00 01 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 09 00 00 00 0e 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 00 01 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 0a 00 00 00 0d 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 00 01 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 41 6d 6f 75 6e 74 00 02 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 45 6e 61 62 6c 65 00 00 00 05 00 00 00 11 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 00 01 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 41 6d 6f 75 6e 74 00 02 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 45 6e 61 62 6c 65 00 00 00 03 00 00 00 0c 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 00 01 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 02 00 00 00 } - 6 0x000c: (StorageRaw) { + Orphan[6] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 287 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [5] { - 0 0x0009: (StorageRaw) { + 287 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [5] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!...."... Hex: 08 00 00 00 04 00 00 21 e0 2e 03 00 22 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 00 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000c: (StorageRaw) { + Orphan[4] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 288 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [5] { - 0 0x0001: (StorageRaw) { + 288 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [5] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 03 00 00 00 Int: 3 Float: 4.2039e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 02 00 } - 2 0x0002: (StorageContainer) [2] { + Orphan[2] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -12282,7 +11586,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } } - 3 0x0002: (StorageContainer) [2] { + Orphan[3] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -12295,7 +11599,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [2] { + Orphan[4] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -12308,44 +11612,39 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 289 0x0007: (SceneClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), samplers.dlh) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: ... - Hex: 20 01 00 00 - Int: 288 - Float: 4.03574e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0200: (StorageRaw) { + 289 0x0007: (SamplerSuperClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), 0x00001110, Standard Samplers (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0200: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x39bf: (StorageContainer) [1] { + Orphan[1] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 24 String: M.a.x. .2...5. .S.t.a.r. } } } - 290 0x0008: (SceneClassUnknown: Standard, (0x00000002, 0x00000000), mtl.dlt) [6] { - 0 0x2034: (StorageRaw) { - Size: 36 - String: ................................!... - Hex: ff ff ff ff 18 01 00 00 1a 01 00 00 1b 01 00 00 1c 01 00 00 1d 01 00 00 1e 01 00 00 1f 01 00 00 21 01 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x21b0: (StorageContainer) [1] { + 290 0x0008: (MtlSuperClassUnknown: Standard, (0x00000002, 0x00000000), 0x00000c00, Standard Materials and Textures (Autodesk)) [4] { + References 0x2034: PARSED { + 1: (Texmaps, (0x00001200, 0x00000000)) + 2: (Blinn, (0x00000038, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) + 4: (ParamBlock2, (0x00000082, 0x00000000)) + 5: (ParamBlock2, (0x00000082, 0x00000000)) + 6: (ParamBlock2, (0x00000082, 0x00000000)) + 7: (ParamBlock2, (0x00000082, 0x00000000)) + 8: (Max 2.5 Star, (0x25773211, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: .... Hex: 17 01 00 00 Int: 279 Float: 3.90962e-43 } } - 3 0x4000: (StorageContainer) [4] { + Orphan[1] 0x4000: (StorageContainer) [4] { 0 0x4001: (StorageRaw) { Size: 24 String: 1.8. .-. .D.e.f.a.u.l.t. } @@ -12365,415 +11664,387 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } - 4 0x5300: (StorageRaw) { + Orphan[2] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 0d 00 00 00 Int: 13 Float: 1.82169e-44 } - 5 0x5600: (StorageContainer) [1] { + Orphan[3] 0x5600: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 291 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [6] { - 0 0x000b: (StorageRaw) { + 291 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [6] { + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: <).Z..B0`......!....$... Hex: 3c 29 06 5a 1e 0c 42 30 60 11 00 00 00 00 00 21 e0 2e 04 00 24 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 09 00 00 00 00 00 80 06 00 00 00 00 40 ff ff ff ff } - 5 0x000c: (StorageRaw) { + Orphan[5] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 292 0x0001: (SceneClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), ViewportManager.gup) [3] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: #....... - Hex: 23 01 00 00 ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1000: (StorageRaw) { + 292 0x0001: (CustAttribSuperClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), 0x00001160, Viewport Manager for DirectX (Autodesk)) [1] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 293 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: $... - Hex: 24 01 00 00 - Int: 292 - Float: 4.09179e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1030: (StorageRaw) { + 293 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ViewportManager, (0x5a06293c, 0x30420c1e)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: 0... Hex: 30 01 00 00 Int: 304 Float: 4.25995e-43 } - 3 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 294 0x0004: (SceneClassUnknown: Texmaps, (0x00001200, 0x00000000), mtl.dlt) [8] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: 0... - Hex: 30 00 00 00 - Int: 48 - Float: 6.72623e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5003: (StorageRaw) { + 294 0x0004: (TexmapContainerSuperClassUnknown: Texmaps, (0x00001200, 0x00000000), 0x00001080, Standard Materials and Textures (Autodesk)) [6] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5003: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x5108: (StorageRaw) { + Orphan[1] 0x5108: (StorageRaw) { Size: 4 String: ...> Hex: 9a 99 99 3e Int: 1050253722 Float: 0.3 } - 4 0x510c: (StorageRaw) { + Orphan[2] 0x510c: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x510d: (StorageRaw) { + Orphan[3] 0x510d: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x510e: (StorageRaw) { + Orphan[4] 0x510e: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x510f: (StorageRaw) { + Orphan[5] 0x510f: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 295 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 295 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....(... Hex: 05 00 00 00 00 00 00 21 e0 2e 0c 00 28 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 01 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ...............fff?fff?fff? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 66 66 66 3f 66 66 66 3f 66 66 66 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 27 String: ........................... Hex: 08 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0a 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 cc cc cc 3d } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 cd cc cc 3d } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 296 0x0005: (SceneClassUnknown: Blinn, (0x00000038, 0x00000000), mtl.dlt) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: '... - Hex: 27 01 00 00 - Int: 295 - Float: 4.13383e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5300: (StorageRaw) { + 296 0x0005: (ShaderSuperClassUnknown: Blinn, (0x00000038, 0x00000000), 0x000010b0, Standard Materials and Textures (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x5020: (StorageContainer) [1] { + Orphan[1] 0x5020: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 297 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [8] { - 0 0x0009: (StorageRaw) { + 297 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [8] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....0... Hex: 08 00 00 00 00 00 00 21 e0 2e 06 00 30 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 7 0x000c: (StorageRaw) { + Orphan[7] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 298 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 298 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....0... Hex: 08 00 00 00 01 00 00 21 e0 2e 0c 00 30 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 3f 00 00 00 3f 00 00 00 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: .......)......@.... Hex: 03 00 0f 00 00 00 00 29 81 10 00 00 00 00 40 ff ff ff ff } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 06 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 c0 3f } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 07 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: .................@@ Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 40 40 } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 299 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [13] { - 0 0x0009: (StorageRaw) { + 299 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [13] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....0... Hex: 08 00 00 00 02 00 00 21 e0 2e 0b 00 30 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 03 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@...= Hex: 04 00 00 00 00 00 00 00 92 00 00 00 00 00 40 cd cc cc 3d } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 12 0x000c: (StorageRaw) { + Orphan[12] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 300 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [7] { - 0 0x0009: (StorageRaw) { + 300 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [7] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....0... Hex: 08 00 00 00 03 00 00 21 e0 2e 04 00 30 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 00 00 04 08 00 00 00 00 82 00 00 00 00 00 00 18 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 01 00 0f 08 00 00 00 01 81 00 00 00 00 00 00 18 00 00 00 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 139 String: ...................@...?@...?@...?@...?@...?@...?@...?@...?@...>@...?@...?@...?@....@....@....@....@...?@...?@...?@...?@...?@...?@...?@...? Hex: 02 00 06 08 00 00 00 00 92 00 00 00 00 00 00 18 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 9a 99 99 3e 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x0005: (StorageRaw) { + Orphan[5] 0x0005: (StorageRaw) { Size: 961 String: $.......ambientMap...........ambientMapAmount...........ambientMapEnable...........bumpMap...........bumpMapAmount...........bumpMapEnable...........diffuseMap...........diffuseMapAmount...........diffuseMapEnable...........displacementMap...........displacementMapAmount...........displacementMapEnable...........filterMap...........filterMapAmount...........filterMapEnable...........glossinessMap...........glossinessMapAmount...........glossinessMapEnable...........opacityMap...........opacityMapAmount...........opacityMapEnable...........reflectionMap...........reflectionMapAmount...........reflectionMapEnable...........refractionMap...........refractionMapAmount...........refractionMapEnable...........selfIllumMap...........selfIllumMapAmount...........selfIllumMapEnable...........specularLevelMap...........specularLevelMapAmount...........specularLevelMapEnable...........specularMap...........specularMapAmount...........specularMapEnable....... Hex: 24 00 00 00 0b 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 00 01 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 00 00 00 00 08 00 00 00 62 75 6d 70 4d 61 70 00 01 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 41 6d 6f 75 6e 74 00 02 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 45 6e 61 62 6c 65 00 00 00 08 00 00 00 0b 00 00 00 64 69 66 66 75 73 65 4d 61 70 00 01 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 41 6d 6f 75 6e 74 00 02 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 45 6e 61 62 6c 65 00 00 00 01 00 00 00 10 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 00 01 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 0b 00 00 00 0a 00 00 00 66 69 6c 74 65 72 4d 61 70 00 01 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 07 00 00 00 0e 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 00 01 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 41 6d 6f 75 6e 74 00 02 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 45 6e 61 62 6c 65 00 00 00 04 00 00 00 0b 00 00 00 6f 70 61 63 69 74 79 4d 61 70 00 01 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 41 6d 6f 75 6e 74 00 02 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 45 6e 61 62 6c 65 00 00 00 06 00 00 00 0e 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 00 01 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 09 00 00 00 0e 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 00 01 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 0a 00 00 00 0d 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 00 01 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 41 6d 6f 75 6e 74 00 02 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 45 6e 61 62 6c 65 00 00 00 05 00 00 00 11 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 00 01 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 41 6d 6f 75 6e 74 00 02 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 45 6e 61 62 6c 65 00 00 00 03 00 00 00 0c 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 00 01 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 02 00 00 00 } - 6 0x000c: (StorageRaw) { + Orphan[6] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 301 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [5] { - 0 0x0009: (StorageRaw) { + 301 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [5] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....0... Hex: 08 00 00 00 04 00 00 21 e0 2e 03 00 30 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 00 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000c: (StorageRaw) { + Orphan[4] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 302 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [5] { - 0 0x0001: (StorageRaw) { + 302 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [5] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 03 00 00 00 Int: 3 Float: 4.2039e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 02 00 } - 2 0x0002: (StorageContainer) [2] { + Orphan[2] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -12786,7 +12057,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } } - 3 0x0002: (StorageContainer) [2] { + Orphan[3] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -12799,7 +12070,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [2] { + Orphan[4] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -12812,44 +12083,39 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 303 0x0007: (SceneClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), samplers.dlh) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: 2e 01 00 00 - Int: 302 - Float: 4.23192e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0200: (StorageRaw) { + 303 0x0007: (SamplerSuperClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), 0x00001110, Standard Samplers (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0200: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x39bf: (StorageContainer) [1] { + Orphan[1] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 24 String: M.a.x. .2...5. .S.t.a.r. } } } - 304 0x0008: (SceneClassUnknown: Standard, (0x00000002, 0x00000000), mtl.dlt) [6] { - 0 0x2034: (StorageRaw) { - Size: 36 - String: ....&...(...)...*...+...,...-.../... - Hex: ff ff ff ff 26 01 00 00 28 01 00 00 29 01 00 00 2a 01 00 00 2b 01 00 00 2c 01 00 00 2d 01 00 00 2f 01 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x21b0: (StorageContainer) [1] { + 304 0x0008: (MtlSuperClassUnknown: Standard, (0x00000002, 0x00000000), 0x00000c00, Standard Materials and Textures (Autodesk)) [4] { + References 0x2034: PARSED { + 1: (Texmaps, (0x00001200, 0x00000000)) + 2: (Blinn, (0x00000038, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) + 4: (ParamBlock2, (0x00000082, 0x00000000)) + 5: (ParamBlock2, (0x00000082, 0x00000000)) + 6: (ParamBlock2, (0x00000082, 0x00000000)) + 7: (ParamBlock2, (0x00000082, 0x00000000)) + 8: (Max 2.5 Star, (0x25773211, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: %... Hex: 25 01 00 00 Int: 293 Float: 4.1058e-43 } } - 3 0x4000: (StorageContainer) [4] { + Orphan[1] 0x4000: (StorageContainer) [4] { 0 0x4001: (StorageRaw) { Size: 24 String: 1.9. .-. .D.e.f.a.u.l.t. } @@ -12869,415 +12135,387 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } - 4 0x5300: (StorageRaw) { + Orphan[2] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 0d 00 00 00 Int: 13 Float: 1.82169e-44 } - 5 0x5600: (StorageContainer) [1] { + Orphan[3] 0x5600: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 305 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [6] { - 0 0x000b: (StorageRaw) { + 305 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [6] { + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: <).Z..B0`......!....2... Hex: 3c 29 06 5a 1e 0c 42 30 60 11 00 00 00 00 00 21 e0 2e 04 00 32 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 09 00 00 00 00 00 80 06 00 00 00 00 40 ff ff ff ff } - 5 0x000c: (StorageRaw) { + Orphan[5] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 306 0x0001: (SceneClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), ViewportManager.gup) [3] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: 1....... - Hex: 31 01 00 00 ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1000: (StorageRaw) { + 306 0x0001: (CustAttribSuperClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), 0x00001160, Viewport Manager for DirectX (Autodesk)) [1] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 307 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: 2... - Hex: 32 01 00 00 - Int: 306 - Float: 4.28797e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1030: (StorageRaw) { + 307 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ViewportManager, (0x5a06293c, 0x30420c1e)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: >... Hex: 3e 01 00 00 Int: 318 Float: 4.45613e-43 } - 3 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 308 0x0004: (SceneClassUnknown: Texmaps, (0x00001200, 0x00000000), mtl.dlt) [8] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: 0... - Hex: 30 00 00 00 - Int: 48 - Float: 6.72623e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5003: (StorageRaw) { + 308 0x0004: (TexmapContainerSuperClassUnknown: Texmaps, (0x00001200, 0x00000000), 0x00001080, Standard Materials and Textures (Autodesk)) [6] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5003: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x5108: (StorageRaw) { + Orphan[1] 0x5108: (StorageRaw) { Size: 4 String: ...> Hex: 9a 99 99 3e Int: 1050253722 Float: 0.3 } - 4 0x510c: (StorageRaw) { + Orphan[2] 0x510c: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x510d: (StorageRaw) { + Orphan[3] 0x510d: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x510e: (StorageRaw) { + Orphan[4] 0x510e: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x510f: (StorageRaw) { + Orphan[5] 0x510f: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 309 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 309 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....6... Hex: 05 00 00 00 00 00 00 21 e0 2e 0c 00 36 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 01 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ...............fff?fff?fff? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 66 66 66 3f 66 66 66 3f 66 66 66 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 27 String: ........................... Hex: 08 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0a 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 cc cc cc 3d } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 cd cc cc 3d } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 310 0x0005: (SceneClassUnknown: Blinn, (0x00000038, 0x00000000), mtl.dlt) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: 5... - Hex: 35 01 00 00 - Int: 309 - Float: 4.33001e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5300: (StorageRaw) { + 310 0x0005: (ShaderSuperClassUnknown: Blinn, (0x00000038, 0x00000000), 0x000010b0, Standard Materials and Textures (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x5020: (StorageContainer) [1] { + Orphan[1] 0x5020: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 311 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [8] { - 0 0x0009: (StorageRaw) { + 311 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [8] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....>... Hex: 08 00 00 00 00 00 00 21 e0 2e 06 00 3e 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 7 0x000c: (StorageRaw) { + Orphan[7] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 312 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 312 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....>... Hex: 08 00 00 00 01 00 00 21 e0 2e 0c 00 3e 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 3f 00 00 00 3f 00 00 00 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: .......)......@.... Hex: 03 00 0f 00 00 00 00 29 81 10 00 00 00 00 40 ff ff ff ff } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 06 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 c0 3f } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 07 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: .................@@ Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 40 40 } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 313 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [13] { - 0 0x0009: (StorageRaw) { + 313 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [13] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....>... Hex: 08 00 00 00 02 00 00 21 e0 2e 0b 00 3e 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 03 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@...= Hex: 04 00 00 00 00 00 00 00 92 00 00 00 00 00 40 cd cc cc 3d } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 12 0x000c: (StorageRaw) { + Orphan[12] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 314 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [7] { - 0 0x0009: (StorageRaw) { + 314 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [7] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....>... Hex: 08 00 00 00 03 00 00 21 e0 2e 04 00 3e 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 00 00 04 08 00 00 00 00 82 00 00 00 00 00 00 18 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 01 00 0f 08 00 00 00 01 81 00 00 00 00 00 00 18 00 00 00 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 139 String: ...................@...?@...?@...?@...?@...?@...?@...?@...?@...>@...?@...?@...?@....@....@....@....@...?@...?@...?@...?@...?@...?@...?@...? Hex: 02 00 06 08 00 00 00 00 92 00 00 00 00 00 00 18 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 9a 99 99 3e 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x0005: (StorageRaw) { + Orphan[5] 0x0005: (StorageRaw) { Size: 961 String: $.......ambientMap...........ambientMapAmount...........ambientMapEnable...........bumpMap...........bumpMapAmount...........bumpMapEnable...........diffuseMap...........diffuseMapAmount...........diffuseMapEnable...........displacementMap...........displacementMapAmount...........displacementMapEnable...........filterMap...........filterMapAmount...........filterMapEnable...........glossinessMap...........glossinessMapAmount...........glossinessMapEnable...........opacityMap...........opacityMapAmount...........opacityMapEnable...........reflectionMap...........reflectionMapAmount...........reflectionMapEnable...........refractionMap...........refractionMapAmount...........refractionMapEnable...........selfIllumMap...........selfIllumMapAmount...........selfIllumMapEnable...........specularLevelMap...........specularLevelMapAmount...........specularLevelMapEnable...........specularMap...........specularMapAmount...........specularMapEnable....... Hex: 24 00 00 00 0b 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 00 01 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 00 00 00 00 08 00 00 00 62 75 6d 70 4d 61 70 00 01 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 41 6d 6f 75 6e 74 00 02 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 45 6e 61 62 6c 65 00 00 00 08 00 00 00 0b 00 00 00 64 69 66 66 75 73 65 4d 61 70 00 01 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 41 6d 6f 75 6e 74 00 02 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 45 6e 61 62 6c 65 00 00 00 01 00 00 00 10 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 00 01 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 0b 00 00 00 0a 00 00 00 66 69 6c 74 65 72 4d 61 70 00 01 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 07 00 00 00 0e 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 00 01 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 41 6d 6f 75 6e 74 00 02 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 45 6e 61 62 6c 65 00 00 00 04 00 00 00 0b 00 00 00 6f 70 61 63 69 74 79 4d 61 70 00 01 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 41 6d 6f 75 6e 74 00 02 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 45 6e 61 62 6c 65 00 00 00 06 00 00 00 0e 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 00 01 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 09 00 00 00 0e 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 00 01 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 0a 00 00 00 0d 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 00 01 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 41 6d 6f 75 6e 74 00 02 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 45 6e 61 62 6c 65 00 00 00 05 00 00 00 11 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 00 01 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 41 6d 6f 75 6e 74 00 02 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 45 6e 61 62 6c 65 00 00 00 03 00 00 00 0c 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 00 01 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 02 00 00 00 } - 6 0x000c: (StorageRaw) { + Orphan[6] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 315 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [5] { - 0 0x0009: (StorageRaw) { + 315 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [5] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....>... Hex: 08 00 00 00 04 00 00 21 e0 2e 03 00 3e 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 00 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000c: (StorageRaw) { + Orphan[4] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 316 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [5] { - 0 0x0001: (StorageRaw) { + 316 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [5] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 03 00 00 00 Int: 3 Float: 4.2039e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 02 00 } - 2 0x0002: (StorageContainer) [2] { + Orphan[2] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -13290,7 +12528,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } } - 3 0x0002: (StorageContainer) [2] { + Orphan[3] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -13303,7 +12541,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [2] { + Orphan[4] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -13316,44 +12554,39 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 317 0x0007: (SceneClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), samplers.dlh) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: <... - Hex: 3c 01 00 00 - Int: 316 - Float: 4.4281e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0200: (StorageRaw) { + 317 0x0007: (SamplerSuperClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), 0x00001110, Standard Samplers (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0200: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x39bf: (StorageContainer) [1] { + Orphan[1] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 24 String: M.a.x. .2...5. .S.t.a.r. } } } - 318 0x0008: (SceneClassUnknown: Standard, (0x00000002, 0x00000000), mtl.dlt) [6] { - 0 0x2034: (StorageRaw) { - Size: 36 - String: ....4...6...7...8...9...:...;...=... - Hex: ff ff ff ff 34 01 00 00 36 01 00 00 37 01 00 00 38 01 00 00 39 01 00 00 3a 01 00 00 3b 01 00 00 3d 01 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x21b0: (StorageContainer) [1] { + 318 0x0008: (MtlSuperClassUnknown: Standard, (0x00000002, 0x00000000), 0x00000c00, Standard Materials and Textures (Autodesk)) [4] { + References 0x2034: PARSED { + 1: (Texmaps, (0x00001200, 0x00000000)) + 2: (Blinn, (0x00000038, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) + 4: (ParamBlock2, (0x00000082, 0x00000000)) + 5: (ParamBlock2, (0x00000082, 0x00000000)) + 6: (ParamBlock2, (0x00000082, 0x00000000)) + 7: (ParamBlock2, (0x00000082, 0x00000000)) + 8: (Max 2.5 Star, (0x25773211, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: 3... Hex: 33 01 00 00 Int: 307 Float: 4.30199e-43 } } - 3 0x4000: (StorageContainer) [4] { + Orphan[1] 0x4000: (StorageContainer) [4] { 0 0x4001: (StorageRaw) { Size: 24 String: 2.0. .-. .D.e.f.a.u.l.t. } @@ -13373,415 +12606,387 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } - 4 0x5300: (StorageRaw) { + Orphan[2] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 0d 00 00 00 Int: 13 Float: 1.82169e-44 } - 5 0x5600: (StorageContainer) [1] { + Orphan[3] 0x5600: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 319 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [6] { - 0 0x000b: (StorageRaw) { + 319 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [6] { + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: <).Z..B0`......!....@... Hex: 3c 29 06 5a 1e 0c 42 30 60 11 00 00 00 00 00 21 e0 2e 04 00 40 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 09 00 00 00 00 00 80 06 00 00 00 00 40 ff ff ff ff } - 5 0x000c: (StorageRaw) { + Orphan[5] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 320 0x0001: (SceneClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), ViewportManager.gup) [3] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: ?....... - Hex: 3f 01 00 00 ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1000: (StorageRaw) { + 320 0x0001: (CustAttribSuperClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), 0x00001160, Viewport Manager for DirectX (Autodesk)) [1] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 321 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: @... - Hex: 40 01 00 00 - Int: 320 - Float: 4.48416e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1030: (StorageRaw) { + 321 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ViewportManager, (0x5a06293c, 0x30420c1e)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: L... Hex: 4c 01 00 00 Int: 332 Float: 4.65231e-43 } - 3 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 322 0x0004: (SceneClassUnknown: Texmaps, (0x00001200, 0x00000000), mtl.dlt) [8] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: 0... - Hex: 30 00 00 00 - Int: 48 - Float: 6.72623e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5003: (StorageRaw) { + 322 0x0004: (TexmapContainerSuperClassUnknown: Texmaps, (0x00001200, 0x00000000), 0x00001080, Standard Materials and Textures (Autodesk)) [6] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5003: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x5108: (StorageRaw) { + Orphan[1] 0x5108: (StorageRaw) { Size: 4 String: ...> Hex: 9a 99 99 3e Int: 1050253722 Float: 0.3 } - 4 0x510c: (StorageRaw) { + Orphan[2] 0x510c: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x510d: (StorageRaw) { + Orphan[3] 0x510d: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x510e: (StorageRaw) { + Orphan[4] 0x510e: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x510f: (StorageRaw) { + Orphan[5] 0x510f: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 323 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 323 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....D... Hex: 05 00 00 00 00 00 00 21 e0 2e 0c 00 44 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 01 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ...............fff?fff?fff? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 66 66 66 3f 66 66 66 3f 66 66 66 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 27 String: ........................... Hex: 08 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0a 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 cc cc cc 3d } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 cd cc cc 3d } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 324 0x0005: (SceneClassUnknown: Blinn, (0x00000038, 0x00000000), mtl.dlt) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: C... - Hex: 43 01 00 00 - Int: 323 - Float: 4.52619e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5300: (StorageRaw) { + 324 0x0005: (ShaderSuperClassUnknown: Blinn, (0x00000038, 0x00000000), 0x000010b0, Standard Materials and Textures (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x5020: (StorageContainer) [1] { + Orphan[1] 0x5020: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 325 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [8] { - 0 0x0009: (StorageRaw) { + 325 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [8] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....L... Hex: 08 00 00 00 00 00 00 21 e0 2e 06 00 4c 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 7 0x000c: (StorageRaw) { + Orphan[7] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 326 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 326 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....L... Hex: 08 00 00 00 01 00 00 21 e0 2e 0c 00 4c 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 3f 00 00 00 3f 00 00 00 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: .......)......@.... Hex: 03 00 0f 00 00 00 00 29 81 10 00 00 00 00 40 ff ff ff ff } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 06 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 c0 3f } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 07 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: .................@@ Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 40 40 } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 327 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [13] { - 0 0x0009: (StorageRaw) { + 327 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [13] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....L... Hex: 08 00 00 00 02 00 00 21 e0 2e 0b 00 4c 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 03 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@...= Hex: 04 00 00 00 00 00 00 00 92 00 00 00 00 00 40 cd cc cc 3d } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 12 0x000c: (StorageRaw) { + Orphan[12] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 328 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [7] { - 0 0x0009: (StorageRaw) { + 328 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [7] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....L... Hex: 08 00 00 00 03 00 00 21 e0 2e 04 00 4c 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 00 00 04 08 00 00 00 00 82 00 00 00 00 00 00 18 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 01 00 0f 08 00 00 00 01 81 00 00 00 00 00 00 18 00 00 00 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 139 String: ...................@...?@...?@...?@...?@...?@...?@...?@...?@...>@...?@...?@...?@....@....@....@....@...?@...?@...?@...?@...?@...?@...?@...? Hex: 02 00 06 08 00 00 00 00 92 00 00 00 00 00 00 18 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 9a 99 99 3e 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x0005: (StorageRaw) { + Orphan[5] 0x0005: (StorageRaw) { Size: 961 String: $.......ambientMap...........ambientMapAmount...........ambientMapEnable...........bumpMap...........bumpMapAmount...........bumpMapEnable...........diffuseMap...........diffuseMapAmount...........diffuseMapEnable...........displacementMap...........displacementMapAmount...........displacementMapEnable...........filterMap...........filterMapAmount...........filterMapEnable...........glossinessMap...........glossinessMapAmount...........glossinessMapEnable...........opacityMap...........opacityMapAmount...........opacityMapEnable...........reflectionMap...........reflectionMapAmount...........reflectionMapEnable...........refractionMap...........refractionMapAmount...........refractionMapEnable...........selfIllumMap...........selfIllumMapAmount...........selfIllumMapEnable...........specularLevelMap...........specularLevelMapAmount...........specularLevelMapEnable...........specularMap...........specularMapAmount...........specularMapEnable....... Hex: 24 00 00 00 0b 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 00 01 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 00 00 00 00 08 00 00 00 62 75 6d 70 4d 61 70 00 01 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 41 6d 6f 75 6e 74 00 02 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 45 6e 61 62 6c 65 00 00 00 08 00 00 00 0b 00 00 00 64 69 66 66 75 73 65 4d 61 70 00 01 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 41 6d 6f 75 6e 74 00 02 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 45 6e 61 62 6c 65 00 00 00 01 00 00 00 10 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 00 01 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 0b 00 00 00 0a 00 00 00 66 69 6c 74 65 72 4d 61 70 00 01 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 07 00 00 00 0e 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 00 01 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 41 6d 6f 75 6e 74 00 02 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 45 6e 61 62 6c 65 00 00 00 04 00 00 00 0b 00 00 00 6f 70 61 63 69 74 79 4d 61 70 00 01 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 41 6d 6f 75 6e 74 00 02 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 45 6e 61 62 6c 65 00 00 00 06 00 00 00 0e 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 00 01 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 09 00 00 00 0e 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 00 01 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 0a 00 00 00 0d 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 00 01 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 41 6d 6f 75 6e 74 00 02 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 45 6e 61 62 6c 65 00 00 00 05 00 00 00 11 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 00 01 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 41 6d 6f 75 6e 74 00 02 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 45 6e 61 62 6c 65 00 00 00 03 00 00 00 0c 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 00 01 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 02 00 00 00 } - 6 0x000c: (StorageRaw) { + Orphan[6] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 329 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [5] { - 0 0x0009: (StorageRaw) { + 329 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [5] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....L... Hex: 08 00 00 00 04 00 00 21 e0 2e 03 00 4c 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 00 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000c: (StorageRaw) { + Orphan[4] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 330 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [5] { - 0 0x0001: (StorageRaw) { + 330 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [5] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 03 00 00 00 Int: 3 Float: 4.2039e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 02 00 } - 2 0x0002: (StorageContainer) [2] { + Orphan[2] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -13794,7 +12999,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } } - 3 0x0002: (StorageContainer) [2] { + Orphan[3] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -13807,7 +13012,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [2] { + Orphan[4] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -13820,44 +13025,39 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 331 0x0007: (SceneClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), samplers.dlh) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: J... - Hex: 4a 01 00 00 - Int: 330 - Float: 4.62428e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0200: (StorageRaw) { + 331 0x0007: (SamplerSuperClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), 0x00001110, Standard Samplers (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0200: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x39bf: (StorageContainer) [1] { + Orphan[1] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 24 String: M.a.x. .2...5. .S.t.a.r. } } } - 332 0x0008: (SceneClassUnknown: Standard, (0x00000002, 0x00000000), mtl.dlt) [6] { - 0 0x2034: (StorageRaw) { - Size: 36 - String: ....B...D...E...F...G...H...I...K... - Hex: ff ff ff ff 42 01 00 00 44 01 00 00 45 01 00 00 46 01 00 00 47 01 00 00 48 01 00 00 49 01 00 00 4b 01 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x21b0: (StorageContainer) [1] { + 332 0x0008: (MtlSuperClassUnknown: Standard, (0x00000002, 0x00000000), 0x00000c00, Standard Materials and Textures (Autodesk)) [4] { + References 0x2034: PARSED { + 1: (Texmaps, (0x00001200, 0x00000000)) + 2: (Blinn, (0x00000038, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) + 4: (ParamBlock2, (0x00000082, 0x00000000)) + 5: (ParamBlock2, (0x00000082, 0x00000000)) + 6: (ParamBlock2, (0x00000082, 0x00000000)) + 7: (ParamBlock2, (0x00000082, 0x00000000)) + 8: (Max 2.5 Star, (0x25773211, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: A... Hex: 41 01 00 00 Int: 321 Float: 4.49817e-43 } } - 3 0x4000: (StorageContainer) [4] { + Orphan[1] 0x4000: (StorageContainer) [4] { 0 0x4001: (StorageRaw) { Size: 24 String: 2.1. .-. .D.e.f.a.u.l.t. } @@ -13877,415 +13077,387 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } - 4 0x5300: (StorageRaw) { + Orphan[2] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 0d 00 00 00 Int: 13 Float: 1.82169e-44 } - 5 0x5600: (StorageContainer) [1] { + Orphan[3] 0x5600: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 333 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [6] { - 0 0x000b: (StorageRaw) { + 333 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [6] { + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: <).Z..B0`......!....N... Hex: 3c 29 06 5a 1e 0c 42 30 60 11 00 00 00 00 00 21 e0 2e 04 00 4e 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 09 00 00 00 00 00 80 06 00 00 00 00 40 ff ff ff ff } - 5 0x000c: (StorageRaw) { + Orphan[5] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 334 0x0001: (SceneClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), ViewportManager.gup) [3] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: M....... - Hex: 4d 01 00 00 ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1000: (StorageRaw) { + 334 0x0001: (CustAttribSuperClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), 0x00001160, Viewport Manager for DirectX (Autodesk)) [1] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 335 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: N... - Hex: 4e 01 00 00 - Int: 334 - Float: 4.68034e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1030: (StorageRaw) { + 335 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ViewportManager, (0x5a06293c, 0x30420c1e)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: Z... Hex: 5a 01 00 00 Int: 346 Float: 4.84849e-43 } - 3 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 336 0x0004: (SceneClassUnknown: Texmaps, (0x00001200, 0x00000000), mtl.dlt) [8] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: 0... - Hex: 30 00 00 00 - Int: 48 - Float: 6.72623e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5003: (StorageRaw) { + 336 0x0004: (TexmapContainerSuperClassUnknown: Texmaps, (0x00001200, 0x00000000), 0x00001080, Standard Materials and Textures (Autodesk)) [6] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5003: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x5108: (StorageRaw) { + Orphan[1] 0x5108: (StorageRaw) { Size: 4 String: ...> Hex: 9a 99 99 3e Int: 1050253722 Float: 0.3 } - 4 0x510c: (StorageRaw) { + Orphan[2] 0x510c: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x510d: (StorageRaw) { + Orphan[3] 0x510d: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x510e: (StorageRaw) { + Orphan[4] 0x510e: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x510f: (StorageRaw) { + Orphan[5] 0x510f: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 337 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 337 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....R... Hex: 05 00 00 00 00 00 00 21 e0 2e 0c 00 52 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 01 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ...............fff?fff?fff? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 66 66 66 3f 66 66 66 3f 66 66 66 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 27 String: ........................... Hex: 08 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0a 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 cc cc cc 3d } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 cd cc cc 3d } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 338 0x0005: (SceneClassUnknown: Blinn, (0x00000038, 0x00000000), mtl.dlt) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: Q... - Hex: 51 01 00 00 - Int: 337 - Float: 4.72238e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5300: (StorageRaw) { + 338 0x0005: (ShaderSuperClassUnknown: Blinn, (0x00000038, 0x00000000), 0x000010b0, Standard Materials and Textures (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x5020: (StorageContainer) [1] { + Orphan[1] 0x5020: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 339 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [8] { - 0 0x0009: (StorageRaw) { + 339 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [8] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....Z... Hex: 08 00 00 00 00 00 00 21 e0 2e 06 00 5a 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 7 0x000c: (StorageRaw) { + Orphan[7] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 340 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 340 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....Z... Hex: 08 00 00 00 01 00 00 21 e0 2e 0c 00 5a 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 3f 00 00 00 3f 00 00 00 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: .......)......@.... Hex: 03 00 0f 00 00 00 00 29 81 10 00 00 00 00 40 ff ff ff ff } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 06 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 c0 3f } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 07 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: .................@@ Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 40 40 } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 341 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [13] { - 0 0x0009: (StorageRaw) { + 341 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [13] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....Z... Hex: 08 00 00 00 02 00 00 21 e0 2e 0b 00 5a 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 03 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@...= Hex: 04 00 00 00 00 00 00 00 92 00 00 00 00 00 40 cd cc cc 3d } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 12 0x000c: (StorageRaw) { + Orphan[12] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 342 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [7] { - 0 0x0009: (StorageRaw) { + 342 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [7] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....Z... Hex: 08 00 00 00 03 00 00 21 e0 2e 04 00 5a 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 00 00 04 08 00 00 00 00 82 00 00 00 00 00 00 18 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 01 00 0f 08 00 00 00 01 81 00 00 00 00 00 00 18 00 00 00 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 139 String: ...................@...?@...?@...?@...?@...?@...?@...?@...?@...>@...?@...?@...?@....@....@....@....@...?@...?@...?@...?@...?@...?@...?@...? Hex: 02 00 06 08 00 00 00 00 92 00 00 00 00 00 00 18 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 9a 99 99 3e 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x0005: (StorageRaw) { + Orphan[5] 0x0005: (StorageRaw) { Size: 961 String: $.......ambientMap...........ambientMapAmount...........ambientMapEnable...........bumpMap...........bumpMapAmount...........bumpMapEnable...........diffuseMap...........diffuseMapAmount...........diffuseMapEnable...........displacementMap...........displacementMapAmount...........displacementMapEnable...........filterMap...........filterMapAmount...........filterMapEnable...........glossinessMap...........glossinessMapAmount...........glossinessMapEnable...........opacityMap...........opacityMapAmount...........opacityMapEnable...........reflectionMap...........reflectionMapAmount...........reflectionMapEnable...........refractionMap...........refractionMapAmount...........refractionMapEnable...........selfIllumMap...........selfIllumMapAmount...........selfIllumMapEnable...........specularLevelMap...........specularLevelMapAmount...........specularLevelMapEnable...........specularMap...........specularMapAmount...........specularMapEnable....... Hex: 24 00 00 00 0b 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 00 01 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 00 00 00 00 08 00 00 00 62 75 6d 70 4d 61 70 00 01 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 41 6d 6f 75 6e 74 00 02 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 45 6e 61 62 6c 65 00 00 00 08 00 00 00 0b 00 00 00 64 69 66 66 75 73 65 4d 61 70 00 01 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 41 6d 6f 75 6e 74 00 02 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 45 6e 61 62 6c 65 00 00 00 01 00 00 00 10 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 00 01 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 0b 00 00 00 0a 00 00 00 66 69 6c 74 65 72 4d 61 70 00 01 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 07 00 00 00 0e 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 00 01 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 41 6d 6f 75 6e 74 00 02 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 45 6e 61 62 6c 65 00 00 00 04 00 00 00 0b 00 00 00 6f 70 61 63 69 74 79 4d 61 70 00 01 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 41 6d 6f 75 6e 74 00 02 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 45 6e 61 62 6c 65 00 00 00 06 00 00 00 0e 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 00 01 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 09 00 00 00 0e 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 00 01 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 0a 00 00 00 0d 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 00 01 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 41 6d 6f 75 6e 74 00 02 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 45 6e 61 62 6c 65 00 00 00 05 00 00 00 11 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 00 01 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 41 6d 6f 75 6e 74 00 02 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 45 6e 61 62 6c 65 00 00 00 03 00 00 00 0c 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 00 01 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 02 00 00 00 } - 6 0x000c: (StorageRaw) { + Orphan[6] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 343 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [5] { - 0 0x0009: (StorageRaw) { + 343 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [5] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....Z... Hex: 08 00 00 00 04 00 00 21 e0 2e 03 00 5a 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 00 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000c: (StorageRaw) { + Orphan[4] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 344 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [5] { - 0 0x0001: (StorageRaw) { + 344 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [5] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 03 00 00 00 Int: 3 Float: 4.2039e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 02 00 } - 2 0x0002: (StorageContainer) [2] { + Orphan[2] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -14298,7 +13470,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } } - 3 0x0002: (StorageContainer) [2] { + Orphan[3] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -14311,7 +13483,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [2] { + Orphan[4] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -14324,44 +13496,39 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 345 0x0007: (SceneClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), samplers.dlh) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: X... - Hex: 58 01 00 00 - Int: 344 - Float: 4.82047e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0200: (StorageRaw) { + 345 0x0007: (SamplerSuperClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), 0x00001110, Standard Samplers (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0200: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x39bf: (StorageContainer) [1] { + Orphan[1] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 24 String: M.a.x. .2...5. .S.t.a.r. } } } - 346 0x0008: (SceneClassUnknown: Standard, (0x00000002, 0x00000000), mtl.dlt) [6] { - 0 0x2034: (StorageRaw) { - Size: 36 - String: ....P...R...S...T...U...V...W...Y... - Hex: ff ff ff ff 50 01 00 00 52 01 00 00 53 01 00 00 54 01 00 00 55 01 00 00 56 01 00 00 57 01 00 00 59 01 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x21b0: (StorageContainer) [1] { + 346 0x0008: (MtlSuperClassUnknown: Standard, (0x00000002, 0x00000000), 0x00000c00, Standard Materials and Textures (Autodesk)) [4] { + References 0x2034: PARSED { + 1: (Texmaps, (0x00001200, 0x00000000)) + 2: (Blinn, (0x00000038, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) + 4: (ParamBlock2, (0x00000082, 0x00000000)) + 5: (ParamBlock2, (0x00000082, 0x00000000)) + 6: (ParamBlock2, (0x00000082, 0x00000000)) + 7: (ParamBlock2, (0x00000082, 0x00000000)) + 8: (Max 2.5 Star, (0x25773211, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: O... Hex: 4f 01 00 00 Int: 335 Float: 4.69435e-43 } } - 3 0x4000: (StorageContainer) [4] { + Orphan[1] 0x4000: (StorageContainer) [4] { 0 0x4001: (StorageRaw) { Size: 24 String: 2.2. .-. .D.e.f.a.u.l.t. } @@ -14381,415 +13548,387 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } - 4 0x5300: (StorageRaw) { + Orphan[2] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 0d 00 00 00 Int: 13 Float: 1.82169e-44 } - 5 0x5600: (StorageContainer) [1] { + Orphan[3] 0x5600: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 347 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [6] { - 0 0x000b: (StorageRaw) { + 347 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [6] { + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: <).Z..B0`......!....\... Hex: 3c 29 06 5a 1e 0c 42 30 60 11 00 00 00 00 00 21 e0 2e 04 00 5c 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 09 00 00 00 00 00 80 06 00 00 00 00 40 ff ff ff ff } - 5 0x000c: (StorageRaw) { + Orphan[5] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 348 0x0001: (SceneClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), ViewportManager.gup) [3] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: [....... - Hex: 5b 01 00 00 ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1000: (StorageRaw) { + 348 0x0001: (CustAttribSuperClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), 0x00001160, Viewport Manager for DirectX (Autodesk)) [1] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 349 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: \... - Hex: 5c 01 00 00 - Int: 348 - Float: 4.87652e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1030: (StorageRaw) { + 349 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ViewportManager, (0x5a06293c, 0x30420c1e)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: h... Hex: 68 01 00 00 Int: 360 Float: 5.04467e-43 } - 3 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 350 0x0004: (SceneClassUnknown: Texmaps, (0x00001200, 0x00000000), mtl.dlt) [8] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: 0... - Hex: 30 00 00 00 - Int: 48 - Float: 6.72623e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5003: (StorageRaw) { + 350 0x0004: (TexmapContainerSuperClassUnknown: Texmaps, (0x00001200, 0x00000000), 0x00001080, Standard Materials and Textures (Autodesk)) [6] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5003: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x5108: (StorageRaw) { + Orphan[1] 0x5108: (StorageRaw) { Size: 4 String: ...> Hex: 9a 99 99 3e Int: 1050253722 Float: 0.3 } - 4 0x510c: (StorageRaw) { + Orphan[2] 0x510c: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x510d: (StorageRaw) { + Orphan[3] 0x510d: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x510e: (StorageRaw) { + Orphan[4] 0x510e: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x510f: (StorageRaw) { + Orphan[5] 0x510f: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 351 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 351 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....`... Hex: 05 00 00 00 00 00 00 21 e0 2e 0c 00 60 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 01 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ...............fff?fff?fff? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 66 66 66 3f 66 66 66 3f 66 66 66 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 27 String: ........................... Hex: 08 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0a 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 cc cc cc 3d } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 cd cc cc 3d } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 352 0x0005: (SceneClassUnknown: Blinn, (0x00000038, 0x00000000), mtl.dlt) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: _... - Hex: 5f 01 00 00 - Int: 351 - Float: 4.91856e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5300: (StorageRaw) { + 352 0x0005: (ShaderSuperClassUnknown: Blinn, (0x00000038, 0x00000000), 0x000010b0, Standard Materials and Textures (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x5020: (StorageContainer) [1] { + Orphan[1] 0x5020: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 353 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [8] { - 0 0x0009: (StorageRaw) { + 353 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [8] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....h... Hex: 08 00 00 00 00 00 00 21 e0 2e 06 00 68 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 7 0x000c: (StorageRaw) { + Orphan[7] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 354 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 354 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....h... Hex: 08 00 00 00 01 00 00 21 e0 2e 0c 00 68 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 3f 00 00 00 3f 00 00 00 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: .......)......@.... Hex: 03 00 0f 00 00 00 00 29 81 10 00 00 00 00 40 ff ff ff ff } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 06 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 c0 3f } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 07 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: .................@@ Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 40 40 } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 355 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [13] { - 0 0x0009: (StorageRaw) { + 355 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [13] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....h... Hex: 08 00 00 00 02 00 00 21 e0 2e 0b 00 68 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 03 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@...= Hex: 04 00 00 00 00 00 00 00 92 00 00 00 00 00 40 cd cc cc 3d } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 12 0x000c: (StorageRaw) { + Orphan[12] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 356 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [7] { - 0 0x0009: (StorageRaw) { + 356 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [7] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....h... Hex: 08 00 00 00 03 00 00 21 e0 2e 04 00 68 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 00 00 04 08 00 00 00 00 82 00 00 00 00 00 00 18 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 01 00 0f 08 00 00 00 01 81 00 00 00 00 00 00 18 00 00 00 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 139 String: ...................@...?@...?@...?@...?@...?@...?@...?@...?@...>@...?@...?@...?@....@....@....@....@...?@...?@...?@...?@...?@...?@...?@...? Hex: 02 00 06 08 00 00 00 00 92 00 00 00 00 00 00 18 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 9a 99 99 3e 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x0005: (StorageRaw) { + Orphan[5] 0x0005: (StorageRaw) { Size: 961 String: $.......ambientMap...........ambientMapAmount...........ambientMapEnable...........bumpMap...........bumpMapAmount...........bumpMapEnable...........diffuseMap...........diffuseMapAmount...........diffuseMapEnable...........displacementMap...........displacementMapAmount...........displacementMapEnable...........filterMap...........filterMapAmount...........filterMapEnable...........glossinessMap...........glossinessMapAmount...........glossinessMapEnable...........opacityMap...........opacityMapAmount...........opacityMapEnable...........reflectionMap...........reflectionMapAmount...........reflectionMapEnable...........refractionMap...........refractionMapAmount...........refractionMapEnable...........selfIllumMap...........selfIllumMapAmount...........selfIllumMapEnable...........specularLevelMap...........specularLevelMapAmount...........specularLevelMapEnable...........specularMap...........specularMapAmount...........specularMapEnable....... Hex: 24 00 00 00 0b 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 00 01 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 00 00 00 00 08 00 00 00 62 75 6d 70 4d 61 70 00 01 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 41 6d 6f 75 6e 74 00 02 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 45 6e 61 62 6c 65 00 00 00 08 00 00 00 0b 00 00 00 64 69 66 66 75 73 65 4d 61 70 00 01 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 41 6d 6f 75 6e 74 00 02 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 45 6e 61 62 6c 65 00 00 00 01 00 00 00 10 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 00 01 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 0b 00 00 00 0a 00 00 00 66 69 6c 74 65 72 4d 61 70 00 01 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 07 00 00 00 0e 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 00 01 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 41 6d 6f 75 6e 74 00 02 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 45 6e 61 62 6c 65 00 00 00 04 00 00 00 0b 00 00 00 6f 70 61 63 69 74 79 4d 61 70 00 01 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 41 6d 6f 75 6e 74 00 02 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 45 6e 61 62 6c 65 00 00 00 06 00 00 00 0e 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 00 01 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 09 00 00 00 0e 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 00 01 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 0a 00 00 00 0d 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 00 01 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 41 6d 6f 75 6e 74 00 02 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 45 6e 61 62 6c 65 00 00 00 05 00 00 00 11 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 00 01 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 41 6d 6f 75 6e 74 00 02 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 45 6e 61 62 6c 65 00 00 00 03 00 00 00 0c 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 00 01 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 02 00 00 00 } - 6 0x000c: (StorageRaw) { + Orphan[6] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 357 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [5] { - 0 0x0009: (StorageRaw) { + 357 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [5] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....h... Hex: 08 00 00 00 04 00 00 21 e0 2e 03 00 68 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 00 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000c: (StorageRaw) { + Orphan[4] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 358 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [5] { - 0 0x0001: (StorageRaw) { + 358 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [5] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 03 00 00 00 Int: 3 Float: 4.2039e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 02 00 } - 2 0x0002: (StorageContainer) [2] { + Orphan[2] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -14802,7 +13941,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } } - 3 0x0002: (StorageContainer) [2] { + Orphan[3] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -14815,7 +13954,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [2] { + Orphan[4] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -14828,44 +13967,39 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 359 0x0007: (SceneClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), samplers.dlh) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: f... - Hex: 66 01 00 00 - Int: 358 - Float: 5.01665e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0200: (StorageRaw) { + 359 0x0007: (SamplerSuperClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), 0x00001110, Standard Samplers (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0200: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x39bf: (StorageContainer) [1] { + Orphan[1] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 24 String: M.a.x. .2...5. .S.t.a.r. } } } - 360 0x0008: (SceneClassUnknown: Standard, (0x00000002, 0x00000000), mtl.dlt) [6] { - 0 0x2034: (StorageRaw) { - Size: 36 - String: ....^...`...a...b...c...d...e...g... - Hex: ff ff ff ff 5e 01 00 00 60 01 00 00 61 01 00 00 62 01 00 00 63 01 00 00 64 01 00 00 65 01 00 00 67 01 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x21b0: (StorageContainer) [1] { + 360 0x0008: (MtlSuperClassUnknown: Standard, (0x00000002, 0x00000000), 0x00000c00, Standard Materials and Textures (Autodesk)) [4] { + References 0x2034: PARSED { + 1: (Texmaps, (0x00001200, 0x00000000)) + 2: (Blinn, (0x00000038, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) + 4: (ParamBlock2, (0x00000082, 0x00000000)) + 5: (ParamBlock2, (0x00000082, 0x00000000)) + 6: (ParamBlock2, (0x00000082, 0x00000000)) + 7: (ParamBlock2, (0x00000082, 0x00000000)) + 8: (Max 2.5 Star, (0x25773211, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: ]... Hex: 5d 01 00 00 Int: 349 Float: 4.89053e-43 } } - 3 0x4000: (StorageContainer) [4] { + Orphan[1] 0x4000: (StorageContainer) [4] { 0 0x4001: (StorageRaw) { Size: 24 String: 2.3. .-. .D.e.f.a.u.l.t. } @@ -14885,415 +14019,387 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } - 4 0x5300: (StorageRaw) { + Orphan[2] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 0d 00 00 00 Int: 13 Float: 1.82169e-44 } - 5 0x5600: (StorageContainer) [1] { + Orphan[3] 0x5600: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 361 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [6] { - 0 0x000b: (StorageRaw) { + 361 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [6] { + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: <).Z..B0`......!....j... Hex: 3c 29 06 5a 1e 0c 42 30 60 11 00 00 00 00 00 21 e0 2e 04 00 6a 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 09 00 00 00 00 00 80 06 00 00 00 00 40 ff ff ff ff } - 5 0x000c: (StorageRaw) { + Orphan[5] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 362 0x0001: (SceneClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), ViewportManager.gup) [3] { - 0 0x2034: (StorageRaw) { - Size: 8 - String: i....... - Hex: 69 01 00 00 ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1000: (StorageRaw) { + 362 0x0001: (CustAttribSuperClassUnknown: ViewportManager, (0x5a06293c, 0x30420c1e), 0x00001160, Viewport Manager for DirectX (Autodesk)) [1] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 363 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: j... - Hex: 6a 01 00 00 - Int: 362 - Float: 5.0727e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1030: (StorageRaw) { + 363 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ViewportManager, (0x5a06293c, 0x30420c1e)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: v... Hex: 76 01 00 00 Int: 374 Float: 5.24086e-43 } - 3 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 364 0x0004: (SceneClassUnknown: Texmaps, (0x00001200, 0x00000000), mtl.dlt) [8] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: 0... - Hex: 30 00 00 00 - Int: 48 - Float: 6.72623e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5003: (StorageRaw) { + 364 0x0004: (TexmapContainerSuperClassUnknown: Texmaps, (0x00001200, 0x00000000), 0x00001080, Standard Materials and Textures (Autodesk)) [6] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5003: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x5108: (StorageRaw) { + Orphan[1] 0x5108: (StorageRaw) { Size: 4 String: ...> Hex: 9a 99 99 3e Int: 1050253722 Float: 0.3 } - 4 0x510c: (StorageRaw) { + Orphan[2] 0x510c: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x510d: (StorageRaw) { + Orphan[3] 0x510d: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x510e: (StorageRaw) { + Orphan[4] 0x510e: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x510f: (StorageRaw) { + Orphan[5] 0x510f: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 365 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 365 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....n... Hex: 05 00 00 00 00 00 00 21 e0 2e 0c 00 6e 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 00 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 01 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 97 96 16 3f 97 96 16 3f 97 96 16 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ...............fff?fff?fff? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 66 66 66 3f 66 66 66 3f 66 66 66 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 27 String: ........................... Hex: 08 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0a 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 cc cc cc 3d } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ..................= Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 cd cc cc 3d } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 366 0x0005: (SceneClassUnknown: Blinn, (0x00000038, 0x00000000), mtl.dlt) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: m... - Hex: 6d 01 00 00 - Int: 365 - Float: 5.11474e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x5300: (StorageRaw) { + 366 0x0005: (ShaderSuperClassUnknown: Blinn, (0x00000038, 0x00000000), 0x000010b0, Standard Materials and Textures (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x5020: (StorageContainer) [1] { + Orphan[1] 0x5020: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 367 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [8] { - 0 0x0009: (StorageRaw) { + 367 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [8] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....v... Hex: 08 00 00 00 00 00 00 21 e0 2e 06 00 76 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 02 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 7 0x000c: (StorageRaw) { + Orphan[7] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 368 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [14] { - 0 0x0009: (StorageRaw) { + 368 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [14] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....v... Hex: 08 00 00 00 01 00 00 21 e0 2e 0c 00 76 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 27 String: ..................?...?...? Hex: 02 00 02 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 3f 00 00 00 3f 00 00 00 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: .......)......@.... Hex: 03 00 0f 00 00 00 00 29 81 10 00 00 00 00 40 ff ff ff ff } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 06 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 06 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 c0 3f } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 07 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: .................@@ Hex: 0b 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 40 40 } - 13 0x000c: (StorageRaw) { + Orphan[13] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 369 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [13] { - 0 0x0009: (StorageRaw) { + 369 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [13] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....v... Hex: 08 00 00 00 02 00 00 21 e0 2e 0b 00 76 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 00 82 00 00 00 00 00 40 03 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 3f } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 04 00 00 00 01 00 82 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@...= Hex: 04 00 00 00 00 00 00 00 92 00 00 00 00 00 40 cd cc cc 3d } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 05 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 08 00 00 00 00 00 80 00 00 00 00 00 40 ff ff ff ff } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 09 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 12 0x000c: (StorageRaw) { + Orphan[12] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 370 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [7] { - 0 0x0009: (StorageRaw) { + 370 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [7] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....v... Hex: 08 00 00 00 03 00 00 21 e0 2e 04 00 76 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 00 00 04 08 00 00 00 00 82 00 00 00 00 00 00 18 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 139 String: ...................@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@....@.... Hex: 01 00 0f 08 00 00 00 01 81 00 00 00 00 00 00 18 00 00 00 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff 40 ff ff ff ff } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 139 String: ...................@...?@...?@...?@...?@...?@...?@...?@...?@...>@...?@...?@...?@....@....@....@....@...?@...?@...?@...?@...?@...?@...?@...? Hex: 02 00 06 08 00 00 00 00 92 00 00 00 00 00 00 18 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 9a 99 99 3e 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 00 00 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f 40 00 00 80 3f } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 03 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 5 0x0005: (StorageRaw) { + Orphan[5] 0x0005: (StorageRaw) { Size: 961 String: $.......ambientMap...........ambientMapAmount...........ambientMapEnable...........bumpMap...........bumpMapAmount...........bumpMapEnable...........diffuseMap...........diffuseMapAmount...........diffuseMapEnable...........displacementMap...........displacementMapAmount...........displacementMapEnable...........filterMap...........filterMapAmount...........filterMapEnable...........glossinessMap...........glossinessMapAmount...........glossinessMapEnable...........opacityMap...........opacityMapAmount...........opacityMapEnable...........reflectionMap...........reflectionMapAmount...........reflectionMapEnable...........refractionMap...........refractionMapAmount...........refractionMapEnable...........selfIllumMap...........selfIllumMapAmount...........selfIllumMapEnable...........specularLevelMap...........specularLevelMapAmount...........specularLevelMapEnable...........specularMap...........specularMapAmount...........specularMapEnable....... Hex: 24 00 00 00 0b 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 00 01 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 00 00 00 00 11 00 00 00 61 6d 62 69 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 00 00 00 00 08 00 00 00 62 75 6d 70 4d 61 70 00 01 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 41 6d 6f 75 6e 74 00 02 00 08 00 00 00 0e 00 00 00 62 75 6d 70 4d 61 70 45 6e 61 62 6c 65 00 00 00 08 00 00 00 0b 00 00 00 64 69 66 66 75 73 65 4d 61 70 00 01 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 41 6d 6f 75 6e 74 00 02 00 01 00 00 00 11 00 00 00 64 69 66 66 75 73 65 4d 61 70 45 6e 61 62 6c 65 00 00 00 01 00 00 00 10 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 00 01 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0b 00 00 00 16 00 00 00 64 69 73 70 6c 61 63 65 6d 65 6e 74 4d 61 70 45 6e 61 62 6c 65 00 00 00 0b 00 00 00 0a 00 00 00 66 69 6c 74 65 72 4d 61 70 00 01 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 07 00 00 00 10 00 00 00 66 69 6c 74 65 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 07 00 00 00 0e 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 00 01 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 41 6d 6f 75 6e 74 00 02 00 04 00 00 00 14 00 00 00 67 6c 6f 73 73 69 6e 65 73 73 4d 61 70 45 6e 61 62 6c 65 00 00 00 04 00 00 00 0b 00 00 00 6f 70 61 63 69 74 79 4d 61 70 00 01 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 41 6d 6f 75 6e 74 00 02 00 06 00 00 00 11 00 00 00 6f 70 61 63 69 74 79 4d 61 70 45 6e 61 62 6c 65 00 00 00 06 00 00 00 0e 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 00 01 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 09 00 00 00 14 00 00 00 72 65 66 6c 65 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 09 00 00 00 0e 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 00 01 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 41 6d 6f 75 6e 74 00 02 00 0a 00 00 00 14 00 00 00 72 65 66 72 61 63 74 69 6f 6e 4d 61 70 45 6e 61 62 6c 65 00 00 00 0a 00 00 00 0d 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 00 01 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 41 6d 6f 75 6e 74 00 02 00 05 00 00 00 13 00 00 00 73 65 6c 66 49 6c 6c 75 6d 4d 61 70 45 6e 61 62 6c 65 00 00 00 05 00 00 00 11 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 00 01 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 41 6d 6f 75 6e 74 00 02 00 03 00 00 00 17 00 00 00 73 70 65 63 75 6c 61 72 4c 65 76 65 6c 4d 61 70 45 6e 61 62 6c 65 00 00 00 03 00 00 00 0c 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 00 01 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 41 6d 6f 75 6e 74 00 02 00 02 00 00 00 12 00 00 00 73 70 65 63 75 6c 61 72 4d 61 70 45 6e 61 62 6c 65 00 00 00 02 00 00 00 } - 6 0x000c: (StorageRaw) { + Orphan[6] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 371 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [5] { - 0 0x0009: (StorageRaw) { + 371 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [5] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!....v... Hex: 08 00 00 00 04 00 00 21 e0 2e 03 00 76 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 00 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 4 0x000c: (StorageRaw) { + Orphan[4] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 00 00 00 00 00 00 } } - 372 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [5] { - 0 0x0001: (StorageRaw) { + 372 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [5] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 03 00 00 00 Int: 3 Float: 4.2039e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 02 00 } - 2 0x0002: (StorageContainer) [2] { + Orphan[2] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -15306,7 +14412,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } } - 3 0x0002: (StorageContainer) [2] { + Orphan[3] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -15319,7 +14425,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x0002: (StorageContainer) [2] { + Orphan[4] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -15332,44 +14438,39 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 373 0x0007: (SceneClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), samplers.dlh) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: t... - Hex: 74 01 00 00 - Int: 372 - Float: 5.21283e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0200: (StorageRaw) { + 373 0x0007: (SamplerSuperClassUnknown: Max 2.5 Star, (0x25773211, 0x00000000), 0x00001110, Standard Samplers (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0200: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x39bf: (StorageContainer) [1] { + Orphan[1] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 24 String: M.a.x. .2...5. .S.t.a.r. } } } - 374 0x0008: (SceneClassUnknown: Standard, (0x00000002, 0x00000000), mtl.dlt) [6] { - 0 0x2034: (StorageRaw) { - Size: 36 - String: ....l...n...o...p...q...r...s...u... - Hex: ff ff ff ff 6c 01 00 00 6e 01 00 00 6f 01 00 00 70 01 00 00 71 01 00 00 72 01 00 00 73 01 00 00 75 01 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x21b0: (StorageContainer) [1] { + 374 0x0008: (MtlSuperClassUnknown: Standard, (0x00000002, 0x00000000), 0x00000c00, Standard Materials and Textures (Autodesk)) [4] { + References 0x2034: PARSED { + 1: (Texmaps, (0x00001200, 0x00000000)) + 2: (Blinn, (0x00000038, 0x00000000)) + 3: (ParamBlock2, (0x00000082, 0x00000000)) + 4: (ParamBlock2, (0x00000082, 0x00000000)) + 5: (ParamBlock2, (0x00000082, 0x00000000)) + 6: (ParamBlock2, (0x00000082, 0x00000000)) + 7: (ParamBlock2, (0x00000082, 0x00000000)) + 8: (Max 2.5 Star, (0x25773211, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: k... Hex: 6b 01 00 00 Int: 363 Float: 5.08671e-43 } } - 3 0x4000: (StorageContainer) [4] { + Orphan[1] 0x4000: (StorageContainer) [4] { 0 0x4001: (StorageRaw) { Size: 24 String: 2.4. .-. .D.e.f.a.u.l.t. } @@ -15389,83 +14490,95 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 16 String: ...............? Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } } - 4 0x5300: (StorageRaw) { + Orphan[2] 0x5300: (StorageRaw) { Size: 4 String: .... Hex: 0d 00 00 00 Int: 13 Float: 1.82169e-44 } - 5 0x5600: (StorageContainer) [1] { + Orphan[3] 0x5600: (StorageContainer) [1] { 0 0x0322: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 375 0x000e: (SceneClassUnknown: Material Editor, (0x00000c80, 0x00000000), Builtin) [7] { - 0 0x2034: (StorageRaw) { - Size: 104 - String: ............/...=...K...Y..............................................."...0...>...L...Z...h...v....... - Hex: ff ff ff ff 0f 00 00 00 1f 00 00 00 2f 00 00 00 3d 00 00 00 4b 00 00 00 59 00 00 00 86 00 00 00 96 00 00 00 a4 00 00 00 b2 00 00 00 c0 00 00 00 ce 00 00 00 dc 00 00 00 ea 00 00 00 f8 00 00 00 06 01 00 00 14 01 00 00 22 01 00 00 30 01 00 00 3e 01 00 00 4c 01 00 00 5a 01 00 00 68 01 00 00 76 01 00 00 86 00 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x9010: (StorageRaw) { + 375 0x000e: (ReferenceMakerUnknown: Material Editor, (0x00000c80, 0x00000000), 0x00000100, Builtin) [5] { + References 0x2034: PARSED { + 1: (Standard, (0x00000002, 0x00000000)) + 2: (Standard, (0x00000002, 0x00000000)) + 3: (Standard, (0x00000002, 0x00000000)) + 4: (Standard, (0x00000002, 0x00000000)) + 5: (Standard, (0x00000002, 0x00000000)) + 6: (Standard, (0x00000002, 0x00000000)) + 7: (NeL Material, (0x64c75fec, 0x222b9eb9)) + 8: (Standard, (0x00000002, 0x00000000)) + 9: (Standard, (0x00000002, 0x00000000)) + 10: (Standard, (0x00000002, 0x00000000)) + 11: (Standard, (0x00000002, 0x00000000)) + 12: (Standard, (0x00000002, 0x00000000)) + 13: (Standard, (0x00000002, 0x00000000)) + 14: (Standard, (0x00000002, 0x00000000)) + 15: (Standard, (0x00000002, 0x00000000)) + 16: (Standard, (0x00000002, 0x00000000)) + 17: (Standard, (0x00000002, 0x00000000)) + 18: (Standard, (0x00000002, 0x00000000)) + 19: (Standard, (0x00000002, 0x00000000)) + 20: (Standard, (0x00000002, 0x00000000)) + 21: (Standard, (0x00000002, 0x00000000)) + 22: (Standard, (0x00000002, 0x00000000)) + 23: (Standard, (0x00000002, 0x00000000)) + 24: (Standard, (0x00000002, 0x00000000)) + 25: (NeL Material, (0x64c75fec, 0x222b9eb9)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x9010: (StorageRaw) { Size: 8 String: ........ Hex: 06 00 00 00 04 00 00 00 } - 3 0x9030: (StorageRaw) { + Orphan[1] 0x9030: (StorageRaw) { Size: 96 String: ................................................................................................ Hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 } - 4 0x09c0: (StorageRaw) { + Orphan[2] 0x09c0: (StorageRaw) { Size: 4 String: .... Hex: 06 00 00 00 Int: 6 Float: 8.40779e-45 } - 5 0x90b0: (StorageRaw) { + Orphan[3] 0x90b0: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 6 0x09d0: (StorageRaw) { + Orphan[4] 0x09d0: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 376 0x000f: (SceneClassUnknown: MtlBaseLib, (0x00003333, 0x00000000), Builtin) [3] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: 86 00 00 00 - Int: 134 - Float: 1.87774e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x4110: (StorageRaw) { + 376 0x000f: (ReferenceMakerUnknown: MtlBaseLib, (0x00003333, 0x00000000), 0x00000100, Builtin) [1] { + References 0x2034: PARSED { + 0: (NeL Material, (0x64c75fec, 0x222b9eb9)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x4110: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 377 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [3] { - 0 0x0001: (StorageRaw) { + 377 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [3] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 00 00 } - 2 0x0002: (StorageContainer) [3] { + Orphan[2] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -15482,932 +14595,865 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 80 3f Int: 1065353216 Float: 1 } } } - 378 0x0010: (SceneClassUnknown: WaveMaster, (0x476fa9de, 0x5b918e4e), ProSound.dlc) [2] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: y... - Hex: 79 01 00 00 - Int: 377 - Float: 5.2829e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } } - 379 0x0011: (SceneClassUnknown: ProSound, (0x476fa9de, 0x5b918e4a), ProSound.dlc) [31] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: z... - Hex: 7a 01 00 00 - Int: 378 - Float: 5.29691e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x4990: (StorageRaw) { + 378 0x0010: (SoundObjSuperClassUnknown: WaveMaster, (0x476fa9de, 0x5b918e4e), 0x00000d00, ProSound - Multitrack Audio) [0] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } } + 379 0x0011: (SoundObjSuperClassUnknown: ProSound, (0x476fa9de, 0x5b918e4a), 0x00000d00, ProSound - Multitrack Audio) [29] { + References 0x2034: PARSED { + 0: (WaveMaster, (0x476fa9de, 0x5b918e4e)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x4990: (StorageRaw) { Size: 4 String: .... Hex: 8c 00 00 00 Int: 140 Float: 1.96182e-43 } - 3 0x5000: (StorageRaw) { + Orphan[1] 0x5000: (StorageRaw) { Size: 4 String: <... Hex: 3c 00 00 00 Int: 60 Float: 8.40779e-44 } - 4 0x5001: (StorageRaw) { + Orphan[2] 0x5001: (StorageRaw) { Size: 4 String: .... Hex: 04 00 00 00 Int: 4 Float: 5.60519e-45 } - 5 0x5002: (StorageRaw) { + Orphan[3] 0x5002: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 6 0x5003: (StorageRaw) { + Orphan[4] 0x5003: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 7 0x5004: (StorageRaw) { + Orphan[5] 0x5004: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 8 0x5005: (StorageRaw) { + Orphan[6] 0x5005: (StorageRaw) { Size: 4 String: .... Hex: d0 07 00 00 Int: 2000 Float: 2.8026e-42 } - 9 0x5006: (StorageRaw) { + Orphan[7] 0x5006: (StorageRaw) { Size: 4 String: .... Hex: e8 03 00 00 Int: 1000 Float: 1.4013e-42 } - 10 0x5008: (StorageRaw) { + Orphan[8] 0x5008: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 11 0x5009: (StorageRaw) { + Orphan[9] 0x5009: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 12 0x500a: (StorageRaw) { + Orphan[10] 0x500a: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 13 0x500b: (StorageRaw) { + Orphan[11] 0x500b: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 14 0x500c: (StorageRaw) { + Orphan[12] 0x500c: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 15 0x500d: (StorageRaw) { + Orphan[13] 0x500d: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 16 0x500e: (StorageRaw) { + Orphan[14] 0x500e: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 17 0x500f: (StorageRaw) { + Orphan[15] 0x500f: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 18 0x5010: (StorageRaw) { + Orphan[16] 0x5010: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 19 0x5011: (StorageRaw) { + Orphan[17] 0x5011: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 20 0x5012: (StorageRaw) { + Orphan[18] 0x5012: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 21 0x5013: (StorageRaw) { + Orphan[19] 0x5013: (StorageRaw) { Size: 4 String: d... Hex: 64 00 00 00 Int: 100 Float: 1.4013e-43 } - 22 0x5014: (StorageRaw) { + Orphan[20] 0x5014: (StorageRaw) { Size: 0 String: Hex: } - 23 0x5015: (StorageRaw) { + Orphan[21] 0x5015: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 24 0x5016: (StorageRaw) { + Orphan[22] 0x5016: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } - 25 0x5100: (StorageRaw) { + Orphan[23] 0x5100: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 26 0x5110: (StorageRaw) { + Orphan[24] 0x5110: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 27 0x5120: (StorageRaw) { + Orphan[25] 0x5120: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 28 0x5130: (StorageRaw) { + Orphan[26] 0x5130: (StorageRaw) { Size: 8 String: .....>.. Hex: 00 00 00 00 80 3e 00 00 } - 29 0x5140: (StorageRaw) { + Orphan[27] 0x5140: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 30 0x5150: (StorageRaw) { + Orphan[28] 0x5150: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 380 0x0012: (SceneClassUnknown: RootNode, (0x00000002, 0x00000000), Builtin) [3] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: .... - Hex: 10 00 00 00 - Int: 16 - Float: 2.24208e-44 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0120: (StorageRaw) { + 380 0x0012: (NodeUnknown: RootNode, (0x00000002, 0x00000000), 0x00000001, Builtin) [1] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0120: (StorageRaw) { Size: 0 String: Hex: } } - 381 0x0013: (SceneClassUnknown: Bezier Position, (0x00002008, 0x00000000), Builtin) [11] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: .... - Hex: 02 00 00 00 - Int: 2 - Float: 2.8026e-45 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x2503: (StorageRaw) { + 381 0x0013: (ControlPositionSuperClassUnknown: Bezier Position, (0x00002008, 0x00000000), 0x0000900b, Builtin) [9] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x2503: (StorageRaw) { Size: 12 String: .....%f..... Hex: 00 00 00 00 9c 25 66 b2 00 00 80 b3 } - 3 0x2500: (StorageRaw) { + Orphan[1] 0x2500: (StorageRaw) { Size: 8 String: ........ } - 4 0x3002: (StorageRaw) { + Orphan[2] 0x3002: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x3003: (StorageRaw) { + Orphan[3] 0x3003: (StorageRaw) { Size: 8 String: ........ Hex: 00 00 00 80 00 00 00 80 } - 6 0x2532: (StorageRaw) { + Orphan[4] 0x2532: (StorageRaw) { Size: 0 String: Hex: } - 7 0x2533: (StorageRaw) { + Orphan[5] 0x2533: (StorageRaw) { Size: 0 String: Hex: } - 8 0x2534: (StorageRaw) { + Orphan[6] 0x2534: (StorageRaw) { Size: 0 String: Hex: } - 9 0x3005: (StorageRaw) { + Orphan[7] 0x3005: (StorageRaw) { Size: 4 String: .... Hex: 86 01 00 00 Int: 390 Float: 5.46506e-43 } - 10 0x2535: (StorageRaw) { + Orphan[8] 0x2535: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 382 0x0014: (SceneClassUnknown: TCB Rotation, (0x00442313, 0x00000000), Builtin) [11] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: .... - Hex: 02 00 00 00 - Int: 2 - Float: 2.8026e-45 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x2504: (StorageRaw) { + 382 0x0014: (ControlRotationSuperClassUnknown: TCB Rotation, (0x00442313, 0x00000000), 0x0000900c, Builtin) [9] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x2504: (StorageRaw) { Size: 16 String: ..5...5...52..5? Hex: f2 04 35 bf f3 04 35 b2 f6 04 35 32 f4 04 35 3f } - 3 0x2500: (StorageRaw) { + Orphan[1] 0x2500: (StorageRaw) { Size: 8 String: ........ } - 4 0x3002: (StorageRaw) { + Orphan[2] 0x3002: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x3003: (StorageRaw) { + Orphan[3] 0x3003: (StorageRaw) { Size: 8 String: ........ Hex: 00 00 00 80 00 00 00 80 } - 6 0x2532: (StorageRaw) { + Orphan[4] 0x2532: (StorageRaw) { Size: 0 String: Hex: } - 7 0x2533: (StorageRaw) { + Orphan[5] 0x2533: (StorageRaw) { Size: 0 String: Hex: } - 8 0x2534: (StorageRaw) { + Orphan[6] 0x2534: (StorageRaw) { Size: 0 String: Hex: } - 9 0x3005: (StorageRaw) { + Orphan[7] 0x3005: (StorageRaw) { Size: 4 String: .... Hex: 86 01 00 00 Int: 390 Float: 5.46506e-43 } - 10 0x2535: (StorageRaw) { + Orphan[8] 0x2535: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 383 0x0015: (SceneClassUnknown: Bezier Scale, (0x00002010, 0x00000000), Builtin) [11] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: .... - Hex: 02 00 00 00 - Int: 2 - Float: 2.8026e-45 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x2505: (StorageRaw) { + 383 0x0015: (ControlScaleSuperClassUnknown: Bezier Scale, (0x00002010, 0x00000000), 0x0000900d, Builtin) [9] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x2505: (StorageRaw) { Size: 28 String: ...?...?...?...............? Hex: 00 00 80 3f 00 00 80 3f 00 00 80 3f 00 00 00 80 00 00 00 80 00 00 00 80 00 00 80 3f } - 3 0x2500: (StorageRaw) { + Orphan[1] 0x2500: (StorageRaw) { Size: 8 String: ........ } - 4 0x3002: (StorageRaw) { + Orphan[2] 0x3002: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x3003: (StorageRaw) { + Orphan[3] 0x3003: (StorageRaw) { Size: 8 String: ........ Hex: 00 00 00 80 00 00 00 80 } - 6 0x2532: (StorageRaw) { + Orphan[4] 0x2532: (StorageRaw) { Size: 0 String: Hex: } - 7 0x2533: (StorageRaw) { + Orphan[5] 0x2533: (StorageRaw) { Size: 0 String: Hex: } - 8 0x2534: (StorageRaw) { + Orphan[6] 0x2534: (StorageRaw) { Size: 0 String: Hex: } - 9 0x3005: (StorageRaw) { + Orphan[7] 0x3005: (StorageRaw) { Size: 4 String: .... Hex: 86 01 00 00 Int: 390 Float: 5.46506e-43 } - 10 0x2535: (StorageRaw) { + Orphan[8] 0x2535: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 384 0x0016: (SceneClassUnknown: Position/Rotation/Scale, (0x00002005, 0x00000000), Builtin) [5] { - 0 0x2034: (StorageRaw) { - Size: 12 - String: ....~....... - Hex: 7d 01 00 00 7e 01 00 00 7f 01 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x7230: (StorageRaw) { + 384 0x0016: (ControlTransformSuperClassUnknown: Position/Rotation/Scale, (0x00002005, 0x00000000), 0x00009008, Builtin) [3] { + References 0x2034: PARSED { + 0: (Bezier Position, (0x00002008, 0x00000000)) + 1: (TCB Rotation, (0x00442313, 0x00000000)) + 2: (Bezier Scale, (0x00002010, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x7230: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x7231: (StorageRaw) { + Orphan[1] 0x7231: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 4 0x2535: (StorageRaw) { + Orphan[2] 0x2535: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 385 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [123] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: ff ff ff ff - Int: -1 - Float: -nan } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0009: (StorageRaw) { + 385 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [121] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: .......!..w..... Hex: 18 00 00 00 00 00 00 21 e0 2e 77 00 83 01 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 04 00 00 00 02 00 82 00 00 00 00 00 40 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 02 00 82 00 00 00 00 00 40 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: p..... .......@.... Hex: 70 00 04 00 00 00 20 00 82 00 00 00 00 00 40 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: q..... .......@..I? Hex: 71 00 05 00 00 00 20 00 92 00 00 00 00 00 40 db 0f 49 3f } - 7 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 04 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 06 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 07 00 01 00 00 00 00 00 92 00 00 00 00 00 40 01 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 08 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ..................A Hex: 09 00 07 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 a0 41 } - 12 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 07 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 13 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0b 00 07 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 14 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: [.............@.... Hex: 5b 00 04 00 00 00 02 00 80 00 00 00 00 00 40 00 00 00 00 } - 15 0x000e: (StorageRaw) { + Orphan[13] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 7f 00 01 00 00 00 02 00 82 00 00 00 00 00 40 00 00 00 00 } - 16 0x000e: (StorageRaw) { + Orphan[14] 0x000e: (StorageRaw) { Size: 19 String: \.............@...? Hex: 5c 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 80 3f } - 17 0x000e: (StorageRaw) { + Orphan[15] 0x000e: (StorageRaw) { Size: 19 String: ].............@.. A Hex: 5d 00 07 00 00 00 02 00 90 00 00 00 00 00 40 00 00 20 41 } - 18 0x000e: (StorageRaw) { + Orphan[16] 0x000e: (StorageRaw) { Size: 19 String: ^.............@...? Hex: 5e 00 00 00 00 00 02 00 90 00 00 00 00 00 40 00 00 80 3f } - 19 0x000e: (StorageRaw) { + Orphan[17] 0x000e: (StorageRaw) { Size: 19 String: M.............@.... Hex: 4d 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 20 0x000e: (StorageRaw) { + Orphan[18] 0x000e: (StorageRaw) { Size: 19 String: Y.............@.... Hex: 59 00 04 00 00 00 02 00 82 00 00 00 00 00 40 01 00 00 00 } - 21 0x000e: (StorageRaw) { + Orphan[19] 0x000e: (StorageRaw) { Size: 19 String: =.............@.... Hex: 3d 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 22 0x000e: (StorageRaw) { + Orphan[20] 0x000e: (StorageRaw) { Size: 19 String: O.............@.... Hex: 4f 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 23 0x000e: (StorageRaw) { + Orphan[21] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0d 00 04 00 00 00 02 00 82 00 00 00 00 00 40 00 00 00 00 } - 24 0x000e: (StorageRaw) { + Orphan[22] 0x000e: (StorageRaw) { Size: 19 String: Z.............@.... Hex: 5a 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 25 0x000e: (StorageRaw) { + Orphan[23] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 17 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 26 0x000e: (StorageRaw) { + Orphan[24] 0x000e: (StorageRaw) { Size: 19 String: 4.............@.... Hex: 34 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 27 0x000e: (StorageRaw) { + Orphan[25] 0x000e: (StorageRaw) { Size: 19 String: X.............@.... Hex: 58 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 28 0x000e: (StorageRaw) { + Orphan[26] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 19 00 01 00 00 00 01 00 92 00 00 00 00 00 c0 01 00 00 00 } - 29 0x000e: (StorageRaw) { + Orphan[27] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 1a 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 30 0x000e: (StorageRaw) { + Orphan[28] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 1d 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 31 0x000e: (StorageRaw) { + Orphan[29] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 1b 00 01 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 00 00 } - 32 0x000e: (StorageRaw) { + Orphan[30] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 1e 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 33 0x000e: (StorageRaw) { + Orphan[31] 0x000e: (StorageRaw) { Size: 19 String: ..................? Hex: 1c 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 80 3f } - 34 0x000e: (StorageRaw) { + Orphan[32] 0x000e: (StorageRaw) { Size: 19 String: .............@.... Hex: 20 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 35 0x000e: (StorageRaw) { + Orphan[33] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 1f 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 36 0x000e: (StorageRaw) { + Orphan[34] 0x000e: (StorageRaw) { Size: 19 String: !.............@.... Hex: 21 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 37 0x000e: (StorageRaw) { + Orphan[35] 0x000e: (StorageRaw) { Size: 27 String: ".............@...?...?...? Hex: 22 00 02 00 00 00 02 00 82 00 00 00 00 00 40 00 00 80 3f 00 00 80 3f 00 00 80 3f } - 38 0x000e: (StorageRaw) { + Orphan[36] 0x000e: (StorageRaw) { Size: 19 String: '.............@.... Hex: 27 00 01 00 00 00 02 00 82 00 00 00 00 00 40 00 00 00 00 } - 39 0x000e: (StorageRaw) { + Orphan[37] 0x000e: (StorageRaw) { Size: 19 String: #.............@.... Hex: 23 00 01 00 00 00 02 00 92 00 00 00 00 00 40 0a 00 00 00 } - 40 0x000e: (StorageRaw) { + Orphan[38] 0x000e: (StorageRaw) { Size: 19 String: $.............@.... Hex: 24 00 01 00 00 00 02 00 92 00 00 00 00 00 40 0a 00 00 00 } - 41 0x000e: (StorageRaw) { + Orphan[39] 0x000e: (StorageRaw) { Size: 19 String: %.............@.... Hex: 25 00 01 00 00 00 02 00 92 00 00 00 00 00 40 0a 00 00 00 } - 42 0x000e: (StorageRaw) { + Orphan[40] 0x000e: (StorageRaw) { Size: 19 String: &.............@..I? Hex: 26 00 05 00 00 00 02 00 92 00 00 00 00 00 40 db 0f 49 3f } - 43 0x000e: (StorageRaw) { + Orphan[41] 0x000e: (StorageRaw) { Size: 19 String: (.............@.... Hex: 28 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 44 0x000e: (StorageRaw) { + Orphan[42] 0x000e: (StorageRaw) { Size: 19 String: ).............@.... Hex: 29 00 04 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 45 0x000e: (StorageRaw) { + Orphan[43] 0x000e: (StorageRaw) { Size: 19 String: *.............@.... Hex: 2a 00 01 00 00 00 00 00 82 00 00 00 00 00 40 03 00 00 00 } - 46 0x000e: (StorageRaw) { + Orphan[44] 0x000e: (StorageRaw) { Size: 19 String: +.................. Hex: 2b 00 01 00 00 00 01 00 92 00 00 00 00 00 c0 02 00 00 00 } - 47 0x000e: (StorageRaw) { + Orphan[45] 0x000e: (StorageRaw) { Size: 19 String: ,.................A Hex: 2c 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 a0 41 } - 48 0x000e: (StorageRaw) { + Orphan[46] 0x000e: (StorageRaw) { Size: 19 String: -.................A Hex: 2d 00 00 00 00 00 01 00 92 00 00 00 00 00 c0 00 00 a0 41 } - 49 0x000e: (StorageRaw) { + Orphan[47] 0x000e: (StorageRaw) { Size: 19 String: .................2> Hex: 2e 00 05 00 00 00 01 00 92 00 00 00 00 00 c0 c2 b8 32 3e } - 50 0x000e: (StorageRaw) { + Orphan[48] 0x000e: (StorageRaw) { Size: 19 String: /.............@.... Hex: 2f 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 51 0x000e: (StorageRaw) { + Orphan[49] 0x000e: (StorageRaw) { Size: 19 String: 0.............@.... Hex: 30 00 01 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 52 0x000e: (StorageRaw) { + Orphan[50] 0x000e: (StorageRaw) { Size: 19 String: 1.............@.... Hex: 31 00 01 00 00 00 00 00 92 00 00 00 00 00 40 00 00 00 00 } - 53 0x000e: (StorageRaw) { + Orphan[51] 0x000e: (StorageRaw) { Size: 19 String: 2.............@.... Hex: 32 00 01 00 00 00 00 00 92 00 00 00 00 00 40 02 00 00 00 } - 54 0x000e: (StorageRaw) { + Orphan[52] 0x000e: (StorageRaw) { Size: 19 String: 3.............@ N.. Hex: 33 00 01 00 00 00 00 00 92 00 00 00 00 00 40 20 4e 00 00 } - 55 0x000e: (StorageRaw) { + Orphan[53] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 0c 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 56 0x000e: (StorageRaw) { + Orphan[54] 0x000e: (StorageRaw) { Size: 19 String: V.............@.... Hex: 56 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 57 0x000e: (StorageRaw) { + Orphan[55] 0x000e: (StorageRaw) { Size: 19 String: 5.............@.. A Hex: 35 00 07 00 00 00 02 00 92 00 00 00 00 00 40 00 00 20 41 } - 58 0x000e: (StorageRaw) { + Orphan[56] 0x000e: (StorageRaw) { Size: 19 String: Q.............@.. A Hex: 51 00 07 00 00 00 02 00 92 00 00 00 00 00 40 00 00 20 41 } - 59 0x000e: (StorageRaw) { + Orphan[57] 0x000e: (StorageRaw) { Size: 19 String: R.............@.. A Hex: 52 00 07 00 00 00 02 00 92 00 00 00 00 00 40 00 00 20 41 } - 60 0x000e: (StorageRaw) { + Orphan[58] 0x000e: (StorageRaw) { Size: 19 String: >.............@..@@ Hex: 3e 00 00 00 00 00 02 00 92 00 00 00 00 00 40 00 00 40 40 } - 61 0x000e: (StorageRaw) { + Orphan[59] 0x000e: (StorageRaw) { Size: 19 String: S.............@..@@ Hex: 53 00 00 00 00 00 02 00 92 00 00 00 00 00 40 00 00 40 40 } - 62 0x000e: (StorageRaw) { + Orphan[60] 0x000e: (StorageRaw) { Size: 19 String: P.............@.. A Hex: 50 00 07 00 00 00 02 00 92 00 00 00 00 00 40 00 00 20 41 } - 63 0x000e: (StorageRaw) { + Orphan[61] 0x000e: (StorageRaw) { Size: 19 String: 6.............@.... Hex: 36 00 07 00 00 00 02 00 92 00 00 00 00 00 40 00 00 80 bf } - 64 0x000e: (StorageRaw) { + Orphan[62] 0x000e: (StorageRaw) { Size: 19 String: T.............@.... Hex: 54 00 07 00 00 00 02 00 92 00 00 00 00 00 40 00 00 80 bf } - 65 0x000e: (StorageRaw) { + Orphan[63] 0x000e: (StorageRaw) { Size: 19 String: K.............@...? Hex: 4b 00 07 00 00 00 02 00 92 00 00 00 00 00 40 00 00 80 3f } - 66 0x000e: (StorageRaw) { + Orphan[64] 0x000e: (StorageRaw) { Size: 19 String: L.............@.... Hex: 4c 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 67 0x000e: (StorageRaw) { + Orphan[65] 0x000e: (StorageRaw) { Size: 19 String: 7.............@...? Hex: 37 00 07 00 00 00 02 00 92 00 00 00 00 00 40 00 00 80 3f } - 68 0x000e: (StorageRaw) { + Orphan[66] 0x000e: (StorageRaw) { Size: 19 String: U.............@...? Hex: 55 00 07 00 00 00 02 00 92 00 00 00 00 00 40 00 00 80 3f } - 69 0x000e: (StorageRaw) { + Orphan[67] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 81 00 01 00 00 00 02 00 92 00 00 00 00 00 40 01 00 00 00 } - 70 0x000e: (StorageRaw) { + Orphan[68] 0x000e: (StorageRaw) { Size: 19 String: z.............@.... Hex: 7a 00 07 00 00 00 02 00 92 00 00 00 00 00 40 00 00 00 00 } - 71 0x000e: (StorageRaw) { + Orphan[69] 0x000e: (StorageRaw) { Size: 19 String: ..............@...= Hex: 0f 00 07 00 00 00 02 00 92 00 00 00 00 00 40 cd cc cc 3d } - 72 0x000e: (StorageRaw) { + Orphan[70] 0x000e: (StorageRaw) { Size: 19 String: W.............@...= Hex: 57 00 07 00 00 00 02 00 92 00 00 00 00 00 40 cd cc cc 3d } - 73 0x000e: (StorageRaw) { + Orphan[71] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 10 00 01 00 00 00 02 00 82 00 00 00 00 00 40 04 00 00 00 } - 74 0x000e: (StorageRaw) { + Orphan[72] 0x000e: (StorageRaw) { Size: 19 String: ..............@...? Hex: 11 00 00 00 00 00 02 00 92 00 00 00 00 00 40 00 00 80 3f } - 75 0x000e: (StorageRaw) { + Orphan[73] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 13 00 04 00 00 00 02 00 82 00 00 00 00 00 40 00 00 00 00 } - 76 0x000e: (StorageRaw) { + Orphan[74] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 14 00 04 00 00 00 02 00 82 00 00 00 00 00 40 00 00 00 00 } - 77 0x000e: (StorageRaw) { + Orphan[75] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 15 00 01 00 00 00 02 00 82 00 00 00 00 00 40 00 00 00 00 } - 78 0x000e: (StorageRaw) { + Orphan[76] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 16 00 00 00 00 00 02 00 92 00 00 00 00 00 40 00 00 00 00 } - 79 0x000e: (StorageRaw) { + Orphan[77] 0x000e: (StorageRaw) { Size: 19 String: B.............@.... Hex: 42 00 01 00 00 00 02 00 92 00 00 00 00 00 40 01 00 00 00 } - 80 0x000e: (StorageRaw) { + Orphan[78] 0x000e: (StorageRaw) { Size: 15 String: E.............@ Hex: 45 00 11 00 00 00 02 00 81 00 00 00 00 00 40 } - 81 0x000e: (StorageRaw) { + Orphan[79] 0x000e: (StorageRaw) { Size: 19 String: F.............@.... Hex: 46 00 01 00 00 00 02 00 92 00 00 00 00 00 40 06 00 00 00 } - 82 0x000e: (StorageRaw) { + Orphan[80] 0x000e: (StorageRaw) { Size: 19 String: G.............@.... Hex: 47 00 00 00 00 00 02 00 92 00 00 00 00 00 40 00 00 00 00 } - 83 0x000e: (StorageRaw) { + Orphan[81] 0x000e: (StorageRaw) { Size: 19 String: H.............@.... Hex: 48 00 00 00 00 00 02 00 92 00 00 00 00 00 40 00 00 00 00 } - 84 0x000e: (StorageRaw) { + Orphan[82] 0x000e: (StorageRaw) { Size: 19 String: I.............@.... Hex: 49 00 05 00 00 00 02 00 92 00 00 00 00 00 40 00 00 00 00 } - 85 0x000e: (StorageRaw) { + Orphan[83] 0x000e: (StorageRaw) { Size: 19 String: J.............@.... Hex: 4a 00 05 00 00 00 02 00 92 00 00 00 00 00 40 00 00 00 00 } - 86 0x000e: (StorageRaw) { + Orphan[84] 0x000e: (StorageRaw) { Size: 19 String: N.............@.... Hex: 4e 00 04 00 00 00 02 00 82 00 00 00 00 00 40 00 00 00 00 } - 87 0x000e: (StorageRaw) { + Orphan[85] 0x000e: (StorageRaw) { Size: 19 String: ?.............@...? Hex: 3f 00 05 00 00 00 02 00 92 00 00 00 00 00 40 92 0a 06 3f } - 88 0x000e: (StorageRaw) { + Orphan[86] 0x000e: (StorageRaw) { Size: 19 String: @.............@.... Hex: 40 00 13 00 00 00 02 00 82 00 00 00 00 00 40 ff ff ff ff } - 89 0x000e: (StorageRaw) { + Orphan[87] 0x000e: (StorageRaw) { Size: 19 String: A.............@.... Hex: 41 00 01 00 00 00 02 00 92 00 00 00 00 00 40 01 00 00 00 } - 90 0x000e: (StorageRaw) { + Orphan[88] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 80 00 01 00 00 00 02 00 82 00 00 00 00 00 40 00 00 00 00 } - 91 0x000e: (StorageRaw) { + Orphan[89] 0x000e: (StorageRaw) { Size: 19 String: _.............@.. A Hex: 5f 00 00 00 00 00 00 00 92 00 00 00 00 00 40 00 00 20 41 } - 92 0x000e: (StorageRaw) { + Orphan[90] 0x000e: (StorageRaw) { Size: 19 String: `.............@.. A Hex: 60 00 07 00 00 00 02 00 90 00 00 00 00 00 40 00 00 20 41 } - 93 0x000e: (StorageRaw) { + Orphan[91] 0x000e: (StorageRaw) { Size: 19 String: a.............@...? Hex: 61 00 00 00 00 00 02 00 90 00 00 00 00 00 40 00 00 80 3f } - 94 0x000e: (StorageRaw) { + Orphan[92] 0x000e: (StorageRaw) { Size: 19 String: b.............@.... Hex: 62 00 01 00 00 00 00 00 82 00 00 00 00 00 40 01 00 00 00 } - 95 0x000e: (StorageRaw) { + Orphan[93] 0x000e: (StorageRaw) { Size: 19 String: 8.............@.... Hex: 38 00 01 00 00 00 02 00 82 00 00 00 00 00 40 01 00 00 00 } - 96 0x000e: (StorageRaw) { + Orphan[94] 0x000e: (StorageRaw) { Size: 19 String: 9.............@.... Hex: 39 00 13 00 00 00 02 00 82 00 00 00 00 00 40 00 00 00 00 } - 97 0x000e: (StorageRaw) { + Orphan[95] 0x000e: (StorageRaw) { Size: 27 String: :.............@............ Hex: 3a 00 03 00 00 00 02 00 82 00 00 00 00 00 40 00 00 00 00 00 00 00 00 00 00 00 00 } - 98 0x000e: (StorageRaw) { + Orphan[96] 0x000e: (StorageRaw) { Size: 27 String: ;.............@............ Hex: 3b 00 03 00 00 00 02 00 82 00 00 00 00 00 40 00 00 00 00 00 00 00 00 00 00 00 00 } - 99 0x000e: (StorageRaw) { + Orphan[97] 0x000e: (StorageRaw) { Size: 27 String: <.............@............ Hex: 3c 00 03 00 00 00 02 00 82 00 00 00 00 00 40 00 00 00 00 00 00 00 00 00 00 00 00 } - 100 0x000e: (StorageRaw) { + Orphan[98] 0x000e: (StorageRaw) { Size: 19 String: e.............@.... Hex: 65 00 01 00 00 00 02 00 92 00 00 00 00 00 40 01 00 00 00 } - 101 0x000e: (StorageRaw) { + Orphan[99] 0x000e: (StorageRaw) { Size: 19 String: c.............@.... Hex: 63 00 00 00 00 00 02 00 92 00 00 00 00 00 40 00 00 00 00 } - 102 0x000e: (StorageRaw) { + Orphan[100] 0x000e: (StorageRaw) { Size: 19 String: d.............@.... Hex: 64 00 00 00 00 00 02 00 92 00 00 00 00 00 40 00 00 00 00 } - 103 0x000e: (StorageRaw) { + Orphan[101] 0x000e: (StorageRaw) { Size: 19 String: f.............@..I? Hex: 66 00 05 00 00 00 02 00 92 00 00 00 00 00 40 db 0f 49 3f } - 104 0x000e: (StorageRaw) { + Orphan[102] 0x000e: (StorageRaw) { Size: 19 String: k.............@.... Hex: 6b 00 01 00 00 00 00 00 92 00 00 00 00 00 40 01 00 00 00 } - 105 0x000e: (StorageRaw) { + Orphan[103] 0x000e: (StorageRaw) { Size: 19 String: i.............@.... Hex: 69 00 01 00 00 00 02 00 92 00 00 00 00 00 40 00 00 00 00 } - 106 0x000e: (StorageRaw) { + Orphan[104] 0x000e: (StorageRaw) { Size: 19 String: j.............@.... Hex: 6a 00 01 00 00 00 02 00 92 00 00 00 00 00 40 00 00 00 00 } - 107 0x000e: (StorageRaw) { + Orphan[105] 0x000e: (StorageRaw) { Size: 19 String: g.............@.... Hex: 67 00 01 00 00 00 02 00 82 00 00 00 00 00 40 00 00 00 00 } - 108 0x000e: (StorageRaw) { + Orphan[106] 0x000e: (StorageRaw) { Size: 19 String: h.............@.... Hex: 68 00 01 00 00 00 02 00 82 00 00 00 00 00 40 00 00 00 00 } - 109 0x000e: (StorageRaw) { + Orphan[107] 0x000e: (StorageRaw) { Size: 19 String: l.............@...? Hex: 6c 00 00 00 00 00 02 00 92 00 00 00 00 00 40 00 00 00 3f } - 110 0x000e: (StorageRaw) { + Orphan[108] 0x000e: (StorageRaw) { Size: 19 String: m.............@.... Hex: 6d 00 01 00 00 00 02 00 92 00 00 00 00 00 40 01 00 00 00 } - 111 0x000e: (StorageRaw) { + Orphan[109] 0x000e: (StorageRaw) { Size: 19 String: n.............@.... Hex: 6e 00 04 00 00 00 02 00 82 00 00 00 00 00 40 01 00 00 00 } - 112 0x000e: (StorageRaw) { + Orphan[110] 0x000e: (StorageRaw) { Size: 19 String: o.............@.... Hex: 6f 00 04 00 00 00 02 00 82 00 00 00 00 00 40 00 00 00 00 } - 113 0x000e: (StorageRaw) { + Orphan[111] 0x000e: (StorageRaw) { Size: 19 String: s.............@.... Hex: 73 00 04 00 00 00 02 00 82 00 00 00 00 00 40 00 00 00 00 } - 114 0x000e: (StorageRaw) { + Orphan[112] 0x000e: (StorageRaw) { Size: 19 String: t.............@.... Hex: 74 00 04 00 00 00 02 00 82 00 00 00 00 00 40 00 00 00 00 } - 115 0x000e: (StorageRaw) { + Orphan[113] 0x000e: (StorageRaw) { Size: 19 String: r..... .......@..I? Hex: 72 00 05 00 00 00 20 00 92 00 00 00 00 00 40 db 0f 49 3f } - 116 0x000e: (StorageRaw) { + Orphan[114] 0x000e: (StorageRaw) { Size: 19 String: u.............@.... Hex: 75 00 01 00 00 00 02 00 82 00 00 00 00 00 40 00 00 00 00 } - 117 0x000e: (StorageRaw) { + Orphan[115] 0x000e: (StorageRaw) { Size: 19 String: v.............@.... Hex: 76 00 01 00 00 00 02 00 92 00 00 00 00 00 40 00 00 00 00 } - 118 0x000e: (StorageRaw) { + Orphan[116] 0x000e: (StorageRaw) { Size: 19 String: w.............@.... Hex: 77 00 01 00 00 00 02 00 92 00 00 00 00 00 40 00 00 00 00 } - 119 0x000e: (StorageRaw) { + Orphan[117] 0x000e: (StorageRaw) { Size: 27 String: ..............@...?...?.... Hex: 7b 00 03 00 00 00 02 00 82 00 00 00 00 00 40 00 00 80 3f 97 96 16 3f 00 00 00 00 } - 120 0x000e: (StorageRaw) { + Orphan[118] 0x000e: (StorageRaw) { Size: 27 String: |.............@..r?..Y?.... Hex: 7c 00 03 00 00 00 02 00 82 00 00 00 00 00 40 f4 f2 72 3f db d9 59 3f 00 00 00 00 } - 121 0x000e: (StorageRaw) { + Orphan[119] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 82 00 01 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 122 0x000c: (StorageRaw) { + Orphan[120] 0x000c: (StorageRaw) { Size: 94 String: .............................................................................................. Hex: 0f 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 00 01 00 00 00 00 00 01 00 00 00 00 00 01 00 00 00 00 00 01 00 00 00 00 00 01 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 00 01 00 00 00 00 00 01 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 } } - 386 0x0017: (SceneClassUnknown: Master Point Controller, (0x0d9c20ff, 0x00000000), Builtin) [1] { - 0 0x2535: (StorageRaw) { + 386 0x0017: (MasterPointControllerSuperClassUnknown: Master Point Controller, (0x0d9c20ff, 0x00000000), 0x00009010, Builtin) [1] { + Orphan[0] 0x2535: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 387 0x0018: (SceneClassUnknown: Editable Poly, (0x1bf8338d, 0x192f6098), EPoly.dlo) [12] { - 0 0x2150: (AppData) [3] { - 0 0x0100: (CStorageValue) { 2 } - 1 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { - ClassId: (0x48a057d2, 0x44f70d8a) - SuperClassId: 2912 - SubId: 0 - Size: 1 } - 1 0x0130: (StorageRaw) { - Size: 1 - String: . - Hex: 00 } } - 2 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + 387 0x0018: (GeomObjectSuperClassUnknown: Editable Poly, (0x1bf8338d, 0x192f6098), 0x00000010, Editable Poly Object (Autodesk)) [9] { + AppData: (AppData) [2] PARSED { + Entries[0]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x1cef158c, 0x1da8486f) SuperClassId: 2912 SubId: 0 Size: 4 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 - Float: 0 } } } - 1 0x2034: (StorageRaw) { - Size: 8 - String: ........ - Hex: 81 01 00 00 82 01 00 00 } - 2 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 3 0x4039: (StorageContainer) [2] { + Float: 0 } } + Entries[1]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { + ClassId: (0x48a057d2, 0x44f70d8a) + SuperClassId: 2912 + SubId: 0 + Size: 1 } + Value: (StorageRaw) { + Size: 1 + String: . + Hex: 00 } } } + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) + 1: (Master Point Controller, (0x0d9c20ff, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x4039: (StorageContainer) [2] { 0 0x0000: (StorageRaw) { Size: 4 String: .... @@ -16420,21 +15466,21 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 4 0x403a: (StorageRaw) { + Orphan[1] 0x403a: (StorageRaw) { Size: 0 String: Hex: } - 5 0x4038: (StorageRaw) { + Orphan[2] 0x4038: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x0900: (StorageRaw) { + Orphan[3] 0x0900: (StorageRaw) { Size: 44 String: ............................................ Hex: 00 00 00 80 ff ff ff 7f 00 00 00 80 ff ff ff 7f 00 00 00 80 ff ff ff 7f 00 00 00 80 ff ff ff 7f 00 00 00 80 ff ff ff 7f ff ff ff ff } - 7 0x08fe: (StorageContainer) [13] { + Orphan[4] 0x08fe: (StorageContainer) [13] { 0 0x0150: (StorageRaw) { Size: 4 String: .... @@ -16501,7 +15547,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 0c 00 00 00 Int: 12 Float: 1.68156e-44 } } - 8 0x0906: (StorageContainer) [16] { + Orphan[5] 0x0906: (StorageContainer) [16] { 0 0x300d: (StorageRaw) { Size: 4 String: .... @@ -16598,976 +15644,973 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 9 0x0908: (StorageRaw) { + Orphan[6] 0x0908: (StorageRaw) { Size: 1 String: . Hex: 00 } - 10 0x090a: (StorageRaw) { + Orphan[7] 0x090a: (StorageRaw) { Size: 1 String: . Hex: 01 } - 11 0x090c: (StorageRaw) { + Orphan[8] 0x090c: (StorageRaw) { Size: 1 String: . Hex: 00 } } - 388 0x0019: (SceneClassUnknown: Base Layer, (0x7e9858fe, 0x1dba1df0), Builtin) [9] { - 0 0x1000: (StorageRaw) { + 388 0x0019: (LayerSuperClassUnknown: Base Layer, (0x7e9858fe, 0x1dba1df0), 0x000010f0, Builtin) [9] { + Orphan[0] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 1 0x1010: (StorageRaw) { + Orphan[1] 0x1010: (StorageRaw) { Size: 1 String: 0 Hex: 30 } - 2 0x1030: (StorageRaw) { + Orphan[2] 0x1030: (StorageRaw) { Size: 4 String: ..n. Hex: 8a 08 6e 00 Int: 7211146 Float: 1.0105e-38 } - 3 0x1020: (StorageRaw) { + Orphan[3] 0x1020: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 4 0x1040: (StorageRaw) { + Orphan[4] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x1050: (StorageRaw) { + Orphan[5] 0x1050: (StorageRaw) { Size: 4 String: .... Hex: 00 d6 00 0b Int: 184604160 Float: 2.48129e-32 } - 6 0x1060: (StorageRaw) { + Orphan[6] 0x1060: (StorageRaw) { Size: 9 String: ...?...?. Hex: 00 00 80 3f 00 00 80 3f 01 } - 7 0x1070: (StorageContainer) [1] { + Orphan[7] 0x1070: (StorageContainer) [1] { 0 0x0006: (StorageRaw) { Size: 21 String: .........?..........? Hex: 00 00 01 00 00 01 00 00 80 3f 00 01 01 01 01 00 00 00 00 80 3f } } - 8 0x1080: (StorageRaw) { + Orphan[8] 0x1080: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 389 0x001a: (SceneClassUnknown: Node, (0x00000001, 0x00000000), Builtin) [25] { - 0 0x2150: (AppData) [84] { - 0 0x0100: (CStorageValue) { 83 } - 1 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + 389 0x001a: (NodeImpl: Node, (0x00000001, 0x00000000), 0x00000001, Builtin) [22] { + AppData: (AppData) [83] PARSED { + Entries[0]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { + ClassId: (0x04d64858, 0x16d1751d) + SuperClassId: 4128 + SubId: 1970 + Size: 1 } + Value: (StorageRaw) { + Size: 1 + String: . + Hex: 00 } } + Entries[1]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { + ClassId: (0x04d64858, 0x16d1751d) + SuperClassId: 4128 + SubId: 41654685 + Size: 24 } + Value: (StorageRaw) { + Size: 24 + String: (Use NelLight Modifier). } } + Entries[2]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { + ClassId: (0x04d64858, 0x16d1751d) + SuperClassId: 4128 + SubId: 41654686 + Size: 2 } + Value: (StorageRaw) { + Size: 2 + String: 0. + Hex: 30 00 } } + Entries[3]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { + ClassId: (0x04d64858, 0x16d1751d) + SuperClassId: 4128 + SubId: 41654687 + Size: 2 } + Value: (StorageRaw) { + Size: 2 + String: 0. + Hex: 30 00 } } + Entries[4]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { + ClassId: (0x04d64858, 0x16d1751d) + SuperClassId: 4128 + SubId: 84682540 + Size: 13 } + Value: (StorageRaw) { + Size: 13 + String: no occlusion. } } + Entries[5]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { + ClassId: (0x04d64858, 0x16d1751d) + SuperClassId: 4128 + SubId: 84682541 + Size: 13 } + Value: (StorageRaw) { + Size: 13 + String: no occlusion. } } + Entries[6]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { + ClassId: (0x04d64858, 0x16d1751d) + SuperClassId: 4128 + SubId: 84682542 + Size: 9 } + Value: (StorageRaw) { + Size: 9 + String: no sound. } } + Entries[7]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { + ClassId: (0x04d64858, 0x16d1751d) + SuperClassId: 4128 + SubId: 84682543 + Size: 6 } + Value: (StorageRaw) { + Size: 6 + String: no fx. } } + Entries[8]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { + ClassId: (0x04d64858, 0x16d1751d) + SuperClassId: 4128 + SubId: 1266703978 + Size: 2 } + Value: (StorageRaw) { + Size: 2 + String: 0. + Hex: 30 00 } } + Entries[9]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { + ClassId: (0x04d64858, 0x16d1751d) + SuperClassId: 4128 + SubId: 1266703979 + Size: 2 } + Value: (StorageRaw) { + Size: 2 + String: 0. + Hex: 30 00 } } + Entries[10]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { + ClassId: (0x04d64858, 0x16d1751d) + SuperClassId: 4128 + SubId: 1423062537 + Size: 2 } + Value: (StorageRaw) { + Size: 2 + String: 0. + Hex: 30 00 } } + Entries[11]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062548 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 2 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[12]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062549 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 3 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[13]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062550 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 4 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[14]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062551 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 5 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[15]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062552 Size: 5 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 5 String: 1000. } } - 6 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[16]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062553 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 5. Hex: 35 00 } } - 7 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[17]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062554 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 8 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[18]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062555 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 1. Hex: 31 00 } } - 9 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[19]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062556 Size: 3 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 3 String: 11. Hex: 31 31 00 } } - 10 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[20]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062557 Size: 3 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 3 String: 20. Hex: 32 30 00 } } - 11 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[21]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062558 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 5. Hex: 35 00 } } - 12 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[22]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062559 Size: 3 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 3 String: 30. Hex: 33 30 00 } } - 13 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[23]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062560 Size: 4 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 4 String: 200. Hex: 32 30 30 00 Int: 3158066 Float: 4.42539e-39 } } - 14 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { - ClassId: (0x04d64858, 0x16d1751d) - SuperClassId: 4128 - SubId: 1423062615 - Size: 2 } - 1 0x0130: (StorageRaw) { - Size: 2 - String: 0. - Hex: 30 00 } } - 15 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[24]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062561 Size: 3 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 3 String: 32. Hex: 33 32 00 } } - 16 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { - ClassId: (0x04d64858, 0x16d1751d) - SuperClassId: 4128 - SubId: 84682540 - Size: 13 } - 1 0x0130: (StorageRaw) { - Size: 13 - String: no occlusion. } } - 17 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { - ClassId: (0x04d64858, 0x16d1751d) - SuperClassId: 4128 - SubId: 84682541 - Size: 13 } - 1 0x0130: (StorageRaw) { - Size: 13 - String: no occlusion. } } - 18 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { - ClassId: (0x04d64858, 0x16d1751d) - SuperClassId: 4128 - SubId: 84682542 - Size: 9 } - 1 0x0130: (StorageRaw) { - Size: 9 - String: no sound. } } - 19 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { - ClassId: (0x04d64858, 0x16d1751d) - SuperClassId: 4128 - SubId: 84682543 - Size: 6 } - 1 0x0130: (StorageRaw) { - Size: 6 - String: no fx. } } - 20 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { - ClassId: (0x04d64858, 0x16d1751d) - SuperClassId: 4128 - SubId: 1970 - Size: 1 } - 1 0x0130: (StorageRaw) { - Size: 1 - String: . - Hex: 00 } } - 21 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[25]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062562 Size: 1 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 1 String: . Hex: 00 } } - 22 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[26]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062563 Size: 2 } - 1 0x0130: (StorageRaw) { - Size: 2 - String: 0. - Hex: 30 00 } } - 23 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { - ClassId: (0x04d64858, 0x16d1751d) - SuperClassId: 4128 - SubId: 1423062617 - Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 24 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[27]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062564 Size: 1 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 1 String: . Hex: 00 } } - 25 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { - ClassId: (0x04d64858, 0x16d1751d) - SuperClassId: 4128 - SubId: 1423062701 - Size: 4 } - 1 0x0130: (StorageRaw) { - Size: 4 - String: 0.1. - Hex: 30 2e 31 00 - Int: 3223088 - Float: 4.51651e-39 } } - 26 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { - ClassId: (0x04d64858, 0x16d1751d) - SuperClassId: 4128 - SubId: 1423062702 - Size: 2 } - 1 0x0130: (StorageRaw) { - Size: 2 - String: 0. - Hex: 30 00 } } - 27 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { - ClassId: (0x04d64858, 0x16d1751d) - SuperClassId: 4128 - SubId: 41654687 - Size: 2 } - 1 0x0130: (StorageRaw) { - Size: 2 - String: 0. - Hex: 30 00 } } - 28 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[28]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062565 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 29 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[29]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062566 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 30 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { - ClassId: (0x04d64858, 0x16d1751d) - SuperClassId: 4128 - SubId: 1423062802 - Size: 2 } - 1 0x0130: (StorageRaw) { - Size: 2 - String: 0. - Hex: 30 00 } } - 31 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { - ClassId: (0x04d64858, 0x16d1751d) - SuperClassId: 4128 - SubId: 1423062587 - Size: 2 } - 1 0x0130: (StorageRaw) { - Size: 2 - String: 0. - Hex: 30 00 } } - 32 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { - ClassId: (0x04d64858, 0x16d1751d) - SuperClassId: 4128 - SubId: 1423062800 - Size: 2 } - 1 0x0130: (StorageRaw) { - Size: 2 - String: 0. - Hex: 30 00 } } - 33 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { - ClassId: (0x04d64858, 0x16d1751d) - SuperClassId: 4128 - SubId: 1423062801 - Size: 2 } - 1 0x0130: (StorageRaw) { - Size: 2 - String: 0. - Hex: 30 00 } } - 34 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { - ClassId: (0x04d64858, 0x16d1751d) - SuperClassId: 4128 - SubId: 2089254647 - Size: 1 } - 1 0x0130: (StorageRaw) { - Size: 1 - String: . - Hex: 00 } } - 35 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { - ClassId: (0x04d64858, 0x16d1751d) - SuperClassId: 4128 - SubId: 2089254648 - Size: 1 } - 1 0x0130: (StorageRaw) { - Size: 1 - String: . - Hex: 00 } } - 36 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { - ClassId: (0x04d64858, 0x16d1751d) - SuperClassId: 4128 - SubId: 2089254649 - Size: 1 } - 1 0x0130: (StorageRaw) { - Size: 1 - String: . - Hex: 00 } } - 37 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { - ClassId: (0x04d64858, 0x16d1751d) - SuperClassId: 4128 - SubId: 2089254650 - Size: 1 } - 1 0x0130: (StorageRaw) { - Size: 1 - String: . - Hex: 00 } } - 38 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[30]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062567 Size: 4 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 4 String: 1.0. Hex: 31 2e 30 00 Int: 3157553 Float: 4.42467e-39 } } - 39 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[31]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062568 Size: 4 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 4 String: 1.4. Hex: 31 2e 34 00 Int: 3419697 Float: 4.79202e-39 } } - 40 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[32]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062569 Size: 3 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 3 String: 15. Hex: 31 35 00 } } - 41 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[33]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062570 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 42 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[34]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062580 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 43 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[35]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062581 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 44 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[36]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062582 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 45 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[37]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062583 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 46 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[38]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062584 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 47 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[39]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062585 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 48 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[40]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062586 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 1. Hex: 31 00 } } - 49 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { - ClassId: (0x04d64858, 0x16d1751d) - SuperClassId: 4128 - SubId: 1423062616 - Size: 2 } - 1 0x0130: (StorageRaw) { - Size: 2 - String: 0. - Hex: 30 00 } } - 50 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { - ClassId: (0x04d64858, 0x16d1751d) - SuperClassId: 4128 - SubId: 1423062537 - Size: 2 } - 1 0x0130: (StorageRaw) { - Size: 2 - String: 0. - Hex: 30 00 } } - 51 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[41]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 - SubId: 1266703979 - Size: 2 } - 1 0x0130: (StorageRaw) { - Size: 2 - String: 0. - Hex: 30 00 } } - 52 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { - ClassId: (0x04d64858, 0x16d1751d) - SuperClassId: 4128 - SubId: 1266703978 + SubId: 1423062587 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 53 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[42]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 - SubId: 1423062611 + SubId: 1423062588 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 - String: 0. - Hex: 30 00 } } - 54 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + String: 1. + Hex: 31 00 } } + Entries[43]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 - SubId: 1423062612 + SubId: 1423062589 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 55 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[44]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 - SubId: 1423062588 + SubId: 1423062590 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 1. Hex: 31 00 } } - 56 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[45]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 - SubId: 1423062590 + SubId: 1423062591 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 - String: 1. - Hex: 31 00 } } - 57 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + String: 0. + Hex: 30 00 } } + Entries[46]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 - SubId: 41654686 + SubId: 1423062592 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 58 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[47]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 - SubId: 1423062591 + SubId: 1423062611 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 59 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[48]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 - SubId: 41654685 - Size: 24 } - 1 0x0130: (StorageRaw) { - Size: 24 - String: (Use NelLight Modifier). } } - 60 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { - ClassId: (0x04d64858, 0x16d1751d) - SuperClassId: 4128 - SubId: 1423062589 + SubId: 1423062612 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 61 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[49]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 - SubId: 1423062636 + SubId: 1423062613 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 62 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[50]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 - SubId: 1423062637 + SubId: 1423062614 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 63 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[51]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 - SubId: 1423062592 + SubId: 1423062615 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 64 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[52]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 - SubId: 1423062613 + SubId: 1423062616 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 65 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[53]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 - SubId: 1423062614 + SubId: 1423062617 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 66 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[54]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062618 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 67 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[55]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062619 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 68 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[56]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062620 Size: 1 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 1 String: . Hex: 00 } } - 69 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[57]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062631 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 70 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { - ClassId: (0x04d64858, 0x16d1751d) - SuperClassId: 4128 - SubId: 1423062634 - Size: 2 } - 1 0x0130: (StorageRaw) { - Size: 2 - String: 1. - Hex: 31 00 } } - 71 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[58]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062632 Size: 3 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 3 String: 16. Hex: 31 36 00 } } - 72 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[59]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062633 Size: 5 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 5 String: 0.02. } } - 73 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[60]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { + ClassId: (0x04d64858, 0x16d1751d) + SuperClassId: 4128 + SubId: 1423062634 + Size: 2 } + Value: (StorageRaw) { + Size: 2 + String: 1. + Hex: 31 00 } } + Entries[61]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062635 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 1. Hex: 31 00 } } - 74 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[62]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { + ClassId: (0x04d64858, 0x16d1751d) + SuperClassId: 4128 + SubId: 1423062636 + Size: 2 } + Value: (StorageRaw) { + Size: 2 + String: 0. + Hex: 30 00 } } + Entries[63]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { + ClassId: (0x04d64858, 0x16d1751d) + SuperClassId: 4128 + SubId: 1423062637 + Size: 2 } + Value: (StorageRaw) { + Size: 2 + String: 0. + Hex: 30 00 } } + Entries[64]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062638 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 75 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[65]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062639 Size: 10 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 10 String: 0 0 0 255. } } - 76 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[66]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 - SubId: 1423062655 - Size: 16 } - 1 0x0130: (StorageRaw) { - Size: 16 - String: 255 255 255 255. } } - 77 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + SubId: 1423062640 + Size: 10 } + Value: (StorageRaw) { + Size: 10 + String: 0 0 0 255. } } + Entries[67]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 - SubId: 1423062640 + SubId: 1423062641 Size: 10 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 10 String: 0 0 0 255. } } - 78 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[68]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 - SubId: 1423062656 + SubId: 1423062655 Size: 16 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 16 String: 255 255 255 255. } } - 79 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[69]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 - SubId: 1423062641 - Size: 10 } - 1 0x0130: (StorageRaw) { - Size: 10 - String: 0 0 0 255. } } - 80 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + SubId: 1423062656 + Size: 16 } + Value: (StorageRaw) { + Size: 16 + String: 255 255 255 255. } } + Entries[70]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062657 Size: 16 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 16 String: 255 255 255 255. } } - 81 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[71]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062671 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 82 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[72]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x04d64858, 0x16d1751d) SuperClassId: 4128 SubId: 1423062672 Size: 2 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { + Size: 2 + String: 0. + Hex: 30 00 } } + Entries[73]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { + ClassId: (0x04d64858, 0x16d1751d) + SuperClassId: 4128 + SubId: 1423062701 + Size: 4 } + Value: (StorageRaw) { + Size: 4 + String: 0.1. + Hex: 30 2e 31 00 + Int: 3223088 + Float: 4.51651e-39 } } + Entries[74]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { + ClassId: (0x04d64858, 0x16d1751d) + SuperClassId: 4128 + SubId: 1423062702 + Size: 2 } + Value: (StorageRaw) { + Size: 2 + String: 0. + Hex: 30 00 } } + Entries[75]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { + ClassId: (0x04d64858, 0x16d1751d) + SuperClassId: 4128 + SubId: 1423062800 + Size: 2 } + Value: (StorageRaw) { + Size: 2 + String: 0. + Hex: 30 00 } } + Entries[76]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { + ClassId: (0x04d64858, 0x16d1751d) + SuperClassId: 4128 + SubId: 1423062801 + Size: 2 } + Value: (StorageRaw) { + Size: 2 + String: 0. + Hex: 30 00 } } + Entries[77]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { + ClassId: (0x04d64858, 0x16d1751d) + SuperClassId: 4128 + SubId: 1423062802 + Size: 2 } + Value: (StorageRaw) { Size: 2 String: 0. Hex: 30 00 } } - 83 0x0110: (AppDataEntry) [2] { - 0 0x0120: (AppDataEntryKey) { + Entries[78]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { + ClassId: (0x04d64858, 0x16d1751d) + SuperClassId: 4128 + SubId: 2089254647 + Size: 1 } + Value: (StorageRaw) { + Size: 1 + String: . + Hex: 00 } } + Entries[79]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { + ClassId: (0x04d64858, 0x16d1751d) + SuperClassId: 4128 + SubId: 2089254648 + Size: 1 } + Value: (StorageRaw) { + Size: 1 + String: . + Hex: 00 } } + Entries[80]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { + ClassId: (0x04d64858, 0x16d1751d) + SuperClassId: 4128 + SubId: 2089254649 + Size: 1 } + Value: (StorageRaw) { + Size: 1 + String: . + Hex: 00 } } + Entries[81]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { + ClassId: (0x04d64858, 0x16d1751d) + SuperClassId: 4128 + SubId: 2089254650 + Size: 1 } + Value: (StorageRaw) { + Size: 1 + String: . + Hex: 00 } } + Entries[82]: (AppDataEntry) [2] PARSED { + Key: (AppDataEntryKey) { ClassId: (0x7fd53834, 0x3b8525b5) SuperClassId: 1 SubId: 0 Size: 16 } - 1 0x0130: (StorageRaw) { + Value: (StorageRaw) { Size: 16 String: ..|r...=...>..@? Hex: 01 86 7c 72 cd cc cc 3d 9a 99 99 3e 00 00 40 3f } } } - 1 0x2035: (StorageRaw) { - Size: 36 - String: .................................... - Hex: 10 00 00 00 00 00 00 00 80 01 00 00 01 00 00 00 83 01 00 00 03 00 00 00 86 00 00 00 06 00 00 00 84 01 00 00 } - 2 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 3 0x09ce: (StorageRaw) { + References 0x2035: PARSED { + 0: (Position/Rotation/Scale, (0x00002005, 0x00000000)) + 1: (Editable Poly, (0x1bf8338d, 0x192f6098)) + 3: (NeL Material, (0x64c75fec, 0x222b9eb9)) + 6: (Base Layer, (0x7e9858fe, 0x1dba1df0)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x09ce: (StorageRaw) { Size: 4 String: .... Hex: bc 02 00 00 Int: 700 Float: 9.80909e-43 } - 4 0x0960: (StorageRaw) { + Orphan[1] 0x0960: (StorageRaw) { Size: 8 String: |....... Hex: 7c 01 00 00 00 08 00 00 } - 5 0x0962: (StorageRaw) { + Orphan[2] 0x0962: (StorageRaw) { Size: 40 String: G.E._.A.c.c._.M.i.k.o.t.o.B.a.n.i.e.r.e. } - 6 0x09ba: (StorageRaw) { + Orphan[3] 0x09ba: (StorageRaw) { Size: 0 String: Hex: } - 7 0x0963: (StorageRaw) { + Orphan[4] 0x0963: (StorageRaw) { Size: 8 String: ........ Hex: 10 00 00 00 10 00 00 00 } - 8 0x096a: (StorageRaw) { + Orphan[5] 0x096a: (StorageRaw) { Size: 12 String: .*@2.*... .. Hex: b2 2a 40 32 b0 2a c0 be 05 20 d0 b3 } - 9 0x096b: (StorageRaw) { + Orphan[6] 0x096b: (StorageRaw) { Size: 16 String: ..5?..52..5...5? Hex: f1 04 35 3f f1 04 35 32 f6 04 35 b2 f4 04 35 3f } - 10 0x096c: (StorageRaw) { + Orphan[7] 0x096c: (StorageRaw) { Size: 28 String: ...?...?...?...............? Hex: 00 00 80 3f 00 00 80 3f 00 00 80 3f 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3f } - 11 0x0974: (StorageRaw) { + Orphan[8] 0x0974: (StorageRaw) { Size: 4 String: .... Hex: e4 d6 99 00 Int: 10082020 Float: 1.41279e-38 } - 12 0x099c: (StorageRaw) { + Orphan[9] 0x099c: (StorageRaw) { Size: 4 String: .... Hex: 00 d6 00 0b Int: 184604160 Float: 2.48129e-32 } - 13 0x0a28: (StorageRaw) { + Orphan[10] 0x0a28: (StorageRaw) { Size: 8 String: ........ } - 14 0x0a32: (StorageRaw) { + Orphan[11] 0x0a32: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 15 0x0abe: (StorageRaw) { + Orphan[12] 0x0abe: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 16 0x0ac3: (StorageRaw) { + Orphan[13] 0x0ac3: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 17 0x0ad2: (StorageContainer) [1] { + Orphan[14] 0x0ad2: (StorageContainer) [1] { 0 0x0006: (StorageRaw) { Size: 21 String: .........?..........? Hex: 00 00 01 00 00 01 00 00 80 3f 00 01 01 01 01 00 00 00 00 80 3f } } - 18 0x0b22: (StorageContainer) [10] { + Orphan[15] 0x0b22: (StorageContainer) [10] { 0 0x0100: (StorageRaw) { Size: 4 String: .... @@ -17616,7 +16659,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 1 String: . Hex: 00 } } - 19 0x0adc: (StorageContainer) [2] { + Orphan[16] 0x0adc: (StorageContainer) [2] { 0 0x0001: (StorageRaw) { Size: 2 String: .. @@ -17625,7 +16668,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 1 String: . Hex: 01 } } - 20 0x0af0: (StorageContainer) [8] { + Orphan[17] 0x0af0: (StorageContainer) [8] { 0 0x0001: (StorageRaw) { Size: 4 String: .... @@ -17672,7 +16715,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 21 0x0b0e: (StorageContainer) [1] { + Orphan[18] 0x0b0e: (StorageContainer) [1] { 0 0x0001: (StorageContainer) [24] { 0 0x0002: (StorageRaw) { Size: 4 @@ -17814,11 +16857,11 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 22 0x0b4a: (StorageRaw) { + Orphan[19] 0x0b4a: (StorageRaw) { Size: 1 String: . Hex: 00 } - 23 0x0b54: (StorageContainer) [1] { + Orphan[20] 0x0b54: (StorageContainer) [1] { 0 0x0001: (StorageContainer) [1] { 0 0x0002: (StorageRaw) { Size: 4 @@ -17826,7 +16869,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 24 0x0b5e: (StorageContainer) [1] { + Orphan[21] 0x0b5e: (StorageContainer) [1] { 0 0x0001: (StorageContainer) [1] { 0 0x0005: (StorageRaw) { Size: 4 @@ -17834,776 +16877,716 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } } } } - 390 0x001b: (SceneClassUnknown: Area, (0x77912301, 0x00000000), kernel.dlk) [1] { - 0 0x39bf: (StorageContainer) [1] { + 390 0x001b: (FilterKernelSuperClassUnknown: Area, (0x77912301, 0x00000000), 0x000010a0, Standard Pre-Filter Kernels (Autodesk)) [1] { + Orphan[0] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 0 String: Hex: } } } - 391 0x001c: (SceneClassUnknown: Default Scanline Renderer, (0x00000001, 0x00000000), rend.dlr) [20] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: 86 01 00 00 - Int: 390 - Float: 5.46506e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0002: (StorageRaw) { + 391 0x001c: (RendererSuperClassUnknown: Default Scanline Renderer, (0x00000001, 0x00000000), 0x00000f00, Default Scanline Renderer (Autodesk)) [18] { + References 0x2034: PARSED { + 0: (Area, (0x77912301, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0002: (StorageRaw) { Size: 0 String: Hex: } - 3 0x0020: (StorageRaw) { + Orphan[1] 0x0020: (StorageRaw) { Size: 0 String: Hex: } - 4 0x0072: (StorageRaw) { + Orphan[2] 0x0072: (StorageRaw) { Size: 0 String: Hex: } - 5 0x1000: (StorageRaw) { + Orphan[3] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 6 0x0007: (StorageRaw) { + Orphan[4] 0x0007: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 80 3f Int: 1065353216 Float: 1 } - 7 0x0008: (StorageRaw) { + Orphan[5] 0x0008: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 80 3f Int: 1065353216 Float: 1 } - 8 0x0009: (StorageRaw) { + Orphan[6] 0x0009: (StorageRaw) { Size: 4 String: .... Hex: 0a 00 00 00 Int: 10 Float: 1.4013e-44 } - 9 0x000a: (StorageRaw) { + Orphan[7] 0x000a: (StorageRaw) { Size: 4 String: .... Hex: 0a 00 00 00 Int: 10 Float: 1.4013e-44 } - 10 0x000b: (StorageRaw) { + Orphan[8] 0x000b: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } - 11 0x0030: (StorageRaw) { + Orphan[9] 0x0030: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } - 12 0x000d: (StorageRaw) { + Orphan[10] 0x000d: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 13 0x0060: (StorageRaw) { + Orphan[11] 0x0060: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 80 3f Int: 1065353216 Float: 1 } - 14 0x0077: (StorageRaw) { + Orphan[12] 0x0077: (StorageRaw) { Size: 8 String: .2w%.... Hex: 11 32 77 25 00 00 00 00 } - 15 0x0074: (StorageRaw) { + Orphan[13] 0x0074: (StorageRaw) { Size: 0 String: Hex: } - 16 0x0075: (StorageRaw) { + Orphan[14] 0x0075: (StorageRaw) { Size: 0 String: Hex: } - 17 0x0071: (StorageRaw) { + Orphan[15] 0x0071: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } - 18 0x0076: (StorageRaw) { + Orphan[16] 0x0076: (StorageRaw) { Size: 4 String: ...= Hex: cd cc cc 3d Int: 1036831949 Float: 0.1 } - 19 0x0080: (StorageRaw) { + Orphan[17] 0x0080: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 392 0x001b: (SceneClassUnknown: Area, (0x77912301, 0x00000000), kernel.dlk) [1] { - 0 0x39bf: (StorageContainer) [1] { + 392 0x001b: (FilterKernelSuperClassUnknown: Area, (0x77912301, 0x00000000), 0x000010a0, Standard Pre-Filter Kernels (Autodesk)) [1] { + Orphan[0] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 0 String: Hex: } } } - 393 0x001c: (SceneClassUnknown: Default Scanline Renderer, (0x00000001, 0x00000000), rend.dlr) [20] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: 88 01 00 00 - Int: 392 - Float: 5.49309e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0002: (StorageRaw) { + 393 0x001c: (RendererSuperClassUnknown: Default Scanline Renderer, (0x00000001, 0x00000000), 0x00000f00, Default Scanline Renderer (Autodesk)) [18] { + References 0x2034: PARSED { + 0: (Area, (0x77912301, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0002: (StorageRaw) { Size: 0 String: Hex: } - 3 0x0020: (StorageRaw) { + Orphan[1] 0x0020: (StorageRaw) { Size: 0 String: Hex: } - 4 0x0072: (StorageRaw) { + Orphan[2] 0x0072: (StorageRaw) { Size: 0 String: Hex: } - 5 0x1000: (StorageRaw) { + Orphan[3] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 6 0x0007: (StorageRaw) { + Orphan[4] 0x0007: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 80 3f Int: 1065353216 Float: 1 } - 7 0x0008: (StorageRaw) { + Orphan[5] 0x0008: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 80 3f Int: 1065353216 Float: 1 } - 8 0x0009: (StorageRaw) { + Orphan[6] 0x0009: (StorageRaw) { Size: 4 String: .... Hex: 0a 00 00 00 Int: 10 Float: 1.4013e-44 } - 9 0x000a: (StorageRaw) { + Orphan[7] 0x000a: (StorageRaw) { Size: 4 String: .... Hex: 0a 00 00 00 Int: 10 Float: 1.4013e-44 } - 10 0x000b: (StorageRaw) { + Orphan[8] 0x000b: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } - 11 0x0030: (StorageRaw) { + Orphan[9] 0x0030: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } - 12 0x000d: (StorageRaw) { + Orphan[10] 0x000d: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 13 0x0060: (StorageRaw) { + Orphan[11] 0x0060: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 c0 3f Int: 1069547520 Float: 1.5 } - 14 0x0077: (StorageRaw) { + Orphan[12] 0x0077: (StorageRaw) { Size: 8 String: .2w%.... Hex: 11 32 77 25 00 00 00 00 } - 15 0x0074: (StorageRaw) { + Orphan[13] 0x0074: (StorageRaw) { Size: 0 String: Hex: } - 16 0x0075: (StorageRaw) { + Orphan[14] 0x0075: (StorageRaw) { Size: 0 String: Hex: } - 17 0x0071: (StorageRaw) { + Orphan[15] 0x0071: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } - 18 0x0076: (StorageRaw) { + Orphan[16] 0x0076: (StorageRaw) { Size: 4 String: ...= Hex: cd cc cc 3d Int: 1036831949 Float: 0.1 } - 19 0x0080: (StorageRaw) { + Orphan[17] 0x0080: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 394 0x001b: (SceneClassUnknown: Area, (0x77912301, 0x00000000), kernel.dlk) [1] { - 0 0x39bf: (StorageContainer) [1] { + 394 0x001b: (FilterKernelSuperClassUnknown: Area, (0x77912301, 0x00000000), 0x000010a0, Standard Pre-Filter Kernels (Autodesk)) [1] { + Orphan[0] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 0 String: Hex: } } } - 395 0x001c: (SceneClassUnknown: Default Scanline Renderer, (0x00000001, 0x00000000), rend.dlr) [20] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: 8a 01 00 00 - Int: 394 - Float: 5.52112e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0002: (StorageRaw) { + 395 0x001c: (RendererSuperClassUnknown: Default Scanline Renderer, (0x00000001, 0x00000000), 0x00000f00, Default Scanline Renderer (Autodesk)) [18] { + References 0x2034: PARSED { + 0: (Area, (0x77912301, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0002: (StorageRaw) { Size: 0 String: Hex: } - 3 0x0020: (StorageRaw) { + Orphan[1] 0x0020: (StorageRaw) { Size: 0 String: Hex: } - 4 0x0072: (StorageRaw) { + Orphan[2] 0x0072: (StorageRaw) { Size: 0 String: Hex: } - 5 0x1000: (StorageRaw) { + Orphan[3] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 6 0x0007: (StorageRaw) { + Orphan[4] 0x0007: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 80 3f Int: 1065353216 Float: 1 } - 7 0x0008: (StorageRaw) { + Orphan[5] 0x0008: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 80 3f Int: 1065353216 Float: 1 } - 8 0x0009: (StorageRaw) { + Orphan[6] 0x0009: (StorageRaw) { Size: 4 String: .... Hex: 0a 00 00 00 Int: 10 Float: 1.4013e-44 } - 9 0x000a: (StorageRaw) { + Orphan[7] 0x000a: (StorageRaw) { Size: 4 String: .... Hex: 0a 00 00 00 Int: 10 Float: 1.4013e-44 } - 10 0x000b: (StorageRaw) { + Orphan[8] 0x000b: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } - 11 0x0030: (StorageRaw) { + Orphan[9] 0x0030: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } - 12 0x000d: (StorageRaw) { + Orphan[10] 0x000d: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 13 0x0060: (StorageRaw) { + Orphan[11] 0x0060: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 c0 3f Int: 1069547520 Float: 1.5 } - 14 0x0077: (StorageRaw) { + Orphan[12] 0x0077: (StorageRaw) { Size: 8 String: .2w%.... Hex: 11 32 77 25 00 00 00 00 } - 15 0x0074: (StorageRaw) { + Orphan[13] 0x0074: (StorageRaw) { Size: 0 String: Hex: } - 16 0x0075: (StorageRaw) { + Orphan[14] 0x0075: (StorageRaw) { Size: 0 String: Hex: } - 17 0x0071: (StorageRaw) { + Orphan[15] 0x0071: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } - 18 0x0076: (StorageRaw) { + Orphan[16] 0x0076: (StorageRaw) { Size: 4 String: ...= Hex: cd cc cc 3d Int: 1036831949 Float: 0.1 } - 19 0x0080: (StorageRaw) { + Orphan[17] 0x0080: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 396 0x001d: (SceneClassUnknown: RenderElementMgr, (0x46576167, 0x06546546), Builtin) [8] { - 0 0x1200: (StorageRaw) { + 396 0x001d: (ReferenceTargetUnknown: RenderElementMgr, (0x46576167, 0x06546546), 0x00000200, Builtin) [8] { + Orphan[0] 0x1200: (StorageRaw) { Size: 1 String: . Hex: 01 } - 1 0x1210: (StorageRaw) { + Orphan[1] 0x1210: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 2 0x1240: (StorageRaw) { + Orphan[2] 0x1240: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x1220: (StorageRaw) { + Orphan[3] 0x1220: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 4 0x1230: (StorageRaw) { + Orphan[4] 0x1230: (StorageRaw) { Size: 20 String: d...7...%...Z....... Hex: 64 00 00 00 37 00 00 00 25 00 00 00 5a 00 00 00 f4 01 00 00 } - 5 0x1240: (StorageRaw) { + Orphan[5] 0x1240: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x1250: (StorageRaw) { + Orphan[6] 0x1250: (StorageRaw) { Size: 1 String: . Hex: 01 } - 7 0x1260: (StorageRaw) { + Orphan[7] 0x1260: (StorageRaw) { Size: 1 String: . Hex: 00 } } - 397 0x001d: (SceneClassUnknown: RenderElementMgr, (0x46576167, 0x06546546), Builtin) [8] { - 0 0x1200: (StorageRaw) { + 397 0x001d: (ReferenceTargetUnknown: RenderElementMgr, (0x46576167, 0x06546546), 0x00000200, Builtin) [8] { + Orphan[0] 0x1200: (StorageRaw) { Size: 1 String: . Hex: 01 } - 1 0x1210: (StorageRaw) { + Orphan[1] 0x1210: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 2 0x1240: (StorageRaw) { + Orphan[2] 0x1240: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 3 0x1220: (StorageRaw) { + Orphan[3] 0x1220: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 4 0x1230: (StorageRaw) { + Orphan[4] 0x1230: (StorageRaw) { Size: 20 String: d...7...%...Z....... Hex: 64 00 00 00 37 00 00 00 25 00 00 00 5a 00 00 00 f4 01 00 00 } - 5 0x1240: (StorageRaw) { + Orphan[5] 0x1240: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 6 0x1250: (StorageRaw) { + Orphan[6] 0x1250: (StorageRaw) { Size: 1 String: . Hex: 01 } - 7 0x1260: (StorageRaw) { + Orphan[7] 0x1260: (StorageRaw) { Size: 1 String: . Hex: 00 } } - 398 0x001e: (SceneClassUnknown: Bezier Color, (0x00002011, 0x00000000), Builtin) [11] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: .... - Hex: 02 00 00 00 - Int: 2 - Float: 2.8026e-45 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x2501: (StorageRaw) { + 398 0x001e: (ControlPoint3SuperClassUnknown: Bezier Color, (0x00002011, 0x00000000), 0x00009005, Builtin) [9] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x2501: (StorageRaw) { Size: 12 String: ............ } - 3 0x2500: (StorageRaw) { + Orphan[1] 0x2500: (StorageRaw) { Size: 8 String: ........ } - 4 0x3002: (StorageRaw) { + Orphan[2] 0x3002: (StorageRaw) { Size: 4 String: ... Hex: 20 00 00 00 Int: 32 Float: 4.48416e-44 } - 5 0x3003: (StorageRaw) { + Orphan[3] 0x3003: (StorageRaw) { Size: 8 String: ........ Hex: 00 00 00 80 00 00 00 80 } - 6 0x2532: (StorageRaw) { + Orphan[4] 0x2532: (StorageRaw) { Size: 0 String: Hex: } - 7 0x2533: (StorageRaw) { + Orphan[5] 0x2533: (StorageRaw) { Size: 0 String: Hex: } - 8 0x2534: (StorageRaw) { + Orphan[6] 0x2534: (StorageRaw) { Size: 0 String: Hex: } - 9 0x3005: (StorageRaw) { + Orphan[7] 0x3005: (StorageRaw) { Size: 4 String: .... Hex: 86 01 00 00 Int: 390 Float: 5.46506e-43 } - 10 0x2535: (StorageRaw) { + Orphan[8] 0x2535: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 399 0x001e: (SceneClassUnknown: Bezier Color, (0x00002011, 0x00000000), Builtin) [11] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: .... - Hex: 02 00 00 00 - Int: 2 - Float: 2.8026e-45 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x2501: (StorageRaw) { + 399 0x001e: (ControlPoint3SuperClassUnknown: Bezier Color, (0x00002011, 0x00000000), 0x00009005, Builtin) [9] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x2501: (StorageRaw) { Size: 12 String: ............ } - 3 0x2500: (StorageRaw) { + Orphan[1] 0x2500: (StorageRaw) { Size: 8 String: ........ } - 4 0x3002: (StorageRaw) { + Orphan[2] 0x3002: (StorageRaw) { Size: 4 String: ... Hex: 20 00 00 00 Int: 32 Float: 4.48416e-44 } - 5 0x3003: (StorageRaw) { + Orphan[3] 0x3003: (StorageRaw) { Size: 8 String: ........ Hex: 00 00 00 80 00 00 00 80 } - 6 0x2532: (StorageRaw) { + Orphan[4] 0x2532: (StorageRaw) { Size: 0 String: Hex: } - 7 0x2533: (StorageRaw) { + Orphan[5] 0x2533: (StorageRaw) { Size: 0 String: Hex: } - 8 0x2534: (StorageRaw) { + Orphan[6] 0x2534: (StorageRaw) { Size: 0 String: Hex: } - 9 0x3005: (StorageRaw) { + Orphan[7] 0x3005: (StorageRaw) { Size: 4 String: .... Hex: 86 01 00 00 Int: 390 Float: 5.46506e-43 } - 10 0x2535: (StorageRaw) { + Orphan[8] 0x2535: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 400 0x001e: (SceneClassUnknown: Bezier Color, (0x00002011, 0x00000000), Builtin) [11] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: .... - Hex: 02 00 00 00 - Int: 2 - Float: 2.8026e-45 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x2501: (StorageRaw) { + 400 0x001e: (ControlPoint3SuperClassUnknown: Bezier Color, (0x00002011, 0x00000000), 0x00009005, Builtin) [9] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x2501: (StorageRaw) { Size: 12 String: ...?...?...? Hex: 00 00 80 3f 00 00 80 3f 00 00 80 3f } - 3 0x2500: (StorageRaw) { + Orphan[1] 0x2500: (StorageRaw) { Size: 8 String: ........ } - 4 0x3002: (StorageRaw) { + Orphan[2] 0x3002: (StorageRaw) { Size: 4 String: ... Hex: 20 00 00 00 Int: 32 Float: 4.48416e-44 } - 5 0x3003: (StorageRaw) { + Orphan[3] 0x3003: (StorageRaw) { Size: 8 String: ........ Hex: 00 00 00 80 00 00 00 80 } - 6 0x2532: (StorageRaw) { + Orphan[4] 0x2532: (StorageRaw) { Size: 0 String: Hex: } - 7 0x2533: (StorageRaw) { + Orphan[5] 0x2533: (StorageRaw) { Size: 0 String: Hex: } - 8 0x2534: (StorageRaw) { + Orphan[6] 0x2534: (StorageRaw) { Size: 0 String: Hex: } - 9 0x3005: (StorageRaw) { + Orphan[7] 0x3005: (StorageRaw) { Size: 4 String: .... Hex: 86 01 00 00 Int: 390 Float: 5.46506e-43 } - 10 0x2535: (StorageRaw) { + Orphan[8] 0x2535: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 401 0x0009: (SceneClassUnknown: Bezier Float, (0x00002007, 0x00000000), Builtin) [11] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: .... - Hex: 02 00 00 00 - Int: 2 - Float: 2.8026e-45 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x2501: (StorageRaw) { + 401 0x0009: (ControlFloatSuperClassUnknown: Bezier Float, (0x00002007, 0x00000000), 0x00009003, Builtin) [9] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x2501: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 80 3f Int: 1065353216 Float: 1 } - 3 0x2500: (StorageRaw) { + Orphan[1] 0x2500: (StorageRaw) { Size: 8 String: ........ } - 4 0x3002: (StorageRaw) { + Orphan[2] 0x3002: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x3003: (StorageRaw) { + Orphan[3] 0x3003: (StorageRaw) { Size: 8 String: ........ Hex: 00 00 00 80 00 00 00 80 } - 6 0x2532: (StorageRaw) { + Orphan[4] 0x2532: (StorageRaw) { Size: 0 String: Hex: } - 7 0x2533: (StorageRaw) { + Orphan[5] 0x2533: (StorageRaw) { Size: 0 String: Hex: } - 8 0x2534: (StorageRaw) { + Orphan[6] 0x2534: (StorageRaw) { Size: 0 String: Hex: } - 9 0x3005: (StorageRaw) { + Orphan[7] 0x3005: (StorageRaw) { Size: 4 String: .... Hex: 86 01 00 00 Int: 390 Float: 5.46506e-43 } - 10 0x2535: (StorageRaw) { + Orphan[8] 0x2535: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 402 0x001b: (SceneClassUnknown: Area, (0x77912301, 0x00000000), kernel.dlk) [1] { - 0 0x39bf: (StorageContainer) [1] { + 402 0x001b: (FilterKernelSuperClassUnknown: Area, (0x77912301, 0x00000000), 0x000010a0, Standard Pre-Filter Kernels (Autodesk)) [1] { + Orphan[0] 0x39bf: (StorageContainer) [1] { 0 0x0100: (StorageRaw) { Size: 0 String: Hex: } } } - 403 0x001c: (SceneClassUnknown: Default Scanline Renderer, (0x00000001, 0x00000000), rend.dlr) [20] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: 92 01 00 00 - Int: 402 - Float: 5.63322e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0002: (StorageRaw) { + 403 0x001c: (RendererSuperClassUnknown: Default Scanline Renderer, (0x00000001, 0x00000000), 0x00000f00, Default Scanline Renderer (Autodesk)) [18] { + References 0x2034: PARSED { + 0: (Area, (0x77912301, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0002: (StorageRaw) { Size: 0 String: Hex: } - 3 0x0020: (StorageRaw) { + Orphan[1] 0x0020: (StorageRaw) { Size: 0 String: Hex: } - 4 0x0072: (StorageRaw) { + Orphan[2] 0x0072: (StorageRaw) { Size: 0 String: Hex: } - 5 0x1000: (StorageRaw) { + Orphan[3] 0x1000: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 6 0x0007: (StorageRaw) { + Orphan[4] 0x0007: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 80 3f Int: 1065353216 Float: 1 } - 7 0x0008: (StorageRaw) { + Orphan[5] 0x0008: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 80 3f Int: 1065353216 Float: 1 } - 8 0x0009: (StorageRaw) { + Orphan[6] 0x0009: (StorageRaw) { Size: 4 String: .... Hex: 0a 00 00 00 Int: 10 Float: 1.4013e-44 } - 9 0x000a: (StorageRaw) { + Orphan[7] 0x000a: (StorageRaw) { Size: 4 String: .... Hex: 0a 00 00 00 Int: 10 Float: 1.4013e-44 } - 10 0x000b: (StorageRaw) { + Orphan[8] 0x000b: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } - 11 0x0030: (StorageRaw) { + Orphan[9] 0x0030: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } - 12 0x000d: (StorageRaw) { + Orphan[10] 0x000d: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 13 0x0060: (StorageRaw) { + Orphan[11] 0x0060: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 c0 3f Int: 1069547520 Float: 1.5 } - 14 0x0077: (StorageRaw) { + Orphan[12] 0x0077: (StorageRaw) { Size: 8 String: .2w%.... Hex: 11 32 77 25 00 00 00 00 } - 15 0x0074: (StorageRaw) { + Orphan[13] 0x0074: (StorageRaw) { Size: 0 String: Hex: } - 16 0x0075: (StorageRaw) { + Orphan[14] 0x0075: (StorageRaw) { Size: 0 String: Hex: } - 17 0x0071: (StorageRaw) { + Orphan[15] 0x0071: (StorageRaw) { Size: 4 String: ...? Hex: 00 00 00 3f Int: 1056964608 Float: 0.5 } - 18 0x0076: (StorageRaw) { + Orphan[16] 0x0076: (StorageRaw) { Size: 4 String: ...= Hex: cd cc cc 3d Int: 1036831949 Float: 0.1 } - 19 0x0080: (StorageRaw) { + Orphan[17] 0x0080: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 404 0x001f: (SceneClassUnknown: RenderEnvironment, (0xee448b23, 0x00000000), Builtin) [7] { - 0 0x2034: (StorageRaw) { - Size: 64 - String: ................................................................ - Hex: 87 01 00 00 89 01 00 00 8b 01 00 00 8c 01 00 00 8d 01 00 00 ff ff ff ff 8e 01 00 00 8f 01 00 00 90 01 00 00 91 01 00 00 ff ff ff ff ff ff ff ff 93 01 00 00 ff ff ff ff ff ff ff ff ff ff ff ff } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0100: (StorageRaw) { + 404 0x001f: (AtmosphericSuperClassUnknown: RenderEnvironment, (0xee448b23, 0x00000000), 0x00001010, Builtin) [5] { + References 0x2034: PARSED { + 0: (Default Scanline Renderer, (0x00000001, 0x00000000)) + 1: (Default Scanline Renderer, (0x00000001, 0x00000000)) + 2: (Default Scanline Renderer, (0x00000001, 0x00000000)) + 3: (RenderElementMgr, (0x46576167, 0x06546546)) + 4: (RenderElementMgr, (0x46576167, 0x06546546)) + 6: (Bezier Color, (0x00002011, 0x00000000)) + 7: (Bezier Color, (0x00002011, 0x00000000)) + 8: (Bezier Color, (0x00002011, 0x00000000)) + 9: (Bezier Float, (0x00002007, 0x00000000)) + 12: (Default Scanline Renderer, (0x00000001, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0100: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x2000: (StorageRaw) { + Orphan[1] 0x2000: (StorageRaw) { Size: 4 String: .... Hex: 0c 00 00 00 Int: 12 Float: 1.68156e-44 } - 4 0x0120: (StorageRaw) { + Orphan[2] 0x0120: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 5 0x0110: (StorageContainer) [5] { + Orphan[3] 0x0110: (StorageContainer) [5] { 0 0x2000: (StorageContainer) [41] { 0 0x0100: (StorageRaw) { Size: 4 @@ -19398,666 +18381,597 @@ Entries[56]: (ClassEntry) [2] PARSED { Size: 1 String: . Hex: 01 } } - 6 0x6010: (StorageRaw) { + Orphan[4] 0x6010: (StorageRaw) { Size: 12 String: .......@...@ Hex: 00 00 00 00 cd cc 0c 40 cd cc 0c 40 } } - 405 0x0020: (SceneClassUnknown: NamedSelSetList, (0x00008d52, 0x00000000), Builtin) [1] { - 0 0x0100: (StorageRaw) { + 405 0x0020: (ReferenceMakerUnknown: NamedSelSetList, (0x00008d52, 0x00000000), 0x00000100, Builtin) [1] { + Orphan[0] 0x0100: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 406 0x0021: (SceneClassUnknown: TVNode, (0x8d73b8aa, 0x90f2ee71), Builtin) [0] { } - 407 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [4] { - 0 0x0009: (StorageRaw) { + 406 0x0021: (ReferenceTargetUnknown: TVNode, (0x8d73b8aa, 0x90f2ee71), 0x00000200, Builtin) [0] { } + 407 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [4] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: "......!........ Hex: 22 00 00 00 00 00 00 21 e0 2e 02 00 98 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 00 00 00 08 00 00 89 10 92 00 00 00 00 00 80 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000c: (StorageRaw) { + Orphan[3] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 408 0x0022: (SceneClassUnknown: Float List, (0x4b4b1000, 0x00000000), ctrl.dlc) [5] { - 0 0x2034: (StorageRaw) { - Size: 12 - String: ............ - Hex: ff ff ff ff ff ff ff ff 97 01 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1010: (StorageRaw) { + 408 0x0022: (ControlFloatSuperClassUnknown: Float List, (0x4b4b1000, 0x00000000), 0x00009003, Standard Controllers (Autodesk)) [3] { + References 0x2034: PARSED { + 2: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1010: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x1020: (StorageRaw) { + Orphan[1] 0x1020: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 4 0x2535: (StorageRaw) { + Orphan[2] 0x2535: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 409 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [4] { - 0 0x0009: (StorageRaw) { + 409 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [4] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: #......!........ Hex: 23 00 00 00 00 00 00 21 e0 2e 02 00 9a 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 00 00 00 08 00 00 89 10 92 00 00 00 00 00 80 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000c: (StorageRaw) { + Orphan[3] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 410 0x0023: (SceneClassUnknown: Point3 List, (0x4b4b1001, 0x00000000), ctrl.dlc) [5] { - 0 0x2034: (StorageRaw) { - Size: 12 - String: ............ - Hex: ff ff ff ff ff ff ff ff 99 01 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1010: (StorageRaw) { + 410 0x0023: (ControlPoint3SuperClassUnknown: Point3 List, (0x4b4b1001, 0x00000000), 0x00009005, Standard Controllers (Autodesk)) [3] { + References 0x2034: PARSED { + 2: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1010: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x1020: (StorageRaw) { + Orphan[1] 0x1020: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 4 0x2535: (StorageRaw) { + Orphan[2] 0x2535: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 411 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [4] { - 0 0x0009: (StorageRaw) { + 411 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [4] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: $......!........ Hex: 24 00 00 00 00 00 00 21 e0 2e 02 00 9c 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 00 00 00 08 00 00 89 10 92 00 00 00 00 00 80 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000c: (StorageRaw) { + Orphan[3] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 412 0x0024: (SceneClassUnknown: Point4 List, (0x4b4b1005, 0x00000000), ctrl.dlc) [5] { - 0 0x2034: (StorageRaw) { - Size: 12 - String: ............ - Hex: ff ff ff ff ff ff ff ff 9b 01 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1010: (StorageRaw) { + 412 0x0024: (ControlPoint4SuperClassUnknown: Point4 List, (0x4b4b1005, 0x00000000), 0x00009012, Standard Controllers (Autodesk)) [3] { + References 0x2034: PARSED { + 2: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1010: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x1020: (StorageRaw) { + Orphan[1] 0x1020: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 4 0x2535: (StorageRaw) { + Orphan[2] 0x2535: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 413 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [4] { - 0 0x0009: (StorageRaw) { + 413 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [4] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: %......!........ Hex: 25 00 00 00 00 00 00 21 e0 2e 02 00 9e 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 00 00 00 08 00 00 89 10 92 00 00 00 00 00 80 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000c: (StorageRaw) { + Orphan[3] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 414 0x0025: (SceneClassUnknown: Position List, (0x4b4b1002, 0x00000000), ctrl.dlc) [5] { - 0 0x2034: (StorageRaw) { - Size: 12 - String: ............ - Hex: ff ff ff ff ff ff ff ff 9d 01 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1010: (StorageRaw) { + 414 0x0025: (ControlPositionSuperClassUnknown: Position List, (0x4b4b1002, 0x00000000), 0x0000900b, Standard Controllers (Autodesk)) [3] { + References 0x2034: PARSED { + 2: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1010: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x1020: (StorageRaw) { + Orphan[1] 0x1020: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 4 0x2535: (StorageRaw) { + Orphan[2] 0x2535: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 415 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [4] { - 0 0x0009: (StorageRaw) { + 415 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [4] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: &......!........ Hex: 26 00 00 00 00 00 00 21 e0 2e 02 00 a0 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 00 00 00 08 00 00 89 10 92 00 00 00 00 00 80 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000c: (StorageRaw) { + Orphan[3] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 416 0x0026: (SceneClassUnknown: Rotation List, (0x4b4b1003, 0x00000000), ctrl.dlc) [5] { - 0 0x2034: (StorageRaw) { - Size: 12 - String: ............ - Hex: ff ff ff ff ff ff ff ff 9f 01 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1010: (StorageRaw) { + 416 0x0026: (ControlRotationSuperClassUnknown: Rotation List, (0x4b4b1003, 0x00000000), 0x0000900c, Standard Controllers (Autodesk)) [3] { + References 0x2034: PARSED { + 2: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1010: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x1020: (StorageRaw) { + Orphan[1] 0x1020: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 4 0x2535: (StorageRaw) { + Orphan[2] 0x2535: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 417 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [4] { - 0 0x0009: (StorageRaw) { + 417 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [4] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: '......!........ Hex: 27 00 00 00 00 00 00 21 e0 2e 02 00 a2 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 00 00 00 08 00 00 89 10 92 00 00 00 00 00 80 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000c: (StorageRaw) { + Orphan[3] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 418 0x0027: (SceneClassUnknown: Scale List, (0x4b4b1004, 0x00000000), ctrl.dlc) [5] { - 0 0x2034: (StorageRaw) { - Size: 12 - String: ............ - Hex: ff ff ff ff ff ff ff ff a1 01 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1010: (StorageRaw) { + 418 0x0027: (ControlScaleSuperClassUnknown: Scale List, (0x4b4b1004, 0x00000000), 0x0000900d, Standard Controllers (Autodesk)) [3] { + References 0x2034: PARSED { + 2: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1010: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x1020: (StorageRaw) { + Orphan[1] 0x1020: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 4 0x2535: (StorageRaw) { + Orphan[2] 0x2535: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 419 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [4] { - 0 0x0009: (StorageRaw) { + 419 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [4] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: (......!........ Hex: 28 00 00 00 00 00 00 21 e0 2e 02 00 a4 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 00 00 00 08 00 00 89 10 92 00 00 00 00 00 80 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 01 00 04 00 00 00 00 00 82 00 00 00 00 00 40 00 00 00 00 } - 3 0x000c: (StorageRaw) { + Orphan[3] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 420 0x0028: (SceneClassUnknown: Block Control, (0x4b4b1015, 0x00000000), ctrl.dlc) [5] { - 0 0x2034: (StorageRaw) { - Size: 12 - String: ............ - Hex: ff ff ff ff ff ff ff ff a3 01 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1010: (StorageRaw) { + 420 0x0028: (ControlMasterBlockSuperClassUnknown: Block Control, (0x4b4b1015, 0x00000000), 0x00009011, Standard Controllers (Autodesk)) [3] { + References 0x2034: PARSED { + 2: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1010: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x1020: (StorageRaw) { + Orphan[1] 0x1020: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 4 0x2535: (StorageRaw) { + Orphan[2] 0x2535: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 421 0x0021: (SceneClassUnknown: TVNode, (0x8d73b8aa, 0x90f2ee71), Builtin) [23] { - 0 0x2034: (StorageRaw) { - Size: 28 - String: ............................ - Hex: 98 01 00 00 9a 01 00 00 9c 01 00 00 9e 01 00 00 a0 01 00 00 a2 01 00 00 a4 01 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0110: (StorageRaw) { + 421 0x0021: (ReferenceTargetUnknown: TVNode, (0x8d73b8aa, 0x90f2ee71), 0x00000200, Builtin) [21] { + References 0x2034: PARSED { + 0: (Float List, (0x4b4b1000, 0x00000000)) + 1: (Point3 List, (0x4b4b1001, 0x00000000)) + 2: (Point4 List, (0x4b4b1005, 0x00000000)) + 3: (Position List, (0x4b4b1002, 0x00000000)) + 4: (Rotation List, (0x4b4b1003, 0x00000000)) + 5: (Scale List, (0x4b4b1004, 0x00000000)) + 6: (Block Control, (0x4b4b1015, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0110: (StorageRaw) { Size: 10 String: F.l.o.a.t. } - 3 0x0120: (StorageRaw) { + Orphan[1] 0x0120: (StorageRaw) { Size: 8 String: ..KK.... Hex: 00 10 4b 4b 00 00 00 00 } - 4 0x0130: (StorageRaw) { + Orphan[2] 0x0130: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 5 0x0110: (StorageRaw) { + Orphan[3] 0x0110: (StorageRaw) { Size: 12 String: P.o.i.n.t.3. } - 6 0x0120: (StorageRaw) { + Orphan[4] 0x0120: (StorageRaw) { Size: 8 String: ..KK.... Hex: 01 10 4b 4b 00 00 00 00 } - 7 0x0130: (StorageRaw) { + Orphan[5] 0x0130: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 8 0x0110: (StorageRaw) { + Orphan[6] 0x0110: (StorageRaw) { Size: 12 String: P.o.i.n.t.4. } - 9 0x0120: (StorageRaw) { + Orphan[7] 0x0120: (StorageRaw) { Size: 8 String: ..KK.... Hex: 05 10 4b 4b 00 00 00 00 } - 10 0x0130: (StorageRaw) { + Orphan[8] 0x0130: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 11 0x0110: (StorageRaw) { + Orphan[9] 0x0110: (StorageRaw) { Size: 16 String: P.o.s.i.t.i.o.n. } - 12 0x0120: (StorageRaw) { + Orphan[10] 0x0120: (StorageRaw) { Size: 8 String: ..KK.... Hex: 02 10 4b 4b 00 00 00 00 } - 13 0x0130: (StorageRaw) { + Orphan[11] 0x0130: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 14 0x0110: (StorageRaw) { + Orphan[12] 0x0110: (StorageRaw) { Size: 16 String: R.o.t.a.t.i.o.n. } - 15 0x0120: (StorageRaw) { + Orphan[13] 0x0120: (StorageRaw) { Size: 8 String: ..KK.... Hex: 03 10 4b 4b 00 00 00 00 } - 16 0x0130: (StorageRaw) { + Orphan[14] 0x0130: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 17 0x0110: (StorageRaw) { + Orphan[15] 0x0110: (StorageRaw) { Size: 10 String: S.c.a.l.e. } - 18 0x0120: (StorageRaw) { + Orphan[16] 0x0120: (StorageRaw) { Size: 8 String: ..KK.... Hex: 04 10 4b 4b 00 00 00 00 } - 19 0x0130: (StorageRaw) { + Orphan[17] 0x0130: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 20 0x0110: (StorageRaw) { + Orphan[18] 0x0110: (StorageRaw) { Size: 26 String: B.l.o.c.k. .C.o.n.t.r.o.l. } - 21 0x0120: (StorageRaw) { + Orphan[19] 0x0120: (StorageRaw) { Size: 8 String: ..KK.... Hex: 15 10 4b 4b 00 00 00 00 } - 22 0x0130: (StorageRaw) { + Orphan[20] 0x0130: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 422 0x0029: (SceneClassUnknown: Block Manager Wrapper, (0x1f8c3646, 0x11793bed), AcadBlocks.dlu) [1] { - 0 0x0001: (StorageContainer) [1] { + 422 0x0029: (ControlFloatSuperClassUnknown: Block Manager Wrapper, (0x1f8c3646, 0x11793bed), 0x00009003, Block Manager Utility (Autodesk)) [1] { + Orphan[0] 0x0001: (StorageContainer) [1] { 0 0x0010: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 423 0x0021: (SceneClassUnknown: TVNode, (0x8d73b8aa, 0x90f2ee71), Builtin) [6] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: a6 01 00 00 - Int: 422 - Float: 5.91348e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0140: (StorageRaw) { + 423 0x0021: (ReferenceTargetUnknown: TVNode, (0x8d73b8aa, 0x90f2ee71), 0x00000200, Builtin) [4] { + References 0x2034: PARSED { + 0: (Block Manager Wrapper, (0x1f8c3646, 0x11793bed)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0140: (StorageRaw) { Size: 0 String: Hex: } - 3 0x0110: (StorageRaw) { + Orphan[1] 0x0110: (StorageRaw) { Size: 42 String: B.l.o.c.k. .M.a.n.a.g.e.r. .W.r.a.p.p.e.r. } - 4 0x0120: (StorageRaw) { + Orphan[2] 0x0120: (StorageRaw) { Size: 8 String: F6...;y. Hex: 46 36 8c 1f ed 3b 79 11 } - 5 0x0130: (StorageRaw) { + Orphan[3] 0x0130: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 424 0x002a: (SceneClassUnknown: Propagation Manager Wrapper, (0x5a1b661e, 0x7620792b), InstanceMgr.dlu) [1] { - 0 0x0001: (StorageContainer) [1] { + 424 0x002a: (ControlFloatSuperClassUnknown: Propagation Manager Wrapper, (0x5a1b661e, 0x7620792b), 0x00009003, Propagation Manager Utility (Autodesk)) [1] { + Orphan[0] 0x0001: (StorageContainer) [1] { 0 0x0010: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } } - 425 0x0021: (SceneClassUnknown: TVNode, (0x8d73b8aa, 0x90f2ee71), Builtin) [6] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: a8 01 00 00 - Int: 424 - Float: 5.94151e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0140: (StorageRaw) { + 425 0x0021: (ReferenceTargetUnknown: TVNode, (0x8d73b8aa, 0x90f2ee71), 0x00000200, Builtin) [4] { + References 0x2034: PARSED { + 0: (Propagation Manager Wrapper, (0x5a1b661e, 0x7620792b)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0140: (StorageRaw) { Size: 0 String: Hex: } - 3 0x0110: (StorageRaw) { + Orphan[1] 0x0110: (StorageRaw) { Size: 54 String: P.r.o.p.a.g.a.t.i.o.n. .M.a.n.a.g.e.r. .W.r.a.p.p.e.r. } - 4 0x0120: (StorageRaw) { + Orphan[2] 0x0120: (StorageRaw) { Size: 8 String: .f.Z+y v Hex: 1e 66 1b 5a 2b 79 20 76 } - 5 0x0130: (StorageRaw) { + Orphan[3] 0x0130: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 426 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [5] { - 0 0x0009: (StorageRaw) { + 426 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [5] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: +......!........ Hex: 2b 00 00 00 00 00 00 21 e0 2e 03 00 ab 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 00 00 0e 08 00 00 00 10 81 00 00 00 00 00 00 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 01 00 0e 08 00 00 00 10 81 00 00 00 00 00 00 00 00 00 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 0e 08 00 00 00 10 81 00 00 00 00 00 00 00 00 00 00 } - 4 0x000c: (StorageRaw) { + Orphan[4] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 427 0x002b: (SceneClassUnknown: Scene Effect Loader, (0x368d1139, 0xf4044794), SceneEffectLoader.dlu) [5] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: aa 01 00 00 - Int: 426 - Float: 5.96953e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0400: (StorageRaw) { + 427 0x002b: (ControlFloatSuperClassUnknown: Scene Effect Loader, (0x368d1139, 0xf4044794), 0x00009003, Scene Effect Manager (Autodesk)) [3] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0400: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x0410: (StorageRaw) { + Orphan[1] 0x0410: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 4 0x0420: (StorageRaw) { + Orphan[2] 0x0420: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 428 0x0021: (SceneClassUnknown: TVNode, (0x8d73b8aa, 0x90f2ee71), Builtin) [7] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: ab 01 00 00 - Int: 427 - Float: 5.98354e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0140: (StorageRaw) { + 428 0x0021: (ReferenceTargetUnknown: TVNode, (0x8d73b8aa, 0x90f2ee71), 0x00000200, Builtin) [5] { + References 0x2034: PARSED { + 0: (Scene Effect Loader, (0x368d1139, 0xf4044794)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0140: (StorageRaw) { Size: 0 String: Hex: } - 3 0x0150: (StorageRaw) { + Orphan[1] 0x0150: (StorageRaw) { Size: 0 String: Hex: } - 4 0x0110: (StorageRaw) { + Orphan[2] 0x0110: (StorageRaw) { Size: 38 String: S.c.e.n.e. .E.f.f.e.c.t. .L.o.a.d.e.r. } - 5 0x0120: (StorageRaw) { + Orphan[3] 0x0120: (StorageRaw) { Size: 8 String: 9..6.G.. Hex: 39 11 8d 36 94 47 04 f4 } - 6 0x0130: (StorageRaw) { + Orphan[4] 0x0130: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 429 0x002c: (SceneClassUnknown: Reaction Manager, (0x294a389c, 0x087906d7), reactor.dlc) [0] { } - 430 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [18] { - 0 0x000b: (StorageRaw) { + 429 0x002c: (ReferenceMakerUnknown: Reaction Manager, (0x294a389c, 0x087906d7), 0x00000100, Change Reaction Controller (Autodesk)) [0] { } + 430 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [18] { + Orphan[0] 0x000b: (StorageRaw) { Size: 24 String: 0.%(&#Z&`......!........ Hex: 30 0b 25 28 26 23 5a 26 60 11 00 00 00 00 00 21 e0 2e 10 00 af 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ..............@.... Hex: 00 00 01 00 00 00 00 80 82 00 00 00 00 00 40 00 00 00 00 } - 2 0x000e: (StorageRaw) { + Orphan[2] 0x000e: (StorageRaw) { Size: 38 String: ...................@....XX UNNAMED XX. Hex: 01 00 08 08 00 00 00 90 80 00 00 00 00 00 00 01 00 00 00 40 0e 00 00 00 58 58 20 55 4e 4e 41 4d 45 44 20 58 58 00 } - 3 0x000e: (StorageRaw) { + Orphan[3] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 02 00 08 08 00 00 00 90 80 00 00 00 00 00 00 00 00 00 00 } - 4 0x000e: (StorageRaw) { + Orphan[4] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 04 00 01 08 00 00 00 90 80 00 00 00 00 00 00 00 00 00 00 } - 5 0x000e: (StorageRaw) { + Orphan[5] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 03 00 01 08 00 00 00 90 80 00 00 00 00 00 00 00 00 00 00 } - 6 0x000e: (StorageRaw) { + Orphan[6] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0e 00 04 08 00 00 00 90 80 00 00 00 00 00 00 00 00 00 00 } - 7 0x000e: (StorageRaw) { + Orphan[7] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 07 00 12 08 00 00 00 93 81 08 00 00 00 00 00 00 00 00 00 } - 8 0x000e: (StorageRaw) { + Orphan[8] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 08 00 01 08 00 00 00 90 80 00 00 00 00 00 00 00 00 00 00 } - 9 0x000e: (StorageRaw) { + Orphan[9] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0a 00 01 08 00 00 00 90 80 00 00 00 00 00 00 00 00 00 00 } - 10 0x000e: (StorageRaw) { + Orphan[10] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 06 00 01 08 00 00 00 90 80 00 00 00 00 00 00 00 00 00 00 } - 11 0x000e: (StorageRaw) { + Orphan[11] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 05 00 01 08 00 00 00 90 80 00 00 00 00 00 00 00 00 00 00 } - 12 0x000e: (StorageRaw) { + Orphan[12] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 09 00 04 08 00 00 00 90 80 00 00 00 00 00 00 00 00 00 00 } - 13 0x000e: (StorageRaw) { + Orphan[13] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0b 00 08 08 00 00 00 90 80 00 00 00 00 00 00 00 00 00 00 } - 14 0x000e: (StorageRaw) { + Orphan[14] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0c 00 08 08 00 00 00 90 80 00 00 00 00 00 00 00 00 00 00 } - 15 0x000e: (StorageRaw) { + Orphan[15] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0d 00 08 08 00 00 00 90 80 00 00 00 00 00 00 00 00 00 00 } - 16 0x000e: (StorageRaw) { + Orphan[16] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 0f 00 04 08 00 00 00 90 82 00 00 00 00 00 00 00 00 00 00 } - 17 0x000c: (StorageRaw) { + Orphan[17] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 431 0x002d: (SceneClassUnknown: ParameterCollectorCA, (0x28250b30, 0x265a2326), ParamEditor.gup) [3] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: ae 01 00 00 - Int: 430 - Float: 6.02558e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0100: (StorageContainer) [2] { + 431 0x002d: (CustAttribSuperClassUnknown: ParameterCollectorCA, (0x28250b30, 0x265a2326), 0x00001160, ParameterEditor (Autodesk)) [1] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0100: (StorageContainer) [2] { 0 0x0110: (StorageRaw) { Size: 4 String: e... @@ -20070,489 +18984,418 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 432 0x0003: (SceneClassUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), CustAttribContainer.dlo) [4] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: af 01 00 00 - Int: 431 - Float: 6.0396e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1030: (StorageRaw) { + 432 0x0003: (ReferenceMakerUnknown: CustAttribContainer, (0x5ddb3626, 0x23b708db), 0x00000100, Custom Attribute Container (Autodesk)) [2] { + References 0x2034: PARSED { + 0: (ParameterCollectorCA, (0x28250b30, 0x265a2326)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1030: (StorageRaw) { Size: 4 String: .... Hex: b1 01 00 00 Int: 433 Float: 6.06762e-43 } - 3 0x1040: (StorageRaw) { + Orphan[1] 0x1040: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 433 0x0021: (SceneClassUnknown: TVNode, (0x8d73b8aa, 0x90f2ee71), Builtin) [3] { - 0 0x21b0: (StorageContainer) [1] { + 433 0x0021: (ReferenceTargetUnknown: TVNode, (0x8d73b8aa, 0x90f2ee71), 0x00000200, Builtin) [3] { + Orphan[0] 0x21b0: (StorageContainer) [1] { 0 0x1020: (StorageRaw) { Size: 4 String: .... Hex: b0 01 00 00 Int: 432 Float: 6.05361e-43 } } - 1 0x0140: (StorageRaw) { + Orphan[1] 0x0140: (StorageRaw) { Size: 0 String: Hex: } - 2 0x0150: (StorageRaw) { + Orphan[2] 0x0150: (StorageRaw) { Size: 0 String: Hex: } } - 434 0x002e: (SceneClassUnknown: , (0x4a0c66e1, 0x01513165), BitmapProxies.dlu) [7] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: ff ff ff ff - Int: -1 - Float: -nan } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0110: (StorageRaw) { + 434 0x002e: (UserDataTypeSuperClassUnknown: , (0x4a0c66e1, 0x01513165), 0x00000b60, Bitmap Proxies (Autodesk)) [5] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0110: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x0120: (StorageRaw) { + Orphan[1] 0x0120: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 4 0x0130: (StorageRaw) { + Orphan[2] 0x0130: (StorageRaw) { Size: 4 String: .... Hex: 00 02 00 00 Int: 512 Float: 7.17465e-43 } - 5 0x0140: (StorageRaw) { + Orphan[3] 0x0140: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 6 0x0200: (StorageRaw) { + Orphan[4] 0x0200: (StorageRaw) { Size: 0 String: Hex: } } - 435 0x002f: (SceneClassUnknown: SceneAppData Latch, (0x0c6f6387, 0x2c1a0a7b), Builtin) [2] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: b2 01 00 00 - Int: 434 - Float: 6.08164e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } } - 436 0x0021: (SceneClassUnknown: TVNode, (0x8d73b8aa, 0x90f2ee71), Builtin) [7] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: b3 01 00 00 - Int: 435 - Float: 6.09565e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0140: (StorageRaw) { + 435 0x002f: (UserTypeSuperClassUnknown: SceneAppData Latch, (0x0c6f6387, 0x2c1a0a7b), 0x0000900f, Builtin) [0] { + References 0x2034: PARSED { + 0: (, (0x4a0c66e1, 0x01513165)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } } + 436 0x0021: (ReferenceTargetUnknown: TVNode, (0x8d73b8aa, 0x90f2ee71), 0x00000200, Builtin) [5] { + References 0x2034: PARSED { + 0: (SceneAppData Latch, (0x0c6f6387, 0x2c1a0a7b)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0140: (StorageRaw) { Size: 0 String: Hex: } - 3 0x0150: (StorageRaw) { + Orphan[1] 0x0150: (StorageRaw) { Size: 0 String: Hex: } - 4 0x0110: (StorageRaw) { + Orphan[2] 0x0110: (StorageRaw) { Size: 0 String: Hex: } - 5 0x0120: (StorageRaw) { + Orphan[3] 0x0120: (StorageRaw) { Size: 8 String: .f.Je1Q. Hex: e1 66 0c 4a 65 31 51 01 } - 6 0x0130: (StorageRaw) { + Orphan[4] 0x0130: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 437 0x0030: (SceneClassUnknown: BitmapPagerData, (0x5bf94f11, 0x68c22d6f), StorageAndFilter.bms) [6] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: ff ff ff ff - Int: -1 - Float: -nan } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0110: (StorageRaw) { + 437 0x0030: (UserDataTypeSuperClassUnknown: BitmapPagerData, (0x5bf94f11, 0x68c22d6f), 0x00000b60, Standard Bitmap Storages and Filters (Autodesk)) [4] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0110: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 3 0x0120: (StorageRaw) { + Orphan[1] 0x0120: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 4 0x0130: (StorageRaw) { + Orphan[2] 0x0130: (StorageRaw) { Size: 4 String: ...> Hex: 00 00 80 3e Int: 1048576000 Float: 0.25 } - 5 0x0140: (StorageRaw) { + Orphan[3] 0x0140: (StorageRaw) { Size: 4 String: ...= Hex: cd cc cc 3d Int: 1036831949 Float: 0.1 } } - 438 0x002f: (SceneClassUnknown: SceneAppData Latch, (0x0c6f6387, 0x2c1a0a7b), Builtin) [2] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: b5 01 00 00 - Int: 437 - Float: 6.12367e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } } - 439 0x0021: (SceneClassUnknown: TVNode, (0x8d73b8aa, 0x90f2ee71), Builtin) [7] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: b6 01 00 00 - Int: 438 - Float: 6.13769e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0140: (StorageRaw) { + 438 0x002f: (UserTypeSuperClassUnknown: SceneAppData Latch, (0x0c6f6387, 0x2c1a0a7b), 0x0000900f, Builtin) [0] { + References 0x2034: PARSED { + 0: (BitmapPagerData, (0x5bf94f11, 0x68c22d6f)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } } + 439 0x0021: (ReferenceTargetUnknown: TVNode, (0x8d73b8aa, 0x90f2ee71), 0x00000200, Builtin) [5] { + References 0x2034: PARSED { + 0: (SceneAppData Latch, (0x0c6f6387, 0x2c1a0a7b)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0140: (StorageRaw) { Size: 0 String: Hex: } - 3 0x0150: (StorageRaw) { + Orphan[1] 0x0150: (StorageRaw) { Size: 0 String: Hex: } - 4 0x0110: (StorageRaw) { + Orphan[2] 0x0110: (StorageRaw) { Size: 30 String: B.i.t.m.a.p.P.a.g.e.r.D.a.t.a. } - 5 0x0120: (StorageRaw) { + Orphan[3] 0x0120: (StorageRaw) { Size: 8 String: .O.[o-.h Hex: 11 4f f9 5b 6f 2d c2 68 } - 6 0x0130: (StorageRaw) { + Orphan[4] 0x0130: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 440 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [3] { - 0 0x0009: (StorageRaw) { + 440 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [3] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: 1......!........ Hex: 31 00 00 00 00 00 00 21 e0 2e 01 00 b9 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ......H............ Hex: 00 00 12 08 00 00 48 10 81 00 00 00 00 00 00 00 00 00 00 } - 2 0x000c: (StorageRaw) { + Orphan[2] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 441 0x0031: (SceneClassUnknown: MasterLayerControlManager, (0x0f4871a5, 0x781f1430), ctrl.dlc) [9] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: b8 01 00 00 - Int: 440 - Float: 6.16571e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1001: (StorageRaw) { + 441 0x0031: (UserTypeSuperClassUnknown: MasterLayerControlManager, (0x0f4871a5, 0x781f1430), 0x0000900f, Standard Controllers (Autodesk)) [7] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1001: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 3 0x1002: (StorageRaw) { + Orphan[1] 0x1002: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 4 0x1003: (StorageRaw) { + Orphan[2] 0x1003: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 5 0x1004: (StorageRaw) { + Orphan[3] 0x1004: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x1005: (StorageRaw) { + Orphan[4] 0x1005: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 7 0x1006: (StorageRaw) { + Orphan[5] 0x1006: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 8 0x1007: (StorageRaw) { + Orphan[6] 0x1007: (StorageRaw) { Size: 4 String: d... Hex: 64 00 00 00 Int: 100 Float: 1.4013e-43 } } - 442 0x0000: (SceneClassUnknown: ParamBlock2, (0x00000082, 0x00000000), Builtin) [3] { - 0 0x0009: (StorageRaw) { + 442 0x0000: (ParamBlock2SuperClassUnknown: ParamBlock2, (0x00000082, 0x00000000), 0x00000082, Builtin) [3] { + Orphan[0] 0x0009: (StorageRaw) { Size: 16 String: 2......!........ Hex: 32 00 00 00 00 00 00 21 e0 2e 01 00 bb 01 00 00 } - 1 0x000e: (StorageRaw) { + Orphan[1] 0x000e: (StorageRaw) { Size: 19 String: ................... Hex: 00 00 12 08 00 00 00 10 81 00 00 00 00 00 00 00 00 00 00 } - 2 0x000c: (StorageRaw) { + Orphan[2] 0x000c: (StorageRaw) { Size: 10 String: .......... Hex: 01 00 00 00 01 00 00 00 00 00 } } - 443 0x0032: (SceneClassUnknown: Max Mixer Clip, (0x57a52b8c, 0x30935afc), biped.dlc) [2] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: ba 01 00 00 - Int: 442 - Float: 6.19374e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } } - 444 0x0021: (SceneClassUnknown: TVNode, (0x8d73b8aa, 0x90f2ee71), Builtin) [36] { - 0 0x2034: (StorageRaw) { - Size: 44 - String: ............................................ - Hex: 96 01 00 00 a5 01 00 00 a7 01 00 00 a9 01 00 00 ac 01 00 00 ad 01 00 00 b1 01 00 00 b4 01 00 00 b7 01 00 00 b9 01 00 00 bb 01 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x0140: (StorageRaw) { + 443 0x0032: (UserTypeSuperClassUnknown: Max Mixer Clip, (0x57a52b8c, 0x30935afc), 0x0000900f, Biped Controller (Autodesk)) [0] { + References 0x2034: PARSED { + 0: (ParamBlock2, (0x00000082, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } } + 444 0x0021: (ReferenceTargetUnknown: TVNode, (0x8d73b8aa, 0x90f2ee71), 0x00000200, Builtin) [34] { + References 0x2034: PARSED { + 0: (TVNode, (0x8d73b8aa, 0x90f2ee71)) + 1: (TVNode, (0x8d73b8aa, 0x90f2ee71)) + 2: (TVNode, (0x8d73b8aa, 0x90f2ee71)) + 3: (TVNode, (0x8d73b8aa, 0x90f2ee71)) + 4: (TVNode, (0x8d73b8aa, 0x90f2ee71)) + 5: (Reaction Manager, (0x294a389c, 0x087906d7)) + 6: (TVNode, (0x8d73b8aa, 0x90f2ee71)) + 7: (TVNode, (0x8d73b8aa, 0x90f2ee71)) + 8: (TVNode, (0x8d73b8aa, 0x90f2ee71)) + 9: (MasterLayerControlManager, (0x0f4871a5, 0x781f1430)) + 10: (Max Mixer Clip, (0x57a52b8c, 0x30935afc)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x0140: (StorageRaw) { Size: 0 String: Hex: } - 3 0x0110: (StorageRaw) { + Orphan[1] 0x0110: (StorageRaw) { Size: 20 String: V.i.d.e.o. .P.o.s.t. } - 4 0x0120: (StorageRaw) { + Orphan[2] 0x0120: (StorageRaw) { Size: 8 String: 0.+H..,. Hex: 30 8d 2b 48 11 85 2c b7 } - 5 0x0130: (StorageRaw) { + Orphan[3] 0x0130: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 6 0x0110: (StorageRaw) { + Orphan[4] 0x0110: (StorageRaw) { Size: 26 String: G.l.o.b.a.l. .T.r.a.c.k.s. } - 7 0x0120: (StorageRaw) { + Orphan[5] 0x0120: (StorageRaw) { Size: 8 String: *.~.p..s Hex: 2a 9f 7e b2 70 d3 fa 73 } - 8 0x0130: (StorageRaw) { + Orphan[6] 0x0130: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 9 0x0110: (StorageRaw) { + Orphan[7] 0x0110: (StorageRaw) { Size: 56 String: B.l.o.c.k. .M.a.n.a.g.e.r. .W.r.a.p.p.e.r. .T.V.N.o.d.e. } - 10 0x0120: (StorageRaw) { + Orphan[8] 0x0120: (StorageRaw) { Size: 8 String: F6...;y. Hex: 46 36 8c 1f ed 3b 79 11 } - 11 0x0130: (StorageRaw) { + Orphan[9] 0x0130: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 12 0x0110: (StorageRaw) { + Orphan[10] 0x0110: (StorageRaw) { Size: 68 String: P.r.o.p.a.g.a.t.i.o.n. .M.a.n.a.g.e.r. .W.r.a.p.p.e.r. .T.V.N.o.d.e. } - 13 0x0120: (StorageRaw) { + Orphan[11] 0x0120: (StorageRaw) { Size: 8 String: .f.Z+y v Hex: 1e 66 1b 5a 2b 79 20 76 } - 14 0x0130: (StorageRaw) { + Orphan[12] 0x0130: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 15 0x0110: (StorageRaw) { + Orphan[13] 0x0110: (StorageRaw) { Size: 26 String: S.c.e.n.e. .E.f.f.e.c.t.s. } - 16 0x0120: (StorageRaw) { + Orphan[14] 0x0120: (StorageRaw) { Size: 8 String: 9..6.G.. Hex: 39 11 8d 36 94 47 04 f4 } - 17 0x0130: (StorageRaw) { + Orphan[15] 0x0130: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 18 0x0110: (StorageRaw) { + Orphan[16] 0x0110: (StorageRaw) { Size: 32 String: R.e.a.c.t.i.o.n. .M.a.n.a.g.e.r. } - 19 0x0120: (StorageRaw) { + Orphan[17] 0x0120: (StorageRaw) { Size: 8 String: .8J)..y. Hex: 9c 38 4a 29 d7 06 79 08 } - 20 0x0130: (StorageRaw) { + Orphan[18] 0x0130: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 21 0x0110: (StorageRaw) { + Orphan[19] 0x0110: (StorageRaw) { Size: 38 String: P.a.r.a.m.e.t.e.r. .C.o.l.l.e.c.t.o.r. } - 22 0x0120: (StorageRaw) { + Orphan[20] 0x0120: (StorageRaw) { Size: 8 String: M[.9~..t Hex: 4d 5b aa 39 7e 15 c1 74 } - 23 0x0130: (StorageRaw) { + Orphan[21] 0x0130: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 24 0x0110: (StorageRaw) { + Orphan[22] 0x0110: (StorageRaw) { Size: 0 String: Hex: } - 25 0x0120: (StorageRaw) { + Orphan[23] 0x0120: (StorageRaw) { Size: 8 String: .f.Je1Q. Hex: e1 66 0c 4a 65 31 51 01 } - 26 0x0130: (StorageRaw) { + Orphan[24] 0x0130: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 27 0x0110: (StorageRaw) { + Orphan[25] 0x0110: (StorageRaw) { Size: 30 String: B.i.t.m.a.p.P.a.g.e.r.D.a.t.a. } - 28 0x0120: (StorageRaw) { + Orphan[26] 0x0120: (StorageRaw) { Size: 8 String: .O.[o-.h Hex: 11 4f f9 5b 6f 2d c2 68 } - 29 0x0130: (StorageRaw) { + Orphan[27] 0x0130: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 30 0x0110: (StorageRaw) { + Orphan[28] 0x0110: (StorageRaw) { Size: 52 String: A.n.i.m. .L.a.y.e.r. .C.o.n.t.r.o.l. .M.a.n.a.g.e.r. } - 31 0x0120: (StorageRaw) { + Orphan[29] 0x0120: (StorageRaw) { Size: 8 String: .qH.0..x Hex: a5 71 48 0f 30 14 1f 78 } - 32 0x0130: (StorageRaw) { + Orphan[30] 0x0130: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 33 0x0110: (StorageRaw) { + Orphan[31] 0x0110: (StorageRaw) { Size: 44 String: M.a.x. .M.o.t.i.o.n.C.l.i.p. .M.a.n.a.g.e.r. } - 34 0x0120: (StorageRaw) { + Orphan[32] 0x0120: (StorageRaw) { Size: 8 String: .+.W.Z.0 Hex: 8c 2b a5 57 fc 5a 93 30 } - 35 0x0130: (StorageRaw) { + Orphan[33] 0x0130: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 445 0x0033: (SceneClassUnknown: Grid Reference, (0x00000001, 0x00000000), Builtin) [2] { - 0 0x2035: (StorageRaw) { - Size: 4 - String: .... - Hex: 02 00 00 00 - Int: 2 - Float: 2.8026e-45 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } } - 446 0x0034: (SceneClassUnknown: RenderEffects, (0x17356912, 0x00000000), Builtin) [2] { - 0 0x1100: (StorageRaw) { + 445 0x0033: (GridReferenceSuperClassUnknown: Grid Reference, (0x00000001, 0x00000000), 0xfffffe00, Builtin) [0] { + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } } + 446 0x0034: (RenderEffectSuperClassUnknown: RenderEffects, (0x17356912, 0x00000000), 0x00001090, Builtin) [2] { + Orphan[0] 0x1100: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 1 0x1110: (StorageRaw) { + Orphan[1] 0x1110: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } } - 447 0x0006: (SceneClassUnknown: ParamBlock, (0x00000008, 0x00000000), Builtin) [7] { - 0 0x0001: (StorageRaw) { + 447 0x0006: (ParamBlockSuperClassUnknown: ParamBlock, (0x00000008, 0x00000000), 0x00000008, Builtin) [7] { + Orphan[0] 0x0001: (StorageRaw) { Size: 4 String: .... Hex: 05 00 00 00 Int: 5 Float: 7.00649e-45 } - 1 0x0005: (StorageRaw) { + Orphan[1] 0x0005: (StorageRaw) { Size: 2 String: .. Hex: 02 00 } - 2 0x0002: (StorageContainer) [3] { + Orphan[2] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -20569,7 +19412,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 02 00 00 Int: 512 Float: 7.17465e-43 } } - 3 0x0002: (StorageContainer) [3] { + Orphan[3] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -20586,7 +19429,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 80 40 Int: 1082130432 Float: 4 } } - 4 0x0002: (StorageContainer) [3] { + Orphan[4] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -20603,7 +19446,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 80 3f Int: 1065353216 Float: 1 } } - 5 0x0002: (StorageContainer) [3] { + Orphan[5] 0x0002: (StorageContainer) [3] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -20620,7 +19463,7 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } - 6 0x0002: (StorageContainer) [2] { + Orphan[6] 0x0002: (StorageContainer) [2] { 0 0x0003: (StorageRaw) { Size: 4 String: .... @@ -20633,89 +19476,81 @@ Entries[56]: (ClassEntry) [2] PARSED { Hex: 00 00 00 00 Int: 0 Float: 0 } } } - 448 0x0035: (SceneClassUnknown: Shadow Map, (0x00000100, 0x00000000), rend.dlr) [2] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: bf 01 00 00 - Int: 447 - Float: 6.2638e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } } - 449 0x0036: (SceneClassUnknown: Layer Manager, (0x0d7374fc, 0x51ff028e), Builtin) [5] { - 0 0x2034: (StorageRaw) { - Size: 4 - String: .... - Hex: 84 01 00 00 - Int: 388 - Float: 5.43704e-43 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x1500: (StorageRaw) { + 448 0x0035: (ShadowTypeSuperClassUnknown: Shadow Map, (0x00000100, 0x00000000), 0x000010d0, Default Scanline Renderer (Autodesk)) [0] { + References 0x2034: PARSED { + 0: (ParamBlock, (0x00000008, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } } + 449 0x0036: (ReferenceTargetUnknown: Layer Manager, (0x0d7374fc, 0x51ff028e), 0x00000200, Builtin) [3] { + References 0x2034: PARSED { + 0: (Base Layer, (0x7e9858fe, 0x1dba1df0)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x1500: (StorageRaw) { Size: 4 String: .... Hex: 01 00 00 00 Int: 1 Float: 1.4013e-45 } - 3 0x1600: (StorageRaw) { + Orphan[1] 0x1600: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } - 4 0x1700: (StorageRaw) { + Orphan[2] 0x1700: (StorageRaw) { Size: 1 String: 0 Hex: 30 } } - 450 0x0037: (SceneClassUnknown: TrackSetList, (0x2cf03595, 0x00000000), Builtin) [1] { - 0 0x0100: (StorageRaw) { + 450 0x0037: (ReferenceMakerUnknown: TrackSetList, (0x2cf03595, 0x00000000), 0x00000100, Builtin) [1] { + Orphan[0] 0x0100: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00 Int: 0 Float: 0 } } - 451 0x0038: (SceneClassUnknown: Scene, (0x00002222, 0x00000000), Builtin) [8] { - 0 0x2034: (StorageRaw) { - Size: 48 - String: w...x.......|................................... - Hex: 77 01 00 00 78 01 00 00 7b 01 00 00 7c 01 00 00 94 01 00 00 95 01 00 00 bc 01 00 00 bd 01 00 00 be 01 00 00 c0 01 00 00 c1 01 00 00 c2 01 00 00 } - 1 0x204b: (StorageRaw) { - Size: 1 - String: . - Hex: 2e } - 2 0x8500: (StorageRaw) { + 451 0x0038: (ReferenceMakerUnknown: Scene, (0x00002222, 0x00000000), 0x00000100, Builtin) [6] { + References 0x2034: PARSED { + 0: (Material Editor, (0x00000c80, 0x00000000)) + 1: (MtlBaseLib, (0x00003333, 0x00000000)) + 2: (ProSound, (0x476fa9de, 0x5b918e4a)) + 3: (RootNode, (0x00000002, 0x00000000)) + 4: (RenderEnvironment, (0xee448b23, 0x00000000)) + 5: (NamedSelSetList, (0x00008d52, 0x00000000)) + 6: (TVNode, (0x8d73b8aa, 0x90f2ee71)) + 7: (Grid Reference, (0x00000001, 0x00000000)) + 8: (RenderEffects, (0x17356912, 0x00000000)) + 9: (Shadow Map, (0x00000100, 0x00000000)) + 10: (Layer Manager, (0x0d7374fc, 0x51ff028e)) + 11: (TrackSetList, (0x2cf03595, 0x00000000)) } + 0x204B Equals 0x2E (46): (CStorageValue) { 46 } + Orphan[0] 0x8500: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 3 0x8530: (StorageRaw) { + Orphan[1] 0x8530: (StorageRaw) { Size: 4 String: .... Hex: 02 00 00 00 Int: 2 Float: 2.8026e-45 } - 4 0x8510: (StorageRaw) { + Orphan[2] 0x8510: (StorageRaw) { Size: 4 String: .... Hex: c0 12 00 00 Int: 4800 Float: 6.72623e-42 } - 5 0x8520: (StorageRaw) { + Orphan[3] 0x8520: (StorageRaw) { Size: 8 String: .......? Hex: 05 00 00 00 00 00 80 3f } - 6 0x9000: (StorageRaw) { + Orphan[4] 0x9000: (StorageRaw) { Size: 4 String: >... Hex: 3e 00 00 00 Int: 62 Float: 8.68805e-44 } - 7 0x9600: (StorageRaw) { + Orphan[5] 0x9600: (StorageRaw) { Size: 4 String: .... Hex: 00 00 00 00