=== LOG.TXT === Using random seed of -28641248 Assets path: /home/####/Desktop/soe/mods/ OpenGL Version: 4.4 (Compatibility Profile) Mesa 21.2.6 16384 Path exists (added to string list) /home/####/Desktop/soe/mods/industrial_era/shaders/fs_lib.fs #version 330 compatibility precision lowp float ; vec3 get_water_normal ( float time , sampler2D wave1 , sampler2D wave2 , vec2 tex_coords ){ float offset = time *0.01; vec2 coords = tex_coords *50.0; vec3 normal1 = texture ( wave1 , coords + vec2 (1.0)* offset ). xyz ; normal1 = normalize ( normal1 *2.0-1.0); vec3 normal2 = texture ( wave2 , coords + vec2 (0.2,-0.8)* offset ). xyz ; normal2 = normalize ( normal2 *2.0-1.0); vec3 normal = normalize ( normal1 + normal2 ); normal.z *=-1.0; return normal ; } vec4 no_tiling ( sampler2D tex , vec2 uv , sampler2D noisy_tex ){ float k = texture ( noisy_tex ,0.005* uv ). x ; float v =1.0; vec2 duvdx = dFdx ( uv ); vec2 duvdy = dFdx ( uv ); float l = k *8.0; float f = fract ( l ); float ia = floor ( l ); float ib = ia +1.0; vec2 offa = sin ( vec2 (3.0f,7.0)* ia ); vec2 offb = sin ( vec2 (3.0f,7.0)* ib ); vec4 cola = textureGrad ( tex , uv + v * offa , duvdx , duvdy ); vec4 colb = textureGrad ( tex , uv + v * offb , duvdx , duvdy ); vec4 diff = cola - colb ; return mix ( cola , colb , smoothstep (0.2,0.8, f -0.1*( diff.x + diff.y + diff.z ))); } float water_aquarelle ( sampler2D noise_tex , vec2 tex_coords ){ vec2 uv = tex_coords *20.0; vec3 col = vec3 (1.0); float strenght =0.5; float tex3 = textureLod ( noise_tex , uv *0.02,1.5). x ; float layer1 = mix ( strenght ,1.0, tex3 ); uv *=2.1; float tex4 = textureLod ( noise_tex ,- uv *0.02+0.3,1.5). x ; float layer2 = mix ( strenght ,1.0, tex4 ); layer1 += layer2 ; layer1 *=0.69; layer1 = clamp ( layer1 ,0.0,1.05); return layer1 ; } vec2 parallax_map ( vec2 tex_coords , vec3 view_dir , sampler2D heightmap ){ const float height_scale =0.0002; const float other_scale =10.; const float minLayers =8; const float maxLayers =64; float numLayers = mix ( maxLayers , minLayers , abs ( dot ( vec3 (0.0,0.0,1.0), view_dir ))); float layerDepth =1.0/ numLayers ; float currentLayerDepth =0.0; vec2 P = view_dir.xy / view_dir.z * height_scale ; vec2 deltaTexCoords = P / numLayers ; vec2 currentTexCoords = tex_coords ; float currentDepthMapValue = texture ( heightmap , tex_coords ). w * other_scale ; while ( currentLayerDepth < currentDepthMapValue ){ currentTexCoords -= deltaTexCoords ; currentDepthMapValue = texture ( heightmap , currentTexCoords ). w * other_scale ; currentLayerDepth += layerDepth ; } vec2 prevTexCoords = currentTexCoords + deltaTexCoords ; float afterDepth = currentDepthMapValue - currentLayerDepth ; float beforeDepth = texture ( heightmap , prevTexCoords ). w * other_scale - currentLayerDepth + layerDepth ; float weight = afterDepth /( afterDepth - beforeDepth ); vec2 finalTexCoords = prevTexCoords * weight + currentTexCoords *(1.0- weight ); return finalTexCoords ; } vec3 gen_normal ( vec2 tex_coords , sampler2D heightmap ){ const vec2 size = vec2 (2.0,0.0); const ivec3 off = ivec3 (-1,0,1); float steep =8.; vec4 wave = texture ( heightmap , tex_coords ); float s11 = steep * wave.w ; float s01 = steep * textureOffset ( heightmap , tex_coords , off.xy ). w ; float s21 = steep * textureOffset ( heightmap , tex_coords , off.zy ). w ; float s10 = steep * textureOffset ( heightmap , tex_coords , off.yx ). w ; float s12 = steep * textureOffset ( heightmap , tex_coords , off.yz ). w ; vec3 va = normalize ( vec3 ( size.xy , s21 - s01 )); vec3 vb = normalize ( vec3 ( size.yx , s12 - s10 )); vec4 bump = vec4 ( cross ( va , vb ), s11 ); return bump.xyz ; } Status: Sucess Path exists (added to string list) /home/####/Desktop/soe/mods/industrial_era/shaders/fs_2d.fs #version 330 compatibility precision lowp float ; out vec4 f_color ; in vec2 v_texcoord ; uniform sampler2D diffuse_map ; uniform vec4 diffuse_color ; void main (){ vec4 tex_color = texture ( diffuse_map , v_texcoord ); tex_color.rgba *= diffuse_color ; f_color = tex_color ; } Status: Sucess Path exists (added to string list) /home/####/Desktop/soe/mods/industrial_era/shaders/vs_2d.vs #version 330 compatibility precision lowp float ; layout ( location =0) in vec3 m_pos ; layout ( location =1) in vec2 m_texcoord ; uniform mat4 view ; uniform mat4 projection ; uniform mat4 model ; out vec2 v_texcoord ; void main (){ v_texcoord = m_texcoord ; gl_Position = projection * view * model * vec4 ( m_pos ,1.0); } Status: Sucess Path exists (added to string list) /home/####/Desktop/soe/mods/industrial_era/shaders/fs_3d.fs #version 330 compatibility precision lowp float ; out vec4 f_color ; in vec2 v_texcoord ; uniform sampler2D diffuse_map ; uniform vec4 ambient_color ; uniform vec4 diffuse_color ; void main (){ vec4 tex_color = texture ( diffuse_map , v_texcoord ); f_color = tex_color ; } Status: Sucess Path exists (added to string list) /home/####/Desktop/soe/mods/industrial_era/shaders/vs_3d.vs #version 330 compatibility precision lowp float ; layout ( location =0) in vec3 m_pos ; layout ( location =1) in vec2 m_texcoord ; uniform mat4 view ; uniform mat4 projection ; uniform mat4 model ; out vec2 v_texcoord ; void main (){ v_texcoord = m_texcoord ; gl_Position = projection * view * model * vec4 ( m_pos ,1.0); } Status: Sucess Path exists (added to string list) /home/####/Desktop/soe/mods/industrial_era/shaders/vs_font_sdf.vs #version 330 compatibility precision lowp float ; layout ( location =0) in vec3 m_pos ; layout ( location =1) in vec2 m_texcoord ; uniform mat4 view ; uniform mat4 projection ; uniform mat4 model ; out vec2 v_texcoord ; void main (){ v_texcoord = m_texcoord ; gl_Position = projection * view * model * vec4 ( m_pos ,1.0); } Status: Sucess Path exists (added to string list) /home/####/Desktop/soe/mods/industrial_era/shaders/fs_font_sdf.fs #version 330 compatibility precision lowp float ; out vec4 f_color ; in vec2 v_texcoord ; uniform sampler2D atlas ; uniform float px_range ; float screen_px_range (){ vec2 uv = v_texcoord ; uv.y =1.0- uv.y ; vec2 unit_range = vec2 ( px_range )/ vec2 ( textureSize ( atlas ,0)); return max (0.5* dot ( unit_range , vec2 (1.0)/ fwidth ( uv )),1.0); } float median ( float r , float g , float b ){ return max ( min ( r , g ), min ( max ( r , g ), b )); } void main (){ vec2 uv = v_texcoord ; uv.y =1.- uv.y ; vec3 msd = texture ( atlas , uv ). rgb ; float sd = median ( msd.r , msd.g , msd.b ); float screen_px_distance = screen_px_range ()*( sd -0.5); float opacity = clamp ( screen_px_distance +0.5,0.0,1.0); f_color = vec4 (0.0,0.0,0.0, opacity ); } Status: Sucess Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/window_background.png Compressed texture of 322x189 Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/window_top3.png Compressed texture of 322x21 Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/button2.png Compressed texture of 128x128 Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/tooltip.png Compressed texture of 1x1 Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/piechart.png Compressed texture of 128x128 Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/border2.png Compressed texture of 140x140 Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/border_sharp2.png Compressed texture of 140x140 Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/cursor_b.png Compressed texture of 124x124 Path exists (added to string list) /home/####/Desktop/soe/mods/industrial_era/shaders/vs_2d.vs #version 330 compatibility precision lowp float ; layout ( location =0) in vec3 m_pos ; layout ( location =1) in vec2 m_texcoord ; uniform mat4 view ; uniform mat4 projection ; uniform mat4 model ; out vec2 v_texcoord ; void main (){ v_texcoord = m_texcoord ; gl_Position = projection * view * model * vec4 ( m_pos ,1.0); } Status: Sucess Path exists (added to string list) /home/####/Desktop/soe/mods/industrial_era/shaders/fs_2d.fs #version 330 compatibility precision lowp float ; out vec4 f_color ; in vec2 v_texcoord ; uniform sampler2D diffuse_map ; uniform vec4 diffuse_color ; void main (){ vec4 tex_color = texture ( diffuse_map , v_texcoord ); tex_color.rgba *= diffuse_color ; f_color = tex_color ; } Status: Sucess Path /home/####/Desktop/soe/mods/industrial_era/gfx/load_screen.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/load_screen.png Path /home/####/Desktop/soe/mods/industrial_era/lua/entities/terrain_types.lua exists Path /home/####/Desktop/soe/mods/industrial_era/lua/entities/good_types.lua exists Path /home/####/Desktop/soe/mods/industrial_era/lua/entities/ideologies.lua exists Path /home/####/Desktop/soe/mods/industrial_era/lua/entities/cultures.lua exists Path /home/####/Desktop/soe/mods/industrial_era/lua/entities/building_types.lua exists Path /home/####/Desktop/soe/mods/industrial_era/lua/entities/technology.lua exists Path /home/####/Desktop/soe/mods/industrial_era/lua/entities/religions.lua exists Path /home/####/Desktop/soe/mods/industrial_era/lua/entities/pop_types.lua exists Path /home/####/Desktop/soe/mods/industrial_era/lua/entities/industry_types.lua exists Path /home/####/Desktop/soe/mods/industrial_era/lua/entities/unit_types.lua exists Path /home/####/Desktop/soe/mods/industrial_era/lua/entities/boat_types.lua exists Path /home/####/Desktop/soe/mods/industrial_era/lua/entities/nations.lua exists Path /home/####/Desktop/soe/mods/industrial_era/lua/entities/provinces.lua exists File lua/entities/init.lua does not exist files_buf: require("classes/base") print("/home/####/Desktop/soe/mods/industrial_era/lua/entities/terrain_types.lua") f = loadfile("/home/####/Desktop/soe/mods/industrial_era/lua/entities/terrain_types.lua") f() print("/home/####/Desktop/soe/mods/industrial_era/lua/entities/good_types.lua") f = loadfile("/home/####/Desktop/soe/mods/industrial_era/lua/entities/good_types.lua") f() print("/home/####/Desktop/soe/mods/industrial_era/lua/entities/ideologies.lua") f = loadfile("/home/####/Desktop/soe/mods/industrial_era/lua/entities/ideologies.lua") f() print("/home/####/Desktop/soe/mods/industrial_era/lua/entities/cultures.lua") f = loadfile("/home/####/Desktop/soe/mods/industrial_era/lua/entities/cultures.lua") f() print("/home/####/Desktop/soe/mods/industrial_era/lua/entities/building_types.lua") f = loadfile("/home/####/Desktop/soe/mods/industrial_era/lua/entities/building_types.lua") f() print("/home/####/Desktop/soe/mods/industrial_era/lua/entities/technology.lua") f = loadfile("/home/####/Desktop/soe/mods/industrial_era/lua/entities/technology.lua") f() print("/home/####/Desktop/soe/mods/industrial_era/lua/entities/religions.lua") f = loadfile("/home/####/Desktop/soe/mods/industrial_era/lua/entities/religions.lua") f() print("/home/####/Desktop/soe/mods/industrial_era/lua/entities/pop_types.lua") f = loadfile("/home/####/Desktop/soe/mods/industrial_era/lua/entities/pop_types.lua") f() print("/home/####/Desktop/soe/mods/industrial_era/lua/entities/industry_types.lua") f = loadfile("/home/####/Desktop/soe/mods/industrial_era/lua/entities/industry_types.lua") f() print("/home/####/Desktop/soe/mods/industrial_era/lua/entities/unit_types.lua") f = loadfile("/home/####/Desktop/soe/mods/industrial_era/lua/entities/unit_types.lua") f() print("/home/####/Desktop/soe/mods/industrial_era/lua/entities/boat_types.lua") f = loadfile("/home/####/Desktop/soe/mods/industrial_era/lua/entities/boat_types.lua") f() print("/home/####/Desktop/soe/mods/industrial_era/lua/entities/nations.lua") f = loadfile("/home/####/Desktop/soe/mods/industrial_era/lua/entities/nations.lua") f() print("/home/####/Desktop/soe/mods/industrial_era/lua/entities/provinces.lua") f = loadfile("/home/####/Desktop/soe/mods/industrial_era/lua/entities/provinces.lua") f() Compressed texture of 1259x699 Path /home/####/Desktop/soe/mods/industrial_era/gfx/mod_logo.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/mod_logo.png Compressed texture of 419x100 Compressed texture of 1x1 Creating diplomatic relations World partially intiialized Path /home/####/Desktop/soe/mods/industrial_era/lua/init/mod.lua exists File lua/init/postinit.lua does not exist files_buf: require("classes/base") print("/home/####/Desktop/soe/mods/industrial_era/lua/init/mod.lua") f = loadfile("/home/####/Desktop/soe/mods/industrial_era/lua/init/mod.lua") f() World fully intiialized Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/rebel_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/rebel_monarchy.png Compressed texture of 256x162 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/hawai_i_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/hawai_i_monarchy.png Compressed texture of 256x128 That operation is not supported Path could not find file gfx/flags/tunis_monarchy.png Loaded and cached texture Compressed texture of 8x8 Path could not find file gfx/flags/algeirs_monarchy.png Path could not find file gfx/flags/abbyssina_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/egypt_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/egypt_monarchy.png Compressed texture of 256x171 That operation is not supported Path could not find file gfx/flags/morrocco_monarchy.png Path could not find file gfx/flags/tripolitania_monarchy.png Path could not find file gfx/flags/ashantee_monarchy.png Path could not find file gfx/flags/arabia_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/sokoto_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/sokoto_monarchy.png Compressed texture of 256x171 That operation is not supported Path could not find file gfx/flags/wadai_empire_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/bornu_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/bornu_monarchy.png Compressed texture of 256x220 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/dahomey_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/dahomey_monarchy.png Compressed texture of 256x333 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/argentina_republic.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/argentina_republic.png Compressed texture of 256x146 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/brazil_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/brazil_monarchy.png Compressed texture of 256x165 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/gran_colombia_republic.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/gran_colombia_republic.png Compressed texture of 256x171 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/peru_republic.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/peru_republic.png Compressed texture of 256x171 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/bolivia_republic.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/bolivia_republic.png Compressed texture of 256x171 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/paraguay_republic.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/paraguay_republic.png Compressed texture of 256x128 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/chile_republic.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/chile_republic.png Compressed texture of 256x170 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/upca_republic.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/upca_republic.png Compressed texture of 256x171 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/mexico_republic.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/mexico_republic.png Compressed texture of 256x147 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/usa_democracy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/usa_democracy.png Compressed texture of 256x135 That operation is not supported Path could not find file gfx/flags/haiti_republic.png Path could not find file gfx/flags/mapuche_tribal.png Path could not find file gfx/flags/canada_monarchy.png Path could not find file gfx/flags/upper_canada_monarchy.png Path could not find file gfx/flags/lower_canada_monarchy.png Path could not find file gfx/flags/ruperts_land_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/texas_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/texas_monarchy.png Compressed texture of 256x128 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/csa_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/csa_monarchy.png Compressed texture of 256x142 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/uruguay_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/uruguay_monarchy.png Compressed texture of 256x171 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/panama_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/panama_monarchy.png Compressed texture of 256x171 That operation is not supported Path could not find file gfx/flags/korea_monarchy.png Path could not find file gfx/flags/taiwan_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/qing_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/qing_monarchy.png Compressed texture of 256x171 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/beyiang_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/beyiang_monarchy.png Compressed texture of 256x170 That operation is not supported Path could not find file gfx/flags/china_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/yunnan_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/yunnan_monarchy.png Compressed texture of 256x170 That operation is not supported Path could not find file gfx/flags/guanxi_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/shanxi_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/shanxi_monarchy.png Compressed texture of 256x170 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/johor_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/johor_monarchy.png Compressed texture of 256x128 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/siam_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/siam_monarchy.png Compressed texture of 256x171 That operation is not supported Path could not find file gfx/flags/burma_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/united_kingdom_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/united_kingdom_monarchy.png Compressed texture of 256x128 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/netherlands_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/netherlands_monarchy.png Compressed texture of 256x171 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/belgium_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/belgium_monarchy.png Compressed texture of 256x222 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/france_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/france_monarchy.png Compressed texture of 256x171 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/spain_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/spain_monarchy.png Compressed texture of 256x171 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/portugal_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/portugal_monarchy.png Compressed texture of 256x171 That operation is not supported Path could not find file gfx/flags/european_union_monarchy.png Path could not find file gfx/flags/iberia_monarchy.png Path could not find file gfx/flags/brittany_monarchy.png Path could not find file gfx/flags/normandy_monarchy.png Path could not find file gfx/flags/occitania_monarchy.png Path could not find file gfx/flags/catalonia_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/basque_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/basque_monarchy.png Compressed texture of 256x144 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/galicia_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/galicia_monarchy.png Compressed texture of 256x171 That operation is not supported Path could not find file gfx/flags/aragon_monarchy.png Path could not find file gfx/flags/czechoslovakia_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/denmark_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/denmark_monarchy.png Compressed texture of 256x194 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/sweden_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/sweden_monarchy.png Compressed texture of 256x183 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/scandinavia_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/scandinavia_monarchy.png Compressed texture of 256x160 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/finland_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/finland_monarchy.png Compressed texture of 256x156 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/norway_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/norway_monarchy.png Compressed texture of 256x186 That operation is not supported Path could not find file gfx/flags/aland_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/iceland_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/iceland_monarchy.png Compressed texture of 256x185 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/russia_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/russia_monarchy.png Compressed texture of 256x171 That operation is not supported Path could not find file gfx/flags/krakow_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/congress_poland_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/congress_poland_monarchy.png Compressed texture of 256x171 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/poland_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/poland_monarchy.png Compressed texture of 256x158 That operation is not supported Path could not find file gfx/flags/lithuania_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/estonia_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/estonia_monarchy.png Compressed texture of 256x171 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/latvia_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/latvia_monarchy.png Compressed texture of 256x171 That operation is not supported Path could not find file gfx/flags/livonia_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/romania_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/romania_monarchy.png Compressed texture of 256x171 That operation is not supported Path could not find file gfx/flags/bulgaria_monarchy.png Path could not find file gfx/flags/muscovy_monarchy.png Path could not find file gfx/flags/great_horde_monarchy.png Path could not find file gfx/flags/novgorod_monarchy.png Path could not find file gfx/flags/nogai_horde_monarchy.png Path could not find file gfx/flags/uzbekistan_monarchy.png Path could not find file gfx/flags/kazakhistan_monarchy.png Path could not find file gfx/flags/kyrgyztan_monarchy.png Path could not find file gfx/flags/afghanistan_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/prussia_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/prussia_monarchy.png Compressed texture of 256x171 That operation is not supported Path could not find file gfx/flags/salzburg_monarchy.png Path could not find file gfx/flags/thuringia_monarchy.png Path could not find file gfx/flags/lubeck_monarchy.png Path could not find file gfx/flags/waldeck_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/saxony_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/saxony_monarchy.png Compressed texture of 256x154 That operation is not supported Path could not find file gfx/flags/hesse_kassel_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/reuss_gera_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/reuss_gera_monarchy.png Compressed texture of 256x205 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/saxe_weimar_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/saxe_weimar_monarchy.png Compressed texture of 256x256 That operation is not supported Path could not find file gfx/flags/saxe_gotha_monarchy.png Path could not find file gfx/flags/saxe_coburg_monarchy.png Path could not find file gfx/flags/saxe_hildburghausen_monarchy.png Path could not find file gfx/flags/saxe_meiningen_monarchy.png Path could not find file gfx/flags/lippe_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/lorraine_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/lorraine_monarchy.png Compressed texture of 256x154 That operation is not supported Path could not find file gfx/flags/brandenburg_monarchy.png Path could not find file gfx/flags/frankfurt_monarchy.png Path could not find file gfx/flags/munich_monarchy.png Path could not find file gfx/flags/hamburg_monarchy.png Path could not find file gfx/flags/holstein_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/bavaria_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/bavaria_monarchy.png Compressed texture of 256x154 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/hannover_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/hannover_monarchy.png Compressed texture of 256x171 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/luxembourg_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/luxembourg_monarchy.png Compressed texture of 256x154 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/nassau_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/nassau_monarchy.png Compressed texture of 256x171 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/baden_fascism.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/baden_fascism.png Compressed texture of 256x170 That operation is not supported Path could not find file gfx/flags/brunswick_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/anhalt_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/anhalt_monarchy.png Compressed texture of 256x171 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/oldenburg_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/oldenburg_monarchy.png Compressed texture of 256x154 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/silesia_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/silesia_monarchy.png Compressed texture of 256x171 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/danzig_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/danzig_monarchy.png Compressed texture of 256x172 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/wolfenbuttel_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/wolfenbuttel_monarchy.png Compressed texture of 256x154 That operation is not supported Path could not find file gfx/flags/bremen_monarchy.png Path could not find file gfx/flags/schaumburg_lippe_monarchy.png Path could not find file gfx/flags/ritzebuttel_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/wurttemberg_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/wurttemberg_monarchy.png Compressed texture of 256x154 That operation is not supported Path could not find file gfx/flags/liechtenstein_monarchy.png Path could not find file gfx/flags/mecklenburg_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/grand_duchy_of_hesse_and_by_rhine_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/grand_duchy_of_hesse_and_by_rhine_monarchy.png Compressed texture of 256x205 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/switzerland_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/switzerland_monarchy.png Compressed texture of 256x256 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/austria_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/austria_monarchy.png Compressed texture of 256x171 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/hungary_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/hungary_monarchy.png Compressed texture of 256x128 That operation is not supported Path could not find file gfx/flags/ireland_monarchy.png Path could not find file gfx/flags/greater_prussia_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/germany_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/germany_monarchy.png Compressed texture of 256x171 That operation is not supported Path could not find file gfx/flags/holy_roman_empire_monarchy.png Path could not find file gfx/flags/roman_empire_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/austria_hungary_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/austria_hungary_monarchy.png Compressed texture of 256x171 That operation is not supported Path could not find file gfx/flags/venice_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/genoa_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/genoa_monarchy.png Compressed texture of 256x128 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/papal_states_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/papal_states_monarchy.png Compressed texture of 256x192 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/piedmont_sardinia_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/piedmont_sardinia_monarchy.png Compressed texture of 256x171 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/two_sicilies_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/two_sicilies_monarchy.png Compressed texture of 256x171 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/tuscany_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/tuscany_monarchy.png Compressed texture of 256x171 That operation is not supported Path could not find file gfx/flags/parma_monarchy.png Path could not find file gfx/flags/modena_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/savoie_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/savoie_monarchy.png Compressed texture of 256x154 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/italy_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/italy_monarchy.png Compressed texture of 256x256 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/ottoman_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/ottoman_monarchy.png Compressed texture of 256x171 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/turkey_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/turkey_monarchy.png Compressed texture of 256x171 That operation is not supported Path could not find file gfx/flags/greece_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/moldavia_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/moldavia_monarchy.png Compressed texture of 256x171 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/wallachia_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/wallachia_monarchy.png Compressed texture of 256x171 That operation is not supported Path could not find file gfx/flags/kosovo_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/serbia_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/serbia_monarchy.png Compressed texture of 256x171 That operation is not supported Path could not find file gfx/flags/montenegro_monarchy.png Path could not find file gfx/flags/croatia_monarchy.png Path could not find file gfx/flags/bosnia_and_herzegovina_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/najran_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/najran_monarchy.png Compressed texture of 256x128 That operation is not supported Path could not find file gfx/flags/zaidi_imamate_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/oman_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/oman_monarchy.png Compressed texture of 256x128 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/nejd_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/nejd_monarchy.png Compressed texture of 256x171 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/mahra_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/mahra_monarchy.png Compressed texture of 256x154 That operation is not supported Path could not find file gfx/flags/muscat_monarchy.png Path could not find file gfx/flags/kasadi_monarchy.png Path could not find file gfx/flags/mahwali_monarchy.png Path could not find file gfx/flags/wahidi_monarchy.png Path could not find file gfx/flags/wadi_hajr_monarchy.png Path could not find file gfx/flags/tamim_monarchy.png Path could not find file gfx/flags/hamum_monarchy.png Path could not find file gfx/flags/aulaqi_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/fadhli_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/fadhli_monarchy.png Compressed texture of 256x128 That operation is not supported Path could not find file gfx/flags/beihan_monarchy.png Path could not find file gfx/flags/dhale_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/upper_yafa_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/upper_yafa_monarchy.png Compressed texture of 256x154 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/lower_yafa_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/lower_yafa_monarchy.png Compressed texture of 256x171 That operation is not supported Path could not find file gfx/flags/beda_monarchy.png Path could not find file gfx/flags/audhali_monarchy.png Path could not find file gfx/flags/atifi_monarchy.png Path could not find file gfx/flags/kaluli_monarchy.png Path could not find file gfx/flags/aghbari_monarchy.png Path could not find file gfx/flags/barhimi_monarchy.png Path could not find file gfx/flags/aqrabi_monarchy.png Path could not find file gfx/flags/rujai_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/aceh_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/aceh_monarchy.png Compressed texture of 256x163 That operation is not supported Path could not find file gfx/flags/perak_monarchy.png Path could not find file gfx/flags/pagaruyung_monarchy.png Path could not find file gfx/flags/deli_monarchy.png Path could not find file gfx/flags/siak_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/sulu_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/sulu_monarchy.png Compressed texture of 256x171 That operation is not supported Path could not find file gfx/flags/bali_monarchy.png Path could not find file gfx/flags/lombok_monarchy.png Path could not find file gfx/flags/bima_monarchy.png Path /home/####/Desktop/soe/mods/industrial_era/gfx/flags/brunei_monarchy.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/flags/brunei_monarchy.png Compressed texture of 256x128 That operation is not supported Path could not find file models/building_types/barracks.obj Path could not find file gfx/buildingtype/barracks.png Path /home/####/Desktop/soe/mods/industrial_era/models/building_types/fort.obj exists Loading /home/####/Desktop/soe/mods/industrial_era/models/building_types/fort.mtl Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Path could not find file gfx/buildingtype/fort.png That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/models/building_types/seaport.obj exists /home/####/Desktop/soe/mods/industrial_era/models/building_types/seaport.obj-color_texutere not found No light mode 1 /home/####/Desktop/soe/mods/industrial_era/models/building_types/seaport.obj-Material.001 not found No light mode 1 /home/####/Desktop/soe/mods/industrial_era/models/building_types/seaport.obj-window not found No light mode 1 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Path could not find file gfx/buildingtype/seaport.png That operation is not supported Path could not find file models/building_types/coast_cannons.obj Path could not find file gfx/buildingtype/coast_cannons.png Path /home/####/Desktop/soe/mods/industrial_era/models/building_types/glass_factory.obj exists Loading /home/####/Desktop/soe/mods/industrial_era/models/building_types/glass_factory.mtl Command Ke unknown Command d unknown Command illum unknown Created new SimpleModel with Vertices=12 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=13 Created new SimpleModel with Vertices=23 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=12 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=13 Created new SimpleModel with Vertices=23 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Path could not find file gfx/buildingtype/glass_factory.png That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/models/building_types/oil_refinery.obj exists /home/####/Desktop/soe/mods/industrial_era/models/building_types/oil_refinery.obj-Material.001 not found No light mode 1 /home/####/Desktop/soe/mods/industrial_era/models/building_types/oil_refinery.obj-Material.005 not found No light mode 1 /home/####/Desktop/soe/mods/industrial_era/models/building_types/oil_refinery.obj-Material.009 not found /home/####/Desktop/soe/mods/industrial_era/models/building_types/oil_refinery.obj-None not found No light mode 1 /home/####/Desktop/soe/mods/industrial_era/models/building_types/oil_refinery.obj-Material.002 not found No light mode 1 /home/####/Desktop/soe/mods/industrial_era/models/building_types/oil_refinery.obj-Material.003 not found No light mode 1 /home/####/Desktop/soe/mods/industrial_era/models/building_types/oil_refinery.obj-Material.012 not found No light mode 1 /home/####/Desktop/soe/mods/industrial_era/models/building_types/oil_refinery.obj-Material.013 not found No light mode 1 /home/####/Desktop/soe/mods/industrial_era/models/building_types/oil_refinery.obj-Material.014 not found No light mode 1 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=15 Created new SimpleModel with Vertices=13 Created new SimpleModel with Vertices=19 Created new SimpleModel with Vertices=23 Created new SimpleModel with Vertices=30 Created new SimpleModel with Vertices=15 Created new SimpleModel with Vertices=13 Created new SimpleModel with Vertices=19 Created new SimpleModel with Vertices=23 Created new SimpleModel with Vertices=30 Created new SimpleModel with Vertices=15 Created new SimpleModel with Vertices=13 Created new SimpleModel with Vertices=19 Created new SimpleModel with Vertices=23 Created new SimpleModel with Vertices=30 Path could not find file gfx/buildingtype/oil_refinery.png That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/models/building_types/lumberjack.obj exists /home/####/Desktop/soe/mods/industrial_era/models/building_types/lumberjack.obj-Material.001 not found No light mode 1 /home/####/Desktop/soe/mods/industrial_era/models/building_types/lumberjack.obj-Material.010 not found No light mode 1 /home/####/Desktop/soe/mods/industrial_era/models/building_types/lumberjack.obj-Material.011 not found No light mode 1 /home/####/Desktop/soe/mods/industrial_era/models/building_types/lumberjack.obj-Material.012 not found No light mode 1 /home/####/Desktop/soe/mods/industrial_era/models/building_types/lumberjack.obj-Material.009 not found No light mode 1 /home/####/Desktop/soe/mods/industrial_era/models/building_types/lumberjack.obj-Material.005 not found /home/####/Desktop/soe/mods/industrial_era/models/building_types/lumberjack.obj-Material.006 not found No light mode 1 /home/####/Desktop/soe/mods/industrial_era/models/building_types/lumberjack.obj-Material.003 not found No light mode 1 /home/####/Desktop/soe/mods/industrial_era/models/building_types/lumberjack.obj-Material.028 not found No light mode 1 /home/####/Desktop/soe/mods/industrial_era/models/building_types/lumberjack.obj-Material.027 not found Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=33 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=33 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=33 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=33 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=33 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=33 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Path could not find file gfx/buildingtype/lumberjack.png That operation is not supported Path could not find file models/building_types/vineyard.obj Path could not find file gfx/buildingtype/vineyard.png Path could not find file models/building_types/wheat_farm.obj Path could not find file gfx/buildingtype/wheat_farm.png Path could not find file models/building_types/rice_farm.obj Path could not find file gfx/buildingtype/rice_farm.png Path could not find file models/building_types/cotton_farm.obj Path could not find file gfx/buildingtype/cotton_farm.png Path could not find file models/building_types/coal_mine.obj Path could not find file gfx/buildingtype/coal_mine.png Path could not find file models/building_types/copper_mine.obj Path could not find file gfx/buildingtype/copper_mine.png Path could not find file models/building_types/iron_mine.obj Path could not find file gfx/buildingtype/iron_mine.png Path could not find file models/building_types/gold_mine.obj Path could not find file gfx/buildingtype/gold_mine.png Path could not find file models/building_types/sulphur_mine.obj Path could not find file gfx/buildingtype/sulphur_mine.png Path /home/####/Desktop/soe/mods/industrial_era/models/building_types/iron_smelter.obj exists Loading /home/####/Desktop/soe/mods/industrial_era/models/building_types/iron_smelter.mtl Command Ke unknown Command d unknown Command illum unknown Created new SimpleModel with Vertices=8 Created new SimpleModel with Vertices=8 Created new SimpleModel with Vertices=9 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=13 Created new SimpleModel with Vertices=25 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=8 Created new SimpleModel with Vertices=8 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=8 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=8 Created new SimpleModel with Vertices=8 Created new SimpleModel with Vertices=10 Created new SimpleModel with Vertices=10 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=8 Created new SimpleModel with Vertices=8 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=6 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Path could not find file gfx/buildingtype/iron_smelter.png That operation is not supported Path could not find file models/building_types/ammunition_factory.obj Path could not find file gfx/buildingtype/ammunition_factory.png Path could not find file models/building_types/arms_factory.obj Path could not find file gfx/buildingtype/arms_factory.png Path could not find file models/building_types/sails_factory.obj Path could not find file gfx/buildingtype/sails_factory.png Path could not find file models/building_types/bakery.obj Path could not find file gfx/buildingtype/bakery.png Path could not find file models/unit_types/garrison.obj Path /home/####/Desktop/soe/mods/industrial_era/gfx/unittype/garrison.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/unittype/garrison.png Compressed texture of 128x128 Path could not find file models/unit_types/infantry.obj Path /home/####/Desktop/soe/mods/industrial_era/gfx/unittype/infantry.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/unittype/infantry.png Compressed texture of 128x128 Path could not find file models/unit_types/cavalry.obj Path /home/####/Desktop/soe/mods/industrial_era/gfx/unittype/cavalry.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/unittype/cavalry.png Compressed texture of 128x128 Path could not find file models/unit_types/artillery.obj Path /home/####/Desktop/soe/mods/industrial_era/gfx/unittype/artillery.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/unittype/artillery.png Compressed texture of 128x128 Path /home/####/Desktop/soe/mods/industrial_era/models/unit_types/clipper.obj exists Loading /home/####/Desktop/soe/mods/industrial_era/models/unit_types/clipper.mtl Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command d unknown Command illum unknown Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=33 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=33 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=33 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=33 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=33 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=33 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=33 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=4 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Path /home/####/Desktop/soe/mods/industrial_era/gfx/unittype/clipper.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/unittype/clipper.png Compressed texture of 128x128 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/models/unit_types/barque.obj exists Loading /home/####/Desktop/soe/mods/industrial_era/models/unit_types/barque.mtl Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command Ke unknown Command d unknown Command illum unknown Command unknown Command d unknown Command illum unknown Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Created new SimpleModel with Vertices=5 Path /home/####/Desktop/soe/mods/industrial_era/gfx/unittype/barque.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/unittype/barque.png Compressed texture of 128x128 That operation is not supported Path could not find file models/unit_types/sloop_of_war.obj Path could not find file gfx/unittype/sloop_of_war.png Path could not find file models/unit_types/man_of_war.obj Path /home/####/Desktop/soe/mods/industrial_era/gfx/unittype/man_of_war.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/unittype/man_of_war.png Compressed texture of 128x128 That operation is not supported Path /home/####/Desktop/soe/mods/industrial_era/gfx/noise_tex.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/noise_tex.png Couldn't compress texture of 256x256 Path /home/####/Desktop/soe/mods/industrial_era/gfx/wave1.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/wave1.png Compressed texture of 511x512 Path /home/####/Desktop/soe/mods/industrial_era/gfx/wave2.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/wave2.png Compressed texture of 512x512 Path /home/####/Desktop/soe/mods/industrial_era/gfx/water_tex.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/water_tex.png Compressed texture of 512x512 Path /home/####/Desktop/soe/mods/industrial_era/gfx/paper.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/paper.png Compressed texture of 1024x1024 Path /home/####/Desktop/soe/mods/industrial_era/gfx/stripes.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/gfx/stripes.png Compressed texture of 256x256 Path /home/####/Desktop/soe/mods/industrial_era/map/bathymethry.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/map/bathymethry.png Compressed texture of 5400x2700 Path /home/####/Desktop/soe/mods/industrial_era/map/river_smooth.png exists Loaded and cached texture /home/####/Desktop/soe/mods/industrial_era/map/river_smooth.png Compressed texture of 5400x2700 Path /home/####/Desktop/soe/mods/industrial_era/map/color.png exists Couldn't compress texture of 5400x2700 Path /home/####/Desktop/soe/mods/industrial_era/map/topo.png exists Path /home/####/Desktop/soe/mods/industrial_era/map/normal.png exists Couldn't compress texture of 5400x2700 Path /home/####/Desktop/soe/mods/industrial_era/gfx/terrain_sheet.png exists Creating tile map & tile sheet Path exists (added to string list) /home/####/Desktop/soe/mods/industrial_era/shaders/map.vs #version 330 compatibility precision lowp float ; layout ( location =0) in vec3 m_pos ; layout ( location =1) in vec2 m_texcoord ; layout ( location =2) in vec3 m_normal ; layout ( location =3) in vec3 m_tangent ; layout ( location =4) in vec3 m_bitangent ; uniform mat4 view ; uniform mat4 projection ; uniform vec3 viewPos ; out vec2 v_texcoord ; out vec3 v_view_pos ; out vec3 v_frag_pos ; out vec3 vTangentViewPos ; out vec3 vTangentFragPos ; void main (){ gl_Position =( projection * view )* vec4 ( m_pos ,1.0); v_texcoord = m_texcoord ; v_view_pos = vec3 ( view [3][0], view [3][1], view [3][2]); v_frag_pos = m_pos ; } Status: Sucess Path exists (added to string list) /home/####/Desktop/soe/mods/industrial_era/shaders/map.fs #version 330 compatibility #define NOISE #define SDF #define LIGHTING #define RIVERS #define WATER #define GRID precision lowp float ; out vec4 f_frag_color ; in vec2 v_texcoord ; in vec3 v_view_pos ; in vec3 v_frag_pos ; uniform vec3 view_pos ; uniform vec2 map_size ; uniform float time ; uniform float dist_to_map ; uniform sampler2D tile_map ; uniform sampler2D tile_sheet ; uniform sampler2D tile_sheet_nation ; uniform sampler2D water_texture ; uniform sampler2D noise_texture ; uniform sampler2D terrain_map ; uniform sampler2D border_tex ; uniform sampler2D border_sdf ; uniform sampler2D river_texture ; uniform sampler2D wave1 ; uniform sampler2D wave2 ; uniform sampler2D normal ; uniform sampler2D bathymethry ; uniform sampler2D paper_tex ; uniform sampler2D stripes ; uniform sampler2D province_opt ; uniform sampler2DArray terrain_sheet ; #define RGB(r, g, b) pow(vec3(r, g, b), vec3(2.2)) const vec3 province_border_col = RGB (0.0,0.0,0.0); const vec3 country_border_col = RGB (0.2,0.0,0.0); const vec3 water_col = RGB (0.16,0.35,0.75); const vec3 paper_col = RGB (0.95294,0.92157,0.81569); const vec3 river_col = RGB (0.0,0.0,0.3); vec3 get_water_normal ( float time , sampler2D wave1 , sampler2D wave2 , vec2 tex_coords ); vec4 no_tiling ( sampler2D tex , vec2 uv , sampler2D noisy_tex ); vec4 get_terrain ( vec2 tex_coords , vec2 offset ){ const float size =16.0; float index = texture ( terrain_map , tex_coords ). g ; index = trunc ( index * size ); return texture ( terrain_sheet , vec3 ( offset.x , offset.y , index )); } vec4 get_terrain_mix ( vec2 tex_coords ){ vec2 pix = vec2 (1.0)/ map_size ; float xx = pix.x ; float yy = pix.y ; vec2 scaling = mod ( tex_coords +0.5* pix , pix )/ pix ; vec2 offset =320.0* tex_coords ; offset.y *= xx / yy ; vec4 color_00 = get_terrain ( tex_coords +0.5* vec2 (- xx ,- yy ), offset ); vec4 color_01 = get_terrain ( tex_coords +0.5* vec2 (- xx , yy ), offset ); vec4 color_10 = get_terrain ( tex_coords +0.5* vec2 ( xx ,- yy ), offset ); vec4 color_11 = get_terrain ( tex_coords +0.5* vec2 ( xx , yy ), offset ); vec4 color_x0 = mix ( color_00 , color_10 , scaling.x ); vec4 color_x1 = mix ( color_01 , color_11 , scaling.x ); return mix ( color_x0 , color_x1 , scaling.y ); } vec2 get_diff ( vec4 v ){ float provinceDiff = min (( abs ( v.x )+ abs ( v.y ))*255.,1.0); float countryDiff = min (( abs ( v.z )+ abs ( v.w ))*255.,1.0); return vec2 ( provinceDiff , countryDiff ); } vec4 get_border ( vec2 texcoord ){ vec2 pix = vec2 (1.0)/ map_size ; vec2 mPos = texcoord - mod ( texcoord +0.5* pix , pix ); vec2 coordLU = mPos + pix * vec2 (0.25,0.25); vec2 coordLD = mPos + pix * vec2 (0.25,0.75); vec2 coordRU = mPos + pix * vec2 (0.75,0.25); vec2 coordRD = mPos + pix * vec2 (0.75,0.75); vec4 provienceLU , provienceLD , provienceRU , provienceRD ; provienceLU.xy = texture ( tile_map , coordLU ). xy ; provienceLD.xy = texture ( tile_map , coordLD ). xy ; provienceRU.xy = texture ( tile_map , coordRU ). xy ; provienceRD.xy = texture ( tile_map , coordRD ). xy ; vec2 scale = vec2 (255.0/256.0); provienceLU.zw = texture ( tile_sheet_nation , provienceLU.xy * scale ). xy ; provienceLD.zw = texture ( tile_sheet_nation , provienceLD.xy * scale ). xy ; provienceRU.zw = texture ( tile_sheet_nation , provienceRU.xy * scale ). xy ; provienceRD.zw = texture ( tile_sheet_nation , provienceRD.xy * scale ). xy ; vec2 x0 = get_diff ( provienceLU - provienceRU ); vec2 x1 = get_diff ( provienceLD - provienceRD ); vec2 y0 = get_diff ( provienceLU - provienceLD ); vec2 y1 = get_diff ( provienceRU - provienceRD ); vec2 scaling = mod ( texcoord +0.5* pix , pix )/ pix ; vec2 xBorder = mix ( x0 , x1 , step (0.5, scaling.y )); vec2 yBorder = mix ( y0 , y1 , step (0.5, scaling.x )); vec2 scalingE = mod ( texcoord , pix )/ pix ; vec2 test = min ( scalingE , vec2 (1.0,1.0)- scalingE ); test =1.0-2.0* test ; vec2 middle = step (0.5, x0 + y0 + x1 + y1 )* min ( test.x , test.y ); vec2 border = max ( xBorder * test.x , yBorder * test.y ); border = max ( border , middle ); vec2 xBorder2 = mix ( x0 , x1 , scaling.y ); vec2 yBorder2 = mix ( y0 , y1 , scaling.x ); vec2 is_diag = x0 * y0 + y0 * x1 + x1 * y1 + y1 * x0 ; is_diag = step (3, mod ( is_diag +2,4)); vec2 borderDiag = min (( xBorder2 + yBorder2 )-1.0,2.-( xBorder2 + yBorder2 )); border = mix ( border , borderDiag *2., is_diag ); is_diag.x *= border.x +0.53; is_diag.y *= border.y +0.53; border = clamp ( border ,0.,1.0); border.x *= border.x *0.5; border.x = smoothstep (0.0,1.0, border.x ); border.y *= border.y *1.8; return vec4 ( border , is_diag ); } vec2 get_diag_coords ( vec2 tex_coords , float is_diag ){ vec2 pix = vec2 (1.0)/ map_size ; vec2 mOff = mod ( tex_coords +0.5* pix , pix )-0.5* pix ; vec2 dOff = mOff / pix ; float far =1.- step (0.5, abs ( dOff.x )+ abs ( dOff.y )); vec2 diag_coords = tex_coords ; diag_coords -= mOff *2.; diag_coords = mix ( tex_coords , diag_coords , is_diag * far ); return diag_coords ; } vec3 get_province_color ( vec2 tex_coords , float is_diag ){ vec2 diag_coords = get_diag_coords ( tex_coords , is_diag ); vec2 coord = texture ( tile_map , diag_coords ). xy ; vec2 prov_color_coord = coord * vec2 (255.0/256.0); vec3 prov_color = texture ( tile_sheet , prov_color_coord ). rgb ; return prov_color ; } float get_province_shadow ( vec2 tex_coords , float is_diag ){ vec2 diag_coords = get_diag_coords ( tex_coords , is_diag ); vec2 coord = texture ( tile_map , diag_coords ). xy ; vec2 prov_color_coord = coord * vec2 (255.0/256.0); float prov_shadow = texture ( province_opt , prov_color_coord ). r ; prov_shadow += texture ( province_opt , prov_color_coord ). a ; return prov_shadow ; } float isLake ( vec2 coords ){ vec4 terrain = texture ( terrain_map , coords ); return 0.0; } float isOcean ( vec2 coords ){ vec4 terrain = texture ( terrain_map , coords ); float true = terrain.r ==0.0?1.0:0.0; vec2 coord = texture ( tile_map , coords ). xy ; vec2 prov_color_coord = coord * vec2 (255.0/256.0); vec4 prov_color = texture ( tile_sheet , prov_color_coord ). rgba ; true *= length ( prov_color.xyz )==0.0?1.0:0.0; return true ; } float isWater ( vec2 coords ){ vec4 terrain = texture ( terrain_map , coords ); return terrain.r <2.0/255.0?1.0:0.0; } vec2 get_beach ( vec2 tex_coords ){ vec2 pix = vec2 (1.0)/ map_size ; vec2 mPos = tex_coords - mod ( tex_coords +0.5* pix , pix ); float xx = pix.x ; float yy = pix.y ; vec2 scaling = mod ( tex_coords +0.5* pix , pix )/ pix ; vec2 coords_00 = mPos + pix * vec2 (0.25,0.25); vec2 ocean_00 = vec2 ( isWater ( coords_00 ), isOcean ( coords_00 )); vec2 coords_01 = mPos + pix * vec2 (0.25,0.75); vec2 ocean_01 = vec2 ( isWater ( coords_01 ), isOcean ( coords_01 )); vec2 coords_10 = mPos + pix * vec2 (0.75,0.25); vec2 ocean_10 = vec2 ( isWater ( coords_10 ), isOcean ( coords_10 )); vec2 coords_11 = mPos + pix * vec2 (0.75,0.75); vec2 ocean_11 = vec2 ( isWater ( coords_11 ), isOcean ( coords_11 )); vec2 color_x0 = mix ( ocean_00 , ocean_10 , scaling.x ); vec2 color_x1 = mix ( ocean_01 , ocean_11 , scaling.x ); return mix ( color_x0 , color_x1 , scaling.y ); } float get_grid ( vec2 tex_coords ){ vec2 pix = vec2 (1.0)/ map_size ; vec2 gSize = pix *1.2; vec2 gNumber = vec2 (25.0,25.0); gNumber =1.0/( gNumber +1.0); vec2 gEdge = gNumber ; vec2 gCoord = abs ( gNumber *0.5- mod ( tex_coords + gNumber *0.5, gNumber )); vec2 grid = smoothstep ( gSize , vec2 (0.0,0.0), gCoord ); return max ( grid.x , grid.y ); } float get_lighting ( vec2 tex_coords , float beach ){ float ambient =0.1; float far_from_map = smoothstep (45.0,65.0, dist_to_map *1000.0); vec3 view_dir = normalize ( view_pos - v_frag_pos ); vec3 lightDir = normalize ( vec3 (-2,-1,-4)); vec3 normal = texture ( normal , tex_coords ). xyz ; normal = normal *2.0-1.0; normal.xy *= mix (0.7,0.2, far_from_map ); normal = normalize ( normal ); normal.z *=-1; float is_water = step (1., beach ); #ifdef WATER vec3 water_normal = get_water_normal ( time , wave1 , wave2 , tex_coords ); normal = mix ( normal , water_normal , is_water *(1.- far_from_map )); normal = normalize ( normal ); #endif float diffuse = max ( dot ( lightDir , normal ),0.0); diffuse *= mix (0.6,1., far_from_map ); float water_shine = mix (256,64, far_from_map ); float shininess = is_water ==1.? water_shine :8; float specularStrength = is_water ==1.?0.6:0.2; specularStrength *= mix (3.,1., far_from_map ); vec3 reflectDir = reflect (- lightDir , normal ); float spec = pow ( max ( dot ( view_dir , reflectDir ),0.0), shininess ); float specular = specularStrength * spec ; float light = ambient + diffuse + specular ; return light ; } void distance_effect ( inout vec3 out_color , inout vec3 water , vec3 prov_color , vec2 tex_coords , float far_from_map ){ vec2 pix = vec2 (1.0)/ map_size ; vec2 paper_coords = tex_coords ; paper_coords.x *= map_size.y / map_size.x ; vec3 paper = texture ( paper_tex ,20.* paper_coords ). rgb ; float bSdf = texture ( border_sdf , tex_coords + pix *0.5,1). z ; float sdf_mix ; vec3 paper_border0 ; vec3 paper_border1 ; vec3 paper_mix = mix ( paper , paper_col ,0.3); vec3 greyed_color = prov_color * paper_mix ; float whiteness = dot ( prov_color , vec3 (1.0,1.0,1.0)); float b3 =0.5; float b2 =0.90; float b1 =0.97; float b0 =0.99; sdf_mix = smoothstep ( b3 , b2 , bSdf ); paper_border0 = mix ( greyed_color , paper_mix ,0.3); paper_border1 = mix ( greyed_color , paper_mix ,0.5); out_color = mix ( paper_border1 , paper_border0 , sdf_mix ); sdf_mix = smoothstep ( b2 , b1 , bSdf ); paper_border0 = mix ( greyed_color , paper_mix ,0.2); paper_border1 = mix ( greyed_color , paper_mix ,0.3); out_color = mix ( out_color , paper_border0 , sdf_mix ); greyed_color = prov_color * paper_mix *1.0/ max ( whiteness ,1.0); sdf_mix = smoothstep ( b1 , b0 , bSdf ); paper_border0 = mix ( greyed_color , paper_mix ,0.05); out_color = mix ( out_color , paper_border0 , sdf_mix ); sdf_mix = smoothstep (0.93,1.0, bSdf ); vec3 water_effect_col = mix ( water_col , water ,0.75); vec3 paper_water = mix ( water , water_effect_col ,1.0); water = mix ( water , paper_water , sdf_mix ); } vec3 get_paper_water ( vec3 water , float far_from_map , vec2 tex_coords ){ vec2 paper_coords = tex_coords ; paper_coords.x *= map_size.y / map_size.x ; vec3 paper = texture ( paper_tex ,20.* tex_coords ). rgb ; vec3 p_water = mix ( paper , paper_col ,0.7); p_water = mix ( p_water , water_col ,0.5); water = mix ( water , p_water , far_from_map ); return water ; } void main (){ vec2 pix = vec2 (1.0)/ map_size ; vec2 tex_coords = v_texcoord ; float far_from_map = smoothstep (65.0,75.0, dist_to_map *1000.0); vec2 beach_water_ocean = get_beach ( tex_coords ); float beach = beach_water_ocean.x ; float beach_ocean = beach_water_ocean.y ; beach = mix ( beach , beach_ocean , far_from_map ); float noise = texture ( noise_texture ,20.0* tex_coords ). x ; beach += noise *0.3-0.15; beach = smoothstep (0.2,0.3, beach ); beach_ocean = smoothstep (0.1,0.0, abs ( beach_ocean -0.3)-0.15); #ifdef WATER vec2 water_coords =100.0* tex_coords + time * vec2 (0.01); vec3 water = no_tiling ( water_texture , water_coords , noise_texture ). rgb ; water = mix ( water , water_col *0.7, far_from_map ); #else vec3 water = water_col *0.7; #endif water = mix ( water , paper_col ,0.0); #ifdef SDF water = get_paper_water ( water , far_from_map , tex_coords ); #endif #ifdef GRID float grid = get_grid ( tex_coords ); water = mix ( water , vec3 (0.0,0.0,0.0), grid *0.2); #endif float bathy = texture ( bathymethry , tex_coords ). x ; bathy =( bathy -0.50)/(0.70-0.50); water = water * mix (0.8,1.0, bathy ); vec4 borders_diag = get_border ( tex_coords ); float prov_border = borders_diag.x ; float country_border = borders_diag.y ; float is_diag = borders_diag.z ; vec3 prov_color = get_province_color ( tex_coords , is_diag ); vec3 terrain_color = get_terrain_mix ( tex_coords ). rgb ; vec3 ground = mix ( terrain_color , prov_color ,0.5); vec3 out_color ; #ifdef SDF distance_effect ( out_color , water , prov_color , tex_coords , far_from_map ); country_border *= mix (1.0,0.0, far_from_map ); beach_ocean *= mix (1.0,0.0, far_from_map ); out_color = mix ( out_color , vec3 (1.0),1.0- far_from_map ); out_color = mix ( out_color , mix ( ground , water , beach ),1.0- far_from_map ); #else out_color = mix ( ground , water , beach ); #endif out_color = mix ( out_color , water , beach * far_from_map ); country_border *= mix (0.7,1.0, far_from_map )*(1.0- beach ); out_color = mix ( out_color , country_border_col , country_border ); prov_border *=(1.0- far_from_map )*(1.0- beach ); out_color = mix ( out_color , province_border_col , prov_border ); float river = texture ( river_texture , tex_coords ). x ; river = smoothstep (0.1,0.65, river )* far_from_map ; out_color = mix ( out_color , river_col * out_color , river *0.5); float prov_shadow = get_province_shadow ( tex_coords , is_diag ); out_color = out_color * prov_shadow ; float light =1.0; #ifdef LIGHTING light = get_lighting ( tex_coords , beach )*1.0; #endif f_frag_color.rgb = light * out_color ; f_frag_color.rgb = pow ( f_frag_color.rgb , vec3 (1./2.2)); f_frag_color.a =1.0; } 0:145(8): error: syntax error, unexpected BOOLCONSTANT, expecting ',' or ';'