Changeset 2336


Ignore:
Timestamp:
04/24/07 14:09:18 (17 years ago)
Author:
szirmay
Message:
 
Location:
GTP/trunk/App/Demos/Illum/Ogre/Media/MORIA
Files:
365 added
15 deleted
9 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/App/Demos/Illum/Ogre/Media/MORIA/bump.hlsl

    r2315 r2336  
    66uniform float4x4 WorldI; 
    77uniform float4 wLightPos; 
     8uniform float3 wLightDir; 
    89uniform float3 wCamPos; 
     10uniform float4 lightRange; 
     11uniform float lightPower; 
     12#define SpotLightFalloff 1.0 
    913 
    1014 
     
    2832{ 
    2933        // Blinn lighting 
     34        float d = length(Light); 
     35        Light = normalize(Light); 
    3036        float3 Half = normalize(Light + View); 
    31         float Diffuse = dot(Normal, Light); 
    32         float Specular = dot(Normal, Half); 
    33         float4 Lighting = lit(Diffuse, Specular, 16); 
     37        float4 Lighting = lit(dot(Normal, Light), dot(Normal, Half), 16); 
    3438        float4 Color= tex2D(ColorMapSampler, tileTexCoord) * tex2D(DetailMapSampler, detailTexCoord2); 
    3539 
    36         return (Lighting.y + 0.1) * Color; 
     40        return Lighting.y * Color * (d < lightRange.x) / (lightRange.y + d * lightRange.z + d * d * lightRange.w) * lightPower; 
    3741} 
    3842 
     
    7175        VS_OUTPUT OUT; 
    7276 
    73         float3 wPos = mul(World, IN.Position); 
     77        float3 wPos = mul(World, IN.Position).xyz; 
    7478                // world-space view vector         
    7579                OUT.mView = wCamPos - wPos; 
     80                 
    7681                // world-space light vector 
    7782                OUT.mLight = wLightPos.xyz - wPos * wLightPos.w; 
    78  
    79                 OUT.wTangent = normalize(mul(float4(IN.Tangent, 1),WorldI)); 
    80                 OUT.wNormal = normalize(mul(float4(IN.Normal, 1),WorldI));               
    81                 OUT.wBinormal = cross(OUT.wTangent, OUT.wNormal);                
     83                 
     84                OUT.wTangent = normalize(mul(float4(IN.Tangent, 1),WorldI)).rgb; 
     85                OUT.wNormal = normalize(mul(float4(IN.Normal, 1),WorldI)).rgb;           
     86                OUT.wBinormal = cross(OUT.wTangent, OUT.wNormal).rgb;            
    8287                 
    8388        // vertex position before homogenious division 
     
    8994        if(normalCoord == 0) 
    9095                OUT.TexNormalCoord = IN.TexCoord; 
    91                 else 
     96        else 
    9297                OUT.TexNormalCoord = IN.TexCoord2; 
    9398                 
     
    95100} 
    96101 
    97 float4 BumpPS(VS_OUTPUT IN, uniform float3 lightDir) : COLOR 
     102float4 BumpPS(VS_OUTPUT IN) : COLOR 
    98103{ 
     104float SpotLightAngle = 120.0 / 180.0 * 3.14; 
     105 
     106 
    99107        //return tex2D(BumpMapSampler,IN.TexCoord).a; 
    100108        IN.wTangent = normalize(IN.wTangent); 
     
    102110        IN.wNormal = normalize(IN.wNormal); 
    103111        // needs normalization because of linear interpolation     
    104     float3 mLight = normalize( IN.mLight ); 
     112    float3 mLight = IN.mLight; 
    105113    float3 mView = normalize( IN.mView ); 
    106   
    107     float lightScale = 0.5 + pow(saturate(dot(mLight, -lightDir)), 2); 
    108114     
    109115    // get model space normal vector 
     
    114120        // Normal vector should be transformed with the inverse transpose of TangentToModel 
    115121        // which is the transpose of ModelToTangent 
    116     float3 mNormal = normalize( mul( tNormal, ModelToTangent ) );  
     122    float3 mNormal = normalize( mul( tNormal, ModelToTangent ) ); 
     123        //spot angle 
     124        float spotFalloff = 1; 
     125    if(wLightPos.w && dot(wLightDir, wLightDir) != 0) 
     126    { 
     127        //spotFalloff = pow(dot(normalize(-mLight), normalize(wLightDir)), 5); 
     128        spotFalloff = (dot(normalize(-mLight), normalize(wLightDir)) - cos(SpotLightAngle / 2.0)) / (1.0 - cos(SpotLightAngle / 2.0)); 
     129        spotFalloff = pow(saturate(spotFalloff),1); 
     130     } 
    117131        // illumination calculation 
    118     return lightScale * Illumination(mLight, mNormal, mView, IN.TexCoord2, IN.TexCoord); 
    119      
     132    return Illumination(mLight, IN.wNormal, mView, IN.TexCoord2, IN.TexCoord) * spotFalloff;     
    120133     
    121134} 
  • GTP/trunk/App/Demos/Illum/Ogre/Media/MORIA/moria.level

    r2315 r2336  
     1mesh FloorTile1Shape 
     2{ 
     3        ogrefile FloorTile1Shape.mesh 
     4        pathmapresolution 16 
     5        divide 1 
     6} 
     7mesh FloorTile5Shape 
     8{ 
     9        ogrefile FloorTile5Shape.mesh 
     10        pathmapresolution 16 
     11        divide 1 
     12} 
     13mesh FloorTileShape2 
     14{ 
     15        ogrefile FloorTileShape2.mesh 
     16        pathmapresolution 16 
     17        divide 1 
     18} 
     19mesh FloorTileShape3 
     20{ 
     21        ogrefile FloorTileShape3.mesh 
     22        pathmapresolution 16 
     23        divide 1 
     24} 
     25mesh FloorTileShape4 
     26{ 
     27        ogrefile FloorTileShape4.mesh 
     28        pathmapresolution 16 
     29        divide 1 
     30} 
     31mesh FloorTileShape6 
     32{ 
     33        ogrefile FloorTileShape6.mesh 
     34        pathmapresolution 16 
     35        divide 1 
     36} 
     37mesh FloorTileShape7 
     38{ 
     39        ogrefile FloorTileShape7.mesh 
     40        pathmapresolution 16 
     41        divide 1 
     42} 
     43mesh FloorTileShape8 
     44{ 
     45        ogrefile FloorTileShape8.mesh 
     46        pathmapresolution 16 
     47        divide 1 
     48} 
    149mesh GreatPillarHallCeilingBoxShape 
    250{ 
    3         ogreXMLfile GreatPillarHallCeilingBoxShape.mesh.xml 
    451        ogrefile GreatPillarHallCeilingBoxShape.mesh 
    552        pathmapresolution 16 
    653        divide 1 
    754} 
    8  
    9 entity GreatPillarHallCeilingBox 
    10 { 
    11         mesh GreatPillarHallCeilingBoxShape 
    12         transformation 1 0 0 -65 0 1 0 16.83832036 0 0 1 -25 0 0 0 1  
    13         pathmapclusters 32 
    14         pathmapfile GreatPillarHallCeilingBox 
    15 } 
    16  
    17 entity GreatPillarHallCeilingBox1 
    18 { 
    19         mesh GreatPillarHallCeilingBoxShape 
    20         transformation 1 0 0 -55 0 1 0 16.83832036 0 0 1 -25 0 0 0 1  
    21         pathmapclusters 32 
    22         pathmapfile GreatPillarHallCeilingBox1 
    23 } 
    24  
    25 entity GreatPillarHallCeilingBox2 
    26 { 
    27         mesh GreatPillarHallCeilingBoxShape 
    28         transformation 1 0 0 -45 0 1 0 16.83832036 0 0 1 -25 0 0 0 1  
    29         pathmapclusters 32 
    30         pathmapfile GreatPillarHallCeilingBox2 
    31 } 
    32  
    33 entity GreatPillarHallCeilingBox3 
    34 { 
    35         mesh GreatPillarHallCeilingBoxShape 
    36         transformation 1 0 0 -35 0 1 0 16.83832036 0 0 1 -25 0 0 0 1  
    37         pathmapclusters 32 
    38         pathmapfile GreatPillarHallCeilingBox3 
    39 } 
    40  
    41 entity GreatPillarHallCeilingBox4 
    42 { 
    43         mesh GreatPillarHallCeilingBoxShape 
    44         transformation 1 0 0 -25 0 1 0 16.83832036 0 0 1 -25 0 0 0 1  
    45         pathmapclusters 32 
    46         pathmapfile GreatPillarHallCeilingBox4 
    47 } 
    48  
    49 entity GreatPillarHallCeilingBox5 
    50 { 
    51         mesh GreatPillarHallCeilingBoxShape 
    52         transformation 1 0 0 -15 0 1 0 16.83832036 0 0 1 -25 0 0 0 1  
    53         pathmapclusters 32 
    54         pathmapfile GreatPillarHallCeilingBox5 
    55 } 
    56  
    57 entity GreatPillarHallCeilingBox6 
    58 { 
    59         mesh GreatPillarHallCeilingBoxShape 
    60         transformation 1 0 0 -5 0 1 0 16.83832036 0 0 1 -25 0 0 0 1  
    61         pathmapclusters 32 
    62         pathmapfile GreatPillarHallCeilingBox6 
    63 } 
    64  
    65 entity GreatPillarHallCeilingBox7 
    66 { 
    67         mesh GreatPillarHallCeilingBoxShape 
    68         transformation 1 0 0 5 0 1 0 16.83832036 0 0 1 -25 0 0 0 1  
    69         pathmapclusters 32 
    70         pathmapfile GreatPillarHallCeilingBox7 
    71 } 
    72  
    73 entity GreatPillarHallCeilingBox8 
    74 { 
    75         mesh GreatPillarHallCeilingBoxShape 
    76         transformation 1 0 0 15 0 1 0 16.83832036 0 0 1 -25 0 0 0 1  
    77         pathmapclusters 32 
    78         pathmapfile GreatPillarHallCeilingBox8 
    79 } 
    80  
    81 entity GreatPillarHallCeilingBox9 
    82 { 
    83         mesh GreatPillarHallCeilingBoxShape 
    84         transformation 1 0 0 25 0 1 0 16.83832036 0 0 1 -25 0 0 0 1  
    85         pathmapclusters 32 
    86         pathmapfile GreatPillarHallCeilingBox9 
    87 } 
    88  
    89 entity GreatPillarHallCeilingBox10 
    90 { 
    91         mesh GreatPillarHallCeilingBoxShape 
    92         transformation 1 0 0 35 0 1 0 16.83832036 0 0 1 -25 0 0 0 1  
    93         pathmapclusters 32 
    94         pathmapfile GreatPillarHallCeilingBox10 
    95 } 
    96  
    97 entity GreatPillarHallCeilingBox11 
    98 { 
    99         mesh GreatPillarHallCeilingBoxShape 
    100         transformation 1 0 0 45 0 1 0 16.83832036 0 0 1 -25 0 0 0 1  
    101         pathmapclusters 32 
    102         pathmapfile GreatPillarHallCeilingBox11 
    103 } 
    104  
    105 entity GreatPillarHallCeilingBox12 
    106 { 
    107         mesh GreatPillarHallCeilingBoxShape 
    108         transformation 1 0 0 55 0 1 0 16.83832036 0 0 1 -25 0 0 0 1  
    109         pathmapclusters 32 
    110         pathmapfile GreatPillarHallCeilingBox12 
    111 } 
    112  
    113 entity GreatPillarHallCeilingBox13 
    114 { 
    115         mesh GreatPillarHallCeilingBoxShape 
    116         transformation 1 0 0 65 0 1 0 16.83832036 0 0 1 -25 0 0 0 1  
    117         pathmapclusters 32 
    118         pathmapfile GreatPillarHallCeilingBox13 
    119 } 
    120  
    121 entity GreatPillarHallCeilingBox14 
    122 { 
    123         mesh GreatPillarHallCeilingBoxShape 
    124         transformation 1 0 0 65 0 1 0 16.83832036 0 0 1 -15 0 0 0 1  
    125         pathmapclusters 32 
    126         pathmapfile GreatPillarHallCeilingBox14 
    127 } 
    128  
    129 entity GreatPillarHallCeilingBox15 
    130 { 
    131         mesh GreatPillarHallCeilingBoxShape 
    132         transformation 1 0 0 55 0 1 0 16.83832036 0 0 1 -15 0 0 0 1  
    133         pathmapclusters 32 
    134         pathmapfile GreatPillarHallCeilingBox15 
    135 } 
    136  
    137 entity GreatPillarHallCeilingBox16 
    138 { 
    139         mesh GreatPillarHallCeilingBoxShape 
    140         transformation 1 0 0 45 0 1 0 16.83832036 0 0 1 -15 0 0 0 1  
    141         pathmapclusters 32 
    142         pathmapfile GreatPillarHallCeilingBox16 
    143 } 
    144  
    145 entity GreatPillarHallCeilingBox17 
    146 { 
    147         mesh GreatPillarHallCeilingBoxShape 
    148         transformation 1 0 0 35 0 1 0 16.83832036 0 0 1 -15 0 0 0 1  
    149         pathmapclusters 32 
    150         pathmapfile GreatPillarHallCeilingBox17 
    151 } 
    152  
    153 entity GreatPillarHallCeilingBox18 
    154 { 
    155         mesh GreatPillarHallCeilingBoxShape 
    156         transformation 1 0 0 25 0 1 0 16.83832036 0 0 1 -15 0 0 0 1  
    157         pathmapclusters 32 
    158         pathmapfile GreatPillarHallCeilingBox18 
    159 } 
    160  
    161 entity GreatPillarHallCeilingBox19 
    162 { 
    163         mesh GreatPillarHallCeilingBoxShape 
    164         transformation 1 0 0 15 0 1 0 16.83832036 0 0 1 -15 0 0 0 1  
    165         pathmapclusters 32 
    166         pathmapfile GreatPillarHallCeilingBox19 
    167 } 
    168  
    169 entity GreatPillarHallCeilingBox20 
    170 { 
    171         mesh GreatPillarHallCeilingBoxShape 
    172         transformation 1 0 0 5 0 1 0 16.83832036 0 0 1 -15 0 0 0 1  
    173         pathmapclusters 32 
    174         pathmapfile GreatPillarHallCeilingBox20 
    175 } 
    176  
    177 entity GreatPillarHallCeilingBox21 
    178 { 
    179         mesh GreatPillarHallCeilingBoxShape 
    180         transformation 1 0 0 -5 0 1 0 16.83832036 0 0 1 -15 0 0 0 1  
    181         pathmapclusters 32 
    182         pathmapfile GreatPillarHallCeilingBox21 
    183 } 
    184  
    185 entity GreatPillarHallCeilingBox22 
    186 { 
    187         mesh GreatPillarHallCeilingBoxShape 
    188         transformation 1 0 0 -15 0 1 0 16.83832036 0 0 1 -15 0 0 0 1  
    189         pathmapclusters 32 
    190         pathmapfile GreatPillarHallCeilingBox22 
    191 } 
    192  
    193 entity GreatPillarHallCeilingBox23 
    194 { 
    195         mesh GreatPillarHallCeilingBoxShape 
    196         transformation 1 0 0 -25 0 1 0 16.83832036 0 0 1 -15 0 0 0 1  
    197         pathmapclusters 32 
    198         pathmapfile GreatPillarHallCeilingBox23 
    199 } 
    200  
    201 entity GreatPillarHallCeilingBox24 
    202 { 
    203         mesh GreatPillarHallCeilingBoxShape 
    204         transformation 1 0 0 -35 0 1 0 16.83832036 0 0 1 -15 0 0 0 1  
    205         pathmapclusters 32 
    206         pathmapfile GreatPillarHallCeilingBox24 
    207 } 
    208  
    209 entity GreatPillarHallCeilingBox25 
    210 { 
    211         mesh GreatPillarHallCeilingBoxShape 
    212         transformation 1 0 0 -45 0 1 0 16.83832036 0 0 1 -15 0 0 0 1  
    213         pathmapclusters 32 
    214         pathmapfile GreatPillarHallCeilingBox25 
    215 } 
    216  
    217 entity GreatPillarHallCeilingBox26 
    218 { 
    219         mesh GreatPillarHallCeilingBoxShape 
    220         transformation 1 0 0 -55 0 1 0 16.83832036 0 0 1 -15 0 0 0 1  
    221         pathmapclusters 32 
    222         pathmapfile GreatPillarHallCeilingBox26 
    223 } 
    224  
    225 entity GreatPillarHallCeilingBox27 
    226 { 
    227         mesh GreatPillarHallCeilingBoxShape 
    228         transformation 1 0 0 -65 0 1 0 16.83832036 0 0 1 -15 0 0 0 1  
    229         pathmapclusters 32 
    230         pathmapfile GreatPillarHallCeilingBox27 
    231 } 
    232  
    233 entity GreatPillarHallCeilingBox28 
    234 { 
    235         mesh GreatPillarHallCeilingBoxShape 
    236         transformation 1 0 0 65 0 1 0 16.83832036 0 0 1 -5 0 0 0 1  
    237         pathmapclusters 32 
    238         pathmapfile GreatPillarHallCeilingBox28 
    239 } 
    240  
    241 entity GreatPillarHallCeilingBox29 
    242 { 
    243         mesh GreatPillarHallCeilingBoxShape 
    244         transformation 1 0 0 55 0 1 0 16.83832036 0 0 1 -5 0 0 0 1  
    245         pathmapclusters 32 
    246         pathmapfile GreatPillarHallCeilingBox29 
    247 } 
    248  
    249 entity GreatPillarHallCeilingBox30 
    250 { 
    251         mesh GreatPillarHallCeilingBoxShape 
    252         transformation 1 0 0 45 0 1 0 16.83832036 0 0 1 -5 0 0 0 1  
    253         pathmapclusters 32 
    254         pathmapfile GreatPillarHallCeilingBox30 
    255 } 
    256  
    257 entity GreatPillarHallCeilingBox31 
    258 { 
    259         mesh GreatPillarHallCeilingBoxShape 
    260         transformation 1 0 0 35 0 1 0 16.83832036 0 0 1 -5 0 0 0 1  
    261         pathmapclusters 32 
    262         pathmapfile GreatPillarHallCeilingBox31 
    263 } 
    264  
    265 entity GreatPillarHallCeilingBox32 
    266 { 
    267         mesh GreatPillarHallCeilingBoxShape 
    268         transformation 1 0 0 25 0 1 0 16.83832036 0 0 1 -5 0 0 0 1  
    269         pathmapclusters 32 
    270         pathmapfile GreatPillarHallCeilingBox32 
    271 } 
    272  
    273 entity GreatPillarHallCeilingBox33 
    274 { 
    275         mesh GreatPillarHallCeilingBoxShape 
    276         transformation 1 0 0 15 0 1 0 16.83832036 0 0 1 -5 0 0 0 1  
    277         pathmapclusters 32 
    278         pathmapfile GreatPillarHallCeilingBox33 
    279 } 
    280  
    281 entity GreatPillarHallCeilingBox34 
    282 { 
    283         mesh GreatPillarHallCeilingBoxShape 
    284         transformation 1 0 0 5 0 1 0 16.83832036 0 0 1 -5 0 0 0 1  
    285         pathmapclusters 32 
    286         pathmapfile GreatPillarHallCeilingBox34 
    287 } 
    288  
    289 entity GreatPillarHallCeilingBox35 
    290 { 
    291         mesh GreatPillarHallCeilingBoxShape 
    292         transformation 1 0 0 -5 0 1 0 16.83832036 0 0 1 -5 0 0 0 1  
    293         pathmapclusters 32 
    294         pathmapfile GreatPillarHallCeilingBox35 
    295 } 
    296  
    297 entity GreatPillarHallCeilingBox36 
    298 { 
    299         mesh GreatPillarHallCeilingBoxShape 
    300         transformation 1 0 0 -15 0 1 0 16.83832036 0 0 1 -5 0 0 0 1  
    301         pathmapclusters 32 
    302         pathmapfile GreatPillarHallCeilingBox36 
    303 } 
    304  
    305 entity GreatPillarHallCeilingBox37 
    306 { 
    307         mesh GreatPillarHallCeilingBoxShape 
    308         transformation 1 0 0 -25 0 1 0 16.83832036 0 0 1 -5 0 0 0 1  
    309         pathmapclusters 32 
    310         pathmapfile GreatPillarHallCeilingBox37 
    311 } 
    312  
    313 entity GreatPillarHallCeilingBox38 
    314 { 
    315         mesh GreatPillarHallCeilingBoxShape 
    316         transformation 1 0 0 -35 0 1 0 16.83832036 0 0 1 -5 0 0 0 1  
    317         pathmapclusters 32 
    318         pathmapfile GreatPillarHallCeilingBox38 
    319 } 
    320  
    321 entity GreatPillarHallCeilingBox39 
    322 { 
    323         mesh GreatPillarHallCeilingBoxShape 
    324         transformation 1 0 0 -45 0 1 0 16.83832036 0 0 1 -5 0 0 0 1  
    325         pathmapclusters 32 
    326         pathmapfile GreatPillarHallCeilingBox39 
    327 } 
    328  
    329 entity GreatPillarHallCeilingBox40 
    330 { 
    331         mesh GreatPillarHallCeilingBoxShape 
    332         transformation 1 0 0 -55 0 1 0 16.83832036 0 0 1 -5 0 0 0 1  
    333         pathmapclusters 32 
    334         pathmapfile GreatPillarHallCeilingBox40 
    335 } 
    336  
    337 entity GreatPillarHallCeilingBox41 
    338 { 
    339         mesh GreatPillarHallCeilingBoxShape 
    340         transformation 1 0 0 -65 0 1 0 16.83832036 0 0 1 -5 0 0 0 1  
    341         pathmapclusters 32 
    342         pathmapfile GreatPillarHallCeilingBox41 
    343 } 
    344  
    345 entity GreatPillarHallCeilingBox42 
    346 { 
    347         mesh GreatPillarHallCeilingBoxShape 
    348         transformation 1 0 0 65 0 1 0 16.83832036 0 0 1 5 0 0 0 1  
    349         pathmapclusters 32 
    350         pathmapfile GreatPillarHallCeilingBox42 
    351 } 
    352  
    353 entity GreatPillarHallCeilingBox43 
    354 { 
    355         mesh GreatPillarHallCeilingBoxShape 
    356         transformation 1 0 0 55 0 1 0 16.83832036 0 0 1 5 0 0 0 1  
    357         pathmapclusters 32 
    358         pathmapfile GreatPillarHallCeilingBox43 
    359 } 
    360  
    361 entity GreatPillarHallCeilingBox44 
    362 { 
    363         mesh GreatPillarHallCeilingBoxShape 
    364         transformation 1 0 0 45 0 1 0 16.83832036 0 0 1 5 0 0 0 1  
    365         pathmapclusters 32 
    366         pathmapfile GreatPillarHallCeilingBox44 
    367 } 
    368  
    369 entity GreatPillarHallCeilingBox45 
    370 { 
    371         mesh GreatPillarHallCeilingBoxShape 
    372         transformation 1 0 0 35 0 1 0 16.83832036 0 0 1 5 0 0 0 1  
    373         pathmapclusters 32 
    374         pathmapfile GreatPillarHallCeilingBox45 
    375 } 
    376  
    377 entity GreatPillarHallCeilingBox46 
    378 { 
    379         mesh GreatPillarHallCeilingBoxShape 
    380         transformation 1 0 0 25 0 1 0 16.83832036 0 0 1 5 0 0 0 1  
    381         pathmapclusters 32 
    382         pathmapfile GreatPillarHallCeilingBox46 
    383 } 
    384  
    385 entity GreatPillarHallCeilingBox47 
    386 { 
    387         mesh GreatPillarHallCeilingBoxShape 
    388         transformation 1 0 0 15 0 1 0 16.83832036 0 0 1 5 0 0 0 1  
    389         pathmapclusters 32 
    390         pathmapfile GreatPillarHallCeilingBox47 
    391 } 
    392  
    393 entity GreatPillarHallCeilingBox48 
    394 { 
    395         mesh GreatPillarHallCeilingBoxShape 
    396         transformation 1 0 0 5 0 1 0 16.83832036 0 0 1 5 0 0 0 1  
    397         pathmapclusters 32 
    398         pathmapfile GreatPillarHallCeilingBox48 
    399 } 
    400  
    401 entity GreatPillarHallCeilingBox49 
    402 { 
    403         mesh GreatPillarHallCeilingBoxShape 
    404         transformation 1 0 0 -5 0 1 0 16.83832036 0 0 1 5 0 0 0 1  
    405         pathmapclusters 32 
    406         pathmapfile GreatPillarHallCeilingBox49 
    407 } 
    408  
    409 entity GreatPillarHallCeilingBox50 
    410 { 
    411         mesh GreatPillarHallCeilingBoxShape 
    412         transformation 1 0 0 -15 0 1 0 16.83832036 0 0 1 5 0 0 0 1  
    413         pathmapclusters 32 
    414         pathmapfile GreatPillarHallCeilingBox50 
    415 } 
    416  
    417 entity GreatPillarHallCeilingBox51 
    418 { 
    419         mesh GreatPillarHallCeilingBoxShape 
    420         transformation 1 0 0 -25 0 1 0 16.83832036 0 0 1 5 0 0 0 1  
    421         pathmapclusters 32 
    422         pathmapfile GreatPillarHallCeilingBox51 
    423 } 
    424  
    425 entity GreatPillarHallCeilingBox52 
    426 { 
    427         mesh GreatPillarHallCeilingBoxShape 
    428         transformation 1 0 0 -35 0 1 0 16.83832036 0 0 1 5 0 0 0 1  
    429         pathmapclusters 32 
    430         pathmapfile GreatPillarHallCeilingBox52 
    431 } 
    432  
    433 entity GreatPillarHallCeilingBox53 
    434 { 
    435         mesh GreatPillarHallCeilingBoxShape 
    436         transformation 1 0 0 -45 0 1 0 16.83832036 0 0 1 5 0 0 0 1  
    437         pathmapclusters 32 
    438         pathmapfile GreatPillarHallCeilingBox53 
    439 } 
    440  
    441 entity GreatPillarHallCeilingBox54 
    442 { 
    443         mesh GreatPillarHallCeilingBoxShape 
    444         transformation 1 0 0 -55 0 1 0 16.83832036 0 0 1 5 0 0 0 1  
    445         pathmapclusters 32 
    446         pathmapfile GreatPillarHallCeilingBox54 
    447 } 
    448  
    449 entity GreatPillarHallCeilingBox55 
    450 { 
    451         mesh GreatPillarHallCeilingBoxShape 
    452         transformation 1 0 0 -65 0 1 0 16.83832036 0 0 1 5 0 0 0 1  
    453         pathmapclusters 32 
    454         pathmapfile GreatPillarHallCeilingBox55 
    455 } 
    456  
    457 entity GreatPillarHallCeilingBox56 
    458 { 
    459         mesh GreatPillarHallCeilingBoxShape 
    460         transformation 1 0 0 65 0 1 0 16.83832036 0 0 1 15 0 0 0 1  
    461         pathmapclusters 32 
    462         pathmapfile GreatPillarHallCeilingBox56 
    463 } 
    464  
    465 entity GreatPillarHallCeilingBox57 
    466 { 
    467         mesh GreatPillarHallCeilingBoxShape 
    468         transformation 1 0 0 55 0 1 0 16.83832036 0 0 1 15 0 0 0 1  
    469         pathmapclusters 32 
    470         pathmapfile GreatPillarHallCeilingBox57 
    471 } 
    472  
    473 entity GreatPillarHallCeilingBox58 
    474 { 
    475         mesh GreatPillarHallCeilingBoxShape 
    476         transformation 1 0 0 45 0 1 0 16.83832036 0 0 1 15 0 0 0 1  
    477         pathmapclusters 32 
    478         pathmapfile GreatPillarHallCeilingBox58 
    479 } 
    480  
    481 entity GreatPillarHallCeilingBox59 
    482 { 
    483         mesh GreatPillarHallCeilingBoxShape 
    484         transformation 1 0 0 35 0 1 0 16.83832036 0 0 1 15 0 0 0 1  
    485         pathmapclusters 32 
    486         pathmapfile GreatPillarHallCeilingBox59 
    487 } 
    488  
    489 entity GreatPillarHallCeilingBox60 
    490 { 
    491         mesh GreatPillarHallCeilingBoxShape 
    492         transformation 1 0 0 25 0 1 0 16.83832036 0 0 1 15 0 0 0 1  
    493         pathmapclusters 32 
    494         pathmapfile GreatPillarHallCeilingBox60 
    495 } 
    496  
    497 entity GreatPillarHallCeilingBox61 
    498 { 
    499         mesh GreatPillarHallCeilingBoxShape 
    500         transformation 1 0 0 15 0 1 0 16.83832036 0 0 1 15 0 0 0 1  
    501         pathmapclusters 32 
    502         pathmapfile GreatPillarHallCeilingBox61 
    503 } 
    504  
    505 entity GreatPillarHallCeilingBox62 
    506 { 
    507         mesh GreatPillarHallCeilingBoxShape 
    508         transformation 1 0 0 5 0 1 0 16.83832036 0 0 1 15 0 0 0 1  
    509         pathmapclusters 32 
    510         pathmapfile GreatPillarHallCeilingBox62 
    511 } 
    512  
    513 entity GreatPillarHallCeilingBox63 
    514 { 
    515         mesh GreatPillarHallCeilingBoxShape 
    516         transformation 1 0 0 -5 0 1 0 16.83832036 0 0 1 15 0 0 0 1  
    517         pathmapclusters 32 
    518         pathmapfile GreatPillarHallCeilingBox63 
    519 } 
    520  
    521 entity GreatPillarHallCeilingBox64 
    522 { 
    523         mesh GreatPillarHallCeilingBoxShape 
    524         transformation 1 0 0 -15 0 1 0 16.83832036 0 0 1 15 0 0 0 1  
    525         pathmapclusters 32 
    526         pathmapfile GreatPillarHallCeilingBox64 
    527 } 
    528  
    529 entity GreatPillarHallCeilingBox65 
    530 { 
    531         mesh GreatPillarHallCeilingBoxShape 
    532         transformation 1 0 0 -25 0 1 0 16.83832036 0 0 1 15 0 0 0 1  
    533         pathmapclusters 32 
    534         pathmapfile GreatPillarHallCeilingBox65 
    535 } 
    536  
    537 entity GreatPillarHallCeilingBox66 
    538 { 
    539         mesh GreatPillarHallCeilingBoxShape 
    540         transformation 1 0 0 -35 0 1 0 16.83832036 0 0 1 15 0 0 0 1  
    541         pathmapclusters 32 
    542         pathmapfile GreatPillarHallCeilingBox66 
    543 } 
    544  
    545 entity GreatPillarHallCeilingBox67 
    546 { 
    547         mesh GreatPillarHallCeilingBoxShape 
    548         transformation 1 0 0 -45 0 1 0 16.83832036 0 0 1 15 0 0 0 1  
    549         pathmapclusters 32 
    550         pathmapfile GreatPillarHallCeilingBox67 
    551 } 
    552  
    553 entity GreatPillarHallCeilingBox68 
    554 { 
    555         mesh GreatPillarHallCeilingBoxShape 
    556         transformation 1 0 0 -55 0 1 0 16.83832036 0 0 1 15 0 0 0 1  
    557         pathmapclusters 32 
    558         pathmapfile GreatPillarHallCeilingBox68 
    559 } 
    560  
    561 entity GreatPillarHallCeilingBox69 
    562 { 
    563         mesh GreatPillarHallCeilingBoxShape 
    564         transformation 1 0 0 -65 0 1 0 16.83832036 0 0 1 15 0 0 0 1  
    565         pathmapclusters 32 
    566         pathmapfile GreatPillarHallCeilingBox69 
    567 } 
    568  
    569 entity GreatPillarHallCeilingBox70 
    570 { 
    571         mesh GreatPillarHallCeilingBoxShape 
    572         transformation 1 0 0 65 0 1 0 16.83832036 0 0 1 25 0 0 0 1  
    573         pathmapclusters 32 
    574         pathmapfile GreatPillarHallCeilingBox70 
    575 } 
    576  
    577 entity GreatPillarHallCeilingBox71 
    578 { 
    579         mesh GreatPillarHallCeilingBoxShape 
    580         transformation 1 0 0 55 0 1 0 16.83832036 0 0 1 25 0 0 0 1  
    581         pathmapclusters 32 
    582         pathmapfile GreatPillarHallCeilingBox71 
    583 } 
    584  
    585 entity GreatPillarHallCeilingBox72 
    586 { 
    587         mesh GreatPillarHallCeilingBoxShape 
    588         transformation 1 0 0 45 0 1 0 16.83832036 0 0 1 25 0 0 0 1  
    589         pathmapclusters 32 
    590         pathmapfile GreatPillarHallCeilingBox72 
    591 } 
    592  
    593 entity GreatPillarHallCeilingBox73 
    594 { 
    595         mesh GreatPillarHallCeilingBoxShape 
    596         transformation 1 0 0 35 0 1 0 16.83832036 0 0 1 25 0 0 0 1  
    597         pathmapclusters 32 
    598         pathmapfile GreatPillarHallCeilingBox73 
    599 } 
    600  
    601 entity GreatPillarHallCeilingBox74 
    602 { 
    603         mesh GreatPillarHallCeilingBoxShape 
    604         transformation 1 0 0 25 0 1 0 16.83832036 0 0 1 25 0 0 0 1  
    605         pathmapclusters 32 
    606         pathmapfile GreatPillarHallCeilingBox74 
    607 } 
    608  
    609 entity GreatPillarHallCeilingBox75 
    610 { 
    611         mesh GreatPillarHallCeilingBoxShape 
    612         transformation 1 0 0 15 0 1 0 16.83832036 0 0 1 25 0 0 0 1  
    613         pathmapclusters 32 
    614         pathmapfile GreatPillarHallCeilingBox75 
    615 } 
    616  
    617 entity GreatPillarHallCeilingBox76 
    618 { 
    619         mesh GreatPillarHallCeilingBoxShape 
    620         transformation 1 0 0 5 0 1 0 16.83832036 0 0 1 25 0 0 0 1  
    621         pathmapclusters 32 
    622         pathmapfile GreatPillarHallCeilingBox76 
    623 } 
    624  
    625 entity GreatPillarHallCeilingBox77 
    626 { 
    627         mesh GreatPillarHallCeilingBoxShape 
    628         transformation 1 0 0 -5 0 1 0 16.83832036 0 0 1 25 0 0 0 1  
    629         pathmapclusters 32 
    630         pathmapfile GreatPillarHallCeilingBox77 
    631 } 
    632  
    633 entity GreatPillarHallCeilingBox78 
    634 { 
    635         mesh GreatPillarHallCeilingBoxShape 
    636         transformation 1 0 0 -15 0 1 0 16.83832036 0 0 1 25 0 0 0 1  
    637         pathmapclusters 32 
    638         pathmapfile GreatPillarHallCeilingBox78 
    639 } 
    640  
    641 entity GreatPillarHallCeilingBox79 
    642 { 
    643         mesh GreatPillarHallCeilingBoxShape 
    644         transformation 1 0 0 -25 0 1 0 16.83832036 0 0 1 25 0 0 0 1  
    645         pathmapclusters 32 
    646         pathmapfile GreatPillarHallCeilingBox79 
    647 } 
    648  
    649 entity GreatPillarHallCeilingBox80 
    650 { 
    651         mesh GreatPillarHallCeilingBoxShape 
    652         transformation 1 0 0 -35 0 1 0 16.83832036 0 0 1 25 0 0 0 1  
    653         pathmapclusters 32 
    654         pathmapfile GreatPillarHallCeilingBox80 
    655 } 
    656  
    657 entity GreatPillarHallCeilingBox81 
    658 { 
    659         mesh GreatPillarHallCeilingBoxShape 
    660         transformation 1 0 0 -45 0 1 0 16.83832036 0 0 1 25 0 0 0 1  
    661         pathmapclusters 32 
    662         pathmapfile GreatPillarHallCeilingBox81 
    663 } 
    664  
    665 entity GreatPillarHallCeilingBox82 
    666 { 
    667         mesh GreatPillarHallCeilingBoxShape 
    668         transformation 1 0 0 -55 0 1 0 16.83832036 0 0 1 25 0 0 0 1  
    669         pathmapclusters 32 
    670         pathmapfile GreatPillarHallCeilingBox82 
    671 } 
    672  
    673 entity GreatPillarHallCeilingBox83 
    674 { 
    675         mesh GreatPillarHallCeilingBoxShape 
    676         transformation 1 0 0 -65 0 1 0 16.83832036 0 0 1 25 0 0 0 1  
    677         pathmapclusters 32 
    678         pathmapfile GreatPillarHallCeilingBox83 
    679 } 
    680  
     55mesh GreatPillarHeadHalfShape 
     56{ 
     57        ogrefile GreatPillarHeadHalfShape.mesh 
     58        pathmapresolution 16 
     59        divide 1 
     60} 
     61mesh GreatPillarHeadQuaterShape 
     62{ 
     63        ogrefile GreatPillarHeadQuaterShape.mesh 
     64        pathmapresolution 16 
     65        divide 1 
     66} 
    68167mesh GreatPillarHeadShape2 
    68268{ 
    683         ogreXMLfile GreatPillarHeadShape2.mesh.xml 
    68469        ogrefile GreatPillarHeadShape2.mesh 
    68570        pathmapresolution 16 
    68671        divide 1 
    68772} 
    688  
    689 entity GreatPillarHead2 
    690 { 
    691         mesh GreatPillarHeadShape2 
    692         transformation 1 0 0 64.99995411 0 1 0 13 0 0 1 -25 0 0 0 1  
    693         pathmapclusters 32 
    694         pathmapfile GreatPillarHead2 
    695 } 
    696  
    697 entity GreatPillarHead3 
    698 { 
    699         mesh GreatPillarHeadShape2 
    700         transformation 1 0 0 64.99995411 0 1 0 13 0 0 1 -15 0 0 0 1  
    701         pathmapclusters 32 
    702         pathmapfile GreatPillarHead3 
    703 } 
    704  
    705 entity GreatPillarHead4 
    706 { 
    707         mesh GreatPillarHeadShape2 
    708         transformation 1 0 0 64.99995411 0 1 0 13 0 0 1 -5 0 0 0 1  
    709         pathmapclusters 32 
    710         pathmapfile GreatPillarHead4 
    711 } 
    712  
    713 entity GreatPillarHead5 
    714 { 
    715         mesh GreatPillarHeadShape2 
    716         transformation 1 0 0 64.99995411 0 1 0 13 0 0 1 5 0 0 0 1  
    717         pathmapclusters 32 
    718         pathmapfile GreatPillarHead5 
    719 } 
    720  
    721 entity GreatPillarHead6 
    722 { 
    723         mesh GreatPillarHeadShape2 
    724         transformation 1 0 0 64.99995411 0 1 0 13 0 0 1 15 0 0 0 1  
    725         pathmapclusters 32 
    726         pathmapfile GreatPillarHead6 
    727 } 
    728  
    729 entity GreatPillarHead7 
    730 { 
    731         mesh GreatPillarHeadShape2 
    732         transformation 1 0 0 64.99995411 0 1 0 13 0 0 1 25 0 0 0 1  
    733         pathmapclusters 32 
    734         pathmapfile GreatPillarHead7 
    735 } 
    736  
    737 entity GreatPillarHead8 
    738 { 
    739         mesh GreatPillarHeadShape2 
    740         transformation 1 0 0 54.99995411 0 1 0 13 0 0 1 -15 0 0 0 1  
    741         pathmapclusters 32 
    742         pathmapfile GreatPillarHead8 
    743 } 
    744  
    745 entity GreatPillarHead9 
    746 { 
    747         mesh GreatPillarHeadShape2 
    748         transformation 1 0 0 54.99995411 0 1 0 13 0 0 1 -5 0 0 0 1  
    749         pathmapclusters 32 
    750         pathmapfile GreatPillarHead9 
    751 } 
    752  
    753 entity GreatPillarHead10 
    754 { 
    755         mesh GreatPillarHeadShape2 
    756         transformation 1 0 0 54.99995411 0 1 0 13 0 0 1 5 0 0 0 1  
    757         pathmapclusters 32 
    758         pathmapfile GreatPillarHead10 
    759 } 
    760  
    761 entity GreatPillarHead11 
    762 { 
    763         mesh GreatPillarHeadShape2 
    764         transformation 1 0 0 54.99995411 0 1 0 13 0 0 1 15 0 0 0 1  
    765         pathmapclusters 32 
    766         pathmapfile GreatPillarHead11 
    767 } 
    768  
    769 entity GreatPillarHead12 
    770 { 
    771         mesh GreatPillarHeadShape2 
    772         transformation 1 0 0 54.99995411 0 1 0 13 0 0 1 25 0 0 0 1  
    773         pathmapclusters 32 
    774         pathmapfile GreatPillarHead12 
    775 } 
    776  
    777 entity GreatPillarHead13 
    778 { 
    779         mesh GreatPillarHeadShape2 
    780         transformation 1 0 0 54.99995411 0 1 0 13 0 0 1 -25 0 0 0 1  
    781         pathmapclusters 32 
    782         pathmapfile GreatPillarHead13 
    783 } 
    784  
    785 entity GreatPillarHead14 
    786 { 
    787         mesh GreatPillarHeadShape2 
    788         transformation 1 0 0 44.99995411 0 1 0 13 0 0 1 -15 0 0 0 1  
    789         pathmapclusters 32 
    790         pathmapfile GreatPillarHead14 
    791 } 
    792  
    793 entity GreatPillarHead15 
    794 { 
    795         mesh GreatPillarHeadShape2 
    796         transformation 1 0 0 44.99995411 0 1 0 13 0 0 1 -5 0 0 0 1  
    797         pathmapclusters 32 
    798         pathmapfile GreatPillarHead15 
    799 } 
    800  
    801 entity GreatPillarHead16 
    802 { 
    803         mesh GreatPillarHeadShape2 
    804         transformation 1 0 0 44.99995411 0 1 0 13 0 0 1 5 0 0 0 1  
    805         pathmapclusters 32 
    806         pathmapfile GreatPillarHead16 
    807 } 
    808  
    809 entity GreatPillarHead17 
    810 { 
    811         mesh GreatPillarHeadShape2 
    812         transformation 1 0 0 44.99995411 0 1 0 13 0 0 1 15 0 0 0 1  
    813         pathmapclusters 32 
    814         pathmapfile GreatPillarHead17 
    815 } 
    816  
    817 entity GreatPillarHead18 
    818 { 
    819         mesh GreatPillarHeadShape2 
    820         transformation 1 0 0 44.99995411 0 1 0 13 0 0 1 25 0 0 0 1  
    821         pathmapclusters 32 
    822         pathmapfile GreatPillarHead18 
    823 } 
    824  
    825 entity GreatPillarHead19 
    826 { 
    827         mesh GreatPillarHeadShape2 
    828         transformation 1 0 0 44.99995411 0 1 0 13 0 0 1 -25 0 0 0 1  
    829         pathmapclusters 32 
    830         pathmapfile GreatPillarHead19 
    831 } 
    832  
    833 entity GreatPillarHead20 
    834 { 
    835         mesh GreatPillarHeadShape2 
    836         transformation 1 0 0 34.99995411 0 1 0 13 0 0 1 -15 0 0 0 1  
    837         pathmapclusters 32 
    838         pathmapfile GreatPillarHead20 
    839 } 
    840  
    841 entity GreatPillarHead21 
    842 { 
    843         mesh GreatPillarHeadShape2 
    844         transformation 1 0 0 34.99995411 0 1 0 13 0 0 1 -5 0 0 0 1  
    845         pathmapclusters 32 
    846         pathmapfile GreatPillarHead21 
    847 } 
    848  
    849 entity GreatPillarHead22 
    850 { 
    851         mesh GreatPillarHeadShape2 
    852         transformation 1 0 0 34.99995411 0 1 0 13 0 0 1 5 0 0 0 1  
    853         pathmapclusters 32 
    854         pathmapfile GreatPillarHead22 
    855 } 
    856  
    857 entity GreatPillarHead23 
    858 { 
    859         mesh GreatPillarHeadShape2 
    860         transformation 1 0 0 34.99995411 0 1 0 13 0 0 1 15 0 0 0 1  
    861         pathmapclusters 32 
    862         pathmapfile GreatPillarHead23 
    863 } 
    864  
    865 entity GreatPillarHead24 
    866 { 
    867         mesh GreatPillarHeadShape2 
    868         transformation 1 0 0 34.99995411 0 1 0 13 0 0 1 25 0 0 0 1  
    869         pathmapclusters 32 
    870         pathmapfile GreatPillarHead24 
    871 } 
    872  
    873 entity GreatPillarHead25 
    874 { 
    875         mesh GreatPillarHeadShape2 
    876         transformation 1 0 0 34.99995411 0 1 0 13 0 0 1 -25 0 0 0 1  
    877         pathmapclusters 32 
    878         pathmapfile GreatPillarHead25 
    879 } 
    880  
    881 entity GreatPillarHead26 
    882 { 
    883         mesh GreatPillarHeadShape2 
    884         transformation 1 0 0 24.99995411 0 1 0 13 0 0 1 -15 0 0 0 1  
    885         pathmapclusters 32 
    886         pathmapfile GreatPillarHead26 
    887 } 
    888  
    889 entity GreatPillarHead27 
    890 { 
    891         mesh GreatPillarHeadShape2 
    892         transformation 1 0 0 24.99995411 0 1 0 13 0 0 1 -5 0 0 0 1  
    893         pathmapclusters 32 
    894         pathmapfile GreatPillarHead27 
    895 } 
    896  
    897 entity GreatPillarHead28 
    898 { 
    899         mesh GreatPillarHeadShape2 
    900         transformation 1 0 0 24.99995411 0 1 0 13 0 0 1 5 0 0 0 1  
    901         pathmapclusters 32 
    902         pathmapfile GreatPillarHead28 
    903 } 
    904  
    905 entity GreatPillarHead29 
    906 { 
    907         mesh GreatPillarHeadShape2 
    908         transformation 1 0 0 24.99995411 0 1 0 13 0 0 1 15 0 0 0 1  
    909         pathmapclusters 32 
    910         pathmapfile GreatPillarHead29 
    911 } 
    912  
    913 entity GreatPillarHead30 
    914 { 
    915         mesh GreatPillarHeadShape2 
    916         transformation 1 0 0 24.99995411 0 1 0 13 0 0 1 25 0 0 0 1  
    917         pathmapclusters 32 
    918         pathmapfile GreatPillarHead30 
    919 } 
    920  
    921 entity GreatPillarHead31 
    922 { 
    923         mesh GreatPillarHeadShape2 
    924         transformation 1 0 0 24.99995411 0 1 0 13 0 0 1 -25 0 0 0 1  
    925         pathmapclusters 32 
    926         pathmapfile GreatPillarHead31 
    927 } 
    928  
    929 entity GreatPillarHead32 
    930 { 
    931         mesh GreatPillarHeadShape2 
    932         transformation 1 0 0 14.99995411 0 1 0 13 0 0 1 -15 0 0 0 1  
    933         pathmapclusters 32 
    934         pathmapfile GreatPillarHead32 
    935 } 
    936  
    937 entity GreatPillarHead33 
    938 { 
    939         mesh GreatPillarHeadShape2 
    940         transformation 1 0 0 14.99995411 0 1 0 13 0 0 1 -5 0 0 0 1  
    941         pathmapclusters 32 
    942         pathmapfile GreatPillarHead33 
    943 } 
    944  
    945 entity GreatPillarHead34 
    946 { 
    947         mesh GreatPillarHeadShape2 
    948         transformation 1 0 0 14.99995411 0 1 0 13 0 0 1 5 0 0 0 1  
    949         pathmapclusters 32 
    950         pathmapfile GreatPillarHead34 
    951 } 
    952  
    953 entity GreatPillarHead35 
    954 { 
    955         mesh GreatPillarHeadShape2 
    956         transformation 1 0 0 14.99995411 0 1 0 13 0 0 1 15 0 0 0 1  
    957         pathmapclusters 32 
    958         pathmapfile GreatPillarHead35 
    959 } 
    960  
    961 entity GreatPillarHead36 
    962 { 
    963         mesh GreatPillarHeadShape2 
    964         transformation 1 0 0 14.99995411 0 1 0 13 0 0 1 25 0 0 0 1  
    965         pathmapclusters 32 
    966         pathmapfile GreatPillarHead36 
    967 } 
    968  
    969 entity GreatPillarHead37 
    970 { 
    971         mesh GreatPillarHeadShape2 
    972         transformation 1 0 0 14.99995411 0 1 0 13 0 0 1 -25 0 0 0 1  
    973         pathmapclusters 32 
    974         pathmapfile GreatPillarHead37 
    975 } 
    976  
    977 entity GreatPillarHead38 
    978 { 
    979         mesh GreatPillarHeadShape2 
    980         transformation 1 0 0 4.999954108 0 1 0 13 0 0 1 -15 0 0 0 1  
    981         pathmapclusters 32 
    982         pathmapfile GreatPillarHead38 
    983 } 
    984  
    985 entity GreatPillarHead39 
    986 { 
    987         mesh GreatPillarHeadShape2 
    988         transformation 1 0 0 4.999954108 0 1 0 13 0 0 1 -5 0 0 0 1  
    989         pathmapclusters 32 
    990         pathmapfile GreatPillarHead39 
    991 } 
    992  
    993 entity GreatPillarHead40 
    994 { 
    995         mesh GreatPillarHeadShape2 
    996         transformation 1 0 0 4.999954108 0 1 0 13 0 0 1 5 0 0 0 1  
    997         pathmapclusters 32 
    998         pathmapfile GreatPillarHead40 
    999 } 
    1000  
    1001 entity GreatPillarHead41 
    1002 { 
    1003         mesh GreatPillarHeadShape2 
    1004         transformation 1 0 0 4.999954108 0 1 0 13 0 0 1 15 0 0 0 1  
    1005         pathmapclusters 32 
    1006         pathmapfile GreatPillarHead41 
    1007 } 
    1008  
    1009 entity GreatPillarHead42 
    1010 { 
    1011         mesh GreatPillarHeadShape2 
    1012         transformation 1 0 0 4.999954108 0 1 0 13 0 0 1 25 0 0 0 1  
    1013         pathmapclusters 32 
    1014         pathmapfile GreatPillarHead42 
    1015 } 
    1016  
    1017 entity GreatPillarHead43 
    1018 { 
    1019         mesh GreatPillarHeadShape2 
    1020         transformation 1 0 0 4.999954108 0 1 0 13 0 0 1 -25 0 0 0 1  
    1021         pathmapclusters 32 
    1022         pathmapfile GreatPillarHead43 
    1023 } 
    1024  
    1025 entity GreatPillarHead44 
    1026 { 
    1027         mesh GreatPillarHeadShape2 
    1028         transformation 1 0 0 -5.000045892 0 1 0 13 0 0 1 -15 0 0 0 1  
    1029         pathmapclusters 32 
    1030         pathmapfile GreatPillarHead44 
    1031 } 
    1032  
    1033 entity GreatPillarHead45 
    1034 { 
    1035         mesh GreatPillarHeadShape2 
    1036         transformation 1 0 0 -5.000045892 0 1 0 13 0 0 1 -5 0 0 0 1  
    1037         pathmapclusters 32 
    1038         pathmapfile GreatPillarHead45 
    1039 } 
    1040  
    1041 entity GreatPillarHead46 
    1042 { 
    1043         mesh GreatPillarHeadShape2 
    1044         transformation 1 0 0 -5.000045892 0 1 0 13 0 0 1 5 0 0 0 1  
    1045         pathmapclusters 32 
    1046         pathmapfile GreatPillarHead46 
    1047 } 
    1048  
    1049 entity GreatPillarHead47 
    1050 { 
    1051         mesh GreatPillarHeadShape2 
    1052         transformation 1 0 0 -5.000045892 0 1 0 13 0 0 1 15 0 0 0 1  
    1053         pathmapclusters 32 
    1054         pathmapfile GreatPillarHead47 
    1055 } 
    1056  
    1057 entity GreatPillarHead48 
    1058 { 
    1059         mesh GreatPillarHeadShape2 
    1060         transformation 1 0 0 -5.000045892 0 1 0 13 0 0 1 25 0 0 0 1  
    1061         pathmapclusters 32 
    1062         pathmapfile GreatPillarHead48 
    1063 } 
    1064  
    1065 entity GreatPillarHead49 
    1066 { 
    1067         mesh GreatPillarHeadShape2 
    1068         transformation 1 0 0 -5.000045892 0 1 0 13 0 0 1 -25 0 0 0 1  
    1069         pathmapclusters 32 
    1070         pathmapfile GreatPillarHead49 
    1071 } 
    1072  
    1073 entity GreatPillarHead50 
    1074 { 
    1075         mesh GreatPillarHeadShape2 
    1076         transformation 1 0 0 -15.00004589 0 1 0 13 0 0 1 -15 0 0 0 1  
    1077         pathmapclusters 32 
    1078         pathmapfile GreatPillarHead50 
    1079 } 
    1080  
    1081 entity GreatPillarHead51 
    1082 { 
    1083         mesh GreatPillarHeadShape2 
    1084         transformation 1 0 0 -15.00004589 0 1 0 13 0 0 1 -5 0 0 0 1  
    1085         pathmapclusters 32 
    1086         pathmapfile GreatPillarHead51 
    1087 } 
    1088  
    1089 entity GreatPillarHead52 
    1090 { 
    1091         mesh GreatPillarHeadShape2 
    1092         transformation 1 0 0 -15.00004589 0 1 0 13 0 0 1 5 0 0 0 1  
    1093         pathmapclusters 32 
    1094         pathmapfile GreatPillarHead52 
    1095 } 
    1096  
    1097 entity GreatPillarHead53 
    1098 { 
    1099         mesh GreatPillarHeadShape2 
    1100         transformation 1 0 0 -15.00004589 0 1 0 13 0 0 1 15 0 0 0 1  
    1101         pathmapclusters 32 
    1102         pathmapfile GreatPillarHead53 
    1103 } 
    1104  
    1105 entity GreatPillarHead54 
    1106 { 
    1107         mesh GreatPillarHeadShape2 
    1108         transformation 1 0 0 -15.00004589 0 1 0 13 0 0 1 25 0 0 0 1  
    1109         pathmapclusters 32 
    1110         pathmapfile GreatPillarHead54 
    1111 } 
    1112  
    1113 entity GreatPillarHead55 
    1114 { 
    1115         mesh GreatPillarHeadShape2 
    1116         transformation 1 0 0 -15.00004589 0 1 0 13 0 0 1 -25 0 0 0 1  
    1117         pathmapclusters 32 
    1118         pathmapfile GreatPillarHead55 
    1119 } 
    1120  
    1121 entity GreatPillarHead56 
    1122 { 
    1123         mesh GreatPillarHeadShape2 
    1124         transformation 1 0 0 -25.00004589 0 1 0 13 0 0 1 -15 0 0 0 1  
    1125         pathmapclusters 32 
    1126         pathmapfile GreatPillarHead56 
    1127 } 
    1128  
    1129 entity GreatPillarHead57 
    1130 { 
    1131         mesh GreatPillarHeadShape2 
    1132         transformation 1 0 0 -25.00004589 0 1 0 13 0 0 1 -5 0 0 0 1  
    1133         pathmapclusters 32 
    1134         pathmapfile GreatPillarHead57 
    1135 } 
    1136  
    1137 entity GreatPillarHead58 
    1138 { 
    1139         mesh GreatPillarHeadShape2 
    1140         transformation 1 0 0 -25.00004589 0 1 0 13 0 0 1 5 0 0 0 1  
    1141         pathmapclusters 32 
    1142         pathmapfile GreatPillarHead58 
    1143 } 
    1144  
    1145 entity GreatPillarHead59 
    1146 { 
    1147         mesh GreatPillarHeadShape2 
    1148         transformation 1 0 0 -25.00004589 0 1 0 13 0 0 1 15 0 0 0 1  
    1149         pathmapclusters 32 
    1150         pathmapfile GreatPillarHead59 
    1151 } 
    1152  
    1153 entity GreatPillarHead60 
    1154 { 
    1155         mesh GreatPillarHeadShape2 
    1156         transformation 1 0 0 -25.00004589 0 1 0 13 0 0 1 25 0 0 0 1  
    1157         pathmapclusters 32 
    1158         pathmapfile GreatPillarHead60 
    1159 } 
    1160  
    1161 entity GreatPillarHead61 
    1162 { 
    1163         mesh GreatPillarHeadShape2 
    1164         transformation 1 0 0 -25.00004589 0 1 0 13 0 0 1 -25 0 0 0 1  
    1165         pathmapclusters 32 
    1166         pathmapfile GreatPillarHead61 
    1167 } 
    1168  
    1169 entity GreatPillarHead62 
    1170 { 
    1171         mesh GreatPillarHeadShape2 
    1172         transformation 1 0 0 -35.00004589 0 1 0 13 0 0 1 -15 0 0 0 1  
    1173         pathmapclusters 32 
    1174         pathmapfile GreatPillarHead62 
    1175 } 
    1176  
    1177 entity GreatPillarHead63 
    1178 { 
    1179         mesh GreatPillarHeadShape2 
    1180         transformation 1 0 0 -35.00004589 0 1 0 13 0 0 1 -5 0 0 0 1  
    1181         pathmapclusters 32 
    1182         pathmapfile GreatPillarHead63 
    1183 } 
    1184  
    1185 entity GreatPillarHead64 
    1186 { 
    1187         mesh GreatPillarHeadShape2 
    1188         transformation 1 0 0 -35.00004589 0 1 0 13 0 0 1 5 0 0 0 1  
    1189         pathmapclusters 32 
    1190         pathmapfile GreatPillarHead64 
    1191 } 
    1192  
    1193 entity GreatPillarHead65 
    1194 { 
    1195         mesh GreatPillarHeadShape2 
    1196         transformation 1 0 0 -35.00004589 0 1 0 13 0 0 1 15 0 0 0 1  
    1197         pathmapclusters 32 
    1198         pathmapfile GreatPillarHead65 
    1199 } 
    1200  
    1201 entity GreatPillarHead66 
    1202 { 
    1203         mesh GreatPillarHeadShape2 
    1204         transformation 1 0 0 -35.00004589 0 1 0 13 0 0 1 25 0 0 0 1  
    1205         pathmapclusters 32 
    1206         pathmapfile GreatPillarHead66 
    1207 } 
    1208  
    1209 entity GreatPillarHead67 
    1210 { 
    1211         mesh GreatPillarHeadShape2 
    1212         transformation 1 0 0 -35.00004589 0 1 0 13 0 0 1 -25 0 0 0 1  
    1213         pathmapclusters 32 
    1214         pathmapfile GreatPillarHead67 
    1215 } 
    1216  
    1217 entity GreatPillarHead68 
    1218 { 
    1219         mesh GreatPillarHeadShape2 
    1220         transformation 1 0 0 -45.00004589 0 1 0 13 0 0 1 -15 0 0 0 1  
    1221         pathmapclusters 32 
    1222         pathmapfile GreatPillarHead68 
    1223 } 
    1224  
    1225 entity GreatPillarHead69 
    1226 { 
    1227         mesh GreatPillarHeadShape2 
    1228         transformation 1 0 0 -45.00004589 0 1 0 13 0 0 1 -5 0 0 0 1  
    1229         pathmapclusters 32 
    1230         pathmapfile GreatPillarHead69 
    1231 } 
    1232  
    1233 entity GreatPillarHead70 
    1234 { 
    1235         mesh GreatPillarHeadShape2 
    1236         transformation 1 0 0 -45.00004589 0 1 0 13 0 0 1 5 0 0 0 1  
    1237         pathmapclusters 32 
    1238         pathmapfile GreatPillarHead70 
    1239 } 
    1240  
    1241 entity GreatPillarHead71 
    1242 { 
    1243         mesh GreatPillarHeadShape2 
    1244         transformation 1 0 0 -45.00004589 0 1 0 13 0 0 1 15 0 0 0 1  
    1245         pathmapclusters 32 
    1246         pathmapfile GreatPillarHead71 
    1247 } 
    1248  
    1249 entity GreatPillarHead72 
    1250 { 
    1251         mesh GreatPillarHeadShape2 
    1252         transformation 1 0 0 -45.00004589 0 1 0 13 0 0 1 25 0 0 0 1  
    1253         pathmapclusters 32 
    1254         pathmapfile GreatPillarHead72 
    1255 } 
    1256  
    1257 entity GreatPillarHead73 
    1258 { 
    1259         mesh GreatPillarHeadShape2 
    1260         transformation 1 0 0 -45.00004589 0 1 0 13 0 0 1 -25 0 0 0 1  
    1261         pathmapclusters 32 
    1262         pathmapfile GreatPillarHead73 
    1263 } 
    1264  
    1265 entity GreatPillarHead74 
    1266 { 
    1267         mesh GreatPillarHeadShape2 
    1268         transformation 1 0 0 -55.00004589 0 1 0 13 0 0 1 -15 0 0 0 1  
    1269         pathmapclusters 32 
    1270         pathmapfile GreatPillarHead74 
    1271 } 
    1272  
    1273 entity GreatPillarHead75 
    1274 { 
    1275         mesh GreatPillarHeadShape2 
    1276         transformation 1 0 0 -55.00004589 0 1 0 13 0 0 1 -5 0 0 0 1  
    1277         pathmapclusters 32 
    1278         pathmapfile GreatPillarHead75 
    1279 } 
    1280  
    1281 entity GreatPillarHead76 
    1282 { 
    1283         mesh GreatPillarHeadShape2 
    1284         transformation 1 0 0 -55.00004589 0 1 0 13 0 0 1 5 0 0 0 1  
    1285         pathmapclusters 32 
    1286         pathmapfile GreatPillarHead76 
    1287 } 
    1288  
    1289 entity GreatPillarHead77 
    1290 { 
    1291         mesh GreatPillarHeadShape2 
    1292         transformation 1 0 0 -55.00004589 0 1 0 13 0 0 1 15 0 0 0 1  
    1293         pathmapclusters 32 
    1294         pathmapfile GreatPillarHead77 
    1295 } 
    1296  
    1297 entity GreatPillarHead78 
    1298 { 
    1299         mesh GreatPillarHeadShape2 
    1300         transformation 1 0 0 -55.00004589 0 1 0 13 0 0 1 25 0 0 0 1  
    1301         pathmapclusters 32 
    1302         pathmapfile GreatPillarHead78 
    1303 } 
    1304  
    1305 entity GreatPillarHead79 
    1306 { 
    1307         mesh GreatPillarHeadShape2 
    1308         transformation 1 0 0 -55.00004589 0 1 0 13 0 0 1 -25 0 0 0 1  
    1309         pathmapclusters 32 
    1310         pathmapfile GreatPillarHead79 
    1311 } 
    1312  
    1313 entity GreatPillarHead80 
    1314 { 
    1315         mesh GreatPillarHeadShape2 
    1316         transformation 1 0 0 -65.00004589 0 1 0 13 0 0 1 -15 0 0 0 1  
    1317         pathmapclusters 32 
    1318         pathmapfile GreatPillarHead80 
    1319 } 
    1320  
    1321 entity GreatPillarHead81 
    1322 { 
    1323         mesh GreatPillarHeadShape2 
    1324         transformation 1 0 0 -65.00004589 0 1 0 13 0 0 1 -5 0 0 0 1  
    1325         pathmapclusters 32 
    1326         pathmapfile GreatPillarHead81 
    1327 } 
    1328  
    1329 entity GreatPillarHead82 
    1330 { 
    1331         mesh GreatPillarHeadShape2 
    1332         transformation 1 0 0 -65.00004589 0 1 0 13 0 0 1 5 0 0 0 1  
    1333         pathmapclusters 32 
    1334         pathmapfile GreatPillarHead82 
    1335 } 
    1336  
    1337 entity GreatPillarHead83 
    1338 { 
    1339         mesh GreatPillarHeadShape2 
    1340         transformation 1 0 0 -65.00004589 0 1 0 13 0 0 1 15 0 0 0 1  
    1341         pathmapclusters 32 
    1342         pathmapfile GreatPillarHead83 
    1343 } 
    1344  
    1345 entity GreatPillarHead84 
    1346 { 
    1347         mesh GreatPillarHeadShape2 
    1348         transformation 1 0 0 -65.00004589 0 1 0 13 0 0 1 25 0 0 0 1  
    1349         pathmapclusters 32 
    1350         pathmapfile GreatPillarHead84 
    1351 } 
    1352  
    1353 entity GreatPillarHead85 
    1354 { 
    1355         mesh GreatPillarHeadShape2 
    1356         transformation 1 0 0 -65.00004589 0 1 0 13 0 0 1 -25 0 0 0 1  
    1357         pathmapclusters 32 
    1358         pathmapfile GreatPillarHead85 
    1359 } 
    1360  
     73mesh GreatPillarTrunkHalfShape 
     74{ 
     75        ogrefile GreatPillarTrunkHalfShape.mesh 
     76        pathmapresolution 16 
     77        divide 1 
     78} 
     79mesh GreatPillarTrunkQuaterShape 
     80{ 
     81        ogrefile GreatPillarTrunkQuaterShape.mesh 
     82        pathmapresolution 16 
     83        divide 1 
     84} 
    136185mesh GreatPillarTrunkShape3 
    136286{ 
    1363         ogreXMLfile GreatPillarTrunkShape3.mesh.xml 
    136487        ogrefile GreatPillarTrunkShape3.mesh 
    136588        pathmapresolution 16 
    136689        divide 1 
    136790} 
    1368  
    1369 entity GreatPillarTrunk3 
    1370 { 
    1371         mesh GreatPillarTrunkShape3 
    1372         transformation 1 0 0 64.99995411 0 1 0 6 0 0 1 -25 0 0 0 1  
    1373         pathmapclusters 32 
    1374         pathmapfile GreatPillarTrunk3 
    1375 } 
    1376  
    1377 entity GreatPillarTrunk4 
    1378 { 
    1379         mesh GreatPillarTrunkShape3 
    1380         transformation 1 0 0 64.99995411 0 1 0 6 0 0 1 -15 0 0 0 1  
    1381         pathmapclusters 32 
    1382         pathmapfile GreatPillarTrunk4 
    1383 } 
    1384  
    1385 entity GreatPillarTrunk5 
    1386 { 
    1387         mesh GreatPillarTrunkShape3 
    1388         transformation 1 0 0 64.99995411 0 1 0 6 0 0 1 -5 0 0 0 1  
    1389         pathmapclusters 32 
    1390         pathmapfile GreatPillarTrunk5 
    1391 } 
    1392  
    1393 entity GreatPillarTrunk6 
    1394 { 
    1395         mesh GreatPillarTrunkShape3 
    1396         transformation 1 0 0 64.99995411 0 1 0 6 0 0 1 5 0 0 0 1  
    1397         pathmapclusters 32 
    1398         pathmapfile GreatPillarTrunk6 
    1399 } 
    1400  
    1401 entity GreatPillarTrunk7 
    1402 { 
    1403         mesh GreatPillarTrunkShape3 
    1404         transformation 1 0 0 64.99995411 0 1 0 6 0 0 1 15 0 0 0 1  
    1405         pathmapclusters 32 
    1406         pathmapfile GreatPillarTrunk7 
    1407 } 
    1408  
    1409 entity GreatPillarTrunk8 
    1410 { 
    1411         mesh GreatPillarTrunkShape3 
    1412         transformation 1 0 0 64.99995411 0 1 0 6 0 0 1 25 0 0 0 1  
    1413         pathmapclusters 32 
    1414         pathmapfile GreatPillarTrunk8 
    1415 } 
    1416  
    1417 entity GreatPillarTrunk9 
    1418 { 
    1419         mesh GreatPillarTrunkShape3 
    1420         transformation 1 0 0 54.99995411 0 1 0 6 0 0 1 -15 0 0 0 1  
    1421         pathmapclusters 32 
    1422         pathmapfile GreatPillarTrunk9 
    1423 } 
    1424  
    1425 entity GreatPillarTrunk10 
    1426 { 
    1427         mesh GreatPillarTrunkShape3 
    1428         transformation 1 0 0 54.99995411 0 1 0 6 0 0 1 -5 0 0 0 1  
    1429         pathmapclusters 32 
    1430         pathmapfile GreatPillarTrunk10 
    1431 } 
    1432  
    1433 entity GreatPillarTrunk11 
    1434 { 
    1435         mesh GreatPillarTrunkShape3 
    1436         transformation 1 0 0 54.99995411 0 1 0 6 0 0 1 5 0 0 0 1  
    1437         pathmapclusters 32 
    1438         pathmapfile GreatPillarTrunk11 
    1439 } 
    1440  
    1441 entity GreatPillarTrunk12 
    1442 { 
    1443         mesh GreatPillarTrunkShape3 
    1444         transformation 1 0 0 54.99995411 0 1 0 6 0 0 1 15 0 0 0 1  
    1445         pathmapclusters 32 
    1446         pathmapfile GreatPillarTrunk12 
    1447 } 
    1448  
    1449 entity GreatPillarTrunk13 
    1450 { 
    1451         mesh GreatPillarTrunkShape3 
    1452         transformation 1 0 0 54.99995411 0 1 0 6 0 0 1 25 0 0 0 1  
    1453         pathmapclusters 32 
    1454         pathmapfile GreatPillarTrunk13 
    1455 } 
    1456  
    1457 entity GreatPillarTrunk14 
    1458 { 
    1459         mesh GreatPillarTrunkShape3 
    1460         transformation 1 0 0 54.99995411 0 1 0 6 0 0 1 -25 0 0 0 1  
    1461         pathmapclusters 32 
    1462         pathmapfile GreatPillarTrunk14 
    1463 } 
    1464  
    1465 entity GreatPillarTrunk15 
    1466 { 
    1467         mesh GreatPillarTrunkShape3 
    1468         transformation 1 0 0 44.99995411 0 1 0 6 0 0 1 -15 0 0 0 1  
    1469         pathmapclusters 32 
    1470         pathmapfile GreatPillarTrunk15 
    1471 } 
    1472  
    1473 entity GreatPillarTrunk16 
    1474 { 
    1475         mesh GreatPillarTrunkShape3 
    1476         transformation 1 0 0 44.99995411 0 1 0 6 0 0 1 -5 0 0 0 1  
    1477         pathmapclusters 32 
    1478         pathmapfile GreatPillarTrunk16 
    1479 } 
    1480  
    1481 entity GreatPillarTrunk17 
    1482 { 
    1483         mesh GreatPillarTrunkShape3 
    1484         transformation 1 0 0 44.99995411 0 1 0 6 0 0 1 5 0 0 0 1  
    1485         pathmapclusters 32 
    1486         pathmapfile GreatPillarTrunk17 
    1487 } 
    1488  
    1489 entity GreatPillarTrunk18 
    1490 { 
    1491         mesh GreatPillarTrunkShape3 
    1492         transformation 1 0 0 44.99995411 0 1 0 6 0 0 1 15 0 0 0 1  
    1493         pathmapclusters 32 
    1494         pathmapfile GreatPillarTrunk18 
    1495 } 
    1496  
    1497 entity GreatPillarTrunk19 
    1498 { 
    1499         mesh GreatPillarTrunkShape3 
    1500         transformation 1 0 0 44.99995411 0 1 0 6 0 0 1 25 0 0 0 1  
    1501         pathmapclusters 32 
    1502         pathmapfile GreatPillarTrunk19 
    1503 } 
    1504  
    1505 entity GreatPillarTrunk20 
    1506 { 
    1507         mesh GreatPillarTrunkShape3 
    1508         transformation 1 0 0 44.99995411 0 1 0 6 0 0 1 -25 0 0 0 1  
    1509         pathmapclusters 32 
    1510         pathmapfile GreatPillarTrunk20 
    1511 } 
    1512  
    1513 entity GreatPillarTrunk21 
    1514 { 
    1515         mesh GreatPillarTrunkShape3 
    1516         transformation 1 0 0 34.99995411 0 1 0 6 0 0 1 -15 0 0 0 1  
    1517         pathmapclusters 32 
    1518         pathmapfile GreatPillarTrunk21 
    1519 } 
    1520  
    1521 entity GreatPillarTrunk22 
    1522 { 
    1523         mesh GreatPillarTrunkShape3 
    1524         transformation 1 0 0 34.99995411 0 1 0 6 0 0 1 -5 0 0 0 1  
    1525         pathmapclusters 32 
    1526         pathmapfile GreatPillarTrunk22 
    1527 } 
    1528  
    1529 entity GreatPillarTrunk23 
    1530 { 
    1531         mesh GreatPillarTrunkShape3 
    1532         transformation 1 0 0 34.99995411 0 1 0 6 0 0 1 5 0 0 0 1  
    1533         pathmapclusters 32 
    1534         pathmapfile GreatPillarTrunk23 
    1535 } 
    1536  
    1537 entity GreatPillarTrunk24 
    1538 { 
    1539         mesh GreatPillarTrunkShape3 
    1540         transformation 1 0 0 34.99995411 0 1 0 6 0 0 1 15 0 0 0 1  
    1541         pathmapclusters 32 
    1542         pathmapfile GreatPillarTrunk24 
    1543 } 
    1544  
    1545 entity GreatPillarTrunk25 
    1546 { 
    1547         mesh GreatPillarTrunkShape3 
    1548         transformation 1 0 0 34.99995411 0 1 0 6 0 0 1 25 0 0 0 1  
    1549         pathmapclusters 32 
    1550         pathmapfile GreatPillarTrunk25 
    1551 } 
    1552  
    1553 entity GreatPillarTrunk26 
    1554 { 
    1555         mesh GreatPillarTrunkShape3 
    1556         transformation 1 0 0 34.99995411 0 1 0 6 0 0 1 -25 0 0 0 1  
    1557         pathmapclusters 32 
    1558         pathmapfile GreatPillarTrunk26 
    1559 } 
    1560  
    1561 entity GreatPillarTrunk27 
    1562 { 
    1563         mesh GreatPillarTrunkShape3 
    1564         transformation 1 0 0 24.99995411 0 1 0 6 0 0 1 -15 0 0 0 1  
    1565         pathmapclusters 32 
    1566         pathmapfile GreatPillarTrunk27 
    1567 } 
    1568  
    1569 entity GreatPillarTrunk28 
    1570 { 
    1571         mesh GreatPillarTrunkShape3 
    1572         transformation 1 0 0 24.99995411 0 1 0 6 0 0 1 -5 0 0 0 1  
    1573         pathmapclusters 32 
    1574         pathmapfile GreatPillarTrunk28 
    1575 } 
    1576  
    1577 entity GreatPillarTrunk29 
    1578 { 
    1579         mesh GreatPillarTrunkShape3 
    1580         transformation 1 0 0 24.99995411 0 1 0 6 0 0 1 5 0 0 0 1  
    1581         pathmapclusters 32 
    1582         pathmapfile GreatPillarTrunk29 
    1583 } 
    1584  
    1585 entity GreatPillarTrunk30 
    1586 { 
    1587         mesh GreatPillarTrunkShape3 
    1588         transformation 1 0 0 24.99995411 0 1 0 6 0 0 1 15 0 0 0 1  
    1589         pathmapclusters 32 
    1590         pathmapfile GreatPillarTrunk30 
    1591 } 
    1592  
    1593 entity GreatPillarTrunk31 
    1594 { 
    1595         mesh GreatPillarTrunkShape3 
    1596         transformation 1 0 0 24.99995411 0 1 0 6 0 0 1 25 0 0 0 1  
    1597         pathmapclusters 32 
    1598         pathmapfile GreatPillarTrunk31 
    1599 } 
    1600  
    1601 entity GreatPillarTrunk32 
    1602 { 
    1603         mesh GreatPillarTrunkShape3 
    1604         transformation 1 0 0 24.99995411 0 1 0 6 0 0 1 -25 0 0 0 1  
    1605         pathmapclusters 32 
    1606         pathmapfile GreatPillarTrunk32 
    1607 } 
    1608  
    1609 entity GreatPillarTrunk33 
    1610 { 
    1611         mesh GreatPillarTrunkShape3 
    1612         transformation 1 0 0 14.99995411 0 1 0 6 0 0 1 -15 0 0 0 1  
    1613         pathmapclusters 32 
    1614         pathmapfile GreatPillarTrunk33 
    1615 } 
    1616  
    1617 entity GreatPillarTrunk34 
    1618 { 
    1619         mesh GreatPillarTrunkShape3 
    1620         transformation 1 0 0 14.99995411 0 1 0 6 0 0 1 -5 0 0 0 1  
    1621         pathmapclusters 32 
    1622         pathmapfile GreatPillarTrunk34 
    1623 } 
    1624  
    1625 entity GreatPillarTrunk35 
    1626 { 
    1627         mesh GreatPillarTrunkShape3 
    1628         transformation 1 0 0 14.99995411 0 1 0 6 0 0 1 5 0 0 0 1  
    1629         pathmapclusters 32 
    1630         pathmapfile GreatPillarTrunk35 
    1631 } 
    1632  
    1633 entity GreatPillarTrunk36 
    1634 { 
    1635         mesh GreatPillarTrunkShape3 
    1636         transformation 1 0 0 14.99995411 0 1 0 6 0 0 1 15 0 0 0 1  
    1637         pathmapclusters 32 
    1638         pathmapfile GreatPillarTrunk36 
    1639 } 
    1640  
    1641 entity GreatPillarTrunk37 
    1642 { 
    1643         mesh GreatPillarTrunkShape3 
    1644         transformation 1 0 0 14.99995411 0 1 0 6 0 0 1 25 0 0 0 1  
    1645         pathmapclusters 32 
    1646         pathmapfile GreatPillarTrunk37 
    1647 } 
    1648  
    1649 entity GreatPillarTrunk38 
    1650 { 
    1651         mesh GreatPillarTrunkShape3 
    1652         transformation 1 0 0 14.99995411 0 1 0 6 0 0 1 -25 0 0 0 1  
    1653         pathmapclusters 32 
    1654         pathmapfile GreatPillarTrunk38 
    1655 } 
    1656  
    1657 entity GreatPillarTrunk39 
    1658 { 
    1659         mesh GreatPillarTrunkShape3 
    1660         transformation 1 0 0 4.999954108 0 1 0 6 0 0 1 -15 0 0 0 1  
    1661         pathmapclusters 32 
    1662         pathmapfile GreatPillarTrunk39 
    1663 } 
    1664  
    1665 entity GreatPillarTrunk40 
    1666 { 
    1667         mesh GreatPillarTrunkShape3 
    1668         transformation 1 0 0 4.999954108 0 1 0 6 0 0 1 -5 0 0 0 1  
    1669         pathmapclusters 32 
    1670         pathmapfile GreatPillarTrunk40 
    1671 } 
    1672  
    1673 entity GreatPillarTrunk41 
    1674 { 
    1675         mesh GreatPillarTrunkShape3 
    1676         transformation 1 0 0 4.999954108 0 1 0 6 0 0 1 5 0 0 0 1  
    1677         pathmapclusters 32 
    1678         pathmapfile GreatPillarTrunk41 
    1679 } 
    1680  
    1681 entity GreatPillarTrunk42 
    1682 { 
    1683         mesh GreatPillarTrunkShape3 
    1684         transformation 1 0 0 4.999954108 0 1 0 6 0 0 1 15 0 0 0 1  
    1685         pathmapclusters 32 
    1686         pathmapfile GreatPillarTrunk42 
    1687 } 
    1688  
    1689 entity GreatPillarTrunk43 
    1690 { 
    1691         mesh GreatPillarTrunkShape3 
    1692         transformation 1 0 0 4.999954108 0 1 0 6 0 0 1 25 0 0 0 1  
    1693         pathmapclusters 32 
    1694         pathmapfile GreatPillarTrunk43 
    1695 } 
    1696  
    1697 entity GreatPillarTrunk44 
    1698 { 
    1699         mesh GreatPillarTrunkShape3 
    1700         transformation 1 0 0 4.999954108 0 1 0 6 0 0 1 -25 0 0 0 1  
    1701         pathmapclusters 32 
    1702         pathmapfile GreatPillarTrunk44 
    1703 } 
    1704  
    1705 entity GreatPillarTrunk45 
    1706 { 
    1707         mesh GreatPillarTrunkShape3 
    1708         transformation 1 0 0 -5.000045892 0 1 0 6 0 0 1 -15 0 0 0 1  
    1709         pathmapclusters 32 
    1710         pathmapfile GreatPillarTrunk45 
    1711 } 
    1712  
    1713 entity GreatPillarTrunk46 
    1714 { 
    1715         mesh GreatPillarTrunkShape3 
    1716         transformation 1 0 0 -5.000045892 0 1 0 6 0 0 1 -5 0 0 0 1  
    1717         pathmapclusters 32 
    1718         pathmapfile GreatPillarTrunk46 
    1719 } 
    1720  
    1721 entity GreatPillarTrunk47 
    1722 { 
    1723         mesh GreatPillarTrunkShape3 
    1724         transformation 1 0 0 -5.000045892 0 1 0 6 0 0 1 5 0 0 0 1  
    1725         pathmapclusters 32 
    1726         pathmapfile GreatPillarTrunk47 
    1727 } 
    1728  
    1729 entity GreatPillarTrunk48 
    1730 { 
    1731         mesh GreatPillarTrunkShape3 
    1732         transformation 1 0 0 -5.000045892 0 1 0 6 0 0 1 15 0 0 0 1  
    1733         pathmapclusters 32 
    1734         pathmapfile GreatPillarTrunk48 
    1735 } 
    1736  
    1737 entity GreatPillarTrunk49 
    1738 { 
    1739         mesh GreatPillarTrunkShape3 
    1740         transformation 1 0 0 -5.000045892 0 1 0 6 0 0 1 25 0 0 0 1  
    1741         pathmapclusters 32 
    1742         pathmapfile GreatPillarTrunk49 
    1743 } 
    1744  
    1745 entity GreatPillarTrunk50 
    1746 { 
    1747         mesh GreatPillarTrunkShape3 
    1748         transformation 1 0 0 -5.000045892 0 1 0 6 0 0 1 -25 0 0 0 1  
    1749         pathmapclusters 32 
    1750         pathmapfile GreatPillarTrunk50 
    1751 } 
    1752  
    1753 entity GreatPillarTrunk51 
    1754 { 
    1755         mesh GreatPillarTrunkShape3 
    1756         transformation 1 0 0 -15.00004589 0 1 0 6 0 0 1 -15 0 0 0 1  
    1757         pathmapclusters 32 
    1758         pathmapfile GreatPillarTrunk51 
    1759 } 
    1760  
    1761 entity GreatPillarTrunk52 
    1762 { 
    1763         mesh GreatPillarTrunkShape3 
    1764         transformation 1 0 0 -15.00004589 0 1 0 6 0 0 1 -5 0 0 0 1  
    1765         pathmapclusters 32 
    1766         pathmapfile GreatPillarTrunk52 
    1767 } 
    1768  
    1769 entity GreatPillarTrunk53 
    1770 { 
    1771         mesh GreatPillarTrunkShape3 
    1772         transformation 1 0 0 -15.00004589 0 1 0 6 0 0 1 5 0 0 0 1  
    1773         pathmapclusters 32 
    1774         pathmapfile GreatPillarTrunk53 
    1775 } 
    1776  
    1777 entity GreatPillarTrunk54 
    1778 { 
    1779         mesh GreatPillarTrunkShape3 
    1780         transformation 1 0 0 -15.00004589 0 1 0 6 0 0 1 15 0 0 0 1  
    1781         pathmapclusters 32 
    1782         pathmapfile GreatPillarTrunk54 
    1783 } 
    1784  
    1785 entity GreatPillarTrunk55 
    1786 { 
    1787         mesh GreatPillarTrunkShape3 
    1788         transformation 1 0 0 -15.00004589 0 1 0 6 0 0 1 25 0 0 0 1  
    1789         pathmapclusters 32 
    1790         pathmapfile GreatPillarTrunk55 
    1791 } 
    1792  
    1793 entity GreatPillarTrunk56 
    1794 { 
    1795         mesh GreatPillarTrunkShape3 
    1796         transformation 1 0 0 -15.00004589 0 1 0 6 0 0 1 -25 0 0 0 1  
    1797         pathmapclusters 32 
    1798         pathmapfile GreatPillarTrunk56 
    1799 } 
    1800  
    1801 entity GreatPillarTrunk57 
    1802 { 
    1803         mesh GreatPillarTrunkShape3 
    1804         transformation 1 0 0 -25.00004589 0 1 0 6 0 0 1 -15 0 0 0 1  
    1805         pathmapclusters 32 
    1806         pathmapfile GreatPillarTrunk57 
    1807 } 
    1808  
    1809 entity GreatPillarTrunk58 
    1810 { 
    1811         mesh GreatPillarTrunkShape3 
    1812         transformation 1 0 0 -25.00004589 0 1 0 6 0 0 1 -5 0 0 0 1  
    1813         pathmapclusters 32 
    1814         pathmapfile GreatPillarTrunk58 
    1815 } 
    1816  
    1817 entity GreatPillarTrunk59 
    1818 { 
    1819         mesh GreatPillarTrunkShape3 
    1820         transformation 1 0 0 -25.00004589 0 1 0 6 0 0 1 5 0 0 0 1  
    1821         pathmapclusters 32 
    1822         pathmapfile GreatPillarTrunk59 
    1823 } 
    1824  
    1825 entity GreatPillarTrunk60 
    1826 { 
    1827         mesh GreatPillarTrunkShape3 
    1828         transformation 1 0 0 -25.00004589 0 1 0 6 0 0 1 15 0 0 0 1  
    1829         pathmapclusters 32 
    1830         pathmapfile GreatPillarTrunk60 
    1831 } 
    1832  
    1833 entity GreatPillarTrunk61 
    1834 { 
    1835         mesh GreatPillarTrunkShape3 
    1836         transformation 1 0 0 -25.00004589 0 1 0 6 0 0 1 25 0 0 0 1  
    1837         pathmapclusters 32 
    1838         pathmapfile GreatPillarTrunk61 
    1839 } 
    1840  
    1841 entity GreatPillarTrunk62 
    1842 { 
    1843         mesh GreatPillarTrunkShape3 
    1844         transformation 1 0 0 -25.00004589 0 1 0 6 0 0 1 -25 0 0 0 1  
    1845         pathmapclusters 32 
    1846         pathmapfile GreatPillarTrunk62 
    1847 } 
    1848  
    1849 entity GreatPillarTrunk63 
    1850 { 
    1851         mesh GreatPillarTrunkShape3 
    1852         transformation 1 0 0 -35.00004589 0 1 0 6 0 0 1 -15 0 0 0 1  
    1853         pathmapclusters 32 
    1854         pathmapfile GreatPillarTrunk63 
    1855 } 
    1856  
    1857 entity GreatPillarTrunk64 
    1858 { 
    1859         mesh GreatPillarTrunkShape3 
    1860         transformation 1 0 0 -35.00004589 0 1 0 6 0 0 1 -5 0 0 0 1  
    1861         pathmapclusters 32 
    1862         pathmapfile GreatPillarTrunk64 
    1863 } 
    1864  
    1865 entity GreatPillarTrunk65 
    1866 { 
    1867         mesh GreatPillarTrunkShape3 
    1868         transformation 1 0 0 -35.00004589 0 1 0 6 0 0 1 5 0 0 0 1  
    1869         pathmapclusters 32 
    1870         pathmapfile GreatPillarTrunk65 
    1871 } 
    1872  
    1873 entity GreatPillarTrunk66 
    1874 { 
    1875         mesh GreatPillarTrunkShape3 
    1876         transformation 1 0 0 -35.00004589 0 1 0 6 0 0 1 15 0 0 0 1  
    1877         pathmapclusters 32 
    1878         pathmapfile GreatPillarTrunk66 
    1879 } 
    1880  
    1881 entity GreatPillarTrunk67 
    1882 { 
    1883         mesh GreatPillarTrunkShape3 
    1884         transformation 1 0 0 -35.00004589 0 1 0 6 0 0 1 25 0 0 0 1  
    1885         pathmapclusters 32 
    1886         pathmapfile GreatPillarTrunk67 
    1887 } 
    1888  
    1889 entity GreatPillarTrunk68 
    1890 { 
    1891         mesh GreatPillarTrunkShape3 
    1892         transformation 1 0 0 -35.00004589 0 1 0 6 0 0 1 -25 0 0 0 1  
    1893         pathmapclusters 32 
    1894         pathmapfile GreatPillarTrunk68 
    1895 } 
    1896  
    1897 entity GreatPillarTrunk69 
    1898 { 
    1899         mesh GreatPillarTrunkShape3 
    1900         transformation 1 0 0 -45.00004589 0 1 0 6 0 0 1 -15 0 0 0 1  
    1901         pathmapclusters 32 
    1902         pathmapfile GreatPillarTrunk69 
    1903 } 
    1904  
    1905 entity GreatPillarTrunk70 
    1906 { 
    1907         mesh GreatPillarTrunkShape3 
    1908         transformation 1 0 0 -45.00004589 0 1 0 6 0 0 1 -5 0 0 0 1  
    1909         pathmapclusters 32 
    1910         pathmapfile GreatPillarTrunk70 
    1911 } 
    1912  
    1913 entity GreatPillarTrunk71 
    1914 { 
    1915         mesh GreatPillarTrunkShape3 
    1916         transformation 1 0 0 -45.00004589 0 1 0 6 0 0 1 5 0 0 0 1  
    1917         pathmapclusters 32 
    1918         pathmapfile GreatPillarTrunk71 
    1919 } 
    1920  
    1921 entity GreatPillarTrunk72 
    1922 { 
    1923         mesh GreatPillarTrunkShape3 
    1924         transformation 1 0 0 -45.00004589 0 1 0 6 0 0 1 15 0 0 0 1  
    1925         pathmapclusters 32 
    1926         pathmapfile GreatPillarTrunk72 
    1927 } 
    1928  
    1929 entity GreatPillarTrunk73 
    1930 { 
    1931         mesh GreatPillarTrunkShape3 
    1932         transformation 1 0 0 -45.00004589 0 1 0 6 0 0 1 25 0 0 0 1  
    1933         pathmapclusters 32 
    1934         pathmapfile GreatPillarTrunk73 
    1935 } 
    1936  
    1937 entity GreatPillarTrunk74 
    1938 { 
    1939         mesh GreatPillarTrunkShape3 
    1940         transformation 1 0 0 -45.00004589 0 1 0 6 0 0 1 -25 0 0 0 1  
    1941         pathmapclusters 32 
    1942         pathmapfile GreatPillarTrunk74 
    1943 } 
    1944  
    1945 entity GreatPillarTrunk75 
    1946 { 
    1947         mesh GreatPillarTrunkShape3 
    1948         transformation 1 0 0 -55.00004589 0 1 0 6 0 0 1 -15 0 0 0 1  
    1949         pathmapclusters 32 
    1950         pathmapfile GreatPillarTrunk75 
    1951 } 
    1952  
    1953 entity GreatPillarTrunk76 
    1954 { 
    1955         mesh GreatPillarTrunkShape3 
    1956         transformation 1 0 0 -55.00004589 0 1 0 6 0 0 1 -5 0 0 0 1  
    1957         pathmapclusters 32 
    1958         pathmapfile GreatPillarTrunk76 
    1959 } 
    1960  
    1961 entity GreatPillarTrunk77 
    1962 { 
    1963         mesh GreatPillarTrunkShape3 
    1964         transformation 1 0 0 -55.00004589 0 1 0 6 0 0 1 5 0 0 0 1  
    1965         pathmapclusters 32 
    1966         pathmapfile GreatPillarTrunk77 
    1967 } 
    1968  
    1969 entity GreatPillarTrunk78 
    1970 { 
    1971         mesh GreatPillarTrunkShape3 
    1972         transformation 1 0 0 -55.00004589 0 1 0 6 0 0 1 15 0 0 0 1  
    1973         pathmapclusters 32 
    1974         pathmapfile GreatPillarTrunk78 
    1975 } 
    1976  
    1977 entity GreatPillarTrunk79 
    1978 { 
    1979         mesh GreatPillarTrunkShape3 
    1980         transformation 1 0 0 -55.00004589 0 1 0 6 0 0 1 25 0 0 0 1  
    1981         pathmapclusters 32 
    1982         pathmapfile GreatPillarTrunk79 
    1983 } 
    1984  
    1985 entity GreatPillarTrunk80 
    1986 { 
    1987         mesh GreatPillarTrunkShape3 
    1988         transformation 1 0 0 -55.00004589 0 1 0 6 0 0 1 -25 0 0 0 1  
    1989         pathmapclusters 32 
    1990         pathmapfile GreatPillarTrunk80 
    1991 } 
    1992  
    1993 entity GreatPillarTrunk81 
    1994 { 
    1995         mesh GreatPillarTrunkShape3 
    1996         transformation 1 0 0 -65.00004589 0 1 0 6 0 0 1 -15 0 0 0 1  
    1997         pathmapclusters 32 
    1998         pathmapfile GreatPillarTrunk81 
    1999 } 
    2000  
    2001 entity GreatPillarTrunk82 
    2002 { 
    2003         mesh GreatPillarTrunkShape3 
    2004         transformation 1 0 0 -65.00004589 0 1 0 6 0 0 1 -5 0 0 0 1  
    2005         pathmapclusters 32 
    2006         pathmapfile GreatPillarTrunk82 
    2007 } 
    2008  
    2009 entity GreatPillarTrunk83 
    2010 { 
    2011         mesh GreatPillarTrunkShape3 
    2012         transformation 1 0 0 -65.00004589 0 1 0 6 0 0 1 5 0 0 0 1  
    2013         pathmapclusters 32 
    2014         pathmapfile GreatPillarTrunk83 
    2015 } 
    2016  
    2017 entity GreatPillarTrunk84 
    2018 { 
    2019         mesh GreatPillarTrunkShape3 
    2020         transformation 1 0 0 -65.00004589 0 1 0 6 0 0 1 15 0 0 0 1  
    2021         pathmapclusters 32 
    2022         pathmapfile GreatPillarTrunk84 
    2023 } 
    2024  
    2025 entity GreatPillarTrunk85 
    2026 { 
    2027         mesh GreatPillarTrunkShape3 
    2028         transformation 1 0 0 -65.00004589 0 1 0 6 0 0 1 25 0 0 0 1  
    2029         pathmapclusters 32 
    2030         pathmapfile GreatPillarTrunk85 
    2031 } 
    2032  
    2033 entity GreatPillarTrunk86 
    2034 { 
    2035         mesh GreatPillarTrunkShape3 
    2036         transformation 1 0 0 -65.00004589 0 1 0 6 0 0 1 -25 0 0 0 1  
    2037         pathmapclusters 32 
    2038         pathmapfile GreatPillarTrunk86 
    2039 } 
    2040  
    2041 mesh pPlaneShape1 
    2042 { 
    2043         ogreXMLfile pPlaneShape1.mesh.xml 
    2044         ogrefile pPlaneShape1.mesh 
     91mesh MoriaWallShape 
     92{ 
     93        ogrefile MoriaWallShape.mesh 
    204594        pathmapresolution 16 
    204695        divide 1 
    204796} 
    2048  
    2049 entity pPlane1 
    2050 { 
    2051         mesh pPlaneShape1 
     97entity FloorTile1 
     98{ 
     99        mesh FloorTile1Shape 
    2052100        transformation 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1  
    2053         pathmapclusters 32 
    2054         pathmapfile pPlane1 
    2055 } 
    2056  
    2057 mesh pPlaneShape2 
    2058 { 
    2059         ogreXMLfile pPlaneShape2.mesh.xml 
    2060         ogrefile pPlaneShape2.mesh 
    2061         pathmapresolution 16 
    2062         divide 1 
    2063 } 
    2064  
    2065 entity pPlane2 
    2066 { 
    2067         mesh pPlaneShape2 
    2068         transformation 1 0 0 0 0 1 0 8 0 0 1 30 0 0 0 1  
    2069         pathmapclusters 8 
    2070         pathmapfile pPlane2 
    2071 } 
    2072  
    2073 entity pPlane3 
    2074 { 
    2075         mesh pPlaneShape2 
    2076         transformation -1 0 1.224606354e-016 0 0 1 0 8 -1.224606354e-016 0 -1 -30 0 0 0 1  
    2077         pathmapclusters 8 
    2078         pathmapfile pPlane3 
    2079 } 
    2080  
    2081 mesh pPlaneShape3 
    2082 { 
    2083         ogreXMLfile pPlaneShape3.mesh.xml 
    2084         ogrefile pPlaneShape3.mesh 
    2085         pathmapresolution 16 
    2086         divide 1 
    2087 } 
    2088  
    2089 entity pPlane4 
    2090 { 
    2091         mesh pPlaneShape3 
    2092         transformation 1 0 0 -70 0 1 0 8 0 0 1 0 0 0 0 1  
    2093         pathmapclusters 8 
    2094         pathmapfile pPlane4 
    2095 } 
    2096  
    2097 entity pPlane5 
    2098 { 
    2099         mesh pPlaneShape3 
    2100         transformation -1 0 1.224606354e-016 70 0 1 0 8 -1.224606354e-016 0 -1 0 0 0 0 1  
    2101         pathmapclusters 8 
    2102         pathmapfile pPlane5 
    2103 } 
    2104  
     101        pathmapfile FloorTile1 
     102        pathmapclusters 32 
     103                subentity 0 clusters 6 4 5 33 12 7 17 0 22 28 20 24 23 2 30 21 42 50 14 19 49 32 1 60 13 29 16 31 40 43 8 18  
     104} 
     105entity FloorTile5 
     106{ 
     107        mesh FloorTile5Shape 
     108        transformation 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1  
     109        pathmapfile FloorTile5 
     110        pathmapclusters 32 
     111                subentity 0 clusters 5 1 8 3 2 7 25 18 12 28 19 21 26 10 6 17 24 9 30 27 4 11 22 0 31 13 15 23 20 14 16 33  
     112} 
     113entity FloorTile2 
     114{ 
     115        mesh FloorTileShape2 
     116        transformation 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1  
     117        pathmapfile FloorTile2 
     118        pathmapclusters 32 
     119                subentity 0 clusters 9 8 12 10 11 13 25 15 24 27 26 28 7 19 31 3 5 1 30 17 6 18 16 21 0 14 2 29 23 22 4 42  
     120} 
     121entity FloorTile3 
     122{ 
     123        mesh FloorTileShape3 
     124        transformation 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1  
     125        pathmapfile FloorTile3 
     126        pathmapclusters 32 
     127                subentity 0 clusters 40 41 44 33 14 57 43 42 60 58 35 59 56 49 29 39 61 51 34 16 47 17 23 32 55 6 45 63 13 50 37 30  
     128} 
     129entity FloorTile4 
     130{ 
     131        mesh FloorTileShape4 
     132        transformation 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1  
     133        pathmapfile FloorTile4 
     134        pathmapclusters 32 
     135                subentity 0 clusters 34 37 36 53 38 39 47 54 35 55 60 52 44 62 32 46 51 40 45 0 56 48 63 58 33 50 49 61 20 57 42 41  
     136} 
     137entity FloorTile6 
     138{ 
     139        mesh FloorTileShape6 
     140        transformation 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1  
     141        pathmapfile FloorTile6 
     142        pathmapclusters 32 
     143                subentity 0 clusters 14 13 12 6 16 24 42 15 17 31 29 43 30 7 28 33 41 23 59 5 9 49 60 40 19 4 0 27 58 22 11 8  
     144} 
     145entity FloorTile7 
     146{ 
     147        mesh FloorTileShape7 
     148        transformation 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1  
     149        pathmapfile FloorTile7 
     150        pathmapclusters 32 
     151                subentity 0 clusters 45 44 37 46 48 61 39 35 62 63 47 56 55 60 57 34 40 53 36 41 58 51 54 52 59 38 32 42 49 33 43 0  
     152} 
     153entity FloorTile8 
     154{ 
     155        mesh FloorTileShape8 
     156        transformation 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1  
     157        pathmapfile FloorTile8 
     158        pathmapclusters 32 
     159                subentity 0 clusters 32 33 34 40 4 20 60 50 35 51 47 42 49 38 52 0 23 58 44 6 55 39 14 17 22 41 43 56 36 59 29 37  
     160} 
     161entity GreatPillarHallCeilingBox 
     162{ 
     163        mesh GreatPillarHallCeilingBoxShape 
     164        transformation 1 0 0 -65 0 1 0 16.8383 0 0 1 -25 0 0 0 1  
     165        pathmapfile GreatPillarHallCeilingBox 
     166        pathmapclusters 32 
     167                subentity 0 clusters 18 3 2 1 25 26 21 19 7 8 5 28 10 27 12 17 9 30 24 11 22 6 0 4 31 15 23 13 20 16 14 50  
     168} 
     169entity GreatPillarHallCeilingBox1 
     170{ 
     171        mesh GreatPillarHallCeilingBoxShape 
     172        transformation 1 0 0 -55 0 1 0 16.8383 0 0 1 -25 0 0 0 1  
     173        pathmapfile GreatPillarHallCeilingBox1 
     174        pathmapclusters 32 
     175                subentity 0 clusters 18 2 21 1 3 7 19 28 5 25 26 8 17 10 0 22 30 24 12 6 27 4 9 11 31 23 20 15 13 50 14 16  
     176} 
     177entity GreatPillarHallCeilingBox2 
     178{ 
     179        mesh GreatPillarHallCeilingBoxShape 
     180        transformation 1 0 0 -45 0 1 0 16.8383 0 0 1 -25 0 0 0 1  
     181        pathmapfile GreatPillarHallCeilingBox2 
     182        pathmapclusters 32 
     183                subentity 0 clusters 21 2 28 18 7 19 1 5 0 3 17 22 25 30 26 8 24 6 4 12 10 23 20 27 31 9 11 50 13 15 33 14  
     184} 
     185entity GreatPillarHallCeilingBox3 
     186{ 
     187        mesh GreatPillarHallCeilingBoxShape 
     188        transformation 1 0 0 -35 0 1 0 16.8383 0 0 1 -25 0 0 0 1  
     189        pathmapfile GreatPillarHallCeilingBox3 
     190        pathmapclusters 32 
     191                subentity 0 clusters 21 2 28 5 22 7 17 0 19 18 1 30 4 6 24 20 3 23 25 12 8 26 50 31 10 27 33 42 49 14 13 9  
     192} 
     193entity GreatPillarHallCeilingBox4 
     194{ 
     195        mesh GreatPillarHallCeilingBoxShape 
     196        transformation 1 0 0 -25 0 1 0 16.8383 0 0 1 -25 0 0 0 1  
     197        pathmapfile GreatPillarHallCeilingBox4 
     198        pathmapclusters 32 
     199                subentity 0 clusters 21 22 2 17 28 5 4 20 7 30 0 6 23 19 24 50 1 18 12 33 49 42 3 25 31 8 14 32 26 29 60 13  
     200} 
     201entity GreatPillarHallCeilingBox5 
     202{ 
     203        mesh GreatPillarHallCeilingBoxShape 
     204        transformation 1 0 0 -15 0 1 0 16.8383 0 0 1 -25 0 0 0 1  
     205        pathmapfile GreatPillarHallCeilingBox5 
     206        pathmapclusters 32 
     207                subentity 0 clusters 22 20 17 4 21 23 50 2 28 7 6 30 0 5 24 33 49 42 19 32 60 12 51 14 1 29 18 31 40 58 43 16  
     208} 
     209entity GreatPillarHallCeilingBox6 
     210{ 
     211        mesh GreatPillarHallCeilingBoxShape 
     212        transformation 1 0 0 -5 0 1 0 16.8383 0 0 1 -25 0 0 0 1  
     213        pathmapfile GreatPillarHallCeilingBox6 
     214        pathmapclusters 32 
     215                subentity 0 clusters 22 50 20 7 4 17 23 60 33 49 0 6 32 21 30 42 28 51 2 5 24 35 14 52 40 29 58 47 19 34 43 12  
     216} 
     217entity GreatPillarHallCeilingBox7 
     218{ 
     219        mesh GreatPillarHallCeilingBoxShape 
     220        transformation 1 0 0 5 0 1 0 16.8383 0 0 1 -25 0 0 0 1  
     221        pathmapfile GreatPillarHallCeilingBox7 
     222        pathmapclusters 32 
     223                subentity 0 clusters 50 20 22 17 4 32 60 49 23 51 33 0 42 52 35 47 6 40 34 30 7 58 38 21 28 14 24 29 5 55 43 2  
     224} 
     225entity GreatPillarHallCeilingBox8 
     226{ 
     227        mesh GreatPillarHallCeilingBoxShape 
     228        transformation 1 0 0 15 0 1 0 16.8383 0 0 1 -25 0 0 0 1  
     229        pathmapfile GreatPillarHallCeilingBox8 
     230        pathmapclusters 32 
     231                subentity 0 clusters 50 47 20 60 51 32 52 49 0 35 33 38 22 4 34 23 42 40 58 17 55 6 39 36 54 30 14 56 44 43 29 59  
     232} 
     233entity GreatPillarHallCeilingBox9 
     234{ 
     235        mesh GreatPillarHallCeilingBoxShape 
     236        transformation 1 0 0 25 0 1 0 16.8383 0 0 1 -25 0 0 0 1  
     237        pathmapfile GreatPillarHallCeilingBox9 
     238        pathmapclusters 32 
     239                subentity 0 clusters 52 50 51 47 38 20 35 32 60 0 34 49 55 33 40 39 54 36 58 42 4 23 22 44 56 53 37 17 62 6 59 41  
     240} 
     241entity GreatPillarHallCeilingBox10 
     242{ 
     243        mesh GreatPillarHallCeilingBoxShape 
     244        transformation 1 0 0 35 0 1 0 16.8383 0 0 1 -25 0 0 0 1  
     245        pathmapfile GreatPillarHallCeilingBox10 
     246        pathmapclusters 32 
     247                subentity 0 clusters 52 38 51 47 34 35 32 55 50 54 60 20 36 39 49 53 0 40 33 37 58 44 62 56 42 4 23 22 46 63 45 59  
     248} 
     249entity GreatPillarHallCeilingBox11 
     250{ 
     251        mesh GreatPillarHallCeilingBoxShape 
     252        transformation 1 0 0 45 0 1 0 16.8383 0 0 1 -25 0 0 0 1  
     253        pathmapfile GreatPillarHallCeilingBox11 
     254        pathmapclusters 32 
     255                subentity 0 clusters 52 38 47 54 36 34 55 35 53 51 39 32 37 60 50 62 20 0 44 40 49 56 58 33 46 63 45 42 48 61 23 4  
     256} 
     257entity GreatPillarHallCeilingBox12 
     258{ 
     259        mesh GreatPillarHallCeilingBoxShape 
     260        transformation 1 0 0 55 0 1 0 16.8383 0 0 1 -25 0 0 0 1  
     261        pathmapfile GreatPillarHallCeilingBox12 
     262        pathmapclusters 32 
     263                subentity 0 clusters 54 38 52 36 53 47 55 34 35 39 37 51 62 0 32 60 46 44 50 56 40 45 20 63 49 58 48 33 61 42 57 41  
     264} 
     265entity GreatPillarHallCeilingBox13 
     266{ 
     267        mesh GreatPillarHallCeilingBoxShape 
     268        transformation 1 0 0 65 0 1 0 16.8383 0 0 1 -25 0 0 0 1  
     269        pathmapfile GreatPillarHallCeilingBox13 
     270        pathmapclusters 32 
     271                subentity 0 clusters 54 53 38 36 0 47 52 37 55 39 62 34 35 46 51 32 44 45 60 63 48 56 50 40 61 58 20 49 33 57 42 41  
     272} 
     273entity GreatPillarHallCeilingBox14 
     274{ 
     275        mesh GreatPillarHallCeilingBoxShape 
     276        transformation 1 0 0 65 0 1 0 16.8383 0 0 1 -15 0 0 0 1  
     277        pathmapfile GreatPillarHallCeilingBox14 
     278        pathmapclusters 32 
     279                subentity 0 clusters 54 53 47 36 0 62 37 55 38 39 52 46 35 34 51 45 63 48 44 56 60 32 61 40 58 50 49 57 33 20 42 41  
     280} 
     281entity GreatPillarHallCeilingBox15 
     282{ 
     283        mesh GreatPillarHallCeilingBoxShape 
     284        transformation 1 0 0 55 0 1 0 16.8383 0 0 1 -15 0 0 0 1  
     285        pathmapfile GreatPillarHallCeilingBox15 
     286        pathmapclusters 32 
     287                subentity 0 clusters 54 55 47 38 52 53 36 39 37 62 34 35 51 0 46 44 60 32 45 63 56 48 40 58 50 61 49 33 20 57 42 41  
     288} 
     289entity GreatPillarHallCeilingBox16 
     290{ 
     291        mesh GreatPillarHallCeilingBoxShape 
     292        transformation 1 0 0 45 0 1 0 16.8383 0 0 1 -15 0 0 0 1  
     293        pathmapfile GreatPillarHallCeilingBox16 
     294        pathmapclusters 32 
     295                subentity 0 clusters 52 55 47 35 38 54 39 51 34 36 53 60 37 62 32 44 56 40 50 46 58 49 63 0 20 45 33 61 48 42 57 41  
     296} 
     297entity GreatPillarHallCeilingBox17 
     298{ 
     299        mesh GreatPillarHallCeilingBoxShape 
     300        transformation 1 0 0 35 0 1 0 16.8383 0 0 1 -15 0 0 0 1  
     301        pathmapfile GreatPillarHallCeilingBox17 
     302        pathmapclusters 32 
     303                subentity 0 clusters 51 38 52 47 60 55 39 35 34 32 50 54 49 36 40 58 44 20 37 56 33 53 62 42 0 46 63 23 57 59 45 61  
     304} 
     305entity GreatPillarHallCeilingBox18 
     306{ 
     307        mesh GreatPillarHallCeilingBoxShape 
     308        transformation 1 0 0 25 0 1 0 16.8383 0 0 1 -15 0 0 0 1  
     309        pathmapfile GreatPillarHallCeilingBox18 
     310        pathmapclusters 32 
     311                subentity 0 clusters 51 52 60 50 47 32 35 49 34 38 55 20 33 40 39 58 42 56 23 44 0 54 36 4 22 37 59 41 43 62 57 17  
     312} 
     313entity GreatPillarHallCeilingBox19 
     314{ 
     315        mesh GreatPillarHallCeilingBoxShape 
     316        transformation 1 0 0 15 0 1 0 16.8383 0 0 1 -15 0 0 0 1  
     317        pathmapfile GreatPillarHallCeilingBox19 
     318        pathmapclusters 32 
     319                subentity 0 clusters 50 51 49 60 35 32 47 20 33 42 52 23 40 58 34 22 4 55 38 0 17 39 43 6 56 59 29 14 44 41 30 57  
     320} 
     321entity GreatPillarHallCeilingBox20 
     322{ 
     323        mesh GreatPillarHallCeilingBoxShape 
     324        transformation 1 0 0 5 0 1 0 16.8383 0 0 1 -15 0 0 0 1  
     325        pathmapfile GreatPillarHallCeilingBox20 
     326        pathmapclusters 32 
     327                subentity 0 clusters 50 23 49 20 60 22 33 17 42 51 32 35 4 6 58 40 47 30 52 0 43 14 29 7 34 24 28 59 21 41 55 38  
     328} 
     329entity GreatPillarHallCeilingBox21 
     330{ 
     331        mesh GreatPillarHallCeilingBoxShape 
     332        transformation 1 0 0 -5 0 1 0 16.8383 0 0 1 -15 0 0 0 1  
     333        pathmapfile GreatPillarHallCeilingBox21 
     334        pathmapclusters 32 
     335                subentity 0 clusters 22 23 50 20 17 4 42 49 7 33 6 30 28 60 24 32 21 51 0 14 29 5 58 40 43 35 2 59 12 19 16 47  
     336} 
     337entity GreatPillarHallCeilingBox22 
     338{ 
     339        mesh GreatPillarHallCeilingBoxShape 
     340        transformation 1 0 0 -15 0 1 0 16.8383 0 0 1 -15 0 0 0 1  
     341        pathmapfile GreatPillarHallCeilingBox22 
     342        pathmapclusters 32 
     343                subentity 0 clusters 22 23 17 30 24 21 7 4 28 6 20 50 5 33 42 49 2 0 19 14 12 29 60 32 31 16 51 43 13 58 40 1  
     344} 
     345entity GreatPillarHallCeilingBox23 
     346{ 
     347        mesh GreatPillarHallCeilingBoxShape 
     348        transformation 1 0 0 -25 0 1 0 16.8383 0 0 1 -15 0 0 0 1  
     349        pathmapfile GreatPillarHallCeilingBox23 
     350        pathmapclusters 32 
     351                subentity 0 clusters 21 22 30 7 17 28 24 23 6 5 19 4 2 20 12 0 50 1 31 18 42 33 49 14 29 25 13 8 16 26 3 27  
     352} 
     353entity GreatPillarHallCeilingBox24 
     354{ 
     355        mesh GreatPillarHallCeilingBoxShape 
     356        transformation 1 0 0 -35 0 1 0 16.8383 0 0 1 -15 0 0 0 1  
     357        pathmapfile GreatPillarHallCeilingBox24 
     358        pathmapclusters 32 
     359                subentity 0 clusters 21 7 28 19 17 5 30 24 2 22 6 18 1 12 4 23 25 0 3 8 26 31 20 10 27 13 9 50 14 42 15 29  
     360} 
     361entity GreatPillarHallCeilingBox25 
     362{ 
     363        mesh GreatPillarHallCeilingBoxShape 
     364        transformation 1 0 0 -45 0 1 0 16.8383 0 0 1 -15 0 0 0 1  
     365        pathmapfile GreatPillarHallCeilingBox25 
     366        pathmapclusters 32 
     367                subentity 0 clusters 21 19 28 7 18 2 5 1 25 17 3 26 24 30 8 22 12 10 6 27 0 31 4 23 9 11 15 13 20 16 14 29  
     368} 
     369entity GreatPillarHallCeilingBox26 
     370{ 
     371        mesh GreatPillarHallCeilingBoxShape 
     372        transformation 1 0 0 -55 0 1 0 16.8383 0 0 1 -15 0 0 0 1  
     373        pathmapfile GreatPillarHallCeilingBox26 
     374        pathmapclusters 32 
     375                subentity 0 clusters 18 19 2 25 1 7 21 3 26 28 8 5 10 17 27 24 30 12 9 11 6 22 31 0 4 15 23 13 20 16 14 29  
     376} 
     377entity GreatPillarHallCeilingBox27 
     378{ 
     379        mesh GreatPillarHallCeilingBoxShape 
     380        transformation 1 0 0 -65 0 1 0 16.8383 0 0 1 -15 0 0 0 1  
     381        pathmapfile GreatPillarHallCeilingBox27 
     382        pathmapclusters 32 
     383                subentity 0 clusters 18 25 3 26 1 19 7 2 8 28 21 10 5 27 11 9 12 24 30 17 31 6 22 15 0 4 13 23 16 20 14 29  
     384} 
     385entity GreatPillarHallCeilingBox28 
     386{ 
     387        mesh GreatPillarHallCeilingBoxShape 
     388        transformation 1 0 0 65 0 1 0 16.8383 0 0 1 -5 0 0 0 1  
     389        pathmapfile GreatPillarHallCeilingBox28 
     390        pathmapclusters 32 
     391                subentity 0 clusters 54 62 47 53 39 35 37 55 46 36 0 45 48 52 38 63 34 44 56 51 61 60 40 58 32 57 49 50 33 41 59 42  
     392} 
     393entity GreatPillarHallCeilingBox29 
     394{ 
     395        mesh GreatPillarHallCeilingBoxShape 
     396        transformation 1 0 0 55 0 1 0 16.8383 0 0 1 -5 0 0 0 1  
     397        pathmapfile GreatPillarHallCeilingBox29 
     398        pathmapclusters 32 
     399                subentity 0 clusters 55 62 54 47 53 39 37 35 52 36 46 34 38 44 63 51 45 56 48 60 0 61 40 58 32 57 49 50 33 41 42 59  
     400} 
     401entity GreatPillarHallCeilingBox30 
     402{ 
     403        mesh GreatPillarHallCeilingBoxShape 
     404        transformation 1 0 0 45 0 1 0 16.8383 0 0 1 -5 0 0 0 1  
     405        pathmapfile GreatPillarHallCeilingBox30 
     406        pathmapclusters 32 
     407                subentity 0 clusters 55 47 39 35 52 51 62 34 54 37 60 44 56 36 53 38 46 63 58 40 32 45 61 49 48 57 50 33 42 41 59 0  
     408} 
     409entity GreatPillarHallCeilingBox31 
     410{ 
     411        mesh GreatPillarHallCeilingBoxShape 
     412        transformation 1 0 0 35 0 1 0 16.8383 0 0 1 -5 0 0 0 1  
     413        pathmapfile GreatPillarHallCeilingBox31 
     414        pathmapclusters 32 
     415                subentity 0 clusters 51 55 47 39 35 60 52 34 56 58 40 44 49 32 38 62 37 50 54 33 36 42 63 57 61 53 46 59 41 45 20 43  
     416} 
     417entity GreatPillarHallCeilingBox32 
     418{ 
     419        mesh GreatPillarHallCeilingBoxShape 
     420        transformation 1 0 0 25 0 1 0 16.8383 0 0 1 -5 0 0 0 1  
     421        pathmapfile GreatPillarHallCeilingBox32 
     422        pathmapclusters 32 
     423                subentity 0 clusters 51 47 35 49 60 58 55 40 39 42 32 52 50 34 56 33 44 59 38 23 20 57 41 43 29 62 37 14 61 54 63 36  
     424} 
     425entity GreatPillarHallCeilingBox33 
     426{ 
     427        mesh GreatPillarHallCeilingBoxShape 
     428        transformation 1 0 0 15 0 1 0 16.8383 0 0 1 -5 0 0 0 1  
     429        pathmapfile GreatPillarHallCeilingBox33 
     430        pathmapclusters 32 
     431                subentity 0 clusters 49 51 60 42 58 50 33 35 40 32 23 47 43 59 52 20 56 55 34 29 39 41 14 17 22 44 4 57 6 38 30 0  
     432} 
     433entity GreatPillarHallCeilingBox34 
     434{ 
     435        mesh GreatPillarHallCeilingBoxShape 
     436        transformation 1 0 0 5 0 1 0 16.8383 0 0 1 -5 0 0 0 1  
     437        pathmapfile GreatPillarHallCeilingBox34 
     438        pathmapclusters 32 
     439                subentity 0 clusters 49 23 43 42 60 50 33 58 51 17 40 29 22 32 35 14 20 6 59 4 30 41 47 24 28 56 16 7 52 34 55 57  
     440} 
     441entity GreatPillarHallCeilingBox35 
     442{ 
     443        mesh GreatPillarHallCeilingBoxShape 
     444        transformation 1 0 0 -5 0 1 0 16.8383 0 0 1 -5 0 0 0 1  
     445        pathmapfile GreatPillarHallCeilingBox35 
     446        pathmapclusters 32 
     447                subentity 0 clusters 23 17 42 49 22 30 33 50 6 60 28 24 29 4 14 7 43 20 58 40 51 59 16 32 21 31 41 12 13 35 5 0  
     448} 
     449entity GreatPillarHallCeilingBox36 
     450{ 
     451        mesh GreatPillarHallCeilingBoxShape 
     452        transformation 1 0 0 -15 0 1 0 16.8383 0 0 1 -5 0 0 0 1  
     453        pathmapfile GreatPillarHallCeilingBox36 
     454        pathmapclusters 32 
     455                subentity 0 clusters 23 30 24 17 28 22 6 7 42 21 4 29 49 14 33 50 12 5 31 19 16 20 60 13 43 2 59 58 0 40 32 15  
     456} 
     457entity GreatPillarHallCeilingBox37 
     458{ 
     459        mesh GreatPillarHallCeilingBoxShape 
     460        transformation 1 0 0 -25 0 1 0 16.8383 0 0 1 -5 0 0 0 1  
     461        pathmapfile GreatPillarHallCeilingBox37 
     462        pathmapclusters 32 
     463                subentity 0 clusters 30 7 17 24 28 21 23 22 6 19 5 12 31 4 29 42 14 2 16 13 33 49 20 25 15 27 50 1 8 0 26 18  
     464} 
     465entity GreatPillarHallCeilingBox38 
     466{ 
     467        mesh GreatPillarHallCeilingBoxShape 
     468        transformation 1 0 0 -35 0 1 0 16.8383 0 0 1 -5 0 0 0 1  
     469        pathmapfile GreatPillarHallCeilingBox38 
     470        pathmapclusters 32 
     471                subentity 0 clusters 19 30 7 28 17 21 24 5 12 6 31 22 25 23 2 26 8 1 27 18 10 4 13 3 15 9 16 29 14 11 0 42  
     472} 
     473entity GreatPillarHallCeilingBox39 
     474{ 
     475        mesh GreatPillarHallCeilingBoxShape 
     476        transformation 1 0 0 -45 0 1 0 16.8383 0 0 1 -5 0 0 0 1  
     477        pathmapfile GreatPillarHallCeilingBox39 
     478        pathmapclusters 32 
     479                subentity 0 clusters 19 28 7 10 25 21 17 26 24 5 18 30 8 1 12 3 27 2 31 6 9 11 22 15 23 13 4 0 16 14 29 42  
     480} 
     481entity GreatPillarHallCeilingBox40 
     482{ 
     483        mesh GreatPillarHallCeilingBoxShape 
     484        transformation 1 0 0 -55 0 1 0 16.8383 0 0 1 -5 0 0 0 1  
     485        pathmapfile GreatPillarHallCeilingBox40 
     486        pathmapclusters 32 
     487                subentity 0 clusters 19 26 7 25 18 28 10 3 8 1 21 27 5 2 11 12 9 24 30 17 31 15 6 22 13 23 4 0 16 14 29 42  
     488} 
     489entity GreatPillarHallCeilingBox41 
     490{ 
     491        mesh GreatPillarHallCeilingBoxShape 
     492        transformation 1 0 0 -65 0 1 0 16.8383 0 0 1 -5 0 0 0 1  
     493        pathmapfile GreatPillarHallCeilingBox41 
     494        pathmapclusters 32 
     495                subentity 0 clusters 26 25 3 18 28 10 19 8 7 1 11 27 9 2 21 5 12 24 31 30 17 15 6 13 22 23 0 4 16 14 29 42  
     496} 
     497entity GreatPillarHallCeilingBox42 
     498{ 
     499        mesh GreatPillarHallCeilingBoxShape 
     500        transformation 1 0 0 65 0 1 0 16.8383 0 0 1 5 0 0 0 1  
     501        pathmapfile GreatPillarHallCeilingBox42 
     502        pathmapclusters 32 
     503                subentity 0 clusters 62 46 47 39 37 53 55 48 63 54 45 35 36 44 61 56 34 52 0 38 51 60 57 58 40 32 49 41 59 42 33 50  
     504} 
     505entity GreatPillarHallCeilingBox43 
     506{ 
     507        mesh GreatPillarHallCeilingBoxShape 
     508        transformation 1 0 0 55 0 1 0 16.8383 0 0 1 5 0 0 0 1  
     509        pathmapfile GreatPillarHallCeilingBox43 
     510        pathmapclusters 32 
     511                subentity 0 clusters 62 35 55 39 46 47 37 63 45 48 44 54 53 56 61 34 36 52 51 60 38 58 57 40 0 32 49 41 59 42 33 50  
     512} 
     513entity GreatPillarHallCeilingBox44 
     514{ 
     515        mesh GreatPillarHallCeilingBoxShape 
     516        transformation 1 0 0 45 0 1 0 16.8383 0 0 1 5 0 0 0 1  
     517        pathmapfile GreatPillarHallCeilingBox44 
     518        pathmapclusters 32 
     519                subentity 0 clusters 55 39 62 35 47 56 44 63 46 60 37 51 61 34 45 58 52 48 40 54 57 53 36 38 49 32 59 41 42 33 50 43  
     520} 
     521entity GreatPillarHallCeilingBox45 
     522{ 
     523        mesh GreatPillarHallCeilingBoxShape 
     524        transformation 1 0 0 35 0 1 0 16.8383 0 0 1 5 0 0 0 1  
     525        pathmapfile GreatPillarHallCeilingBox45 
     526        pathmapclusters 32 
     527                subentity 0 clusters 55 56 39 35 47 51 58 60 44 40 57 62 63 34 61 49 52 37 42 59 46 41 45 32 33 48 54 43 38 50 36 53  
     528} 
     529entity GreatPillarHallCeilingBox46 
     530{ 
     531        mesh GreatPillarHallCeilingBoxShape 
     532        transformation 1 0 0 25 0 1 0 16.8383 0 0 1 5 0 0 0 1  
     533        pathmapfile GreatPillarHallCeilingBox46 
     534        pathmapclusters 32 
     535                subentity 0 clusters 58 51 56 39 35 57 49 60 47 40 55 42 44 59 33 41 34 43 32 52 50 61 29 63 23 14 62 37 45 38 20 46  
     536} 
     537entity GreatPillarHallCeilingBox47 
     538{ 
     539        mesh GreatPillarHallCeilingBoxShape 
     540        transformation 1 0 0 15 0 1 0 16.8383 0 0 1 5 0 0 0 1  
     541        pathmapfile GreatPillarHallCeilingBox47 
     542        pathmapclusters 32 
     543                subentity 0 clusters 49 58 42 43 60 40 59 51 33 56 35 29 41 23 57 50 14 47 39 44 32 55 17 34 52 16 6 61 20 30 22 4  
     544} 
     545entity GreatPillarHallCeilingBox48 
     546{ 
     547        mesh GreatPillarHallCeilingBoxShape 
     548        transformation 1 0 0 5 0 1 0 16.8383 0 0 1 5 0 0 0 1  
     549        pathmapfile GreatPillarHallCeilingBox48 
     550        pathmapclusters 32 
     551                subentity 0 clusters 42 49 60 43 58 29 23 17 59 33 40 14 41 51 50 30 6 35 16 56 24 57 22 32 4 28 13 20 47 44 31 39  
     552} 
     553entity GreatPillarHallCeilingBox49 
     554{ 
     555        mesh GreatPillarHallCeilingBoxShape 
     556        transformation 1 0 0 -5 0 1 0 16.8383 0 0 1 5 0 0 0 1  
     557        pathmapfile GreatPillarHallCeilingBox49 
     558        pathmapclusters 32 
     559                subentity 0 clusters 23 29 42 43 17 49 30 60 14 28 16 24 59 6 33 58 22 40 31 41 13 50 7 4 12 51 20 35 32 21 57 15  
     560} 
     561entity GreatPillarHallCeilingBox50 
     562{ 
     563        mesh GreatPillarHallCeilingBoxShape 
     564        transformation 1 0 0 -15 0 1 0 16.8383 0 0 1 5 0 0 0 1  
     565        pathmapfile GreatPillarHallCeilingBox50 
     566        pathmapclusters 32 
     567                subentity 0 clusters 30 23 24 17 28 29 16 42 6 31 14 7 13 12 22 49 43 33 59 19 21 60 4 15 58 5 50 41 40 20 0 27  
     568} 
     569entity GreatPillarHallCeilingBox51 
     570{ 
     571        mesh GreatPillarHallCeilingBoxShape 
     572        transformation 1 0 0 -25 0 1 0 16.8383 0 0 1 5 0 0 0 1  
     573        pathmapfile GreatPillarHallCeilingBox51 
     574        pathmapclusters 32 
     575                subentity 0 clusters 30 24 17 28 31 7 23 12 6 19 16 13 29 21 14 15 22 5 42 27 4 25 43 49 9 8 33 10 26 59 11 2  
     576} 
     577entity GreatPillarHallCeilingBox52 
     578{ 
     579        mesh GreatPillarHallCeilingBoxShape 
     580        transformation 1 0 0 -35 0 1 0 16.8383 0 0 1 5 0 0 0 1  
     581        pathmapfile GreatPillarHallCeilingBox52 
     582        pathmapclusters 32 
     583                subentity 0 clusters 24 30 19 31 17 7 28 12 27 21 6 25 15 13 5 26 10 23 8 9 16 11 29 22 14 1 18 2 42 3 4 0  
     584} 
     585entity GreatPillarHallCeilingBox53 
     586{ 
     587        mesh GreatPillarHallCeilingBoxShape 
     588        transformation 1 0 0 -45 0 1 0 16.8383 0 0 1 5 0 0 0 1  
     589        pathmapfile GreatPillarHallCeilingBox53 
     590        pathmapclusters 32 
     591                subentity 0 clusters 19 7 27 25 24 26 10 28 31 17 12 30 8 11 9 15 21 5 18 1 3 13 6 2 16 23 22 29 14 0 4 42  
     592} 
     593entity GreatPillarHallCeilingBox54 
     594{ 
     595        mesh GreatPillarHallCeilingBoxShape 
     596        transformation 1 0 0 -55 0 1 0 16.8383 0 0 1 5 0 0 0 1  
     597        pathmapfile GreatPillarHallCeilingBox54 
     598        pathmapclusters 32 
     599                subentity 0 clusters 26 25 27 19 10 28 11 7 8 9 3 18 12 24 31 1 15 5 21 30 17 2 13 6 16 23 22 0 29 14 4 42  
     600} 
     601entity GreatPillarHallCeilingBox55 
     602{ 
     603        mesh GreatPillarHallCeilingBoxShape 
     604        transformation 1 0 0 -65 0 1 0 16.8383 0 0 1 5 0 0 0 1  
     605        pathmapfile GreatPillarHallCeilingBox55 
     606        pathmapclusters 32 
     607                subentity 0 clusters 26 25 10 11 27 8 3 19 18 9 28 7 1 12 24 31 15 5 21 2 30 17 13 6 16 22 23 0 29 14 4 42  
     608} 
     609entity GreatPillarHallCeilingBox56 
     610{ 
     611        mesh GreatPillarHallCeilingBoxShape 
     612        transformation 1 0 0 65 0 1 0 16.8383 0 0 1 15 0 0 0 1  
     613        pathmapfile GreatPillarHallCeilingBox56 
     614        pathmapclusters 32 
     615                subentity 0 clusters 62 48 46 63 45 39 37 61 55 47 35 44 53 56 54 36 57 34 52 51 58 60 40 38 0 41 59 49 32 42 43 33  
     616} 
     617entity GreatPillarHallCeilingBox57 
     618{ 
     619        mesh GreatPillarHallCeilingBoxShape 
     620        transformation 1 0 0 55 0 1 0 16.8383 0 0 1 15 0 0 0 1  
     621        pathmapfile GreatPillarHallCeilingBox57 
     622        pathmapclusters 32 
     623                subentity 0 clusters 62 63 46 48 39 45 61 55 35 56 47 37 44 57 53 54 58 34 60 51 36 40 52 41 59 38 49 42 32 43 33 0  
     624} 
     625entity GreatPillarHallCeilingBox58 
     626{ 
     627        mesh GreatPillarHallCeilingBoxShape 
     628        transformation 1 0 0 45 0 1 0 16.8383 0 0 1 15 0 0 0 1  
     629        pathmapfile GreatPillarHallCeilingBox58 
     630        pathmapclusters 32 
     631                subentity 0 clusters 63 56 62 39 46 35 61 55 44 47 45 48 57 58 37 60 51 40 34 59 41 52 54 49 42 53 36 43 32 33 38 29  
     632} 
     633entity GreatPillarHallCeilingBox59 
     634{ 
     635        mesh GreatPillarHallCeilingBoxShape 
     636        transformation 1 0 0 35 0 1 0 16.8383 0 0 1 15 0 0 0 1  
     637        pathmapfile GreatPillarHallCeilingBox59 
     638        pathmapclusters 32 
     639                subentity 0 clusters 56 61 39 35 58 44 57 55 63 47 60 40 59 62 51 41 45 42 46 49 48 34 37 43 52 33 29 32 14 54 50 36  
     640} 
     641entity GreatPillarHallCeilingBox60 
     642{ 
     643        mesh GreatPillarHallCeilingBoxShape 
     644        transformation 1 0 0 25 0 1 0 16.8383 0 0 1 15 0 0 0 1  
     645        pathmapfile GreatPillarHallCeilingBox60 
     646        pathmapclusters 32 
     647                subentity 0 clusters 58 56 39 57 59 42 35 40 60 44 41 49 61 51 43 55 47 63 29 33 14 34 62 45 23 32 52 46 50 48 37 16  
     648} 
     649entity GreatPillarHallCeilingBox61 
     650{ 
     651        mesh GreatPillarHallCeilingBoxShape 
     652        transformation 1 0 0 15 0 1 0 16.8383 0 0 1 15 0 0 0 1  
     653        pathmapfile GreatPillarHallCeilingBox61 
     654        pathmapclusters 32 
     655                subentity 0 clusters 58 59 42 43 60 49 40 56 29 41 57 35 14 33 51 44 23 39 16 61 17 55 47 50 32 63 34 30 6 13 24 52  
     656} 
     657entity GreatPillarHallCeilingBox62 
     658{ 
     659        mesh GreatPillarHallCeilingBoxShape 
     660        transformation 1 0 0 5 0 1 0 16.8383 0 0 1 15 0 0 0 1  
     661        pathmapfile GreatPillarHallCeilingBox62 
     662        pathmapclusters 32 
     663                subentity 0 clusters 29 59 58 60 43 42 49 41 14 23 17 40 16 33 57 56 30 35 13 51 24 6 31 44 50 28 32 39 22 61 12 47  
     664} 
     665entity GreatPillarHallCeilingBox63 
     666{ 
     667        mesh GreatPillarHallCeilingBoxShape 
     668        transformation 1 0 0 -5 0 1 0 16.8383 0 0 1 15 0 0 0 1  
     669        pathmapfile GreatPillarHallCeilingBox63 
     670        pathmapclusters 32 
     671                subentity 0 clusters 29 43 42 17 59 23 16 14 24 30 60 49 28 58 31 13 41 6 33 40 12 15 57 0 7 22 56 50 35 51 4 19  
     672} 
     673entity GreatPillarHallCeilingBox64 
     674{ 
     675        mesh GreatPillarHallCeilingBoxShape 
     676        transformation 1 0 0 -15 0 1 0 16.8383 0 0 1 15 0 0 0 1  
     677        pathmapfile GreatPillarHallCeilingBox64 
     678        pathmapclusters 32 
     679                subentity 0 clusters 16 29 31 24 30 17 28 23 42 13 14 43 6 12 15 59 7 49 41 58 60 33 19 0 22 27 40 21 4 5 9 50  
     680} 
     681entity GreatPillarHallCeilingBox65 
     682{ 
     683        mesh GreatPillarHallCeilingBoxShape 
     684        transformation 1 0 0 -25 0 1 0 16.8383 0 0 1 15 0 0 0 1  
     685        pathmapfile GreatPillarHallCeilingBox65 
     686        pathmapclusters 32 
     687                subentity 0 clusters 31 24 30 28 16 13 17 15 29 12 7 23 14 19 6 27 42 43 9 11 59 10 21 5 25 0 22 26 49 8 33 41  
     688} 
     689entity GreatPillarHallCeilingBox66 
     690{ 
     691        mesh GreatPillarHallCeilingBoxShape 
     692        transformation 1 0 0 -35 0 1 0 16.8383 0 0 1 15 0 0 0 1  
     693        pathmapfile GreatPillarHallCeilingBox66 
     694        pathmapclusters 32 
     695                subentity 0 clusters 31 24 15 30 27 19 12 28 7 17 13 16 10 9 11 25 26 29 6 8 23 14 5 21 0 42 43 22 1 18 3 59  
     696} 
     697entity GreatPillarHallCeilingBox67 
     698{ 
     699        mesh GreatPillarHallCeilingBoxShape 
     700        transformation 1 0 0 -45 0 1 0 16.8383 0 0 1 15 0 0 0 1  
     701        pathmapfile GreatPillarHallCeilingBox67 
     702        pathmapclusters 32 
     703                subentity 0 clusters 27 31 25 28 19 10 24 15 11 26 12 9 7 30 17 8 13 16 5 21 6 3 18 0 1 29 23 14 2 22 42 43  
     704} 
     705entity GreatPillarHallCeilingBox68 
     706{ 
     707        mesh GreatPillarHallCeilingBoxShape 
     708        transformation 1 0 0 -55 0 1 0 16.8383 0 0 1 15 0 0 0 1  
     709        pathmapfile GreatPillarHallCeilingBox68 
     710        pathmapclusters 32 
     711                subentity 0 clusters 27 25 26 10 11 28 9 19 8 31 15 12 24 7 3 30 13 18 17 1 5 21 16 6 2 0 29 23 14 22 42 4  
     712} 
     713entity GreatPillarHallCeilingBox69 
     714{ 
     715        mesh GreatPillarHallCeilingBoxShape 
     716        transformation 1 0 0 -65 0 1 0 16.8383 0 0 1 15 0 0 0 1  
     717        pathmapfile GreatPillarHallCeilingBox69 
     718        pathmapclusters 32 
     719                subentity 0 clusters 27 26 25 10 28 11 9 8 19 3 15 31 7 12 18 24 1 30 13 5 21 17 2 16 6 0 29 23 14 22 4 42  
     720} 
     721entity GreatPillarHallCeilingBox70 
     722{ 
     723        mesh GreatPillarHallCeilingBoxShape 
     724        transformation 1 0 0 65 0 1 0 16.8383 0 0 1 25 0 0 0 1  
     725        pathmapfile GreatPillarHallCeilingBox70 
     726        pathmapclusters 32 
     727                subentity 0 clusters 63 48 46 62 45 61 39 37 56 44 55 35 47 57 53 54 58 36 34 40 60 51 41 59 52 38 43 49 42 0 32 33  
     728} 
     729entity GreatPillarHallCeilingBox71 
     730{ 
     731        mesh GreatPillarHallCeilingBoxShape 
     732        transformation 1 0 0 55 0 1 0 16.8383 0 0 1 25 0 0 0 1  
     733        pathmapfile GreatPillarHallCeilingBox71 
     734        pathmapclusters 32 
     735                subentity 0 clusters 63 48 61 46 62 45 39 56 44 35 55 57 37 47 58 60 40 41 59 53 34 54 51 36 52 43 42 49 38 33 32 29  
     736} 
     737entity GreatPillarHallCeilingBox72 
     738{ 
     739        mesh GreatPillarHallCeilingBoxShape 
     740        transformation 1 0 0 45 0 1 0 16.8383 0 0 1 25 0 0 0 1  
     741        pathmapfile GreatPillarHallCeilingBox72 
     742        pathmapclusters 32 
     743                subentity 0 clusters 63 61 56 35 46 48 57 39 44 45 62 55 58 47 59 37 41 60 40 51 43 42 34 49 54 52 53 29 36 33 14 32  
     744} 
     745entity GreatPillarHallCeilingBox73 
     746{ 
     747        mesh GreatPillarHallCeilingBoxShape 
     748        transformation 1 0 0 35 0 1 0 16.8383 0 0 1 25 0 0 0 1  
     749        pathmapfile GreatPillarHallCeilingBox73 
     750        pathmapclusters 32 
     751                subentity 0 clusters 56 57 61 63 35 44 58 39 59 41 45 48 55 60 40 62 42 46 43 47 51 49 37 29 34 33 14 52 16 32 23 54  
     752} 
     753entity GreatPillarHallCeilingBox74 
     754{ 
     755        mesh GreatPillarHallCeilingBoxShape 
     756        transformation 1 0 0 25 0 1 0 16.8383 0 0 1 25 0 0 0 1  
     757        pathmapfile GreatPillarHallCeilingBox74 
     758        pathmapclusters 32 
     759                subentity 0 clusters 59 56 57 42 58 35 61 41 60 43 44 40 63 39 29 49 55 51 14 45 47 48 33 62 16 46 23 34 37 17 32 50  
     760} 
     761entity GreatPillarHallCeilingBox75 
     762{ 
     763        mesh GreatPillarHallCeilingBoxShape 
     764        transformation 1 0 0 15 0 1 0 16.8383 0 0 1 25 0 0 0 1  
     765        pathmapfile GreatPillarHallCeilingBox75 
     766        pathmapclusters 32 
     767                subentity 0 clusters 59 42 43 57 58 56 60 41 29 35 40 49 14 61 16 44 33 39 23 51 17 63 55 13 47 31 45 30 24 6 50 32  
     768} 
     769entity GreatPillarHallCeilingBox76 
     770{ 
     771        mesh GreatPillarHallCeilingBoxShape 
     772        transformation 1 0 0 5 0 1 0 16.8383 0 0 1 25 0 0 0 1  
     773        pathmapfile GreatPillarHallCeilingBox76 
     774        pathmapclusters 32 
     775                subentity 0 clusters 59 43 29 17 42 58 16 41 57 14 60 49 40 56 23 13 33 31 35 24 30 44 61 6 0 51 15 28 39 12 50 63  
     776} 
     777entity GreatPillarHallCeilingBox77 
     778{ 
     779        mesh GreatPillarHallCeilingBoxShape 
     780        transformation 1 0 0 -5 0 1 0 16.8383 0 0 1 25 0 0 0 1  
     781        pathmapfile GreatPillarHallCeilingBox77 
     782        pathmapclusters 32 
     783                subentity 0 clusters 29 43 16 59 17 42 14 31 13 41 0 24 28 58 23 30 60 49 15 57 40 6 33 12 56 35 7 44 51 22 50 19  
     784} 
     785entity GreatPillarHallCeilingBox78 
     786{ 
     787        mesh GreatPillarHallCeilingBoxShape 
     788        transformation 1 0 0 -15 0 1 0 16.8383 0 0 1 25 0 0 0 1  
     789        pathmapfile GreatPillarHallCeilingBox78 
     790        pathmapclusters 32 
     791                subentity 0 clusters 29 16 31 24 28 13 17 42 43 15 14 0 30 59 23 12 41 6 58 49 7 60 27 33 19 57 40 9 11 22 10 56  
     792} 
     793entity GreatPillarHallCeilingBox79 
     794{ 
     795        mesh GreatPillarHallCeilingBoxShape 
     796        transformation 1 0 0 -25 0 1 0 16.8383 0 0 1 25 0 0 0 1  
     797        pathmapfile GreatPillarHallCeilingBox79 
     798        pathmapclusters 32 
     799                subentity 0 clusters 31 16 15 17 13 24 29 28 30 12 14 27 0 43 42 23 7 11 19 9 6 59 10 25 41 26 8 49 5 58 21 33  
     800} 
     801entity GreatPillarHallCeilingBox80 
     802{ 
     803        mesh GreatPillarHallCeilingBoxShape 
     804        transformation 1 0 0 -35 0 1 0 16.8383 0 0 1 25 0 0 0 1  
     805        pathmapfile GreatPillarHallCeilingBox80 
     806        pathmapclusters 32 
     807                subentity 0 clusters 31 15 27 24 13 17 16 28 12 0 11 9 30 10 19 29 7 25 26 14 8 6 23 43 42 5 21 59 41 22 1 18  
     808} 
     809entity GreatPillarHallCeilingBox81 
     810{ 
     811        mesh GreatPillarHallCeilingBoxShape 
     812        transformation 1 0 0 -45 0 1 0 16.8383 0 0 1 25 0 0 0 1  
     813        pathmapfile GreatPillarHallCeilingBox81 
     814        pathmapclusters 32 
     815                subentity 0 clusters 27 31 15 11 28 9 24 10 12 25 13 0 26 19 16 8 30 7 17 29 6 14 5 3 21 23 18 1 43 42 59 2  
     816} 
     817entity GreatPillarHallCeilingBox82 
     818{ 
     819        mesh GreatPillarHallCeilingBoxShape 
     820        transformation 1 0 0 -55 0 1 0 16.8383 0 0 1 25 0 0 0 1  
     821        pathmapfile GreatPillarHallCeilingBox82 
     822        pathmapclusters 32 
     823                subentity 0 clusters 27 11 25 10 9 28 15 26 31 8 12 19 24 13 7 30 3 16 0 17 18 1 5 21 6 29 14 23 2 43 42 22  
     824} 
     825entity GreatPillarHallCeilingBox83 
     826{ 
     827        mesh GreatPillarHallCeilingBoxShape 
     828        transformation 1 0 0 -65 0 1 0 16.8383 0 0 1 25 0 0 0 1  
     829        pathmapfile GreatPillarHallCeilingBox83 
     830        pathmapclusters 32 
     831                subentity 0 clusters 10 27 25 11 9 26 8 15 28 31 19 12 24 3 7 13 18 1 30 16 17 5 21 0 6 2 29 14 23 22 43 42  
     832} 
     833entity GreatPillarHeadHalf 
     834{ 
     835        mesh GreatPillarHeadHalfShape 
     836        transformation 1 0 0 60 0 1 0 13 0 0 1 -30.0008 0 0 0 1  
     837        pathmapfile GreatPillarHeadHalf 
     838        pathmapclusters 32 
     839                subentity 0 clusters 38 54 53 36 52 47 34 55 37 0 39 62 35 51 32 46 60 44 50 45 20 63 40 56 48 49 58 33 61 42 57 41  
     840} 
     841entity GreatPillarHeadHalf1 
     842{ 
     843        mesh GreatPillarHeadHalfShape 
     844        transformation 1 0 0 50 0 1 0 13 0 0 1 -30.0008 0 0 0 1  
     845        pathmapfile GreatPillarHeadHalf1 
     846        pathmapclusters 32 
     847                subentity 0 clusters 38 54 52 36 53 34 47 55 35 51 39 37 32 62 60 0 50 20 44 46 40 49 56 33 58 45 63 48 42 61 4 57  
     848} 
     849entity GreatPillarHeadHalf2 
     850{ 
     851        mesh GreatPillarHeadHalfShape 
     852        transformation 1 0 0 40 0 1 0 13 0 0 1 -30.0008 0 0 0 1  
     853        pathmapfile GreatPillarHeadHalf2 
     854        pathmapclusters 32 
     855                subentity 0 clusters 52 38 34 54 51 36 47 32 35 55 50 53 39 60 20 37 0 49 40 62 33 44 58 56 42 46 4 23 22 63 45 61  
     856} 
     857entity GreatPillarHeadHalf3 
     858{ 
     859        mesh GreatPillarHeadHalfShape 
     860        transformation 1 0 0 30 0 1 0 13 0 0 1 -30.0008 0 0 0 1  
     861        pathmapfile GreatPillarHeadHalf3 
     862        pathmapclusters 32 
     863                subentity 0 clusters 52 38 51 32 50 20 34 47 0 35 60 55 54 36 49 39 33 40 53 4 58 37 42 22 44 23 56 62 17 6 41 59  
     864} 
     865entity GreatPillarHeadHalf4 
     866{ 
     867        mesh GreatPillarHeadHalfShape 
     868        transformation 1 0 0 20 0 1 0 13 0 0 1 -30.0008 0 0 0 1  
     869        pathmapfile GreatPillarHeadHalf4 
     870        pathmapclusters 32 
     871                subentity 0 clusters 50 20 0 52 32 51 38 35 60 47 34 49 33 4 22 55 40 23 42 39 58 36 54 17 6 44 56 53 37 14 30 59  
     872} 
     873entity GreatPillarHeadHalf5 
     874{ 
     875        mesh GreatPillarHeadHalfShape 
     876        transformation 1 0 0 9.99995 0 1 0 13 0 0 1 -30.0008 0 0 0 1  
     877        pathmapfile GreatPillarHeadHalf5 
     878        pathmapclusters 32 
     879                subentity 0 clusters 20 50 32 51 0 22 4 60 49 33 52 47 23 35 38 34 17 42 40 6 58 55 30 21 7 14 39 28 29 5 43 36  
     880} 
     881entity GreatPillarHeadHalf6 
     882{ 
     883        mesh GreatPillarHeadHalfShape 
     884        transformation 1 0 0 -4.5892e-005 0 1 0 13 0 0 1 -30.0008 0 0 0 1  
     885        pathmapfile GreatPillarHeadHalf6 
     886        pathmapclusters 32 
     887                subentity 0 clusters 50 20 22 4 0 32 17 23 33 60 49 51 6 42 21 7 52 30 35 28 2 47 5 40 34 24 38 58 14 29 43 19  
     888} 
     889entity GreatPillarHeadHalf7 
     890{ 
     891        mesh GreatPillarHeadHalfShape 
     892        transformation 1 0 0 -10 0 1 0 13 0 0 1 -30.0008 0 0 0 1  
     893        pathmapfile GreatPillarHeadHalf7 
     894        pathmapclusters 32 
     895                subentity 0 clusters 22 20 17 4 50 0 23 21 2 6 7 28 33 5 30 32 49 60 42 24 51 19 14 12 40 52 29 35 1 58 47 18  
     896} 
     897entity GreatPillarHeadHalf8 
     898{ 
     899        mesh GreatPillarHeadHalfShape 
     900        transformation 1 0 0 -20 0 1 0 13 0 0 1 -30.0008 0 0 0 1  
     901        pathmapfile GreatPillarHeadHalf8 
     902        pathmapclusters 32 
     903                subentity 0 clusters 22 20 2 21 4 17 0 5 28 7 6 23 50 30 24 19 33 1 49 18 32 42 12 60 14 51 3 29 31 25 8 26  
     904} 
     905entity GreatPillarHeadHalf9 
     906{ 
     907        mesh GreatPillarHeadHalfShape 
     908        transformation 1 0 0 -30 0 1 0 13 0 0 1 -30.0008 0 0 0 1  
     909        pathmapfile GreatPillarHeadHalf9 
     910        pathmapclusters 32 
     911                subentity 0 clusters 2 21 22 5 0 28 17 4 7 20 19 30 6 1 18 23 24 50 3 12 25 8 33 26 49 42 31 14 32 10 27 29  
     912} 
     913entity GreatPillarHeadHalf10 
     914{ 
     915        mesh GreatPillarHeadHalfShape 
     916        transformation 1 0 0 -40 0 1 0 13 0 0 1 -30.0008 0 0 0 1  
     917        pathmapfile GreatPillarHeadHalf10 
     918        pathmapclusters 32 
     919                subentity 0 clusters 2 0 21 28 5 18 1 7 19 22 17 3 4 30 6 25 24 20 8 26 12 23 10 50 31 27 9 33 13 42 14 49  
     920} 
     921entity GreatPillarHeadHalf11 
     922{ 
     923        mesh GreatPillarHeadHalfShape 
     924        transformation 1 0 0 -50 0 1 0 13 0 0 1 -30.0008 0 0 0 1  
     925        pathmapfile GreatPillarHeadHalf11 
     926        pathmapclusters 32 
     927                subentity 0 clusters 2 18 21 1 5 3 7 19 28 0 25 26 8 22 17 30 4 6 24 12 10 27 20 23 9 31 11 50 13 15 33 14  
     928} 
     929entity GreatPillarHeadHalf12 
     930{ 
     931        mesh GreatPillarHeadHalfShape 
     932        transformation 1 0 0 -60 0 1 0 13 0 0 1 -30.0008 0 0 0 1  
     933        pathmapfile GreatPillarHeadHalf12 
     934        pathmapclusters 32 
     935                subentity 0 clusters 18 2 3 1 21 19 25 5 7 26 28 8 10 0 17 22 30 12 24 27 6 4 9 11 31 23 20 15 13 50 14 16  
     936} 
     937entity GreatPillarHeadHalf13 
     938{ 
     939        mesh GreatPillarHeadHalfShape 
     940        transformation 2.22045e-016 0 -1 70 0 1 0 13 1 0 2.22045e-016 -20.0008 0 0 0 1  
     941        pathmapfile GreatPillarHeadHalf13 
     942        pathmapclusters 32 
     943                subentity 0 clusters 54 53 47 0 36 38 37 62 55 39 52 34 46 35 45 51 48 44 63 32 60 56 61 40 58 50 49 20 33 57 42 41  
     944} 
     945entity GreatPillarHeadHalf14 
     946{ 
     947        mesh GreatPillarHeadHalfShape 
     948        transformation -1 0 1.22461e-016 60 0 1 0 13 -1.22461e-016 0 -1 29.9992 0 0 0 1  
     949        pathmapfile GreatPillarHeadHalf14 
     950        pathmapclusters 32 
     951                subentity 0 clusters 48 63 46 61 45 62 39 56 44 37 35 57 55 47 58 53 41 40 54 59 60 34 51 36 52 43 42 49 38 33 32 29  
     952} 
     953entity GreatPillarHeadHalf15 
     954{ 
     955        mesh GreatPillarHeadHalfShape 
     956        transformation 2.22045e-016 0 1 -70 0 1 0 13 -1 0 2.22045e-016 -20.0008 0 0 0 1  
     957        pathmapfile GreatPillarHeadHalf15 
     958        pathmapclusters 32 
     959                subentity 0 clusters 18 3 25 1 2 26 8 19 7 21 10 5 28 27 9 11 12 24 30 17 6 22 31 0 15 4 13 23 20 16 14 29  
     960} 
     961entity GreatPillarHeadHalf16 
     962{ 
     963        mesh GreatPillarHeadHalfShape 
     964        transformation 2.22045e-016 0 1 -70 0 1 0 13 -1 0 2.22045e-016 -10.0008 0 0 0 1  
     965        pathmapfile GreatPillarHeadHalf16 
     966        pathmapclusters 32 
     967                subentity 0 clusters 3 25 18 26 1 8 10 19 7 2 28 11 27 21 5 9 12 24 30 17 31 15 6 22 13 0 4 23 16 14 29 20  
     968} 
     969entity GreatPillarHeadHalf17 
     970{ 
     971        mesh GreatPillarHeadHalfShape 
     972        transformation 2.22045e-016 0 1 -70 0 1 0 13 -1 0 2.22045e-016 -0.000764727 0 0 0 1  
     973        pathmapfile GreatPillarHeadHalf17 
     974        pathmapclusters 32 
     975                subentity 0 clusters 25 26 11 3 10 8 18 19 27 1 7 28 9 2 12 5 21 24 31 15 30 17 13 6 22 16 23 0 4 14 29 42  
     976} 
     977entity GreatPillarHeadHalf18 
     978{ 
     979        mesh GreatPillarHeadHalfShape 
     980        transformation 2.22045e-016 0 1 -70 0 1 0 13 -1 0 2.22045e-016 9.99924 0 0 0 1  
     981        pathmapfile GreatPillarHeadHalf18 
     982        pathmapclusters 32 
     983                subentity 0 clusters 25 10 26 27 8 11 9 3 19 28 18 7 1 12 15 31 24 5 21 2 30 13 17 6 16 0 23 22 29 14 4 42  
     984} 
     985entity GreatPillarHeadHalf19 
     986{ 
     987        mesh GreatPillarHeadHalfShape 
     988        transformation 2.22045e-016 0 1 -70 0 1 0 13 -1 0 2.22045e-016 19.9992 0 0 0 1  
     989        pathmapfile GreatPillarHeadHalf19 
     990        pathmapclusters 32 
     991                subentity 0 clusters 10 11 25 27 26 9 8 3 28 15 19 12 31 18 7 24 1 13 30 5 21 17 2 16 6 0 29 14 23 22 4 42  
     992} 
     993entity GreatPillarHeadHalf20 
     994{ 
     995        mesh GreatPillarHeadHalfShape 
     996        transformation 2.22045e-016 0 -1 70 0 1 0 13 1 0 2.22045e-016 -10.0008 0 0 0 1  
     997        pathmapfile GreatPillarHeadHalf20 
     998        pathmapclusters 32 
     999                subentity 0 clusters 53 54 47 0 62 37 36 39 46 55 38 52 35 34 45 48 63 44 51 56 61 60 32 40 58 57 49 50 33 41 20 42  
     1000} 
     1001entity GreatPillarHeadHalf21 
     1002{ 
     1003        mesh GreatPillarHeadHalfShape 
     1004        transformation 2.22045e-016 0 -1 70 0 1 0 13 1 0 2.22045e-016 -0.000764727 0 0 0 1  
     1005        pathmapfile GreatPillarHeadHalf21 
     1006        pathmapclusters 32 
     1007                subentity 0 clusters 62 53 46 37 54 47 39 55 48 45 0 36 63 35 44 34 38 52 61 56 51 60 40 58 57 32 49 41 59 33 50 42  
     1008} 
     1009entity GreatPillarHeadHalf22 
     1010{ 
     1011        mesh GreatPillarHeadHalfShape 
     1012        transformation 2.22045e-016 0 -1 70 0 1 0 13 1 0 2.22045e-016 9.99924 0 0 0 1  
     1013        pathmapfile GreatPillarHeadHalf22 
     1014        pathmapclusters 32 
     1015                subentity 0 clusters 62 46 39 48 37 45 63 53 47 55 54 35 61 44 36 56 34 52 0 38 57 51 60 58 40 41 32 59 49 42 33 43  
     1016} 
     1017entity GreatPillarHeadHalf23 
     1018{ 
     1019        mesh GreatPillarHeadHalfShape 
     1020        transformation 2.22045e-016 0 -1 70 0 1 0 13 1 0 2.22045e-016 19.9992 0 0 0 1  
     1021        pathmapfile GreatPillarHeadHalf23 
     1022        pathmapclusters 32 
     1023                subentity 0 clusters 46 62 48 63 45 39 37 61 55 47 44 35 53 56 54 57 36 34 58 52 51 60 40 38 41 59 0 49 32 42 43 33  
     1024} 
     1025entity GreatPillarHeadHalf24 
     1026{ 
     1027        mesh GreatPillarHeadHalfShape 
     1028        transformation -1 0 1.22461e-016 50 0 1 0 13 -1.22461e-016 0 -1 29.9992 0 0 0 1  
     1029        pathmapfile GreatPillarHeadHalf24 
     1030        pathmapclusters 32 
     1031                subentity 0 clusters 63 61 48 45 46 56 44 62 57 39 35 55 37 47 58 41 59 40 60 51 34 43 42 53 54 49 36 52 29 33 14 32  
     1032} 
     1033entity GreatPillarHeadHalf25 
     1034{ 
     1035        mesh GreatPillarHeadHalfShape 
     1036        transformation -1 0 1.22461e-016 40 0 1 0 13 -1.22461e-016 0 -1 29.9992 0 0 0 1  
     1037        pathmapfile GreatPillarHeadHalf25 
     1038        pathmapclusters 32 
     1039                subentity 0 clusters 61 56 63 44 57 35 45 48 39 46 58 59 62 41 55 40 60 47 43 37 42 51 49 34 29 33 14 52 54 53 16 32  
     1040} 
     1041entity GreatPillarHeadHalf26 
     1042{ 
     1043        mesh GreatPillarHeadHalfShape 
     1044        transformation -1 0 1.22461e-016 30 0 1 0 13 -1.22461e-016 0 -1 29.9992 0 0 0 1  
     1045        pathmapfile GreatPillarHeadHalf26 
     1046        pathmapclusters 32 
     1047                subentity 0 clusters 57 56 35 61 59 58 44 41 63 43 39 42 60 40 45 48 55 29 62 46 49 47 51 14 33 16 37 34 23 32 52 17  
     1048} 
     1049entity GreatPillarHeadHalf27 
     1050{ 
     1051        mesh GreatPillarHeadHalfShape 
     1052        transformation -1 0 1.22461e-016 20 0 1 0 13 -1.22461e-016 0 -1 29.9992 0 0 0 1  
     1053        pathmapfile GreatPillarHeadHalf27 
     1054        pathmapclusters 32 
     1055                subentity 0 clusters 59 57 60 35 56 43 58 41 42 61 40 44 29 14 49 63 39 16 33 51 55 45 23 48 47 17 13 62 46 34 31 32  
     1056} 
     1057entity GreatPillarHeadHalf28 
     1058{ 
     1059        mesh GreatPillarHeadHalfShape 
     1060        transformation -1 0 1.22461e-016 9.99995 0 1 0 13 -1.22461e-016 0 -1 29.9992 0 0 0 1  
     1061        pathmapfile GreatPillarHeadHalf28 
     1062        pathmapclusters 32 
     1063                subentity 0 clusters 43 59 57 41 29 58 42 60 16 14 56 40 49 35 17 61 44 13 23 33 31 39 51 24 63 30 6 15 55 0 47 28  
     1064} 
     1065entity GreatPillarHeadHalf29 
     1066{ 
     1067        mesh GreatPillarHeadHalfShape 
     1068        transformation -1 0 1.22461e-016 -4.5892e-005 0 1 0 13 -1.22461e-016 0 -1 29.9992 0 0 0 1  
     1069        pathmapfile GreatPillarHeadHalf29 
     1070        pathmapclusters 32 
     1071                subentity 0 clusters 43 29 59 16 17 41 14 42 58 57 13 60 31 0 40 49 23 24 56 30 15 33 28 6 35 12 44 61 51 7 39 50  
     1072} 
     1073entity GreatPillarHeadHalf30 
     1074{ 
     1075        mesh GreatPillarHeadHalfShape 
     1076        transformation -1 0 1.22461e-016 -10 0 1 0 13 -1.22461e-016 0 -1 29.9992 0 0 0 1  
     1077        pathmapfile GreatPillarHeadHalf30 
     1078        pathmapclusters 32 
     1079                subentity 0 clusters 16 29 0 17 43 31 13 14 59 42 24 15 41 28 30 23 58 12 57 60 6 49 40 33 7 56 27 19 9 11 35 22  
     1080} 
     1081entity GreatPillarHeadHalf31 
     1082{ 
     1083        mesh GreatPillarHeadHalfShape 
     1084        transformation -1 0 1.22461e-016 -20 0 1 0 13 -1.22461e-016 0 -1 29.9992 0 0 0 1  
     1085        pathmapfile GreatPillarHeadHalf31 
     1086        pathmapclusters 32 
     1087                subentity 0 clusters 31 16 17 15 29 13 24 14 28 0 43 30 12 42 59 23 27 41 6 11 9 7 19 58 49 10 60 33 57 25 40 26  
     1088} 
     1089entity GreatPillarHeadHalf32 
     1090{ 
     1091        mesh GreatPillarHeadHalfShape 
     1092        transformation -1 0 1.22461e-016 -30 0 1 0 13 -1.22461e-016 0 -1 29.9992 0 0 0 1  
     1093        pathmapfile GreatPillarHeadHalf32 
     1094        pathmapclusters 32 
     1095                subentity 0 clusters 15 31 16 17 13 24 12 27 0 29 28 11 30 9 14 10 19 43 7 6 25 42 23 59 26 8 41 5 21 49 58 33  
     1096} 
     1097entity GreatPillarHeadHalf33 
     1098{ 
     1099        mesh GreatPillarHeadHalfShape 
     1100        transformation -1 0 1.22461e-016 -40 0 1 0 13 -1.22461e-016 0 -1 29.9992 0 0 0 1  
     1101        pathmapfile GreatPillarHeadHalf33 
     1102        pathmapclusters 32 
     1103                subentity 0 clusters 15 0 31 27 11 13 24 28 9 12 10 16 25 19 30 17 26 7 29 8 14 6 43 23 5 42 21 59 3 1 18 41  
     1104} 
     1105entity GreatPillarHeadHalf34 
     1106{ 
     1107        mesh GreatPillarHeadHalfShape 
     1108        transformation -1 0 1.22461e-016 -50 0 1 0 13 -1.22461e-016 0 -1 29.9992 0 0 0 1  
     1109        pathmapfile GreatPillarHeadHalf34 
     1110        pathmapclusters 32 
     1111                subentity 0 clusters 11 27 15 28 9 31 10 25 12 24 26 13 0 8 19 16 7 30 17 29 3 6 5 14 18 1 21 23 43 42 2 59  
     1112} 
     1113entity GreatPillarHeadHalf35 
     1114{ 
     1115        mesh GreatPillarHeadHalfShape 
     1116        transformation -1 0 1.22461e-016 -60 0 1 0 13 -1.22461e-016 0 -1 29.9992 0 0 0 1  
     1117        pathmapfile GreatPillarHeadHalf35 
     1118        pathmapclusters 32 
     1119                subentity 0 clusters 11 27 10 9 25 15 26 31 8 28 12 19 24 13 7 3 30 16 18 17 0 1 5 21 6 29 14 2 23 43 42 22  
     1120} 
     1121entity GreatPillarHeadQuater 
     1122{ 
     1123        mesh GreatPillarHeadQuaterShape 
     1124        transformation 1 0 0 70 0 1 0 13 0 0 1 -30.0008 0 0 0 1  
     1125        pathmapfile GreatPillarHeadQuater 
     1126        pathmapclusters 32 
     1127                subentity 0 clusters 53 54 38 36 0 47 52 37 55 34 62 39 46 35 51 32 45 44 48 60 63 56 50 40 20 61 58 49 33 57 42 41  
     1128} 
     1129entity GreatPillarHeadQuater1 
     1130{ 
     1131        mesh GreatPillarHeadQuaterShape 
     1132        transformation 2.22045e-016 0 -1 70 0 1 0 13 1 0 2.22045e-016 29.9992 0 0 0 1  
     1133        pathmapfile GreatPillarHeadQuater1 
     1134        pathmapclusters 32 
     1135                subentity 0 clusters 48 63 46 45 62 61 39 37 44 56 55 35 47 57 53 54 36 58 34 40 41 60 51 59 52 38 43 49 42 0 32 33  
     1136} 
     1137entity GreatPillarHeadQuater2 
     1138{ 
     1139        mesh GreatPillarHeadQuaterShape 
     1140        transformation 2.22045e-016 0 1 -70 0 1 0 13 -1 0 2.22045e-016 -30.0008 0 0 0 1  
     1141        pathmapfile GreatPillarHeadQuater2 
     1142        pathmapclusters 32 
     1143                subentity 0 clusters 3 18 2 1 25 26 21 19 8 7 5 28 10 27 9 12 17 11 30 22 24 6 0 4 31 23 15 20 13 16 50 14  
     1144} 
     1145entity GreatPillarHeadQuater3 
     1146{ 
     1147        mesh GreatPillarHeadQuaterShape 
     1148        transformation -1 0 1.22461e-016 -70 0 1 0 13 -1.22461e-016 0 -1 29.9992 0 0 0 1  
     1149        pathmapfile GreatPillarHeadQuater3 
     1150        pathmapclusters 32 
     1151                subentity 0 clusters 10 27 11 9 25 26 8 15 31 19 28 12 3 24 13 7 18 1 30 16 5 17 21 6 0 2 29 14 23 43 22 42  
     1152} 
     1153entity GreatPillarHead2 
     1154{ 
     1155        mesh GreatPillarHeadShape2 
     1156        transformation 1 0 0 60 0 1 0 13 0 0 1 -20 0 0 0 1  
     1157        pathmapfile GreatPillarHead2 
     1158        pathmapclusters 32 
     1159                subentity 0 clusters 54 53 36 38 47 52 55 37 0 39 34 62 35 51 46 44 32 45 60 63 48 56 40 50 58 61 49 20 33 57 42 41  
     1160} 
     1161entity GreatPillarHead3 
     1162{ 
     1163        mesh GreatPillarHeadShape2 
     1164        transformation 1 0 0 60 0 1 0 13 0 0 1 -10 0 0 0 1  
     1165        pathmapfile GreatPillarHead3 
     1166        pathmapclusters 32 
     1167                subentity 0 clusters 54 47 39 53 55 35 62 37 36 52 38 0 46 34 45 44 51 63 48 56 60 61 32 40 58 49 57 50 33 20 41 42  
     1168} 
     1169entity GreatPillarHead4 
     1170{ 
     1171        mesh GreatPillarHeadShape2 
     1172        transformation 1 0 0 60 0 1 0 13 0 0 1 0 0 0 0 1  
     1173        pathmapfile GreatPillarHead4 
     1174        pathmapclusters 32 
     1175                subentity 0 clusters 62 39 47 37 55 53 46 54 35 45 36 48 63 44 34 52 56 38 61 0 51 60 40 58 57 32 49 41 59 33 50 42  
     1176} 
     1177entity GreatPillarHead5 
     1178{ 
     1179        mesh GreatPillarHeadShape2 
     1180        transformation 1 0 0 60 0 1 0 13 0 0 1 10 0 0 0 1  
     1181        pathmapfile GreatPillarHead5 
     1182        pathmapclusters 32 
     1183                subentity 0 clusters 62 46 45 48 39 63 37 55 47 35 61 44 53 56 54 36 34 52 57 51 60 58 38 40 0 41 59 49 32 42 33 43  
     1184} 
     1185entity GreatPillarHead6 
     1186{ 
     1187        mesh GreatPillarHeadShape2 
     1188        transformation 1 0 0 60 0 1 0 13 0 0 1 20 0 0 0 1  
     1189        pathmapfile GreatPillarHead6 
     1190        pathmapclusters 32 
     1191                subentity 0 clusters 48 63 46 39 62 45 61 37 44 56 55 35 47 57 53 54 58 34 36 60 40 51 52 41 59 38 49 42 43 32 0 33  
     1192} 
     1193entity GreatPillarHead8 
     1194{ 
     1195        mesh GreatPillarHeadShape2 
     1196        transformation 1 0 0 50 0 1 0 13 0 0 1 -10 0 0 0 1  
     1197        pathmapfile GreatPillarHead8 
     1198        pathmapclusters 32 
     1199                subentity 0 clusters 47 55 39 53 54 52 36 34 37 62 35 38 51 44 60 46 56 63 32 45 40 58 48 0 61 49 50 33 57 20 42 41  
     1200} 
     1201entity GreatPillarHead9 
     1202{ 
     1203        mesh GreatPillarHeadShape2 
     1204        transformation 1 0 0 50 0 1 0 13 0 0 1 0 0 0 0 1  
     1205        pathmapfile GreatPillarHead9 
     1206        pathmapclusters 32 
     1207                subentity 0 clusters 47 55 39 62 37 35 44 46 54 34 56 63 52 53 51 45 36 60 48 61 38 40 58 57 32 49 0 41 33 59 42 50  
     1208} 
     1209entity GreatPillarHead10 
     1210{ 
     1211        mesh GreatPillarHeadShape2 
     1212        transformation 1 0 0 50 0 1 0 13 0 0 1 10 0 0 0 1  
     1213        pathmapfile GreatPillarHead10 
     1214        pathmapclusters 32 
     1215                subentity 0 clusters 46 62 39 35 63 55 47 56 44 45 37 61 48 34 60 51 57 58 54 53 40 52 36 41 38 59 49 32 42 33 43 0  
     1216} 
     1217entity GreatPillarHead11 
     1218{ 
     1219        mesh GreatPillarHeadShape2 
     1220        transformation 1 0 0 50 0 1 0 13 0 0 1 20 0 0 0 1  
     1221        pathmapfile GreatPillarHead11 
     1222        pathmapclusters 32 
     1223                subentity 0 clusters 63 46 39 61 62 48 56 45 44 35 55 47 57 37 58 60 40 41 51 34 59 53 54 52 36 42 49 43 38 33 32 29  
     1224} 
     1225entity GreatPillarHead13 
     1226{ 
     1227        mesh GreatPillarHeadShape2 
     1228        transformation 1 0 0 50 0 1 0 13 0 0 1 -20 0 0 0 1  
     1229        pathmapfile GreatPillarHead13 
     1230        pathmapclusters 32 
     1231                subentity 0 clusters 38 52 36 54 53 47 35 55 34 39 37 51 62 32 60 44 0 46 50 40 56 45 49 58 20 63 33 48 61 42 57 41  
     1232} 
     1233entity GreatPillarHead14 
     1234{ 
     1235        mesh GreatPillarHeadShape2 
     1236        transformation 1 0 0 40 0 1 0 13 0 0 1 -10 0 0 0 1  
     1237        pathmapfile GreatPillarHead14 
     1238        pathmapclusters 32 
     1239                subentity 0 clusters 39 55 60 47 35 52 51 34 38 54 36 37 44 32 62 40 56 53 58 49 50 46 33 63 45 42 20 61 57 48 0 41  
     1240} 
     1241entity GreatPillarHead15 
     1242{ 
     1243        mesh GreatPillarHeadShape2 
     1244        transformation 1 0 0 40 0 1 0 13 0 0 1 0 0 0 0 1  
     1245        pathmapfile GreatPillarHead15 
     1246        pathmapclusters 32 
     1247                subentity 0 clusters 55 39 47 35 51 56 44 60 34 62 52 58 37 40 63 46 54 61 49 36 45 32 38 57 53 48 42 33 41 59 50 43  
     1248} 
     1249entity GreatPillarHead16 
     1250{ 
     1251        mesh GreatPillarHeadShape2 
     1252        transformation 1 0 0 40 0 1 0 13 0 0 1 10 0 0 0 1  
     1253        pathmapfile GreatPillarHead16 
     1254        pathmapclusters 32 
     1255                subentity 0 clusters 39 35 56 44 47 60 55 63 62 61 58 51 57 46 40 45 37 34 48 41 59 52 49 42 54 32 36 33 43 53 38 50  
     1256} 
     1257entity GreatPillarHead17 
     1258{ 
     1259        mesh GreatPillarHeadShape2 
     1260        transformation 1 0 0 40 0 1 0 13 0 0 1 20 0 0 0 1  
     1261        pathmapfile GreatPillarHead17 
     1262        pathmapclusters 32 
     1263                subentity 0 clusters 56 61 35 39 63 44 57 55 45 62 58 46 48 47 60 59 40 41 37 51 42 34 43 49 52 33 29 54 32 53 36 14  
     1264} 
     1265entity GreatPillarHead19 
     1266{ 
     1267        mesh GreatPillarHeadShape2 
     1268        transformation 1 0 0 40 0 1 0 13 0 0 1 -20 0 0 0 1  
     1269        pathmapfile GreatPillarHead19 
     1270        pathmapclusters 32 
     1271                subentity 0 clusters 52 38 35 34 47 51 55 54 36 39 32 60 53 50 37 20 40 49 62 44 58 33 56 0 46 42 63 45 61 23 57 4  
     1272} 
     1273entity GreatPillarHead20 
     1274{ 
     1275        mesh GreatPillarHeadShape2 
     1276        transformation 1 0 0 30 0 1 0 13 0 0 1 -10 0 0 0 1  
     1277        pathmapfile GreatPillarHead20 
     1278        pathmapclusters 32 
     1279                subentity 0 clusters 51 60 52 35 55 47 34 39 32 49 40 50 58 38 33 56 44 42 20 36 54 37 62 23 57 59 41 53 63 43 0 61  
     1280} 
     1281entity GreatPillarHead21 
     1282{ 
     1283        mesh GreatPillarHeadShape2 
     1284        transformation 1 0 0 30 0 1 0 13 0 0 1 0 0 0 0 1  
     1285        pathmapfile GreatPillarHead21 
     1286        pathmapclusters 32 
     1287                subentity 0 clusters 39 51 35 47 60 55 58 56 40 49 44 34 52 42 32 33 57 50 59 41 62 61 37 63 38 43 36 54 45 23 46 20  
     1288} 
     1289entity GreatPillarHead22 
     1290{ 
     1291        mesh GreatPillarHeadShape2 
     1292        transformation 1 0 0 30 0 1 0 13 0 0 1 10 0 0 0 1  
     1293        pathmapfile GreatPillarHead22 
     1294        pathmapclusters 32 
     1295                subentity 0 clusters 56 39 35 58 44 57 55 40 51 60 47 59 61 49 42 41 63 34 43 62 33 45 52 32 37 46 29 48 14 50 23 38  
     1296} 
     1297entity GreatPillarHead23 
     1298{ 
     1299        mesh GreatPillarHeadShape2 
     1300        transformation 1 0 0 30 0 1 0 13 0 0 1 20 0 0 0 1  
     1301        pathmapfile GreatPillarHead23 
     1302        pathmapclusters 32 
     1303                subentity 0 clusters 35 56 57 58 61 44 59 39 60 41 42 40 63 55 43 47 51 49 45 62 48 46 29 33 34 14 37 32 52 23 16 50  
     1304} 
     1305entity GreatPillarHead25 
     1306{ 
     1307        mesh GreatPillarHeadShape2 
     1308        transformation 1 0 0 30 0 1 0 13 0 0 1 -20 0 0 0 1  
     1309        pathmapfile GreatPillarHead25 
     1310        pathmapclusters 32 
     1311                subentity 0 clusters 52 47 51 38 35 32 34 50 60 55 20 49 39 40 33 36 54 0 58 44 42 37 56 53 23 62 4 22 41 59 57 43  
     1312} 
     1313entity GreatPillarHead26 
     1314{ 
     1315        mesh GreatPillarHeadShape2 
     1316        transformation 1 0 0 20 0 1 0 13 0 0 1 -10 0 0 0 1  
     1317        pathmapfile GreatPillarHead26 
     1318        pathmapclusters 32 
     1319                subentity 0 clusters 51 60 35 47 49 32 50 33 40 42 52 58 34 20 55 39 23 38 56 44 59 43 4 41 22 14 29 17 0 57 6 36  
     1320} 
     1321entity GreatPillarHead27 
     1322{ 
     1323        mesh GreatPillarHeadShape2 
     1324        transformation 1 0 0 20 0 1 0 13 0 0 1 0 0 0 0 1  
     1325        pathmapfile GreatPillarHead27 
     1326        pathmapclusters 32 
     1327                subentity 0 clusters 42 49 60 51 58 35 40 47 33 56 32 39 55 50 59 44 34 43 41 23 57 52 29 14 20 17 61 38 6 4 22 63  
     1328} 
     1329entity GreatPillarHead28 
     1330{ 
     1331        mesh GreatPillarHeadShape2 
     1332        transformation 1 0 0 20 0 1 0 13 0 0 1 10 0 0 0 1  
     1333        pathmapfile GreatPillarHead28 
     1334        pathmapclusters 32 
     1335                subentity 0 clusters 58 40 60 56 49 42 59 57 35 41 51 43 44 39 33 29 55 47 14 61 23 32 34 50 63 17 52 16 62 45 6 37  
     1336} 
     1337entity GreatPillarHead29 
     1338{ 
     1339        mesh GreatPillarHeadShape2 
     1340        transformation 1 0 0 20 0 1 0 13 0 0 1 20 0 0 0 1  
     1341        pathmapfile GreatPillarHead29 
     1342        pathmapclusters 32 
     1343                subentity 0 clusters 58 59 42 60 35 57 56 41 43 40 44 49 29 61 39 14 51 33 55 63 16 47 23 45 17 34 32 62 50 48 13 46  
     1344} 
     1345entity GreatPillarHead31 
     1346{ 
     1347        mesh GreatPillarHeadShape2 
     1348        transformation 1 0 0 20 0 1 0 13 0 0 1 -20 0 0 0 1  
     1349        pathmapfile GreatPillarHead31 
     1350        pathmapclusters 32 
     1351                subentity 0 clusters 51 60 50 47 32 52 20 49 35 34 33 38 0 40 42 55 23 58 4 22 39 44 56 36 17 54 6 43 59 14 41 29  
     1352} 
     1353entity GreatPillarHead32 
     1354{ 
     1355        mesh GreatPillarHeadShape2 
     1356        transformation 1 0 0 9.99995 0 1 0 13 0 0 1 -10 0 0 0 1  
     1357        pathmapfile GreatPillarHead32 
     1358        pathmapclusters 32 
     1359                subentity 0 clusters 49 60 42 35 50 51 33 23 32 20 40 58 47 22 4 17 43 52 6 34 14 29 59 41 55 30 56 0 39 38 44 24  
     1360} 
     1361entity GreatPillarHead33 
     1362{ 
     1363        mesh GreatPillarHeadShape2 
     1364        transformation 1 0 0 9.99995 0 1 0 13 0 0 1 0 0 0 0 1  
     1365        pathmapfile GreatPillarHead33 
     1366        pathmapclusters 32 
     1367                subentity 0 clusters 49 60 42 58 33 23 40 43 51 50 59 29 35 14 32 41 17 56 47 6 20 22 4 57 30 34 44 55 39 16 52 24  
     1368} 
     1369entity GreatPillarHead34 
     1370{ 
     1371        mesh GreatPillarHeadShape2 
     1372        transformation 1 0 0 9.99995 0 1 0 13 0 0 1 10 0 0 0 1  
     1373        pathmapfile GreatPillarHead34 
     1374        pathmapclusters 32 
     1375                subentity 0 clusters 58 60 42 49 59 43 29 40 41 33 14 23 56 35 57 51 17 16 44 50 6 32 30 39 47 55 24 13 61 34 22 4  
     1376} 
     1377entity GreatPillarHead35 
     1378{ 
     1379        mesh GreatPillarHeadShape2 
     1380        transformation 1 0 0 9.99995 0 1 0 13 0 0 1 20 0 0 0 1  
     1381        pathmapfile GreatPillarHead35 
     1382        pathmapclusters 32 
     1383                subentity 0 clusters 59 42 43 58 29 41 57 60 40 14 49 56 16 35 33 17 23 44 51 61 13 39 30 6 24 31 55 50 47 63 32 28  
     1384} 
     1385entity GreatPillarHead37 
     1386{ 
     1387        mesh GreatPillarHeadShape2 
     1388        transformation 1 0 0 9.99995 0 1 0 13 0 0 1 -20 0 0 0 1  
     1389        pathmapfile GreatPillarHead37 
     1390        pathmapclusters 32 
     1391                subentity 0 clusters 50 60 20 32 49 51 33 23 35 22 47 4 42 52 0 17 40 34 58 6 38 55 30 14 43 29 39 7 59 41 56 28  
     1392} 
     1393entity GreatPillarHead38 
     1394{ 
     1395        mesh GreatPillarHeadShape2 
     1396        transformation 1 0 0 -4.5892e-005 0 1 0 13 0 0 1 -10 0 0 0 1  
     1397        pathmapfile GreatPillarHead38 
     1398        pathmapclusters 32 
     1399                subentity 0 clusters 23 42 17 33 49 50 22 60 4 20 6 32 51 30 14 43 58 29 40 7 24 28 35 59 0 21 47 41 16 52 5 34  
     1400} 
     1401entity GreatPillarHead39 
     1402{ 
     1403        mesh GreatPillarHeadShape2 
     1404        transformation 1 0 0 -4.5892e-005 0 1 0 13 0 0 1 0 0 0 0 1  
     1405        pathmapfile GreatPillarHead39 
     1406        pathmapclusters 32 
     1407                subentity 0 clusters 23 60 42 49 43 33 29 17 14 58 6 50 30 40 59 22 24 51 4 41 16 28 32 35 20 7 13 31 12 56 57 47  
     1408} 
     1409entity GreatPillarHead40 
     1410{ 
     1411        mesh GreatPillarHeadShape2 
     1412        transformation 1 0 0 -4.5892e-005 0 1 0 13 0 0 1 10 0 0 0 1  
     1413        pathmapfile GreatPillarHead40 
     1414        pathmapclusters 32 
     1415                subentity 0 clusters 42 29 17 60 43 23 49 59 14 58 33 41 16 40 30 6 24 28 13 31 57 50 51 35 56 22 4 12 32 7 44 15  
     1416} 
     1417entity GreatPillarHead41 
     1418{ 
     1419        mesh GreatPillarHeadShape2 
     1420        transformation 1 0 0 -4.5892e-005 0 1 0 13 0 0 1 20 0 0 0 1  
     1421        pathmapfile GreatPillarHead41 
     1422        pathmapclusters 32 
     1423                subentity 0 clusters 29 42 43 59 17 16 14 41 58 60 49 23 13 40 57 31 24 30 33 6 56 28 0 35 15 12 51 44 50 22 7 61  
     1424} 
     1425entity GreatPillarHead43 
     1426{ 
     1427        mesh GreatPillarHeadShape2 
     1428        transformation 1 0 0 -4.5892e-005 0 1 0 13 0 0 1 -20 0 0 0 1  
     1429        pathmapfile GreatPillarHead43 
     1430        pathmapclusters 32 
     1431                subentity 0 clusters 50 20 17 60 22 23 4 33 49 32 42 6 51 0 7 30 35 28 21 40 47 24 58 14 52 29 5 43 34 2 59 38  
     1432} 
     1433entity GreatPillarHead44 
     1434{ 
     1435        mesh GreatPillarHeadShape2 
     1436        transformation 1 0 0 -10 0 1 0 13 0 0 1 -10 0 0 0 1  
     1437        pathmapfile GreatPillarHead44 
     1438        pathmapclusters 32 
     1439                subentity 0 clusters 23 28 17 7 22 24 30 6 4 42 50 33 49 20 21 14 60 29 5 32 43 12 0 16 19 58 51 40 31 2 13 59  
     1440} 
     1441entity GreatPillarHead45 
     1442{ 
     1443        mesh GreatPillarHeadShape2 
     1444        transformation 1 0 0 -10 0 1 0 13 0 0 1 0 0 0 0 1  
     1445        pathmapfile GreatPillarHead45 
     1446        pathmapclusters 32 
     1447                subentity 0 clusters 42 23 17 30 24 6 29 14 49 28 22 33 16 7 43 4 60 50 31 12 13 59 58 21 40 20 5 41 19 51 32 15  
     1448} 
     1449entity GreatPillarHead46 
     1450{ 
     1451        mesh GreatPillarHeadShape2 
     1452        transformation 1 0 0 -10 0 1 0 13 0 0 1 10 0 0 0 1  
     1453        pathmapfile GreatPillarHead46 
     1454        pathmapclusters 32 
     1455                subentity 0 clusters 29 16 28 23 30 24 42 14 17 43 6 31 13 59 49 60 33 12 58 41 7 22 40 15 4 50 19 21 0 5 57 51  
     1456} 
     1457entity GreatPillarHead47 
     1458{ 
     1459        mesh GreatPillarHeadShape2 
     1460        transformation 1 0 0 -10 0 1 0 13 0 0 1 20 0 0 0 1  
     1461        pathmapfile GreatPillarHead47 
     1462        pathmapclusters 32 
     1463                subentity 0 clusters 29 42 16 14 24 43 31 13 17 59 30 28 23 41 15 0 6 12 58 49 60 33 40 7 57 19 22 56 27 4 50 35  
     1464} 
     1465entity GreatPillarHead49 
     1466{ 
     1467        mesh GreatPillarHeadShape2 
     1468        transformation 1 0 0 -10 0 1 0 13 0 0 1 -20 0 0 0 1  
     1469        pathmapfile GreatPillarHead49 
     1470        pathmapclusters 32 
     1471                subentity 0 clusters 22 4 20 23 7 17 50 6 30 21 33 28 49 0 24 42 5 2 60 32 51 14 19 29 12 40 58 43 35 31 16 13  
     1472} 
     1473entity GreatPillarHead50 
     1474{ 
     1475        mesh GreatPillarHeadShape2 
     1476        transformation 1 0 0 -20 0 1 0 13 0 0 1 -10 0 0 0 1  
     1477        pathmapfile GreatPillarHead50 
     1478        pathmapclusters 32 
     1479                subentity 0 clusters 30 17 24 22 6 23 21 7 28 4 5 19 12 42 20 2 33 50 14 49 31 29 0 16 13 60 1 43 18 32 25 8  
     1480} 
     1481entity GreatPillarHead51 
     1482{ 
     1483        mesh GreatPillarHeadShape2 
     1484        transformation 1 0 0 -20 0 1 0 13 0 0 1 0 0 0 0 1  
     1485        pathmapfile GreatPillarHead51 
     1486        pathmapclusters 32 
     1487                subentity 0 clusters 30 24 17 6 23 28 7 22 12 31 29 21 42 16 14 19 13 5 4 49 33 43 15 50 60 20 59 2 27 0 58 25  
     1488} 
     1489entity GreatPillarHead52 
     1490{ 
     1491        mesh GreatPillarHeadShape2 
     1492        transformation 1 0 0 -20 0 1 0 13 0 0 1 10 0 0 0 1  
     1493        pathmapfile GreatPillarHead52 
     1494        pathmapclusters 32 
     1495                subentity 0 clusters 24 30 17 16 28 31 29 23 13 12 6 14 7 42 15 19 43 22 59 49 21 5 33 27 4 41 60 9 58 0 25 10  
     1496} 
     1497entity GreatPillarHead53 
     1498{ 
     1499        mesh GreatPillarHeadShape2 
     1500        transformation 1 0 0 -20 0 1 0 13 0 0 1 20 0 0 0 1  
     1501        pathmapfile GreatPillarHead53 
     1502        pathmapclusters 32 
     1503                subentity 0 clusters 16 31 28 13 17 24 29 30 15 14 12 42 23 43 6 59 7 0 27 19 41 9 49 11 33 58 60 10 5 22 21 25  
     1504} 
     1505entity GreatPillarHead55 
     1506{ 
     1507        mesh GreatPillarHeadShape2 
     1508        transformation 1 0 0 -20 0 1 0 13 0 0 1 -20 0 0 0 1  
     1509        pathmapfile GreatPillarHead55 
     1510        pathmapclusters 32 
     1511                subentity 0 clusters 22 17 28 21 4 30 23 6 7 20 2 5 24 0 50 19 33 12 49 42 1 14 18 32 29 60 31 13 16 25 51 8  
     1512} 
     1513entity GreatPillarHead56 
     1514{ 
     1515        mesh GreatPillarHeadShape2 
     1516        transformation 1 0 0 -30 0 1 0 13 0 0 1 -10 0 0 0 1  
     1517        pathmapfile GreatPillarHead56 
     1518        pathmapclusters 32 
     1519                subentity 0 clusters 28 7 21 24 30 17 19 5 22 6 23 12 2 4 31 1 18 25 8 0 26 20 13 14 27 42 3 29 16 10 33 50  
     1520} 
     1521entity GreatPillarHead57 
     1522{ 
     1523        mesh GreatPillarHeadShape2 
     1524        transformation 1 0 0 -30 0 1 0 13 0 0 1 0 0 0 0 1  
     1525        pathmapfile GreatPillarHead57 
     1526        pathmapclusters 32 
     1527                subentity 0 clusters 7 30 24 17 19 28 12 6 31 21 5 23 22 13 16 27 25 15 29 14 8 4 26 10 2 42 9 1 18 11 33 0  
     1528} 
     1529entity GreatPillarHead58 
     1530{ 
     1531        mesh GreatPillarHeadShape2 
     1532        transformation 1 0 0 -30 0 1 0 13 0 0 1 10 0 0 0 1  
     1533        pathmapfile GreatPillarHead58 
     1534        pathmapclusters 32 
     1535                subentity 0 clusters 24 31 7 30 28 12 17 19 13 15 16 6 27 23 29 14 9 5 21 10 25 8 11 26 42 22 43 0 4 1 59 49  
     1536} 
     1537entity GreatPillarHead59 
     1538{ 
     1539        mesh GreatPillarHeadShape2 
     1540        transformation 1 0 0 -30 0 1 0 13 0 0 1 20 0 0 0 1  
     1541        pathmapfile GreatPillarHead59 
     1542        pathmapclusters 32 
     1543                subentity 0 clusters 31 24 13 15 16 12 30 17 28 27 29 7 19 9 14 11 10 6 0 23 25 42 43 26 8 5 59 21 22 41 49 33  
     1544} 
     1545entity GreatPillarHead61 
     1546{ 
     1547        mesh GreatPillarHeadShape2 
     1548        transformation 1 0 0 -30 0 1 0 13 0 0 1 -20 0 0 0 1  
     1549        pathmapfile GreatPillarHead61 
     1550        pathmapclusters 32 
     1551                subentity 0 clusters 21 28 2 17 7 22 5 30 19 6 4 24 0 23 1 20 18 12 25 3 50 8 31 26 33 42 14 49 13 10 27 29  
     1552} 
     1553entity GreatPillarHead62 
     1554{ 
     1555        mesh GreatPillarHeadShape2 
     1556        transformation 1 0 0 -40 0 1 0 13 0 0 1 -10 0 0 0 1  
     1557        pathmapfile GreatPillarHead62 
     1558        pathmapclusters 32 
     1559                subentity 0 clusters 7 19 17 24 28 21 5 2 30 1 18 25 12 6 8 26 3 22 10 31 27 23 4 9 0 13 15 11 16 14 20 29  
     1560} 
     1561entity GreatPillarHead63 
     1562{ 
     1563        mesh GreatPillarHeadShape2 
     1564        transformation 1 0 0 -40 0 1 0 13 0 0 1 0 0 0 0 1  
     1565        pathmapfile GreatPillarHead63 
     1566        pathmapclusters 32 
     1567                subentity 0 clusters 19 7 24 17 28 30 12 25 21 5 31 27 8 26 10 6 1 9 18 15 13 2 11 3 23 22 16 4 14 29 0 42  
     1568} 
     1569entity GreatPillarHead64 
     1570{ 
     1571        mesh GreatPillarHeadShape2 
     1572        transformation 1 0 0 -40 0 1 0 13 0 0 1 10 0 0 0 1  
     1573        pathmapfile GreatPillarHead64 
     1574        pathmapclusters 32 
     1575                subentity 0 clusters 24 31 19 17 12 7 27 30 28 15 25 10 9 26 13 11 8 5 6 21 16 23 1 29 18 14 3 22 0 2 42 4  
     1576} 
     1577entity GreatPillarHead65 
     1578{ 
     1579        mesh GreatPillarHeadShape2 
     1580        transformation 1 0 0 -40 0 1 0 13 0 0 1 20 0 0 0 1  
     1581        pathmapfile GreatPillarHead65 
     1582        pathmapclusters 32 
     1583                subentity 0 clusters 24 31 15 27 10 28 12 11 9 13 19 25 30 7 17 16 26 0 8 29 6 14 5 23 21 1 3 42 18 43 22 59  
     1584} 
     1585entity GreatPillarHead67 
     1586{ 
     1587        mesh GreatPillarHeadShape2 
     1588        transformation 1 0 0 -40 0 1 0 13 0 0 1 -20 0 0 0 1  
     1589        pathmapfile GreatPillarHead67 
     1590        pathmapclusters 32 
     1591                subentity 0 clusters 21 7 17 28 2 5 19 18 1 22 0 30 24 3 6 25 4 8 12 26 23 10 20 31 27 9 13 50 11 15 14 33  
     1592} 
     1593entity GreatPillarHead68 
     1594{ 
     1595        mesh GreatPillarHeadShape2 
     1596        transformation 1 0 0 -50 0 1 0 13 0 0 1 -10 0 0 0 1  
     1597        pathmapfile GreatPillarHead68 
     1598        pathmapclusters 32 
     1599                subentity 0 clusters 25 19 7 3 28 1 18 21 26 5 8 2 10 17 24 12 30 27 9 6 31 11 22 15 4 23 0 13 16 14 29 20  
     1600} 
     1601entity GreatPillarHead69 
     1602{ 
     1603        mesh GreatPillarHeadShape2 
     1604        transformation 1 0 0 -50 0 1 0 13 0 0 1 0 0 0 0 1  
     1605        pathmapfile GreatPillarHead69 
     1606        pathmapclusters 32 
     1607                subentity 0 clusters 19 25 10 28 26 8 7 27 18 12 24 1 3 5 21 9 11 17 30 31 2 15 6 13 22 23 16 4 0 14 29 42  
     1608} 
     1609entity GreatPillarHead70 
     1610{ 
     1611        mesh GreatPillarHeadShape2 
     1612        transformation 1 0 0 -50 0 1 0 13 0 0 1 10 0 0 0 1  
     1613        pathmapfile GreatPillarHead70 
     1614        pathmapclusters 32 
     1615                subentity 0 clusters 10 25 27 11 28 26 19 9 8 31 12 24 7 15 30 17 3 5 18 13 1 21 6 16 2 23 0 29 14 22 4 42  
     1616} 
     1617entity GreatPillarHead71 
     1618{ 
     1619        mesh GreatPillarHeadShape2 
     1620        transformation 1 0 0 -50 0 1 0 13 0 0 1 20 0 0 0 1  
     1621        pathmapfile GreatPillarHead71 
     1622        pathmapclusters 32 
     1623                subentity 0 clusters 27 11 9 15 10 25 31 26 28 24 12 19 8 13 7 30 17 16 0 3 5 18 1 6 21 29 14 23 2 42 22 43  
     1624} 
     1625entity GreatPillarHead73 
     1626{ 
     1627        mesh GreatPillarHeadShape2 
     1628        transformation 1 0 0 -50 0 1 0 13 0 0 1 -20 0 0 0 1  
     1629        pathmapfile GreatPillarHead73 
     1630        pathmapclusters 32 
     1631                subentity 0 clusters 2 18 7 21 1 28 19 3 5 25 26 8 17 30 24 10 0 22 12 6 27 4 9 31 11 23 20 15 13 14 16 50  
     1632} 
     1633entity GreatPillarHead74 
     1634{ 
     1635        mesh GreatPillarHeadShape2 
     1636        transformation 1 0 0 -60 0 1 0 13 0 0 1 -10 0 0 0 1  
     1637        pathmapfile GreatPillarHead74 
     1638        pathmapclusters 32 
     1639                subentity 0 clusters 25 18 7 1 26 3 19 28 8 10 2 21 5 27 11 9 12 24 30 17 31 6 15 22 13 0 4 23 16 14 29 20  
     1640} 
     1641entity GreatPillarHead75 
     1642{ 
     1643        mesh GreatPillarHeadShape2 
     1644        transformation 1 0 0 -60 0 1 0 13 0 0 1 0 0 0 0 1  
     1645        pathmapfile GreatPillarHead75 
     1646        pathmapclusters 32 
     1647                subentity 0 clusters 25 26 10 19 7 8 3 28 18 27 11 1 9 12 5 21 24 2 31 30 15 17 6 13 22 23 16 0 4 14 29 42  
     1648} 
     1649entity GreatPillarHead76 
     1650{ 
     1651        mesh GreatPillarHeadShape2 
     1652        transformation 1 0 0 -60 0 1 0 13 0 0 1 10 0 0 0 1  
     1653        pathmapfile GreatPillarHead76 
     1654        pathmapclusters 32 
     1655                subentity 0 clusters 26 25 11 10 27 28 8 9 19 3 7 12 18 31 15 24 1 5 30 21 17 13 2 6 16 23 0 22 29 14 4 42  
     1656} 
     1657entity GreatPillarHead77 
     1658{ 
     1659        mesh GreatPillarHeadShape2 
     1660        transformation 1 0 0 -60 0 1 0 13 0 0 1 20 0 0 0 1  
     1661        pathmapfile GreatPillarHead77 
     1662        pathmapclusters 32 
     1663                subentity 0 clusters 25 27 11 10 9 26 28 8 15 19 31 12 24 7 3 13 18 1 30 17 5 16 21 6 0 2 29 14 23 22 42 43  
     1664} 
     1665entity GreatPillarHead79 
     1666{ 
     1667        mesh GreatPillarHeadShape2 
     1668        transformation 1 0 0 -60 0 1 0 13 0 0 1 -20 0 0 0 1  
     1669        pathmapfile GreatPillarHead79 
     1670        pathmapclusters 32 
     1671                subentity 0 clusters 18 1 2 3 25 19 7 21 26 8 5 28 10 27 12 17 30 24 9 11 22 6 0 31 4 15 23 13 20 16 14 29  
     1672} 
     1673entity GreatPillarTrunkHalf 
     1674{ 
     1675        mesh GreatPillarTrunkHalfShape 
     1676        transformation 1 0 0 60 0 1 0 6 0 0 1 -29.994 0 0 0 1  
     1677        pathmapfile GreatPillarTrunkHalf 
     1678        pathmapclusters 32 
     1679                subentity 0 clusters 36 53 38 54 52 34 37 47 55 0 39 35 62 51 32 46 60 44 45 50 40 20 63 56 48 49 33 58 61 42 57 41  
     1680} 
     1681entity GreatPillarTrunkHalf1 
     1682{ 
     1683        mesh GreatPillarTrunkHalfShape 
     1684        transformation 1 0 0 50 0 1 0 6 0 0 1 -29.994 0 0 0 1  
     1685        pathmapfile GreatPillarTrunkHalf1 
     1686        pathmapclusters 32 
     1687                subentity 0 clusters 38 36 54 52 34 53 47 55 37 35 32 39 51 60 62 0 50 20 44 40 46 33 49 45 56 58 63 48 42 61 4 57  
     1688} 
     1689entity GreatPillarTrunkHalf2 
     1690{ 
     1691        mesh GreatPillarTrunkHalfShape 
     1692        transformation 1 0 0 40 0 1 0 6 0 0 1 -29.994 0 0 0 1  
     1693        pathmapfile GreatPillarTrunkHalf2 
     1694        pathmapclusters 32 
     1695                subentity 0 clusters 38 34 35 52 36 32 54 47 51 55 60 53 20 39 50 37 40 0 33 49 44 62 58 56 4 42 46 45 23 22 63 41  
     1696} 
     1697entity GreatPillarTrunkHalf3 
     1698{ 
     1699        mesh GreatPillarTrunkHalfShape 
     1700        transformation 1 0 0 30 0 1 0 6 0 0 1 -29.994 0 0 0 1  
     1701        pathmapfile GreatPillarTrunkHalf3 
     1702        pathmapclusters 32 
     1703                subentity 0 clusters 38 32 52 34 20 51 50 47 60 35 0 36 55 33 54 49 39 40 4 53 37 44 58 42 22 23 56 62 6 17 41 14  
     1704} 
     1705entity GreatPillarTrunkHalf4 
     1706{ 
     1707        mesh GreatPillarTrunkHalfShape 
     1708        transformation 1 0 0 20 0 1 0 6 0 0 1 -29.994 0 0 0 1  
     1709        pathmapfile GreatPillarTrunkHalf4 
     1710        pathmapclusters 32 
     1711                subentity 0 clusters 0 32 20 50 38 52 51 34 60 47 33 35 4 49 40 22 55 42 23 36 39 58 54 17 6 44 37 53 56 14 41 43  
     1712} 
     1713entity GreatPillarTrunkHalf5 
     1714{ 
     1715        mesh GreatPillarTrunkHalfShape 
     1716        transformation 1 0 0 9.99995 0 1 0 6 0 0 1 -29.994 0 0 0 1  
     1717        pathmapfile GreatPillarTrunkHalf5 
     1718        pathmapclusters 32 
     1719                subentity 0 clusters 20 35 60 32 50 4 0 33 51 22 49 52 47 34 23 38 17 42 40 6 58 55 14 30 7 21 39 5 28 36 2 43  
     1720} 
     1721entity GreatPillarTrunkHalf6 
     1722{ 
     1723        mesh GreatPillarTrunkHalfShape 
     1724        transformation 1 0 0 -4.5892e-005 0 1 0 6 0 0 1 -29.994 0 0 0 1  
     1725        pathmapfile GreatPillarTrunkHalf6 
     1726        pathmapclusters 32 
     1727                subentity 0 clusters 0 20 4 50 22 32 33 17 23 60 6 49 51 42 35 7 21 28 5 52 2 30 47 40 34 38 14 24 58 29 43 12  
     1728} 
     1729entity GreatPillarTrunkHalf7 
     1730{ 
     1731        mesh GreatPillarTrunkHalfShape 
     1732        transformation 1 0 0 -10 0 1 0 6 0 0 1 -29.994 0 0 0 1  
     1733        pathmapfile GreatPillarTrunkHalf7 
     1734        pathmapclusters 32 
     1735                subentity 0 clusters 4 20 28 22 17 0 50 6 2 23 33 21 5 32 7 30 49 60 42 24 51 14 19 12 40 1 35 52 29 34 47 58  
     1736} 
     1737entity GreatPillarTrunkHalf8 
     1738{ 
     1739        mesh GreatPillarTrunkHalfShape 
     1740        transformation 1 0 0 -20 0 1 0 6 0 0 1 -29.994 0 0 0 1  
     1741        pathmapfile GreatPillarTrunkHalf8 
     1742        pathmapclusters 32 
     1743                subentity 0 clusters 0 20 22 4 17 2 5 21 6 28 7 23 50 30 24 33 19 1 32 12 49 42 18 14 60 3 8 51 29 25 31 13  
     1744} 
     1745entity GreatPillarTrunkHalf9 
     1746{ 
     1747        mesh GreatPillarTrunkHalfShape 
     1748        transformation 1 0 0 -30 0 1 0 6 0 0 1 -29.994 0 0 0 1  
     1749        pathmapfile GreatPillarTrunkHalf9 
     1750        pathmapclusters 32 
     1751                subentity 0 clusters 2 5 28 21 0 4 22 17 7 20 6 1 19 30 18 24 23 3 12 50 8 33 25 26 42 49 32 14 31 10 13 27  
     1752} 
     1753entity GreatPillarTrunkHalf10 
     1754{ 
     1755        mesh GreatPillarTrunkHalfShape 
     1756        transformation 1 0 0 -40 0 1 0 6 0 0 1 -29.994 0 0 0 1  
     1757        pathmapfile GreatPillarTrunkHalf10 
     1758        pathmapclusters 32 
     1759                subentity 0 clusters 0 2 5 3 28 21 1 7 18 19 22 17 4 6 30 8 25 24 20 12 26 23 10 50 31 9 27 33 13 14 42 11  
     1760} 
     1761entity GreatPillarTrunkHalf11 
     1762{ 
     1763        mesh GreatPillarTrunkHalfShape 
     1764        transformation 1 0 0 -50 0 1 0 6 0 0 1 -29.994 0 0 0 1  
     1765        pathmapfile GreatPillarTrunkHalf11 
     1766        pathmapclusters 32 
     1767                subentity 0 clusters 2 1 18 5 21 3 7 28 19 0 25 8 26 17 22 4 6 30 12 24 10 20 9 27 23 31 11 13 50 15 33 14  
     1768} 
     1769entity GreatPillarTrunkHalf12 
     1770{ 
     1771        mesh GreatPillarTrunkHalfShape 
     1772        transformation 1 0 0 -60 0 1 0 6 0 0 1 -29.994 0 0 0 1  
     1773        pathmapfile GreatPillarTrunkHalf12 
     1774        pathmapclusters 32 
     1775                subentity 0 clusters 2 3 1 18 5 21 7 25 19 8 26 28 10 0 17 12 22 6 30 24 4 9 27 11 31 23 20 15 13 50 14 33  
     1776} 
     1777entity GreatPillarTrunkHalf13 
     1778{ 
     1779        mesh GreatPillarTrunkHalfShape 
     1780        transformation 2.22045e-016 0 -1 70 0 1 0 6 1 0 2.22045e-016 -19.994 0 0 0 1  
     1781        pathmapfile GreatPillarTrunkHalf13 
     1782        pathmapclusters 32 
     1783                subentity 0 clusters 53 0 36 54 37 38 47 39 62 55 34 52 46 35 45 44 51 48 63 32 60 56 40 61 58 50 49 33 20 57 41 42  
     1784} 
     1785entity GreatPillarTrunkHalf14 
     1786{ 
     1787        mesh GreatPillarTrunkHalfShape 
     1788        transformation -1 0 1.22461e-016 60 0 1 0 6 -1.22461e-016 0 -1 30.006 0 0 0 1  
     1789        pathmapfile GreatPillarTrunkHalf14 
     1790        pathmapclusters 32 
     1791                subentity 0 clusters 48 45 63 46 61 62 44 39 37 56 35 57 55 47 41 58 53 40 34 60 54 59 36 51 43 52 42 49 38 33 32 29  
     1792} 
     1793entity GreatPillarTrunkHalf15 
     1794{ 
     1795        mesh GreatPillarTrunkHalfShape 
     1796        transformation 2.22045e-016 0 1 -70 0 1 0 6 -1 0 2.22045e-016 -19.994 0 0 0 1  
     1797        pathmapfile GreatPillarTrunkHalf15 
     1798        pathmapclusters 32 
     1799                subentity 0 clusters 3 1 18 2 25 8 26 7 19 5 10 21 28 9 27 11 12 24 17 30 6 22 31 4 0 15 13 23 20 16 14 29  
     1800} 
     1801entity GreatPillarTrunkHalf16 
     1802{ 
     1803        mesh GreatPillarTrunkHalfShape 
     1804        transformation 2.22045e-016 0 1 -70 0 1 0 6 -1 0 2.22045e-016 -9.99402 0 0 0 1  
     1805        pathmapfile GreatPillarTrunkHalf16 
     1806        pathmapclusters 32 
     1807                subentity 0 clusters 3 18 8 1 25 26 10 7 19 2 28 5 11 9 27 21 12 24 30 17 31 15 6 13 22 4 0 23 16 14 29 20  
     1808} 
     1809entity GreatPillarTrunkHalf17 
     1810{ 
     1811        mesh GreatPillarTrunkHalfShape 
     1812        transformation 2.22045e-016 0 1 -70 0 1 0 6 -1 0 2.22045e-016 0.0059792 0 0 0 1  
     1813        pathmapfile GreatPillarTrunkHalf17 
     1814        pathmapclusters 32 
     1815                subentity 0 clusters 3 26 8 25 11 10 1 18 9 7 19 27 28 12 5 2 21 24 15 31 30 17 13 6 22 16 0 4 23 14 29 42  
     1816} 
     1817entity GreatPillarTrunkHalf18 
     1818{ 
     1819        mesh GreatPillarTrunkHalfShape 
     1820        transformation 2.22045e-016 0 1 -70 0 1 0 6 -1 0 2.22045e-016 10.006 0 0 0 1  
     1821        pathmapfile GreatPillarTrunkHalf18 
     1822        pathmapclusters 32 
     1823                subentity 0 clusters 25 10 8 11 26 9 3 27 19 28 1 18 7 12 15 24 31 5 21 2 13 30 17 6 16 0 23 22 14 29 4 42  
     1824} 
     1825entity GreatPillarTrunkHalf19 
     1826{ 
     1827        mesh GreatPillarTrunkHalfShape 
     1828        transformation 2.22045e-016 0 1 -70 0 1 0 6 -1 0 2.22045e-016 20.006 0 0 0 1  
     1829        pathmapfile GreatPillarTrunkHalf19 
     1830        pathmapclusters 32 
     1831                subentity 0 clusters 10 11 9 25 27 8 26 3 15 28 19 12 31 7 24 1 18 13 5 30 21 17 2 16 6 0 14 29 23 22 4 42  
     1832} 
     1833entity GreatPillarTrunkHalf20 
     1834{ 
     1835        mesh GreatPillarTrunkHalfShape 
     1836        transformation 2.22045e-016 0 -1 70 0 1 0 6 1 0 2.22045e-016 -9.99402 0 0 0 1  
     1837        pathmapfile GreatPillarTrunkHalf20 
     1838        pathmapclusters 32 
     1839                subentity 0 clusters 53 39 0 37 36 54 62 47 46 55 38 34 45 35 52 48 44 63 51 56 61 60 32 40 58 57 49 50 33 41 20 42  
     1840} 
     1841entity GreatPillarTrunkHalf21 
     1842{ 
     1843        mesh GreatPillarTrunkHalfShape 
     1844        transformation 2.22045e-016 0 -1 70 0 1 0 6 1 0 2.22045e-016 0.0059792 0 0 0 1  
     1845        pathmapfile GreatPillarTrunkHalf21 
     1846        pathmapclusters 32 
     1847                subentity 0 clusters 46 62 37 53 39 47 54 45 36 48 55 0 63 35 44 34 38 61 52 56 51 60 40 57 58 32 41 49 33 59 50 42  
     1848} 
     1849entity GreatPillarTrunkHalf22 
     1850{ 
     1851        mesh GreatPillarTrunkHalfShape 
     1852        transformation 2.22045e-016 0 -1 70 0 1 0 6 1 0 2.22045e-016 10.006 0 0 0 1  
     1853        pathmapfile GreatPillarTrunkHalf22 
     1854        pathmapclusters 32 
     1855                subentity 0 clusters 46 48 37 45 62 39 63 53 47 35 55 44 54 61 36 56 34 0 38 52 57 51 60 40 58 41 32 59 49 33 42 43  
     1856} 
     1857entity GreatPillarTrunkHalf23 
     1858{ 
     1859        mesh GreatPillarTrunkHalfShape 
     1860        transformation 2.22045e-016 0 -1 70 0 1 0 6 1 0 2.22045e-016 20.006 0 0 0 1  
     1861        pathmapfile GreatPillarTrunkHalf23 
     1862        pathmapclusters 32 
     1863                subentity 0 clusters 46 45 48 62 63 37 39 61 44 47 35 55 53 56 54 36 57 34 40 58 60 52 51 38 41 59 0 32 49 42 43 33  
     1864} 
     1865entity GreatPillarTrunkHalf24 
     1866{ 
     1867        mesh GreatPillarTrunkHalfShape 
     1868        transformation -1 0 1.22461e-016 50 0 1 0 6 -1.22461e-016 0 -1 30.006 0 0 0 1  
     1869        pathmapfile GreatPillarTrunkHalf24 
     1870        pathmapclusters 32 
     1871                subentity 0 clusters 61 46 45 63 35 48 44 56 57 39 62 37 55 47 41 58 40 59 60 34 43 51 42 53 36 54 49 52 33 29 14 32  
     1872} 
     1873entity GreatPillarTrunkHalf25 
     1874{ 
     1875        mesh GreatPillarTrunkHalfShape 
     1876        transformation -1 0 1.22461e-016 40 0 1 0 6 -1.22461e-016 0 -1 30.006 0 0 0 1  
     1877        pathmapfile GreatPillarTrunkHalf25 
     1878        pathmapclusters 32 
     1879                subentity 0 clusters 61 44 35 57 45 56 63 48 39 41 46 58 59 62 40 55 60 47 37 43 42 51 34 49 29 14 33 52 32 36 53 16  
     1880} 
     1881entity GreatPillarTrunkHalf26 
     1882{ 
     1883        mesh GreatPillarTrunkHalfShape 
     1884        transformation -1 0 1.22461e-016 30 0 1 0 6 -1.22461e-016 0 -1 30.006 0 0 0 1  
     1885        pathmapfile GreatPillarTrunkHalf26 
     1886        pathmapclusters 32 
     1887                subentity 0 clusters 35 57 61 41 56 44 59 58 63 39 40 43 45 60 42 48 55 46 29 14 62 49 47 51 33 37 34 16 32 23 13 52  
     1888} 
     1889entity GreatPillarTrunkHalf27 
     1890{ 
     1891        mesh GreatPillarTrunkHalfShape 
     1892        transformation -1 0 1.22461e-016 20 0 1 0 6 -1.22461e-016 0 -1 30.006 0 0 0 1  
     1893        pathmapfile GreatPillarTrunkHalf27 
     1894        pathmapclusters 32 
     1895                subentity 0 clusters 57 41 59 43 56 58 44 60 40 61 42 35 29 14 39 16 63 49 33 45 55 51 48 47 13 23 17 34 46 62 32 37  
     1896} 
     1897entity GreatPillarTrunkHalf28 
     1898{ 
     1899        mesh GreatPillarTrunkHalfShape 
     1900        transformation -1 0 1.22461e-016 9.99995 0 1 0 6 -1.22461e-016 0 -1 30.006 0 0 0 1  
     1901        pathmapfile GreatPillarTrunkHalf28 
     1902        pathmapclusters 32 
     1903                subentity 0 clusters 43 60 41 35 59 57 14 29 42 58 16 40 56 44 49 13 61 17 33 23 31 39 24 6 51 63 30 15 0 45 55 12  
     1904} 
     1905entity GreatPillarTrunkHalf29 
     1906{ 
     1907        mesh GreatPillarTrunkHalfShape 
     1908        transformation -1 0 1.22461e-016 -4.5892e-005 0 1 0 6 -1.22461e-016 0 -1 30.006 0 0 0 1  
     1909        pathmapfile GreatPillarTrunkHalf29 
     1910        pathmapclusters 32 
     1911                subentity 0 clusters 43 14 41 16 29 59 42 13 57 17 60 58 40 31 0 24 49 23 33 15 56 30 6 35 12 28 44 61 51 7 39 50  
     1912} 
     1913entity GreatPillarTrunkHalf30 
     1914{ 
     1915        mesh GreatPillarTrunkHalfShape 
     1916        transformation -1 0 1.22461e-016 -10 0 1 0 6 -1.22461e-016 0 -1 30.006 0 0 0 1  
     1917        pathmapfile GreatPillarTrunkHalf30 
     1918        pathmapclusters 32 
     1919                subentity 0 clusters 16 0 17 13 14 29 43 31 42 41 59 15 24 12 28 30 23 6 58 57 60 40 33 49 7 56 27 9 11 19 35 44  
     1920} 
     1921entity GreatPillarTrunkHalf31 
     1922{ 
     1923        mesh GreatPillarTrunkHalfShape 
     1924        transformation -1 0 1.22461e-016 -20 0 1 0 6 -1.22461e-016 0 -1 30.006 0 0 0 1  
     1925        pathmapfile GreatPillarTrunkHalf31 
     1926        pathmapclusters 32 
     1927                subentity 0 clusters 13 16 28 17 15 31 29 24 14 12 43 0 42 30 59 41 6 9 23 27 11 7 19 10 58 33 49 60 40 57 25 8  
     1928} 
     1929entity GreatPillarTrunkHalf32 
     1930{ 
     1931        mesh GreatPillarTrunkHalfShape 
     1932        transformation -1 0 1.22461e-016 -30 0 1 0 6 -1.22461e-016 0 -1 30.006 0 0 0 1  
     1933        pathmapfile GreatPillarTrunkHalf32 
     1934        pathmapclusters 32 
     1935                subentity 0 clusters 15 13 31 28 16 24 12 9 0 27 11 17 29 14 30 10 43 7 6 19 42 25 8 23 59 26 41 5 21 33 49 58  
     1936} 
     1937entity GreatPillarTrunkHalf33 
     1938{ 
     1939        mesh GreatPillarTrunkHalfShape 
     1940        transformation -1 0 1.22461e-016 -40 0 1 0 6 -1.22461e-016 0 -1 30.006 0 0 0 1  
     1941        pathmapfile GreatPillarTrunkHalf33 
     1942        pathmapclusters 32 
     1943                subentity 0 clusters 15 0 13 9 31 11 12 27 24 10 16 28 25 8 19 30 17 26 7 29 14 6 5 43 23 42 21 1 3 59 41 18  
     1944} 
     1945entity GreatPillarTrunkHalf34 
     1946{ 
     1947        mesh GreatPillarTrunkHalfShape 
     1948        transformation -1 0 1.22461e-016 -50 0 1 0 6 -1.22461e-016 0 -1 30.006 0 0 0 1  
     1949        pathmapfile GreatPillarTrunkHalf34 
     1950        pathmapclusters 32 
     1951                subentity 0 clusters 11 9 15 10 27 31 12 25 13 24 8 26 28 0 19 16 7 30 17 3 6 5 29 14 1 18 21 23 43 42 2 59  
     1952} 
     1953entity GreatPillarTrunkHalf35 
     1954{ 
     1955        mesh GreatPillarTrunkHalfShape 
     1956        transformation -1 0 1.22461e-016 -60 0 1 0 6 -1.22461e-016 0 -1 30.006 0 0 0 1  
     1957        pathmapfile GreatPillarTrunkHalf35 
     1958        pathmapclusters 32 
     1959                subentity 0 clusters 11 9 10 27 25 15 26 8 12 31 24 28 13 19 7 3 16 30 1 18 17 0 5 6 21 14 29 2 23 43 42 22  
     1960} 
     1961entity GreatPillarTrunkQuater 
     1962{ 
     1963        mesh GreatPillarTrunkQuaterShape 
     1964        transformation 1 0 0 70 0 1 0 6 0 0 1 -29.994 0 0 0 1  
     1965        pathmapfile GreatPillarTrunkQuater 
     1966        pathmapclusters 32 
     1967                subentity 0 clusters 53 38 36 54 0 37 47 52 34 55 39 62 46 35 51 32 45 44 60 48 63 40 56 50 20 61 58 49 33 57 42 41  
     1968} 
     1969entity GreatPillarTrunkQuater1 
     1970{ 
     1971        mesh GreatPillarTrunkQuaterShape 
     1972        transformation 2.22045e-016 0 -1 70 0 1 0 6 1 0 2.22045e-016 30.006 0 0 0 1  
     1973        pathmapfile GreatPillarTrunkQuater1 
     1974        pathmapclusters 32 
     1975                subentity 0 clusters 48 46 45 63 62 61 37 39 44 56 35 55 47 57 53 54 36 34 58 40 41 60 51 59 52 38 43 42 49 32 0 33  
     1976} 
     1977entity GreatPillarTrunkQuater2 
     1978{ 
     1979        mesh GreatPillarTrunkQuaterShape 
     1980        transformation 2.22045e-016 0 1 -70 0 1 0 6 -1 0 2.22045e-016 -29.994 0 0 0 1  
     1981        pathmapfile GreatPillarTrunkQuater2 
     1982        pathmapclusters 32 
     1983                subentity 0 clusters 3 2 1 18 25 8 26 5 21 7 19 28 10 9 12 27 11 17 24 30 22 6 0 4 31 15 23 13 20 14 16 50  
     1984} 
     1985entity GreatPillarTrunkQuater3 
     1986{ 
     1987        mesh GreatPillarTrunkQuaterShape 
     1988        transformation -1 0 1.22461e-016 -70 0 1 0 6 -1.22461e-016 0 -1 30.006 0 0 0 1  
     1989        pathmapfile GreatPillarTrunkQuater3 
     1990        pathmapclusters 32 
     1991                subentity 0 clusters 11 10 9 27 25 26 8 15 12 31 28 3 19 24 13 7 1 18 30 5 16 17 21 6 2 0 14 29 23 43 22 42  
     1992} 
     1993entity GreatPillarTrunk3 
     1994{ 
     1995        mesh GreatPillarTrunkShape3 
     1996        transformation 1 0 0 60 0 1 0 6 0 0 1 -20 0 0 0 1  
     1997        pathmapfile GreatPillarTrunk3 
     1998        pathmapclusters 32 
     1999                subentity 0 clusters 36 53 54 38 37 47 34 52 39 55 0 62 35 46 51 44 32 45 60 48 63 40 56 50 61 58 49 20 33 57 42 41  
     2000} 
     2001entity GreatPillarTrunk4 
     2002{ 
     2003        mesh GreatPillarTrunkShape3 
     2004        transformation 1 0 0 60 0 1 0 6 0 0 1 -10 0 0 0 1  
     2005        pathmapfile GreatPillarTrunk4 
     2006        pathmapclusters 32 
     2007                subentity 0 clusters 37 47 39 53 36 35 54 55 62 34 38 46 0 52 45 44 48 51 63 60 56 32 40 61 58 57 49 50 33 41 20 42  
     2008} 
     2009entity GreatPillarTrunk5 
     2010{ 
     2011        mesh GreatPillarTrunkShape3 
     2012        transformation 1 0 0 60 0 1 0 6 0 0 1 0 0 0 0 1  
     2013        pathmapfile GreatPillarTrunk5 
     2014        pathmapclusters 32 
     2015                subentity 0 clusters 37 47 39 62 46 53 55 45 36 54 35 48 44 34 63 52 38 56 61 0 51 60 40 58 57 32 49 41 33 59 42 50  
     2016} 
     2017entity GreatPillarTrunk6 
     2018{ 
     2019        mesh GreatPillarTrunkShape3 
     2020        transformation 1 0 0 60 0 1 0 6 0 0 1 10 0 0 0 1  
     2021        pathmapfile GreatPillarTrunk6 
     2022        pathmapclusters 32 
     2023                subentity 0 clusters 39 45 62 48 46 35 37 63 47 44 55 61 53 56 36 54 34 57 60 52 40 51 58 38 0 41 32 59 49 42 33 43  
     2024} 
     2025entity GreatPillarTrunk7 
     2026{ 
     2027        mesh GreatPillarTrunkShape3 
     2028        transformation 1 0 0 60 0 1 0 6 0 0 1 20 0 0 0 1  
     2029        pathmapfile GreatPillarTrunk7 
     2030        pathmapclusters 32 
     2031                subentity 0 clusters 45 48 46 63 62 61 39 37 44 35 47 56 55 57 53 34 54 36 40 58 60 41 51 52 59 38 49 42 43 32 33 0  
     2032} 
     2033entity GreatPillarTrunk9 
     2034{ 
     2035        mesh GreatPillarTrunkShape3 
     2036        transformation 1 0 0 50 0 1 0 6 0 0 1 -10 0 0 0 1  
     2037        pathmapfile GreatPillarTrunk9 
     2038        pathmapclusters 32 
     2039                subentity 0 clusters 47 39 34 35 37 36 55 54 52 53 38 62 44 51 46 60 32 45 40 56 63 48 0 58 61 49 33 50 57 20 42 41  
     2040} 
     2041entity GreatPillarTrunk10 
     2042{ 
     2043        mesh GreatPillarTrunkShape3 
     2044        transformation 1 0 0 50 0 1 0 6 0 0 1 0 0 0 0 1  
     2045        pathmapfile GreatPillarTrunk10 
     2046        pathmapclusters 32 
     2047                subentity 0 clusters 37 47 39 35 46 55 44 34 62 45 36 53 54 60 56 63 52 51 48 40 61 38 58 32 57 49 41 33 0 42 59 50  
     2048} 
     2049entity GreatPillarTrunk11 
     2050{ 
     2051        mesh GreatPillarTrunkShape3 
     2052        transformation 1 0 0 50 0 1 0 6 0 0 1 10 0 0 0 1  
     2053        pathmapfile GreatPillarTrunk11 
     2054        pathmapclusters 32 
     2055                subentity 0 clusters 47 39 35 46 44 37 45 62 55 63 61 56 48 34 60 57 40 36 53 51 58 54 52 41 38 59 32 49 42 33 43 0  
     2056} 
     2057entity GreatPillarTrunk12 
     2058{ 
     2059        mesh GreatPillarTrunkShape3 
     2060        transformation 1 0 0 50 0 1 0 6 0 0 1 20 0 0 0 1  
     2061        pathmapfile GreatPillarTrunk12 
     2062        pathmapclusters 32 
     2063                subentity 0 clusters 61 46 45 63 39 35 44 48 62 56 37 47 55 57 58 40 60 41 34 51 59 53 36 54 52 42 43 49 33 32 38 14  
     2064} 
     2065entity GreatPillarTrunk14 
     2066{ 
     2067        mesh GreatPillarTrunkShape3 
     2068        transformation 1 0 0 50 0 1 0 6 0 0 1 -20 0 0 0 1  
     2069        pathmapfile GreatPillarTrunk14 
     2070        pathmapclusters 32 
     2071                subentity 0 clusters 36 53 34 38 52 54 47 55 37 39 35 51 32 62 60 44 46 0 40 50 45 56 20 49 33 58 63 48 61 42 57 41  
     2072} 
     2073entity GreatPillarTrunk15 
     2074{ 
     2075        mesh GreatPillarTrunkShape3 
     2076        transformation 1 0 0 40 0 1 0 6 0 0 1 -10 0 0 0 1  
     2077        pathmapfile GreatPillarTrunk15 
     2078        pathmapclusters 32 
     2079                subentity 0 clusters 47 39 34 35 55 52 51 60 36 37 38 44 32 40 54 62 53 56 58 49 33 50 46 45 63 42 20 61 57 41 48 0  
     2080} 
     2081entity GreatPillarTrunk16 
     2082{ 
     2083        mesh GreatPillarTrunkShape3 
     2084        transformation 1 0 0 40 0 1 0 6 0 0 1 0 0 0 0 1  
     2085        pathmapfile GreatPillarTrunk16 
     2086        pathmapclusters 32 
     2087                subentity 0 clusters 39 60 55 44 35 34 47 37 51 40 56 62 52 58 46 36 45 32 63 61 38 57 54 49 33 53 41 48 42 59 50 43  
     2088} 
     2089entity GreatPillarTrunk17 
     2090{ 
     2091        mesh GreatPillarTrunkShape3 
     2092        transformation 1 0 0 40 0 1 0 6 0 0 1 10 0 0 0 1  
     2093        pathmapfile GreatPillarTrunk17 
     2094        pathmapclusters 32 
     2095                subentity 0 clusters 44 35 39 60 56 55 47 61 40 63 45 37 62 34 57 58 46 51 41 48 59 49 52 42 32 36 33 54 43 53 38 50  
     2096} 
     2097entity GreatPillarTrunk18 
     2098{ 
     2099        mesh GreatPillarTrunkShape3 
     2100        transformation 1 0 0 40 0 1 0 6 0 0 1 20 0 0 0 1  
     2101        pathmapfile GreatPillarTrunk18 
     2102        pathmapclusters 32 
     2103                subentity 0 clusters 56 35 44 39 61 63 57 45 46 48 55 41 58 40 62 60 47 37 59 34 51 42 43 49 33 52 32 36 14 29 53 54  
     2104} 
     2105entity GreatPillarTrunk20 
     2106{ 
     2107        mesh GreatPillarTrunkShape3 
     2108        transformation 1 0 0 40 0 1 0 6 0 0 1 -20 0 0 0 1  
     2109        pathmapfile GreatPillarTrunk20 
     2110        pathmapclusters 32 
     2111                subentity 0 clusters 60 34 38 52 47 35 36 32 51 55 39 54 37 53 40 50 44 20 33 62 49 58 56 0 46 42 45 63 61 4 41 57  
     2112} 
     2113entity GreatPillarTrunk21 
     2114{ 
     2115        mesh GreatPillarTrunkShape3 
     2116        transformation 1 0 0 30 0 1 0 6 0 0 1 -10 0 0 0 1  
     2117        pathmapfile GreatPillarTrunk21 
     2118        pathmapclusters 32 
     2119                subentity 0 clusters 34 47 60 35 51 32 40 52 55 39 33 38 49 44 50 58 42 56 36 20 37 54 41 62 57 23 53 59 43 0 4 61  
     2120} 
     2121entity GreatPillarTrunk22 
     2122{ 
     2123        mesh GreatPillarTrunkShape3 
     2124        transformation 1 0 0 30 0 1 0 6 0 0 1 0 0 0 0 1  
     2125        pathmapfile GreatPillarTrunk22 
     2126        pathmapclusters 32 
     2127                subentity 0 clusters 60 40 35 47 39 34 51 44 55 58 56 32 49 33 42 52 41 57 37 50 59 61 62 38 63 43 45 36 46 14 20 54  
     2128} 
     2129entity GreatPillarTrunk23 
     2130{ 
     2131        mesh GreatPillarTrunkShape3 
     2132        transformation 1 0 0 30 0 1 0 6 0 0 1 10 0 0 0 1  
     2133        pathmapfile GreatPillarTrunk23 
     2134        pathmapclusters 32 
     2135                subentity 0 clusters 44 39 56 35 40 57 58 60 41 55 51 47 61 34 42 59 49 33 63 43 45 32 37 62 46 52 14 29 48 50 23 36  
     2136} 
     2137entity GreatPillarTrunk24 
     2138{ 
     2139        mesh GreatPillarTrunkShape3 
     2140        transformation 1 0 0 30 0 1 0 6 0 0 1 20 0 0 0 1  
     2141        pathmapfile GreatPillarTrunk24 
     2142        pathmapclusters 32 
     2143                subentity 0 clusters 56 44 39 60 57 41 35 61 58 40 59 63 42 43 45 55 47 49 51 48 33 62 34 46 14 37 29 32 52 16 23 50  
     2144} 
     2145entity GreatPillarTrunk26 
     2146{ 
     2147        mesh GreatPillarTrunkShape3 
     2148        transformation 1 0 0 30 0 1 0 6 0 0 1 -20 0 0 0 1  
     2149        pathmapfile GreatPillarTrunk26 
     2150        pathmapclusters 32 
     2151                subentity 0 clusters 38 34 60 35 32 52 51 47 50 20 55 40 33 39 36 49 54 0 44 58 37 42 53 56 4 23 62 22 41 59 57 14  
     2152} 
     2153entity GreatPillarTrunk27 
     2154{ 
     2155        mesh GreatPillarTrunkShape3 
     2156        transformation 1 0 0 20 0 1 0 6 0 0 1 -10 0 0 0 1  
     2157        pathmapfile GreatPillarTrunk27 
     2158        pathmapclusters 32 
     2159                subentity 0 clusters 60 32 42 51 33 40 49 47 34 50 35 58 52 20 55 39 44 38 23 4 56 41 43 14 59 22 6 0 17 57 29 36  
     2160} 
     2161entity GreatPillarTrunk28 
     2162{ 
     2163        mesh GreatPillarTrunkShape3 
     2164        transformation 1 0 0 20 0 1 0 6 0 0 1 0 0 0 0 1  
     2165        pathmapfile GreatPillarTrunk28 
     2166        pathmapclusters 32 
     2167                subentity 0 clusters 35 40 42 60 47 33 49 58 51 32 34 44 41 56 39 55 50 43 59 14 57 23 52 29 20 17 6 4 61 38 37 22  
     2168} 
     2169entity GreatPillarTrunk29 
     2170{ 
     2171        mesh GreatPillarTrunkShape3 
     2172        transformation 1 0 0 20 0 1 0 6 0 0 1 10 0 0 0 1  
     2173        pathmapfile GreatPillarTrunk29 
     2174        pathmapclusters 32 
     2175                subentity 0 clusters 40 35 58 60 41 42 44 56 49 33 59 57 43 51 39 14 47 29 55 34 32 61 23 50 63 17 16 52 45 6 37 62  
     2176} 
     2177entity GreatPillarTrunk30 
     2178{ 
     2179        mesh GreatPillarTrunkShape3 
     2180        transformation 1 0 0 20 0 1 0 6 0 0 1 20 0 0 0 1  
     2181        pathmapfile GreatPillarTrunk30 
     2182        pathmapclusters 32 
     2183                subentity 0 clusters 41 57 60 42 58 40 59 56 44 43 35 61 14 49 29 39 33 51 55 63 16 47 45 23 34 32 17 13 62 48 50 6  
     2184} 
     2185entity GreatPillarTrunk32 
     2186{ 
     2187        mesh GreatPillarTrunkShape3 
     2188        transformation 1 0 0 20 0 1 0 6 0 0 1 -20 0 0 0 1  
     2189        pathmapfile GreatPillarTrunk32 
     2190        pathmapclusters 32 
     2191                subentity 0 clusters 32 47 60 20 51 50 34 33 52 49 35 38 40 0 42 4 55 58 23 39 22 44 36 6 17 56 14 54 41 43 37 59  
     2192} 
     2193entity GreatPillarTrunk33 
     2194{ 
     2195        mesh GreatPillarTrunkShape3 
     2196        transformation 1 0 0 9.99995 0 1 0 6 0 0 1 -10 0 0 0 1  
     2197        pathmapfile GreatPillarTrunk33 
     2198        pathmapclusters 32 
     2199                subentity 0 clusters 33 47 60 35 49 32 50 42 51 40 23 20 4 58 6 34 14 22 17 43 52 41 29 59 0 30 55 44 56 39 38 24  
     2200} 
     2201entity GreatPillarTrunk34 
     2202{ 
     2203        mesh GreatPillarTrunkShape3 
     2204        transformation 1 0 0 9.99995 0 1 0 6 0 0 1 0 0 0 0 1  
     2205        pathmapfile GreatPillarTrunk34 
     2206        pathmapclusters 32 
     2207                subentity 0 clusters 33 60 35 49 42 43 40 58 14 23 51 41 32 50 59 29 17 6 47 4 34 56 44 20 57 22 30 39 55 16 52 24  
     2208} 
     2209entity GreatPillarTrunk35 
     2210{ 
     2211        mesh GreatPillarTrunkShape3 
     2212        transformation 1 0 0 9.99995 0 1 0 6 0 0 1 10 0 0 0 1  
     2213        pathmapfile GreatPillarTrunk35 
     2214        pathmapclusters 32 
     2215                subentity 0 clusters 43 40 42 60 41 35 58 33 14 49 59 29 23 57 17 56 51 44 16 6 32 50 47 39 13 30 34 55 24 4 61 22  
     2216} 
     2217entity GreatPillarTrunk36 
     2218{ 
     2219        mesh GreatPillarTrunkShape3 
     2220        transformation 1 0 0 9.99995 0 1 0 6 0 0 1 20 0 0 0 1  
     2221        pathmapfile GreatPillarTrunk36 
     2222        pathmapclusters 32 
     2223                subentity 0 clusters 41 42 60 59 43 40 58 14 29 57 49 33 56 16 35 17 44 23 13 61 51 6 39 30 24 31 32 47 55 50 34 63  
     2224} 
     2225entity GreatPillarTrunk38 
     2226{ 
     2227        mesh GreatPillarTrunkShape3 
     2228        transformation 1 0 0 9.99995 0 1 0 6 0 0 1 -20 0 0 0 1  
     2229        pathmapfile GreatPillarTrunk38 
     2230        pathmapclusters 32 
     2231                subentity 0 clusters 32 50 20 47 33 60 35 4 49 51 23 22 42 0 40 34 52 17 6 38 58 14 55 43 30 41 39 29 7 44 59 28  
     2232} 
     2233entity GreatPillarTrunk39 
     2234{ 
     2235        mesh GreatPillarTrunkShape3 
     2236        transformation 1 0 0 -4.5892e-005 0 1 0 6 0 0 1 -10 0 0 0 1  
     2237        pathmapfile GreatPillarTrunk39 
     2238        pathmapclusters 32 
     2239                subentity 0 clusters 33 42 23 4 49 6 50 22 60 17 32 20 14 40 51 30 43 7 35 58 29 24 28 0 41 47 59 5 21 34 16 12  
     2240} 
     2241entity GreatPillarTrunk40 
     2242{ 
     2243        mesh GreatPillarTrunkShape3 
     2244        transformation 1 0 0 -4.5892e-005 0 1 0 6 0 0 1 0 0 0 0 1  
     2245        pathmapfile GreatPillarTrunk40 
     2246        pathmapclusters 32 
     2247                subentity 0 clusters 42 17 33 60 43 23 14 49 6 40 29 58 4 41 50 30 59 22 32 24 16 35 51 28 20 13 7 12 31 47 57 56  
     2248} 
     2249entity GreatPillarTrunk41 
     2250{ 
     2251        mesh GreatPillarTrunkShape3 
     2252        transformation 1 0 0 -4.5892e-005 0 1 0 6 0 0 1 10 0 0 0 1  
     2253        pathmapfile GreatPillarTrunk41 
     2254        pathmapclusters 32 
     2255                subentity 0 clusters 42 14 43 17 60 29 33 41 23 49 40 59 58 16 6 13 30 24 35 28 57 31 4 12 50 51 56 32 22 7 44 15  
     2256} 
     2257entity GreatPillarTrunk42 
     2258{ 
     2259        mesh GreatPillarTrunkShape3 
     2260        transformation 1 0 0 -4.5892e-005 0 1 0 6 0 0 1 20 0 0 0 1  
     2261        pathmapfile GreatPillarTrunk42 
     2262        pathmapclusters 32 
     2263                subentity 0 clusters 43 29 60 42 14 17 41 59 16 13 58 40 33 49 23 57 6 24 31 30 56 35 28 12 15 0 44 51 50 4 7 32  
     2264} 
     2265entity GreatPillarTrunk44 
     2266{ 
     2267        mesh GreatPillarTrunkShape3 
     2268        transformation 1 0 0 -4.5892e-005 0 1 0 6 0 0 1 -20 0 0 0 1  
     2269        pathmapfile GreatPillarTrunk44 
     2270        pathmapclusters 32 
     2271                subentity 0 clusters 50 20 4 17 60 33 22 32 23 49 6 0 42 51 7 35 40 30 47 14 28 21 24 5 58 34 52 29 43 2 41 38  
     2272} 
     2273entity GreatPillarTrunk45 
     2274{ 
     2275        mesh GreatPillarTrunkShape3 
     2276        transformation 1 0 0 -10 0 1 0 6 0 0 1 -10 0 0 0 1  
     2277        pathmapfile GreatPillarTrunk45 
     2278        pathmapclusters 32 
     2279                subentity 0 clusters 6 7 23 28 4 17 22 33 30 42 24 50 20 14 49 5 21 60 12 32 29 0 40 43 16 13 2 19 58 51 31 41  
     2280} 
     2281entity GreatPillarTrunk46 
     2282{ 
     2283        mesh GreatPillarTrunkShape3 
     2284        transformation 1 0 0 -10 0 1 0 6 0 0 1 0 0 0 0 1  
     2285        pathmapfile GreatPillarTrunk46 
     2286        pathmapclusters 32 
     2287                subentity 0 clusters 6 42 17 23 28 14 30 33 24 29 4 49 7 16 22 12 43 13 60 40 50 31 41 5 59 58 21 20 32 19 0 51  
     2288} 
     2289entity GreatPillarTrunk47 
     2290{ 
     2291        mesh GreatPillarTrunkShape3 
     2292        transformation 1 0 0 -10 0 1 0 6 0 0 1 10 0 0 0 1  
     2293        pathmapfile GreatPillarTrunk47 
     2294        pathmapclusters 32 
     2295                subentity 0 clusters 16 14 42 17 29 6 23 13 30 24 28 43 33 12 31 41 49 59 60 40 7 58 4 15 22 5 50 19 0 21 57 32  
     2296} 
     2297entity GreatPillarTrunk48 
     2298{ 
     2299        mesh GreatPillarTrunkShape3 
     2300        transformation 1 0 0 -10 0 1 0 6 0 0 1 20 0 0 0 1  
     2301        pathmapfile GreatPillarTrunk48 
     2302        pathmapclusters 32 
     2303                subentity 0 clusters 14 16 42 13 29 43 24 31 17 41 59 30 23 6 12 28 15 0 60 33 58 49 40 7 57 4 19 22 56 27 9 5  
     2304} 
     2305entity GreatPillarTrunk50 
     2306{ 
     2307        mesh GreatPillarTrunkShape3 
     2308        transformation 1 0 0 -10 0 1 0 6 0 0 1 -20 0 0 0 1  
     2309        pathmapfile GreatPillarTrunk50 
     2310        pathmapclusters 32 
     2311                subentity 0 clusters 4 17 22 20 6 23 50 33 7 0 28 30 21 5 42 32 49 24 2 60 14 12 51 40 19 29 43 58 35 13 16 1  
     2312} 
     2313entity GreatPillarTrunk51 
     2314{ 
     2315        mesh GreatPillarTrunkShape3 
     2316        transformation 1 0 0 -20 0 1 0 6 0 0 1 -10 0 0 0 1  
     2317        pathmapfile GreatPillarTrunk51 
     2318        pathmapclusters 32 
     2319                subentity 0 clusters 7 6 17 24 28 30 4 22 23 5 21 12 33 19 14 42 2 20 0 50 49 13 31 29 16 1 60 43 32 8 25 40  
     2320} 
     2321entity GreatPillarTrunk52 
     2322{ 
     2323        mesh GreatPillarTrunkShape3 
     2324        transformation 1 0 0 -20 0 1 0 6 0 0 1 0 0 0 0 1  
     2325        pathmapfile GreatPillarTrunk52 
     2326        pathmapclusters 32 
     2327                subentity 0 clusters 24 6 7 28 17 30 12 23 14 5 13 42 16 4 22 31 29 21 19 33 49 43 15 50 20 60 2 0 8 59 41 27  
     2328} 
     2329entity GreatPillarTrunk53 
     2330{ 
     2331        mesh GreatPillarTrunkShape3 
     2332        transformation 1 0 0 -20 0 1 0 6 0 0 1 10 0 0 0 1  
     2333        pathmapfile GreatPillarTrunk53 
     2334        pathmapclusters 32 
     2335                subentity 0 clusters 16 24 17 12 13 6 30 14 31 23 29 28 7 42 15 43 19 5 33 22 4 49 59 41 21 27 9 60 0 40 8 58  
     2336} 
     2337entity GreatPillarTrunk54 
     2338{ 
     2339        mesh GreatPillarTrunkShape3 
     2340        transformation 1 0 0 -20 0 1 0 6 0 0 1 20 0 0 0 1  
     2341        pathmapfile GreatPillarTrunk54 
     2342        pathmapclusters 32 
     2343                subentity 0 clusters 13 24 31 16 14 12 29 15 17 28 30 42 6 43 23 7 59 41 0 9 27 19 33 11 49 5 60 58 10 40 22 8  
     2344} 
     2345entity GreatPillarTrunk56 
     2346{ 
     2347        mesh GreatPillarTrunkShape3 
     2348        transformation 1 0 0 -20 0 1 0 6 0 0 1 -20 0 0 0 1  
     2349        pathmapfile GreatPillarTrunk56 
     2350        pathmapclusters 32 
     2351                subentity 0 clusters 28 7 17 4 22 6 5 21 0 2 20 30 23 24 50 33 19 12 42 1 49 14 32 18 60 29 31 13 8 16 25 3  
     2352} 
     2353entity GreatPillarTrunk57 
     2354{ 
     2355        mesh GreatPillarTrunkShape3 
     2356        transformation 1 0 0 -30 0 1 0 6 0 0 1 -10 0 0 0 1  
     2357        pathmapfile GreatPillarTrunk57 
     2358        pathmapclusters 32 
     2359                subentity 0 clusters 7 17 5 28 6 24 21 30 12 19 22 4 2 23 1 8 31 0 25 18 13 14 20 26 42 3 33 16 10 27 9 29  
     2360} 
     2361entity GreatPillarTrunk58 
     2362{ 
     2363        mesh GreatPillarTrunkShape3 
     2364        transformation 1 0 0 -30 0 1 0 6 0 0 1 0 0 0 0 1  
     2365        pathmapfile GreatPillarTrunk58 
     2366        pathmapclusters 32 
     2367                subentity 0 clusters 24 12 7 28 6 30 5 17 19 31 21 13 23 8 14 22 16 4 15 25 9 27 1 29 10 2 42 26 33 18 11 0  
     2368} 
     2369entity GreatPillarTrunk59 
     2370{ 
     2371        mesh GreatPillarTrunkShape3 
     2372        transformation 1 0 0 -30 0 1 0 6 0 0 1 10 0 0 0 1  
     2373        pathmapfile GreatPillarTrunk59 
     2374        pathmapclusters 32 
     2375                subentity 0 clusters 12 24 7 28 17 31 30 13 6 15 19 16 14 9 5 27 23 29 8 10 25 21 11 42 26 22 4 43 1 0 33 2  
     2376} 
     2377entity GreatPillarTrunk60 
     2378{ 
     2379        mesh GreatPillarTrunkShape3 
     2380        transformation 1 0 0 -30 0 1 0 6 0 0 1 20 0 0 0 1  
     2381        pathmapfile GreatPillarTrunk60 
     2382        pathmapclusters 32 
     2383                subentity 0 clusters 24 13 12 17 31 15 16 30 28 9 27 14 7 29 6 11 19 10 0 23 25 8 42 43 5 26 59 21 41 33 22 4  
     2384} 
     2385entity GreatPillarTrunk62 
     2386{ 
     2387        mesh GreatPillarTrunkShape3 
     2388        transformation 1 0 0 -30 0 1 0 6 0 0 1 -20 0 0 0 1  
     2389        pathmapfile GreatPillarTrunk62 
     2390        pathmapclusters 32 
     2391                subentity 0 clusters 5 17 2 28 7 21 4 22 6 30 0 19 24 1 20 23 12 18 8 3 25 50 33 26 31 14 42 13 49 10 27 9  
     2392} 
     2393entity GreatPillarTrunk63 
     2394{ 
     2395        mesh GreatPillarTrunkShape3 
     2396        transformation 1 0 0 -40 0 1 0 6 0 0 1 -10 0 0 0 1  
     2397        pathmapfile GreatPillarTrunk63 
     2398        pathmapclusters 32 
     2399                subentity 0 clusters 5 7 28 19 21 2 1 17 12 24 8 6 30 25 18 3 26 22 10 4 31 9 27 23 0 13 15 11 14 16 20 42  
     2400} 
     2401entity GreatPillarTrunk64 
     2402{ 
     2403        mesh GreatPillarTrunkShape3 
     2404        transformation 1 0 0 -40 0 1 0 6 0 0 1 0 0 0 0 1  
     2405        pathmapfile GreatPillarTrunk64 
     2406        pathmapclusters 32 
     2407                subentity 0 clusters 7 17 12 28 19 5 24 8 30 25 6 10 21 31 1 9 26 27 13 15 18 3 2 11 23 22 16 4 14 29 0 42  
     2408} 
     2409entity GreatPillarTrunk65 
     2410{ 
     2411        mesh GreatPillarTrunkShape3 
     2412        transformation 1 0 0 -40 0 1 0 6 0 0 1 10 0 0 0 1  
     2413        pathmapfile GreatPillarTrunk65 
     2414        pathmapclusters 32 
     2415                subentity 0 clusters 24 12 7 31 19 9 27 15 28 8 10 13 30 17 25 11 5 26 6 16 21 1 14 23 3 29 18 0 2 22 42 4  
     2416} 
     2417entity GreatPillarTrunk66 
     2418{ 
     2419        mesh GreatPillarTrunkShape3 
     2420        transformation 1 0 0 -40 0 1 0 6 0 0 1 20 0 0 0 1  
     2421        pathmapfile GreatPillarTrunk66 
     2422        pathmapclusters 32 
     2423                subentity 0 clusters 24 15 12 28 10 9 31 13 27 11 25 19 7 8 30 16 17 0 26 6 14 5 29 23 21 1 3 42 43 18 22 2  
     2424} 
     2425entity GreatPillarTrunk68 
     2426{ 
     2427        mesh GreatPillarTrunkShape3 
     2428        transformation 1 0 0 -40 0 1 0 6 0 0 1 -20 0 0 0 1  
     2429        pathmapfile GreatPillarTrunk68 
     2430        pathmapclusters 32 
     2431                subentity 0 clusters 5 28 7 2 21 17 1 19 18 6 0 3 22 30 4 8 24 12 25 26 23 10 20 31 9 27 13 11 14 33 15 50  
     2432} 
     2433entity GreatPillarTrunk69 
     2434{ 
     2435        mesh GreatPillarTrunkShape3 
     2436        transformation 1 0 0 -50 0 1 0 6 0 0 1 -10 0 0 0 1  
     2437        pathmapfile GreatPillarTrunk69 
     2438        pathmapclusters 32 
     2439                subentity 0 clusters 1 7 3 28 25 19 5 8 18 21 26 2 10 12 24 17 30 9 27 6 11 31 22 4 15 13 0 23 16 14 20 29  
     2440} 
     2441entity GreatPillarTrunk70 
     2442{ 
     2443        mesh GreatPillarTrunkShape3 
     2444        transformation 1 0 0 -50 0 1 0 6 0 0 1 0 0 0 0 1  
     2445        pathmapfile GreatPillarTrunk70 
     2446        pathmapclusters 32 
     2447                subentity 0 clusters 8 28 25 10 7 19 26 12 5 1 9 27 3 24 18 11 21 17 30 31 2 6 15 13 22 23 16 4 14 0 29 42  
     2448} 
     2449entity GreatPillarTrunk71 
     2450{ 
     2451        mesh GreatPillarTrunkShape3 
     2452        transformation 1 0 0 -50 0 1 0 6 0 0 1 10 0 0 0 1  
     2453        pathmapfile GreatPillarTrunk71 
     2454        pathmapclusters 32 
     2455                subentity 0 clusters 28 10 25 9 8 12 27 26 11 19 24 7 15 31 5 13 1 30 3 17 18 21 6 16 2 14 23 0 29 22 4 42  
     2456} 
     2457entity GreatPillarTrunk72 
     2458{ 
     2459        mesh GreatPillarTrunkShape3 
     2460        transformation 1 0 0 -50 0 1 0 6 0 0 1 20 0 0 0 1  
     2461        pathmapfile GreatPillarTrunk72 
     2462        pathmapclusters 32 
     2463                subentity 0 clusters 9 10 11 25 27 15 12 24 8 31 26 28 13 19 7 30 17 16 5 3 0 1 6 18 21 14 29 23 2 42 43 22  
     2464} 
     2465entity GreatPillarTrunk74 
     2466{ 
     2467        mesh GreatPillarTrunkShape3 
     2468        transformation 1 0 0 -50 0 1 0 6 0 0 1 -20 0 0 0 1  
     2469        pathmapfile GreatPillarTrunk74 
     2470        pathmapclusters 32 
     2471                subentity 0 clusters 1 2 3 7 5 18 21 19 28 25 8 26 17 12 10 6 30 24 0 22 4 9 27 11 31 23 20 13 15 14 16 33  
     2472} 
     2473entity GreatPillarTrunk75 
     2474{ 
     2475        mesh GreatPillarTrunkShape3 
     2476        transformation 1 0 0 -60 0 1 0 6 0 0 1 -10 0 0 0 1  
     2477        pathmapfile GreatPillarTrunk75 
     2478        pathmapclusters 32 
     2479                subentity 0 clusters 7 1 25 3 8 18 26 19 28 10 5 2 21 9 12 27 11 24 17 30 6 31 15 22 13 4 0 23 16 14 29 20  
     2480} 
     2481entity GreatPillarTrunk76 
     2482{ 
     2483        mesh GreatPillarTrunkShape3 
     2484        transformation 1 0 0 -60 0 1 0 6 0 0 1 0 0 0 0 1  
     2485        pathmapfile GreatPillarTrunk76 
     2486        pathmapclusters 32 
     2487                subentity 0 clusters 8 10 25 28 7 26 3 19 1 9 18 11 27 12 5 24 21 2 31 15 30 17 6 13 22 16 23 4 0 14 29 42  
     2488} 
     2489entity GreatPillarTrunk77 
     2490{ 
     2491        mesh GreatPillarTrunkShape3 
     2492        transformation 1 0 0 -60 0 1 0 6 0 0 1 10 0 0 0 1  
     2493        pathmapfile GreatPillarTrunk77 
     2494        pathmapclusters 32 
     2495                subentity 0 clusters 25 26 11 10 8 9 27 28 19 3 12 7 1 15 24 18 31 5 13 30 21 17 2 6 16 0 14 23 22 29 4 42  
     2496} 
     2497entity GreatPillarTrunk78 
     2498{ 
     2499        mesh GreatPillarTrunkShape3 
     2500        transformation 1 0 0 -60 0 1 0 6 0 0 1 20 0 0 0 1  
     2501        pathmapfile GreatPillarTrunk78 
     2502        pathmapclusters 32 
     2503                subentity 0 clusters 9 10 25 11 27 8 26 15 12 28 19 31 24 3 7 13 1 18 5 30 17 16 21 6 0 2 14 29 23 22 42 4  
     2504} 
     2505entity GreatPillarTrunk80 
     2506{ 
     2507        mesh GreatPillarTrunkShape3 
     2508        transformation 1 0 0 -60 0 1 0 6 0 0 1 -20 0 0 0 1  
     2509        pathmapfile GreatPillarTrunk80 
     2510        pathmapclusters 32 
     2511                subentity 0 clusters 1 18 2 3 7 25 8 5 19 21 26 28 10 12 9 27 17 24 30 11 6 22 0 4 31 15 23 13 20 14 16 29  
     2512} 
     2513entity Wall 
     2514{ 
     2515        mesh MoriaWallShape 
     2516        transformation 1 0 0 -65 0 1 0 8 0 0 1 30 0 0 0 1  
     2517        pathmapfile Wall 
     2518        pathmapclusters 32 
     2519                subentity 0 clusters 11 27 10 9 25 26 15 8 31 12 28 19 24 13 3 7 18 1 16 30 5 17 0 21 6 29 14 2 23 43 42 22  
     2520} 
     2521entity Wall1 
     2522{ 
     2523        mesh MoriaWallShape 
     2524        transformation 1 0 0 -55 0 1 0 8 0 0 1 30 0 0 0 1  
     2525        pathmapfile Wall1 
     2526        pathmapclusters 32 
     2527                subentity 0 clusters 11 27 9 10 15 25 31 26 12 8 28 24 13 19 0 7 16 30 3 17 1 5 18 29 6 14 21 23 43 2 42 59  
     2528} 
     2529entity Wall2 
     2530{ 
     2531        mesh MoriaWallShape 
     2532        transformation 1 0 0 -45 0 1 0 8 0 0 1 30 0 0 0 1  
     2533        pathmapfile Wall2 
     2534        pathmapclusters 32 
     2535                subentity 0 clusters 15 11 27 9 0 31 10 13 12 24 28 25 16 26 8 19 30 7 17 29 14 6 5 3 43 23 1 21 42 18 59 41  
     2536} 
     2537entity Wall3 
     2538{ 
     2539        mesh MoriaWallShape 
     2540        transformation 1 0 0 -35 0 1 0 8 0 0 1 30 0 0 0 1  
     2541        pathmapfile Wall3 
     2542        pathmapclusters 32 
     2543                subentity 0 clusters 15 31 0 13 16 12 24 11 27 28 9 17 10 30 29 14 25 19 7 8 26 6 43 42 23 59 5 41 21 1 3 33  
     2544} 
     2545entity Wall4 
     2546{ 
     2547        mesh MoriaWallShape 
     2548        transformation 1 0 0 -25 0 1 0 8 0 0 1 30 0 0 0 1  
     2549        pathmapfile Wall4 
     2550        pathmapclusters 32 
     2551                subentity 0 clusters 15 16 13 31 28 24 17 29 12 14 0 30 43 27 9 11 42 6 59 7 23 10 41 19 25 8 26 58 49 5 33 60  
     2552} 
     2553entity Wall5 
     2554{ 
     2555        mesh MoriaWallShape 
     2556        transformation 1 0 0 -15 0 1 0 8 0 0 1 30 0 0 0 1  
     2557        pathmapfile Wall5 
     2558        pathmapclusters 32 
     2559                subentity 0 clusters 16 0 13 29 31 17 15 14 43 24 28 42 59 12 41 30 23 6 58 27 57 60 49 9 7 40 33 11 19 10 56 5  
     2560} 
     2561entity Wall6 
     2562{ 
     2563        mesh MoriaWallShape 
     2564        transformation 1 0 0 -5 0 1 0 8 0 0 1 30 0 0 0 1  
     2565        pathmapfile Wall6 
     2566        pathmapclusters 32 
     2567                subentity 0 clusters 16 43 29 14 0 59 17 41 13 42 31 24 15 57 58 60 23 30 40 28 49 12 6 33 56 35 44 7 61 27 51 9  
     2568} 
     2569entity Wall7 
     2570{ 
     2571        mesh MoriaWallShape 
     2572        transformation 1 0 0 5 0 1 0 8 0 0 1 30 0 0 0 1  
     2573        pathmapfile Wall7 
     2574        pathmapclusters 32 
     2575                subentity 0 clusters 43 59 41 29 60 16 14 57 42 58 40 17 13 56 35 49 31 33 23 44 61 24 0 15 30 6 12 28 51 39 63 55  
     2576} 
     2577entity Wall8 
     2578{ 
     2579        mesh MoriaWallShape 
     2580        transformation 1 0 0 15 0 1 0 8 0 0 1 30 0 0 0 1  
     2581        pathmapfile Wall8 
     2582        pathmapclusters 32 
     2583                subentity 0 clusters 57 43 59 41 60 58 56 42 35 29 40 14 61 44 16 49 33 39 63 13 17 23 51 45 55 31 47 48 24 6 30 34  
     2584} 
     2585entity Wall9 
     2586{ 
     2587        mesh MoriaWallShape 
     2588        transformation 1 0 0 25 0 1 0 8 0 0 1 30 0 0 0 1  
     2589        pathmapfile Wall9 
     2590        pathmapclusters 32 
     2591                subentity 0 clusters 57 41 56 59 61 35 43 44 58 60 42 40 63 39 29 45 14 49 48 55 16 33 51 47 46 62 34 37 23 13 17 32  
     2592} 
     2593entity Wall10 
     2594{ 
     2595        mesh MoriaWallShape 
     2596        transformation 1 0 0 35 0 1 0 8 0 0 1 30 0 0 0 1  
     2597        pathmapfile Wall10 
     2598        pathmapclusters 32 
     2599                subentity 0 clusters 57 61 56 35 44 63 41 45 59 58 39 48 40 43 60 46 42 62 55 47 37 49 51 29 14 34 33 16 32 52 23 36  
     2600} 
     2601entity Wall11 
     2602{ 
     2603        mesh MoriaWallShape 
     2604        transformation 1 0 0 45 0 1 0 8 0 0 1 30 0 0 0 1  
     2605        pathmapfile Wall11 
     2606        pathmapclusters 32 
     2607                subentity 0 clusters 61 63 35 45 44 46 48 56 57 39 62 41 58 55 59 37 47 40 60 43 42 51 34 49 29 33 53 14 54 52 36 32  
     2608} 
     2609entity Wall12 
     2610{ 
     2611        mesh MoriaWallShape 
     2612        transformation 1 0 0 55 0 1 0 8 0 0 1 30 0 0 0 1  
     2613        pathmapfile Wall12 
     2614        pathmapclusters 32 
     2615                subentity 0 clusters 48 61 63 45 46 35 62 44 56 39 57 37 55 47 58 41 40 59 60 34 53 51 54 43 36 42 52 49 33 38 29 32  
     2616} 
     2617entity Wall13 
     2618{ 
     2619        mesh MoriaWallShape 
     2620        transformation 1 0 0 65 0 1 0 8 0 0 1 30 0 0 0 1  
     2621        pathmapfile Wall13 
     2622        pathmapclusters 32 
     2623                subentity 0 clusters 48 46 45 63 61 62 39 37 44 56 35 57 55 47 53 58 54 41 34 40 36 60 59 51 52 43 38 42 49 32 33 0  
     2624} 
     2625entity Wall14 
     2626{ 
     2627        mesh MoriaWallShape 
     2628        transformation 2.22045e-016 0 -1 -70 0 1 0 8 1 0 2.22045e-016 25 0 0 0 1  
     2629        pathmapfile Wall14 
     2630        pathmapclusters 32 
     2631                subentity 0 clusters 10 11 9 27 25 26 8 15 3 19 28 12 31 24 7 18 13 1 30 5 16 17 21 2 6 0 29 14 23 22 43 42  
     2632} 
     2633entity Wall15 
     2634{ 
     2635        mesh MoriaWallShape 
     2636        transformation 2.22045e-016 0 -1 -70 0 1 0 8 1 0 2.22045e-016 15 0 0 0 1  
     2637        pathmapfile Wall15 
     2638        pathmapclusters 32 
     2639                subentity 0 clusters 10 25 26 11 9 8 27 3 19 28 18 15 12 1 7 31 24 5 13 21 30 2 17 6 16 0 14 29 23 22 4 42  
     2640} 
     2641entity Wall16 
     2642{ 
     2643        mesh MoriaWallShape 
     2644        transformation 2.22045e-016 0 -1 -70 0 1 0 8 1 0 2.22045e-016 5 0 0 0 1  
     2645        pathmapfile Wall16 
     2646        pathmapclusters 32 
     2647                subentity 0 clusters 10 25 26 8 3 11 9 27 18 19 1 28 7 12 5 15 24 2 31 21 30 17 13 6 16 22 23 0 4 14 29 42  
     2648} 
     2649entity Wall17 
     2650{ 
     2651        mesh MoriaWallShape 
     2652        transformation 2.22045e-016 0 -1 -70 0 1 0 8 1 0 2.22045e-016 -5 0 0 0 1  
     2653        pathmapfile Wall17 
     2654        pathmapclusters 32 
     2655                subentity 0 clusters 3 26 8 25 18 10 1 11 7 19 28 9 27 2 5 21 12 24 31 15 30 17 6 13 22 4 0 23 16 14 29 42  
     2656} 
     2657entity Wall18 
     2658{ 
     2659        mesh MoriaWallShape 
     2660        transformation 2.22045e-016 0 -1 -70 0 1 0 8 1 0 2.22045e-016 -15 0 0 0 1  
     2661        pathmapfile Wall18 
     2662        pathmapclusters 32 
     2663                subentity 0 clusters 3 18 1 25 26 8 2 7 19 10 28 5 21 9 11 27 12 24 30 17 31 6 15 22 4 0 13 23 16 14 20 29  
     2664} 
     2665entity Wall19 
     2666{ 
     2667        mesh MoriaWallShape 
     2668        transformation 2.22045e-016 0 -1 -70 0 1 0 8 1 0 2.22045e-016 -25 0 0 0 1  
     2669        pathmapfile Wall19 
     2670        pathmapclusters 32 
     2671                subentity 0 clusters 3 18 1 2 25 26 8 7 19 21 5 10 28 9 27 11 12 24 17 30 22 6 0 4 31 15 23 13 20 16 14 29  
     2672} 
     2673entity Wall20 
     2674{ 
     2675        mesh MoriaWallShape 
     2676        transformation -1 0 1.22461e-016 -65 0 1 0 8 -1.22461e-016 0 -1 -30 0 0 0 1  
     2677        pathmapfile Wall20 
     2678        pathmapclusters 32 
     2679                subentity 0 clusters 2 3 18 1 21 25 5 7 19 8 26 28 10 12 17 22 27 9 0 30 24 6 4 11 31 23 20 15 13 50 14 16  
     2680} 
     2681entity Wall21 
     2682{ 
     2683        mesh MoriaWallShape 
     2684        transformation -1 0 1.22461e-016 -55 0 1 0 8 -1.22461e-016 0 -1 -30 0 0 0 1  
     2685        pathmapfile Wall21 
     2686        pathmapclusters 32 
     2687                subentity 0 clusters 2 18 1 3 21 5 7 19 28 25 8 26 0 17 22 10 30 4 6 12 24 27 9 20 23 11 31 15 13 50 33 14  
     2688} 
     2689entity Wall22 
     2690{ 
     2691        mesh MoriaWallShape 
     2692        transformation -1 0 1.22461e-016 -45 0 1 0 8 -1.22461e-016 0 -1 -30 0 0 0 1  
     2693        pathmapfile Wall22 
     2694        pathmapclusters 32 
     2695                subentity 0 clusters 2 21 5 1 0 28 18 3 7 19 22 17 4 25 8 6 30 26 24 12 20 10 23 27 9 31 50 11 33 13 14 15  
     2696} 
     2697entity Wall23 
     2698{ 
     2699        mesh MoriaWallShape 
     2700        transformation -1 0 1.22461e-016 -35 0 1 0 8 -1.22461e-016 0 -1 -30 0 0 0 1  
     2701        pathmapfile Wall23 
     2702        pathmapclusters 32 
     2703                subentity 0 clusters 2 0 21 5 28 22 1 7 3 4 17 18 19 6 20 30 24 23 12 25 8 26 50 33 10 31 42 27 49 14 9 13  
     2704} 
     2705entity Wall24 
     2706{ 
     2707        mesh MoriaWallShape 
     2708        transformation -1 0 1.22461e-016 -25 0 1 0 8 -1.22461e-016 0 -1 -30 0 0 0 1  
     2709        pathmapfile Wall24 
     2710        pathmapclusters 32 
     2711                subentity 0 clusters 2 0 22 20 4 21 5 17 28 7 6 30 23 1 19 50 24 18 33 12 3 49 32 42 8 25 14 60 26 31 29 13  
     2712} 
     2713entity Wall25 
     2714{ 
     2715        mesh MoriaWallShape 
     2716        transformation -1 0 1.22461e-016 -15 0 1 0 8 -1.22461e-016 0 -1 -30 0 0 0 1  
     2717        pathmapfile Wall25 
     2718        pathmapclusters 32 
     2719                subentity 0 clusters 20 0 22 4 17 2 28 21 50 5 6 23 7 30 33 32 24 49 42 19 60 1 12 51 14 18 29 40 35 52 31 58  
     2720} 
     2721entity Wall26 
     2722{ 
     2723        mesh MoriaWallShape 
     2724        transformation -1 0 1.22461e-016 -5 0 1 0 8 -1.22461e-016 0 -1 -30 0 0 0 1  
     2725        pathmapfile Wall26 
     2726        pathmapclusters 32 
     2727                subentity 0 clusters 20 4 22 50 17 0 32 23 33 6 28 21 49 60 2 7 5 30 42 51 24 35 52 40 14 47 34 19 58 38 29 12  
     2728} 
     2729entity Wall27 
     2730{ 
     2731        mesh MoriaWallShape 
     2732        transformation -1 0 1.22461e-016 5 0 1 0 8 -1.22461e-016 0 -1 -30 0 0 0 1  
     2733        pathmapfile Wall27 
     2734        pathmapclusters 32 
     2735                subentity 0 clusters 20 50 0 4 32 22 60 33 35 51 49 23 17 52 6 47 42 34 38 40 21 7 30 28 5 58 2 14 24 55 29 43  
     2736} 
     2737entity Wall28 
     2738{ 
     2739        mesh MoriaWallShape 
     2740        transformation -1 0 1.22461e-016 15 0 1 0 8 -1.22461e-016 0 -1 -30 0 0 0 1  
     2741        pathmapfile Wall28 
     2742        pathmapclusters 32 
     2743                subentity 0 clusters 20 50 32 0 35 51 52 60 4 33 38 47 34 49 22 23 40 42 17 55 6 58 36 39 54 14 30 44 21 56 7 43  
     2744} 
     2745entity Wall29 
     2746{ 
     2747        mesh MoriaWallShape 
     2748        transformation -1 0 1.22461e-016 25 0 1 0 8 -1.22461e-016 0 -1 -30 0 0 0 1  
     2749        pathmapfile Wall29 
     2750        pathmapclusters 32 
     2751                subentity 0 clusters 0 20 38 32 52 50 34 51 47 60 35 33 49 55 36 4 40 54 39 22 42 23 58 53 44 37 56 17 6 62 41 14  
     2752} 
     2753entity Wall30 
     2754{ 
     2755        mesh MoriaWallShape 
     2756        transformation -1 0 1.22461e-016 35 0 1 0 8 -1.22461e-016 0 -1 -30 0 0 0 1  
     2757        pathmapfile Wall30 
     2758        pathmapclusters 32 
     2759                subentity 0 clusters 38 52 34 32 51 47 35 20 36 50 54 60 55 0 39 53 33 49 40 37 44 58 4 62 42 56 22 23 46 45 41 63  
     2760} 
     2761entity Wall31 
     2762{ 
     2763        mesh MoriaWallShape 
     2764        transformation -1 0 1.22461e-016 45 0 1 0 8 -1.22461e-016 0 -1 -30 0 0 0 1  
     2765        pathmapfile Wall31 
     2766        pathmapclusters 32 
     2767                subentity 0 clusters 38 52 34 36 54 35 47 53 32 55 51 39 37 60 50 20 0 62 40 44 49 33 46 58 56 45 42 63 4 23 48 61  
     2768} 
     2769entity Wall32 
     2770{ 
     2771        mesh MoriaWallShape 
     2772        transformation -1 0 1.22461e-016 55 0 1 0 8 -1.22461e-016 0 -1 -30 0 0 0 1  
     2773        pathmapfile Wall32 
     2774        pathmapclusters 32 
     2775                subentity 0 clusters 38 54 36 53 52 34 47 55 37 39 35 51 32 0 62 60 50 46 44 20 40 45 49 56 33 63 58 48 61 42 57 4  
     2776} 
     2777entity Wall33 
     2778{ 
     2779        mesh MoriaWallShape 
     2780        transformation -1 0 1.22461e-016 65 0 1 0 8 -1.22461e-016 0 -1 -30 0 0 0 1  
     2781        pathmapfile Wall33 
     2782        pathmapclusters 32 
     2783                subentity 0 clusters 38 36 53 54 52 0 37 47 34 55 39 62 35 51 46 32 44 60 45 48 50 63 40 56 20 49 58 33 61 57 42 41  
     2784} 
     2785entity Wall34 
     2786{ 
     2787        mesh MoriaWallShape 
     2788        transformation 2.22045e-016 0 1 70 0 1 0 8 -1 0 2.22045e-016 25 0 0 0 1  
     2789        pathmapfile Wall34 
     2790        pathmapclusters 32 
     2791                subentity 0 clusters 46 48 45 63 62 61 37 39 44 35 55 56 47 53 57 54 36 34 58 40 60 41 51 52 38 59 0 43 49 42 32 33  
     2792} 
     2793entity Wall35 
     2794{ 
     2795        mesh MoriaWallShape 
     2796        transformation 2.22045e-016 0 1 70 0 1 0 8 -1 0 2.22045e-016 15 0 0 0 1  
     2797        pathmapfile Wall35 
     2798        pathmapclusters 32 
     2799                subentity 0 clusters 46 45 48 62 37 63 39 61 53 47 55 35 44 54 56 36 34 57 52 38 51 60 40 58 0 41 59 32 49 42 33 43  
     2800} 
     2801entity Wall36 
     2802{ 
     2803        mesh MoriaWallShape 
     2804        transformation 2.22045e-016 0 1 70 0 1 0 8 -1 0 2.22045e-016 5 0 0 0 1  
     2805        pathmapfile Wall36 
     2806        pathmapclusters 32 
     2807                subentity 0 clusters 46 62 37 48 53 45 39 47 54 63 55 36 35 44 0 61 34 56 38 52 51 60 57 40 58 32 41 49 59 33 42 50  
     2808} 
     2809entity Wall37 
     2810{ 
     2811        mesh MoriaWallShape 
     2812        transformation 2.22045e-016 0 1 70 0 1 0 8 -1 0 2.22045e-016 -5 0 0 0 1  
     2813        pathmapfile Wall37 
     2814        pathmapclusters 32 
     2815                subentity 0 clusters 53 0 37 62 54 46 39 47 36 55 45 48 35 38 34 63 52 44 61 56 51 60 40 32 58 57 49 41 50 33 59 42  
     2816} 
     2817entity Wall38 
     2818{ 
     2819        mesh MoriaWallShape 
     2820        transformation 2.22045e-016 0 1 70 0 1 0 8 -1 0 2.22045e-016 -15 0 0 0 1  
     2821        pathmapfile Wall38 
     2822        pathmapclusters 32 
     2823                subentity 0 clusters 53 54 0 36 37 47 39 62 38 55 46 34 52 35 45 48 44 63 51 56 60 32 61 40 58 50 57 49 33 20 41 42  
     2824} 
     2825entity Wall39 
     2826{ 
     2827        mesh MoriaWallShape 
     2828        transformation 2.22045e-016 0 1 70 0 1 0 8 -1 0 2.22045e-016 -25 0 0 0 1  
     2829        pathmapfile Wall39 
     2830        pathmapclusters 32 
     2831                subentity 0 clusters 53 54 0 36 38 47 37 52 62 55 39 34 46 35 51 45 44 32 48 63 60 56 40 61 50 58 20 49 33 57 42 41  
     2832} 
  • GTP/trunk/App/Demos/Illum/Ogre/Media/MORIA/moria.material

    r2315 r2336  
    33   source bump.hlsl 
    44   entry_point BaseVS 
    5    target vs_2_0 
     5   target vs_3_0 
    66} 
    77 
     
    1010   source bump.hlsl 
    1111   entry_point BumpPS 
    12    target ps_2_0 
     12   target ps_3_0 
    1313} 
    1414 
     
    1919  pass mainpass 
    2020  { 
    21                          
     21                        IllumTechniques 
     22                        { 
     23                                RenderTechnique DepthShadowReceiver 
     24                                { 
     25                                        //pass_blending none 
     26                                        max_light_count 1 
     27                                        vertex_program_name GTP/Basic/LightCPos_VS 
     28                                        fragment_program_name GTP/Basic/SM/Dist_POINT_VSM_PS 
     29                                        //fragment_program_name GTP/Basic/SM/Dist_VSM_PS 
     30                                        set_light_view true 
     31                                        set_light_farplane true 
     32                                        light_viewproj_param_name LightViewProj 
     33                                        light_view_param_name LightView 
     34                                        light_farplane_param_name lightFarPlane 
     35                                        world_view_proj_param_name WorldViewProj 
     36                                        world_param_name World           
     37                                } 
     38                                RenderTechnique PathMap 
     39                                { 
     40                            //pass_blending dest_colour one 
     41                             //pass_blending none 
     42                             pass_blending add 
     43                                } 
     44                                 
     45                        } 
    2246                        vertex_program_ref GTP/Demo/BumpMapped_VS 
    2347                        { 
     
    2852                          param_named_auto wCamPos camera_position 
    2953                          param_named normalCoord float 0 
    30                         } 
     54                        } 
    3155                        fragment_program_ref GTP/Demo/BumpMapped_PS 
    32                         { 
    33                           param_named_auto lightDir light_direction 0 
     56                        {  
     57                          param_named_auto wLightPos light_position 0 
     58                          param_named_auto wLightDir light_direction 0                     
     59                          param_named_auto lightRange light_attenuation 0 
     60                          param_named_auto lightPower light_power 0                                                        
    3461                        } 
    3562  } 
     
    3764} 
    3865 
    39 material GreatPillarTrunk1 : DetailTexturedBumpBase 
     66material GreatPillarTrunk : DetailTexturedBumpBase 
    4067{ 
    4168        technique maintechnique 
     
    6491                pass mainpass 
    6592                { 
    66                         IllumTechniques 
    67                 { 
    68                         RenderTechnique DepthShadowReceiver 
    69                                 { 
    70                                         max_light_count 1 
    71                                         vertex_program_name GTP/Basic/LightCPos_VS 
    72                                         fragment_program_name GTP/Basic/SM/Dist_VSM_PS 
    73                                         set_light_view true 
    74                                         set_light_farplane true 
    75                                         light_viewproj_param_name LightViewProj 
    76                                         light_view_param_name LightView 
    77                                         light_farplane_param_name lightFarPlane 
    78                                         world_view_proj_param_name WorldViewProj 
    79                                         world_param_name World           
    80                                 }        
    81                         } 
     93                                                         
    8294                        ambient 1 1 1 1 
    8395                        diffuse 1 1 1 1 
     
    140152                        { 
    141153                                texture pillarheaddetail.png 
     154                        } 
     155                } 
     156        } 
     157} 
     158 
     159material GreatHallCeiling : DetailTexturedBumpBase 
     160{ 
     161        technique maintechnique 
     162        { 
     163                pass mainpass 
     164                { 
     165                        ambient 1 1 1 1 
     166                        diffuse 1 1 1 1 
     167                        specular 0.08264 0.08264 0.08264 2 
     168                        emissive 0 0 0 
     169 
     170                        texture_unit tile_texture 
     171                        { 
     172                                texture marble.jpg                               
     173                        } 
     174                        texture_unit detail_texture 
     175                        { 
     176                                texture moriaceilingdetail.png 
    142177                        } 
    143178                } 
Note: See TracChangeset for help on using the changeset viewer.