SUBSIM Radio Room Forums



SUBSIM: The Web's #1 resource for all submarine & naval simulations since 1997

Go Back   SUBSIM Radio Room Forums > Silent Hunter 3 - 4 - 5 > SH5 Mods Workshop
Forget password? Reset here

Reply
 
Thread Tools Display Modes
Old 10-17-11, 11:30 PM   #91
TheDarkWraith
Black Magic
 
Join Date: Jun 2007
Posts: 11,962
Downloads: 147
Uploads: 5


Default

well the moment of truth arrived.....



Success I read and parsed the GR2 file without the granny2.dll (or any DLL for that matter) or any other outside file. Did it strictly from reading the file itself. The pointers tell you everything you need to know. I haven't coded in the materials or textures yet that's why it's wireframe only. Will work on that tomorrow

Also have to code in reading the extended data for everything so one can edit/view it also. That'll probably be day after tomorrow. This extended data has stuff like jitter, blur, and some other stuff that I'm curious to play around with and see what it does in game

The indicies threw me for a loop for many hours. The pointer kept telling me they started at x offset but no matter what I couldn't find them. I kept finding the wrong data. After hours of this it finally hit me that they are probably like the vertex data and located in a different section. Yep, that was the case

There seems to be many different names that can be used for texture coordinates 0 and 1. If while using the app you load a model and it says unrecognized vertex component name please make a note of it and which GR2 model you were trying to view and send that information to me please. I currently have 2 defined for each.

So section 0 contains all the arttool info, file info, bindings, extended data, and texture and map info. Section 1 contains the vertex data. Section 2 contains the indicies. Haven't figured out what the other sections do yet. Maybe with the coding of the textures, materials, and extended data they will make themselves known.

I'm going to code in some 'debugger' type things into this. Things like being able to extract all the pointers and it tell you what they are, a file manifest that will include the offset address and physical address in the file of everything loaded by pointers, and some other ideas. This way one can see the information I used to make this possible.

The granny viewer is an SDK of sorts. It tells you the file structure, it tells you the structure of items, and it even tells you the data type of the items. Using that and the pointers you can find/make anything. You'll occassionally stumble into something where you expected to be reading a pointer but you see a hard coded int value in the file. I've come across this when granny viewer shows an item with (x) where x denotes the number of them. You'll find that you read the number of the item first, then you read a pointer that points you to where the items are. The end of that pointer then will have x amount of that type in succession. There are some other little annoyances that took some time to figure out but can't think of them currently.

The app is still using the fixed-function pipeline of DirectX for rendering. I'll convert it over to programmable pipeline (aka shaders) here soon. This will allow me to use the actual shaders of SH5 to do the rendering so we can see items just like in game (or near to it).

I really can't wait to code in the animations part of this. I really want to see the keyframes of these GR2 files. Actually I'm just very curious to 'see' how they do it.



http://www.gamefront.com/files/20899...itorViewer_zip

Let me know if you encounter any errors using it.

How to use:

left mouse click + mousemovement rotates 3D model
right mouse click + forward/backward of mouse moves in/out on 3D model
center mouse click + mouse movement changes camera focus point

Last edited by TheDarkWraith; 10-18-11 at 12:49 AM.
TheDarkWraith is offline   Reply With Quote
Old 10-18-11, 03:42 AM   #92
marleymen
Planesman
 
Join Date: Apr 2005
Location: Con dos cojones, ESPAÑA
Posts: 190
Downloads: 123
Uploads: 0
Default

Thanks TDW. I downloaded it. Great job. Today is a new step to make this game unforgetable.

edit: Ok, i saw that i need to select my sh5 folder. Will test when I reinstall SH5.

Last edited by marleymen; 10-18-11 at 03:58 AM.
marleymen is offline   Reply With Quote
Old 10-18-11, 04:34 AM   #93
tonschk
Admiral
 
Join Date: Mar 2007
Posts: 2,200
Downloads: 172
Uploads: 0
Default

Quote:
Originally Posted by marleymen View Post
Great job. Today is a new step to make this game unforgetable.
I agree , Many Many Thanks to TheDarkWraith
__________________
What we do in life echoes in Eternity
tonschk is offline   Reply With Quote
Old 10-18-11, 05:48 AM   #94
Echolot
Seasoned Skipper
 
Join Date: Mar 2010
Location: Berlin, Germany
Posts: 718
Downloads: 567
Uploads: 0
Default



Thank you TDW. Great work.

Regards.

Echolt.
Echolot is offline   Reply With Quote
Old 10-18-11, 06:32 AM   #95
Obelix
Seasoned Skipper
 
Join Date: Aug 2010
Location: 49°44´N 129°40´E
Posts: 665
Downloads: 124
Uploads: 7
Default

Hi TheDarkWraith!
When I start, issuing this message:
Code:
Details of the operational
(JIT) debugging instead of this dialog
box found at the end of this message.

************** Exception Text **************
System.FormatException: Input string was not valid.
   in System.Number.StringToNumber (String str, NumberStyles options, NumberBuffer & number, NumberFormatInfo info, Boolean parseDecimal)
   in System.Number.ParseDecimal (String value, NumberStyles options, NumberFormatInfo numfmt)
   in System.Convert.ToDecimal (String value)
   in TheDarkWraith.SilentHunter5.GR2EditorViewer.SetCfgFileEntries ()
   in TheDarkWraith.SilentHunter5.GR2EditorViewer.GR2EditorViewer_Load (Object sender, EventArgs e)
   in System.Windows.Forms.Form.OnLoad (EventArgs e)
   in System.Windows.Forms.Form.OnCreateControl ()
   in System.Windows.Forms.Control.CreateControl (Boolean fIgnoreVisible)
   in System.Windows.Forms.Control.CreateControl ()
   in System.Windows.Forms.Control.WmShowWindow (Message & m)
   at System.Windows.Forms.Control.WndProc (Message & m)
   in System.Windows.Forms.ScrollableControl.WndProc (Message & m)
   in System.Windows.Forms.ContainerControl.WndProc (Message & m)
   in System.Windows.Forms.Form.WmShowWindow (Message & m)
   in System.Windows.Forms.Form.WndProc (Message & m)
   in System.Windows.Forms.Control.ControlNativeWindow.OnMessage (Message & m)
   in System.Windows.Forms.Control.ControlNativeWindow.WndProc (Message & m)
   at System.Windows.Forms.NativeWindow.Callback (IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


************** ************** Loaded assemblies
mscorlib
    Assembly Version: 2.0.0.0
    Version Win32: 2.0.50727.5448 (Win7SP1GDR.050727-5400)
    CodeBase: file: / / / C: / Windows/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
----------------------------------------
GR2EditorViewer
    Assembly Version: 1.0.58.0
    Version Win32: 1.0.58.0
    CodeBase: file: / / / D: / Gocuments/Downloads/GR2EditorViewer/GR2EditorViewer.exe
----------------------------------------
System.Windows.Forms
    Assembly Version: 2.0.0.0
    Version Win32: 2.0.50727.5446 (Win7SP1GDR.050727-5400)
    CodeBase:
----------------------------------------
System
    Assembly Version: 2.0.0.0
    Version Win32: 2.0.50727.5447 (Win7SP1GDR.050727-5400)
    CodeBase: file: / / / C: / Windows/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Drawing
    Assembly Version: 2.0.0.0
    Version Win32: 2.0.50727.5420 (Win7SP1.050727-5400)
    CodeBase: file: / / / C: / Windows/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
System.Configuration
    Assembly Version: 2.0.0.0
    Version Win32: 2.0.50727.5420 (Win7SP1.050727-5400)
    CodeBase:
----------------------------------------
System.Xml
    Assembly Version: 2.0.0.0
    Version Win32: 2.0.50727.5420 (Win7SP1.050727-5400)
    CodeBase: file: / / / C: / Windows/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
Microsoft.DirectX.Direct3D
    Assembly Version: 1.0.2902.0
    Version Win32: 9.05.132.0000
    CodeBase:
----------------------------------------
System.Core
    Assembly Version: 3.5.0.0
    Version Win32: 3.5.30729.5420 built by: Win7SP1
    CodeBase: file: / / / C: / Windows/assembly/GAC_MSIL/System.Core/3.5.0.0__b77a5c561934e089/System.Core.dll
----------------------------------------
Microsoft.DirectX
    Assembly Version: 1.0.2902.0
    Version Win32: 5.04.00.2904
    CodeBase: file: / / / C: / Windows/assembly/GAC/Microsoft.DirectX/1.0.2902.0__31bf3856ad364e35/Microsoft.DirectX.dll
----------------------------------------
Microsoft.DirectX.Direct3DX
    Assembly Version: 1.0.2902.0
    Version Win32: 5.04.00.3900
    CodeBase:
----------------------------------------
mscorlib.resources
    Assembly Version: 2.0.0.0
    Version Win32: 2.0.50727.5448 (Win7SP1GDR.050727-5400)
    CodeBase: file: / / / C: / Windows/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
----------------------------------------
System.Windows.Forms.resources
    Assembly Version: 2.0.0.0
    Version Win32: 2.0.50727.5420 (Win7SP1.050727-5400)
    CodeBase:
----------------------------------------

Operational Debugging ************** (JIT) **************
To connect the RAM (JIT) debugging file. Config this
application or computer (machine.config) must have
value jitDebugging, established in section system.windows.forms.
The application must also be compiled to include
debugging.

For example:

<configuration>
    <system.windows.forms jitDebugging="true" />
</ Configuration>

When JIT debugging is enabled, any unhandled exception
sent to the debugger JIT, registered on the computer,
rather than be handled by this dialog box.
When I click "Ignore" the program runs
My system:
Win7 x64 sp1
Athlon II x2 255
4gb ram ddr3 ungaged mode
GeForce GTX240 1gb
__________________
Speed squadron is the speed of the slowest ship ... but only so long as on the trail of the squadron did not sit submarines ...
Obelix is offline   Reply With Quote
Old 10-18-11, 07:44 AM   #96
Obelix
Seasoned Skipper
 
Join Date: Aug 2010
Location: 49°44´N 129°40´E
Posts: 665
Downloads: 124
Uploads: 7
Default

Can not open any files in the folder Submarines - when I open any file returns consistently two errors:


Only open files from the Sea.
From Dbgview:
Code:
00000000	0.00000000	[4008] Silent Hunter 5 GR2 Editor/Viewer v1.0.58.0 by TheDarkWraith 	
00000001	0.00000000	[4008]  	
00000002	0.03539610	[4008] D:\Gocuments\Downloads\GR2EditorViewer\GR2EditorViewer.cfg exists=True 	
00000003	0.03539610	[4008]  	
00000004	0.03548258	[4008] Reading in cfg file... 	
00000005	0.03548258	[4008]  	
00000006	0.03948099	[4008] Entry found: SH5InstallPath=D:\GAMES\U-Boats 	
00000007	0.03948099	[4008]  	
00000008	0.03955992	[4008] Entry found: ShowWorldOrigin=False 	
00000009	0.03955992	[4008]  	
00000010	0.03962601	[4008] Entry found: WorldOriginSize=5 	
00000011	0.03962601	[4008]  	
00000012	0.03969014	[4008] Entry found: WorldOriginOpacity=122 	
00000013	0.03969014	[4008]  	
00000014	0.03975591	[4008] Entry found: WorldOriginColor=-16711681 	
00000015	0.03975591	[4008]  	
00000016	0.03981970	[4008] Entry found: ShowWorldOriginLabel=False 	
00000017	0.03981970	[4008]  	
00000018	0.03988449	[4008] Entry found: WorldOriginLabelSize=7.5 	
00000019	0.03988449	[4008]  	
00000020	0.03994795	[4008] Entry found: WorldOriginLabelOpacity=122 	
00000021	0.03994795	[4008]  	
00000022	0.04002556	[4008] Entry found: WorldOriginLabelColor=-16711681 	
00000023	0.04002556	[4008]  	
00000024	0.04009034	[4008] Entry found: ShowWorldOriginAxis=True 	
00000025	0.04009034	[4008]  	
00000026	0.04015381	[4008] Entry found: WorldOriginAxisOpacity=122 	
00000027	0.04015381	[4008]  	
00000028	0.04021695	[4008] Entry found: ShowBoneOrigin=True 	
00000029	0.04021695	[4008]  	
00000030	0.04033500	[4008] Entry found: BoneOriginSize=5 	
00000031	0.04033500	[4008]  	
00000032	0.04041852	[4008] Entry found: BoneOriginOpacity=185 	
00000033	0.04041852	[4008]  	
00000034	0.04043694	[4008] Entry found: BoneOriginColor=-10185235 	
00000035	0.04043694	[4008]  	
00000036	0.04050403	[4008] Entry found: ShowBoneOriginLabel=True 	
00000037	0.04050403	[4008]  	
00000038	0.04058953	[4008] Entry found: BoneOriginLabelSize=7.5 	
00000039	0.04058953	[4008]  	
00000040	0.04078387	[4008] Entry found: BoneOriginLabelOpacity=185 	
00000041	0.04078387	[4008]  	
00000042	0.04082859	[4008] Entry found: BoneOriginLabelColor=-10185235 	
00000043	0.04082859	[4008]  	
00000044	0.04089436	[4008] Entry found: ShowBoneOriginAxis=True 	
00000045	0.04089436	[4008]  	
00000046	0.04093185	[4008] Entry found: BoneOriginAxisOpacity=122 	
00000047	0.04093185	[4008]  	
00000048	0.04099828	[4008] Entry found: ShowBones=True 	
00000049	0.04099828	[4008]  	
00000050	0.04103577	[4008] Entry found: ShowBoneInterconnects=True 	
00000051	0.04103577	[4008]  	
00000052	0.04108641	[4008] Entry found: CullMode=None 	
00000053	0.04108641	[4008]  	
00000054	0.04114856	[4008] Entry found: FillMode=solid_wire_point 	
00000055	0.04114856	[4008]  	
00000056	0.04118999	[4008] Entry found: ShadeMode=Gouraud 	
00000057	0.04118999	[4008]  	
00000058	0.04124623	[4008] Entry found: PointsSize=3.5 	
00000059	0.04124623	[4008]  	
00000060	0.04129259	[4008] Entry found: PointsColor=-65281 	
00000061	0.04129259	[4008]  	
00000062	0.04134883	[4008] Entry found: PointsOpacity=50 	
00000063	0.04134883	[4008]  	
00000064	0.04139651	[4008] Entry found: WireframeColor=-128 	
00000065	0.04139651	[4008]  	
00000066	0.04145833	[4008] Entry found: WireframeOpacity=50 	
00000067	0.04145833	[4008]  	
00000068	0.04149878	[4008] Entry found: SolidColor=-3673639 	
00000069	0.04149878	[4008]  	
00000070	0.04156060	[4008] Entry found: SolidOpacity=255 	
00000071	0.04156060	[4008]  	
00000072	0.04160171	[4008] Entry found: SolidIsTexture=False 	
00000073	0.04160171	[4008]  	
00000074	0.11525483	[4008] DirectX initialized 	
00000075	0.11525483	[4008]  	
00000076	0.14511977	[4008] SH5 install path set to D:\GAMES\U-Boats 	
00000077	0.14511977	[4008]  	
00000078	24.23274994	[4008] GR2 file path is D:\GAMES\U-Boats\data\Submarine\NSS_Undine\NSS_Undine.GR2 	
00000079	24.23274994	[4008]  	
00000080	24.25082970	[4008] Current position in file is 0x0 	
00000081	24.25227928	[4008]  	
00000082	24.25227928	[4008] Reading file header data starting at 0x0 	
00000083	24.25253105	[4008] Magic string=)?lA?¤S+%o·?ofai      0x10 	
00000084	24.25257301	[4008] File list start offset (from file beginning)=0x1C8      0x14        where the file list header starts 	
00000085	24.25260925	[4008] Unknown1=0x0      0x18 	
00000086	24.25264740	[4008] Unknown2=0x0      0x1C 	
00000087	24.25268173	[4008] Unknown3=0x0      0x20 	
00000088	24.25271606	[4008] Current position in file is 0x20 	
00000089	24.25441933	[4008]  	
00000090	24.25441933	[4008] Reading info header data starting at 0x20 	
00000091	24.25446129	[4008] File format revision=0x7      0x24 	
00000092	24.25449944	[4008] File size in bytes=1720964      0x28 	
00000093	24.25453377	[4008] CRC value=0xC52FD13B      0x2C 	
00000094	24.25457001	[4008] Bytes from offset to start of sections=0x48      0x30        bytes from start of this to first section 	
00000095	24.25460625	[4008] Number of sections=8      0x34 	
00000096	24.25464058	[4008] Root object type (?)=0x6      0x38 	
00000097	24.25467491	[4008] Root object offset (?)=0x0      0x3C 	
00000098	24.25470924	[4008] Unknown1=0x0      0x40 	
00000099	24.25474358	[4008] Unknown2=0x0      0x44 	
00000100	24.25478363	[4008] Tag=0x80000032      0x48 	
00000101	24.25482941	[4008] Current position in file is 0x68 	
00000102	24.25701141	[4008]  	
00000103	24.25701141	[4008] Reading section 0 (arttoolinfo) data starting at 0x68 	
00000104	24.25706100	[4008] Unknown=0x0      0x6C        always 0x0 	
00000105	24.25709724	[4008] Section file offset=0x468C      0x70        where this section starts in the file 	
00000106	24.25713730	[4008] Compressed size=61184      0x74        compressed size and uncompressed sizes should equal for SH5 GR2s 	
00000107	24.25717163	[4008] Uncompressed size=61184      0x78        compressed size and uncompressed sizes should equal for SH5 GR2s 	
00000108	24.25720787	[4008] Alignment=0x4      0x7C        what the alignment boundary is in the file 	
00000109	24.25724792	[4008] Start of data fileoffset=0xBD9C      0x80        start of data 	
00000110	24.25728989	[4008] Start of data fileoffset2=0xBD9C      0x84        start of data 	
00000111	24.25732613	[4008] Pointers file offset=0x1C8      0x88        where the pointers for this section are located 	
00000112	24.25736427	[4008] Number of pointers=1467      0x8C 	
00000113	24.25740051	[4008] Pointer to unknown=0x468C      0x90 	
00000114	24.25743675	[4008] Unknown2=0x0      0x94 	
00000115	24.25749016	[4008] ********* Incompatible GR2 file. Expected unknown pointer to have value of GR2 file size in section header 0 ********* 	
00000116	24.25749016	[4008]  	
00000117	26.47792053	[4008] ********* Unable to parse D:\GAMES\U-Boats\data\Submarine\NSS_Undine\NSS_Undine.GR2 ********* 	
00000118	26.47792053	[4008]  	
00000119	27.17979431	[4008] D:\GAMES\U-Boats\data\Submarine\NSS_Undine\NSS_Undine.GR2 closed 	
00000120	27.17979431	[4008]
__________________
Speed squadron is the speed of the slowest ship ... but only so long as on the trail of the squadron did not sit submarines ...
Obelix is offline   Reply With Quote
Old 10-18-11, 08:35 AM   #97
TheDarkWraith
Black Magic
 
Join Date: Jun 2007
Posts: 11,962
Downloads: 147
Uploads: 5


Default

Quote:
Originally Posted by Obelix View Post
Can not open any files in the folder Submarines - when I open any file returns consistently two errors:

00000103 24.25701141 [4008] Reading section 0 (arttoolinfo) data starting at 0x68
00000104 24.25706100 [4008] Unknown=0x0 0x6C always 0x0
00000105 24.25709724 [4008] Section file offset=0x468C 0x70 where this section starts in the file
00000106 24.25713730 [4008] Compressed size=61184 0x74 compressed size and uncompressed sizes should equal for SH5 GR2s
00000107 24.25717163 [4008] Uncompressed size=61184 0x78 compressed size and uncompressed sizes should equal for SH5 GR2s
00000108 24.25720787 [4008] Alignment=0x4 0x7C what the alignment boundary is in the file
00000109 24.25724792 [4008] Start of data fileoffset=0xBD9C 0x80 start of data
00000110 24.25728989 [4008] Start of data fileoffset2=0xBD9C 0x84 start of data
00000111 24.25732613 [4008] Pointers file offset=0x1C8 0x88 where the pointers for this section are located
00000112 24.25736427 [4008] Number of pointers=1467 0x8C
00000113 24.25740051 [4008] Pointer to unknown=0x468C 0x90
00000114 24.25743675 [4008] Unknown2=0x0 0x94
00000115 24.25749016 [4008] ********* Incompatible GR2 file. Expected unknown pointer to have value of GR2 file size in section header 0 *********
Thanks for the report The first problem you reported is due to culture specifics biting me in the you know what again. Easy fix. This problem is a little more involved as I don't know what Unknown2 is doing. I'll have to figure this out now.

Have you tried it on anything in \data\Sea? Worked on many of the ships I tried it on there. I'll open up the NSS_Undine using VS 2008 and look at its pointers and see what's going on.
TheDarkWraith is offline   Reply With Quote
Old 10-18-11, 09:02 AM   #98
TheDarkWraith
Black Magic
 
Join Date: Jun 2007
Posts: 11,962
Downloads: 147
Uploads: 5


Default

There's always a special one somewhere.....the NSS_Undine is laid out differently than other GR2 files I've seen. It defines it's pointers for section 0 where the file info header should be. I see from the section descriptions that it says it was going to do this but I never took something like that into account. I figured all GR2 would have their info header located at 0x1C8 in the file That's what you get for assuming!!

I'll have to make some changes.....
TheDarkWraith is offline   Reply With Quote
Old 10-18-11, 09:08 AM   #99
Obelix
Seasoned Skipper
 
Join Date: Aug 2010
Location: 49°44´N 129°40´E
Posts: 665
Downloads: 124
Uploads: 7
Default

Quote:
Originally Posted by TheDarkWraith View Post
Have you tried it on anything in \data\Sea? Worked on many of the ships I tried it on there....
I tried to open the folder Sea. All opened normally, but Nelson was this:



From last screen:
Quote:
Index out of range. The index must be positive, but its size can not exceed the size of the collection.
Parameter name: index
Log DbgView:
Code:
00000000	0.00000000	[3980] GR2 file path is D:\GAMES\U-Boats\data\Sea\NBB_Nelson\NBB_Nelson.GR2 	
00000001	0.00000000	[3980]  	
00000002	0.00350120	[3980] Current position in file is 0x0 	
00000003	0.00352389	[3980]  	
00000004	0.00352389	[3980] Reading file header data starting at 0x0 	
00000005	0.00359097	[3980] Magic string=)?lA?¤S+%o·?ofai      0x10 	
00000006	0.00360807	[3980] File list start offset (from file beginning)=0x1C8      0x14        where the file list header starts 	
00000007	0.00363734	[3980] Unknown1=0x0      0x18 	
00000008	0.00367680	[3980] Unknown2=0x0      0x1C 	
00000009	0.00379453	[3980] Unknown3=0x0      0x20 	
00000010	0.00381393	[3980] Current position in file is 0x20 	
00000011	0.00384123	[3980]  	
00000012	0.00384123	[3980] Reading info header data starting at 0x20 	
00000013	0.00386589	[3980] File format revision=0x7      0x24 	
00000014	0.00405366	[3980] File size in bytes=9243412      0x28 	
00000015	0.00408062	[3980] CRC value=0x542724E6      0x2C 	
00000016	0.00417928	[3980] Bytes from offset to start of sections=0x48      0x30        bytes from start of this to first section 	
00000017	0.00419769	[3980] Number of sections=8      0x34 	
00000018	0.00422597	[3980] Root object type (?)=0x6      0x38 	
00000019	0.00425228	[3980] Root object offset (?)=0x3720      0x3C 	
00000020	0.00427727	[3980] Unknown1=0x0      0x40 	
00000021	0.00430128	[3980] Unknown2=0x0      0x44 	
00000022	0.00432627	[3980] Tag=0x80000032      0x48 	
00000023	0.00436211	[3980] Current position in file is 0x68 	
00000024	0.00446406	[3980]  	
00000025	0.00446406	[3980] Reading section 0 (arttoolinfo) data starting at 0x68 	
00000026	0.00448181	[3980] Unknown=0x0      0x6C        always 0x0 	
00000027	0.00451108	[3980] Section file offset=0x1C8      0x70        where this section starts in the file 	
00000028	0.00453574	[3980] Compressed size=117580      0x74        compressed size and uncompressed sizes should equal for SH5 GR2s 	
00000029	0.00456238	[3980] Uncompressed size=117580      0x78        compressed size and uncompressed sizes should equal for SH5 GR2s 	
00000030	0.00458737	[3980] Alignment=0x4      0x7C        what the alignment boundary is in the file 	
00000031	0.00461204	[3980] Start of data fileoffset=0x18CC4      0x80        start of data 	
00000032	0.00463604	[3980] Start of data fileoffset2=0x18CC4      0x84        start of data 	
00000033	0.00466794	[3980] Pointers file offset=0x8C74D8      0x88        where the pointers for this section are located 	
00000034	0.00478468	[3980] Number of pointers=2574      0x8C 	
00000035	0.00480013	[3980] Pointer to unknown=0x8D0B14      0x90 	
00000036	0.00482611	[3980] Unknown2=0x0      0x94 	
00000037	0.00486788	[3980] Current position in file is 0x94 	
00000038	0.00492213	[3980]  	
00000039	0.00492213	[3980] Reading section 1 (vertex_data) data starting at 0x94 	
00000040	0.00494778	[3980] Unknown=0x0      0x98        always 0x0 	
00000041	0.00497311	[3980] Section file offset=0x1CD14      0x9C        where this section starts in the file 	
00000042	0.00499843	[3980] Compressed size=8155008      0xA0        compressed size and uncompressed sizes should equal for SH5 GR2s 	
00000043	0.00502309	[3980] Uncompressed size=8155008      0xA4        compressed size and uncompressed sizes should equal for SH5 GR2s 	
00000044	0.00504808	[3980] Alignment=0x20      0xA8        what the alignment boundary is in the file 	
00000045	0.00507275	[3980] Start of data fileoffset=0x7C6F80      0xAC        start of data 	
00000046	0.00509708	[3980] Start of data fileoffset2=0x7C6F80      0xB0        start of data 	
00000047	0.00512141	[3980] Pointers file offset=0x8CED80      0xB4        where the pointers for this section are located 	
00000048	0.00514673	[3980] Number of pointers=0      0xB8 	
00000049	0.00517074	[3980] Pointer to unknown=0x8D0B14      0xBC 	
00000050	0.00519508	[3980] Unknown2=0x0      0xC0 	
00000051	0.00522105	[3980] Current position in file is 0xC0 	
00000052	0.00525065	[3980]  	
00000053	0.00525065	[3980] Reading section 2 (indicies) data starting at 0xC0 	
00000054	0.00527498	[3980] Unknown=0x0      0xC4        always 0x0 	
00000055	0.00529965	[3980] Section file offset=0x7E3C94      0xC8        where this section starts in the file 	
00000056	0.00536311	[3980] Compressed size=912228      0xCC        compressed size and uncompressed sizes should equal for SH5 GR2s 	
00000057	0.00539370	[3980] Uncompressed size=912228      0xD0        compressed size and uncompressed sizes should equal for SH5 GR2s 	
00000058	0.00541935	[3980] Alignment=0x4      0xD4        what the alignment boundary is in the file 	
00000059	0.00544368	[3980] Start of data fileoffset=0xDEB64      0xD8        start of data 	
00000060	0.00546802	[3980] Start of data fileoffset2=0xDEB64      0xDC        start of data 	
00000061	0.00549235	[3980] Pointers file offset=0x8CED80      0xE0        where the pointers for this section are located 	
00000062	0.00551636	[3980] Number of pointers=0      0xE4 	
00000063	0.00554036	[3980] Pointer to unknown=0x8D0B14      0xE8 	
00000064	0.00556437	[3980] Unknown2=0x0      0xEC 	
00000065	0.00559133	[3980] Current position in file is 0xEC 	
00000066	0.00562159	[3980]  	
00000067	0.00562159	[3980] Reading section 3 (unknown3) data starting at 0xEC 	
00000068	0.00564691	[3980] Unknown=0x0      0xF0        always 0x0 	
00000069	0.00567387	[3980] Section file offset=0x8C27F8      0xF4        where this section starts in the file 	
00000070	0.00569854	[3980] Compressed size=0      0xF8        compressed size and uncompressed sizes should equal for SH5 GR2s 	
00000071	0.00572320	[3980] Uncompressed size=0      0xFC        compressed size and uncompressed sizes should equal for SH5 GR2s 	
00000072	0.00574753	[3980] Alignment=0x20      0x100        what the alignment boundary is in the file 	
00000073	0.00577187	[3980] Start of data fileoffset=0x0      0x104        start of data 	
00000074	0.00579620	[3980] Start of data fileoffset2=0x0      0x108        start of data 	
00000075	0.00582086	[3980] Pointers file offset=0x8CED80      0x10C        where the pointers for this section are located 	
00000076	0.00584684	[3980] Number of pointers=0      0x110 	
00000077	0.00587184	[3980] Pointer to unknown=0x8D0B14      0x114 	
00000078	0.00589617	[3980] Unknown2=0x0      0x118 	
00000079	0.00592248	[3980] Current position in file is 0x118 	
00000080	0.00595076	[3980]  	
00000081	0.00595076	[3980] Reading section 4 (unknown4) data starting at 0x118 	
00000082	0.00597542	[3980] Unknown=0x0      0x11C        always 0x0 	
00000083	0.00599976	[3980] Section file offset=0x8C27F8      0x120        where this section starts in the file 	
00000084	0.00602442	[3980] Compressed size=0      0x124        compressed size and uncompressed sizes should equal for SH5 GR2s 	
00000085	0.00604941	[3980] Uncompressed size=0      0x128        compressed size and uncompressed sizes should equal for SH5 GR2s 	
00000086	0.00607375	[3980] Alignment=0x4      0x12C        what the alignment boundary is in the file 	
00000087	0.00609907	[3980] Start of data fileoffset=0x0      0x130        start of data 	
00000088	0.00612340	[3980] Start of data fileoffset2=0x0      0x134        start of data 	
00000089	0.00614774	[3980] Pointers file offset=0x8CED80      0x138        where the pointers for this section are located 	
00000090	0.00617207	[3980] Number of pointers=0      0x13C 	
00000091	0.00619608	[3980] Pointer to unknown=0x8D0B14      0x140 	
00000092	0.00622041	[3980] Unknown2=0x0      0x144 	
00000093	0.00624672	[3980] Current position in file is 0x144 	
00000094	0.00627533	[3980]  	
00000095	0.00627533	[3980] Reading section 5 (unknown5) data starting at 0x144 	
00000096	0.00629966	[3980] Unknown=0x0      0x148        always 0x0 	
00000097	0.00632531	[3980] Section file offset=0x8C27F8      0x14C        where this section starts in the file 	
00000098	0.00635195	[3980] Compressed size=0      0x150        compressed size and uncompressed sizes should equal for SH5 GR2s 	
00000099	0.00637661	[3980] Uncompressed size=0      0x154        compressed size and uncompressed sizes should equal for SH5 GR2s 	
00000100	0.00640095	[3980] Alignment=0x4      0x158        what the alignment boundary is in the file 	
00000101	0.00642528	[3980] Start of data fileoffset=0x0      0x15C        start of data 	
00000102	0.00644929	[3980] Start of data fileoffset2=0x0      0x160        start of data 	
00000103	0.00647329	[3980] Pointers file offset=0x8CED80      0x164        where the pointers for this section are located 	
00000104	0.00649763	[3980] Number of pointers=0      0x168 	
00000105	0.00652163	[3980] Pointer to unknown=0x8D0B14      0x16C 	
00000106	0.00654662	[3980] Unknown2=0x0      0x170 	
00000107	0.00657260	[3980] Current position in file is 0x170 	
00000108	0.00660154	[3980]  	
00000109	0.00660154	[3980] Reading section 6 (unknown6) data starting at 0x170 	
00000110	0.00662555	[3980] Unknown=0x0      0x174        always 0x0 	
00000111	0.00665021	[3980] Section file offset=0x8C27F8      0x178        where this section starts in the file 	
00000112	0.00667553	[3980] Compressed size=19680      0x17C        compressed size and uncompressed sizes should equal for SH5 GR2s 	
00000113	0.00670052	[3980] Uncompressed size=19680      0x180        compressed size and uncompressed sizes should equal for SH5 GR2s 	
00000114	0.00672519	[3980] Alignment=0x4      0x184        what the alignment boundary is in the file 	
00000115	0.00674952	[3980] Start of data fileoffset=0x4CE0      0x188        start of data 	
00000116	0.00677484	[3980] Start of data fileoffset2=0x4CE0      0x18C        start of data 	
00000117	0.00680115	[3980] Pointers file offset=0x8CED80      0x190        where the pointers for this section are located 	
00000118	0.00682515	[3980] Number of pointers=631      0x194 	
00000119	0.00684916	[3980] Pointer to unknown=0x8D0B14      0x198 	
00000120	0.00687317	[3980] Unknown2=0x0      0x19C 	
00000121	0.00689914	[3980] Current position in file is 0x19C 	
00000122	0.00692808	[3980]  	
00000123	0.00692808	[3980] Reading section 7 (unknown7) data starting at 0x19C 	
00000124	0.00695209	[3980] Unknown=0x0      0x1A0        always 0x0 	
00000125	0.00697675	[3980] Section file offset=0x8C74D8      0x1A4        where this section starts in the file 	
00000126	0.00700240	[3980] Compressed size=0      0x1A8        compressed size and uncompressed sizes should equal for SH5 GR2s 	
00000127	0.00702706	[3980] Uncompressed size=0      0x1AC        compressed size and uncompressed sizes should equal for SH5 GR2s 	
00000128	0.00705140	[3980] Alignment=0x4      0x1B0        what the alignment boundary is in the file 	
00000129	0.00707573	[3980] Start of data fileoffset=0x0      0x1B4        start of data 	
00000130	0.00710007	[3980] Start of data fileoffset2=0x0      0x1B8        start of data 	
00000131	0.00712407	[3980] Pointers file offset=0x8D0B14      0x1BC        where the pointers for this section are located 	
00000132	0.00714775	[3980] Number of pointers=0      0x1C0 	
00000133	0.00717208	[3980] Pointer to unknown=0x8D0B14      0x1C4 	
00000134	0.00719609	[3980] Unknown2=0x0      0x1C8 	
00000135	0.00722338	[3980] Current position in file is 0x1C8 	
00000136	0.00725594	[3980]  	
00000137	0.00725594	[3980] File info offset at 0x8 (0x1D0) 	
00000138	0.00729507	[3980] Number of textures=10      0xC (0x1D4) 	
00000139	0.00732204	[3980] Number of materials=21      0x14 (0x1DC) 	
00000140	0.00734703	[3980] Number of skeletons=1      0x1C (0x1E4) 	
00000141	0.00737169	[3980] Number of vertex datas=55      0x24 (0x1EC) 	
00000142	0.00739636	[3980] Number of tritopologies=55      0x2C (0x1F4) 	
00000143	0.00742102	[3980] Number of meshes=55      0x34 (0x1FC) 	
00000144	0.00744568	[3980] Number of models=1      0x3C (0x204) 	
00000145	0.00747166	[3980] Number of trackgroups=0      0x44 (0x20C) 	
00000146	0.00749632	[3980] Number of animations=0      0x4C (0x214) 	
00000147	0.00752099	[3980] Number of unknown=0      0x54 (0x21C) 	
00000148	0.00754499	[3980] Current position in file is 0x220 	
00000149	0.00764694	[3980] Pointer 0 updates the pointer to ArtToolInfo:FromArtTooFromName with pointer to embedded string for it 	
00000150	0.00766962	[3980]  	
00000151	0.00766962	[3980] ArtToolInfo offset is 0x58 (0x220) 	
00000152	0.00770481	[3980] FromArtToolName=3D Studio MAX      0x5C (0x224)      embedded string from 0x18CC4 (0x18E8C) 	
00000153	0.00773013	[3980] ArtToolMajorRevision=10      0x60 (0x228) 	
00000154	0.00775480	[3980] ArtToolMinorRevision=0      0x64 (0x22C) 	
00000155	0.00778110	[3980] ArtToolPointerSize=32      0x68 (0x230) 	
00000156	0.00780807	[3980] UnitsPerMeter=0,100000      0x6C (0x234) 	
00000157	0.00783635	[3980] Origin=0,000000  0,000000  0,000000      0x70 (0x238) 	
00000158	0.00786233	[3980] RightVector=1,000000  0,000000  0,000000      0x7C (0x244) 	
00000159	0.00788765	[3980] UpVector=0,000000  1,000000  0,000000      0x88 (0x250) 	
00000160	0.00791363	[3980] BackVector=0,000000  0,000000  -1,000000      0x94 (0x25C) 	
00000161	0.00793697	[3980] Current position in file is 0x268 	
00000162	0.00796789	[3980] Pointer 1 always points to ArtToolInfo:? pointer 	
00000163	0.00799123	[3980] Based on this pointer then: 	
00000164	0.00801623	[3980] ArtToolInfo:ExtendedData pointer is at 0xA4 (0x26C) 	
00000165	0.00804122	[3980] ArtToolInfo:ExtendedData:DocumentContents pointer is at 0xA8 (0x270) 	
00000166	0.00806522	[3980] ArtToolInfo:ExtendedData:DocumentContents:Headers pointer is at 0xAC (0x274) 	
00000167	0.00808956	[3980] ArtToolInfo:ExtendedData:DocumentContents:Elements number of elements is at 0xB0 (0x278) 	
00000168	0.00811389	[3980] ArtToolInfo:ExtendedData:DocumentContents:Elements pointer is at 0xB4 (0x27C) 	
00000169	0.00813856	[3980]  	
00000170	0.00813856	[3980] ArtToolInfo:ExtendedData:DocumentContents:Headers data file offset=0xB8 (0x280) 	
00000171	0.00816223	[3980] Current position in file is 0x268 	
00000172	0.00818821	[3980]  	
00000173	0.00818821	[3980] These additional strings don't have pointers associated with them and are for the ArtToolInfo in GrannyViewer (0x18E9C) 	
00000174	0.00828095	[3980] Additional string 0 is DocumentContents      0x18CD4 (0x18E9C) 	
00000175	0.00832139	[3980] Additional string 1 is Headers      0x18CE8 (0x18EB0) 	
00000176	0.00835428	[3980] Additional string 2 is 0      0x18CF0 (0x18EB8) 	
00000177	0.00838683	[3980] Additional string 3 is 1      0x18CF4 (0x18EBC) 	
00000178	0.00841939	[3980] Additional string 4 is 2      0x18CF8 (0x18EC0) 	
00000179	0.00845194	[3980] Additional string 5 is 3      0x18CFC (0x18EC4) 	
00000180	0.00848516	[3980] Additional string 6 is 4      0x18D00 (0x18EC8) 	
00000181	0.00851771	[3980] Additional string 7 is 5      0x18D04 (0x18ECC) 	
00000182	0.00855093	[3980] Additional string 8 is 6      0x18D08 (0x18ED0) 	
00000183	0.00858348	[3980] Additional string 9 is 7      0x18D0C (0x18ED4) 	
00000184	0.00861735	[3980] Additional string 10 is 8      0x18D10 (0x18ED8) 	
00000185	0.00865024	[3980] Additional string 11 is 9      0x18D14 (0x18EDC) 	
00000186	0.00872752	[3980] Additional string 12 is 10      0x18D18 (0x18EE0) 	
00000187	0.00876270	[3980] Additional string 13 is 11      0x18D1C (0x18EE4) 	
00000188	0.00879855	[3980] Additional string 14 is 12      0x18D20 (0x18EE8) 	
00000189	0.00883439	[3980] Additional string 15 is 13      0x18D24 (0x18EEC) 	
00000190	0.00887188	[3980] Additional string 16 is 14      0x18D28 (0x18EF0) 	
00000191	0.00890772	[3980] Additional string 17 is 15      0x18D2C (0x18EF4) 	
00000192	0.00897152	[3980] Additional string 18 is Elements      0x18D30 (0x18EF8) 	
00000193	0.00900802	[3980] Additional string 19 is Value      0x18D3C (0x18F04) 	
00000194	0.00903203	[3980] Current position in file is 0x18F0C 	
00000195	0.00905537	[3980]  	
00000196	0.00905537	[3980] The following strings are for the ArtToolInfo:ExtendedData:DocumentContents:Headers in GrannyViewer 	
00000197	0.00907839	[3980] Their file layout is pointer (4 bytes) then data (4 bytes) 	
00000198	0.00915731	[3980] General=3      0xC0 (0x288) 	
00000199	0.00922506	[3980] Mesh Totals=2      0xC8 (0x290) 	
00000200	0.00930957	[3980] Scene Totals=7      0xD0 (0x298) 	
00000201	0.00941513	[3980] External Dependencies=16      0xD8 (0x2A0) 	
00000202	0.00946577	[3980] Objects=97      0xE0 (0x2A8) 	
00000203	0.00954272	[3980] Materials=7      0xE8 (0x2B0) 	
00000204	0.00962921	[3980] Used Plug-Ins=18      0xF0 (0x2B8) 	
00000205	0.00969234	[3980] Render Data=13      0xF8 (0x2C0) 	
00000206	0.00971668	[3980] Current position in file is 0x18F0C 	
00000207	0.00975680	[3980] Pointer 10 updates ArtToolInfo:ExtendedData:DocumentContents:Headers pointer with pointer to where it's data is 	
00000208	0.00978245	[3980] ********* Conflicting offsets specified for ArtToolInfo:ExtendedData:DocumentContents:Headers data file offset ********* 	
00000209	0.00978245	[3980]  	
00000210	12.90938377	[824] ScriptUI: 3[0]: 0.119187 (FlexServer performance info) 0.100 seconds to load C:\Program Files\Adobe\Adobe Photoshop CS5.1 (64 Bit)\Plug-ins\Extensions	
00000211	13.13961887	[824] ScriptUI: 5[0]: 0.349444 (FlexServer performance info) 0.200 seconds for server SWF to initialize	
00000212	13.22388458	[824] ScriptUI: 8[0]: 0.433704 (FlexServer performance info) 0.100 seconds to load C:\Program Files\Adobe\Adobe Photoshop CS5.1 (64 Bit)\Plug-ins\Extensions\ScriptUIFlexPhotoshop.swf	
00000213	40.01392365	[3980] number of ArtToolInfo:ExtendedData:DocumentContents:Elements=163      0xB8 (0x280) 	
00000214	40.01399994	[3980] Current position in file is 0x284 	
00000215	40.01403427	[3980]  	
00000216	40.01403427	[3980] Current file position adjusted back to after last header value read (0x18F98) 	
00000217	40.01408386	[3980]  	
00000218	40.01408386	[3980] Elements data 0x18DD0 (0x18F98)        number to read=163: 	
00000219	40.01427841	[3980] 3ds Max Version: 10.0        pointer=0x100 (0x2C8)        embedded string=0x18DD0 (0x18F98) 	
00000220	40.01440430	[3980] Uncompressed        pointer=0x104 (0x2CC)        embedded string=0x18DE8 (0x18FB0) 	
00000221	40.01454544	[3980] Build: Unknown        pointer=0x108 (0x2D0)        embedded string=0x18DF8 (0x18FC0) 	
00000222	40.01468658	[3980] Vertices: 56695        pointer=0x10C (0x2D4)        embedded string=0x18E08 (0x18FD0) 	
00000223	40.01482010	[3980] Faces: 42282        pointer=0x110 (0x2D8)        embedded string=0x18E18 (0x18FE0) 	
00000224	40.01493454	[3980] Objects: 55        pointer=0x114 (0x2DC)        embedded string=0x18E28 (0x18FF0) 	
00000225	40.01503754	[3980] Shapes: 0        pointer=0x118 (0x2E0)        embedded string=0x18E34 (0x18FFC) 	
00000226	40.01516724	[3980] Lights: 0        pointer=0x11C (0x2E4)        embedded string=0x18E40 (0x19008) 	
00000227	40.01528931	[3980] Cameras: 0        pointer=0x120 (0x2E8)        embedded string=0x18E4C (0x19014) 	
00000228	40.01540375	[3980] Helpers: 42        pointer=0x124 (0x2EC)        embedded string=0x18E58 (0x19020) 	
00000229	40.01554489	[3980] Space Warps: 0        pointer=0x128 (0x2F0)        embedded string=0x18E64 (0x1902C) 	
00000230	40.01565552	[3980] Total: 97        pointer=0x12C (0x2F4)        embedded string=0x18E74 (0x1903C) 	
00000231	40.01578522	[3980] 3ds Max 2008        pointer=0x130 (0x2F8)        embedded string=0x18E80 (0x19048) 	
00000232	40.01590729	[3980] 3ds Max 2008        pointer=0x134 (0x2FC)        embedded string=0x18E80 (0x19048) 	
00000233	40.01604080	[3980] 3ds Max 2008        pointer=0x138 (0x300)        embedded string=0x18E80 (0x19048) 	
00000234	40.01616287	[3980] 3ds Max 2008        pointer=0x13C (0x304)        embedded string=0x18E80 (0x19048) 	
00000235	40.01631165	[3980] ship_T04.dds        pointer=0x140 (0x308)        embedded string=0x18E90 (0x19058) 	
00000236	40.01645279	[3980] NBB_Nelson_AO02.dds        pointer=0x144 (0x30C)        embedded string=0x18EA0 (0x19068) 	
00000237	40.01657867	[3980] ship_N04.DDS        pointer=0x148 (0x310)        embedded string=0x18EB4 (0x1907C) 	
00000238	40.01672745	[3980] ship_hull_T03.dds        pointer=0x14C (0x314)        embedded string=0x18EC4 (0x1908C) 	
00000239	40.01688766	[3980] NBB_Nelson_AO02.dds        pointer=0x150 (0x318)        embedded string=0x18EA0 (0x19068) 	
00000240	40.01704788	[3980] ship_hull_N02.dds        pointer=0x154 (0x31C)        embedded string=0x18ED8 (0x190A0) 	
00000241	40.01719666	[3980] Boats_texture.dds        pointer=0x158 (0x320)        embedded string=0x18EEC (0x190B4) 	
00000242	40.01731873	[3980] boats_ao.dds        pointer=0x15C (0x324)        embedded string=0x18F00 (0x190C8) 	
00000243	40.01746750	[3980] Boats_normal.dds        pointer=0x160 (0x328)        embedded string=0x18F10 (0x190D8) 	
00000244	40.01759720	[3980] icicles.dds        pointer=0x164 (0x32C)        embedded string=0x18F24 (0x190EC) 	
00000245	40.01771164	[3980] icicles.dds        pointer=0x168 (0x330)        embedded string=0x18F24 (0x190EC) 	
00000246	40.01784897	[3980] icicles_n.dds        pointer=0x16C (0x334)        embedded string=0x18F30 (0x190F8) 	
00000247	40.01796722	[3980] NBB_Nelson        pointer=0x170 (0x338)        embedded string=0x18F40 (0x19108) 	
00000248	40.01810837	[3980] NBB_Nelson_hull        pointer=0x174 (0x33C)        embedded string=0x18F4C (0x19114) 	
00000249	40.01833725	[3980] Reflect_NBB_Nelson_hull        pointer=0x178 (0x340)        embedded string=0x18F5C (0x19124) 	
00000250	40.01847076	[3980] NBB_Nelson_propeller01        pointer=0x17C (0x344)        embedded string=0x18F74 (0x1913C) 	
00000251	40.01868439	[3980] DMG_Col_NBB_Nelson_propeller01        pointer=0x180 (0x348)        embedded string=0x18F8C (0x19154) 	
00000252	40.01888275	[3980] aud_propeller01_NBB_Nelson        pointer=0x184 (0x34C)        embedded string=0x18FAC (0x19174) 	
00000253	40.01905823	[3980] NBB_Nelson_propeller02        pointer=0x188 (0x350)        embedded string=0x18FC8 (0x19190) 	
00000254	40.01927185	[3980] DMG_Col_NBB_Nelson_propeller02        pointer=0x18C (0x354)        embedded string=0x18FE0 (0x191A8) 	
00000255	40.01947021	[3980] aud_propeller02_NBB_Nelson        pointer=0x190 (0x358)        embedded string=0x19000 (0x191C8) 	
00000256	40.01961899	[3980] NBB_Nelson_siajB        pointer=0x194 (0x35C)        embedded string=0x1901C (0x191E4) 	
00000257	40.01977158	[3980] NBB_Nelson_siajF        pointer=0x198 (0x360)        embedded string=0x19030 (0x191F8) 	
00000258	40.01991653	[3980] NBB_Nelson_siajF2        pointer=0x19C (0x364)        embedded string=0x19044 (0x1920C) 	
00000259	40.02007675	[3980] cfg#FLG_NBB_Nelson        pointer=0x1A0 (0x368)        embedded string=0x19058 (0x19220) 	
00000260	40.02022552	[3980] NBB_Nelson_rudder        pointer=0x1A4 (0x36C)        embedded string=0x1906C (0x19234) 	
00000261	40.02041626	[3980] DMG_Col_NBB_Nelson_rudder        pointer=0x1A8 (0x370)        embedded string=0x19080 (0x19248) 	
00000262	40.02057648	[3980] cfg#M01_NBB_Nelson        pointer=0x1AC (0x374)        embedded string=0x1909C (0x19264) 	
00000263	40.02116776	[3980] cfg#M02_NBB_Nelson        pointer=0x1B0 (0x378)        embedded string=0x190B0 (0x19278) 	
00000264	40.02140045	[3980] cfg#M03_NBB_Nelson        pointer=0x1B4 (0x37C)        embedded string=0x190C4 (0x1928C) 	
00000265	40.02157974	[3980] cfg#S01_NBB_Nelson        pointer=0x1B8 (0x380)        embedded string=0x190D8 (0x192A0) 	
00000266	40.02175522	[3980] cfg#S02_NBB_Nelson        pointer=0x1BC (0x384)        embedded string=0x190EC (0x192B4) 	
00000267	40.02193069	[3980] cfg#S03_NBB_Nelson        pointer=0x1C0 (0x388)        embedded string=0x19100 (0x192C8) 	
00000268	40.02210236	[3980] cfg#S04_NBB_Nelson        pointer=0x1C4 (0x38C)        embedded string=0x19114 (0x192DC) 	
00000269	40.02228928	[3980] cfg#S05_NBB_Nelson        pointer=0x1C8 (0x390)        embedded string=0x19128 (0x192F0) 	
00000270	40.02233887	[3980] cfg#S06_NBB_Nelson        pointer=0x1CC (0x394)        embedded string=0x1913C (0x19304) 	
00000271	40.02250290	[3980] cfg#S07_NBB_Nelson        pointer=0x1D0 (0x398)        embedded string=0x19150 (0x19318) 	
00000272	40.02267075	[3980] cfg#S08_NBB_Nelson        pointer=0x1D4 (0x39C)        embedded string=0x19164 (0x1932C) 	
00000273	40.02282333	[3980] cfg#S09_NBB_Nelson        pointer=0x1D8 (0x3A0)        embedded string=0x19178 (0x19340) 	
00000274	40.02297592	[3980] cfg#S10_NBB_Nelson        pointer=0x1DC (0x3A4)        embedded string=0x1918C (0x19354) 	
00000275	40.02312851	[3980] cfg#S11_NBB_Nelson        pointer=0x1E0 (0x3A8)        embedded string=0x191A0 (0x19368) 	
00000276	40.02329636	[3980] cfg#S12_NBB_Nelson        pointer=0x1E4 (0x3AC)        embedded string=0x191B4 (0x1937C) 	
00000277	40.02343369	[3980] cfg#A01_NBB_Nelson        pointer=0x1E8 (0x3B0)        embedded string=0x191C8 (0x19390) 	
00000278	40.02361679	[3980] cfg#A02_NBB_Nelson        pointer=0x1EC (0x3B4)        embedded string=0x191DC (0x193A4) 	
00000279	40.02375412	[3980] cfg#A03_NBB_Nelson        pointer=0x1F0 (0x3B8)        embedded string=0x191F0 (0x193B8) 	
00000280	40.02391434	[3980] cfg#A04_NBB_Nelson        pointer=0x1F4 (0x3BC)        embedded string=0x19204 (0x193CC) 	
00000281	40.02406693	[3980] cfg#A05_NBB_Nelson        pointer=0x1F8 (0x3C0)        embedded string=0x19218 (0x193E0) 	
00000282	40.02421951	[3980] cfg#A06_NBB_Nelson        pointer=0x1FC (0x3C4)        embedded string=0x1922C (0x193F4) 	
00000283	40.08617020	[3980] cfg#L01_NBB_Nelson        pointer=0x200 (0x3C8)        embedded string=0x19240 (0x19408) 	
00000284	40.09091568	[3980] cfg#L02_NBB_Nelson        pointer=0x204 (0x3CC)        embedded string=0x19254 (0x1941C) 	
00000285	40.09514999	[3980] cfg#L03_NBB_Nelson        pointer=0x208 (0x3D0)        embedded string=0x19268 (0x19430) 	
00000286	40.09864426	[3980] cfg#L04_NBB_Nelson        pointer=0x20C (0x3D4)        embedded string=0x1927C (0x19444) 	
00000287	40.10206604	[3980] aud_engine_NBB_Nelson        pointer=0x210 (0x3D8)        embedded string=0x19290 (0x19458) 	
00000288	40.10541534	[3980] NBB_Nelson_shipWake        pointer=0x214 (0x3DC)        embedded string=0x192A8 (0x19470) 	
00000289	40.11172104	[3980] cfg#R01_NBB_Nelson        pointer=0x218 (0x3E0)        embedded string=0x192BC (0x19484) 	
00000290	40.11514664	[3980] cfg#R01_NBB_Nelson        pointer=0x21C (0x3E4)        embedded string=0x192BC (0x19484) 	
00000291	40.11862946	[3980] cfg#O01_NBB_Nelson        pointer=0x220 (0x3E8)        embedded string=0x192D0 (0x19498) 	
00000292	40.12195969	[3980] NBB_Nelson_boat01        pointer=0x224 (0x3EC)        embedded string=0x192E4 (0x194AC) 	
00000293	40.12839508	[3980] DMG_Col_NBB_Nelson_boat01        pointer=0x228 (0x3F0)        embedded string=0x192F8 (0x194C0) 	
00000294	40.13179398	[3980] NBB_Nelson_boat02        pointer=0x22C (0x3F4)        embedded string=0x19314 (0x194DC) 	
00000295	40.13521576	[3980] DMG_Col_NBB_Nelson_boat02        pointer=0x230 (0x3F8)        embedded string=0x19328 (0x194F0) 	
00000296	40.13859558	[3980] NBB_Nelson_boat03        pointer=0x234 (0x3FC)        embedded string=0x19344 (0x1950C) 	
00000297	40.14508438	[3980] DMG_Col_NBB_Nelson_boat03        pointer=0x238 (0x400)        embedded string=0x19358 (0x19520) 	
00000298	40.14850998	[3980] NBB_Nelson_boat04        pointer=0x23C (0x404)        embedded string=0x19374 (0x1953C) 	
00000299	40.15200043	[3980] DMG_Col_NBB_Nelson_boat04        pointer=0x240 (0x408)        embedded string=0x19388 (0x19550) 	
00000300	40.15533447	[3980] NBB_Nelson_boat05        pointer=0x244 (0x40C)        embedded string=0x193A4 (0x1956C) 	
00000301	40.16191864	[3980] DMG_Col_NBB_Nelson_boat05        pointer=0x248 (0x410)        embedded string=0x193B8 (0x19580) 	
00000302	40.16535950	[3980] NBB_Nelson_boat06        pointer=0x24C (0x414)        embedded string=0x193D4 (0x1959C) 	
00000303	40.16908264	[3980] DMG_Col_NBB_Nelson_boat06        pointer=0x250 (0x418)        embedded string=0x193E8 (0x195B0) 	
00000304	40.17233658	[3980] NBB_Nelson_boat07        pointer=0x254 (0x41C)        embedded string=0x19404 (0x195CC) 	
00000305	40.17957687	[3980] DMG_Col_NBB_Nelson_boat07        pointer=0x258 (0x420)        embedded string=0x19418 (0x195E0) 	
00000306	40.18309021	[3980] NBB_Nelson_boat08        pointer=0x25C (0x424)        embedded string=0x19434 (0x195FC) 	
00000307	40.18925476	[3980] DMG_Col_NBB_Nelson_boat08        pointer=0x260 (0x428)        embedded string=0x19448 (0x19610) 	
00000308	40.18950272	[3980] NBB_Nelson_boat09        pointer=0x264 (0x42C)        embedded string=0x19464 (0x1962C) 	
00000309	40.18961716	[3980] DMG_Col_NBB_Nelson_boat09        pointer=0x268 (0x430)        embedded string=0x19478 (0x19640) 	
00000310	40.18974686	[3980] NBB_Nelson_boat10        pointer=0x26C (0x434)        embedded string=0x19494 (0x1965C) 	
00000311	40.18985748	[3980] DMG_Col_NBB_Nelson_boat10        pointer=0x270 (0x438)        embedded string=0x194A8 (0x19670) 	
00000312	40.18998337	[3980] NBB_Nelson_boat11        pointer=0x274 (0x43C)        embedded string=0x194C4 (0x1968C) 	
00000313	40.19010925	[3980] DMG_Col_NBB_Nelson_boat11        pointer=0x278 (0x440)        embedded string=0x194D8 (0x196A0) 	
00000314	40.19020844	[3980] DMG_Col_NBB_Nelson_hull        pointer=0x27C (0x444)        embedded string=0x194F4 (0x196BC) 	
00000315	40.19033051	[3980] NBB_Nelson_mast        pointer=0x280 (0x448)        embedded string=0x1950C (0x196D4) 	
00000316	40.19045639	[3980] DMG_Col_NBB_Nelson_mast        pointer=0x284 (0x44C)        embedded string=0x1951C (0x196E4) 	
00000317	40.19054031	[3980] Reflect_NBB_Nelson_mast        pointer=0x288 (0x450)        embedded string=0x19534 (0x196FC) 	
00000318	40.19065094	[3980] _Ice_mast        pointer=0x28C (0x454)        embedded string=0x1954C (0x19714) 	
00000319	40.19074631	[3980] NBB_Nelson_cables01        pointer=0x290 (0x458)        embedded string=0x19558 (0x19720) 	
00000320	40.19084930	[3980] _Ice_cables01        pointer=0x294 (0x45C)        embedded string=0x1956C (0x19734) 	
00000321	40.19095993	[3980] NBB_Nelson_cabin        pointer=0x298 (0x460)        embedded string=0x1957C (0x19744) 	
00000322	40.19107437	[3980] cfg#H01_NBB_Nelson        pointer=0x29C (0x464)        embedded string=0x19590 (0x19758) 	
00000323	40.19118500	[3980] cfg#N01_NBB_Nelson        pointer=0x2A0 (0x468)        embedded string=0x195A4 (0x1976C) 	
00000324	40.19129944	[3980] cfg#C01_NBB_Nelson        pointer=0x2A4 (0x46C)        embedded string=0x195B8 (0x19780) 	
00000325	40.19142532	[3980] cfg#D01_NBB_Nelson        pointer=0x2A8 (0x470)        embedded string=0x195CC (0x19794) 	
00000326	40.19155121	[3980] DMG_Col_NBB_Nelson_cabin        pointer=0x2AC (0x474)        embedded string=0x195E0 (0x197A8) 	
00000327	40.19164276	[3980] Reflect_NBB_Nelson_cabin        pointer=0x2B0 (0x478)        embedded string=0x195FC (0x197C4) 	
00000328	40.19174576	[3980] _Ice_cabin        pointer=0x2B4 (0x47C)        embedded string=0x19618 (0x197E0) 	
00000329	40.19187546	[3980] NBB_Nelson_crane        pointer=0x2B8 (0x480)        embedded string=0x19624 (0x197EC) 	
00000330	40.19198990	[3980] DMG_Col_NBB_Nelson_crane        pointer=0x2BC (0x484)        embedded string=0x19638 (0x19800) 	
00000331	40.19212723	[3980] NBB_Nelson_funnel01        pointer=0x2C0 (0x488)        embedded string=0x19654 (0x1981C) 	
00000332	40.19225693	[3980] DMG_Col_NBB_Nelson_funnel01        pointer=0x2C4 (0x48C)        embedded string=0x19668 (0x19830) 	
00000333	40.19237518	[3980] Reflect_NBB_Nelson_funnel        pointer=0x2C8 (0x490)        embedded string=0x19684 (0x1984C) 	
00000334	40.19245911	[3980] aud_fore_NBB_Nelson        pointer=0x2CC (0x494)        embedded string=0x196A0 (0x19868) 	
00000335	40.19257736	[3980] _Ice_hull        pointer=0x2D0 (0x498)        embedded string=0x196B4 (0x1987C) 	
00000336	40.19270325	[3980] LNK@1x10_version01#01        pointer=0x2D4 (0x49C)        embedded string=0x196C0 (0x19888) 	
00000337	40.19283295	[3980] LNK@1x1_version01#01        pointer=0x2D8 (0x4A0)        embedded string=0x196D8 (0x198A0) 	
00000338	40.19295120	[3980] LNK@1x10x6_version01#01        pointer=0x2DC (0x4A4)        embedded string=0x196F0 (0x198B8) 	
00000339	40.19307327	[3980] LNK@1x20_version01#01        pointer=0x2E0 (0x4A8)        embedded string=0x19708 (0x198D0) 	
00000340	40.19318771	[3980] LNK@1x50_version01#01        pointer=0x2E4 (0x4AC)        embedded string=0x19720 (0x198E8) 	
00000341	40.19341660	[3980] LNK@2x2_version01#01        pointer=0x2E8 (0x4B0)        embedded string=0x19738 (0x19900) 	
00000342	40.19353485	[3980] LNK@1x20x10_version01#01        pointer=0x2EC (0x4B4)        embedded string=0x19750 (0x19918) 	
00000343	40.19362259	[3980] LNK@1x1_version01#02        pointer=0x2F0 (0x4B8)        embedded string=0x1976C (0x19934) 	
00000344	40.19368744	[3980] NBB_Nelson        pointer=0x2F4 (0x4BC)        embedded string=0x18F40 (0x19108) 	
00000345	40.19376373	[3980] DMG        pointer=0x2F8 (0x4C0)        embedded string=0x19784 (0x1994C) 	
00000346	40.19384766	[3980] Boats        pointer=0x2FC (0x4C4)        embedded string=0x19788 (0x19950) 	
00000347	40.19397736	[3980] AO        pointer=0x300 (0x4C8)        embedded string=0x19790 (0x19958) 	
00000348	40.21617889	[3980] Diffuse        pointer=0x304 (0x4CC)        embedded string=0x19794 (0x1995C) 	
00000349	40.24828339	[3980] Ice        pointer=0x308 (0x4D0)        embedded string=0x1979C (0x19964) 	
00000350	40.25246429	[3980] Standard_3        pointer=0x30C (0x4D4)        embedded string=0x197A0 (0x19968) 	
00000351	40.25704575	[3980] CustAttribContainer.dlo        pointer=0x310 (0x4D8)        embedded string=0x197AC (0x19974) 	
00000352	40.26086044	[3980] ViewportManager.gup        pointer=0x314 (0x4DC)        embedded string=0x197C4 (0x1998C) 	
00000353	40.26507568	[3980] mrMaterialAttribs.gup        pointer=0x318 (0x4E0)        embedded string=0x197D8 (0x199A0) 	
00000354	40.26905823	[3980] mtlgen.dlt        pointer=0x31C (0x4E4)        embedded string=0x197F0 (0x199B8) 	
00000355	40.27348328	[3980] mtl.dlt        pointer=0x320 (0x4E8)        embedded string=0x197FC (0x199C4) 	
00000356	40.27721786	[3980] normalrender.dlt        pointer=0x324 (0x4EC)        embedded string=0x19804 (0x199CC) 	
00000357	40.27988052	[3980] samplers.dlh        pointer=0x328 (0x4F0)        embedded string=0x19818 (0x199E0) 	
00000358	40.28190994	[3980] ctrl.dlc        pointer=0x32C (0x4F4)        embedded string=0x19828 (0x199F0) 	
00000359	40.28390121	[3980] EPoly.dlo        pointer=0x330 (0x4F8)        embedded string=0x19834 (0x199FC) 	
00000360	40.28589249	[3980] kernel.dlk        pointer=0x334 (0x4FC)        embedded string=0x19840 (0x19A08) 	
00000361	40.28810501	[3980] rend.dlr        pointer=0x338 (0x500)        embedded string=0x1984C (0x19A14) 	
00000362	40.29000092	[3980] Ac*******s.dlu        pointer=0x33C (0x504)        embedded string=0x19858 (0x19A20) 	
00000363	40.29175949	[3980] InstanceMgr.dlu        pointer=0x340 (0x508)        embedded string=0x19868 (0x19A30) 	
00000364	40.29397202	[3980] biped.dlc        pointer=0x344 (0x50C)        embedded string=0x19878 (0x19A40) 	
00000365	40.29600525	[3980] reactor.dlc        pointer=0x348 (0x510)        embedded string=0x19884 (0x19A4C) 	
00000366	40.29837036	[3980] ParamEditor.gup        pointer=0x34C (0x514)        embedded string=0x19890 (0x19A58) 	
00000367	40.30043030	[3980] BitmapProxies.dlu        pointer=0x350 (0x518)        embedded string=0x198A0 (0x19A68) 	
00000368	40.30244827	[3980] SceneEffectLoader.dlu        pointer=0x354 (0x51C)        embedded string=0x198B4 (0x19A7C) 	
00000369	40.30489731	[3980] User Name=CRus        pointer=0x358 (0x520)        embedded string=0x198CC (0x19A94) 	
00000370	40.30683136	[3980] Computer Name=BUC-WKS-PR110        pointer=0x35C (0x524)        embedded string=0x198DC (0x19AA4) 	
00000371	40.30878830	[3980] Render Width=640        pointer=0x360 (0x528)        embedded string=0x198F8 (0x19AC0) 	
00000372	40.31040573	[3980] Render Height=480        pointer=0x364 (0x52C)        embedded string=0x1990C (0x19AD4) 	
00000373	40.31200409	[3980] Render Aspect=1.00        pointer=0x368 (0x530)        embedded string=0x19920 (0x19AE8) 	
00000374	40.31361389	[3980] Renderer ClassIDA=1        pointer=0x36C (0x534)        embedded string=0x19934 (0x19AFC) 	
00000375	40.31521988	[3980] Renderer ClassIDB=0        pointer=0x370 (0x538)        embedded string=0x19948 (0x19B10) 	
00000376	40.31684875	[3980] Renderer Name=Default Scanline Renderer        pointer=0x374 (0x53C)        embedded string=0x1995C (0x19B24) 	
00000377	40.31846619	[3980] Animation Start=0        pointer=0x378 (0x540)        embedded string=0x19984 (0x19B4C) 	
00000378	40.32026672	[3980] Animation End=0        pointer=0x37C (0x544)        embedded string=0x19998 (0x19B60) 	
00000379	40.32186890	[3980] Render Flags=32        pointer=0x380 (0x548)        embedded string=0x199A8 (0x19B70) 	
00000380	40.32349396	[3980] Scene Flags=57032        pointer=0x384 (0x54C)        embedded string=0x199B8 (0x19B80) 	
00000381	40.32505417	[3980] RenderElements=1        pointer=0x388 (0x550)        embedded string=0x199CC (0x19B94) 	
00000382	40.32667923	[3980]         pointer=0xBC (0x284)        embedded string=0x100 (0x2C8) 	
00000383	40.32827377	[3980]         pointer=0xA8 (0x270)        embedded string=0xB4 (0x27C) 	
00000384	40.32991791	[3980] BB barci        pointer=0x38C (0x554)        embedded string=0x199E0 (0x19BA8) 	
00000385	40.33156586	[3980] DMG_Col_NBB_Nelson_boat07        pointer=0x3BC (0x584)        embedded string=0x19418 (0x195E0) 	
00000386	40.33313370	[3980] DMG_Col_NBB_Nelson_boat02        pointer=0x3C0 (0x588)        embedded string=0x19328 (0x194F0) 	
00000387	40.33494186	[3980] DMG_Col_NBB_Nelson_boat06        pointer=0x3C4 (0x58C)        embedded string=0x193E8 (0x195B0) 	
00000388	40.33497238	[3980] DMG_Col_NBB_Nelson_boat04        pointer=0x3C8 (0x590)        embedded string=0x19388 (0x19550) 	
00000389	40.33520889	[3980] DMG_Col_NBB_Nelson_boat11        pointer=0x3CC (0x594)        embedded string=0x194D8 (0x196A0) 	
00000390	40.33548355	[3980] DMG_Col_NBB_Nelson_boat10        pointer=0x3D0 (0x598)        embedded string=0x194A8 (0x19670) 	
00000391	40.33557510	[3980] DMG_Col_NBB_Nelson_boat01        pointer=0x3D4 (0x59C)        embedded string=0x192F8 (0x194C0) 	
00000392	40.33570480	[3980] DMG_Col_NBB_Nelson_boat05        pointer=0x3D8 (0x5A0)        embedded string=0x193B8 (0x19580) 	
00000393	40.33583069	[3980] DMG_Col_NBB_Nelson_boat09        pointer=0x3DC (0x5A4)        embedded string=0x19478 (0x19640) 	
00000394	40.33594513	[3980] DMG_Col_NBB_Nelson_boat08        pointer=0x3E0 (0x5A8)        embedded string=0x19448 (0x19610) 	
00000395	40.33597946	[3980]         pointer=0x394 (0x55C)        embedded string=0x3BC (0x584) 	
00000396	40.33604813	[3980] BB        pointer=0x398 (0x560)        embedded string=0x199EC (0x19BB4) 	
00000397	40.33616638	[3980] DMG_Col_NBB_Nelson_rudder        pointer=0x3E4 (0x5AC)        embedded string=0x19080 (0x19248) 	
00000398	40.33628464	[3980] DMG_Col_NBB_Nelson_boat01        pointer=0x3E8 (0x5B0)        embedded string=0x192F8 (0x194C0) 	
00000399	40.33640289	[3980] DMG_Col_NBB_Nelson_boat02        pointer=0x3EC (0x5B4)        embedded string=0x19328 (0x194F0) 	
00000400	40.33652115	[3980] DMG_Col_NBB_Nelson_boat03        pointer=0x3F0 (0x5B8)        embedded string=0x19358 (0x19520) 	
00000401	40.33663940	[3980] DMG_Col_NBB_Nelson_boat04        pointer=0x3F4 (0x5BC)        embedded string=0x19388 (0x19550) 	
00000402	40.33675385	[3980] DMG_Col_NBB_Nelson_boat05        pointer=0x3F8 (0x5C0)        embedded string=0x193B8 (0x19580) 	
00000403	40.33686447	[3980] DMG_Col_NBB_Nelson_boat06        pointer=0x3FC (0x5C4)        embedded string=0x193E8 (0x195B0) 	
00000404	40.33698654	[3980] DMG_Col_NBB_Nelson_boat07        pointer=0x400 (0x5C8)        embedded string=0x19418 (0x195E0) 	
00000405	40.33710098	[3980] DMG_Col_NBB_Nelson_boat08        pointer=0x404 (0x5CC)        embedded string=0x19448 (0x19610) 	
00000406	40.33721542	[3980] DMG_Col_NBB_Nelson_boat09        pointer=0x408 (0x5D0)        embedded string=0x19478 (0x19640) 	
00000407	40.33766556	[3980] DMG_Col_NBB_Nelson_boat10        pointer=0x40C (0x5D4)        embedded string=0x194A8 (0x19670) 	
00000408	40.33778763	[3980] DMG_Col_NBB_Nelson_boat11        pointer=0x410 (0x5D8)        embedded string=0x194D8 (0x196A0) 	
00000409	40.33792114	[3980] DMG_Col_NBB_Nelson_funnel01        pointer=0x414 (0x5DC)        embedded string=0x19668 (0x19830) 	
00000410	40.33803558	[3980] DMG_Col_NBB_Nelson_hull        pointer=0x418 (0x5E0)        embedded string=0x194F4 (0x196BC) 	
00000411	40.33814240	[3980] DMG_Col_NBB_Nelson_mast        pointer=0x41C (0x5E4)        embedded string=0x1951C (0x196E4) 	
00000412	40.33826828	[3980] DMG_Col_NBB_Nelson_propeller01        pointer=0x420 (0x5E8)        embedded string=0x18F8C (0x19154) 	
00000413	40.33841324	[3980] DMG_Col_NBB_Nelson_propeller02        pointer=0x424 (0x5EC)        embedded string=0x18FE0 (0x191A8) 	
00000414	40.33844376	[3980]         pointer=0x3A0 (0x568)        embedded string=0x3E4 (0x5AC) 	
00000415	40.33851242	[3980] B        pointer=0x3A4 (0x56C)        embedded string=0x199F0 (0x19BB8) 	
00000416	40.33862686	[3980] DMG_Col_NBB_Nelson_rudder        pointer=0x428 (0x5F0)        embedded string=0x19080 (0x19248) 	
00000417	40.33955002	[3980] DMG_Col_NBB_Nelson_boat01        pointer=0x42C (0x5F4)        embedded string=0x192F8 (0x194C0) 	
00000418	40.33967590	[3980] DMG_Col_NBB_Nelson_boat02        pointer=0x430 (0x5F8)        embedded string=0x19328 (0x194F0) 	
00000419	40.33979034	[3980] DMG_Col_NBB_Nelson_boat03        pointer=0x434 (0x5FC)        embedded string=0x19358 (0x19520) 	
00000420	40.33991241	[3980] DMG_Col_NBB_Nelson_boat04        pointer=0x438 (0x600)        embedded string=0x19388 (0x19550) 	
00000421	40.34002686	[3980] DMG_Col_NBB_Nelson_boat05        pointer=0x43C (0x604)        embedded string=0x193B8 (0x19580) 	
00000422	40.34012985	[3980] DMG_Col_NBB_Nelson_boat06        pointer=0x440 (0x608)        embedded string=0x193E8 (0x195B0) 	
00000423	40.34025955	[3980] DMG_Col_NBB_Nelson_boat07        pointer=0x444 (0x60C)        embedded string=0x19418 (0x195E0) 	
00000424	40.34037781	[3980] DMG_Col_NBB_Nelson_boat08        pointer=0x448 (0x610)        embedded string=0x19448 (0x19610) 	
00000425	40.34049225	[3980] DMG_Col_NBB_Nelson_boat09        pointer=0x44C (0x614)        embedded string=0x19478 (0x19640) 	
00000426	40.34059906	[3980] DMG_Col_NBB_Nelson_boat10        pointer=0x450 (0x618)        embedded string=0x194A8 (0x19670) 	
00000427	40.34072876	[3980] DMG_Col_NBB_Nelson_boat11        pointer=0x454 (0x61C)        embedded string=0x194D8 (0x196A0) 	
00000428	40.34084702	[3980] DMG_Col_NBB_Nelson_funnel01        pointer=0x458 (0x620)        embedded string=0x19668 (0x19830) 	
00000429	40.34095764	[3980] DMG_Col_NBB_Nelson_mast        pointer=0x45C (0x624)        embedded string=0x1951C (0x196E4) 	
00000430	40.34108353	[3980] DMG_Col_NBB_Nelson_propeller01        pointer=0x460 (0x628)        embedded string=0x18F8C (0x19154) 	
00000431	40.34122086	[3980] DMG_Col_NBB_Nelson_propeller02        pointer=0x464 (0x62C)        embedded string=0x18FE0 (0x191A8) 	
00000432	40.34132767	[3980] DMG_Col_NBB_Nelson_hull        pointer=0x468 (0x630)        embedded string=0x194F4 (0x196BC) 	
00000433	40.34144592	[3980] DMG_Col_NBB_Nelson_crane        pointer=0x46C (0x634)        embedded string=0x19638 (0x19800) 	
00000434	40.34155655	[3980] DMG_Col_NBB_Nelson_cabin        pointer=0x470 (0x638)        embedded string=0x195E0 (0x197A8) 	
00000435	40.34159470	[3980]         pointer=0x3AC (0x574)        embedded string=0x428 (0x5F0) 	
00000436	40.34165192	[3980] ref        pointer=0x3B0 (0x578)        embedded string=0x199F4 (0x19BBC) 	
00000437	40.34177017	[3980] Reflect_NBB_Nelson_cabin        pointer=0x474 (0x63C)        embedded string=0x195FC (0x197C4) 	
00000438	40.34188843	[3980] Reflect_NBB_Nelson_funnel        pointer=0x478 (0x640)        embedded string=0x19684 (0x1984C) 	
00000439	40.34199905	[3980] Reflect_NBB_Nelson_hull        pointer=0x47C (0x644)        embedded string=0x18F5C (0x19124) 	
00000440	40.34210587	[3980] Reflect_NBB_Nelson_mast        pointer=0x480 (0x648)        embedded string=0x19534 (0x196FC) 	
00000441	40.34214401	[3980]         pointer=0x3B8 (0x580)        embedded string=0x474 (0x63C) 	
00000442	40.34217453	[3980]         pointer=0xB0 (0x278)        embedded string=0x38C (0x554) 	
00000443	40.34221268	[3980]         pointer=0xA4 (0x26C)        embedded string=0xA8 (0x270) 	
00000444	40.34225464	[3980]         pointer=0x0 (0x1C8)        embedded string=0x5C (0x224) 	
00000445	40.34244919	[3980] Granny Standard Exporter, SDK version 2.8.30.0        pointer=0x484 (0x64C)        embedded string=0x199F8 (0x19BC0) 	
00000446	40.34247208	[3980]         pointer=0x4 (0x1CC)        embedded string=0x484 (0x64C) 	
00000447	40.34273529	[3980] E:\SilentHunter5\Versiune\GraficSources\Ships\NBB_Nelson\NBB_Nelson.max        pointer=0x8 (0x1D0)        embedded string=0x19A28 (0x19BF0) 	
00000448	40.34276199	[3980]         pointer=0x10 (0x1D8)        embedded string=0x4A0 (0x668) 	
00000449	40.34300613	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Ice\icicles_n.dds        pointer=0x4C8 (0x690)        embedded string=0x19A70 (0x19C38) 	
00000450	40.34303284	[3980]         pointer=0x4A0 (0x668)        embedded string=0x4C8 (0x690) 	
00000451	40.34327698	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Ice\icicles.dds        pointer=0x514 (0x6DC)        embedded string=0x19AB4 (0x19C7C) 	
00000452	40.34330750	[3980]         pointer=0x4A4 (0x66C)        embedded string=0x514 (0x6DC) 	
00000453	40.34356689	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Barci\Boats_normal.dds        pointer=0x560 (0x728)        embedded string=0x19AF4 (0x19CBC) 	
00000454	40.34359360	[3980]         pointer=0x4A8 (0x670)        embedded string=0x560 (0x728) 	
00000455	40.34384537	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Barci\boats_ao.dds        pointer=0x5AC (0x774)        embedded string=0x19B3C (0x19D04) 	
00000456	40.34387207	[3980]         pointer=0x4AC (0x674)        embedded string=0x5AC (0x774) 	
00000457	40.34413528	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Barci\Boats_texture.dds        pointer=0x5F8 (0x7C0)        embedded string=0x19B80 (0x19D48) 	
00000458	40.34416580	[3980]         pointer=0x4B0 (0x678)        embedded string=0x5F8 (0x7C0) 	
00000459	40.34443665	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Textures\ship_hull_N02.dds        pointer=0x644 (0x80C)        embedded string=0x19BC8 (0x19D90) 	
00000460	40.34446716	[3980]         pointer=0x4B4 (0x67C)        embedded string=0x644 (0x80C) 	
00000461	40.34474182	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Textures\ship_hull_T03.dds        pointer=0x690 (0x858)        embedded string=0x19C14 (0x19DDC) 	
00000462	40.34476852	[3980]         pointer=0x4B8 (0x680)        embedded string=0x690 (0x858) 	
00000463	40.34502411	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Textures\ship_N04.DDS        pointer=0x6DC (0x8A4)        embedded string=0x19C60 (0x19E28) 	
00000464	40.34505463	[3980]         pointer=0x4BC (0x684)        embedded string=0x6DC (0x8A4) 	
00000465	40.34532928	[3980] E:\SilentHunter5\Versiune\GraficSources\Ships\NBB_Nelson\NBB_Nelson_AO02.dds        pointer=0x728 (0x8F0)        embedded string=0x19CA8 (0x19E70) 	
00000466	40.34536362	[3980]         pointer=0x4C0 (0x688)        embedded string=0x728 (0x8F0) 	
00000467	40.34561920	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Textures\ship_T04.dds        pointer=0x774 (0x93C)        embedded string=0x19CF8 (0x19EC0) 	
00000468	40.34564590	[3980]         pointer=0x4C4 (0x68C)        embedded string=0x774 (0x93C) 	
00000469	40.34568787	[3980]         pointer=0x18 (0x1E0)        embedded string=0x7C0 (0x988) 	
00000470	40.34577560	[3980] Standard_3        pointer=0x814 (0x9DC)        embedded string=0x197A0 (0x19968) 	
00000471	40.34579086	[3980]         pointer=0x824 (0x9EC)        embedded string=0x3C0 (0x588) 	
00000472	40.34586334	[3980] Blinn        pointer=0x840 (0xA08)        embedded string=0x1A25C (0x1A424) 	
00000473	40.34594727	[3980] Max 2.5 Star        pointer=0x894 (0xA5C)        embedded string=0x1A264 (0x1A42C) 	
00000474	40.34597397	[3980]         pointer=0x8A8 (0xA70)        embedded string=0x914 (0xADC) 	
00000475	40.34601212	[3980]         pointer=0x8B0 (0xA78)        embedded string=0x974 (0xB3C) 	
00000476	40.34605408	[3980]         pointer=0x9E0 (0xBA8)        embedded string=0x1A274 (0x1A43C) 	
00000477	40.34609222	[3980]         pointer=0x8C4 (0xA8C)        embedded string=0x9D4 (0xB9C) 	
00000478	40.34613037	[3980]         pointer=0x8C8 (0xA90)        embedded string=0x9E4 (0xBAC) 	
00000479	40.34621429	[3980] Standard        pointer=0x8CC (0xA94)        embedded string=0x1A278 (0x1A440) 	
00000480	40.34624100	[3980]         pointer=0x828 (0x9F0)        embedded string=0x82C (0x9F4) 	
00000481	40.34627914	[3980]         pointer=0x7C0 (0x988)        embedded string=0x814 (0x9DC) 	
00000482	40.34635544	[3980] Map #8        pointer=0xA54 (0xC1C)        embedded string=0x1A284 (0x1A44C) 	
00000483	40.34638214	[3980]         pointer=0xA60 (0xC28)        embedded string=0x4C8 (0x690) 	
00000484	40.34641647	[3980]         pointer=0xA64 (0xC2C)        embedded string=0xE60 (0x1028) 	
00000485	40.34666061	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Ice\icicles_n.dds        pointer=0xAA0 (0xC68)        embedded string=0x19A70 (0x19C38) 	
00000486	40.34689331	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Ice\icicles_n.dds        pointer=0xAA4 (0xC6C)        embedded string=0x19A70 (0x19C38) 	
00000487	40.34694290	[3980] Bitmap        pointer=0xAB8 (0xC80)        embedded string=0x1A438 (0x1A600) 	
00000488	40.34698105	[3980]         pointer=0xA68 (0xC30)        embedded string=0xA6C (0xC34) 	
00000489	40.34702301	[3980]         pointer=0x7C4 (0x98C)        embedded string=0xA54 (0xC1C) 	
00000490	40.34709167	[3980] Opac        pointer=0xB18 (0xCE0)        embedded string=0x1A440 (0x1A608) 	
00000491	40.34711838	[3980]         pointer=0xB24 (0xCEC)        embedded string=0x514 (0x6DC) 	
00000492	40.34715271	[3980]         pointer=0xB28 (0xCF0)        embedded string=0xE60 (0x1028) 	
00000493	40.34738922	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Ice\icicles.dds        pointer=0xB64 (0xD2C)        embedded string=0x19AB4 (0x19C7C) 	
00000494	40.34761810	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Ice\icicles.dds        pointer=0xB68 (0xD30)        embedded string=0x19AB4 (0x19C7C) 	
00000495	40.34766769	[3980] Bitmap        pointer=0xB7C (0xD44)        embedded string=0x1A438 (0x1A600) 	
00000496	40.34770584	[3980]         pointer=0xB2C (0xCF4)        embedded string=0xB30 (0xCF8) 	
00000497	40.34774399	[3980]         pointer=0x7C8 (0x990)        embedded string=0xB18 (0xCE0) 	
00000498	40.34781265	[3980] Ice        pointer=0xBDC (0xDA4)        embedded string=0x1979C (0x19964) 	
00000499	40.34783936	[3980]         pointer=0xBE8 (0xDB0)        embedded string=0x514 (0x6DC) 	
00000500	40.34786987	[3980]         pointer=0xBEC (0xDB4)        embedded string=0xE60 (0x1028) 	
00000501	40.34811020	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Ice\icicles.dds        pointer=0xC28 (0xDF0)        embedded string=0x19AB4 (0x19C7C) 	
00000502	40.34833145	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Ice\icicles.dds        pointer=0xC2C (0xDF4)        embedded string=0x19AB4 (0x19C7C) 	
00000503	40.34838486	[3980] Bitmap        pointer=0xC40 (0xE08)        embedded string=0x1A438 (0x1A600) 	
00000504	40.34842300	[3980]         pointer=0xBF0 (0xDB8)        embedded string=0xBF4 (0xDBC) 	
00000505	40.34846115	[3980]         pointer=0x7CC (0x994)        embedded string=0xBDC (0xDA4) 	
00000506	40.34852982	[3980] Ice        pointer=0xCA0 (0xE68)        embedded string=0x1979C (0x19964) 	
00000507	40.34860229	[3980] Diffuse Color        pointer=0xCB8 (0xE80)        embedded string=0x1A1C8 (0x1A390) 	
00000508	40.34864044	[3980]         pointer=0xCBC (0xE84)        embedded string=0xBDC (0xDA4) 	
00000509	40.34872055	[3980] Opacity        pointer=0xCC0 (0xE88)        embedded string=0x19D90 (0x19F58) 	
00000510	40.34874725	[3980]         pointer=0xCC4 (0xE8C)        embedded string=0xB18 (0xCE0) 	
00000511	40.34881592	[3980] Bump        pointer=0xCC8 (0xE90)        embedded string=0x1A448 (0x1A610) 	
00000512	40.34884262	[3980]         pointer=0xCCC (0xE94)        embedded string=0xA54 (0xC1C) 	
00000513	40.34888077	[3980]         pointer=0xCA8 (0xE70)        embedded string=0xCB8 (0xE80) 	
00000514	40.34891129	[3980]         pointer=0xCB0 (0xE78)        embedded string=0x3C0 (0x588) 	
00000515	40.34898376	[3980] Blinn        pointer=0xCE4 (0xEAC)        embedded string=0x1A25C (0x1A424) 	
00000516	40.34905243	[3980] Max 2.5 Star        pointer=0xD38 (0xF00)        embedded string=0x1A264 (0x1A42C) 	
00000517	40.34909058	[3980]         pointer=0xD4C (0xF14)        embedded string=0xDB8 (0xF80) 	
00000518	40.34913254	[3980]         pointer=0xD54 (0xF1C)        embedded string=0xE18 (0xFE0) 	
00000519	40.34917068	[3980]         pointer=0xE84 (0x104C)        embedded string=0x1A274 (0x1A43C) 	
00000520	40.34921265	[3980]         pointer=0xD68 (0xF30)        embedded string=0xE78 (0x1040) 	
00000521	40.34924698	[3980]         pointer=0xD6C (0xF34)        embedded string=0xE88 (0x1050) 	
00000522	40.34931946	[3980] Standard        pointer=0xD70 (0xF38)        embedded string=0x1A278 (0x1A440) 	
00000523	40.34935760	[3980]         pointer=0xCB4 (0xE7C)        embedded string=0xCD0 (0xE98) 	
00000524	40.34939575	[3980]         pointer=0x7D0 (0x998)        embedded string=0xCA0 (0xE68) 	
00000525	40.34947205	[3980] Map #7        pointer=0xEF8 (0x10C0)        embedded string=0x1A450 (0x1A618) 	
00000526	40.34949875	[3980]         pointer=0xF04 (0x10CC)        embedded string=0x560 (0x728) 	
00000527	40.34952927	[3980]         pointer=0xF08 (0x10D0)        embedded string=0xE60 (0x1028) 	
00000528	40.34978867	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Barci\Boats_normal.dds        pointer=0xF44 (0x110C)        embedded string=0x19AF4 (0x19CBC) 	
00000529	40.35004044	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Barci\Boats_normal.dds        pointer=0xF48 (0x1110)        embedded string=0x19AF4 (0x19CBC) 	
00000530	40.35009003	[3980] Bitmap        pointer=0xF5C (0x1124)        embedded string=0x1A438 (0x1A600) 	
00000531	40.35012817	[3980]         pointer=0xF0C (0x10D4)        embedded string=0xF10 (0x10D8) 	
00000532	40.35016632	[3980]         pointer=0x7D4 (0x99C)        embedded string=0xEF8 (0x10C0) 	
00000533	40.35025024	[3980] Boats_tex        pointer=0xFBC (0x1184)        embedded string=0x1A458 (0x1A620) 	
00000534	40.35038376	[3980] Additional Bumpmap        pointer=0xFD4 (0x119C)        embedded string=0x1A464 (0x1A62C) 	
00000535	40.35040665	[3980]         pointer=0xFD8 (0x11A0)        embedded string=0xEF8 (0x10C0) 	
00000536	40.35056686	[3980]         pointer=0xFC4 (0x118C)        embedded string=0xFD4 (0x119C) 	
00000537	40.35059357	[3980]         pointer=0xFCC (0x1194)        embedded string=0x12A0 (0x1468) 	
00000538	40.35069656	[3980] Normal Bump        pointer=0xFFC (0x11C4)        embedded string=0x1A4D4 (0x1A69C) 	
00000539	40.35072327	[3980]         pointer=0xFD0 (0x1198)        embedded string=0xFDC (0x11A4) 	
00000540	40.35076141	[3980]         pointer=0x7D8 (0x9A0)        embedded string=0xFBC (0x1184) 	
00000541	40.35083771	[3980] Map #5        pointer=0x1000 (0x11C8)        embedded string=0x1A4E0 (0x1A6A8) 	
00000542	40.35086441	[3980]         pointer=0x100C (0x11D4)        embedded string=0x5AC (0x774) 	
00000543	40.35089874	[3980]         pointer=0x1010 (0x11D8)        embedded string=0xE60 (0x1028) 	
00000544	40.35114670	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Barci\boats_ao.dds        pointer=0x104C (0x1214)        embedded string=0x19B3C (0x19D04) 	
00000545	40.35138702	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Barci\boats_ao.dds        pointer=0x1050 (0x1218)        embedded string=0x19B3C (0x19D04) 	
00000546	40.35143661	[3980] Bitmap        pointer=0x1064 (0x122C)        embedded string=0x1A438 (0x1A600) 	
00000547	40.35147476	[3980]         pointer=0x1014 (0x11DC)        embedded string=0x1018 (0x11E0) 	
00000548	40.35151672	[3980]         pointer=0x7DC (0x9A4)        embedded string=0x1000 (0x11C8) 	
00000549	40.35159302	[3980] Map #4        pointer=0x10C4 (0x128C)        embedded string=0x1A4E8 (0x1A6B0) 	
00000550	40.35161972	[3980]         pointer=0x10D0 (0x1298)        embedded string=0x5F8 (0x7C0) 	
00000551	40.35165024	[3980]         pointer=0x10D4 (0x129C)        embedded string=0xE60 (0x1028) 	
00000552	40.35191727	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Barci\Boats_texture.dds        pointer=0x1110 (0x12D8)        embedded string=0x19B80 (0x19D48) 	
00000553	40.35216904	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Barci\Boats_texture.dds        pointer=0x1114 (0x12DC)        embedded string=0x19B80 (0x19D48) 	
00000554	40.35221863	[3980] Bitmap        pointer=0x1128 (0x12F0)        embedded string=0x1A438 (0x1A600) 	
00000555	40.35225677	[3980]         pointer=0x10D8 (0x12A0)        embedded string=0x10DC (0x12A4) 	
00000556	40.35229874	[3980]         pointer=0x7E0 (0x9A8)        embedded string=0x10C4 (0x128C) 	
00000557	40.35237503	[3980] Boats        pointer=0x1188 (0x1350)        embedded string=0x19788 (0x19950) 	
00000558	40.35245514	[3980] Diffuse Color        pointer=0x11A0 (0x1368)        embedded string=0x1A1C8 (0x1A390) 	
00000559	40.35248566	[3980]         pointer=0x11A4 (0x136C)        embedded string=0x10C4 (0x128C) 	
00000560	40.35259247	[3980] Self-Illumination        pointer=0x11A8 (0x1370)        embedded string=0x1A4F0 (0x1A6B8) 	
00000561	40.35261917	[3980]         pointer=0x11AC (0x1374)        embedded string=0x1000 (0x11C8) 	
00000562	40.35267258	[3980] Bump        pointer=0x11B0 (0x1378)        embedded string=0x1A448 (0x1A610) 	
00000563	40.35271454	[3980]         pointer=0x11B4 (0x137C)        embedded string=0xFBC (0x1184) 	
00000564	40.35275269	[3980]         pointer=0x1190 (0x1358)        embedded string=0x11A0 (0x1368) 	
00000565	40.35278320	[3980]         pointer=0x1198 (0x1360)        embedded string=0x3C0 (0x588) 	
00000566	40.35284805	[3980] Blinn        pointer=0x11CC (0x1394)        embedded string=0x1A25C (0x1A424) 	
00000567	40.35292435	[3980] Max 2.5 Star        pointer=0x1220 (0x13E8)        embedded string=0x1A264 (0x1A42C) 	
00000568	40.35296631	[3980]         pointer=0x1234 (0x13FC)        embedded string=0x12A0 (0x1468) 	
00000569	40.35300446	[3980]         pointer=0x123C (0x1404)        embedded string=0x1300 (0x14C8) 	
00000570	40.35304260	[3980]         pointer=0x136C (0x1534)        embedded string=0x1A274 (0x1A43C) 	
00000571	40.35308456	[3980]         pointer=0x1250 (0x1418)        embedded string=0x1360 (0x1528) 	
00000572	40.35312271	[3980]         pointer=0x1254 (0x141C)        embedded string=0x1370 (0x1538) 	
00000573	40.35319138	[3980] Standard        pointer=0x1258 (0x1420)        embedded string=0x1A278 (0x1A440) 	
00000574	40.35323334	[3980]         pointer=0x119C (0x1364)        embedded string=0x11B8 (0x1380) 	
00000575	40.35327148	[3980]         pointer=0x7E4 (0x9AC)        embedded string=0x1188 (0x1350) 	
00000576	40.35333252	[3980] DMG        pointer=0x13E0 (0x15A8)        embedded string=0x19784 (0x1994C) 	
00000577	40.35336304	[3980]         pointer=0x13F0 (0x15B8)        embedded string=0x3C0 (0x588) 	
00000578	40.35342407	[3980] Blinn        pointer=0x140C (0x15D4)        embedded string=0x1A25C (0x1A424) 	
00000579	40.35350037	[3980] Max 2.5 Star        pointer=0x1460 (0x1628)        embedded string=0x1A264 (0x1A42C) 	
00000580	40.35354233	[3980]         pointer=0x1474 (0x163C)        embedded string=0x14E0 (0x16A8) 	
00000581	40.35358047	[3980]         pointer=0x147C (0x1644)        embedded string=0x1540 (0x1708) 	
00000582	40.35361862	[3980]         pointer=0x15AC (0x1774)        embedded string=0x1A274 (0x1A43C) 	
00000583	40.35366058	[3980]         pointer=0x1490 (0x1658)        embedded string=0x15A0 (0x1768) 	
00000584	40.35369873	[3980]         pointer=0x1494 (0x165C)        embedded string=0x15B0 (0x1778) 	
00000585	40.35376358	[3980] Standard        pointer=0x1498 (0x1660)        embedded string=0x1A278 (0x1A440) 	
00000586	40.35380554	[3980]         pointer=0x13F4 (0x15BC)        embedded string=0x13F8 (0x15C0) 	
00000587	40.35384750	[3980]         pointer=0x7E8 (0x9B0)        embedded string=0x13E0 (0x15A8) 	
00000588	40.35402679	[3980] NM        pointer=0x1620 (0x17E8)        embedded string=0x1A504 (0x1A6CC) 	
00000589	40.35407639	[3980]         pointer=0x162C (0x17F4)        embedded string=0x644 (0x80C) 	
00000590	40.35408783	[3980]         pointer=0x1630 (0x17F8)        embedded string=0xE60 (0x1028) 	
00000591	40.35436630	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Textures\ship_hull_N02.dds        pointer=0x166C (0x1834)        embedded string=0x19BC8 (0x19D90) 	
00000592	40.35462570	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Textures\ship_hull_N02.dds        pointer=0x1670 (0x1838)        embedded string=0x19BC8 (0x19D90) 	
00000593	40.35467529	[3980] Bitmap        pointer=0x1684 (0x184C)        embedded string=0x1A438 (0x1A600) 	
00000594	40.35471344	[3980]         pointer=0x1634 (0x17FC)        embedded string=0x1638 (0x1800) 	
00000595	40.35475540	[3980]         pointer=0x7EC (0x9B4)        embedded string=0x1620 (0x17E8) 	
00000596	40.35482407	[3980] NM        pointer=0x16E4 (0x18AC)        embedded string=0x1A504 (0x1A6CC) 	
00000597	40.35491943	[3980] Additional Bumpmap        pointer=0x16FC (0x18C4)        embedded string=0x1A464 (0x1A62C) 	
00000598	40.35494614	[3980]         pointer=0x1700 (0x18C8)        embedded string=0x1620 (0x17E8) 	
00000599	40.35498428	[3980]         pointer=0x16EC (0x18B4)        embedded string=0x16FC (0x18C4) 	
00000600	40.35501862	[3980]         pointer=0x16F4 (0x18BC)        embedded string=0x12A0 (0x1468) 	
00000601	40.35511017	[3980] Normal Bump        pointer=0x1724 (0x18EC)        embedded string=0x1A4D4 (0x1A69C) 	
00000602	40.35513687	[3980]         pointer=0x16F8 (0x18C0)        embedded string=0x1704 (0x18CC) 	
00000603	40.35517883	[3980]         pointer=0x7F0 (0x9B8)        embedded string=0x16E4 (0x18AC) 	
00000604	40.35523987	[3980] AO        pointer=0x1728 (0x18F0)        embedded string=0x19790 (0x19958) 	
00000605	40.35527039	[3980]         pointer=0x1734 (0x18FC)        embedded string=0x728 (0x8F0) 	
00000606	40.35530090	[3980]         pointer=0x1738 (0x1900)        embedded string=0xE60 (0x1028) 	
00000607	40.35557938	[3980] E:\SilentHunter5\Versiune\GraficSources\Ships\NBB_Nelson\NBB_Nelson_AO02.dds        pointer=0x1774 (0x193C)        embedded string=0x19CA8 (0x19E70) 	
00000608	40.35584259	[3980] E:\SilentHunter5\Versiune\GraficSources\Ships\NBB_Nelson\NBB_Nelson_AO02.dds        pointer=0x1778 (0x1940)        embedded string=0x19CA8 (0x19E70) 	
00000609	40.35589600	[3980] Bitmap        pointer=0x178C (0x1954)        embedded string=0x1A438 (0x1A600) 	
00000610	40.35593414	[3980]         pointer=0x173C (0x1904)        embedded string=0x1740 (0x1908) 	
00000611	40.35597610	[3980]         pointer=0x7F4 (0x9BC)        embedded string=0x1728 (0x18F0) 	
00000612	40.35605240	[3980] Diffuse        pointer=0x17EC (0x19B4)        embedded string=0x19794 (0x1995C) 	
00000613	40.35607910	[3980]         pointer=0x17F8 (0x19C0)        embedded string=0x690 (0x858) 	
00000614	40.35611343	[3980]         pointer=0x17FC (0x19C4)        embedded string=0xE60 (0x1028) 	
00000615	40.35638428	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Textures\ship_hull_T03.dds        pointer=0x1838 (0x1A00)        embedded string=0x19C14 (0x19DDC) 	
00000616	40.35663605	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Textures\ship_hull_T03.dds        pointer=0x183C (0x1A04)        embedded string=0x19C14 (0x19DDC) 	
00000617	40.35668945	[3980] Bitmap        pointer=0x1850 (0x1A18)        embedded string=0x1A438 (0x1A600) 	
00000618	40.35673141	[3980]         pointer=0x1800 (0x19C8)        embedded string=0x1804 (0x19CC) 	
00000619	40.35677338	[3980]         pointer=0x7F8 (0x9C0)        embedded string=0x17EC (0x19B4) 	
00000620	40.35686493	[3980] cfg#TXR_Chila        pointer=0x18B0 (0x1A78)        embedded string=0x1A508 (0x1A6D0) 	
00000621	40.35695267	[3980] Diffuse Color        pointer=0x18C8 (0x1A90)        embedded string=0x1A1C8 (0x1A390) 	
00000622	40.35697556	[3980]         pointer=0x18CC (0x1A94)        embedded string=0x17EC (0x19B4) 	
00000623	40.35708618	[3980] Self-Illumination        pointer=0x18D0 (0x1A98)        embedded string=0x1A4F0 (0x1A6B8) 	
00000624	40.35711670	[3980]         pointer=0x18D4 (0x1A9C)        embedded string=0x1728 (0x18F0) 	
00000625	40.35717392	[3980] Bump        pointer=0x18D8 (0x1AA0)        embedded string=0x1A448 (0x1A610) 	
00000626	40.35721207	[3980]         pointer=0x18DC (0x1AA4)        embedded string=0x16E4 (0x18AC) 	
00000627	40.35725403	[3980]         pointer=0x18B8 (0x1A80)        embedded string=0x18C8 (0x1A90) 	
00000628	40.35728455	[3980]         pointer=0x18C0 (0x1A88)        embedded string=0x3C0 (0x588) 	
00000629	40.35734940	[3980] Blinn        pointer=0x18F4 (0x1ABC)        embedded string=0x1A25C (0x1A424) 	
00000630	40.35744095	[3980] Max 2.5 Star        pointer=0x1948 (0x1B10)        embedded string=0x1A264 (0x1A42C) 	
00000631	40.35746384	[3980]         pointer=0x195C (0x1B24)        embedded string=0x19C8 (0x1B90) 	
00000632	40.35750198	[3980]         pointer=0x1964 (0x1B2C)        embedded string=0x1A28 (0x1BF0) 	
00000633	40.35754395	[3980]         pointer=0x1A94 (0x1C5C)        embedded string=0x1A274 (0x1A43C) 	
00000634	40.35758591	[3980]         pointer=0x1978 (0x1B40)        embedded string=0x1A88 (0x1C50) 	
00000635	40.35762405	[3980]         pointer=0x197C (0x1B44)        embedded string=0x1A98 (0x1C60) 	
00000636	40.35770416	[3980] Standard        pointer=0x1980 (0x1B48)        embedded string=0x1A278 (0x1A440) 	
00000637	40.35773087	[3980]         pointer=0x18C4 (0x1A8C)        embedded string=0x18E0 (0x1AA8) 	
00000638	40.35777283	[3980]         pointer=0x7FC (0x9C4)        embedded string=0x18B0 (0x1A78) 	
00000639	40.35783386	[3980] NM        pointer=0x1B08 (0x1CD0)        embedded string=0x1A504 (0x1A6CC) 	
00000640	40.35786438	[3980]         pointer=0x1B14 (0x1CDC)        embedded string=0x6DC (0x8A4) 	
00000641	40.35789490	[3980]         pointer=0x1B18 (0x1CE0)        embedded string=0xE60 (0x1028) 	
00000642	40.35815048	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Textures\ship_N04.DDS        pointer=0x1B54 (0x1D1C)        embedded string=0x19C60 (0x19E28) 	
00000643	40.35839844	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Textures\ship_N04.DDS        pointer=0x1B58 (0x1D20)        embedded string=0x19C60 (0x19E28) 	
00000644	40.35844803	[3980] Bitmap        pointer=0x1B6C (0x1D34)        embedded string=0x1A438 (0x1A600) 	
00000645	40.35848618	[3980]         pointer=0x1B1C (0x1CE4)        embedded string=0x1B20 (0x1CE8) 	
00000646	40.35852814	[3980]         pointer=0x800 (0x9C8)        embedded string=0x1B08 (0x1CD0) 	
00000647	40.35859680	[3980] NM        pointer=0x1BCC (0x1D94)        embedded string=0x1A504 (0x1A6CC) 	
00000648	40.35868835	[3980] Additional Bumpmap        pointer=0x1BE4 (0x1DAC)        embedded string=0x1A464 (0x1A62C) 	
00000649	40.35871887	[3980]         pointer=0x1BE8 (0x1DB0)        embedded string=0x1B08 (0x1CD0) 	
00000650	40.35875702	[3980]         pointer=0x1BD4 (0x1D9C)        embedded string=0x1BE4 (0x1DAC) 	
00000651	40.35878754	[3980]         pointer=0x1BDC (0x1DA4)        embedded string=0x12A0 (0x1468) 	
00000652	40.35887909	[3980] Normal Bump        pointer=0x1C0C (0x1DD4)        embedded string=0x1A4D4 (0x1A69C) 	
00000653	40.35890579	[3980]         pointer=0x1BE0 (0x1DA8)        embedded string=0x1BEC (0x1DB4) 	
00000654	40.35894775	[3980]         pointer=0x804 (0x9CC)        embedded string=0x1BCC (0x1D94) 	
00000655	40.35900879	[3980] AO        pointer=0x1C10 (0x1DD8)        embedded string=0x19790 (0x19958) 	
00000656	40.35903931	[3980]         pointer=0x1C1C (0x1DE4)        embedded string=0x728 (0x8F0) 	
00000657	40.35906982	[3980]         pointer=0x1C20 (0x1DE8)        embedded string=0xE60 (0x1028) 	
00000658	40.35934067	[3980] E:\SilentHunter5\Versiune\GraficSources\Ships\NBB_Nelson\NBB_Nelson_AO02.dds        pointer=0x1C5C (0x1E24)        embedded string=0x19CA8 (0x19E70) 	
00000659	40.35961151	[3980] E:\SilentHunter5\Versiune\GraficSources\Ships\NBB_Nelson\NBB_Nelson_AO02.dds        pointer=0x1C60 (0x1E28)        embedded string=0x19CA8 (0x19E70) 	
00000660	40.35966492	[3980] Bitmap        pointer=0x1C74 (0x1E3C)        embedded string=0x1A438 (0x1A600) 	
00000661	40.35969925	[3980]         pointer=0x1C24 (0x1DEC)        embedded string=0x1C28 (0x1DF0) 	
00000662	40.35974121	[3980]         pointer=0x808 (0x9D0)        embedded string=0x1C10 (0x1DD8) 	
00000663	40.36016464	[3980] Diffuse        pointer=0x1CD4 (0x1E9C)        embedded string=0x19794 (0x1995C) 	
00000664	40.36019516	[3980]         pointer=0x1CE0 (0x1EA8)        embedded string=0x774 (0x93C) 	
00000665	40.36022568	[3980]         pointer=0x1CE4 (0x1EAC)        embedded string=0xE60 (0x1028) 	
00000666	40.36048508	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Textures\ship_T04.dds        pointer=0x1D20 (0x1EE8)        embedded string=0x19CF8 (0x19EC0) 	
00000667	40.36073303	[3980] E:\SilentHunter5\Versiune\GraficSources\_common\Textures\ship_T04.dds        pointer=0x1D24 (0x1EEC)        embedded string=0x19CF8 (0x19EC0) 	
00000668	40.36078262	[3980] Bitmap        pointer=0x1D38 (0x1F00)        embedded string=0x1A438 (0x1A600) 	
00000669	40.36082458	[3980]         pointer=0x1CE8 (0x1EB0)        embedded string=0x1CEC (0x1EB4) 	
00000670	40.36086273	[3980]         pointer=0x80C (0x9D4)        embedded string=0x1CD4 (0x1E9C) 	
00000671	40.36097717	[3980] cfg#TXR_Structuri        pointer=0x1D98 (0x1F60)        embedded string=0x1A518 (0x1A6E0) 	
00000672	40.36106110	[3980] Diffuse Color        pointer=0x1DB0 (0x1F78)        embedded string=0x1A1C8 (0x1A390) 	
00000673	40.36108780	[3980]         pointer=0x1DB4 (0x1F7C)        embedded string=0x1CD4 (0x1E9C) 	
00000674	40.36119461	[3980] Self-Illumination        pointer=0x1DB8 (0x1F80)        embedded string=0x1A4F0 (0x1A6B8) 	
00000675	40.36122131	[3980]         pointer=0x1DBC (0x1F84)        embedded string=0x1C10 (0x1DD8) 	
00000676	40.36130524	[3980] Bump        pointer=0x1DC0 (0x1F88)        embedded string=0x1A448 (0x1A610) 	
00000677	40.36132050	[3980]         pointer=0x1DC4 (0x1F8C)        embedded string=0x1BCC (0x1D94) 	
00000678	40.36136246	[3980]         pointer=0x1DA0 (0x1F68)        embedded string=0x1DB0 (0x1F78) 	
00000679	40.36139297	[3980]         pointer=0x1DA8 (0x1F70)        embedded string=0x3C0 (0x588) 	
00000680	40.36146927	[3980] Blinn        pointer=0x1DDC (0x1FA4)        embedded string=0x1A25C (0x1A424) 	
00000681	40.36154556	[3980] Max 2.5 Star        pointer=0x1E30 (0x1FF8)        embedded string=0x1A264 (0x1A42C) 	
00000682	40.36157608	[3980]         pointer=0x1E44 (0x200C)        embedded string=0x1EB0 (0x2078) 	
00000683	40.36161423	[3980]         pointer=0x1E4C (0x2014)        embedded string=0x1F10 (0x20D8) 	
00000684	40.36165619	[3980]         pointer=0x1F7C (0x2144)        embedded string=0x1A274 (0x1A43C) 	
00000685	40.36169434	[3980]         pointer=0x1E60 (0x2028)        embedded string=0x1F70 (0x2138) 	
00000686	40.36173248	[3980]         pointer=0x1E64 (0x202C)        embedded string=0x1F80 (0x2148) 	
00000687	40.36181259	[3980] Standard        pointer=0x1E68 (0x2030)        embedded string=0x1A278 (0x1A440) 	
00000688	40.36184311	[3980]         pointer=0x1DAC (0x1F74)        embedded string=0x1DC8 (0x1F90) 	
00000689	40.36188126	[3980]         pointer=0x810 (0x9D8)        embedded string=0x1D98 (0x1F60) 	
00000690	40.36191940	[3980]         pointer=0x20 (0x1E8)        embedded string=0x1FF0 (0x21B8) 	
00000691	40.36200714	[3980] NBB_Nelson        pointer=0x1FF4 (0x21BC)        embedded string=0x18F40 (0x19108) 	
00000692	40.36207199	[3980] NBB_Nelson        pointer=0x200C (0x21D4)        embedded string=0x18F40 (0x19108) 	
00000693	40.36209869	[3980]         pointer=0x209C (0x2264)        embedded string=0x13E0 (0x15A8) 	
00000694	40.36213684	[3980]         pointer=0x59A4 (0x5B6C)        embedded string=0x1A274 (0x1A43C) 	
00000695	40.36217880	[3980]         pointer=0x59A8 (0x5B70)        embedded string=0x1A6A4 (0x1A86C) 	
00000696	40.36222076	[3980]         pointer=0x20A0 (0x2268)        embedded string=0x59A4 (0x5B6C) 	
00000697	40.36231613	[3980] NBB_Nelson_hull        pointer=0x20A4 (0x226C)        embedded string=0x18F4C (0x19114) 	
00000698	40.36233902	[3980]         pointer=0x2134 (0x22FC)        embedded string=0x1700 (0x18C8) 	
00000699	40.36237717	[3980]         pointer=0x5AF4 (0x5CBC)        embedded string=0x1A274 (0x1A43C) 	
00000700	40.36251068	[3980] MapChannel:2 = -none- 	
00000701	40.36251068	[3980]         pointer=0x5BC4 (0x5D8C)        embedded string=0x1AFDC (0x1B1A4) 	
00000702	40.36253738	[3980]         pointer=0x5BC8 (0x5D90)        embedded string=0x1AFF4 (0x1B1BC) 	
00000703	40.36257935	[3980]         pointer=0x2138 (0x2300)        embedded string=0x59B8 (0x5B80) 	
00000704	40.36270142	[3980] Reflect_NBB_Nelson_hull        pointer=0x213C (0x2304)        embedded string=0x18F5C (0x19124) 	
00000705	40.36272049	[3980]         pointer=0x21CC (0x2394)        embedded string=0x1700 (0x18C8) 	
00000706	40.36276245	[3980]         pointer=0x5D14 (0x5EDC)        embedded string=0x1A274 (0x1A43C) 	
00000707	40.36289215	[3980] MapChannel:2 = -none- 	
00000708	40.36289215	[3980]         pointer=0x5DE4 (0x5FAC)        embedded string=0x1AFDC (0x1B1A4) 	
00000709	40.36293030	[3980] [        pointer=0x5DE8 (0x5FB0)        embedded string=0x1B008 (0x1B1D0) 	
00000710	40.36296844	[3980]         pointer=0x21D0 (0x2398)        embedded string=0x5BD8 (0x5DA0) 	
00000711	40.36307144	[3980] NBB_Nelson_siajB        pointer=0x21D4 (0x239C)        embedded string=0x1901C (0x191E4) 	
00000712	40.36308670	[3980]         pointer=0x2264 (0x242C)        embedded string=0x13E0 (0x15A8) 	
00000713	40.36312866	[3980]         pointer=0x5DF8 (0x5FC0)        embedded string=0x1A274 (0x1A43C) 	
00000714	40.36317062	[3980]         pointer=0x5DFC (0x5FC4)        embedded string=0x1B01C (0x1B1E4) 	
00000715	40.36320877	[3980]         pointer=0x2268 (0x2430)        embedded string=0x5DF8 (0x5FC0) 	
00000716	40.36331177	[3980] NBB_Nelson_siajF        pointer=0x226C (0x2434)        embedded string=0x19030 (0x191F8) 	
00000717	40.36333466	[3980]         pointer=0x22FC (0x24C4)        embedded string=0x13E0 (0x15A8) 	
00000718	40.36337662	[3980]         pointer=0x5E0C (0x5FD4)        embedded string=0x1A274 (0x1A43C) 	
00000719	40.36341476	[3980]         pointer=0x5E10 (0x5FD8)        embedded string=0x1B030 (0x1B1F8) 	
00000720	40.36345291	[3980]         pointer=0x2300 (0x24C8)        embedded string=0x5E0C (0x5FD4) 	
00000721	40.36356354	[3980] NBB_Nelson_siajF2        pointer=0x2304 (0x24CC)        embedded string=0x19044 (0x1920C) 	
00000722	40.36357880	[3980]         pointer=0x2394 (0x255C)        embedded string=0x13E0 (0x15A8) 	
00000723	40.36362076	[3980]         pointer=0x5E20 (0x5FE8)        embedded string=0x1A274 (0x1A43C) 	
00000724	40.36366272	[3980]         pointer=0x5E24 (0x5FEC)        embedded string=0x1B044 (0x1B20C) 	
00000725	40.36370468	[3980]         pointer=0x2398 (0x2560)        embedded string=0x5E20 (0x5FE8) 	
00000726	40.36380768	[3980] cfg#FLG_NBB_Nelson        pointer=0x239C (0x2564)        embedded string=0x19058 (0x19220) 	
00000727	40.36382675	[3980]         pointer=0x242C (0x25F4)        embedded string=0x13E0 (0x15A8) 	
00000728	40.36386871	[3980]         pointer=0x5E34 (0x5FFC)        embedded string=0x1A274 (0x1A43C) 	
00000729	40.36390686	[3980]         pointer=0x5E38 (0x6000)        embedded string=0x1B058 (0x1B220) 	
00000730	40.36394501	[3980]         pointer=0x2430 (0x25F8)        embedded string=0x5E34 (0x5FFC) 	
00000731	40.36405945	[3980] cfg#M01_NBB_Nelson        pointer=0x2434 (0x25FC)        embedded string=0x1909C (0x19264) 	
00000732	40.36407852	[3980]         pointer=0x24C4 (0x268C)        embedded string=0x13E0 (0x15A8) 	
00000733	40.36411667	[3980]         pointer=0x5E48 (0x6010)        embedded string=0x1A274 (0x1A43C) 	
00000734	40.36415863	[3980]         pointer=0x5E4C (0x6014)        embedded string=0x1B06C (0x1B234) 	
00000735	40.36419678	[3980]         pointer=0x24C8 (0x2690)        embedded string=0x5E48 (0x6010) 	
00000736	40.36430359	[3980] cfg#M02_NBB_Nelson        pointer=0x24CC (0x2694)        embedded string=0x190B0 (0x19278) 	
00000737	40.36432648	[3980]         pointer=0x255C (0x2724)        embedded string=0x13E0 (0x15A8) 	
00000738	40.36436844	[3980]         pointer=0x5E5C (0x6024)        embedded string=0x1A274 (0x1A43C) 	
00000739	40.36440659	[3980]         pointer=0x5E60 (0x6028)        embedded string=0x1B080 (0x1B248) 	
00000740	40.36444473	[3980]         pointer=0x2560 (0x2728)        embedded string=0x5E5C (0x6024) 	
00000741	40.36455917	[3980] cfg#M03_NBB_Nelson        pointer=0x2564 (0x272C)        embedded string=0x190C4 (0x1928C) 	
00000742	40.36457825	[3980]         pointer=0x25F4 (0x27BC)        embedded string=0x13E0 (0x15A8) 	
00000743	40.36462021	[3980]         pointer=0x5E70 (0x6038)        embedded string=0x1A274 (0x1A43C) 	
00000744	40.36465836	[3980]         pointer=0x5E74 (0x603C)        embedded string=0x1B094 (0x1B25C) 	
00000745	40.36469650	[3980]         pointer=0x25F8 (0x27C0)        embedded string=0x5E70 (0x6038) 	
00000746	40.36480713	[3980] cfg#S01_NBB_Nelson        pointer=0x25FC (0x27C4)        embedded string=0x190D8 (0x192A0) 	
00000747	40.36482620	[3980]         pointer=0x268C (0x2854)        embedded string=0x13E0 (0x15A8) 	
00000748	40.36486435	[3980]         pointer=0x5E84 (0x604C)        embedded string=0x1A274 (0x1A43C) 	
00000749	40.36490250	[3980]         pointer=0x5E88 (0x6050)        embedded string=0x1B0A8 (0x1B270) 	
00000750	40.36494446	[3980]         pointer=0x2690 (0x2858)        embedded string=0x5E84 (0x604C) 	
00000751	40.36505127	[3980] cfg#S02_NBB_Nelson        pointer=0x2694 (0x285C)        embedded string=0x190EC (0x192B4) 	
00000752	40.36507034	[3980]         pointer=0x2724 (0x28EC)        embedded string=0x13E0 (0x15A8) 	
00000753	40.36511230	[3980]         pointer=0x5E98 (0x6060)        embedded string=0x1A274 (0x1A43C) 	
00000754	40.36515045	[3980]         pointer=0x5E9C (0x6064)        embedded string=0x1B0BC (0x1B284) 	
00000755	40.36519241	[3980]         pointer=0x2728 (0x28F0)        embedded string=0x5E98 (0x6060) 	
00000756	40.36532593	[3980] cfg#S03_NBB_Nelson        pointer=0x272C (0x28F4)        embedded string=0x19100 (0x192C8) 	
00000757	40.36534119	[3980]         pointer=0x27BC (0x2984)        embedded string=0x13E0 (0x15A8) 	
00000758	40.36539841	[3980]         pointer=0x5EAC (0x6074)        embedded string=0x1A274 (0x1A43C) 	
00000759	40.36542892	[3980]         pointer=0x5EB0 (0x6078)        embedded string=0x1B0D0 (0x1B298) 	
00000760	40.36546707	[3980]         pointer=0x27C0 (0x2988)        embedded string=0x5EAC (0x6074) 	
00000761	40.36557770	[3980] cfg#S04_NBB_Nelson        pointer=0x27C4 (0x298C)        embedded string=0x19114 (0x192DC) 	
00000762	40.36561584	[3980]         pointer=0x2854 (0x2A1C)        embedded string=0x13E0 (0x15A8) 	
00000763	40.36578369	[3980]         pointer=0x5EC0 (0x6088)        embedded string=0x1A274 (0x1A43C) 	
00000764	40.36581421	[3980]         pointer=0x5EC4 (0x608C)        embedded string=0x1B0E4 (0x1B2AC) 	
00000765	40.36585617	[3980]         pointer=0x2858 (0x2A20)        embedded string=0x5EC0 (0x6088) 	
00000766	40.36597824	[3980] cfg#S05_NBB_Nelson        pointer=0x285C (0x2A24)        embedded string=0x19128 (0x192F0) 	
00000767	40.36599731	[3980]         pointer=0x28EC (0x2AB4)        embedded string=0x13E0 (0x15A8) 	
00000768	40.36603928	[3980]         pointer=0x5ED4 (0x609C)        embedded string=0x1A274 (0x1A43C) 	
00000769	40.36607742	[3980]         pointer=0x5ED8 (0x60A0)        embedded string=0x1B0F8 (0x1B2C0) 	
00000770	40.36611557	[3980]         pointer=0x28F0 (0x2AB8)        embedded string=0x5ED4 (0x609C) 	
00000771	40.36622620	[3980] cfg#S06_NBB_Nelson        pointer=0x28F4 (0x2ABC)        embedded string=0x1913C (0x19304) 	
00000772	40.36624908	[3980]         pointer=0x2984 (0x2B4C)        embedded string=0x13E0 (0x15A8) 	
00000773	40.36628723	[3980]         pointer=0x5EE8 (0x60B0)        embedded string=0x1A274 (0x1A43C) 	
00000774	40.36633301	[3980]         pointer=0x5EEC (0x60B4)        embedded string=0x1B10C (0x1B2D4) 	
00000775	40.36637115	[3980]         pointer=0x2988 (0x2B50)        embedded string=0x5EE8 (0x60B0) 	
00000776	40.36648178	[3980] cfg#S07_NBB_Nelson        pointer=0x298C (0x2B54)        embedded string=0x19150 (0x19318) 	
00000777	40.36649704	[3980]         pointer=0x2A1C (0x2BE4)        embedded string=0x13E0 (0x15A8) 	
00000778	40.36653900	[3980]         pointer=0x5EFC (0x60C4)        embedded string=0x1A274 (0x1A43C) 	
00000779	40.36660385	[3980] ********* Pointer data value read was blank @ line number 111340 ********* 	
00000780	40.36660385	[3980]  	
00000781	66.86171722	[3980] ********* Exception occured. Exception is System.ArgumentOutOfRangeException: ***1048;***1085;***1076;***1077;***1082;***1089; ***1079;***1072; ***1087;***1088;***1077;***1076;***1077;***1083;***1072;***1084;***1080; ***1076;***1080;***1072;***1087;***1072;***1079;***1086;***1085;***1072;. ***1048;***1085;***1076;***1077;***1082;***1089; ***1076;***1086;***1083;***1078;***1077;***1085; ***1073;***1099;***1090;***1100; ***1087;***1086;***1083;***1086;***1078;***1080;***1090;***1077;***1083;***1100;***1085;***1099;***1084; ***1095;***1080;***1089;***1083;***1086;***1084;, ***1072; ***1077;***1075;***1086; ***1088;***1072;***1079;***1084;***1077;***1088; ***1085;***1077; ***1076;***1086;***1083;***1078;***1077;***1085; ***1087;***1088;***1077;***1074;***1099;***1096;***1072;***1090;***1100; ***1088;***1072;***1079;***1084;***1077;***1088; ***1082;***1086;***1083;***1083;***1077;***1082;***1094;***1080;***1080;. 	
00000782	66.86171722	[3980] ***1048;***1084;***1103; ***1087;***1072;***1088;***1072;***1084;***1077;***1090;***1088;***1072;: index 	
00000783	66.86171722	[3980]    ***1074; System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 	
00000784	66.86171722	[3980]    ***1074; System.ThrowHelper.ThrowArgumentOutOfRangeException() 	
00000785	66.86171722	[3980]    ***1074; System.Collections.Generic.List`1.get_Item(Int32 index) 	
00000786	66.86171722	[3980]    ***1074; TheDarkWraith.SilentHunter5.GR2ArtToolInfo.ReadElementsData(GR2EditorViewer& gr2ev, BinaryReader& br, Int32& section0fileoffset, Int32& pointersfileoffset, Int32& numberofpointers, Int32& pointerstartindex, Int32& alignment, Int32& startoftxtdataoffset) 	
00000787	66.86171722	[3980]    ***1074; TheDarkWraith.SilentHunter5.GR2File.ReadData(Device& device) 	
00000788	66.86171722	[3980]    ***1074; TheDarkWraith.SilentHunter5.GR2File.ReadAndParseGR2File(Device& device) 	
00000789	66.86171722	[3980]    ***1074; TheDarkWraith.SilentHunter5.GR2EditorViewer.tsmiFileOpen_Click(Object sender, EventArgs e) ********* 	
00000790	66.86171722	[3980]  	
00000791	91.70246124	[3980] D:\GAMES\U-Boats\data\Sea\NBB_Nelson\NBB_Nelson.GR2 closed 	
00000792	91.70246124	[3980]
__________________
Speed squadron is the speed of the slowest ship ... but only so long as on the trail of the squadron did not sit submarines ...
Obelix is offline   Reply With Quote
Old 10-18-11, 09:13 AM   #100
Obelix
Seasoned Skipper
 
Join Date: Aug 2010
Location: 49°44´N 129°40´E
Posts: 665
Downloads: 124
Uploads: 7
Default

Quote:
E:\SilentHunter5\Versiune\GraficSources\_common\Barci\
But this I do not understand - why is registered this way? Granny Viewer is also trying to find some things along this path.
Or is it creates a virtual drive then?
__________________
Speed squadron is the speed of the slowest ship ... but only so long as on the trail of the squadron did not sit submarines ...
Obelix is offline   Reply With Quote
Old 10-18-11, 09:26 AM   #101
TheDarkWraith
Black Magic
 
Join Date: Jun 2007
Posts: 11,962
Downloads: 147
Uploads: 5


Default

Quote:
Originally Posted by Obelix View Post
But this I do not understand - why is registered this way? Granny Viewer is also trying to find some things along this path.
Or is it creates a virtual drive then?
Where did this string come from? The from filename?
TheDarkWraith is offline   Reply With Quote
Old 10-18-11, 09:28 AM   #102
Obelix
Seasoned Skipper
 
Join Date: Aug 2010
Location: 49°44´N 129°40´E
Posts: 665
Downloads: 124
Uploads: 7
Default

Oops! At the end of the log display the Cyrillic properly. That's what it says:
00000779 40.36660385 [3980] ********* Pointer data value read was blank @ line number 111 340 *********
00000780 40.36660385 [3980]
00000781 66.86171722 [3980] ********* Exception occured. Exception is System.ArgumentOutOfRangeException: Index out of range. The index must be a positive number, and its size should not exceed the size of the collection.
00000782 66.86171722 [3980] Parameter name: index
00000783 66.86171722 [3980] in System.ThrowHelper.ThrowArgumentOutOfRangeExceptio n (ExceptionArgument argument,
__________________
Speed squadron is the speed of the slowest ship ... but only so long as on the trail of the squadron did not sit submarines ...
Obelix is offline   Reply With Quote
Old 10-18-11, 09:38 AM   #103
Obelix
Seasoned Skipper
 
Join Date: Aug 2010
Location: 49°44´N 129°40´E
Posts: 665
Downloads: 124
Uploads: 7
Default

Quote:
Originally Posted by TheDarkWraith View Post
Where did this string come from? The from filename?
I thought from *. GR2 file.
__________________
Speed squadron is the speed of the slowest ship ... but only so long as on the trail of the squadron did not sit submarines ...
Obelix is offline   Reply With Quote
Old 10-18-11, 09:39 AM   #104
TheDarkWraith
Black Magic
 
Join Date: Jun 2007
Posts: 11,962
Downloads: 147
Uploads: 5


Default

Quote:
Originally Posted by Obelix View Post
Oops! At the end of the log display the Cyrillic properly. That's what it says:
00000779 40.36660385 [3980] ********* Pointer data value read was blank @ line number 111 340 *********
00000780 40.36660385 [3980]
00000781 66.86171722 [3980] ********* Exception occured. Exception is System.ArgumentOutOfRangeException: Index out of range. The index must be a positive number, and its size should not exceed the size of the collection.
00000782 66.86171722 [3980] Parameter name: index
00000783 66.86171722 [3980] in System.ThrowHelper.ThrowArgumentOutOfRangeExceptio n (ExceptionArgument argument,
what unit was this?


There is one positive thing from this Undine:

[3172] GR2 file path is C:\Games\Ubisoft\Silent Hunter 5\data\Submarine\NSS_Undine\NSS_Undine.GR2
[3172]
[3172] Current position in file is 0x0
[3172]
[3172] Reading file header data starting at 0x0
[3172] Magic string=)ÞlÀº¤S+%õ·¥öfâî 0x10
[3172] File list start offset (from file beginning)=0x1C8 0x14 where the file list header starts
[3172] Unknown1=0x0 0x18
[3172] Unknown2=0x0 0x1C
[3172] Unknown3=0x0 0x20
[3172] Current position in file is 0x20
[3172]
[3172] Reading info header data starting at 0x20
[3172] File format revision=0x7 0x24
[3172] File size in bytes=1720964 0x28
[3172] CRC value=0xC52FD13B 0x2C
[3172] Bytes from offset to start of sections=0x48 0x30 bytes from start of this to first section
[3172] Number of sections=8 0x34
[3172] Root object type (?)=0x6 0x38
[3172] Root object offset (?)=0x0 0x3C
[3172] Unknown1=0x0 0x40
[3172] Unknown2=0x0 0x44
[3172] Tag=0x80000032 0x48
[3172] Current position in file is 0x68
[3172]
[3172] Reading section 0 (arttoolinfo) data starting at 0x68
[3172] Unknown=0x0 0x6C always 0x0
[3172] Section file offset=0x468C 0x70 where this section starts in the file
[3172] Compressed size=61184 0x74 compressed size and uncompressed sizes should equal for SH5 GR2s
[3172] Uncompressed size=61184 0x78 compressed size and uncompressed sizes should equal for SH5 GR2s
[3172] Alignment=0x4 0x7C what the alignment boundary is in the file
[3172] Start of data fileoffset=0xBD9C 0x80 start of data
[3172] Start of data fileoffset2=0xBD9C 0x84 start of data
[3172] Pointers file offset=0x1C8 0x88 where the pointers for this section are located
[3172] Number of pointers=1467 0x8C
[3172] Pointer to unknown=0x468C 0x90
[3172] Unknown2=0x0 0x94
[3172] Current position in file is 0x94

if you look at section 0 under number of pointers is Pointer to unknown. I now know what this pointer to unknown is! It's the point just after the pointers.....The pointers file offset is 0x1C8. NUmber of pointers is 1467. 1467 * 3 * 4 = 0x44C4. 0x44C4 + 0x1C8 = 0x468C. Exactly where pointer to unknown points
TheDarkWraith is offline   Reply With Quote
Old 10-18-11, 09:41 AM   #105
TheDarkWraith
Black Magic
 
Join Date: Jun 2007
Posts: 11,962
Downloads: 147
Uploads: 5


Default

Quote:
Originally Posted by Obelix View Post
I thought from *. GR2 file.
that is the source file that was used to make this GR2 file. It's not creating any virtual drives or anything. This is just for informational purposes so one can see where the source of this GR2 came from. I'm purely speculating here but it makes perfect sense.
TheDarkWraith is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -5. The time now is 04:30 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright © 1995- 2024 Subsim®
"Subsim" is a registered trademark, all rights reserved.