SQLSERVER中的LOB页面简单研究
SQLSERVER中的LOB页面简单研究
这篇文章和我另一篇文章是相辅相成的,在看《SQLSERVER2012 列存储索引的简单研究和测试》这篇文章之前希望大家先看一下这篇文章o(∩_∩)o
LOB页面相信大家都不会陌生,LOB专门存储大型对象数据的,类型text、image这些数据类型的数据就是存储在LOB页面
MSDN上的解释是这样的:
http://technet.microsoft.com/zh-cn/library/ms189051(v=sql.105).aspx
LOB_DATA:以下列一种或多种数据类型存储的大型对象数据:text、ntext、image、xml、varchar(max)、nvarchar(max)、
varbinary(max) 或 CLR 用户定义类型 (CLR UDT)。页的类型为 Text/Image。
LOB_DATA 分配单元
当表或索引有一个或多个 LOB 数据类型时,将为每个分区分配一个 LOB_DATA 分配单元,以管理该数据的存储。
LOB 数据类型包括text、ntext、image、xml、varchar(max)、nvarchar(max)、varbinary(max) 和 CLR 用户定义类型。
但是在DBCC IND的结果里面,有这样的解释
PageType 页面类型:1:数据页面;2:索引页面;3:Lob_mixed_page;4:Lob_tree_page;10:IAM页面
究竟Lob_mixed_page和Lob_tree_page有什么区别?
堆表
先执行下面的SQL语句,用来存储DBCC IND的结果
1 --执行下面语句,看一下DBCC IND的结果 2 --先说明一下: 3 -- 4 --PageType 页面类型:1:数据页面;2:索引页面;3:Lob_mixed_page;4:Lob_tree_page;10:IAM页面 5 -- 6 --IndexID 索引ID:0 代表堆, 1 代表聚集索引, 2-250 代表非聚集索引 大于250就是text或image字段 7 CREATE TABLE DBCCResult ( 8 PageFID NVARCHAR(200), 9 PagePID NVARCHAR(200), 10 IAMFID NVARCHAR(200), 11 IAMPID NVARCHAR(200), 12 ObjectID NVARCHAR(200), 13 IndexID NVARCHAR(200), 14 PartitionNumber NVARCHAR(200), 15 PartitionID NVARCHAR(200), 16 iam_chain_type NVARCHAR(200), 17 PageType NVARCHAR(200), 18 IndexLevel NVARCHAR(200), 19 NextPageFID NVARCHAR(200), 20 NextPagePID NVARCHAR(200), 21 PrevPageFID NVARCHAR(200), 22 PrevPagePID NVARCHAR(200) 23 )
建立一个堆表
1 CREATE TABLE LobTestTable(id INT,NAME varchar(200) ,comment TEXT) 2 GO
插入3条记录
1 INSERT INTO [dbo].[LobTestTable] ( [id],name, [comment] ) 2 SELECT 1,'中国','你好你好你好你好你好你好你好你好' UNION ALL 3 SELECT 2,'中国','他好他好他好他好他好他好他好他好' UNION ALL 4 SELECT 3,'中国','我好我好我好我好我好我好我好我好'
1 SELECT * FROM [dbo].[LobTestTable] 2 GO
把结果存入[DBCCResult]里
1 --TRUNCATE TABLE [dbo].[DBCCResult] 2 INSERT INTO DBCCResult EXEC ('DBCC IND(pratice,LobTestTable,-1) ') 3 4 SELECT * FROM [dbo].[DBCCResult] ORDER BY [PageType] DESC
可以看到,pagetype为3,即是Lob_mixed_page来存储text数据
而且普通的数据页和LOB页是由不同的IAM页来管理的,LOB页面由pageid为14575的页面来管理
普通数据页面由pageid为15608的页面来管理
我们看一下14576页面和14550页面到底存放了什么?
14576页面
1 PAGE: (1:14576) 2 3 4 BUFFER: 5 6 7 BUF @0x03E8A5E4 8 9 bpage = 0x193C0000 bhash = 0x00000000 bpageno = (1:14576) 10 bdbid = 5 breferences = 0 bUse1 = 3859 11 bstat = 0xc0010b blog = 0x212159bb bnext = 0x00000000 12 13 PAGE HEADER: 14 15 16 Page @0x193C0000 17 18 m_pageId = (1:14576) m_headerVersion = 1 m_type = 1 19 m_typeFlagBits = 0x4 m_level = 0 m_flagBits = 0x8000 20 m_objId (AllocUnitId.idObj) = 438 m_indexId (AllocUnitId.idInd) = 256 21 Metadata: AllocUnitId = 72057594066632704 22 Metadata: PartitionId = 72057594057261056 Metadata: IndexId = 0 23 Metadata: ObjectId = 891150220 m_prevPage = (0:0) m_nextPage = (0:0) 24 pminlen = 8 m_slotCnt = 3 m_freeCnt = 7979 25 m_freeData = 207 m_reservedCnt = 0 m_lsn = (2922:21125:41) 26 m_xactReserved = 0 m_xdesId = (0:0) m_ghostRecCnt = 0 27 m_tornBits = 0 28 29 Allocation Status 30 31 GAM (1:2) = ALLOCATED SGAM (1:3) = ALLOCATED 32 PFS (1:8088) = 0x61 MIXED_EXT ALLOCATED 50_PCT_FULL DIFF (1:6) = CHANGED 33 ML (1:7) = NOT MIN_LOGGED 34 35 Slot 0 Offset 0x60 Length 37 36 37 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP VARIABLE_COLUMNS 38 39 Memory Dump @0x0917C060 40 41 00000000: 30000800 01000000 03006802 00150025 †0.........h....% 42 00000010: 80d6d0b9 fa0000f1 71250000 00d63800 †........q%....8. 43 00000020: 00010000 00††††††††††††††††††††††††††..... 44 45 Slot 0 Column 0 Offset 0x4 Length 4 46 47 id = 1 48 49 Slot 0 Column 1 Offset 0x11 Length 4 50 51 NAME = 中国 52 53 comment = [Textpointer] Slot 0 Column 2 Offset 0x15 Length 16 54 55 TextTimeStamp = 160825409536 RowId = (1:14550:0) 56 57 Slot 1 Offset 0x85 Length 37 58 59 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP VARIABLE_COLUMNS 60 61 Memory Dump @0x0917C085 62 63 00000000: 30000800 02000000 03002002 00150025 †0......... ....% 64 00000010: 80d6d0b9 fa0000f2 71250000 00d63800 †........q%....8. 65 00000020: 00010001 00††††††††††††††††††††††††††..... 66 67 Slot 1 Column 0 Offset 0x4 Length 4 68 69 id = 2 70 71 Slot 1 Column 1 Offset 0x11 Length 4 72 73 NAME = 中国 74 75 comment = [Textpointer] Slot 1 Column 2 Offset 0x15 Length 16 76 77 TextTimeStamp = 160825475072 RowId = (1:14550:1) 78 79 Slot 2 Offset 0xaa Length 37 80 81 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP VARIABLE_COLUMNS 82 83 Memory Dump @0x0917C0AA 84 85 00000000: 30000800 03000000 03002002 00150025 †0......... ....% 86 00000010: 80d6d0b9 fa0000f3 71250000 00d63800 †........q%....8. 87 00000020: 00010002 00††††††††††††††††††††††††††..... 88 89 Slot 2 Column 0 Offset 0x4 Length 4 90 91 id = 3 92 93 Slot 2 Column 1 Offset 0x11 Length 4 94 95 NAME = 中国 96 97 comment = [Textpointer] Slot 2 Column 2 Offset 0x15 Length 16 98 99 TextTimeStamp = 160825540608 RowId = (1:14550:2) 100 101 102 DBCC 执行完毕。如果 DBCC 输出了错误信息,请与系统管理员联系。
14550页面
1 PAGE: (1:14550) 2 3 4 BUFFER: 5 6 7 BUF @0x03E88DD8 8 9 bpage = 0x192E8000 bhash = 0x00000000 bpageno = (1:14550) 10 bdbid = 5 breferences = 0 bUse1 = 3893 11 bstat = 0xc0010b blog = 0x3212159b bnext = 0x00000000 12 13 PAGE HEADER: 14 15 16 Page @0x192E8000 17 18 m_pageId = (1:14550) m_headerVersion = 1 m_type = 3 19 m_typeFlagBits = 0x0 m_level = 0 m_flagBits = 0x8000 20 m_objId (AllocUnitId.idObj) = 439 m_indexId (AllocUnitId.idInd) = 256 21 Metadata: AllocUnitId = 72057594066698240 22 Metadata: PartitionId = 72057594057261056 Metadata: IndexId = 0 23 Metadata: ObjectId = 891150220 m_prevPage = (0:0) m_nextPage = (0:0) 24 pminlen = 0 m_slotCnt = 3 m_freeCnt = 7838 25 m_freeData = 348 m_reservedCnt = 0 m_lsn = (2922:21125:40) 26 m_xactReserved = 0 m_xdesId = (0:0) m_ghostRecCnt = 0 27 m_tornBits = 0 28 29 Allocation Status 30 31 GAM (1:2) = ALLOCATED SGAM (1:3) = ALLOCATED 32 PFS (1:8088) = 0x61 MIXED_EXT ALLOCATED 50_PCT_FULL DIFF (1:6) = CHANGED 33 ML (1:7) = NOT MIN_LOGGED 34 35 36 Blob row at: Page (1:14550) Slot 0 Length: 84 Type: 0 (SMALL_ROOT) 37 38 Small Blob Id: 160825409536 Size:32 39 40 41 42 0A05C074: c3bae3c4 c3bae3c4 c3bae3c4 c3bae3c4 ................ 43 44 0A05C084: c3bae3c4 c3bae3c4 c3bae3c4 c3bae3c4 ................ 45 46 47 48 49 50 Blob row at: Page (1:14550) Slot 1 Length: 84 Type: 0 (SMALL_ROOT) 51 52 Small Blob Id: 160825475072 Size:32 53 54 55 56 0A05C0C8: c3bafbcb c3bafbcb c3bafbcb c3bafbcb ................ 57 58 0A05C0D8: c3bafbcb c3bafbcb c3bafbcb c3bafbcb ................ 59 60 61 62 63 64 Blob row at: Page (1:14550) Slot 2 Length: 84 Type: 0 (SMALL_ROOT) 65 66 Small Blob Id: 160825540608 Size:32 67 68 69 70 0A05C11C: c3bad2ce c3bad2ce c3bad2ce c3bad2ce ................ 71 72 0A05C12C: c3bad2ce c3bad2ce c3bad2ce c3bad2ce ................ 73 74 75 76 77 78 DBCC 执行完毕。如果 DBCC 输出了错误信息,请与系统管理员联系。
可以看到14576页面里的每一行第三列(即comment字段)都有一个指针指向14550页面,并且指示了数据在14550页面的哪一行RowId = (1:14550:0)
1 Slot 0 Column 0 Offset 0x4 Length 4 2 3 id = 1 4 5 Slot 0 Column 1 Offset 0x11 Length 4 6 7 NAME = 中国 8 9 comment = [Textpointer] Slot 0 Column 2 Offset 0x15 Length 16 10 11 TextTimeStamp = 160825409536 RowId = (1:14550:0)
而在14550页面,则存储了实际的text数据类型的数据
1 Blob row at: Page (1:14550) Slot 0 Length: 84 Type: 0 (SMALL_ROOT) 2 3 Small Blob Id: 160825409536 Size:32 4 5 6 0A05C074: c3bae3c4 c3bae3c4 c3bae3c4 c3bae3c4 ................ 7 8 0A05C084: c3bae3c4 c3bae3c4 c3bae3c4 c3bae3c4 ................
我们向[LobTestTable]表插入多一点数据,插入1000条记录
1 DECLARE @i INT 2 SET @i=4 3 WHILE @i<1001 4 BEGIN 5 INSERT INTO [dbo].[LobTestTable] ( [id],name, [comment] ) 6 SELECT @i,'中国','你好你好你好你好你好你好你好你好' 7 SET @i=@i+1 8 END 9 10 SELECT * FROM [dbo].[LobTestTable] 11 GO
插入了1000条记录之后表中也没有出现 Lob_tree_page 页
非聚集索引表
建立一个非聚集索引表
1 CREATE TABLE LobIndexTestTable(id INT,NAME varchar(200) ,comment TEXT) 2 GO 3 4 INSERT INTO [dbo].[LobIndexTestTable] ( [id],name, [comment] ) 5 SELECT 1,'中国','你好你好你好你好你好你好你好你好' UNION ALL 6 SELECT 2,'中国','他好他好他好他好他好他好他好他好' UNION ALL 7 SELECT 3,'中国','我好我好我好我好我好我好我好我好' 8 9 SELECT * FROM [LobIndexTestTable]
但是在text数据类型字段上建立索引会报错
1 CREATE NONCLUSTERED INDEX IX_LobIndexTestTable ON LobIndexTestTable([comment] ASC) 2 GO
这里跟SQLSERVER2012的列存储索引是一样的,列存储索引也不允许在下面的数据类型中建立索引
1 binary和varbinary 2 ntext、text和 image 3 varchar(max)和nvarchar(max) 4 uniqueidentifier 5 rowversion(和 timestamp) 6 sql_variant 7 精度大于 18 位的 decimal(和 numeric) 8 标量大于 2 的 datetimeoffset 9 CLR 类型(hierarchyid和空间类型) 10 xml
我们就在name这个字段上建立索引吧
1 CREATE NONCLUSTERED INDEX IX_LobIndexTestTable ON LobIndexTestTable(name ASC) 2 GO
1 --TRUNCATE TABLE [dbo].[DBCCResult] 2 INSERT INTO DBCCResult EXEC ('DBCC IND(pratice,LobIndexTestTable,-1) ') 3 4 SELECT * FROM [dbo].[DBCCResult] ORDER BY [PageType] DESC
可以看到索引页,LOB页面,普通数据页由37253,37265,37255这三个IAM页面进行管理
使用下面语句查看索引页,数据页,LOB页的情况
1 DBCC TRACEON(3604,-1) 2 GO 3 DBCC PAGE([pratice],1,37252,3) 4 GO 5 DBCC PAGE([pratice],1,37254,3) 6 GO 7 DBCC PAGE([pratice],1,37264,3) 8 GO
图片就不贴出来了,大家查看页面内容会看到跟堆表的情况是一样的
普通数据页面也是有指针指向LOB页面
我们插入10000条记录到LobIndexTestTable表
1 DECLARE @i INT 2 SET @i=4 3 WHILE @i<10001 4 BEGIN 5 INSERT INTO [dbo].LobIndexTestTable ( [id],name, [comment] ) 6 SELECT @i,'中国','你好你好你好你好你好你好你好你好' 7 SET @i=@i+1 8 END
很遗憾,也是没有出现Lob_tree_page 页
聚集索引表
建表脚本
1 CREATE TABLE LobCIndexTestTable(id INT,NAME varchar(200) ,comment TEXT) 2 GO 3 4 INSERT INTO [dbo].[LobCIndexTestTable] ( [id],name, [comment] ) 5 SELECT 1,'中国','你好你好你好你好你好你好你好你好' UNION ALL 6 SELECT 2,'中国','他好他好他好他好他好他好他好他好' UNION ALL 7 SELECT 3,'中国','我好我好我好我好我好我好我好我好' 8 9 SELECT * FROM [LobCIndexTestTable] 10 11 12 13 CREATE CLUSTERED INDEX IX_LobCIndexTestTable ON LobCIndexTestTable(name ASC) 14 GO 15 16 --TRUNCATE TABLE [dbo].[DBCCResult] 17 INSERT INTO DBCCResult EXEC ('DBCC IND(pratice,LobCIndexTestTable,-1) ') 18 19 SELECT * FROM [dbo].[DBCCResult] ORDER BY [PageType] DESC 20 21 --插入10000条记录 22 DECLARE @i INT 23 SET @i=4 24 WHILE @i<10001 25 BEGIN 26 INSERT INTO [dbo].[LobCIndexTestTable] ( [id],name, [comment] ) 27 SELECT @i,'中国','你好你好你好你好你好你好你好你好' 28 SET @i=@i+1 29 END 30 31 SELECT * FROM LobCIndexTestTable 32 GO 33 34 DBCC TRACEON(3604,-1) 35 GO 36 DBCC PAGE([pratice],1,28815,3) --lob页面 37 GO 38 DBCC PAGE([pratice],1,37376,3) --聚集索引页面 39 GO 40 DBCC PAGE([pratice],1,37350,3) --数据页面 41 GO
聚集索引表跟非聚集索引表也是一样,在10000条记录的表中也没有出现Lob_tree_page 页
表中的结构跟非聚集索引表一样
普通数据页面也是有指针指向LOB页面
在MSDN中的聚集索引结构和非聚集索引结构的文章里对于LOB页面的解释
http://msdn.microsoft.com/zh-cn/library/ms177484(v=SQL.90).aspx
http://msdn.microsoft.com/zh-cn/library/ms177443(v=SQL.90).aspx
如果聚集索引包含大型对象 (LOB) 列,则它的每个分区中还会有一个 LOB_DATA 分配单元。
如果非聚集索引包含大型对象 (LOB) 列,则还有一个针对每个分区的 LOB_DATA 分配单元。
列存储索引表
结果有点让人失望,聚集索引表和非聚集索引表都没有出现Lob_tree_page 页
在SQLSERVER2012里新增了列存储索引,我们来看一下
使用下面的脚本建立列存储索引
1 USE [pratice] 2 GO 3 CREATE TABLE TestTable 4 ( 5 id INT , 6 c1 INT , 7 c2 INT 8 ) 9 10 DECLARE @i INT 11 SET @i=1 12 WHILE @i<10001 13 BEGIN 14 INSERT INTO TestTable (id,c1) 15 SELECT @i,@i 16 SET @i=@i+1 17 END 18 19 CREATE NONCLUSTERED columnstore INDEX PK__TestTabl__ColumnStore ON TestTable(c1) 20 21 --TRUNCATE TABLE [dbo].[DBCCResult] 22 INSERT INTO DBCCResult EXEC ('DBCC IND(pratice,TestTable,-1) ') 23 24 SELECT * FROM [dbo].[DBCCResult] ORDER BY [PageType] DESC
可以看到出现了Lob_tree_page 页
列存储索引属于非聚集索引,因为indexid=2,是非聚集索引的一部分,但是刚才在聚集索引的那个环节,LOB页面也属于聚集索引的一部分啊?
刚才非聚集索引表的页面情况
刚才聚集索引表的页面情况
列存储索引比聚集索引表的页面结构多了一个Lob_tree_page 页
究竟是怎麽回事?那天问了微软的孙大侠,他给出了这样的解释
即使是Blob数据类型,在SQL Server之中也是通过Tree的方式进行存储,也就是说也会分为Root Structure->Intermediate Node->Blocks的方式。
所以就存在了Lob_Tree_Page和Lob_Mix_Page,简单的说Tree只包含了到下一级页的指针,不包含数据;Mix则包含数据和部分指针。
他说的Blocks的意思是指leaf Node,也就是:Root Structure->Intermediate Node->leaf Node
大家可能看书的时候听过:SQLSERVER数据库中有混合区和统一区的说法,但是没有听说过混合页的说法吧(Lob_Mix_Page)
根据他们的说法,我画了一下LOB结构的草图
但是indexlevel列全部都是0,也就是说LOB页面是没有分等级的,所以我上面画的图也不一定正确
为什麽在聚集索引表中,LOB页面没有Lob_Tree_Page,我们来看一下列存储索引表里面的408和409页面
1 DBCC TRACEON(3604,-1) 2 GO 3 DBCC PAGE([pratice],1,408,3) --LOB类型为4 4 GO 5 DBCC PAGE([pratice],1,409,3) --LOB类型为3 6 GO
408页面内容
1 DBCC 执行完毕。如果 DBCC 输出了错误信息,请与系统管理员联系。 2 3 PAGE: (1:408) 4 5 6 BUFFER: 7 8 9 BUF @0x0000000004F88280 10 11 bpage = 0x00000001AC9AA000 bhash = 0x0000000000000000 bpageno = (1:408) 12 bdbid = 8 breferences = 0 bcputicks = 0 13 bsampleCount = 0 bUse1 = 4178 bstat = 0x9 14 blog = 0x15a bnext = 0x0000000000000000 15 16 PAGE HEADER: 17 18 19 Page @0x00000001AC9AA000 20 21 m_pageId = (1:408) m_headerVersion = 1 m_type = 4 22 m_typeFlagBits = 0x0 m_level = 0 m_flagBits = 0xc200 23 m_objId (AllocUnitId.idObj) = 254 m_indexId (AllocUnitId.idInd) = 256 24 Metadata: AllocUnitId = 72057594054574080 25 Metadata: PartitionId = 72057594046840832 Metadata: IndexId = 2 26 Metadata: ObjectId = 434100587 m_prevPage = (0:0) m_nextPage = (0:0) 27 pminlen = 0 m_slotCnt = 1 m_freeCnt = 7898 28 m_freeData = 292 m_reservedCnt = 0 m_lsn = (2561:1989:66) 29 m_xactReserved = 0 m_xdesId = (0:0) m_ghostRecCnt = 0 30 m_tornBits = 1200443217 DB Frag ID = 1 31 32 Allocation Status 33 34 GAM (1:2) = ALLOCATED SGAM (1:3) = NOT ALLOCATED PFS (1:1) = 0x44 ALLOCATED 100_PCT_FULL 35 DIFF (1:6) = CHANGED ML (1:7) = NOT MIN_LOGGED 36 37 38 Blob row at: Page (1:408) Slot 0 Length: 196 Type: 2 (INTERNAL) 39 40 Blob Id: 28967305216 Level: 0 MaxLinks: 501 CurLinks: 11 41 42 Child 0 at Page (1:403) Slot 0 Size: 8040 Offset: 8040 43 44 Child 1 at Page (1:404) Slot 0 Size: 8040 Offset: 16080 45 46 Child 2 at Page (1:405) Slot 0 Size: 8040 Offset: 24120 47 48 Child 3 at Page (1:406) Slot 0 Size: 8040 Offset: 32160 49 50 Child 4 at Page (1:407) Slot 0 Size: 8040 Offset: 40200 51 52 Child 5 at Page (1:409) Slot 0 Size: 8040 Offset: 48240 53 54 Child 6 at Page (1:410) Slot 0 Size: 8040 Offset: 56280 55 56 Child 7 at Page (1:411) Slot 0 Size: 8040 Offset: 64320 57 58 Child 8 at Page (1:412) Slot 0 Size: 8040 Offset: 72360 59 60 Child 9 at Page (1:413) Slot 0 Size: 8040 Offset: 80400 61 62 Child 10 at Page (1:414) Slot 0 Size: 312 Offset: 80712 63 64 65 66 DBCC 执行完毕。如果 DBCC 输出了错误信息,请与系统管理员联系。
Child 0 at Page (1:403) Slot 0 Size: 8040 Offset: 8040
Child 1 at Page (1:404) Slot 0 Size: 8040 Offset: 16080
Child 2 at Page (1:405) Slot 0 Size: 8040 Offset: 24120
Child 3 at Page (1:406) Slot 0 Size: 8040 Offset: 32160
Child 4 at Page (1:407) Slot 0 Size: 8040 Offset: 40200
Child 5 at Page (1:409) Slot 0 Size: 8040 Offset: 48240
Child 6 at Page (1:410) Slot 0 Size: 8040 Offset: 56280
Child 7 at Page (1:411) Slot 0 Size: 8040 Offset: 64320
Child 8 at Page (1:412) Slot 0 Size: 8040 Offset: 72360
Child 9 at Page (1:413) Slot 0 Size: 8040 Offset: 80400
Child 10 at Page (1:414) Slot 0 Size: 312 Offset: 80712
可以看到他属下所连接的LOB子页面
409页面的内容
1 PAGE: (1:409) 2 3 4 BUFFER: 5 6 7 BUF @0x0000000004F881C0 8 9 bpage = 0x00000001AC9B2000 bhash = 0x0000000000000000 bpageno = (1:409) 10 bdbid = 8 breferences = 0 bcputicks = 0 11 bsampleCount = 0 bUse1 = 4452 bstat = 0x9 12 blog = 0x15a bnext = 0x0000000000000000 13 14 PAGE HEADER: 15 16 17 Page @0x00000001AC9B2000 18 19 m_pageId = (1:409) m_headerVersion = 1 m_type = 3 20 m_typeFlagBits = 0x0 m_level = 0 m_flagBits = 0x8200 21 m_objId (AllocUnitId.idObj) = 254 m_indexId (AllocUnitId.idInd) = 256 22 Metadata: AllocUnitId = 72057594054574080 23 Metadata: PartitionId = 72057594046840832 Metadata: IndexId = 2 24 Metadata: ObjectId = 434100587 m_prevPage = (0:0) m_nextPage = (0:0) 25 pminlen = 0 m_slotCnt = 1 m_freeCnt = 40 26 m_freeData = 8150 m_reservedCnt = 0 m_lsn = (2561:1989:22) 27 m_xactReserved = 0 m_xdesId = (0:0) m_ghostRecCnt = 0 28 m_tornBits = -454517409 DB Frag ID = 1 29 30 Allocation Status 31 32 GAM (1:2) = ALLOCATED SGAM (1:3) = NOT ALLOCATED PFS (1:1) = 0x44 ALLOCATED 100_PCT_FULL 33 DIFF (1:6) = CHANGED ML (1:7) = NOT MIN_LOGGED 34 35 36 Blob row at: Page (1:409) Slot 0 Length: 8054 Type: 3 (DATA) 37 38 Blob Id:28967305216 39 40 41 42 000000005815A06E: 00000002 01960000 00000002 01970000 ................ 43 44 000000005815A07E: 00000002 01980000 00000002 01990000 ................ 45 46 000000005815A08E: 00000002 019a0000 00000002 019b0000 ................ 47 48 000000005815A09E: 00000002 019c0000 00000002 019d0000 ................ 49 50 000000005815A0AE: 00000002 019e0000 00000002 019f0000 ................ 51 52 000000005815A0BE: 00000002 01a00000 00000002 01a10000 ................ 53 54 000000005815A0CE: 00000002 01a20000 00000002 01a30000 ................ 55 56 000000005815A0DE: 00000002 01a40000 00000002 01a50000 ................ 57 58 000000005815A0EE: 00000002 01a60000 00000002 01a70000 ................ 59 60 000000005815A0FE: 00000002 01a80000 00000002 01a90000 ................ 61 62 000000005815A10E: 00000002 01aa0000 00000002 01ab0000 ................ 63 64 000000005815A11E: 00000002 01ac0000 00000002 01ad0000 ................ 65 66 000000005815A12E: 00000002 01ae0000 00000002 01af0000 ................ 67 68 000000005815A13E: 00000002 01b00000 00000002 01b10000 ................ 69 70 000000005815A14E: 00000002 01b20000 00000002 01b30000 ................ 71 72 000000005815A15E: 00000002 01b40000 00000002 01b50000 ................ 73 74 000000005815A16E: 00000002 01b60000 00000002 01b70000 ................ 75 76 000000005815A17E: 00000002 01b80000 00000002 01b90000 ................ 77 78 000000005815A18E: 00000002 01ba0000 00000002 01bb0000 ................ 79 80 000000005815A19E: 00000002 01bc0000 00000002 01bd0000 ................ 81 82 000000005815A1AE: 00000002 01be0000 00000002 01bf0000 ................ 83 84 000000005815A1BE: 00000002 01c00000 00000002 01c10000 ................ 85 86 000000005815A1CE: 00000002 01c20000 00000002 01c30000 ................ 87 88 000000005815A1DE: 00000002 01c40000 00000003 00000000 ................ 89 90 000000005815A1EE: 00000003 00010000 00000003 00020000 ................ 91 92 000000005815A1FE: 00000003 00030000 00000003 00040000 ................ 93 94 000000005815A20E: 00000003 00050000 00000003 00060000 ................ 95 96 000000005815A21E: 00000003 00070000 00000003 00080000 ................ 97 98 000000005815A22E: 00000003 00090000 00000003 000a0000 ................ 99 100 000000005815A23E: 00000003 000b0000 00000003 000c0000 ................ 101 102 000000005815A24E: 00000003 000d0000 00000003 000e0000 ................ 103 104 000000005815A25E: 00000003 000f0000 00000003 00100000 ................ 105 106 000000005815A26E: 00000003 00110000 00000003 00120000 ................ 107 108 000000005815A27E: 00000003 00130000 00000003 00140000 ................ 109 110 000000005815A28E: 00000003 00150000 00000003 00160000 ................ 111 112 000000005815A29E: 00000003 00170000 00000003 00180000 ................ 113 114 000000005815A2AE: 00000003 00190000 00000003 001a0000 ................ 115 116 000000005815A2BE: 00000003 001b0000 00000003 001c0000 ................ 117 118 000000005815A2CE: 00000003 001d0000 00000003 001e0000 ................ 119 120 000000005815A2DE: 00000003 001f0000 00000003 00200000 .............. . 121 122 000000005815A2EE: 00000003 00210000 00000003 00220000 ......!.......". 123 124 000000005815A2FE: 00000003 00230000 00000003 00240000 ......#.......$. 125 126 000000005815A30E: 00000003 00250000 00000003 00260000 ......%.......&. 127 128 000000005815A31E: 00000003 00270000 00000003 00280000 ......'.......(. 129 130 000000005815A32E: 00000003 00290000 00000003 002a0000 ......).......*. 131 132 000000005815A33E: 00000003 002b0000 00000003 002c0000 ......+.......,. 133 134 000000005815A34E: 00000003 002d0000 00000003 002e0000 ......-......... 135 136 000000005815A35E: 00000003 002f0000 00000003 00300000 ....../.......0. 137 138 000000005815A36E: 00000003 00310000 00000003 00320000 ......1.......2. 139 140 000000005815A37E: 00000003 00330000 00000003 00340000 ......3.......4. 141 142 000000005815A38E: 00000003 00350000 00000003 00360000 ......5.......6. 143 144 000000005815A39E: 00000003 00370000 00000003 00380000 ......7.......8. 145 146 000000005815A3AE: 00000003 00390000 00000003 003a0000 ......9.......:. 147 148 000000005815A3BE: 00000003 003b0000 00000003 003c0000 ......;.......<. 149 150 000000005815A3CE: 00000003 003d0000 00000003 003e0000 ......=.......>. 151 152 000000005815A3DE: 00000003 003f0000 00000003 00400000 ......?.......@. 153 154 000000005815A3EE: 00000003 00410000 00000003 00420000 ......A.......B. 155 156 000000005815A3FE: 00000003 00430000 00000003 00440000 ......C.......D. 157 158 000000005815A40E: 00000003 00450000 00000003 00460000 ......E.......F. 159 160 000000005815A41E: 00000003 00470000 00000003 00480000 ......G.......H. 161 162 000000005815A42E: 00000003 00490000 00000003 004a0000 ......I.......J. 163 164 000000005815A43E: 00000003 004b0000 00000003 004c0000 ......K.......L. 165 166 000000005815A44E: 00000003 004d0000 00000003 004e0000 ......M.......N. 167 168 000000005815A45E: 00000003 004f0000 00000003 00500000 ......O.......P. 169 170 000000005815A46E: 00000003 00510000 00000003 00520000 ......Q.......R. 171 172 000000005815A47E: 00000003 00530000 00000003 00540000 ......S.......T. 173 174 000000005815A48E: 00000003 00550000 00000003 00560000 ......U.......V. 175 176 000000005815A49E: 00000003 00570000 00000003 00580000 ......W.......X. 177 178 000000005815A4AE: 00000003 00590000 00000003 005a0000 ......Y.......Z. 179 180 000000005815A4BE: 00000003 005b0000 00000003 005c0000 ......[.......\. 181 182 000000005815A4CE: 00000003 005d0000 00000003 005e0000 ......].......^. 183 184 000000005815A4DE: 00000003 005f0000 00000003 00600000 ......_.......`. 185 186 000000005815A4EE: 00000003 00610000 00000003 00620000 ......a.......b. 187 188 000000005815A4FE: 00000003 00630000 00000003 00640000 ......c.......d. 189 190 000000005815A50E: 00000003 00650000 00000003 00660000 ......e.......f. 191 192 000000005815A51E: 00000003 00670000 00000003 00680000 ......g.......h. 193 194 000000005815A52E: 00000003 00690000 00000003 006a0000 ......i.......j. 195 196 000000005815A53E: 00000003 006b0000 00000003 006c0000 ......k.......l. 197 198 000000005815A54E: 00000003 006d0000 00000003 006e0000 ......m.......n. 199 200 000000005815A55E: 00000003 006f0000 00000003 00700000 ......o.......p. 201 202 000000005815A56E: 00000003 00710000 00000003 00720000 ......q.......r. 203 204 000000005815A57E: 00000003 00730000 00000003 00740000 ......s.......t. 205 206 000000005815A58E: 00000003 00750000 00000003 00760000 ......u.......v. 207 208 000000005815A59E: 00000003 00770000 00000003 00780000 ......w.......x. 209 210 000000005815A5AE: 00000003 00790000 00000003 007a0000 ......y.......z. 211 212 000000005815A5BE: 00000003 007b0000 00000003 007c0000 ......{.......|. 213 214 000000005815A5CE: 00000003 007d0000 00000003 007e0000 ......}.......~. 215 216 000000005815A5DE: 00000003 007f0000 00000003 00800000 ................ 217 218 000000005815A5EE: 00000003 00810000 00000003 00820000 ................ 219 220 000000005815A5FE: 00000003 00830000 00000003 00840000 ................ 221 222 000000005815A60E: 00000003 00850000 00000003 00860000 ................ 223 224 000000005815A61E: 00000003 00870000 00000003 00880000 ................ 225 226 000000005815A62E: 00000003 00890000 00000003 008a0000 ................ 227 228 000000005815A63E: 00000003 008b0000 00000003 008c0000 ................ 229 230 000000005815A64E: 00000003 008d0000 00000003 008e0000 ................ 231 232 000000005815A65E: 00000003 008f0000 00000003 00900000 ................ 233 234 000000005815A66E: 00000003 00910000 00000003 00920000 ................ 235 236 000000005815A67E: 00000003 00930000 00000003 00940000 ................ 237 238 000000005815A68E: 00000003 00950000 00000003 00960000 ................ 239 240 000000005815A69E: 00000003 00970000 00000003 00980000 ................ 241 242 000000005815A6AE: 00000003 00990000 00000003 009a0000 ................ 243 244 000000005815A6BE: 00000003 009b0000 00000003 009c0000 ................ 245 246 000000005815A6CE: 00000003 009d0000 00000003 009e0000 ................ 247 248 000000005815A6DE: 00000003 009f0000 00000003 00a00000 ................ 249 250 000000005815A6EE: 00000003 00a10000 00000003 00a20000 ................ 251 252 000000005815A6FE: 00000003 00a30000 00000003 00a40000 ................ 253 254 000000005815A70E: 00000003 00a50000 00000003 00a60000 ................ 255 256 000000005815A71E: 00000003 00a70000 00000003 00a80000 ................ 257 258 000000005815A72E: 00000003 00a90000 00000003 00aa0000 ................ 259 260 000000005815A73E: 00000003 00ab0000 00000003 00ac0000 ................ 261 262 000000005815A74E: 00000003 00ad0000 00000003 00ae0000 ................ 263 264 000000005815A75E: 00000003 00af0000 00000003 00b00000 ................ 265 266 000000005815A76E: 00000003 00b10000 00000003 00b20000 ................ 267 268 000000005815A77E: 00000003 00b30000 00000003 00b40000 ................ 269 270 000000005815A78E: 00000003 00b50000 00000003 00b60000 ................ 271 272 000000005815A79E: 00000003 00b70000 00000003 00b80000 ................ 273 274 000000005815A7AE: 00000003 00b90000 00000003 00ba0000 ................ 275 276 000000005815A7BE: 00000003 00bb0000 00000003 00bc0000 ................ 277 278 000000005815A7CE: 00000003 00bd0000 00000003 00be0000 ................ 279 280 000000005815A7DE: 00000003 00bf0000 00000003 00c00000 ................ 281 282 000000005815A7EE: 00000003 00c10000 00000003 00c20000 ................ 283 284 000000005815A7FE: 00000003 00c30000 00000003 00c40000 ................ 285 286 000000005815A80E: 00000003 00c50000 00000003 00c60000 ................ 287 288 000000005815A81E: 00000003 00c70000 00000003 00c80000 ................ 289 290 000000005815A82E: 00000003 00c90000 00000003 00ca0000 ................ 291 292 000000005815A83E: 00000003 00cb0000 00000003 00cc0000 ................ 293 294 000000005815A84E: 00000003 00cd0000 00000003 00ce0000 ................ 295 296 000000005815A85E: 00000003 00cf0000 00000003 00d00000 ................ 297 298 000000005815A86E: 00000003 00d10000 00000003 00d20000 ................ 299 300 000000005815A87E: 00000003 00d30000 00000003 00d40000 ................ 301 302 000000005815A88E: 00000003 00d50000 00000003 00d60000 ................ 303 304 000000005815A89E: 00000003 00d70000 00000003 00d80000 ................ 305 306 000000005815A8AE: 00000003 00d90000 00000003 00da0000 ................ 307 308 000000005815A8BE: 00000003 00db0000 00000003 00dc0000 ................ 309 310 000000005815A8CE: 00000003 00dd0000 00000003 00de0000 ................ 311 312 000000005815A8DE: 00000003 00df0000 00000003 00e00000 ................ 313 314 000000005815A8EE: 00000003 00e10000 00000003 00e20000 ................ 315 316 000000005815A8FE: 00000003 00e30000 00000003 00e40000 ................ 317 318 000000005815A90E: 00000003 00e50000 00000003 00e60000 ................ 319 320 000000005815A91E: 00000003 00e70000 00000003 00e80000 ................ 321 322 000000005815A92E: 00000003 00e90000 00000003 00ea0000 ................ 323 324 000000005815A93E: 00000003 00eb0000 00000003 00ec0000 ................ 325 326 000000005815A94E: 00000003 00ed0000 00000003 00ee0000 ................ 327 328 000000005815A95E: 00000003 00ef0000 00000003 00f00000 ................ 329 330 000000005815A96E: 00000003 00f10000 00000003 00f20000 ................ 331 332 000000005815A97E: 00000003 00f30000 00000003 00f40000 ................ 333 334 000000005815A98E: 00000003 00f50000 00000003 00f60000 ................ 335 336 000000005815A99E: 00000003 00f70000 00000003 00f80000 ................ 337 338 000000005815A9AE: 00000003 00f90000 00000003 00fa0000 ................ 339 340 000000005815A9BE: 00000003 00fb0000 00000003 00fc0000 ................ 341 342 000000005815A9CE: 00000003 00fd0000 00000003 00fe0000 ................ 343 344 000000005815A9DE: 00000003 00ff0000 00000003 01000000 ................ 345 346 000000005815A9EE: 00000003 01010000 00000003 01020000 ................ 347 348 000000005815A9FE: 00000003 01030000 00000003 01040000 ................ 349 350 000000005815AA0E: 00000003 01050000 00000003 01060000 ................ 351 352 000000005815AA1E: 00000003 01070000 00000003 01080000 ................ 353 354 000000005815AA2E: 00000003 01090000 00000003 010a0000 ................ 355 356 000000005815AA3E: 00000003 010b0000 00000003 010c0000 ................ 357 358 000000005815AA4E: 00000003 010d0000 00000003 010e0000 ................ 359 360 000000005815AA5E: 00000003 010f0000 00000003 01100000 ................ 361 362 000000005815AA6E: 00000003 01110000 00000003 01120000 ................ 363 364 000000005815AA7E: 00000003 01130000 00000003 01140000 ................ 365 366 000000005815AA8E: 00000003 01150000 00000003 01160000 ................ 367 368 000000005815AA9E: 00000003 01170000 00000003 01180000 ................ 369 370 000000005815AAAE: 00000003 01190000 00000003 011a0000 ................ 371 372 000000005815AABE: 00000003 011b0000 00000003 011c0000 ................ 373 374 000000005815AACE: 00000003 011d0000 00000003 011e0000 ................ 375 376 000000005815AADE: 00000003 011f0000 00000003 01200000 .............. . 377 378 000000005815AAEE: 00000003 01210000 00000003 01220000 ......!.......". 379 380 000000005815AAFE: 00000003 01230000 00000003 01240000 ......#.......$. 381 382 000000005815AB0E: 00000003 01250000 00000003 01260000 ......%.......&. 383 384 000000005815AB1E: 00000003 01270000 00000003 01280000 ......'.......(. 385 386 000000005815AB2E: 00000003 01290000 00000003 012a0000 ......).......*. 387 388 000000005815AB3E: 00000003 012b0000 00000003 012c0000 ......+.......,. 389 390 000000005815AB4E: 00000003 012d0000 00000003 012e0000 ......-......... 391 392 000000005815AB5E: 00000003 012f0000 00000003 01300000 ....../.......0. 393 394 000000005815AB6E: 00000003 01310000 00000003 01320000 ......1.......2. 395 396 000000005815AB7E: 00000003 01330000 00000003 01340000 ......3.......4. 397 398 000000005815AB8E: 00000003 01350000 00000003 01360000 ......5.......6. 399 400 000000005815AB9E: 00000003 01370000 00000003 01380000 ......7.......8. 401 402 000000005815ABAE: 00000003 01390000 00000003 013a0000 ......9.......:. 403 404 000000005815ABBE: 00000003 013b0000 00000003 013c0000 ......;.......<. 405 406 000000005815ABCE: 00000003 013d0000 00000003 013e0000 ......=.......>. 407 408 000000005815ABDE: 00000003 013f0000 00000003 01400000 ......?.......@. 409 410 000000005815ABEE: 00000003 01410000 00000003 01420000 ......A.......B. 411 412 000000005815ABFE: 00000003 01430000 00000003 01440000 ......C.......D. 413 414 000000005815AC0E: 00000003 01450000 00000003 01460000 ......E.......F. 415 416 000000005815AC1E: 00000003 01470000 00000003 01480000 ......G.......H. 417 418 000000005815AC2E: 00000003 01490000 00000003 014a0000 ......I.......J. 419 420 000000005815AC3E: 00000003 014b0000 00000003 014c0000 ......K.......L. 421 422 000000005815AC4E: 00000003 014d0000 00000003 014e0000 ......M.......N. 423 424 000000005815AC5E: 00000003 014f0000 00000003 01500000 ......O.......P. 425 426 000000005815AC6E: 00000003 01510000 00000003 01520000 ......Q.......R. 427 428 000000005815AC7E: 00000003 01530000 00000003 01540000 ......S.......T. 429 430 000000005815AC8E: 00000003 01550000 00000003 01560000 ......U.......V. 431 432 000000005815AC9E: 00000003 01570000 00000003 01580000 ......W.......X. 433 434 000000005815ACAE: 00000003 01590000 00000003 015a0000 ......Y.......Z. 435 436 000000005815ACBE: 00000003 015b0000 00000003 015c0000 ......[.......\. 437 438 000000005815ACCE: 00000003 015d0000 00000003 015e0000 ......].......^. 439 440 000000005815ACDE: 00000003 015f0000 00000003 01600000 ......_.......`. 441 442 000000005815ACEE: 00000003 01610000 00000003 01620000 ......a.......b. 443 444 000000005815ACFE: 00000003 01630000 00000003 01640000 ......c.......d. 445 446 000000005815AD0E: 00000003 01650000 00000003 01660000 ......e.......f. 447 448 000000005815AD1E: 00000003 01670000 00000003 01680000 ......g.......h. 449 450 000000005815AD2E: 00000003 01690000 00000003 016a0000 ......i.......j. 451 452 000000005815AD3E: 00000003 016b0000 00000003 016c0000 ......k.......l. 453 454 000000005815AD4E: 00000003 016d0000 00000003 016e0000 ......m.......n. 455 456 000000005815AD5E: 00000003 016f0000 00000003 01700000 ......o.......p. 457 458 000000005815AD6E: 00000003 01710000 00000003 01720000 ......q.......r. 459 460 000000005815AD7E: 00000003 01730000 00000003 01740000 ......s.......t. 461 462 000000005815AD8E: 00000003 01750000 00000003 01760000 ......u.......v. 463 464 000000005815AD9E: 00000003 01770000 00000003 01780000 ......w.......x. 465 466 000000005815ADAE: 00000003 01790000 00000003 017a0000 ......y.......z. 467 468 000000005815ADBE: 00000003 017b0000 00000003 017c0000 ......{.......|. 469 470 000000005815ADCE: 00000003 017d0000 00000003 017e0000 ......}.......~. 471 472 000000005815ADDE: 00000003 017f0000 00000003 01800000 ................ 473 474 000000005815ADEE: 00000003 01810000 00000003 01820000 ................ 475 476 000000005815ADFE: 00000003 01830000 00000003 01840000 ................ 477 478 000000005815AE0E: 00000003 01850000 00000003 01860000 ................ 479 480 000000005815AE1E: 00000003 01870000 00000003 01880000 ................ 481 482 000000005815AE2E: 00000003 01890000 00000003 018a0000 ................ 483 484 000000005815AE3E: 00000003 018b0000 00000003 018c0000 ................ 485 486 000000005815AE4E: 00000003 018d0000 00000003 018e0000 ................ 487 488 000000005815AE5E: 00000003 018f0000 00000003 01900000 ................ 489 490 000000005815AE6E: 00000003 01910000 00000003 01920000 ................ 491 492 000000005815AE7E: 00000003 01930000 00000003 01940000 ................ 493 494 000000005815AE8E: 00000003 01950000 00000003 01960000 ................ 495 496 000000005815AE9E: 00000003 01970000 00000003 01980000 ................ 497 498 000000005815AEAE: 00000003 01990000 00000003 019a0000 ................ 499 500 000000005815AEBE: 00000003 019b0000 00000003 019c0000 ................ 501 502 000000005815AECE: 00000003 019d0000 00000003 019e0000 ................ 503 504 000000005815AEDE: 00000003 019f0000 00000003 01a00000 ................ 505 506 000000005815AEEE: 00000003 01a10000 00000003 01a20000 ................ 507 508 000000005815AEFE: 00000003 01a30000 00000003 01a40000 ................ 509 510 000000005815AF0E: 00000003 01a50000 00000003 01a60000 ................ 511 512 000000005815AF1E: 00000003 01a70000 00000003 01a80000 ................ 513 514 000000005815AF2E: 00000003 01a90000 00000003 01aa0000 ................ 515 516 000000005815AF3E: 00000003 01ab0000 00000003 01ac0000 ................ 517 518 000000005815AF4E: 00000003 01ad0000 00000003 01ae0000 ................ 519 520 000000005815AF5E: 00000003 01af0000 00000003 01b00000 ................ 521 522 000000005815AF6E: 00000003 01b10000 00000003 01b20000 ................ 523 524 000000005815AF7E: 00000003 01b30000 00000003 01b40000 ................ 525 526 000000005815AF8E: 00000003 01b50000 00000003 01b60000 ................ 527 528 000000005815AF9E: 00000003 01b70000 00000003 01b80000 ................ 529 530 000000005815AFAE: 00000003 01b90000 00000003 01ba0000 ................ 531 532 000000005815AFBE: 00000003 01bb0000 00000003 01bc0000 ................ 533 534 000000005815AFCE: 00000003 01bd0000 00000003 01be0000 ................ 535 536 000000005815AFDE: 00000003 01bf0000 00000003 01c00000 ................ 537 538 000000005815AFEE: 00000003 01c10000 00000003 01c20000 ................ 539 540 000000005815AFFE: 00000003 01c30000 00000003 01c40000 ................ 541 542 000000005815B00E: 00000004 00000000 00000004 00010000 ................ 543 544 000000005815B01E: 00000004 00020000 00000004 00030000 ................ 545 546 000000005815B02E: 00000004 00040000 00000004 00050000 ................ 547 548 000000005815B03E: 00000004 00060000 00000004 00070000 ................ 549 550 000000005815B04E: 00000004 00080000 00000004 00090000 ................ 551 552 000000005815B05E: 00000004 000a0000 00000004 000b0000 ................ 553 554 000000005815B06E: 00000004 000c0000 00000004 000d0000 ................ 555 556 000000005815B07E: 00000004 000e0000 00000004 000f0000 ................ 557 558 000000005815B08E: 00000004 00100000 00000004 00110000 ................ 559 560 000000005815B09E: 00000004 00120000 00000004 00130000 ................ 561 562 000000005815B0AE: 00000004 00140000 00000004 00150000 ................ 563 564 000000005815B0BE: 00000004 00160000 00000004 00170000 ................ 565 566 000000005815B0CE: 00000004 00180000 00000004 00190000 ................ 567 568 000000005815B0DE: 00000004 001a0000 00000004 001b0000 ................ 569 570 000000005815B0EE: 00000004 001c0000 00000004 001d0000 ................ 571 572 000000005815B0FE: 00000004 001e0000 00000004 001f0000 ................ 573 574 000000005815B10E: 00000004 00200000 00000004 00210000 ...... .......!. 575 576 000000005815B11E: 00000004 00220000 00000004 00230000 ......".......#. 577 578 000000005815B12E: 00000004 00240000 00000004 00250000 ......$.......%. 579 580 000000005815B13E: 00000004 00260000 00000004 00270000 ......&.......'. 581 582 000000005815B14E: 00000004 00280000 00000004 00290000 ......(.......). 583 584 000000005815B15E: 00000004 002a0000 00000004 002b0000 ......*.......+. 585 586 000000005815B16E: 00000004 002c0000 00000004 002d0000 ......,.......-. 587 588 000000005815B17E: 00000004 002e0000 00000004 002f0000 ............../. 589 590 000000005815B18E: 00000004 00300000 00000004 00310000 ......0.......1. 591 592 000000005815B19E: 00000004 00320000 00000004 00330000 ......2.......3. 593 594 000000005815B1AE: 00000004 00340000 00000004 00350000 ......4.......5. 595 596 000000005815B1BE: 00000004 00360000 00000004 00370000 ......6.......7. 597 598 000000005815B1CE: 00000004 00380000 00000004 00390000 ......8.......9. 599 600 000000005815B1DE: 00000004 003a0000 00000004 003b0000 ......:.......;. 601 602 000000005815B1EE: 00000004 003c0000 00000004 003d0000 ......<.......=. 603 604 000000005815B1FE: 00000004 003e0000 00000004 003f0000 ......>.......?. 605 606 000000005815B20E: 00000004 00400000 00000004 00410000 ......@.......A. 607 608 000000005815B21E: 00000004 00420000 00000004 00430000 ......B.......C. 609 610 000000005815B22E: 00000004 00440000 00000004 00450000 ......D.......E. 611 612 000000005815B23E: 00000004 00460000 00000004 00470000 ......F.......G. 613 614 000000005815B24E: 00000004 00480000 00000004 00490000 ......H.......I. 615 616 000000005815B25E: 00000004 004a0000 00000004 004b0000 ......J.......K. 617 618 000000005815B26E: 00000004 004c0000 00000004 004d0000 ......L.......M. 619 620 000000005815B27E: 00000004 004e0000 00000004 004f0000 ......N.......O. 621 622 000000005815B28E: 00000004 00500000 00000004 00510000 ......P.......Q. 623 624 000000005815B29E: 00000004 00520000 00000004 00530000 ......R.......S. 625 626 000000005815B2AE: 00000004 00540000 00000004 00550000 ......T.......U. 627 628 000000005815B2BE: 00000004 00560000 00000004 00570000 ......V.......W. 629 630 000000005815B2CE: 00000004 00580000 00000004 00590000 ......X.......Y. 631 632 000000005815B2DE: 00000004 005a0000 00000004 005b0000 ......Z.......[. 633 634 000000005815B2EE: 00000004 005c0000 00000004 005d0000 ......\.......]. 635 636 000000005815B2FE: 00000004 005e0000 00000004 005f0000 ......^......._. 637 638 000000005815B30E: 00000004 00600000 00000004 00610000 ......`.......a. 639 640 000000005815B31E: 00000004 00620000 00000004 00630000 ......b.......c. 641 642 000000005815B32E: 00000004 00640000 00000004 00650000 ......d.......e. 643 644 000000005815B33E: 00000004 00660000 00000004 00670000 ......f.......g. 645 646 000000005815B34E: 00000004 00680000 00000004 00690000 ......h.......i. 647 648 000000005815B35E: 00000004 006a0000 00000004 006b0000 ......j.......k. 649 650 000000005815B36E: 00000004 006c0000 00000004 006d0000 ......l.......m. 651 652 000000005815B37E: 00000004 006e0000 00000004 006f0000 ......n.......o. 653 654 000000005815B38E: 00000004 00700000 00000004 00710000 ......p.......q. 655 656 000000005815B39E: 00000004 00720000 00000004 00730000 ......r.......s. 657 658 000000005815B3AE: 00000004 00740000 00000004 00750000 ......t.......u. 659 660 000000005815B3BE: 00000004 00760000 00000004 00770000 ......v.......w. 661 662 000000005815B3CE: 00000004 00780000 00000004 00790000 ......x.......y. 663 664 000000005815B3DE: 00000004 007a0000 00000004 007b0000 ......z.......{. 665 666 000000005815B3EE: 00000004 007c0000 00000004 007d0000 ......|.......}. 667 668 000000005815B3FE: 00000004 007e0000 00000004 007f0000 ......~......... 669 670 000000005815B40E: 00000004 00800000 00000004 00810000 ................ 671 672 000000005815B41E: 00000004 00820000 00000004 00830000 ................ 673 674 000000005815B42E: 00000004 00840000 00000004 00850000 ................ 675 676 000000005815B43E: 00000004 00860000 00000004 00870000 ................ 677 678 000000005815B44E: 00000004 00880000 00000004 00890000 ................ 679 680 000000005815B45E: 00000004 008a0000 00000004 008b0000 ................ 681 682 000000005815B46E: 00000004 008c0000 00000004 008d0000 ................ 683 684 000000005815B47E: 00000004 008e0000 00000004 008f0000 ................ 685 686 000000005815B48E: 00000004 00900000 00000004 00910000 ................ 687 688 000000005815B49E: 00000004 00920000 00000004 00930000 ................ 689 690 000000005815B4AE: 00000004 00940000 00000004 00950000 ................ 691 692 000000005815B4BE: 00000004 00960000 00000004 00970000 ................ 693 694 000000005815B4CE: 00000004 00980000 00000004 00990000 ................ 695 696 000000005815B4DE: 00000004 009a0000 00000004 009b0000 ................ 697 698 000000005815B4EE: 00000004 009c0000 00000004 009d0000 ................ 699 700 000000005815B4FE: 00000004 009e0000 00000004 009f0000 ................ 701 702 000000005815B50E: 00000004 00a00000 00000004 00a10000 ................ 703 704 000000005815B51E: 00000004 00a20000 00000004 00a30000 ................ 705 706 000000005815B52E: 00000004 00a40000 00000004 00a50000 ................ 707 708 000000005815B53E: 00000004 00a60000 00000004 00a70000 ................ 709 710 000000005815B54E: 00000004 00a80000 00000004 00a90000 ................ 711 712 000000005815B55E: 00000004 00aa0000 00000004 00ab0000 ................ 713 714 000000005815B56E: 00000004 00ac0000 00000004 00ad0000 ................ 715 716 000000005815B57E: 00000004 00ae0000 00000004 00af0000 ................ 717 718 000000005815B58E: 00000004 00b00000 00000004 00b10000 ................ 719 720 000000005815B59E: 00000004 00b20000 00000004 00b30000 ................ 721 722 000000005815B5AE: 00000004 00b40000 00000004 00b50000 ................ 723 724 000000005815B5BE: 00000004 00b60000 00000004 00b70000 ................ 725 726 000000005815B5CE: 00000004 00b80000 00000004 00b90000 ................ 727 728 000000005815B5DE: 00000004 00ba0000 00000004 00bb0000 ................ 729 730 000000005815B5EE: 00000004 00bc0000 00000004 00bd0000 ................ 731 732 000000005815B5FE: 00000004 00be0000 00000004 00bf0000 ................ 733 734 000000005815B60E: 00000004 00c00000 00000004 00c10000 ................ 735 736 000000005815B61E: 00000004 00c20000 00000004 00c30000 ................ 737 738 000000005815B62E: 00000004 00c40000 00000004 00c50000 ................ 739 740 000000005815B63E: 00000004 00c60000 00000004 00c70000 ................ 741 742 000000005815B64E: 00000004 00c80000 00000004 00c90000 ................ 743 744 000000005815B65E: 00000004 00ca0000 00000004 00cb0000 ................ 745 746 000000005815B66E: 00000004 00cc0000 00000004 00cd0000 ................ 747 748 000000005815B67E: 00000004 00ce0000 00000004 00cf0000 ................ 749 750 000000005815B68E: 00000004 00d00000 00000004 00d10000 ................ 751 752 000000005815B69E: 00000004 00d20000 00000004 00d30000 ................ 753 754 000000005815B6AE: 00000004 00d40000 00000004 00d50000 ................ 755 756 000000005815B6BE: 00000004 00d60000 00000004 00d70000 ................ 757 758 000000005815B6CE: 00000004 00d80000 00000004 00d90000 ................ 759 760 000000005815B6DE: 00000004 00da0000 00000004 00db0000 ................ 761 762 000000005815B6EE: 00000004 00dc0000 00000004 00dd0000 ................ 763 764 000000005815B6FE: 00000004 00de0000 00000004 00df0000 ................ 765 766 000000005815B70E: 00000004 00e00000 00000004 00e10000 ................ 767 768 000000005815B71E: 00000004 00e20000 00000004 00e30000 ................ 769 770 000000005815B72E: 00000004 00e40000 00000004 00e50000 ................ 771 772 000000005815B73E: 00000004 00e60000 00000004 00e70000 ................ 773 774 000000005815B74E: 00000004 00e80000 00000004 00e90000 ................ 775 776 000000005815B75E: 00000004 00ea0000 00000004 00eb0000 ................ 777 778 000000005815B76E: 00000004 00ec0000 00000004 00ed0000 ................ 779 780 000000005815B77E: 00000004 00ee0000 00000004 00ef0000 ................ 781 782 000000005815B78E: 00000004 00f00000 00000004 00f10000 ................ 783 784 000000005815B79E: 00000004 00f20000 00000004 00f30000 ................ 785 786 000000005815B7AE: 00000004 00f40000 00000004 00f50000 ................ 787 788 000000005815B7BE: 00000004 00f60000 00000004 00f70000 ................ 789 790 000000005815B7CE: 00000004 00f80000 00000004 00f90000 ................ 791 792 000000005815B7DE: 00000004 00fa0000 00000004 00fb0000 ................ 793 794 000000005815B7EE: 00000004 00fc0000 00000004 00fd0000 ................ 795 796 000000005815B7FE: 00000004 00fe0000 00000004 00ff0000 ................ 797 798 000000005815B80E: 00000004 01000000 00000004 01010000 ................ 799 800 000000005815B81E: 00000004 01020000 00000004 01030000 ................ 801 802 000000005815B82E: 00000004 01040000 00000004 01050000 ................ 803 804 000000005815B83E: 00000004 01060000 00000004 01070000 ................ 805 806 000000005815B84E: 00000004 01080000 00000004 01090000 ................ 807 808 000000005815B85E: 00000004 010a0000 00000004 010b0000 ................ 809 810 000000005815B86E: 00000004 010c0000 00000004 010d0000 ................ 811 812 000000005815B87E: 00000004 010e0000 00000004 010f0000 ................ 813 814 000000005815B88E: 00000004 01100000 00000004 01110000 ................ 815 816 000000005815B89E: 00000004 01120000 00000004 01130000 ................ 817 818 000000005815B8AE: 00000004 01140000 00000004 01150000 ................ 819 820 000000005815B8BE: 00000004 01160000 00000004 01170000 ................ 821 822 000000005815B8CE: 00000004 01180000 00000004 01190000 ................ 823 824 000000005815B8DE: 00000004 011a0000 00000004 011b0000 ................ 825 826 000000005815B8EE: 00000004 011c0000 00000004 011d0000 ................ 827 828 000000005815B8FE: 00000004 011e0000 00000004 011f0000 ................ 829 830 000000005815B90E: 00000004 01200000 00000004 01210000 ...... .......!. 831 832 000000005815B91E: 00000004 01220000 00000004 01230000 ......".......#. 833 834 000000005815B92E: 00000004 01240000 00000004 01250000 ......$.......%. 835 836 000000005815B93E: 00000004 01260000 00000004 01270000 ......&.......'. 837 838 000000005815B94E: 00000004 01280000 00000004 01290000 ......(.......). 839 840 000000005815B95E: 00000004 012a0000 00000004 012b0000 ......*.......+. 841 842 000000005815B96E: 00000004 012c0000 00000004 012d0000 ......,.......-. 843 844 000000005815B97E: 00000004 012e0000 00000004 012f0000 ............../. 845 846 000000005815B98E: 00000004 01300000 00000004 01310000 ......0.......1. 847 848 000000005815B99E: 00000004 01320000 00000004 01330000 ......2.......3. 849 850 000000005815B9AE: 00000004 01340000 00000004 01350000 ......4.......5. 851 852 000000005815B9BE: 00000004 01360000 00000004 01370000 ......6.......7. 853 854 000000005815B9CE: 00000004 01380000 00000004 01390000 ......8.......9. 855 856 000000005815B9DE: 00000004 013a0000 00000004 013b0000 ......:.......;. 857 858 000000005815B9EE: 00000004 013c0000 00000004 013d0000 ......<.......=. 859 860 000000005815B9FE: 00000004 013e0000 00000004 013f0000 ......>.......?. 861 862 000000005815BA0E: 00000004 01400000 00000004 01410000 ......@.......A. 863 864 000000005815BA1E: 00000004 01420000 00000004 01430000 ......B.......C. 865 866 000000005815BA2E: 00000004 01440000 00000004 01450000 ......D.......E. 867 868 000000005815BA3E: 00000004 01460000 00000004 01470000 ......F.......G. 869 870 000000005815BA4E: 00000004 01480000 00000004 01490000 ......H.......I. 871 872 000000005815BA5E: 00000004 014a0000 00000004 014b0000 ......J.......K. 873 874 000000005815BA6E: 00000004 014c0000 00000004 014d0000 ......L.......M. 875 876 000000005815BA7E: 00000004 014e0000 00000004 014f0000 ......N.......O. 877 878 000000005815BA8E: 00000004 01500000 00000004 01510000 ......P.......Q. 879 880 000000005815BA9E: 00000004 01520000 00000004 01530000 ......R.......S. 881 882 000000005815BAAE: 00000004 01540000 00000004 01550000 ......T.......U. 883 884 000000005815BABE: 00000004 01560000 00000004 01570000 ......V.......W. 885 886 000000005815BACE: 00000004 01580000 00000004 01590000 ......X.......Y. 887 888 000000005815BADE: 00000004 015a0000 00000004 015b0000 ......Z.......[. 889 890 000000005815BAEE: 00000004 015c0000 00000004 015d0000 ......\.......]. 891 892 000000005815BAFE: 00000004 015e0000 00000004 015f0000 ......^......._. 893 894 000000005815BB0E: 00000004 01600000 00000004 01610000 ......`.......a. 895 896 000000005815BB1E: 00000004 01620000 00000004 01630000 ......b.......c. 897 898 000000005815BB2E: 00000004 01640000 00000004 01650000 ......d.......e. 899 900 000000005815BB3E: 00000004 01660000 00000004 01670000 ......f.......g. 901 902 000000005815BB4E: 00000004 01680000 00000004 01690000 ......h.......i. 903 904 000000005815BB5E: 00000004 016a0000 00000004 016b0000 ......j.......k. 905 906 000000005815BB6E: 00000004 016c0000 00000004 016d0000 ......l.......m. 907 908 000000005815BB7E: 00000004 016e0000 00000004 016f0000 ......n.......o. 909 910 000000005815BB8E: 00000004 01700000 00000004 01710000 ......p.......q. 911 912 000000005815BB9E: 00000004 01720000 00000004 01730000 ......r.......s. 913 914 000000005815BBAE: 00000004 01740000 00000004 01750000 ......t.......u. 915 916 000000005815BBBE: 00000004 01760000 00000004 01770000 ......v.......w. 917 918 000000005815BBCE: 00000004 01780000 00000004 01790000 ......x.......y. 919 920 000000005815BBDE: 00000004 017a0000 00000004 017b0000 ......z.......{. 921 922 000000005815BBEE: 00000004 017c0000 00000004 017d0000 ......|.......}. 923 924 000000005815BBFE: 00000004 017e0000 00000004 017f0000 ......~......... 925 926 000000005815BC0E: 00000004 01800000 00000004 01810000 ................ 927 928 000000005815BC1E: 00000004 01820000 00000004 01830000 ................ 929 930 000000005815BC2E: 00000004 01840000 00000004 01850000 ................ 931 932 000000005815BC3E: 00000004 01860000 00000004 01870000 ................ 933 934 000000005815BC4E: 00000004 01880000 00000004 01890000 ................ 935 936 000000005815BC5E: 00000004 018a0000 00000004 018b0000 ................ 937 938 000000005815BC6E: 00000004 018c0000 00000004 018d0000 ................ 939 940 000000005815BC7E: 00000004 018e0000 00000004 018f0000 ................ 941 942 000000005815BC8E: 00000004 01900000 00000004 01910000 ................ 943 944 000000005815BC9E: 00000004 01920000 00000004 01930000 ................ 945 946 000000005815BCAE: 00000004 01940000 00000004 01950000 ................ 947 948 000000005815BCBE: 00000004 01960000 00000004 01970000 ................ 949 950 000000005815BCCE: 00000004 01980000 00000004 01990000 ................ 951 952 000000005815BCDE: 00000004 019a0000 00000004 019b0000 ................ 953 954 000000005815BCEE: 00000004 019c0000 00000004 019d0000 ................ 955 956 000000005815BCFE: 00000004 019e0000 00000004 019f0000 ................ 957 958 000000005815BD0E: 00000004 01a00000 00000004 01a10000 ................ 959 960 000000005815BD1E: 00000004 01a20000 00000004 01a30000 ................ 961 962 000000005815BD2E: 00000004 01a40000 00000004 01a50000 ................ 963 964 000000005815BD3E: 00000004 01a60000 00000004 01a70000 ................ 965 966 000000005815BD4E: 00000004 01a80000 00000004 01a90000 ................ 967 968 000000005815BD5E: 00000004 01aa0000 00000004 01ab0000 ................ 969 970 000000005815BD6E: 00000004 01ac0000 00000004 01ad0000 ................ 971 972 000000005815BD7E: 00000004 01ae0000 00000004 01af0000 ................ 973 974 000000005815BD8E: 00000004 01b00000 00000004 01b10000 ................ 975 976 000000005815BD9E: 00000004 01b20000 00000004 01b30000 ................ 977 978 000000005815BDAE: 00000004 01b40000 00000004 01b50000 ................ 979 980 000000005815BDBE: 00000004 01b60000 00000004 01b70000 ................ 981 982 000000005815BDCE: 00000004 01b80000 00000004 01b90000 ................ 983 984 000000005815BDDE: 00000004 01ba0000 00000004 01bb0000 ................ 985 986 000000005815BDEE: 00000004 01bc0000 00000004 01bd0000 ................ 987 988 000000005815BDFE: 00000004 01be0000 00000004 01bf0000 ................ 989 990 000000005815BE0E: 00000004 01c00000 00000004 01c10000 ................ 991 992 000000005815BE1E: 00000004 01c20000 00000004 01c30000 ................ 993 994 000000005815BE2E: 00000004 01c40000 00000005 00000000 ................ 995 996 000000005815BE3E: 00000005 00010000 00000005 00020000 ................ 997 998 000000005815BE4E: 00000005 00030000 00000005 00040000 ................ 999 1000 000000005815BE5E: 00000005 00050000 00000005 00060000 ................ 1001 1002 000000005815BE6E: 00000005 00070000 00000005 00080000 ................ 1003 1004 000000005815BE7E: 00000005 00090000 00000005 000a0000 ................ 1005 1006 000000005815BE8E: 00000005 000b0000 00000005 000c0000 ................ 1007 1008 000000005815BE9E: 00000005 000d0000 00000005 000e0000 ................ 1009 1010 000000005815BEAE: 00000005 000f0000 00000005 00100000 ................ 1011 1012 000000005815BEBE: 00000005 00110000 00000005 00120000 ................ 1013 1014 000000005815BECE: 00000005 00130000 00000005 00140000 ................ 1015 1016 000000005815BEDE: 00000005 00150000 00000005 00160000 ................ 1017 1018 000000005815BEEE: 00000005 00170000 00000005 00180000 ................ 1019 1020 000000005815BEFE: 00000005 00190000 00000005 001a0000 ................ 1021 1022 000000005815BF0E: 00000005 001b0000 00000005 001c0000 ................ 1023 1024 000000005815BF1E: 00000005 001d0000 00000005 001e0000 ................ 1025 1026 000000005815BF2E: 00000005 001f0000 00000005 00200000 .............. . 1027 1028 000000005815BF3E: 00000005 00210000 00000005 00220000 ......!.......". 1029 1030 000000005815BF4E: 00000005 00230000 00000005 00240000 ......#.......$. 1031 1032 000000005815BF5E: 00000005 00250000 00000005 00260000 ......%.......&. 1033 1034 000000005815BF6E: 00000005 00270000 00000005 00280000 ......'.......(. 1035 1036 000000005815BF7E: 00000005 00290000 00000005 002a0000 ......).......*. 1037 1038 000000005815BF8E: 00000005 002b0000 00000005 002c0000 ......+.......,. 1039 1040 000000005815BF9E: 00000005 002d0000 00000005 002e0000 ......-......... 1041 1042 000000005815BFAE: 00000005 002f0000 00000005 00300000 ....../.......0. 1043 1044 000000005815BFBE: 00000005 00310000 00000005 00320000 ......1.......2. 1045 1046 000000005815BFCE: 00000005 00330000 ......3. 1047 1048 1049 1050 DBCC 执行完毕。如果 DBCC 输出了错误信息,请与系统管理员联系。
可以看到跟刚才堆表中的LOB页面有很大的不同
这里Type:3(DATA)和Type:0(SMALL_ROOT)的意思:我估计是
Type:3(DATA):表示这个页面纯粹存储数据不存放指针
Type:0(SMALL_ROOT):表示这个页面包含数据和指针
因为前面已经说了:Lob_Mix_Page既包含指针也包含数据
普通数据页面13874里的内容
1 PAGE: (1:13874) 2 3 4 BUFFER: 5 6 7 BUF @0x0000000004F86900 8 9 bpage = 0x00000001AC952000 bhash = 0x0000000000000000 bpageno = (1:13874) 10 bdbid = 8 breferences = 0 bcputicks = 0 11 bsampleCount = 0 bUse1 = 6259 bstat = 0x9 12 blog = 0x15a bnext = 0x0000000000000000 13 14 PAGE HEADER: 15 16 17 Page @0x00000001AC952000 18 19 m_pageId = (1:13874) m_headerVersion = 1 m_type = 1 20 m_typeFlagBits = 0x0 m_level = 0 m_flagBits = 0x8200 21 m_objId (AllocUnitId.idObj) = 248 m_indexId (AllocUnitId.idInd) = 256 22 Metadata: AllocUnitId = 72057594054180864 23 Metadata: PartitionId = 72057594046644224 Metadata: IndexId = 0 24 Metadata: ObjectId = 434100587 m_prevPage = (0:0) m_nextPage = (0:0) 25 pminlen = 12 m_slotCnt = 453 m_freeCnt = 395 26 m_freeData = 6891 m_reservedCnt = 0 m_lsn = (2560:14034:2) 27 m_xactReserved = 0 m_xdesId = (0:0) m_ghostRecCnt = 0 28 m_tornBits = 994562372 DB Frag ID = 1 29 30 Allocation Status 31 32 GAM (1:2) = ALLOCATED SGAM (1:3) = ALLOCATED 33 PFS (1:8088) = 0x64 MIXED_EXT ALLOCATED 100_PCT_FULL DIFF (1:6) = CHANGED 34 ML (1:7) = NOT MIN_LOGGED 35 36 Slot 0 Offset 0x60 Length 15 37 38 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 39 40 Memory Dump @0x000000005815A060 41 42 0000000000000000: 10000c00 c6010000 c6010000 020000 ............... 43 44 Slot 0 Column 1 Offset 0x4 Length 4 Length (physical) 4 45 46 id = 454 47 48 Slot 0 Column 2 Offset 0x8 Length 4 Length (physical) 4 49 50 c1 = 454 51 52 Slot 1 Offset 0x6f Length 15 53 54 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 55 56 Memory Dump @0x000000005815A06F 57 58 0000000000000000: 10000c00 c7010000 c7010000 020000 ............... 59 60 Slot 1 Column 1 Offset 0x4 Length 4 Length (physical) 4 61 62 id = 455 63 64 Slot 1 Column 2 Offset 0x8 Length 4 Length (physical) 4 65 66 c1 = 455 67 68 Slot 2 Offset 0x7e Length 15 69 70 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 71 72 Memory Dump @0x000000005815A07E 73 74 0000000000000000: 10000c00 c8010000 c8010000 020000 ............... 75 76 Slot 2 Column 1 Offset 0x4 Length 4 Length (physical) 4 77 78 id = 456 79 80 Slot 2 Column 2 Offset 0x8 Length 4 Length (physical) 4 81 82 c1 = 456 83 84 Slot 3 Offset 0x8d Length 15 85 86 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 87 88 Memory Dump @0x000000005815A08D 89 90 0000000000000000: 10000c00 c9010000 c9010000 020000 ............... 91 92 Slot 3 Column 1 Offset 0x4 Length 4 Length (physical) 4 93 94 id = 457 95 96 Slot 3 Column 2 Offset 0x8 Length 4 Length (physical) 4 97 98 c1 = 457 99 100 Slot 4 Offset 0x9c Length 15 101 102 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 103 104 Memory Dump @0x000000005815A09C 105 106 0000000000000000: 10000c00 ca010000 ca010000 020000 ............... 107 108 Slot 4 Column 1 Offset 0x4 Length 4 Length (physical) 4 109 110 id = 458 111 112 Slot 4 Column 2 Offset 0x8 Length 4 Length (physical) 4 113 114 c1 = 458 115 116 Slot 5 Offset 0xab Length 15 117 118 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 119 120 Memory Dump @0x000000005815A0AB 121 122 0000000000000000: 10000c00 cb010000 cb010000 020000 ............... 123 124 Slot 5 Column 1 Offset 0x4 Length 4 Length (physical) 4 125 126 id = 459 127 128 Slot 5 Column 2 Offset 0x8 Length 4 Length (physical) 4 129 130 c1 = 459 131 132 Slot 6 Offset 0xba Length 15 133 134 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 135 136 Memory Dump @0x000000005815A0BA 137 138 0000000000000000: 10000c00 cc010000 cc010000 020000 ............... 139 140 Slot 6 Column 1 Offset 0x4 Length 4 Length (physical) 4 141 142 id = 460 143 144 Slot 6 Column 2 Offset 0x8 Length 4 Length (physical) 4 145 146 c1 = 460 147 148 Slot 7 Offset 0xc9 Length 15 149 150 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 151 152 Memory Dump @0x000000005815A0C9 153 154 0000000000000000: 10000c00 cd010000 cd010000 020000 ............... 155 156 Slot 7 Column 1 Offset 0x4 Length 4 Length (physical) 4 157 158 id = 461 159 160 Slot 7 Column 2 Offset 0x8 Length 4 Length (physical) 4 161 162 c1 = 461 163 164 Slot 8 Offset 0xd8 Length 15 165 166 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 167 168 Memory Dump @0x000000005815A0D8 169 170 0000000000000000: 10000c00 ce010000 ce010000 020000 ............... 171 172 Slot 8 Column 1 Offset 0x4 Length 4 Length (physical) 4 173 174 id = 462 175 176 Slot 8 Column 2 Offset 0x8 Length 4 Length (physical) 4 177 178 c1 = 462 179 180 Slot 9 Offset 0xe7 Length 15 181 182 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 183 184 Memory Dump @0x000000005815A0E7 185 186 0000000000000000: 10000c00 cf010000 cf010000 020000 ............... 187 188 Slot 9 Column 1 Offset 0x4 Length 4 Length (physical) 4 189 190 id = 463 191 192 Slot 9 Column 2 Offset 0x8 Length 4 Length (physical) 4 193 194 c1 = 463 195 196 Slot 10 Offset 0xf6 Length 15 197 198 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 199 200 Memory Dump @0x000000005815A0F6 201 202 0000000000000000: 10000c00 d0010000 d0010000 020000 ............... 203 204 Slot 10 Column 1 Offset 0x4 Length 4 Length (physical) 4 205 206 id = 464 207 208 Slot 10 Column 2 Offset 0x8 Length 4 Length (physical) 4 209 210 c1 = 464 211 212 Slot 11 Offset 0x105 Length 15 213 214 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 215 216 Memory Dump @0x000000005815A105 217 218 0000000000000000: 10000c00 d1010000 d1010000 020000 ............... 219 220 Slot 11 Column 1 Offset 0x4 Length 4 Length (physical) 4 221 222 id = 465 223 224 Slot 11 Column 2 Offset 0x8 Length 4 Length (physical) 4 225 226 c1 = 465 227 228 Slot 12 Offset 0x114 Length 15 229 230 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 231 232 Memory Dump @0x000000005815A114 233 234 0000000000000000: 10000c00 d2010000 d2010000 020000 ............... 235 236 Slot 12 Column 1 Offset 0x4 Length 4 Length (physical) 4 237 238 id = 466 239 240 Slot 12 Column 2 Offset 0x8 Length 4 Length (physical) 4 241 242 c1 = 466 243 244 Slot 13 Offset 0x123 Length 15 245 246 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 247 248 Memory Dump @0x000000005815A123 249 250 0000000000000000: 10000c00 d3010000 d3010000 020000 ............... 251 252 Slot 13 Column 1 Offset 0x4 Length 4 Length (physical) 4 253 254 id = 467 255 256 Slot 13 Column 2 Offset 0x8 Length 4 Length (physical) 4 257 258 c1 = 467 259 260 Slot 14 Offset 0x132 Length 15 261 262 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 263 264 Memory Dump @0x000000005815A132 265 266 0000000000000000: 10000c00 d4010000 d4010000 020000 ............... 267 268 Slot 14 Column 1 Offset 0x4 Length 4 Length (physical) 4 269 270 id = 468 271 272 Slot 14 Column 2 Offset 0x8 Length 4 Length (physical) 4 273 274 c1 = 468 275 276 Slot 15 Offset 0x141 Length 15 277 278 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 279 280 Memory Dump @0x000000005815A141 281 282 0000000000000000: 10000c00 d5010000 d5010000 020000 ............... 283 284 Slot 15 Column 1 Offset 0x4 Length 4 Length (physical) 4 285 286 id = 469 287 288 Slot 15 Column 2 Offset 0x8 Length 4 Length (physical) 4 289 290 c1 = 469 291 292 Slot 16 Offset 0x150 Length 15 293 294 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 295 296 Memory Dump @0x000000005815A150 297 298 0000000000000000: 10000c00 d6010000 d6010000 020000 ............... 299 300 Slot 16 Column 1 Offset 0x4 Length 4 Length (physical) 4 301 302 id = 470 303 304 Slot 16 Column 2 Offset 0x8 Length 4 Length (physical) 4 305 306 c1 = 470 307 308 Slot 17 Offset 0x15f Length 15 309 310 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 311 312 Memory Dump @0x000000005815A15F 313 314 0000000000000000: 10000c00 d7010000 d7010000 020000 ............... 315 316 Slot 17 Column 1 Offset 0x4 Length 4 Length (physical) 4 317 318 id = 471 319 320 Slot 17 Column 2 Offset 0x8 Length 4 Length (physical) 4 321 322 c1 = 471 323 324 Slot 18 Offset 0x16e Length 15 325 326 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 327 328 Memory Dump @0x000000005815A16E 329 330 0000000000000000: 10000c00 d8010000 d8010000 020000 ............... 331 332 Slot 18 Column 1 Offset 0x4 Length 4 Length (physical) 4 333 334 id = 472 335 336 Slot 18 Column 2 Offset 0x8 Length 4 Length (physical) 4 337 338 c1 = 472 339 340 Slot 19 Offset 0x17d Length 15 341 342 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 343 344 Memory Dump @0x000000005815A17D 345 346 0000000000000000: 10000c00 d9010000 d9010000 020000 ............... 347 348 Slot 19 Column 1 Offset 0x4 Length 4 Length (physical) 4 349 350 id = 473 351 352 Slot 19 Column 2 Offset 0x8 Length 4 Length (physical) 4 353 354 c1 = 473 355 356 Slot 20 Offset 0x18c Length 15 357 358 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 359 360 Memory Dump @0x000000005815A18C 361 362 0000000000000000: 10000c00 da010000 da010000 020000 ............... 363 364 Slot 20 Column 1 Offset 0x4 Length 4 Length (physical) 4 365 366 id = 474 367 368 Slot 20 Column 2 Offset 0x8 Length 4 Length (physical) 4 369 370 c1 = 474 371 372 Slot 21 Offset 0x19b Length 15 373 374 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 375 376 Memory Dump @0x000000005815A19B 377 378 0000000000000000: 10000c00 db010000 db010000 020000 ............... 379 380 Slot 21 Column 1 Offset 0x4 Length 4 Length (physical) 4 381 382 id = 475 383 384 Slot 21 Column 2 Offset 0x8 Length 4 Length (physical) 4 385 386 c1 = 475 387 388 Slot 22 Offset 0x1aa Length 15 389 390 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 391 392 Memory Dump @0x000000005815A1AA 393 394 0000000000000000: 10000c00 dc010000 dc010000 020000 ............... 395 396 Slot 22 Column 1 Offset 0x4 Length 4 Length (physical) 4 397 398 id = 476 399 400 Slot 22 Column 2 Offset 0x8 Length 4 Length (physical) 4 401 402 c1 = 476 403 404 Slot 23 Offset 0x1b9 Length 15 405 406 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 407 408 Memory Dump @0x000000005815A1B9 409 410 0000000000000000: 10000c00 dd010000 dd010000 020000 ............... 411 412 Slot 23 Column 1 Offset 0x4 Length 4 Length (physical) 4 413 414 id = 477 415 416 Slot 23 Column 2 Offset 0x8 Length 4 Length (physical) 4 417 418 c1 = 477 419 420 Slot 24 Offset 0x1c8 Length 15 421 422 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 423 424 Memory Dump @0x000000005815A1C8 425 426 0000000000000000: 10000c00 de010000 de010000 020000 ............... 427 428 Slot 24 Column 1 Offset 0x4 Length 4 Length (physical) 4 429 430 id = 478 431 432 Slot 24 Column 2 Offset 0x8 Length 4 Length (physical) 4 433 434 c1 = 478 435 436 Slot 25 Offset 0x1d7 Length 15 437 438 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 439 440 Memory Dump @0x000000005815A1D7 441 442 0000000000000000: 10000c00 df010000 df010000 020000 ............... 443 444 Slot 25 Column 1 Offset 0x4 Length 4 Length (physical) 4 445 446 id = 479 447 448 Slot 25 Column 2 Offset 0x8 Length 4 Length (physical) 4 449 450 c1 = 479 451 452 Slot 26 Offset 0x1e6 Length 15 453 454 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 455 456 Memory Dump @0x000000005815A1E6 457 458 0000000000000000: 10000c00 e0010000 e0010000 020000 ............... 459 460 Slot 26 Column 1 Offset 0x4 Length 4 Length (physical) 4 461 462 id = 480 463 464 Slot 26 Column 2 Offset 0x8 Length 4 Length (physical) 4 465 466 c1 = 480 467 468 Slot 27 Offset 0x1f5 Length 15 469 470 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 471 472 Memory Dump @0x000000005815A1F5 473 474 0000000000000000: 10000c00 e1010000 e1010000 020000 ............... 475 476 Slot 27 Column 1 Offset 0x4 Length 4 Length (physical) 4 477 478 id = 481 479 480 Slot 27 Column 2 Offset 0x8 Length 4 Length (physical) 4 481 482 c1 = 481 483 484 Slot 28 Offset 0x204 Length 15 485 486 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 487 488 Memory Dump @0x000000005815A204 489 490 0000000000000000: 10000c00 e2010000 e2010000 020000 ............... 491 492 Slot 28 Column 1 Offset 0x4 Length 4 Length (physical) 4 493 494 id = 482 495 496 Slot 28 Column 2 Offset 0x8 Length 4 Length (physical) 4 497 498 c1 = 482 499 500 Slot 29 Offset 0x213 Length 15 501 502 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 503 504 Memory Dump @0x000000005815A213 505 506 0000000000000000: 10000c00 e3010000 e3010000 020000 ............... 507 508 Slot 29 Column 1 Offset 0x4 Length 4 Length (physical) 4 509 510 id = 483 511 512 Slot 29 Column 2 Offset 0x8 Length 4 Length (physical) 4 513 514 c1 = 483 515 516 Slot 30 Offset 0x222 Length 15 517 518 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 519 520 Memory Dump @0x000000005815A222 521 522 0000000000000000: 10000c00 e4010000 e4010000 020000 ............... 523 524 Slot 30 Column 1 Offset 0x4 Length 4 Length (physical) 4 525 526 id = 484 527 528 Slot 30 Column 2 Offset 0x8 Length 4 Length (physical) 4 529 530 c1 = 484 531 532 Slot 31 Offset 0x231 Length 15 533 534 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 535 536 Memory Dump @0x000000005815A231 537 538 0000000000000000: 10000c00 e5010000 e5010000 020000 ............... 539 540 Slot 31 Column 1 Offset 0x4 Length 4 Length (physical) 4 541 542 id = 485 543 544 Slot 31 Column 2 Offset 0x8 Length 4 Length (physical) 4 545 546 c1 = 485 547 548 Slot 32 Offset 0x240 Length 15 549 550 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 551 552 Memory Dump @0x000000005815A240 553 554 0000000000000000: 10000c00 e6010000 e6010000 020000 ............... 555 556 Slot 32 Column 1 Offset 0x4 Length 4 Length (physical) 4 557 558 id = 486 559 560 Slot 32 Column 2 Offset 0x8 Length 4 Length (physical) 4 561 562 c1 = 486 563 564 Slot 33 Offset 0x24f Length 15 565 566 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 567 568 Memory Dump @0x000000005815A24F 569 570 0000000000000000: 10000c00 e7010000 e7010000 020000 ............... 571 572 Slot 33 Column 1 Offset 0x4 Length 4 Length (physical) 4 573 574 id = 487 575 576 Slot 33 Column 2 Offset 0x8 Length 4 Length (physical) 4 577 578 c1 = 487 579 580 Slot 34 Offset 0x25e Length 15 581 582 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 583 584 Memory Dump @0x000000005815A25E 585 586 0000000000000000: 10000c00 e8010000 e8010000 020000 ............... 587 588 Slot 34 Column 1 Offset 0x4 Length 4 Length (physical) 4 589 590 id = 488 591 592 Slot 34 Column 2 Offset 0x8 Length 4 Length (physical) 4 593 594 c1 = 488 595 596 Slot 35 Offset 0x26d Length 15 597 598 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 599 600 Memory Dump @0x000000005815A26D 601 602 0000000000000000: 10000c00 e9010000 e9010000 020000 ............... 603 604 Slot 35 Column 1 Offset 0x4 Length 4 Length (physical) 4 605 606 id = 489 607 608 Slot 35 Column 2 Offset 0x8 Length 4 Length (physical) 4 609 610 c1 = 489 611 612 Slot 36 Offset 0x27c Length 15 613 614 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 615 616 Memory Dump @0x000000005815A27C 617 618 0000000000000000: 10000c00 ea010000 ea010000 020000 ............... 619 620 Slot 36 Column 1 Offset 0x4 Length 4 Length (physical) 4 621 622 id = 490 623 624 Slot 36 Column 2 Offset 0x8 Length 4 Length (physical) 4 625 626 c1 = 490 627 628 Slot 37 Offset 0x28b Length 15 629 630 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 631 632 Memory Dump @0x000000005815A28B 633 634 0000000000000000: 10000c00 eb010000 eb010000 020000 ............... 635 636 Slot 37 Column 1 Offset 0x4 Length 4 Length (physical) 4 637 638 id = 491 639 640 Slot 37 Column 2 Offset 0x8 Length 4 Length (physical) 4 641 642 c1 = 491 643 644 Slot 38 Offset 0x29a Length 15 645 646 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 647 648 Memory Dump @0x000000005815A29A 649 650 0000000000000000: 10000c00 ec010000 ec010000 020000 ............... 651 652 Slot 38 Column 1 Offset 0x4 Length 4 Length (physical) 4 653 654 id = 492 655 656 Slot 38 Column 2 Offset 0x8 Length 4 Length (physical) 4 657 658 c1 = 492 659 660 Slot 39 Offset 0x2a9 Length 15 661 662 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 663 664 Memory Dump @0x000000005815A2A9 665 666 0000000000000000: 10000c00 ed010000 ed010000 020000 ............... 667 668 Slot 39 Column 1 Offset 0x4 Length 4 Length (physical) 4 669 670 id = 493 671 672 Slot 39 Column 2 Offset 0x8 Length 4 Length (physical) 4 673 674 c1 = 493 675 676 Slot 40 Offset 0x2b8 Length 15 677 678 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 679 680 Memory Dump @0x000000005815A2B8 681 682 0000000000000000: 10000c00 ee010000 ee010000 020000 ............... 683 684 Slot 40 Column 1 Offset 0x4 Length 4 Length (physical) 4 685 686 id = 494 687 688 Slot 40 Column 2 Offset 0x8 Length 4 Length (physical) 4 689 690 c1 = 494 691 692 Slot 41 Offset 0x2c7 Length 15 693 694 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 695 696 Memory Dump @0x000000005815A2C7 697 698 0000000000000000: 10000c00 ef010000 ef010000 020000 ............... 699 700 Slot 41 Column 1 Offset 0x4 Length 4 Length (physical) 4 701 702 id = 495 703 704 Slot 41 Column 2 Offset 0x8 Length 4 Length (physical) 4 705 706 c1 = 495 707 708 Slot 42 Offset 0x2d6 Length 15 709 710 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 711 712 Memory Dump @0x000000005815A2D6 713 714 0000000000000000: 10000c00 f0010000 f0010000 020000 ............... 715 716 Slot 42 Column 1 Offset 0x4 Length 4 Length (physical) 4 717 718 id = 496 719 720 Slot 42 Column 2 Offset 0x8 Length 4 Length (physical) 4 721 722 c1 = 496 723 724 Slot 43 Offset 0x2e5 Length 15 725 726 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 727 728 Memory Dump @0x000000005815A2E5 729 730 0000000000000000: 10000c00 f1010000 f1010000 020000 ............... 731 732 Slot 43 Column 1 Offset 0x4 Length 4 Length (physical) 4 733 734 id = 497 735 736 Slot 43 Column 2 Offset 0x8 Length 4 Length (physical) 4 737 738 c1 = 497 739 740 Slot 44 Offset 0x2f4 Length 15 741 742 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 743 744 Memory Dump @0x000000005815A2F4 745 746 0000000000000000: 10000c00 f2010000 f2010000 020000 ............... 747 748 Slot 44 Column 1 Offset 0x4 Length 4 Length (physical) 4 749 750 id = 498 751 752 Slot 44 Column 2 Offset 0x8 Length 4 Length (physical) 4 753 754 c1 = 498 755 756 Slot 45 Offset 0x303 Length 15 757 758 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 759 760 Memory Dump @0x000000005815A303 761 762 0000000000000000: 10000c00 f3010000 f3010000 020000 ............... 763 764 Slot 45 Column 1 Offset 0x4 Length 4 Length (physical) 4 765 766 id = 499 767 768 Slot 45 Column 2 Offset 0x8 Length 4 Length (physical) 4 769 770 c1 = 499 771 772 Slot 46 Offset 0x312 Length 15 773 774 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 775 776 Memory Dump @0x000000005815A312 777 778 0000000000000000: 10000c00 f4010000 f4010000 020000 ............... 779 780 Slot 46 Column 1 Offset 0x4 Length 4 Length (physical) 4 781 782 id = 500 783 784 Slot 46 Column 2 Offset 0x8 Length 4 Length (physical) 4 785 786 c1 = 500 787 788 Slot 47 Offset 0x321 Length 15 789 790 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 791 792 Memory Dump @0x000000005815A321 793 794 0000000000000000: 10000c00 f5010000 f5010000 020000 ............... 795 796 Slot 47 Column 1 Offset 0x4 Length 4 Length (physical) 4 797 798 id = 501 799 800 Slot 47 Column 2 Offset 0x8 Length 4 Length (physical) 4 801 802 c1 = 501 803 804 Slot 48 Offset 0x330 Length 15 805 806 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 807 808 Memory Dump @0x000000005815A330 809 810 0000000000000000: 10000c00 f6010000 f6010000 020000 ............... 811 812 Slot 48 Column 1 Offset 0x4 Length 4 Length (physical) 4 813 814 id = 502 815 816 Slot 48 Column 2 Offset 0x8 Length 4 Length (physical) 4 817 818 c1 = 502 819 820 Slot 49 Offset 0x33f Length 15 821 822 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 823 824 Memory Dump @0x000000005815A33F 825 826 0000000000000000: 10000c00 f7010000 f7010000 020000 ............... 827 828 Slot 49 Column 1 Offset 0x4 Length 4 Length (physical) 4 829 830 id = 503 831 832 Slot 49 Column 2 Offset 0x8 Length 4 Length (physical) 4 833 834 c1 = 503 835 836 Slot 50 Offset 0x34e Length 15 837 838 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 839 840 Memory Dump @0x000000005815A34E 841 842 0000000000000000: 10000c00 f8010000 f8010000 020000 ............... 843 844 Slot 50 Column 1 Offset 0x4 Length 4 Length (physical) 4 845 846 id = 504 847 848 Slot 50 Column 2 Offset 0x8 Length 4 Length (physical) 4 849 850 c1 = 504 851 852 Slot 51 Offset 0x35d Length 15 853 854 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 855 856 Memory Dump @0x000000005815A35D 857 858 0000000000000000: 10000c00 f9010000 f9010000 020000 ............... 859 860 Slot 51 Column 1 Offset 0x4 Length 4 Length (physical) 4 861 862 id = 505 863 864 Slot 51 Column 2 Offset 0x8 Length 4 Length (physical) 4 865 866 c1 = 505 867 868 Slot 52 Offset 0x36c Length 15 869 870 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 871 872 Memory Dump @0x000000005815A36C 873 874 0000000000000000: 10000c00 fa010000 fa010000 020000 ............... 875 876 Slot 52 Column 1 Offset 0x4 Length 4 Length (physical) 4 877 878 id = 506 879 880 Slot 52 Column 2 Offset 0x8 Length 4 Length (physical) 4 881 882 c1 = 506 883 884 Slot 53 Offset 0x37b Length 15 885 886 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 887 888 Memory Dump @0x000000005815A37B 889 890 0000000000000000: 10000c00 fb010000 fb010000 020000 ............... 891 892 Slot 53 Column 1 Offset 0x4 Length 4 Length (physical) 4 893 894 id = 507 895 896 Slot 53 Column 2 Offset 0x8 Length 4 Length (physical) 4 897 898 c1 = 507 899 900 Slot 54 Offset 0x38a Length 15 901 902 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 903 904 Memory Dump @0x000000005815A38A 905 906 0000000000000000: 10000c00 fc010000 fc010000 020000 ............... 907 908 Slot 54 Column 1 Offset 0x4 Length 4 Length (physical) 4 909 910 id = 508 911 912 Slot 54 Column 2 Offset 0x8 Length 4 Length (physical) 4 913 914 c1 = 508 915 916 Slot 55 Offset 0x399 Length 15 917 918 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 919 920 Memory Dump @0x000000005815A399 921 922 0000000000000000: 10000c00 fd010000 fd010000 020000 ............... 923 924 Slot 55 Column 1 Offset 0x4 Length 4 Length (physical) 4 925 926 id = 509 927 928 Slot 55 Column 2 Offset 0x8 Length 4 Length (physical) 4 929 930 c1 = 509 931 932 Slot 56 Offset 0x3a8 Length 15 933 934 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 935 936 Memory Dump @0x000000005815A3A8 937 938 0000000000000000: 10000c00 fe010000 fe010000 020000 ............... 939 940 Slot 56 Column 1 Offset 0x4 Length 4 Length (physical) 4 941 942 id = 510 943 944 Slot 56 Column 2 Offset 0x8 Length 4 Length (physical) 4 945 946 c1 = 510 947 948 Slot 57 Offset 0x3b7 Length 15 949 950 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 951 952 Memory Dump @0x000000005815A3B7 953 954 0000000000000000: 10000c00 ff010000 ff010000 020000 ............... 955 956 Slot 57 Column 1 Offset 0x4 Length 4 Length (physical) 4 957 958 id = 511 959 960 Slot 57 Column 2 Offset 0x8 Length 4 Length (physical) 4 961 962 c1 = 511 963 964 Slot 58 Offset 0x3c6 Length 15 965 966 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 967 968 Memory Dump @0x000000005815A3C6 969 970 0000000000000000: 10000c00 00020000 00020000 020000 ............... 971 972 Slot 58 Column 1 Offset 0x4 Length 4 Length (physical) 4 973 974 id = 512 975 976 Slot 58 Column 2 Offset 0x8 Length 4 Length (physical) 4 977 978 c1 = 512 979 980 Slot 59 Offset 0x3d5 Length 15 981 982 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 983 984 Memory Dump @0x000000005815A3D5 985 986 0000000000000000: 10000c00 01020000 01020000 020000 ............... 987 988 Slot 59 Column 1 Offset 0x4 Length 4 Length (physical) 4 989 990 id = 513 991 992 Slot 59 Column 2 Offset 0x8 Length 4 Length (physical) 4 993 994 c1 = 513 995 996 Slot 60 Offset 0x3e4 Length 15 997 998 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 999 1000 Memory Dump @0x000000005815A3E4 1001 1002 0000000000000000: 10000c00 02020000 02020000 020000 ............... 1003 1004 Slot 60 Column 1 Offset 0x4 Length 4 Length (physical) 4 1005 1006 id = 514 1007 1008 Slot 60 Column 2 Offset 0x8 Length 4 Length (physical) 4 1009 1010 c1 = 514 1011 1012 Slot 61 Offset 0x3f3 Length 15 1013 1014 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1015 1016 Memory Dump @0x000000005815A3F3 1017 1018 0000000000000000: 10000c00 03020000 03020000 020000 ............... 1019 1020 Slot 61 Column 1 Offset 0x4 Length 4 Length (physical) 4 1021 1022 id = 515 1023 1024 Slot 61 Column 2 Offset 0x8 Length 4 Length (physical) 4 1025 1026 c1 = 515 1027 1028 Slot 62 Offset 0x402 Length 15 1029 1030 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1031 1032 Memory Dump @0x000000005815A402 1033 1034 0000000000000000: 10000c00 04020000 04020000 020000 ............... 1035 1036 Slot 62 Column 1 Offset 0x4 Length 4 Length (physical) 4 1037 1038 id = 516 1039 1040 Slot 62 Column 2 Offset 0x8 Length 4 Length (physical) 4 1041 1042 c1 = 516 1043 1044 Slot 63 Offset 0x411 Length 15 1045 1046 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1047 1048 Memory Dump @0x000000005815A411 1049 1050 0000000000000000: 10000c00 05020000 05020000 020000 ............... 1051 1052 Slot 63 Column 1 Offset 0x4 Length 4 Length (physical) 4 1053 1054 id = 517 1055 1056 Slot 63 Column 2 Offset 0x8 Length 4 Length (physical) 4 1057 1058 c1 = 517 1059 1060 Slot 64 Offset 0x420 Length 15 1061 1062 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1063 1064 Memory Dump @0x000000005815A420 1065 1066 0000000000000000: 10000c00 06020000 06020000 020000 ............... 1067 1068 Slot 64 Column 1 Offset 0x4 Length 4 Length (physical) 4 1069 1070 id = 518 1071 1072 Slot 64 Column 2 Offset 0x8 Length 4 Length (physical) 4 1073 1074 c1 = 518 1075 1076 Slot 65 Offset 0x42f Length 15 1077 1078 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1079 1080 Memory Dump @0x000000005815A42F 1081 1082 0000000000000000: 10000c00 07020000 07020000 020000 ............... 1083 1084 Slot 65 Column 1 Offset 0x4 Length 4 Length (physical) 4 1085 1086 id = 519 1087 1088 Slot 65 Column 2 Offset 0x8 Length 4 Length (physical) 4 1089 1090 c1 = 519 1091 1092 Slot 66 Offset 0x43e Length 15 1093 1094 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1095 1096 Memory Dump @0x000000005815A43E 1097 1098 0000000000000000: 10000c00 08020000 08020000 020000 ............... 1099 1100 Slot 66 Column 1 Offset 0x4 Length 4 Length (physical) 4 1101 1102 id = 520 1103 1104 Slot 66 Column 2 Offset 0x8 Length 4 Length (physical) 4 1105 1106 c1 = 520 1107 1108 Slot 67 Offset 0x44d Length 15 1109 1110 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1111 1112 Memory Dump @0x000000005815A44D 1113 1114 0000000000000000: 10000c00 09020000 09020000 020000 .... ... ...... 1115 1116 Slot 67 Column 1 Offset 0x4 Length 4 Length (physical) 4 1117 1118 id = 521 1119 1120 Slot 67 Column 2 Offset 0x8 Length 4 Length (physical) 4 1121 1122 c1 = 521 1123 1124 Slot 68 Offset 0x45c Length 15 1125 1126 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1127 1128 Memory Dump @0x000000005815A45C 1129 1130 0000000000000000: 10000c00 0a020000 0a020000 020000 ............... 1131 1132 Slot 68 Column 1 Offset 0x4 Length 4 Length (physical) 4 1133 1134 id = 522 1135 1136 Slot 68 Column 2 Offset 0x8 Length 4 Length (physical) 4 1137 1138 c1 = 522 1139 1140 Slot 69 Offset 0x46b Length 15 1141 1142 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1143 1144 Memory Dump @0x000000005815A46B 1145 1146 0000000000000000: 10000c00 0b020000 0b020000 020000 ............... 1147 1148 Slot 69 Column 1 Offset 0x4 Length 4 Length (physical) 4 1149 1150 id = 523 1151 1152 Slot 69 Column 2 Offset 0x8 Length 4 Length (physical) 4 1153 1154 c1 = 523 1155 1156 Slot 70 Offset 0x47a Length 15 1157 1158 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1159 1160 Memory Dump @0x000000005815A47A 1161 1162 0000000000000000: 10000c00 0c020000 0c020000 020000 ............... 1163 1164 Slot 70 Column 1 Offset 0x4 Length 4 Length (physical) 4 1165 1166 id = 524 1167 1168 Slot 70 Column 2 Offset 0x8 Length 4 Length (physical) 4 1169 1170 c1 = 524 1171 1172 Slot 71 Offset 0x489 Length 15 1173 1174 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1175 1176 Memory Dump @0x000000005815A489 1177 1178 0000000000000000: 10000c00 0d020000 0d020000 020000 ............... 1179 1180 Slot 71 Column 1 Offset 0x4 Length 4 Length (physical) 4 1181 1182 id = 525 1183 1184 Slot 71 Column 2 Offset 0x8 Length 4 Length (physical) 4 1185 1186 c1 = 525 1187 1188 Slot 72 Offset 0x498 Length 15 1189 1190 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1191 1192 Memory Dump @0x000000005815A498 1193 1194 0000000000000000: 10000c00 0e020000 0e020000 020000 ............... 1195 1196 Slot 72 Column 1 Offset 0x4 Length 4 Length (physical) 4 1197 1198 id = 526 1199 1200 Slot 72 Column 2 Offset 0x8 Length 4 Length (physical) 4 1201 1202 c1 = 526 1203 1204 Slot 73 Offset 0x4a7 Length 15 1205 1206 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1207 1208 Memory Dump @0x000000005815A4A7 1209 1210 0000000000000000: 10000c00 0f020000 0f020000 020000 ............... 1211 1212 Slot 73 Column 1 Offset 0x4 Length 4 Length (physical) 4 1213 1214 id = 527 1215 1216 Slot 73 Column 2 Offset 0x8 Length 4 Length (physical) 4 1217 1218 c1 = 527 1219 1220 Slot 74 Offset 0x4b6 Length 15 1221 1222 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1223 1224 Memory Dump @0x000000005815A4B6 1225 1226 0000000000000000: 10000c00 10020000 10020000 020000 ............... 1227 1228 Slot 74 Column 1 Offset 0x4 Length 4 Length (physical) 4 1229 1230 id = 528 1231 1232 Slot 74 Column 2 Offset 0x8 Length 4 Length (physical) 4 1233 1234 c1 = 528 1235 1236 Slot 75 Offset 0x4c5 Length 15 1237 1238 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1239 1240 Memory Dump @0x000000005815A4C5 1241 1242 0000000000000000: 10000c00 11020000 11020000 020000 ............... 1243 1244 Slot 75 Column 1 Offset 0x4 Length 4 Length (physical) 4 1245 1246 id = 529 1247 1248 Slot 75 Column 2 Offset 0x8 Length 4 Length (physical) 4 1249 1250 c1 = 529 1251 1252 Slot 76 Offset 0x4d4 Length 15 1253 1254 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1255 1256 Memory Dump @0x000000005815A4D4 1257 1258 0000000000000000: 10000c00 12020000 12020000 020000 ............... 1259 1260 Slot 76 Column 1 Offset 0x4 Length 4 Length (physical) 4 1261 1262 id = 530 1263 1264 Slot 76 Column 2 Offset 0x8 Length 4 Length (physical) 4 1265 1266 c1 = 530 1267 1268 Slot 77 Offset 0x4e3 Length 15 1269 1270 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1271 1272 Memory Dump @0x000000005815A4E3 1273 1274 0000000000000000: 10000c00 13020000 13020000 020000 ............... 1275 1276 Slot 77 Column 1 Offset 0x4 Length 4 Length (physical) 4 1277 1278 id = 531 1279 1280 Slot 77 Column 2 Offset 0x8 Length 4 Length (physical) 4 1281 1282 c1 = 531 1283 1284 Slot 78 Offset 0x4f2 Length 15 1285 1286 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1287 1288 Memory Dump @0x000000005815A4F2 1289 1290 0000000000000000: 10000c00 14020000 14020000 020000 ............... 1291 1292 Slot 78 Column 1 Offset 0x4 Length 4 Length (physical) 4 1293 1294 id = 532 1295 1296 Slot 78 Column 2 Offset 0x8 Length 4 Length (physical) 4 1297 1298 c1 = 532 1299 1300 Slot 79 Offset 0x501 Length 15 1301 1302 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1303 1304 Memory Dump @0x000000005815A501 1305 1306 0000000000000000: 10000c00 15020000 15020000 020000 ............... 1307 1308 Slot 79 Column 1 Offset 0x4 Length 4 Length (physical) 4 1309 1310 id = 533 1311 1312 Slot 79 Column 2 Offset 0x8 Length 4 Length (physical) 4 1313 1314 c1 = 533 1315 1316 Slot 80 Offset 0x510 Length 15 1317 1318 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1319 1320 Memory Dump @0x000000005815A510 1321 1322 0000000000000000: 10000c00 16020000 16020000 020000 ............... 1323 1324 Slot 80 Column 1 Offset 0x4 Length 4 Length (physical) 4 1325 1326 id = 534 1327 1328 Slot 80 Column 2 Offset 0x8 Length 4 Length (physical) 4 1329 1330 c1 = 534 1331 1332 Slot 81 Offset 0x51f Length 15 1333 1334 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1335 1336 Memory Dump @0x000000005815A51F 1337 1338 0000000000000000: 10000c00 17020000 17020000 020000 ............... 1339 1340 Slot 81 Column 1 Offset 0x4 Length 4 Length (physical) 4 1341 1342 id = 535 1343 1344 Slot 81 Column 2 Offset 0x8 Length 4 Length (physical) 4 1345 1346 c1 = 535 1347 1348 Slot 82 Offset 0x52e Length 15 1349 1350 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1351 1352 Memory Dump @0x000000005815A52E 1353 1354 0000000000000000: 10000c00 18020000 18020000 020000 ............... 1355 1356 Slot 82 Column 1 Offset 0x4 Length 4 Length (physical) 4 1357 1358 id = 536 1359 1360 Slot 82 Column 2 Offset 0x8 Length 4 Length (physical) 4 1361 1362 c1 = 536 1363 1364 Slot 83 Offset 0x53d Length 15 1365 1366 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1367 1368 Memory Dump @0x000000005815A53D 1369 1370 0000000000000000: 10000c00 19020000 19020000 020000 ............... 1371 1372 Slot 83 Column 1 Offset 0x4 Length 4 Length (physical) 4 1373 1374 id = 537 1375 1376 Slot 83 Column 2 Offset 0x8 Length 4 Length (physical) 4 1377 1378 c1 = 537 1379 1380 Slot 84 Offset 0x54c Length 15 1381 1382 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1383 1384 Memory Dump @0x000000005815A54C 1385 1386 0000000000000000: 10000c00 1a020000 1a020000 020000 ............... 1387 1388 Slot 84 Column 1 Offset 0x4 Length 4 Length (physical) 4 1389 1390 id = 538 1391 1392 Slot 84 Column 2 Offset 0x8 Length 4 Length (physical) 4 1393 1394 c1 = 538 1395 1396 Slot 85 Offset 0x55b Length 15 1397 1398 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1399 1400 Memory Dump @0x000000005815A55B 1401 1402 0000000000000000: 10000c00 1b020000 1b020000 020000 ............... 1403 1404 Slot 85 Column 1 Offset 0x4 Length 4 Length (physical) 4 1405 1406 id = 539 1407 1408 Slot 85 Column 2 Offset 0x8 Length 4 Length (physical) 4 1409 1410 c1 = 539 1411 1412 Slot 86 Offset 0x56a Length 15 1413 1414 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1415 1416 Memory Dump @0x000000005815A56A 1417 1418 0000000000000000: 10000c00 1c020000 1c020000 020000 ............... 1419 1420 Slot 86 Column 1 Offset 0x4 Length 4 Length (physical) 4 1421 1422 id = 540 1423 1424 Slot 86 Column 2 Offset 0x8 Length 4 Length (physical) 4 1425 1426 c1 = 540 1427 1428 Slot 87 Offset 0x579 Length 15 1429 1430 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1431 1432 Memory Dump @0x000000005815A579 1433 1434 0000000000000000: 10000c00 1d020000 1d020000 020000 ............... 1435 1436 Slot 87 Column 1 Offset 0x4 Length 4 Length (physical) 4 1437 1438 id = 541 1439 1440 Slot 87 Column 2 Offset 0x8 Length 4 Length (physical) 4 1441 1442 c1 = 541 1443 1444 Slot 88 Offset 0x588 Length 15 1445 1446 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1447 1448 Memory Dump @0x000000005815A588 1449 1450 0000000000000000: 10000c00 1e020000 1e020000 020000 ............... 1451 1452 Slot 88 Column 1 Offset 0x4 Length 4 Length (physical) 4 1453 1454 id = 542 1455 1456 Slot 88 Column 2 Offset 0x8 Length 4 Length (physical) 4 1457 1458 c1 = 542 1459 1460 Slot 89 Offset 0x597 Length 15 1461 1462 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1463 1464 Memory Dump @0x000000005815A597 1465 1466 0000000000000000: 10000c00 1f020000 1f020000 020000 ............... 1467 1468 Slot 89 Column 1 Offset 0x4 Length 4 Length (physical) 4 1469 1470 id = 543 1471 1472 Slot 89 Column 2 Offset 0x8 Length 4 Length (physical) 4 1473 1474 c1 = 543 1475 1476 Slot 90 Offset 0x5a6 Length 15 1477 1478 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1479 1480 Memory Dump @0x000000005815A5A6 1481 1482 0000000000000000: 10000c00 20020000 20020000 020000 .... ... ...... 1483 1484 Slot 90 Column 1 Offset 0x4 Length 4 Length (physical) 4 1485 1486 id = 544 1487 1488 Slot 90 Column 2 Offset 0x8 Length 4 Length (physical) 4 1489 1490 c1 = 544 1491 1492 Slot 91 Offset 0x5b5 Length 15 1493 1494 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1495 1496 Memory Dump @0x000000005815A5B5 1497 1498 0000000000000000: 10000c00 21020000 21020000 020000 ....!...!...... 1499 1500 Slot 91 Column 1 Offset 0x4 Length 4 Length (physical) 4 1501 1502 id = 545 1503 1504 Slot 91 Column 2 Offset 0x8 Length 4 Length (physical) 4 1505 1506 c1 = 545 1507 1508 Slot 92 Offset 0x5c4 Length 15 1509 1510 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1511 1512 Memory Dump @0x000000005815A5C4 1513 1514 0000000000000000: 10000c00 22020000 22020000 020000 ...."..."...... 1515 1516 Slot 92 Column 1 Offset 0x4 Length 4 Length (physical) 4 1517 1518 id = 546 1519 1520 Slot 92 Column 2 Offset 0x8 Length 4 Length (physical) 4 1521 1522 c1 = 546 1523 1524 Slot 93 Offset 0x5d3 Length 15 1525 1526 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1527 1528 Memory Dump @0x000000005815A5D3 1529 1530 0000000000000000: 10000c00 23020000 23020000 020000 ....#...#...... 1531 1532 Slot 93 Column 1 Offset 0x4 Length 4 Length (physical) 4 1533 1534 id = 547 1535 1536 Slot 93 Column 2 Offset 0x8 Length 4 Length (physical) 4 1537 1538 c1 = 547 1539 1540 Slot 94 Offset 0x5e2 Length 15 1541 1542 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1543 1544 Memory Dump @0x000000005815A5E2 1545 1546 0000000000000000: 10000c00 24020000 24020000 020000 ....$...$...... 1547 1548 Slot 94 Column 1 Offset 0x4 Length 4 Length (physical) 4 1549 1550 id = 548 1551 1552 Slot 94 Column 2 Offset 0x8 Length 4 Length (physical) 4 1553 1554 c1 = 548 1555 1556 Slot 95 Offset 0x5f1 Length 15 1557 1558 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1559 1560 Memory Dump @0x000000005815A5F1 1561 1562 0000000000000000: 10000c00 25020000 25020000 020000 ....%...%...... 1563 1564 Slot 95 Column 1 Offset 0x4 Length 4 Length (physical) 4 1565 1566 id = 549 1567 1568 Slot 95 Column 2 Offset 0x8 Length 4 Length (physical) 4 1569 1570 c1 = 549 1571 1572 Slot 96 Offset 0x600 Length 15 1573 1574 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1575 1576 Memory Dump @0x000000005815A600 1577 1578 0000000000000000: 10000c00 26020000 26020000 020000 ....&...&...... 1579 1580 Slot 96 Column 1 Offset 0x4 Length 4 Length (physical) 4 1581 1582 id = 550 1583 1584 Slot 96 Column 2 Offset 0x8 Length 4 Length (physical) 4 1585 1586 c1 = 550 1587 1588 Slot 97 Offset 0x60f Length 15 1589 1590 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1591 1592 Memory Dump @0x000000005815A60F 1593 1594 0000000000000000: 10000c00 27020000 27020000 020000 ....'...'...... 1595 1596 Slot 97 Column 1 Offset 0x4 Length 4 Length (physical) 4 1597 1598 id = 551 1599 1600 Slot 97 Column 2 Offset 0x8 Length 4 Length (physical) 4 1601 1602 c1 = 551 1603 1604 Slot 98 Offset 0x61e Length 15 1605 1606 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1607 1608 Memory Dump @0x000000005815A61E 1609 1610 0000000000000000: 10000c00 28020000 28020000 020000 ....(...(...... 1611 1612 Slot 98 Column 1 Offset 0x4 Length 4 Length (physical) 4 1613 1614 id = 552 1615 1616 Slot 98 Column 2 Offset 0x8 Length 4 Length (physical) 4 1617 1618 c1 = 552 1619 1620 Slot 99 Offset 0x62d Length 15 1621 1622 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1623 1624 Memory Dump @0x000000005815A62D 1625 1626 0000000000000000: 10000c00 29020000 29020000 020000 ....)...)...... 1627 1628 Slot 99 Column 1 Offset 0x4 Length 4 Length (physical) 4 1629 1630 id = 553 1631 1632 Slot 99 Column 2 Offset 0x8 Length 4 Length (physical) 4 1633 1634 c1 = 553 1635 1636 Slot 100 Offset 0x63c Length 15 1637 1638 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1639 1640 Memory Dump @0x000000005815A63C 1641 1642 0000000000000000: 10000c00 2a020000 2a020000 020000 ....*...*...... 1643 1644 Slot 100 Column 1 Offset 0x4 Length 4 Length (physical) 4 1645 1646 id = 554 1647 1648 Slot 100 Column 2 Offset 0x8 Length 4 Length (physical) 4 1649 1650 c1 = 554 1651 1652 Slot 101 Offset 0x64b Length 15 1653 1654 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1655 1656 Memory Dump @0x000000005815A64B 1657 1658 0000000000000000: 10000c00 2b020000 2b020000 020000 ....+...+...... 1659 1660 Slot 101 Column 1 Offset 0x4 Length 4 Length (physical) 4 1661 1662 id = 555 1663 1664 Slot 101 Column 2 Offset 0x8 Length 4 Length (physical) 4 1665 1666 c1 = 555 1667 1668 Slot 102 Offset 0x65a Length 15 1669 1670 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1671 1672 Memory Dump @0x000000005815A65A 1673 1674 0000000000000000: 10000c00 2c020000 2c020000 020000 ....,...,...... 1675 1676 Slot 102 Column 1 Offset 0x4 Length 4 Length (physical) 4 1677 1678 id = 556 1679 1680 Slot 102 Column 2 Offset 0x8 Length 4 Length (physical) 4 1681 1682 c1 = 556 1683 1684 Slot 103 Offset 0x669 Length 15 1685 1686 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1687 1688 Memory Dump @0x000000005815A669 1689 1690 0000000000000000: 10000c00 2d020000 2d020000 020000 ....-...-...... 1691 1692 Slot 103 Column 1 Offset 0x4 Length 4 Length (physical) 4 1693 1694 id = 557 1695 1696 Slot 103 Column 2 Offset 0x8 Length 4 Length (physical) 4 1697 1698 c1 = 557 1699 1700 Slot 104 Offset 0x678 Length 15 1701 1702 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1703 1704 Memory Dump @0x000000005815A678 1705 1706 0000000000000000: 10000c00 2e020000 2e020000 020000 ............... 1707 1708 Slot 104 Column 1 Offset 0x4 Length 4 Length (physical) 4 1709 1710 id = 558 1711 1712 Slot 104 Column 2 Offset 0x8 Length 4 Length (physical) 4 1713 1714 c1 = 558 1715 1716 Slot 105 Offset 0x687 Length 15 1717 1718 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1719 1720 Memory Dump @0x000000005815A687 1721 1722 0000000000000000: 10000c00 2f020000 2f020000 020000 ..../.../...... 1723 1724 Slot 105 Column 1 Offset 0x4 Length 4 Length (physical) 4 1725 1726 id = 559 1727 1728 Slot 105 Column 2 Offset 0x8 Length 4 Length (physical) 4 1729 1730 c1 = 559 1731 1732 Slot 106 Offset 0x696 Length 15 1733 1734 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1735 1736 Memory Dump @0x000000005815A696 1737 1738 0000000000000000: 10000c00 30020000 30020000 020000 ....0...0...... 1739 1740 Slot 106 Column 1 Offset 0x4 Length 4 Length (physical) 4 1741 1742 id = 560 1743 1744 Slot 106 Column 2 Offset 0x8 Length 4 Length (physical) 4 1745 1746 c1 = 560 1747 1748 Slot 107 Offset 0x6a5 Length 15 1749 1750 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1751 1752 Memory Dump @0x000000005815A6A5 1753 1754 0000000000000000: 10000c00 31020000 31020000 020000 ....1...1...... 1755 1756 Slot 107 Column 1 Offset 0x4 Length 4 Length (physical) 4 1757 1758 id = 561 1759 1760 Slot 107 Column 2 Offset 0x8 Length 4 Length (physical) 4 1761 1762 c1 = 561 1763 1764 Slot 108 Offset 0x6b4 Length 15 1765 1766 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1767 1768 Memory Dump @0x000000005815A6B4 1769 1770 0000000000000000: 10000c00 32020000 32020000 020000 ....2...2...... 1771 1772 Slot 108 Column 1 Offset 0x4 Length 4 Length (physical) 4 1773 1774 id = 562 1775 1776 Slot 108 Column 2 Offset 0x8 Length 4 Length (physical) 4 1777 1778 c1 = 562 1779 1780 Slot 109 Offset 0x6c3 Length 15 1781 1782 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1783 1784 Memory Dump @0x000000005815A6C3 1785 1786 0000000000000000: 10000c00 33020000 33020000 020000 ....3...3...... 1787 1788 Slot 109 Column 1 Offset 0x4 Length 4 Length (physical) 4 1789 1790 id = 563 1791 1792 Slot 109 Column 2 Offset 0x8 Length 4 Length (physical) 4 1793 1794 c1 = 563 1795 1796 Slot 110 Offset 0x6d2 Length 15 1797 1798 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1799 1800 Memory Dump @0x000000005815A6D2 1801 1802 0000000000000000: 10000c00 34020000 34020000 020000 ....4...4...... 1803 1804 Slot 110 Column 1 Offset 0x4 Length 4 Length (physical) 4 1805 1806 id = 564 1807 1808 Slot 110 Column 2 Offset 0x8 Length 4 Length (physical) 4 1809 1810 c1 = 564 1811 1812 Slot 111 Offset 0x6e1 Length 15 1813 1814 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1815 1816 Memory Dump @0x000000005815A6E1 1817 1818 0000000000000000: 10000c00 35020000 35020000 020000 ....5...5...... 1819 1820 Slot 111 Column 1 Offset 0x4 Length 4 Length (physical) 4 1821 1822 id = 565 1823 1824 Slot 111 Column 2 Offset 0x8 Length 4 Length (physical) 4 1825 1826 c1 = 565 1827 1828 Slot 112 Offset 0x6f0 Length 15 1829 1830 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1831 1832 Memory Dump @0x000000005815A6F0 1833 1834 0000000000000000: 10000c00 36020000 36020000 020000 ....6...6...... 1835 1836 Slot 112 Column 1 Offset 0x4 Length 4 Length (physical) 4 1837 1838 id = 566 1839 1840 Slot 112 Column 2 Offset 0x8 Length 4 Length (physical) 4 1841 1842 c1 = 566 1843 1844 Slot 113 Offset 0x6ff Length 15 1845 1846 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1847 1848 Memory Dump @0x000000005815A6FF 1849 1850 0000000000000000: 10000c00 37020000 37020000 020000 ....7...7...... 1851 1852 Slot 113 Column 1 Offset 0x4 Length 4 Length (physical) 4 1853 1854 id = 567 1855 1856 Slot 113 Column 2 Offset 0x8 Length 4 Length (physical) 4 1857 1858 c1 = 567 1859 1860 Slot 114 Offset 0x70e Length 15 1861 1862 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1863 1864 Memory Dump @0x000000005815A70E 1865 1866 0000000000000000: 10000c00 38020000 38020000 020000 ....8...8...... 1867 1868 Slot 114 Column 1 Offset 0x4 Length 4 Length (physical) 4 1869 1870 id = 568 1871 1872 Slot 114 Column 2 Offset 0x8 Length 4 Length (physical) 4 1873 1874 c1 = 568 1875 1876 Slot 115 Offset 0x71d Length 15 1877 1878 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1879 1880 Memory Dump @0x000000005815A71D 1881 1882 0000000000000000: 10000c00 39020000 39020000 020000 ....9...9...... 1883 1884 Slot 115 Column 1 Offset 0x4 Length 4 Length (physical) 4 1885 1886 id = 569 1887 1888 Slot 115 Column 2 Offset 0x8 Length 4 Length (physical) 4 1889 1890 c1 = 569 1891 1892 Slot 116 Offset 0x72c Length 15 1893 1894 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1895 1896 Memory Dump @0x000000005815A72C 1897 1898 0000000000000000: 10000c00 3a020000 3a020000 020000 ....:...:...... 1899 1900 Slot 116 Column 1 Offset 0x4 Length 4 Length (physical) 4 1901 1902 id = 570 1903 1904 Slot 116 Column 2 Offset 0x8 Length 4 Length (physical) 4 1905 1906 c1 = 570 1907 1908 Slot 117 Offset 0x73b Length 15 1909 1910 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1911 1912 Memory Dump @0x000000005815A73B 1913 1914 0000000000000000: 10000c00 3b020000 3b020000 020000 ....;...;...... 1915 1916 Slot 117 Column 1 Offset 0x4 Length 4 Length (physical) 4 1917 1918 id = 571 1919 1920 Slot 117 Column 2 Offset 0x8 Length 4 Length (physical) 4 1921 1922 c1 = 571 1923 1924 Slot 118 Offset 0x74a Length 15 1925 1926 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1927 1928 Memory Dump @0x000000005815A74A 1929 1930 0000000000000000: 10000c00 3c020000 3c020000 020000 ....<...<...... 1931 1932 Slot 118 Column 1 Offset 0x4 Length 4 Length (physical) 4 1933 1934 id = 572 1935 1936 Slot 118 Column 2 Offset 0x8 Length 4 Length (physical) 4 1937 1938 c1 = 572 1939 1940 Slot 119 Offset 0x759 Length 15 1941 1942 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1943 1944 Memory Dump @0x000000005815A759 1945 1946 0000000000000000: 10000c00 3d020000 3d020000 020000 ....=...=...... 1947 1948 Slot 119 Column 1 Offset 0x4 Length 4 Length (physical) 4 1949 1950 id = 573 1951 1952 Slot 119 Column 2 Offset 0x8 Length 4 Length (physical) 4 1953 1954 c1 = 573 1955 1956 Slot 120 Offset 0x768 Length 15 1957 1958 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1959 1960 Memory Dump @0x000000005815A768 1961 1962 0000000000000000: 10000c00 3e020000 3e020000 020000 ....>...>...... 1963 1964 Slot 120 Column 1 Offset 0x4 Length 4 Length (physical) 4 1965 1966 id = 574 1967 1968 Slot 120 Column 2 Offset 0x8 Length 4 Length (physical) 4 1969 1970 c1 = 574 1971 1972 Slot 121 Offset 0x777 Length 15 1973 1974 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1975 1976 Memory Dump @0x000000005815A777 1977 1978 0000000000000000: 10000c00 3f020000 3f020000 020000 ....?...?...... 1979 1980 Slot 121 Column 1 Offset 0x4 Length 4 Length (physical) 4 1981 1982 id = 575 1983 1984 Slot 121 Column 2 Offset 0x8 Length 4 Length (physical) 4 1985 1986 c1 = 575 1987 1988 Slot 122 Offset 0x786 Length 15 1989 1990 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 1991 1992 Memory Dump @0x000000005815A786 1993 1994 0000000000000000: 10000c00 40020000 40020000 020000 ....@...@...... 1995 1996 Slot 122 Column 1 Offset 0x4 Length 4 Length (physical) 4 1997 1998 id = 576 1999 2000 Slot 122 Column 2 Offset 0x8 Length 4 Length (physical) 4 2001 2002 c1 = 576 2003 2004 Slot 123 Offset 0x795 Length 15 2005 2006 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2007 2008 Memory Dump @0x000000005815A795 2009 2010 0000000000000000: 10000c00 41020000 41020000 020000 ....A...A...... 2011 2012 Slot 123 Column 1 Offset 0x4 Length 4 Length (physical) 4 2013 2014 id = 577 2015 2016 Slot 123 Column 2 Offset 0x8 Length 4 Length (physical) 4 2017 2018 c1 = 577 2019 2020 Slot 124 Offset 0x7a4 Length 15 2021 2022 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2023 2024 Memory Dump @0x000000005815A7A4 2025 2026 0000000000000000: 10000c00 42020000 42020000 020000 ....B...B...... 2027 2028 Slot 124 Column 1 Offset 0x4 Length 4 Length (physical) 4 2029 2030 id = 578 2031 2032 Slot 124 Column 2 Offset 0x8 Length 4 Length (physical) 4 2033 2034 c1 = 578 2035 2036 Slot 125 Offset 0x7b3 Length 15 2037 2038 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2039 2040 Memory Dump @0x000000005815A7B3 2041 2042 0000000000000000: 10000c00 43020000 43020000 020000 ....C...C...... 2043 2044 Slot 125 Column 1 Offset 0x4 Length 4 Length (physical) 4 2045 2046 id = 579 2047 2048 Slot 125 Column 2 Offset 0x8 Length 4 Length (physical) 4 2049 2050 c1 = 579 2051 2052 Slot 126 Offset 0x7c2 Length 15 2053 2054 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2055 2056 Memory Dump @0x000000005815A7C2 2057 2058 0000000000000000: 10000c00 44020000 44020000 020000 ....D...D...... 2059 2060 Slot 126 Column 1 Offset 0x4 Length 4 Length (physical) 4 2061 2062 id = 580 2063 2064 Slot 126 Column 2 Offset 0x8 Length 4 Length (physical) 4 2065 2066 c1 = 580 2067 2068 Slot 127 Offset 0x7d1 Length 15 2069 2070 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2071 2072 Memory Dump @0x000000005815A7D1 2073 2074 0000000000000000: 10000c00 45020000 45020000 020000 ....E...E...... 2075 2076 Slot 127 Column 1 Offset 0x4 Length 4 Length (physical) 4 2077 2078 id = 581 2079 2080 Slot 127 Column 2 Offset 0x8 Length 4 Length (physical) 4 2081 2082 c1 = 581 2083 2084 Slot 128 Offset 0x7e0 Length 15 2085 2086 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2087 2088 Memory Dump @0x000000005815A7E0 2089 2090 0000000000000000: 10000c00 46020000 46020000 020000 ....F...F...... 2091 2092 Slot 128 Column 1 Offset 0x4 Length 4 Length (physical) 4 2093 2094 id = 582 2095 2096 Slot 128 Column 2 Offset 0x8 Length 4 Length (physical) 4 2097 2098 c1 = 582 2099 2100 Slot 129 Offset 0x7ef Length 15 2101 2102 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2103 2104 Memory Dump @0x000000005815A7EF 2105 2106 0000000000000000: 10000c00 47020000 47020000 020000 ....G...G...... 2107 2108 Slot 129 Column 1 Offset 0x4 Length 4 Length (physical) 4 2109 2110 id = 583 2111 2112 Slot 129 Column 2 Offset 0x8 Length 4 Length (physical) 4 2113 2114 c1 = 583 2115 2116 Slot 130 Offset 0x7fe Length 15 2117 2118 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2119 2120 Memory Dump @0x000000005815A7FE 2121 2122 0000000000000000: 10000c00 48020000 48020000 020000 ....H...H...... 2123 2124 Slot 130 Column 1 Offset 0x4 Length 4 Length (physical) 4 2125 2126 id = 584 2127 2128 Slot 130 Column 2 Offset 0x8 Length 4 Length (physical) 4 2129 2130 c1 = 584 2131 2132 Slot 131 Offset 0x80d Length 15 2133 2134 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2135 2136 Memory Dump @0x000000005815A80D 2137 2138 0000000000000000: 10000c00 49020000 49020000 020000 ....I...I...... 2139 2140 Slot 131 Column 1 Offset 0x4 Length 4 Length (physical) 4 2141 2142 id = 585 2143 2144 Slot 131 Column 2 Offset 0x8 Length 4 Length (physical) 4 2145 2146 c1 = 585 2147 2148 Slot 132 Offset 0x81c Length 15 2149 2150 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2151 2152 Memory Dump @0x000000005815A81C 2153 2154 0000000000000000: 10000c00 4a020000 4a020000 020000 ....J...J...... 2155 2156 Slot 132 Column 1 Offset 0x4 Length 4 Length (physical) 4 2157 2158 id = 586 2159 2160 Slot 132 Column 2 Offset 0x8 Length 4 Length (physical) 4 2161 2162 c1 = 586 2163 2164 Slot 133 Offset 0x82b Length 15 2165 2166 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2167 2168 Memory Dump @0x000000005815A82B 2169 2170 0000000000000000: 10000c00 4b020000 4b020000 020000 ....K...K...... 2171 2172 Slot 133 Column 1 Offset 0x4 Length 4 Length (physical) 4 2173 2174 id = 587 2175 2176 Slot 133 Column 2 Offset 0x8 Length 4 Length (physical) 4 2177 2178 c1 = 587 2179 2180 Slot 134 Offset 0x83a Length 15 2181 2182 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2183 2184 Memory Dump @0x000000005815A83A 2185 2186 0000000000000000: 10000c00 4c020000 4c020000 020000 ....L...L...... 2187 2188 Slot 134 Column 1 Offset 0x4 Length 4 Length (physical) 4 2189 2190 id = 588 2191 2192 Slot 134 Column 2 Offset 0x8 Length 4 Length (physical) 4 2193 2194 c1 = 588 2195 2196 Slot 135 Offset 0x849 Length 15 2197 2198 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2199 2200 Memory Dump @0x000000005815A849 2201 2202 0000000000000000: 10000c00 4d020000 4d020000 020000 ....M...M...... 2203 2204 Slot 135 Column 1 Offset 0x4 Length 4 Length (physical) 4 2205 2206 id = 589 2207 2208 Slot 135 Column 2 Offset 0x8 Length 4 Length (physical) 4 2209 2210 c1 = 589 2211 2212 Slot 136 Offset 0x858 Length 15 2213 2214 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2215 2216 Memory Dump @0x000000005815A858 2217 2218 0000000000000000: 10000c00 4e020000 4e020000 020000 ....N...N...... 2219 2220 Slot 136 Column 1 Offset 0x4 Length 4 Length (physical) 4 2221 2222 id = 590 2223 2224 Slot 136 Column 2 Offset 0x8 Length 4 Length (physical) 4 2225 2226 c1 = 590 2227 2228 Slot 137 Offset 0x867 Length 15 2229 2230 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2231 2232 Memory Dump @0x000000005815A867 2233 2234 0000000000000000: 10000c00 4f020000 4f020000 020000 ....O...O...... 2235 2236 Slot 137 Column 1 Offset 0x4 Length 4 Length (physical) 4 2237 2238 id = 591 2239 2240 Slot 137 Column 2 Offset 0x8 Length 4 Length (physical) 4 2241 2242 c1 = 591 2243 2244 Slot 138 Offset 0x876 Length 15 2245 2246 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2247 2248 Memory Dump @0x000000005815A876 2249 2250 0000000000000000: 10000c00 50020000 50020000 020000 ....P...P...... 2251 2252 Slot 138 Column 1 Offset 0x4 Length 4 Length (physical) 4 2253 2254 id = 592 2255 2256 Slot 138 Column 2 Offset 0x8 Length 4 Length (physical) 4 2257 2258 c1 = 592 2259 2260 Slot 139 Offset 0x885 Length 15 2261 2262 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2263 2264 Memory Dump @0x000000005815A885 2265 2266 0000000000000000: 10000c00 51020000 51020000 020000 ....Q...Q...... 2267 2268 Slot 139 Column 1 Offset 0x4 Length 4 Length (physical) 4 2269 2270 id = 593 2271 2272 Slot 139 Column 2 Offset 0x8 Length 4 Length (physical) 4 2273 2274 c1 = 593 2275 2276 Slot 140 Offset 0x894 Length 15 2277 2278 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2279 2280 Memory Dump @0x000000005815A894 2281 2282 0000000000000000: 10000c00 52020000 52020000 020000 ....R...R...... 2283 2284 Slot 140 Column 1 Offset 0x4 Length 4 Length (physical) 4 2285 2286 id = 594 2287 2288 Slot 140 Column 2 Offset 0x8 Length 4 Length (physical) 4 2289 2290 c1 = 594 2291 2292 Slot 141 Offset 0x8a3 Length 15 2293 2294 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2295 2296 Memory Dump @0x000000005815A8A3 2297 2298 0000000000000000: 10000c00 53020000 53020000 020000 ....S...S...... 2299 2300 Slot 141 Column 1 Offset 0x4 Length 4 Length (physical) 4 2301 2302 id = 595 2303 2304 Slot 141 Column 2 Offset 0x8 Length 4 Length (physical) 4 2305 2306 c1 = 595 2307 2308 Slot 142 Offset 0x8b2 Length 15 2309 2310 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2311 2312 Memory Dump @0x000000005815A8B2 2313 2314 0000000000000000: 10000c00 54020000 54020000 020000 ....T...T...... 2315 2316 Slot 142 Column 1 Offset 0x4 Length 4 Length (physical) 4 2317 2318 id = 596 2319 2320 Slot 142 Column 2 Offset 0x8 Length 4 Length (physical) 4 2321 2322 c1 = 596 2323 2324 Slot 143 Offset 0x8c1 Length 15 2325 2326 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2327 2328 Memory Dump @0x000000005815A8C1 2329 2330 0000000000000000: 10000c00 55020000 55020000 020000 ....U...U...... 2331 2332 Slot 143 Column 1 Offset 0x4 Length 4 Length (physical) 4 2333 2334 id = 597 2335 2336 Slot 143 Column 2 Offset 0x8 Length 4 Length (physical) 4 2337 2338 c1 = 597 2339 2340 Slot 144 Offset 0x8d0 Length 15 2341 2342 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2343 2344 Memory Dump @0x000000005815A8D0 2345 2346 0000000000000000: 10000c00 56020000 56020000 020000 ....V...V...... 2347 2348 Slot 144 Column 1 Offset 0x4 Length 4 Length (physical) 4 2349 2350 id = 598 2351 2352 Slot 144 Column 2 Offset 0x8 Length 4 Length (physical) 4 2353 2354 c1 = 598 2355 2356 Slot 145 Offset 0x8df Length 15 2357 2358 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2359 2360 Memory Dump @0x000000005815A8DF 2361 2362 0000000000000000: 10000c00 57020000 57020000 020000 ....W...W...... 2363 2364 Slot 145 Column 1 Offset 0x4 Length 4 Length (physical) 4 2365 2366 id = 599 2367 2368 Slot 145 Column 2 Offset 0x8 Length 4 Length (physical) 4 2369 2370 c1 = 599 2371 2372 Slot 146 Offset 0x8ee Length 15 2373 2374 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2375 2376 Memory Dump @0x000000005815A8EE 2377 2378 0000000000000000: 10000c00 58020000 58020000 020000 ....X...X...... 2379 2380 Slot 146 Column 1 Offset 0x4 Length 4 Length (physical) 4 2381 2382 id = 600 2383 2384 Slot 146 Column 2 Offset 0x8 Length 4 Length (physical) 4 2385 2386 c1 = 600 2387 2388 Slot 147 Offset 0x8fd Length 15 2389 2390 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2391 2392 Memory Dump @0x000000005815A8FD 2393 2394 0000000000000000: 10000c00 59020000 59020000 020000 ....Y...Y...... 2395 2396 Slot 147 Column 1 Offset 0x4 Length 4 Length (physical) 4 2397 2398 id = 601 2399 2400 Slot 147 Column 2 Offset 0x8 Length 4 Length (physical) 4 2401 2402 c1 = 601 2403 2404 Slot 148 Offset 0x90c Length 15 2405 2406 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2407 2408 Memory Dump @0x000000005815A90C 2409 2410 0000000000000000: 10000c00 5a020000 5a020000 020000 ....Z...Z...... 2411 2412 Slot 148 Column 1 Offset 0x4 Length 4 Length (physical) 4 2413 2414 id = 602 2415 2416 Slot 148 Column 2 Offset 0x8 Length 4 Length (physical) 4 2417 2418 c1 = 602 2419 2420 Slot 149 Offset 0x91b Length 15 2421 2422 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2423 2424 Memory Dump @0x000000005815A91B 2425 2426 0000000000000000: 10000c00 5b020000 5b020000 020000 ....[...[...... 2427 2428 Slot 149 Column 1 Offset 0x4 Length 4 Length (physical) 4 2429 2430 id = 603 2431 2432 Slot 149 Column 2 Offset 0x8 Length 4 Length (physical) 4 2433 2434 c1 = 603 2435 2436 Slot 150 Offset 0x92a Length 15 2437 2438 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2439 2440 Memory Dump @0x000000005815A92A 2441 2442 0000000000000000: 10000c00 5c020000 5c020000 020000 ....\...\...... 2443 2444 Slot 150 Column 1 Offset 0x4 Length 4 Length (physical) 4 2445 2446 id = 604 2447 2448 Slot 150 Column 2 Offset 0x8 Length 4 Length (physical) 4 2449 2450 c1 = 604 2451 2452 Slot 151 Offset 0x939 Length 15 2453 2454 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2455 2456 Memory Dump @0x000000005815A939 2457 2458 0000000000000000: 10000c00 5d020000 5d020000 020000 ....]...]...... 2459 2460 Slot 151 Column 1 Offset 0x4 Length 4 Length (physical) 4 2461 2462 id = 605 2463 2464 Slot 151 Column 2 Offset 0x8 Length 4 Length (physical) 4 2465 2466 c1 = 605 2467 2468 Slot 152 Offset 0x948 Length 15 2469 2470 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2471 2472 Memory Dump @0x000000005815A948 2473 2474 0000000000000000: 10000c00 5e020000 5e020000 020000 ....^...^...... 2475 2476 Slot 152 Column 1 Offset 0x4 Length 4 Length (physical) 4 2477 2478 id = 606 2479 2480 Slot 152 Column 2 Offset 0x8 Length 4 Length (physical) 4 2481 2482 c1 = 606 2483 2484 Slot 153 Offset 0x957 Length 15 2485 2486 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2487 2488 Memory Dump @0x000000005815A957 2489 2490 0000000000000000: 10000c00 5f020000 5f020000 020000 ...._..._...... 2491 2492 Slot 153 Column 1 Offset 0x4 Length 4 Length (physical) 4 2493 2494 id = 607 2495 2496 Slot 153 Column 2 Offset 0x8 Length 4 Length (physical) 4 2497 2498 c1 = 607 2499 2500 Slot 154 Offset 0x966 Length 15 2501 2502 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2503 2504 Memory Dump @0x000000005815A966 2505 2506 0000000000000000: 10000c00 60020000 60020000 020000 ....`...`...... 2507 2508 Slot 154 Column 1 Offset 0x4 Length 4 Length (physical) 4 2509 2510 id = 608 2511 2512 Slot 154 Column 2 Offset 0x8 Length 4 Length (physical) 4 2513 2514 c1 = 608 2515 2516 Slot 155 Offset 0x975 Length 15 2517 2518 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2519 2520 Memory Dump @0x000000005815A975 2521 2522 0000000000000000: 10000c00 61020000 61020000 020000 ....a...a...... 2523 2524 Slot 155 Column 1 Offset 0x4 Length 4 Length (physical) 4 2525 2526 id = 609 2527 2528 Slot 155 Column 2 Offset 0x8 Length 4 Length (physical) 4 2529 2530 c1 = 609 2531 2532 Slot 156 Offset 0x984 Length 15 2533 2534 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2535 2536 Memory Dump @0x000000005815A984 2537 2538 0000000000000000: 10000c00 62020000 62020000 020000 ....b...b...... 2539 2540 Slot 156 Column 1 Offset 0x4 Length 4 Length (physical) 4 2541 2542 id = 610 2543 2544 Slot 156 Column 2 Offset 0x8 Length 4 Length (physical) 4 2545 2546 c1 = 610 2547 2548 Slot 157 Offset 0x993 Length 15 2549 2550 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2551 2552 Memory Dump @0x000000005815A993 2553 2554 0000000000000000: 10000c00 63020000 63020000 020000 ....c...c...... 2555 2556 Slot 157 Column 1 Offset 0x4 Length 4 Length (physical) 4 2557 2558 id = 611 2559 2560 Slot 157 Column 2 Offset 0x8 Length 4 Length (physical) 4 2561 2562 c1 = 611 2563 2564 Slot 158 Offset 0x9a2 Length 15 2565 2566 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2567 2568 Memory Dump @0x000000005815A9A2 2569 2570 0000000000000000: 10000c00 64020000 64020000 020000 ....d...d...... 2571 2572 Slot 158 Column 1 Offset 0x4 Length 4 Length (physical) 4 2573 2574 id = 612 2575 2576 Slot 158 Column 2 Offset 0x8 Length 4 Length (physical) 4 2577 2578 c1 = 612 2579 2580 Slot 159 Offset 0x9b1 Length 15 2581 2582 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2583 2584 Memory Dump @0x000000005815A9B1 2585 2586 0000000000000000: 10000c00 65020000 65020000 020000 ....e...e...... 2587 2588 Slot 159 Column 1 Offset 0x4 Length 4 Length (physical) 4 2589 2590 id = 613 2591 2592 Slot 159 Column 2 Offset 0x8 Length 4 Length (physical) 4 2593 2594 c1 = 613 2595 2596 Slot 160 Offset 0x9c0 Length 15 2597 2598 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2599 2600 Memory Dump @0x000000005815A9C0 2601 2602 0000000000000000: 10000c00 66020000 66020000 020000 ....f...f...... 2603 2604 Slot 160 Column 1 Offset 0x4 Length 4 Length (physical) 4 2605 2606 id = 614 2607 2608 Slot 160 Column 2 Offset 0x8 Length 4 Length (physical) 4 2609 2610 c1 = 614 2611 2612 Slot 161 Offset 0x9cf Length 15 2613 2614 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2615 2616 Memory Dump @0x000000005815A9CF 2617 2618 0000000000000000: 10000c00 67020000 67020000 020000 ....g...g...... 2619 2620 Slot 161 Column 1 Offset 0x4 Length 4 Length (physical) 4 2621 2622 id = 615 2623 2624 Slot 161 Column 2 Offset 0x8 Length 4 Length (physical) 4 2625 2626 c1 = 615 2627 2628 Slot 162 Offset 0x9de Length 15 2629 2630 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2631 2632 Memory Dump @0x000000005815A9DE 2633 2634 0000000000000000: 10000c00 68020000 68020000 020000 ....h...h...... 2635 2636 Slot 162 Column 1 Offset 0x4 Length 4 Length (physical) 4 2637 2638 id = 616 2639 2640 Slot 162 Column 2 Offset 0x8 Length 4 Length (physical) 4 2641 2642 c1 = 616 2643 2644 Slot 163 Offset 0x9ed Length 15 2645 2646 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2647 2648 Memory Dump @0x000000005815A9ED 2649 2650 0000000000000000: 10000c00 69020000 69020000 020000 ....i...i...... 2651 2652 Slot 163 Column 1 Offset 0x4 Length 4 Length (physical) 4 2653 2654 id = 617 2655 2656 Slot 163 Column 2 Offset 0x8 Length 4 Length (physical) 4 2657 2658 c1 = 617 2659 2660 Slot 164 Offset 0x9fc Length 15 2661 2662 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2663 2664 Memory Dump @0x000000005815A9FC 2665 2666 0000000000000000: 10000c00 6a020000 6a020000 020000 ....j...j...... 2667 2668 Slot 164 Column 1 Offset 0x4 Length 4 Length (physical) 4 2669 2670 id = 618 2671 2672 Slot 164 Column 2 Offset 0x8 Length 4 Length (physical) 4 2673 2674 c1 = 618 2675 2676 Slot 165 Offset 0xa0b Length 15 2677 2678 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2679 2680 Memory Dump @0x000000005815AA0B 2681 2682 0000000000000000: 10000c00 6b020000 6b020000 020000 ....k...k...... 2683 2684 Slot 165 Column 1 Offset 0x4 Length 4 Length (physical) 4 2685 2686 id = 619 2687 2688 Slot 165 Column 2 Offset 0x8 Length 4 Length (physical) 4 2689 2690 c1 = 619 2691 2692 Slot 166 Offset 0xa1a Length 15 2693 2694 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2695 2696 Memory Dump @0x000000005815AA1A 2697 2698 0000000000000000: 10000c00 6c020000 6c020000 020000 ....l...l...... 2699 2700 Slot 166 Column 1 Offset 0x4 Length 4 Length (physical) 4 2701 2702 id = 620 2703 2704 Slot 166 Column 2 Offset 0x8 Length 4 Length (physical) 4 2705 2706 c1 = 620 2707 2708 Slot 167 Offset 0xa29 Length 15 2709 2710 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2711 2712 Memory Dump @0x000000005815AA29 2713 2714 0000000000000000: 10000c00 6d020000 6d020000 020000 ....m...m...... 2715 2716 Slot 167 Column 1 Offset 0x4 Length 4 Length (physical) 4 2717 2718 id = 621 2719 2720 Slot 167 Column 2 Offset 0x8 Length 4 Length (physical) 4 2721 2722 c1 = 621 2723 2724 Slot 168 Offset 0xa38 Length 15 2725 2726 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2727 2728 Memory Dump @0x000000005815AA38 2729 2730 0000000000000000: 10000c00 6e020000 6e020000 020000 ....n...n...... 2731 2732 Slot 168 Column 1 Offset 0x4 Length 4 Length (physical) 4 2733 2734 id = 622 2735 2736 Slot 168 Column 2 Offset 0x8 Length 4 Length (physical) 4 2737 2738 c1 = 622 2739 2740 Slot 169 Offset 0xa47 Length 15 2741 2742 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2743 2744 Memory Dump @0x000000005815AA47 2745 2746 0000000000000000: 10000c00 6f020000 6f020000 020000 ....o...o...... 2747 2748 Slot 169 Column 1 Offset 0x4 Length 4 Length (physical) 4 2749 2750 id = 623 2751 2752 Slot 169 Column 2 Offset 0x8 Length 4 Length (physical) 4 2753 2754 c1 = 623 2755 2756 Slot 170 Offset 0xa56 Length 15 2757 2758 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2759 2760 Memory Dump @0x000000005815AA56 2761 2762 0000000000000000: 10000c00 70020000 70020000 020000 ....p...p...... 2763 2764 Slot 170 Column 1 Offset 0x4 Length 4 Length (physical) 4 2765 2766 id = 624 2767 2768 Slot 170 Column 2 Offset 0x8 Length 4 Length (physical) 4 2769 2770 c1 = 624 2771 2772 Slot 171 Offset 0xa65 Length 15 2773 2774 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2775 2776 Memory Dump @0x000000005815AA65 2777 2778 0000000000000000: 10000c00 71020000 71020000 020000 ....q...q...... 2779 2780 Slot 171 Column 1 Offset 0x4 Length 4 Length (physical) 4 2781 2782 id = 625 2783 2784 Slot 171 Column 2 Offset 0x8 Length 4 Length (physical) 4 2785 2786 c1 = 625 2787 2788 Slot 172 Offset 0xa74 Length 15 2789 2790 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2791 2792 Memory Dump @0x000000005815AA74 2793 2794 0000000000000000: 10000c00 72020000 72020000 020000 ....r...r...... 2795 2796 Slot 172 Column 1 Offset 0x4 Length 4 Length (physical) 4 2797 2798 id = 626 2799 2800 Slot 172 Column 2 Offset 0x8 Length 4 Length (physical) 4 2801 2802 c1 = 626 2803 2804 Slot 173 Offset 0xa83 Length 15 2805 2806 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2807 2808 Memory Dump @0x000000005815AA83 2809 2810 0000000000000000: 10000c00 73020000 73020000 020000 ....s...s...... 2811 2812 Slot 173 Column 1 Offset 0x4 Length 4 Length (physical) 4 2813 2814 id = 627 2815 2816 Slot 173 Column 2 Offset 0x8 Length 4 Length (physical) 4 2817 2818 c1 = 627 2819 2820 Slot 174 Offset 0xa92 Length 15 2821 2822 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2823 2824 Memory Dump @0x000000005815AA92 2825 2826 0000000000000000: 10000c00 74020000 74020000 020000 ....t...t...... 2827 2828 Slot 174 Column 1 Offset 0x4 Length 4 Length (physical) 4 2829 2830 id = 628 2831 2832 Slot 174 Column 2 Offset 0x8 Length 4 Length (physical) 4 2833 2834 c1 = 628 2835 2836 Slot 175 Offset 0xaa1 Length 15 2837 2838 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2839 2840 Memory Dump @0x000000005815AAA1 2841 2842 0000000000000000: 10000c00 75020000 75020000 020000 ....u...u...... 2843 2844 Slot 175 Column 1 Offset 0x4 Length 4 Length (physical) 4 2845 2846 id = 629 2847 2848 Slot 175 Column 2 Offset 0x8 Length 4 Length (physical) 4 2849 2850 c1 = 629 2851 2852 Slot 176 Offset 0xab0 Length 15 2853 2854 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2855 2856 Memory Dump @0x000000005815AAB0 2857 2858 0000000000000000: 10000c00 76020000 76020000 020000 ....v...v...... 2859 2860 Slot 176 Column 1 Offset 0x4 Length 4 Length (physical) 4 2861 2862 id = 630 2863 2864 Slot 176 Column 2 Offset 0x8 Length 4 Length (physical) 4 2865 2866 c1 = 630 2867 2868 Slot 177 Offset 0xabf Length 15 2869 2870 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2871 2872 Memory Dump @0x000000005815AABF 2873 2874 0000000000000000: 10000c00 77020000 77020000 020000 ....w...w...... 2875 2876 Slot 177 Column 1 Offset 0x4 Length 4 Length (physical) 4 2877 2878 id = 631 2879 2880 Slot 177 Column 2 Offset 0x8 Length 4 Length (physical) 4 2881 2882 c1 = 631 2883 2884 Slot 178 Offset 0xace Length 15 2885 2886 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2887 2888 Memory Dump @0x000000005815AACE 2889 2890 0000000000000000: 10000c00 78020000 78020000 020000 ....x...x...... 2891 2892 Slot 178 Column 1 Offset 0x4 Length 4 Length (physical) 4 2893 2894 id = 632 2895 2896 Slot 178 Column 2 Offset 0x8 Length 4 Length (physical) 4 2897 2898 c1 = 632 2899 2900 Slot 179 Offset 0xadd Length 15 2901 2902 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2903 2904 Memory Dump @0x000000005815AADD 2905 2906 0000000000000000: 10000c00 79020000 79020000 020000 ....y...y...... 2907 2908 Slot 179 Column 1 Offset 0x4 Length 4 Length (physical) 4 2909 2910 id = 633 2911 2912 Slot 179 Column 2 Offset 0x8 Length 4 Length (physical) 4 2913 2914 c1 = 633 2915 2916 Slot 180 Offset 0xaec Length 15 2917 2918 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2919 2920 Memory Dump @0x000000005815AAEC 2921 2922 0000000000000000: 10000c00 7a020000 7a020000 020000 ....z...z...... 2923 2924 Slot 180 Column 1 Offset 0x4 Length 4 Length (physical) 4 2925 2926 id = 634 2927 2928 Slot 180 Column 2 Offset 0x8 Length 4 Length (physical) 4 2929 2930 c1 = 634 2931 2932 Slot 181 Offset 0xafb Length 15 2933 2934 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2935 2936 Memory Dump @0x000000005815AAFB 2937 2938 0000000000000000: 10000c00 7b020000 7b020000 020000 ....{...{...... 2939 2940 Slot 181 Column 1 Offset 0x4 Length 4 Length (physical) 4 2941 2942 id = 635 2943 2944 Slot 181 Column 2 Offset 0x8 Length 4 Length (physical) 4 2945 2946 c1 = 635 2947 2948 Slot 182 Offset 0xb0a Length 15 2949 2950 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2951 2952 Memory Dump @0x000000005815AB0A 2953 2954 0000000000000000: 10000c00 7c020000 7c020000 020000 ....|...|...... 2955 2956 Slot 182 Column 1 Offset 0x4 Length 4 Length (physical) 4 2957 2958 id = 636 2959 2960 Slot 182 Column 2 Offset 0x8 Length 4 Length (physical) 4 2961 2962 c1 = 636 2963 2964 Slot 183 Offset 0xb19 Length 15 2965 2966 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2967 2968 Memory Dump @0x000000005815AB19 2969 2970 0000000000000000: 10000c00 7d020000 7d020000 020000 ....}...}...... 2971 2972 Slot 183 Column 1 Offset 0x4 Length 4 Length (physical) 4 2973 2974 id = 637 2975 2976 Slot 183 Column 2 Offset 0x8 Length 4 Length (physical) 4 2977 2978 c1 = 637 2979 2980 Slot 184 Offset 0xb28 Length 15 2981 2982 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2983 2984 Memory Dump @0x000000005815AB28 2985 2986 0000000000000000: 10000c00 7e020000 7e020000 020000 ....~...~...... 2987 2988 Slot 184 Column 1 Offset 0x4 Length 4 Length (physical) 4 2989 2990 id = 638 2991 2992 Slot 184 Column 2 Offset 0x8 Length 4 Length (physical) 4 2993 2994 c1 = 638 2995 2996 Slot 185 Offset 0xb37 Length 15 2997 2998 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 2999 3000 Memory Dump @0x000000005815AB37 3001 3002 0000000000000000: 10000c00 7f020000 7f020000 020000 ............... 3003 3004 Slot 185 Column 1 Offset 0x4 Length 4 Length (physical) 4 3005 3006 id = 639 3007 3008 Slot 185 Column 2 Offset 0x8 Length 4 Length (physical) 4 3009 3010 c1 = 639 3011 3012 Slot 186 Offset 0xb46 Length 15 3013 3014 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3015 3016 Memory Dump @0x000000005815AB46 3017 3018 0000000000000000: 10000c00 80020000 80020000 020000 ............... 3019 3020 Slot 186 Column 1 Offset 0x4 Length 4 Length (physical) 4 3021 3022 id = 640 3023 3024 Slot 186 Column 2 Offset 0x8 Length 4 Length (physical) 4 3025 3026 c1 = 640 3027 3028 Slot 187 Offset 0xb55 Length 15 3029 3030 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3031 3032 Memory Dump @0x000000005815AB55 3033 3034 0000000000000000: 10000c00 81020000 81020000 020000 ............... 3035 3036 Slot 187 Column 1 Offset 0x4 Length 4 Length (physical) 4 3037 3038 id = 641 3039 3040 Slot 187 Column 2 Offset 0x8 Length 4 Length (physical) 4 3041 3042 c1 = 641 3043 3044 Slot 188 Offset 0xb64 Length 15 3045 3046 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3047 3048 Memory Dump @0x000000005815AB64 3049 3050 0000000000000000: 10000c00 82020000 82020000 020000 ............... 3051 3052 Slot 188 Column 1 Offset 0x4 Length 4 Length (physical) 4 3053 3054 id = 642 3055 3056 Slot 188 Column 2 Offset 0x8 Length 4 Length (physical) 4 3057 3058 c1 = 642 3059 3060 Slot 189 Offset 0xb73 Length 15 3061 3062 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3063 3064 Memory Dump @0x000000005815AB73 3065 3066 0000000000000000: 10000c00 83020000 83020000 020000 ............... 3067 3068 Slot 189 Column 1 Offset 0x4 Length 4 Length (physical) 4 3069 3070 id = 643 3071 3072 Slot 189 Column 2 Offset 0x8 Length 4 Length (physical) 4 3073 3074 c1 = 643 3075 3076 Slot 190 Offset 0xb82 Length 15 3077 3078 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3079 3080 Memory Dump @0x000000005815AB82 3081 3082 0000000000000000: 10000c00 84020000 84020000 020000 ............... 3083 3084 Slot 190 Column 1 Offset 0x4 Length 4 Length (physical) 4 3085 3086 id = 644 3087 3088 Slot 190 Column 2 Offset 0x8 Length 4 Length (physical) 4 3089 3090 c1 = 644 3091 3092 Slot 191 Offset 0xb91 Length 15 3093 3094 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3095 3096 Memory Dump @0x000000005815AB91 3097 3098 0000000000000000: 10000c00 85020000 85020000 020000 ............... 3099 3100 Slot 191 Column 1 Offset 0x4 Length 4 Length (physical) 4 3101 3102 id = 645 3103 3104 Slot 191 Column 2 Offset 0x8 Length 4 Length (physical) 4 3105 3106 c1 = 645 3107 3108 Slot 192 Offset 0xba0 Length 15 3109 3110 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3111 3112 Memory Dump @0x000000005815ABA0 3113 3114 0000000000000000: 10000c00 86020000 86020000 020000 ............... 3115 3116 Slot 192 Column 1 Offset 0x4 Length 4 Length (physical) 4 3117 3118 id = 646 3119 3120 Slot 192 Column 2 Offset 0x8 Length 4 Length (physical) 4 3121 3122 c1 = 646 3123 3124 Slot 193 Offset 0xbaf Length 15 3125 3126 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3127 3128 Memory Dump @0x000000005815ABAF 3129 3130 0000000000000000: 10000c00 87020000 87020000 020000 ............... 3131 3132 Slot 193 Column 1 Offset 0x4 Length 4 Length (physical) 4 3133 3134 id = 647 3135 3136 Slot 193 Column 2 Offset 0x8 Length 4 Length (physical) 4 3137 3138 c1 = 647 3139 3140 Slot 194 Offset 0xbbe Length 15 3141 3142 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3143 3144 Memory Dump @0x000000005815ABBE 3145 3146 0000000000000000: 10000c00 88020000 88020000 020000 ............... 3147 3148 Slot 194 Column 1 Offset 0x4 Length 4 Length (physical) 4 3149 3150 id = 648 3151 3152 Slot 194 Column 2 Offset 0x8 Length 4 Length (physical) 4 3153 3154 c1 = 648 3155 3156 Slot 195 Offset 0xbcd Length 15 3157 3158 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3159 3160 Memory Dump @0x000000005815ABCD 3161 3162 0000000000000000: 10000c00 89020000 89020000 020000 ............... 3163 3164 Slot 195 Column 1 Offset 0x4 Length 4 Length (physical) 4 3165 3166 id = 649 3167 3168 Slot 195 Column 2 Offset 0x8 Length 4 Length (physical) 4 3169 3170 c1 = 649 3171 3172 Slot 196 Offset 0xbdc Length 15 3173 3174 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3175 3176 Memory Dump @0x000000005815ABDC 3177 3178 0000000000000000: 10000c00 8a020000 8a020000 020000 ............... 3179 3180 Slot 196 Column 1 Offset 0x4 Length 4 Length (physical) 4 3181 3182 id = 650 3183 3184 Slot 196 Column 2 Offset 0x8 Length 4 Length (physical) 4 3185 3186 c1 = 650 3187 3188 Slot 197 Offset 0xbeb Length 15 3189 3190 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3191 3192 Memory Dump @0x000000005815ABEB 3193 3194 0000000000000000: 10000c00 8b020000 8b020000 020000 ............... 3195 3196 Slot 197 Column 1 Offset 0x4 Length 4 Length (physical) 4 3197 3198 id = 651 3199 3200 Slot 197 Column 2 Offset 0x8 Length 4 Length (physical) 4 3201 3202 c1 = 651 3203 3204 Slot 198 Offset 0xbfa Length 15 3205 3206 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3207 3208 Memory Dump @0x000000005815ABFA 3209 3210 0000000000000000: 10000c00 8c020000 8c020000 020000 ............... 3211 3212 Slot 198 Column 1 Offset 0x4 Length 4 Length (physical) 4 3213 3214 id = 652 3215 3216 Slot 198 Column 2 Offset 0x8 Length 4 Length (physical) 4 3217 3218 c1 = 652 3219 3220 Slot 199 Offset 0xc09 Length 15 3221 3222 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3223 3224 Memory Dump @0x000000005815AC09 3225 3226 0000000000000000: 10000c00 8d020000 8d020000 020000 ............... 3227 3228 Slot 199 Column 1 Offset 0x4 Length 4 Length (physical) 4 3229 3230 id = 653 3231 3232 Slot 199 Column 2 Offset 0x8 Length 4 Length (physical) 4 3233 3234 c1 = 653 3235 3236 Slot 200 Offset 0xc18 Length 15 3237 3238 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3239 3240 Memory Dump @0x000000005815AC18 3241 3242 0000000000000000: 10000c00 8e020000 8e020000 020000 ............... 3243 3244 Slot 200 Column 1 Offset 0x4 Length 4 Length (physical) 4 3245 3246 id = 654 3247 3248 Slot 200 Column 2 Offset 0x8 Length 4 Length (physical) 4 3249 3250 c1 = 654 3251 3252 Slot 201 Offset 0xc27 Length 15 3253 3254 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3255 3256 Memory Dump @0x000000005815AC27 3257 3258 0000000000000000: 10000c00 8f020000 8f020000 020000 ............... 3259 3260 Slot 201 Column 1 Offset 0x4 Length 4 Length (physical) 4 3261 3262 id = 655 3263 3264 Slot 201 Column 2 Offset 0x8 Length 4 Length (physical) 4 3265 3266 c1 = 655 3267 3268 Slot 202 Offset 0xc36 Length 15 3269 3270 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3271 3272 Memory Dump @0x000000005815AC36 3273 3274 0000000000000000: 10000c00 90020000 90020000 020000 ............... 3275 3276 Slot 202 Column 1 Offset 0x4 Length 4 Length (physical) 4 3277 3278 id = 656 3279 3280 Slot 202 Column 2 Offset 0x8 Length 4 Length (physical) 4 3281 3282 c1 = 656 3283 3284 Slot 203 Offset 0xc45 Length 15 3285 3286 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3287 3288 Memory Dump @0x000000005815AC45 3289 3290 0000000000000000: 10000c00 91020000 91020000 020000 ............... 3291 3292 Slot 203 Column 1 Offset 0x4 Length 4 Length (physical) 4 3293 3294 id = 657 3295 3296 Slot 203 Column 2 Offset 0x8 Length 4 Length (physical) 4 3297 3298 c1 = 657 3299 3300 Slot 204 Offset 0xc54 Length 15 3301 3302 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3303 3304 Memory Dump @0x000000005815AC54 3305 3306 0000000000000000: 10000c00 92020000 92020000 020000 ............... 3307 3308 Slot 204 Column 1 Offset 0x4 Length 4 Length (physical) 4 3309 3310 id = 658 3311 3312 Slot 204 Column 2 Offset 0x8 Length 4 Length (physical) 4 3313 3314 c1 = 658 3315 3316 Slot 205 Offset 0xc63 Length 15 3317 3318 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3319 3320 Memory Dump @0x000000005815AC63 3321 3322 0000000000000000: 10000c00 93020000 93020000 020000 ............... 3323 3324 Slot 205 Column 1 Offset 0x4 Length 4 Length (physical) 4 3325 3326 id = 659 3327 3328 Slot 205 Column 2 Offset 0x8 Length 4 Length (physical) 4 3329 3330 c1 = 659 3331 3332 Slot 206 Offset 0xc72 Length 15 3333 3334 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3335 3336 Memory Dump @0x000000005815AC72 3337 3338 0000000000000000: 10000c00 94020000 94020000 020000 ............... 3339 3340 Slot 206 Column 1 Offset 0x4 Length 4 Length (physical) 4 3341 3342 id = 660 3343 3344 Slot 206 Column 2 Offset 0x8 Length 4 Length (physical) 4 3345 3346 c1 = 660 3347 3348 Slot 207 Offset 0xc81 Length 15 3349 3350 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3351 3352 Memory Dump @0x000000005815AC81 3353 3354 0000000000000000: 10000c00 95020000 95020000 020000 ............... 3355 3356 Slot 207 Column 1 Offset 0x4 Length 4 Length (physical) 4 3357 3358 id = 661 3359 3360 Slot 207 Column 2 Offset 0x8 Length 4 Length (physical) 4 3361 3362 c1 = 661 3363 3364 Slot 208 Offset 0xc90 Length 15 3365 3366 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3367 3368 Memory Dump @0x000000005815AC90 3369 3370 0000000000000000: 10000c00 96020000 96020000 020000 ............... 3371 3372 Slot 208 Column 1 Offset 0x4 Length 4 Length (physical) 4 3373 3374 id = 662 3375 3376 Slot 208 Column 2 Offset 0x8 Length 4 Length (physical) 4 3377 3378 c1 = 662 3379 3380 Slot 209 Offset 0xc9f Length 15 3381 3382 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3383 3384 Memory Dump @0x000000005815AC9F 3385 3386 0000000000000000: 10000c00 97020000 97020000 020000 ............... 3387 3388 Slot 209 Column 1 Offset 0x4 Length 4 Length (physical) 4 3389 3390 id = 663 3391 3392 Slot 209 Column 2 Offset 0x8 Length 4 Length (physical) 4 3393 3394 c1 = 663 3395 3396 Slot 210 Offset 0xcae Length 15 3397 3398 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3399 3400 Memory Dump @0x000000005815ACAE 3401 3402 0000000000000000: 10000c00 98020000 98020000 020000 ............... 3403 3404 Slot 210 Column 1 Offset 0x4 Length 4 Length (physical) 4 3405 3406 id = 664 3407 3408 Slot 210 Column 2 Offset 0x8 Length 4 Length (physical) 4 3409 3410 c1 = 664 3411 3412 Slot 211 Offset 0xcbd Length 15 3413 3414 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3415 3416 Memory Dump @0x000000005815ACBD 3417 3418 0000000000000000: 10000c00 99020000 99020000 020000 ............... 3419 3420 Slot 211 Column 1 Offset 0x4 Length 4 Length (physical) 4 3421 3422 id = 665 3423 3424 Slot 211 Column 2 Offset 0x8 Length 4 Length (physical) 4 3425 3426 c1 = 665 3427 3428 Slot 212 Offset 0xccc Length 15 3429 3430 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3431 3432 Memory Dump @0x000000005815ACCC 3433 3434 0000000000000000: 10000c00 9a020000 9a020000 020000 ............... 3435 3436 Slot 212 Column 1 Offset 0x4 Length 4 Length (physical) 4 3437 3438 id = 666 3439 3440 Slot 212 Column 2 Offset 0x8 Length 4 Length (physical) 4 3441 3442 c1 = 666 3443 3444 Slot 213 Offset 0xcdb Length 15 3445 3446 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3447 3448 Memory Dump @0x000000005815ACDB 3449 3450 0000000000000000: 10000c00 9b020000 9b020000 020000 ............... 3451 3452 Slot 213 Column 1 Offset 0x4 Length 4 Length (physical) 4 3453 3454 id = 667 3455 3456 Slot 213 Column 2 Offset 0x8 Length 4 Length (physical) 4 3457 3458 c1 = 667 3459 3460 Slot 214 Offset 0xcea Length 15 3461 3462 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3463 3464 Memory Dump @0x000000005815ACEA 3465 3466 0000000000000000: 10000c00 9c020000 9c020000 020000 ............... 3467 3468 Slot 214 Column 1 Offset 0x4 Length 4 Length (physical) 4 3469 3470 id = 668 3471 3472 Slot 214 Column 2 Offset 0x8 Length 4 Length (physical) 4 3473 3474 c1 = 668 3475 3476 Slot 215 Offset 0xcf9 Length 15 3477 3478 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3479 3480 Memory Dump @0x000000005815ACF9 3481 3482 0000000000000000: 10000c00 9d020000 9d020000 020000 ............... 3483 3484 Slot 215 Column 1 Offset 0x4 Length 4 Length (physical) 4 3485 3486 id = 669 3487 3488 Slot 215 Column 2 Offset 0x8 Length 4 Length (physical) 4 3489 3490 c1 = 669 3491 3492 Slot 216 Offset 0xd08 Length 15 3493 3494 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3495 3496 Memory Dump @0x000000005815AD08 3497 3498 0000000000000000: 10000c00 9e020000 9e020000 020000 ............... 3499 3500 Slot 216 Column 1 Offset 0x4 Length 4 Length (physical) 4 3501 3502 id = 670 3503 3504 Slot 216 Column 2 Offset 0x8 Length 4 Length (physical) 4 3505 3506 c1 = 670 3507 3508 Slot 217 Offset 0xd17 Length 15 3509 3510 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3511 3512 Memory Dump @0x000000005815AD17 3513 3514 0000000000000000: 10000c00 9f020000 9f020000 020000 ............... 3515 3516 Slot 217 Column 1 Offset 0x4 Length 4 Length (physical) 4 3517 3518 id = 671 3519 3520 Slot 217 Column 2 Offset 0x8 Length 4 Length (physical) 4 3521 3522 c1 = 671 3523 3524 Slot 218 Offset 0xd26 Length 15 3525 3526 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3527 3528 Memory Dump @0x000000005815AD26 3529 3530 0000000000000000: 10000c00 a0020000 a0020000 020000 ............... 3531 3532 Slot 218 Column 1 Offset 0x4 Length 4 Length (physical) 4 3533 3534 id = 672 3535 3536 Slot 218 Column 2 Offset 0x8 Length 4 Length (physical) 4 3537 3538 c1 = 672 3539 3540 Slot 219 Offset 0xd35 Length 15 3541 3542 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3543 3544 Memory Dump @0x000000005815AD35 3545 3546 0000000000000000: 10000c00 a1020000 a1020000 020000 ............... 3547 3548 Slot 219 Column 1 Offset 0x4 Length 4 Length (physical) 4 3549 3550 id = 673 3551 3552 Slot 219 Column 2 Offset 0x8 Length 4 Length (physical) 4 3553 3554 c1 = 673 3555 3556 Slot 220 Offset 0xd44 Length 15 3557 3558 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3559 3560 Memory Dump @0x000000005815AD44 3561 3562 0000000000000000: 10000c00 a2020000 a2020000 020000 ............... 3563 3564 Slot 220 Column 1 Offset 0x4 Length 4 Length (physical) 4 3565 3566 id = 674 3567 3568 Slot 220 Column 2 Offset 0x8 Length 4 Length (physical) 4 3569 3570 c1 = 674 3571 3572 Slot 221 Offset 0xd53 Length 15 3573 3574 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3575 3576 Memory Dump @0x000000005815AD53 3577 3578 0000000000000000: 10000c00 a3020000 a3020000 020000 ............... 3579 3580 Slot 221 Column 1 Offset 0x4 Length 4 Length (physical) 4 3581 3582 id = 675 3583 3584 Slot 221 Column 2 Offset 0x8 Length 4 Length (physical) 4 3585 3586 c1 = 675 3587 3588 Slot 222 Offset 0xd62 Length 15 3589 3590 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3591 3592 Memory Dump @0x000000005815AD62 3593 3594 0000000000000000: 10000c00 a4020000 a4020000 020000 ............... 3595 3596 Slot 222 Column 1 Offset 0x4 Length 4 Length (physical) 4 3597 3598 id = 676 3599 3600 Slot 222 Column 2 Offset 0x8 Length 4 Length (physical) 4 3601 3602 c1 = 676 3603 3604 Slot 223 Offset 0xd71 Length 15 3605 3606 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3607 3608 Memory Dump @0x000000005815AD71 3609 3610 0000000000000000: 10000c00 a5020000 a5020000 020000 ............... 3611 3612 Slot 223 Column 1 Offset 0x4 Length 4 Length (physical) 4 3613 3614 id = 677 3615 3616 Slot 223 Column 2 Offset 0x8 Length 4 Length (physical) 4 3617 3618 c1 = 677 3619 3620 Slot 224 Offset 0xd80 Length 15 3621 3622 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3623 3624 Memory Dump @0x000000005815AD80 3625 3626 0000000000000000: 10000c00 a6020000 a6020000 020000 ............... 3627 3628 Slot 224 Column 1 Offset 0x4 Length 4 Length (physical) 4 3629 3630 id = 678 3631 3632 Slot 224 Column 2 Offset 0x8 Length 4 Length (physical) 4 3633 3634 c1 = 678 3635 3636 Slot 225 Offset 0xd8f Length 15 3637 3638 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3639 3640 Memory Dump @0x000000005815AD8F 3641 3642 0000000000000000: 10000c00 a7020000 a7020000 020000 ............... 3643 3644 Slot 225 Column 1 Offset 0x4 Length 4 Length (physical) 4 3645 3646 id = 679 3647 3648 Slot 225 Column 2 Offset 0x8 Length 4 Length (physical) 4 3649 3650 c1 = 679 3651 3652 Slot 226 Offset 0xd9e Length 15 3653 3654 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3655 3656 Memory Dump @0x000000005815AD9E 3657 3658 0000000000000000: 10000c00 a8020000 a8020000 020000 ............... 3659 3660 Slot 226 Column 1 Offset 0x4 Length 4 Length (physical) 4 3661 3662 id = 680 3663 3664 Slot 226 Column 2 Offset 0x8 Length 4 Length (physical) 4 3665 3666 c1 = 680 3667 3668 Slot 227 Offset 0xdad Length 15 3669 3670 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3671 3672 Memory Dump @0x000000005815ADAD 3673 3674 0000000000000000: 10000c00 a9020000 a9020000 020000 ............... 3675 3676 Slot 227 Column 1 Offset 0x4 Length 4 Length (physical) 4 3677 3678 id = 681 3679 3680 Slot 227 Column 2 Offset 0x8 Length 4 Length (physical) 4 3681 3682 c1 = 681 3683 3684 Slot 228 Offset 0xdbc Length 15 3685 3686 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3687 3688 Memory Dump @0x000000005815ADBC 3689 3690 0000000000000000: 10000c00 aa020000 aa020000 020000 ............... 3691 3692 Slot 228 Column 1 Offset 0x4 Length 4 Length (physical) 4 3693 3694 id = 682 3695 3696 Slot 228 Column 2 Offset 0x8 Length 4 Length (physical) 4 3697 3698 c1 = 682 3699 3700 Slot 229 Offset 0xdcb Length 15 3701 3702 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3703 3704 Memory Dump @0x000000005815ADCB 3705 3706 0000000000000000: 10000c00 ab020000 ab020000 020000 ............... 3707 3708 Slot 229 Column 1 Offset 0x4 Length 4 Length (physical) 4 3709 3710 id = 683 3711 3712 Slot 229 Column 2 Offset 0x8 Length 4 Length (physical) 4 3713 3714 c1 = 683 3715 3716 Slot 230 Offset 0xdda Length 15 3717 3718 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3719 3720 Memory Dump @0x000000005815ADDA 3721 3722 0000000000000000: 10000c00 ac020000 ac020000 020000 ............... 3723 3724 Slot 230 Column 1 Offset 0x4 Length 4 Length (physical) 4 3725 3726 id = 684 3727 3728 Slot 230 Column 2 Offset 0x8 Length 4 Length (physical) 4 3729 3730 c1 = 684 3731 3732 Slot 231 Offset 0xde9 Length 15 3733 3734 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3735 3736 Memory Dump @0x000000005815ADE9 3737 3738 0000000000000000: 10000c00 ad020000 ad020000 020000 ............... 3739 3740 Slot 231 Column 1 Offset 0x4 Length 4 Length (physical) 4 3741 3742 id = 685 3743 3744 Slot 231 Column 2 Offset 0x8 Length 4 Length (physical) 4 3745 3746 c1 = 685 3747 3748 Slot 232 Offset 0xdf8 Length 15 3749 3750 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3751 3752 Memory Dump @0x000000005815ADF8 3753 3754 0000000000000000: 10000c00 ae020000 ae020000 020000 ............... 3755 3756 Slot 232 Column 1 Offset 0x4 Length 4 Length (physical) 4 3757 3758 id = 686 3759 3760 Slot 232 Column 2 Offset 0x8 Length 4 Length (physical) 4 3761 3762 c1 = 686 3763 3764 Slot 233 Offset 0xe07 Length 15 3765 3766 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3767 3768 Memory Dump @0x000000005815AE07 3769 3770 0000000000000000: 10000c00 af020000 af020000 020000 ............... 3771 3772 Slot 233 Column 1 Offset 0x4 Length 4 Length (physical) 4 3773 3774 id = 687 3775 3776 Slot 233 Column 2 Offset 0x8 Length 4 Length (physical) 4 3777 3778 c1 = 687 3779 3780 Slot 234 Offset 0xe16 Length 15 3781 3782 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3783 3784 Memory Dump @0x000000005815AE16 3785 3786 0000000000000000: 10000c00 b0020000 b0020000 020000 ............... 3787 3788 Slot 234 Column 1 Offset 0x4 Length 4 Length (physical) 4 3789 3790 id = 688 3791 3792 Slot 234 Column 2 Offset 0x8 Length 4 Length (physical) 4 3793 3794 c1 = 688 3795 3796 Slot 235 Offset 0xe25 Length 15 3797 3798 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3799 3800 Memory Dump @0x000000005815AE25 3801 3802 0000000000000000: 10000c00 b1020000 b1020000 020000 ............... 3803 3804 Slot 235 Column 1 Offset 0x4 Length 4 Length (physical) 4 3805 3806 id = 689 3807 3808 Slot 235 Column 2 Offset 0x8 Length 4 Length (physical) 4 3809 3810 c1 = 689 3811 3812 Slot 236 Offset 0xe34 Length 15 3813 3814 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3815 3816 Memory Dump @0x000000005815AE34 3817 3818 0000000000000000: 10000c00 b2020000 b2020000 020000 ............... 3819 3820 Slot 236 Column 1 Offset 0x4 Length 4 Length (physical) 4 3821 3822 id = 690 3823 3824 Slot 236 Column 2 Offset 0x8 Length 4 Length (physical) 4 3825 3826 c1 = 690 3827 3828 Slot 237 Offset 0xe43 Length 15 3829 3830 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3831 3832 Memory Dump @0x000000005815AE43 3833 3834 0000000000000000: 10000c00 b3020000 b3020000 020000 ............... 3835 3836 Slot 237 Column 1 Offset 0x4 Length 4 Length (physical) 4 3837 3838 id = 691 3839 3840 Slot 237 Column 2 Offset 0x8 Length 4 Length (physical) 4 3841 3842 c1 = 691 3843 3844 Slot 238 Offset 0xe52 Length 15 3845 3846 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3847 3848 Memory Dump @0x000000005815AE52 3849 3850 0000000000000000: 10000c00 b4020000 b4020000 020000 ............... 3851 3852 Slot 238 Column 1 Offset 0x4 Length 4 Length (physical) 4 3853 3854 id = 692 3855 3856 Slot 238 Column 2 Offset 0x8 Length 4 Length (physical) 4 3857 3858 c1 = 692 3859 3860 Slot 239 Offset 0xe61 Length 15 3861 3862 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3863 3864 Memory Dump @0x000000005815AE61 3865 3866 0000000000000000: 10000c00 b5020000 b5020000 020000 ............... 3867 3868 Slot 239 Column 1 Offset 0x4 Length 4 Length (physical) 4 3869 3870 id = 693 3871 3872 Slot 239 Column 2 Offset 0x8 Length 4 Length (physical) 4 3873 3874 c1 = 693 3875 3876 Slot 240 Offset 0xe70 Length 15 3877 3878 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3879 3880 Memory Dump @0x000000005815AE70 3881 3882 0000000000000000: 10000c00 b6020000 b6020000 020000 ............... 3883 3884 Slot 240 Column 1 Offset 0x4 Length 4 Length (physical) 4 3885 3886 id = 694 3887 3888 Slot 240 Column 2 Offset 0x8 Length 4 Length (physical) 4 3889 3890 c1 = 694 3891 3892 Slot 241 Offset 0xe7f Length 15 3893 3894 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3895 3896 Memory Dump @0x000000005815AE7F 3897 3898 0000000000000000: 10000c00 b7020000 b7020000 020000 ............... 3899 3900 Slot 241 Column 1 Offset 0x4 Length 4 Length (physical) 4 3901 3902 id = 695 3903 3904 Slot 241 Column 2 Offset 0x8 Length 4 Length (physical) 4 3905 3906 c1 = 695 3907 3908 Slot 242 Offset 0xe8e Length 15 3909 3910 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3911 3912 Memory Dump @0x000000005815AE8E 3913 3914 0000000000000000: 10000c00 b8020000 b8020000 020000 ............... 3915 3916 Slot 242 Column 1 Offset 0x4 Length 4 Length (physical) 4 3917 3918 id = 696 3919 3920 Slot 242 Column 2 Offset 0x8 Length 4 Length (physical) 4 3921 3922 c1 = 696 3923 3924 Slot 243 Offset 0xe9d Length 15 3925 3926 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3927 3928 Memory Dump @0x000000005815AE9D 3929 3930 0000000000000000: 10000c00 b9020000 b9020000 020000 ............... 3931 3932 Slot 243 Column 1 Offset 0x4 Length 4 Length (physical) 4 3933 3934 id = 697 3935 3936 Slot 243 Column 2 Offset 0x8 Length 4 Length (physical) 4 3937 3938 c1 = 697 3939 3940 Slot 244 Offset 0xeac Length 15 3941 3942 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3943 3944 Memory Dump @0x000000005815AEAC 3945 3946 0000000000000000: 10000c00 ba020000 ba020000 020000 ............... 3947 3948 Slot 244 Column 1 Offset 0x4 Length 4 Length (physical) 4 3949 3950 id = 698 3951 3952 Slot 244 Column 2 Offset 0x8 Length 4 Length (physical) 4 3953 3954 c1 = 698 3955 3956 Slot 245 Offset 0xebb Length 15 3957 3958 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3959 3960 Memory Dump @0x000000005815AEBB 3961 3962 0000000000000000: 10000c00 bb020000 bb020000 020000 ............... 3963 3964 Slot 245 Column 1 Offset 0x4 Length 4 Length (physical) 4 3965 3966 id = 699 3967 3968 Slot 245 Column 2 Offset 0x8 Length 4 Length (physical) 4 3969 3970 c1 = 699 3971 3972 Slot 246 Offset 0xeca Length 15 3973 3974 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3975 3976 Memory Dump @0x000000005815AECA 3977 3978 0000000000000000: 10000c00 bc020000 bc020000 020000 ............... 3979 3980 Slot 246 Column 1 Offset 0x4 Length 4 Length (physical) 4 3981 3982 id = 700 3983 3984 Slot 246 Column 2 Offset 0x8 Length 4 Length (physical) 4 3985 3986 c1 = 700 3987 3988 Slot 247 Offset 0xed9 Length 15 3989 3990 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 3991 3992 Memory Dump @0x000000005815AED9 3993 3994 0000000000000000: 10000c00 bd020000 bd020000 020000 ............... 3995 3996 Slot 247 Column 1 Offset 0x4 Length 4 Length (physical) 4 3997 3998 id = 701 3999 4000 Slot 247 Column 2 Offset 0x8 Length 4 Length (physical) 4 4001 4002 c1 = 701 4003 4004 Slot 248 Offset 0xee8 Length 15 4005 4006 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4007 4008 Memory Dump @0x000000005815AEE8 4009 4010 0000000000000000: 10000c00 be020000 be020000 020000 ............... 4011 4012 Slot 248 Column 1 Offset 0x4 Length 4 Length (physical) 4 4013 4014 id = 702 4015 4016 Slot 248 Column 2 Offset 0x8 Length 4 Length (physical) 4 4017 4018 c1 = 702 4019 4020 Slot 249 Offset 0xef7 Length 15 4021 4022 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4023 4024 Memory Dump @0x000000005815AEF7 4025 4026 0000000000000000: 10000c00 bf020000 bf020000 020000 ............... 4027 4028 Slot 249 Column 1 Offset 0x4 Length 4 Length (physical) 4 4029 4030 id = 703 4031 4032 Slot 249 Column 2 Offset 0x8 Length 4 Length (physical) 4 4033 4034 c1 = 703 4035 4036 Slot 250 Offset 0xf06 Length 15 4037 4038 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4039 4040 Memory Dump @0x000000005815AF06 4041 4042 0000000000000000: 10000c00 c0020000 c0020000 020000 ............... 4043 4044 Slot 250 Column 1 Offset 0x4 Length 4 Length (physical) 4 4045 4046 id = 704 4047 4048 Slot 250 Column 2 Offset 0x8 Length 4 Length (physical) 4 4049 4050 c1 = 704 4051 4052 Slot 251 Offset 0xf15 Length 15 4053 4054 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4055 4056 Memory Dump @0x000000005815AF15 4057 4058 0000000000000000: 10000c00 c1020000 c1020000 020000 ............... 4059 4060 Slot 251 Column 1 Offset 0x4 Length 4 Length (physical) 4 4061 4062 id = 705 4063 4064 Slot 251 Column 2 Offset 0x8 Length 4 Length (physical) 4 4065 4066 c1 = 705 4067 4068 Slot 252 Offset 0xf24 Length 15 4069 4070 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4071 4072 Memory Dump @0x000000005815AF24 4073 4074 0000000000000000: 10000c00 c2020000 c2020000 020000 ............... 4075 4076 Slot 252 Column 1 Offset 0x4 Length 4 Length (physical) 4 4077 4078 id = 706 4079 4080 Slot 252 Column 2 Offset 0x8 Length 4 Length (physical) 4 4081 4082 c1 = 706 4083 4084 Slot 253 Offset 0xf33 Length 15 4085 4086 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4087 4088 Memory Dump @0x000000005815AF33 4089 4090 0000000000000000: 10000c00 c3020000 c3020000 020000 ............... 4091 4092 Slot 253 Column 1 Offset 0x4 Length 4 Length (physical) 4 4093 4094 id = 707 4095 4096 Slot 253 Column 2 Offset 0x8 Length 4 Length (physical) 4 4097 4098 c1 = 707 4099 4100 Slot 254 Offset 0xf42 Length 15 4101 4102 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4103 4104 Memory Dump @0x000000005815AF42 4105 4106 0000000000000000: 10000c00 c4020000 c4020000 020000 ............... 4107 4108 Slot 254 Column 1 Offset 0x4 Length 4 Length (physical) 4 4109 4110 id = 708 4111 4112 Slot 254 Column 2 Offset 0x8 Length 4 Length (physical) 4 4113 4114 c1 = 708 4115 4116 Slot 255 Offset 0xf51 Length 15 4117 4118 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4119 4120 Memory Dump @0x000000005815AF51 4121 4122 0000000000000000: 10000c00 c5020000 c5020000 020000 ............... 4123 4124 Slot 255 Column 1 Offset 0x4 Length 4 Length (physical) 4 4125 4126 id = 709 4127 4128 Slot 255 Column 2 Offset 0x8 Length 4 Length (physical) 4 4129 4130 c1 = 709 4131 4132 Slot 256 Offset 0xf60 Length 15 4133 4134 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4135 4136 Memory Dump @0x000000005815AF60 4137 4138 0000000000000000: 10000c00 c6020000 c6020000 020000 ............... 4139 4140 Slot 256 Column 1 Offset 0x4 Length 4 Length (physical) 4 4141 4142 id = 710 4143 4144 Slot 256 Column 2 Offset 0x8 Length 4 Length (physical) 4 4145 4146 c1 = 710 4147 4148 Slot 257 Offset 0xf6f Length 15 4149 4150 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4151 4152 Memory Dump @0x000000005815AF6F 4153 4154 0000000000000000: 10000c00 c7020000 c7020000 020000 ............... 4155 4156 Slot 257 Column 1 Offset 0x4 Length 4 Length (physical) 4 4157 4158 id = 711 4159 4160 Slot 257 Column 2 Offset 0x8 Length 4 Length (physical) 4 4161 4162 c1 = 711 4163 4164 Slot 258 Offset 0xf7e Length 15 4165 4166 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4167 4168 Memory Dump @0x000000005815AF7E 4169 4170 0000000000000000: 10000c00 c8020000 c8020000 020000 ............... 4171 4172 Slot 258 Column 1 Offset 0x4 Length 4 Length (physical) 4 4173 4174 id = 712 4175 4176 Slot 258 Column 2 Offset 0x8 Length 4 Length (physical) 4 4177 4178 c1 = 712 4179 4180 Slot 259 Offset 0xf8d Length 15 4181 4182 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4183 4184 Memory Dump @0x000000005815AF8D 4185 4186 0000000000000000: 10000c00 c9020000 c9020000 020000 ............... 4187 4188 Slot 259 Column 1 Offset 0x4 Length 4 Length (physical) 4 4189 4190 id = 713 4191 4192 Slot 259 Column 2 Offset 0x8 Length 4 Length (physical) 4 4193 4194 c1 = 713 4195 4196 Slot 260 Offset 0xf9c Length 15 4197 4198 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4199 4200 Memory Dump @0x000000005815AF9C 4201 4202 0000000000000000: 10000c00 ca020000 ca020000 020000 ............... 4203 4204 Slot 260 Column 1 Offset 0x4 Length 4 Length (physical) 4 4205 4206 id = 714 4207 4208 Slot 260 Column 2 Offset 0x8 Length 4 Length (physical) 4 4209 4210 c1 = 714 4211 4212 Slot 261 Offset 0xfab Length 15 4213 4214 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4215 4216 Memory Dump @0x000000005815AFAB 4217 4218 0000000000000000: 10000c00 cb020000 cb020000 020000 ............... 4219 4220 Slot 261 Column 1 Offset 0x4 Length 4 Length (physical) 4 4221 4222 id = 715 4223 4224 Slot 261 Column 2 Offset 0x8 Length 4 Length (physical) 4 4225 4226 c1 = 715 4227 4228 Slot 262 Offset 0xfba Length 15 4229 4230 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4231 4232 Memory Dump @0x000000005815AFBA 4233 4234 0000000000000000: 10000c00 cc020000 cc020000 020000 ............... 4235 4236 Slot 262 Column 1 Offset 0x4 Length 4 Length (physical) 4 4237 4238 id = 716 4239 4240 Slot 262 Column 2 Offset 0x8 Length 4 Length (physical) 4 4241 4242 c1 = 716 4243 4244 Slot 263 Offset 0xfc9 Length 15 4245 4246 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4247 4248 Memory Dump @0x000000005815AFC9 4249 4250 0000000000000000: 10000c00 cd020000 cd020000 020000 ............... 4251 4252 Slot 263 Column 1 Offset 0x4 Length 4 Length (physical) 4 4253 4254 id = 717 4255 4256 Slot 263 Column 2 Offset 0x8 Length 4 Length (physical) 4 4257 4258 c1 = 717 4259 4260 Slot 264 Offset 0xfd8 Length 15 4261 4262 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4263 4264 Memory Dump @0x000000005815AFD8 4265 4266 0000000000000000: 10000c00 ce020000 ce020000 020000 ............... 4267 4268 Slot 264 Column 1 Offset 0x4 Length 4 Length (physical) 4 4269 4270 id = 718 4271 4272 Slot 264 Column 2 Offset 0x8 Length 4 Length (physical) 4 4273 4274 c1 = 718 4275 4276 Slot 265 Offset 0xfe7 Length 15 4277 4278 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4279 4280 Memory Dump @0x000000005815AFE7 4281 4282 0000000000000000: 10000c00 cf020000 cf020000 020000 ............... 4283 4284 Slot 265 Column 1 Offset 0x4 Length 4 Length (physical) 4 4285 4286 id = 719 4287 4288 Slot 265 Column 2 Offset 0x8 Length 4 Length (physical) 4 4289 4290 c1 = 719 4291 4292 Slot 266 Offset 0xff6 Length 15 4293 4294 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4295 4296 Memory Dump @0x000000005815AFF6 4297 4298 0000000000000000: 10000c00 d0020000 d0020000 020000 ............... 4299 4300 Slot 266 Column 1 Offset 0x4 Length 4 Length (physical) 4 4301 4302 id = 720 4303 4304 Slot 266 Column 2 Offset 0x8 Length 4 Length (physical) 4 4305 4306 c1 = 720 4307 4308 Slot 267 Offset 0x1005 Length 15 4309 4310 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4311 4312 Memory Dump @0x000000005815B005 4313 4314 0000000000000000: 10000c00 d1020000 d1020000 020000 ............... 4315 4316 Slot 267 Column 1 Offset 0x4 Length 4 Length (physical) 4 4317 4318 id = 721 4319 4320 Slot 267 Column 2 Offset 0x8 Length 4 Length (physical) 4 4321 4322 c1 = 721 4323 4324 Slot 268 Offset 0x1014 Length 15 4325 4326 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4327 4328 Memory Dump @0x000000005815B014 4329 4330 0000000000000000: 10000c00 d2020000 d2020000 020000 ............... 4331 4332 Slot 268 Column 1 Offset 0x4 Length 4 Length (physical) 4 4333 4334 id = 722 4335 4336 Slot 268 Column 2 Offset 0x8 Length 4 Length (physical) 4 4337 4338 c1 = 722 4339 4340 Slot 269 Offset 0x1023 Length 15 4341 4342 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4343 4344 Memory Dump @0x000000005815B023 4345 4346 0000000000000000: 10000c00 d3020000 d3020000 020000 ............... 4347 4348 Slot 269 Column 1 Offset 0x4 Length 4 Length (physical) 4 4349 4350 id = 723 4351 4352 Slot 269 Column 2 Offset 0x8 Length 4 Length (physical) 4 4353 4354 c1 = 723 4355 4356 Slot 270 Offset 0x1032 Length 15 4357 4358 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4359 4360 Memory Dump @0x000000005815B032 4361 4362 0000000000000000: 10000c00 d4020000 d4020000 020000 ............... 4363 4364 Slot 270 Column 1 Offset 0x4 Length 4 Length (physical) 4 4365 4366 id = 724 4367 4368 Slot 270 Column 2 Offset 0x8 Length 4 Length (physical) 4 4369 4370 c1 = 724 4371 4372 Slot 271 Offset 0x1041 Length 15 4373 4374 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4375 4376 Memory Dump @0x000000005815B041 4377 4378 0000000000000000: 10000c00 d5020000 d5020000 020000 ............... 4379 4380 Slot 271 Column 1 Offset 0x4 Length 4 Length (physical) 4 4381 4382 id = 725 4383 4384 Slot 271 Column 2 Offset 0x8 Length 4 Length (physical) 4 4385 4386 c1 = 725 4387 4388 Slot 272 Offset 0x1050 Length 15 4389 4390 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4391 4392 Memory Dump @0x000000005815B050 4393 4394 0000000000000000: 10000c00 d6020000 d6020000 020000 ............... 4395 4396 Slot 272 Column 1 Offset 0x4 Length 4 Length (physical) 4 4397 4398 id = 726 4399 4400 Slot 272 Column 2 Offset 0x8 Length 4 Length (physical) 4 4401 4402 c1 = 726 4403 4404 Slot 273 Offset 0x105f Length 15 4405 4406 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4407 4408 Memory Dump @0x000000005815B05F 4409 4410 0000000000000000: 10000c00 d7020000 d7020000 020000 ............... 4411 4412 Slot 273 Column 1 Offset 0x4 Length 4 Length (physical) 4 4413 4414 id = 727 4415 4416 Slot 273 Column 2 Offset 0x8 Length 4 Length (physical) 4 4417 4418 c1 = 727 4419 4420 Slot 274 Offset 0x106e Length 15 4421 4422 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4423 4424 Memory Dump @0x000000005815B06E 4425 4426 0000000000000000: 10000c00 d8020000 d8020000 020000 ............... 4427 4428 Slot 274 Column 1 Offset 0x4 Length 4 Length (physical) 4 4429 4430 id = 728 4431 4432 Slot 274 Column 2 Offset 0x8 Length 4 Length (physical) 4 4433 4434 c1 = 728 4435 4436 Slot 275 Offset 0x107d Length 15 4437 4438 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4439 4440 Memory Dump @0x000000005815B07D 4441 4442 0000000000000000: 10000c00 d9020000 d9020000 020000 ............... 4443 4444 Slot 275 Column 1 Offset 0x4 Length 4 Length (physical) 4 4445 4446 id = 729 4447 4448 Slot 275 Column 2 Offset 0x8 Length 4 Length (physical) 4 4449 4450 c1 = 729 4451 4452 Slot 276 Offset 0x108c Length 15 4453 4454 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4455 4456 Memory Dump @0x000000005815B08C 4457 4458 0000000000000000: 10000c00 da020000 da020000 020000 ............... 4459 4460 Slot 276 Column 1 Offset 0x4 Length 4 Length (physical) 4 4461 4462 id = 730 4463 4464 Slot 276 Column 2 Offset 0x8 Length 4 Length (physical) 4 4465 4466 c1 = 730 4467 4468 Slot 277 Offset 0x109b Length 15 4469 4470 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4471 4472 Memory Dump @0x000000005815B09B 4473 4474 0000000000000000: 10000c00 db020000 db020000 020000 ............... 4475 4476 Slot 277 Column 1 Offset 0x4 Length 4 Length (physical) 4 4477 4478 id = 731 4479 4480 Slot 277 Column 2 Offset 0x8 Length 4 Length (physical) 4 4481 4482 c1 = 731 4483 4484 Slot 278 Offset 0x10aa Length 15 4485 4486 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4487 4488 Memory Dump @0x000000005815B0AA 4489 4490 0000000000000000: 10000c00 dc020000 dc020000 020000 ............... 4491 4492 Slot 278 Column 1 Offset 0x4 Length 4 Length (physical) 4 4493 4494 id = 732 4495 4496 Slot 278 Column 2 Offset 0x8 Length 4 Length (physical) 4 4497 4498 c1 = 732 4499 4500 Slot 279 Offset 0x10b9 Length 15 4501 4502 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4503 4504 Memory Dump @0x000000005815B0B9 4505 4506 0000000000000000: 10000c00 dd020000 dd020000 020000 ............... 4507 4508 Slot 279 Column 1 Offset 0x4 Length 4 Length (physical) 4 4509 4510 id = 733 4511 4512 Slot 279 Column 2 Offset 0x8 Length 4 Length (physical) 4 4513 4514 c1 = 733 4515 4516 Slot 280 Offset 0x10c8 Length 15 4517 4518 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4519 4520 Memory Dump @0x000000005815B0C8 4521 4522 0000000000000000: 10000c00 de020000 de020000 020000 ............... 4523 4524 Slot 280 Column 1 Offset 0x4 Length 4 Length (physical) 4 4525 4526 id = 734 4527 4528 Slot 280 Column 2 Offset 0x8 Length 4 Length (physical) 4 4529 4530 c1 = 734 4531 4532 Slot 281 Offset 0x10d7 Length 15 4533 4534 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4535 4536 Memory Dump @0x000000005815B0D7 4537 4538 0000000000000000: 10000c00 df020000 df020000 020000 ............... 4539 4540 Slot 281 Column 1 Offset 0x4 Length 4 Length (physical) 4 4541 4542 id = 735 4543 4544 Slot 281 Column 2 Offset 0x8 Length 4 Length (physical) 4 4545 4546 c1 = 735 4547 4548 Slot 282 Offset 0x10e6 Length 15 4549 4550 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4551 4552 Memory Dump @0x000000005815B0E6 4553 4554 0000000000000000: 10000c00 e0020000 e0020000 020000 ............... 4555 4556 Slot 282 Column 1 Offset 0x4 Length 4 Length (physical) 4 4557 4558 id = 736 4559 4560 Slot 282 Column 2 Offset 0x8 Length 4 Length (physical) 4 4561 4562 c1 = 736 4563 4564 Slot 283 Offset 0x10f5 Length 15 4565 4566 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4567 4568 Memory Dump @0x000000005815B0F5 4569 4570 0000000000000000: 10000c00 e1020000 e1020000 020000 ............... 4571 4572 Slot 283 Column 1 Offset 0x4 Length 4 Length (physical) 4 4573 4574 id = 737 4575 4576 Slot 283 Column 2 Offset 0x8 Length 4 Length (physical) 4 4577 4578 c1 = 737 4579 4580 Slot 284 Offset 0x1104 Length 15 4581 4582 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4583 4584 Memory Dump @0x000000005815B104 4585 4586 0000000000000000: 10000c00 e2020000 e2020000 020000 ............... 4587 4588 Slot 284 Column 1 Offset 0x4 Length 4 Length (physical) 4 4589 4590 id = 738 4591 4592 Slot 284 Column 2 Offset 0x8 Length 4 Length (physical) 4 4593 4594 c1 = 738 4595 4596 Slot 285 Offset 0x1113 Length 15 4597 4598 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4599 4600 Memory Dump @0x000000005815B113 4601 4602 0000000000000000: 10000c00 e3020000 e3020000 020000 ............... 4603 4604 Slot 285 Column 1 Offset 0x4 Length 4 Length (physical) 4 4605 4606 id = 739 4607 4608 Slot 285 Column 2 Offset 0x8 Length 4 Length (physical) 4 4609 4610 c1 = 739 4611 4612 Slot 286 Offset 0x1122 Length 15 4613 4614 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4615 4616 Memory Dump @0x000000005815B122 4617 4618 0000000000000000: 10000c00 e4020000 e4020000 020000 ............... 4619 4620 Slot 286 Column 1 Offset 0x4 Length 4 Length (physical) 4 4621 4622 id = 740 4623 4624 Slot 286 Column 2 Offset 0x8 Length 4 Length (physical) 4 4625 4626 c1 = 740 4627 4628 Slot 287 Offset 0x1131 Length 15 4629 4630 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4631 4632 Memory Dump @0x000000005815B131 4633 4634 0000000000000000: 10000c00 e5020000 e5020000 020000 ............... 4635 4636 Slot 287 Column 1 Offset 0x4 Length 4 Length (physical) 4 4637 4638 id = 741 4639 4640 Slot 287 Column 2 Offset 0x8 Length 4 Length (physical) 4 4641 4642 c1 = 741 4643 4644 Slot 288 Offset 0x1140 Length 15 4645 4646 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4647 4648 Memory Dump @0x000000005815B140 4649 4650 0000000000000000: 10000c00 e6020000 e6020000 020000 ............... 4651 4652 Slot 288 Column 1 Offset 0x4 Length 4 Length (physical) 4 4653 4654 id = 742 4655 4656 Slot 288 Column 2 Offset 0x8 Length 4 Length (physical) 4 4657 4658 c1 = 742 4659 4660 Slot 289 Offset 0x114f Length 15 4661 4662 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4663 4664 Memory Dump @0x000000005815B14F 4665 4666 0000000000000000: 10000c00 e7020000 e7020000 020000 ............... 4667 4668 Slot 289 Column 1 Offset 0x4 Length 4 Length (physical) 4 4669 4670 id = 743 4671 4672 Slot 289 Column 2 Offset 0x8 Length 4 Length (physical) 4 4673 4674 c1 = 743 4675 4676 Slot 290 Offset 0x115e Length 15 4677 4678 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4679 4680 Memory Dump @0x000000005815B15E 4681 4682 0000000000000000: 10000c00 e8020000 e8020000 020000 ............... 4683 4684 Slot 290 Column 1 Offset 0x4 Length 4 Length (physical) 4 4685 4686 id = 744 4687 4688 Slot 290 Column 2 Offset 0x8 Length 4 Length (physical) 4 4689 4690 c1 = 744 4691 4692 Slot 291 Offset 0x116d Length 15 4693 4694 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4695 4696 Memory Dump @0x000000005815B16D 4697 4698 0000000000000000: 10000c00 e9020000 e9020000 020000 ............... 4699 4700 Slot 291 Column 1 Offset 0x4 Length 4 Length (physical) 4 4701 4702 id = 745 4703 4704 Slot 291 Column 2 Offset 0x8 Length 4 Length (physical) 4 4705 4706 c1 = 745 4707 4708 Slot 292 Offset 0x117c Length 15 4709 4710 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4711 4712 Memory Dump @0x000000005815B17C 4713 4714 0000000000000000: 10000c00 ea020000 ea020000 020000 ............... 4715 4716 Slot 292 Column 1 Offset 0x4 Length 4 Length (physical) 4 4717 4718 id = 746 4719 4720 Slot 292 Column 2 Offset 0x8 Length 4 Length (physical) 4 4721 4722 c1 = 746 4723 4724 Slot 293 Offset 0x118b Length 15 4725 4726 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4727 4728 Memory Dump @0x000000005815B18B 4729 4730 0000000000000000: 10000c00 eb020000 eb020000 020000 ............... 4731 4732 Slot 293 Column 1 Offset 0x4 Length 4 Length (physical) 4 4733 4734 id = 747 4735 4736 Slot 293 Column 2 Offset 0x8 Length 4 Length (physical) 4 4737 4738 c1 = 747 4739 4740 Slot 294 Offset 0x119a Length 15 4741 4742 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4743 4744 Memory Dump @0x000000005815B19A 4745 4746 0000000000000000: 10000c00 ec020000 ec020000 020000 ............... 4747 4748 Slot 294 Column 1 Offset 0x4 Length 4 Length (physical) 4 4749 4750 id = 748 4751 4752 Slot 294 Column 2 Offset 0x8 Length 4 Length (physical) 4 4753 4754 c1 = 748 4755 4756 Slot 295 Offset 0x11a9 Length 15 4757 4758 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4759 4760 Memory Dump @0x000000005815B1A9 4761 4762 0000000000000000: 10000c00 ed020000 ed020000 020000 ............... 4763 4764 Slot 295 Column 1 Offset 0x4 Length 4 Length (physical) 4 4765 4766 id = 749 4767 4768 Slot 295 Column 2 Offset 0x8 Length 4 Length (physical) 4 4769 4770 c1 = 749 4771 4772 Slot 296 Offset 0x11b8 Length 15 4773 4774 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4775 4776 Memory Dump @0x000000005815B1B8 4777 4778 0000000000000000: 10000c00 ee020000 ee020000 020000 ............... 4779 4780 Slot 296 Column 1 Offset 0x4 Length 4 Length (physical) 4 4781 4782 id = 750 4783 4784 Slot 296 Column 2 Offset 0x8 Length 4 Length (physical) 4 4785 4786 c1 = 750 4787 4788 Slot 297 Offset 0x11c7 Length 15 4789 4790 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4791 4792 Memory Dump @0x000000005815B1C7 4793 4794 0000000000000000: 10000c00 ef020000 ef020000 020000 ............... 4795 4796 Slot 297 Column 1 Offset 0x4 Length 4 Length (physical) 4 4797 4798 id = 751 4799 4800 Slot 297 Column 2 Offset 0x8 Length 4 Length (physical) 4 4801 4802 c1 = 751 4803 4804 Slot 298 Offset 0x11d6 Length 15 4805 4806 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4807 4808 Memory Dump @0x000000005815B1D6 4809 4810 0000000000000000: 10000c00 f0020000 f0020000 020000 ............... 4811 4812 Slot 298 Column 1 Offset 0x4 Length 4 Length (physical) 4 4813 4814 id = 752 4815 4816 Slot 298 Column 2 Offset 0x8 Length 4 Length (physical) 4 4817 4818 c1 = 752 4819 4820 Slot 299 Offset 0x11e5 Length 15 4821 4822 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4823 4824 Memory Dump @0x000000005815B1E5 4825 4826 0000000000000000: 10000c00 f1020000 f1020000 020000 ............... 4827 4828 Slot 299 Column 1 Offset 0x4 Length 4 Length (physical) 4 4829 4830 id = 753 4831 4832 Slot 299 Column 2 Offset 0x8 Length 4 Length (physical) 4 4833 4834 c1 = 753 4835 4836 Slot 300 Offset 0x11f4 Length 15 4837 4838 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4839 4840 Memory Dump @0x000000005815B1F4 4841 4842 0000000000000000: 10000c00 f2020000 f2020000 020000 ............... 4843 4844 Slot 300 Column 1 Offset 0x4 Length 4 Length (physical) 4 4845 4846 id = 754 4847 4848 Slot 300 Column 2 Offset 0x8 Length 4 Length (physical) 4 4849 4850 c1 = 754 4851 4852 Slot 301 Offset 0x1203 Length 15 4853 4854 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4855 4856 Memory Dump @0x000000005815B203 4857 4858 0000000000000000: 10000c00 f3020000 f3020000 020000 ............... 4859 4860 Slot 301 Column 1 Offset 0x4 Length 4 Length (physical) 4 4861 4862 id = 755 4863 4864 Slot 301 Column 2 Offset 0x8 Length 4 Length (physical) 4 4865 4866 c1 = 755 4867 4868 Slot 302 Offset 0x1212 Length 15 4869 4870 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4871 4872 Memory Dump @0x000000005815B212 4873 4874 0000000000000000: 10000c00 f4020000 f4020000 020000 ............... 4875 4876 Slot 302 Column 1 Offset 0x4 Length 4 Length (physical) 4 4877 4878 id = 756 4879 4880 Slot 302 Column 2 Offset 0x8 Length 4 Length (physical) 4 4881 4882 c1 = 756 4883 4884 Slot 303 Offset 0x1221 Length 15 4885 4886 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4887 4888 Memory Dump @0x000000005815B221 4889 4890 0000000000000000: 10000c00 f5020000 f5020000 020000 ............... 4891 4892 Slot 303 Column 1 Offset 0x4 Length 4 Length (physical) 4 4893 4894 id = 757 4895 4896 Slot 303 Column 2 Offset 0x8 Length 4 Length (physical) 4 4897 4898 c1 = 757 4899 4900 Slot 304 Offset 0x1230 Length 15 4901 4902 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4903 4904 Memory Dump @0x000000005815B230 4905 4906 0000000000000000: 10000c00 f6020000 f6020000 020000 ............... 4907 4908 Slot 304 Column 1 Offset 0x4 Length 4 Length (physical) 4 4909 4910 id = 758 4911 4912 Slot 304 Column 2 Offset 0x8 Length 4 Length (physical) 4 4913 4914 c1 = 758 4915 4916 Slot 305 Offset 0x123f Length 15 4917 4918 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4919 4920 Memory Dump @0x000000005815B23F 4921 4922 0000000000000000: 10000c00 f7020000 f7020000 020000 ............... 4923 4924 Slot 305 Column 1 Offset 0x4 Length 4 Length (physical) 4 4925 4926 id = 759 4927 4928 Slot 305 Column 2 Offset 0x8 Length 4 Length (physical) 4 4929 4930 c1 = 759 4931 4932 Slot 306 Offset 0x124e Length 15 4933 4934 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4935 4936 Memory Dump @0x000000005815B24E 4937 4938 0000000000000000: 10000c00 f8020000 f8020000 020000 ............... 4939 4940 Slot 306 Column 1 Offset 0x4 Length 4 Length (physical) 4 4941 4942 id = 760 4943 4944 Slot 306 Column 2 Offset 0x8 Length 4 Length (physical) 4 4945 4946 c1 = 760 4947 4948 Slot 307 Offset 0x125d Length 15 4949 4950 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4951 4952 Memory Dump @0x000000005815B25D 4953 4954 0000000000000000: 10000c00 f9020000 f9020000 020000 ............... 4955 4956 Slot 307 Column 1 Offset 0x4 Length 4 Length (physical) 4 4957 4958 id = 761 4959 4960 Slot 307 Column 2 Offset 0x8 Length 4 Length (physical) 4 4961 4962 c1 = 761 4963 4964 Slot 308 Offset 0x126c Length 15 4965 4966 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4967 4968 Memory Dump @0x000000005815B26C 4969 4970 0000000000000000: 10000c00 fa020000 fa020000 020000 ............... 4971 4972 Slot 308 Column 1 Offset 0x4 Length 4 Length (physical) 4 4973 4974 id = 762 4975 4976 Slot 308 Column 2 Offset 0x8 Length 4 Length (physical) 4 4977 4978 c1 = 762 4979 4980 Slot 309 Offset 0x127b Length 15 4981 4982 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4983 4984 Memory Dump @0x000000005815B27B 4985 4986 0000000000000000: 10000c00 fb020000 fb020000 020000 ............... 4987 4988 Slot 309 Column 1 Offset 0x4 Length 4 Length (physical) 4 4989 4990 id = 763 4991 4992 Slot 309 Column 2 Offset 0x8 Length 4 Length (physical) 4 4993 4994 c1 = 763 4995 4996 Slot 310 Offset 0x128a Length 15 4997 4998 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 4999 5000 Memory Dump @0x000000005815B28A 5001 5002 0000000000000000: 10000c00 fc020000 fc020000 020000 ............... 5003 5004 Slot 310 Column 1 Offset 0x4 Length 4 Length (physical) 4 5005 5006 id = 764 5007 5008 Slot 310 Column 2 Offset 0x8 Length 4 Length (physical) 4 5009 5010 c1 = 764 5011 5012 Slot 311 Offset 0x1299 Length 15 5013 5014 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5015 5016 Memory Dump @0x000000005815B299 5017 5018 0000000000000000: 10000c00 fd020000 fd020000 020000 ............... 5019 5020 Slot 311 Column 1 Offset 0x4 Length 4 Length (physical) 4 5021 5022 id = 765 5023 5024 Slot 311 Column 2 Offset 0x8 Length 4 Length (physical) 4 5025 5026 c1 = 765 5027 5028 Slot 312 Offset 0x12a8 Length 15 5029 5030 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5031 5032 Memory Dump @0x000000005815B2A8 5033 5034 0000000000000000: 10000c00 fe020000 fe020000 020000 ............... 5035 5036 Slot 312 Column 1 Offset 0x4 Length 4 Length (physical) 4 5037 5038 id = 766 5039 5040 Slot 312 Column 2 Offset 0x8 Length 4 Length (physical) 4 5041 5042 c1 = 766 5043 5044 Slot 313 Offset 0x12b7 Length 15 5045 5046 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5047 5048 Memory Dump @0x000000005815B2B7 5049 5050 0000000000000000: 10000c00 ff020000 ff020000 020000 ............... 5051 5052 Slot 313 Column 1 Offset 0x4 Length 4 Length (physical) 4 5053 5054 id = 767 5055 5056 Slot 313 Column 2 Offset 0x8 Length 4 Length (physical) 4 5057 5058 c1 = 767 5059 5060 Slot 314 Offset 0x12c6 Length 15 5061 5062 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5063 5064 Memory Dump @0x000000005815B2C6 5065 5066 0000000000000000: 10000c00 00030000 00030000 020000 ............... 5067 5068 Slot 314 Column 1 Offset 0x4 Length 4 Length (physical) 4 5069 5070 id = 768 5071 5072 Slot 314 Column 2 Offset 0x8 Length 4 Length (physical) 4 5073 5074 c1 = 768 5075 5076 Slot 315 Offset 0x12d5 Length 15 5077 5078 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5079 5080 Memory Dump @0x000000005815B2D5 5081 5082 0000000000000000: 10000c00 01030000 01030000 020000 ............... 5083 5084 Slot 315 Column 1 Offset 0x4 Length 4 Length (physical) 4 5085 5086 id = 769 5087 5088 Slot 315 Column 2 Offset 0x8 Length 4 Length (physical) 4 5089 5090 c1 = 769 5091 5092 Slot 316 Offset 0x12e4 Length 15 5093 5094 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5095 5096 Memory Dump @0x000000005815B2E4 5097 5098 0000000000000000: 10000c00 02030000 02030000 020000 ............... 5099 5100 Slot 316 Column 1 Offset 0x4 Length 4 Length (physical) 4 5101 5102 id = 770 5103 5104 Slot 316 Column 2 Offset 0x8 Length 4 Length (physical) 4 5105 5106 c1 = 770 5107 5108 Slot 317 Offset 0x12f3 Length 15 5109 5110 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5111 5112 Memory Dump @0x000000005815B2F3 5113 5114 0000000000000000: 10000c00 03030000 03030000 020000 ............... 5115 5116 Slot 317 Column 1 Offset 0x4 Length 4 Length (physical) 4 5117 5118 id = 771 5119 5120 Slot 317 Column 2 Offset 0x8 Length 4 Length (physical) 4 5121 5122 c1 = 771 5123 5124 Slot 318 Offset 0x1302 Length 15 5125 5126 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5127 5128 Memory Dump @0x000000005815B302 5129 5130 0000000000000000: 10000c00 04030000 04030000 020000 ............... 5131 5132 Slot 318 Column 1 Offset 0x4 Length 4 Length (physical) 4 5133 5134 id = 772 5135 5136 Slot 318 Column 2 Offset 0x8 Length 4 Length (physical) 4 5137 5138 c1 = 772 5139 5140 Slot 319 Offset 0x1311 Length 15 5141 5142 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5143 5144 Memory Dump @0x000000005815B311 5145 5146 0000000000000000: 10000c00 05030000 05030000 020000 ............... 5147 5148 Slot 319 Column 1 Offset 0x4 Length 4 Length (physical) 4 5149 5150 id = 773 5151 5152 Slot 319 Column 2 Offset 0x8 Length 4 Length (physical) 4 5153 5154 c1 = 773 5155 5156 Slot 320 Offset 0x1320 Length 15 5157 5158 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5159 5160 Memory Dump @0x000000005815B320 5161 5162 0000000000000000: 10000c00 06030000 06030000 020000 ............... 5163 5164 Slot 320 Column 1 Offset 0x4 Length 4 Length (physical) 4 5165 5166 id = 774 5167 5168 Slot 320 Column 2 Offset 0x8 Length 4 Length (physical) 4 5169 5170 c1 = 774 5171 5172 Slot 321 Offset 0x132f Length 15 5173 5174 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5175 5176 Memory Dump @0x000000005815B32F 5177 5178 0000000000000000: 10000c00 07030000 07030000 020000 ............... 5179 5180 Slot 321 Column 1 Offset 0x4 Length 4 Length (physical) 4 5181 5182 id = 775 5183 5184 Slot 321 Column 2 Offset 0x8 Length 4 Length (physical) 4 5185 5186 c1 = 775 5187 5188 Slot 322 Offset 0x133e Length 15 5189 5190 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5191 5192 Memory Dump @0x000000005815B33E 5193 5194 0000000000000000: 10000c00 08030000 08030000 020000 ............... 5195 5196 Slot 322 Column 1 Offset 0x4 Length 4 Length (physical) 4 5197 5198 id = 776 5199 5200 Slot 322 Column 2 Offset 0x8 Length 4 Length (physical) 4 5201 5202 c1 = 776 5203 5204 Slot 323 Offset 0x134d Length 15 5205 5206 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5207 5208 Memory Dump @0x000000005815B34D 5209 5210 0000000000000000: 10000c00 09030000 09030000 020000 .... ... ...... 5211 5212 Slot 323 Column 1 Offset 0x4 Length 4 Length (physical) 4 5213 5214 id = 777 5215 5216 Slot 323 Column 2 Offset 0x8 Length 4 Length (physical) 4 5217 5218 c1 = 777 5219 5220 Slot 324 Offset 0x135c Length 15 5221 5222 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5223 5224 Memory Dump @0x000000005815B35C 5225 5226 0000000000000000: 10000c00 0a030000 0a030000 020000 ............... 5227 5228 Slot 324 Column 1 Offset 0x4 Length 4 Length (physical) 4 5229 5230 id = 778 5231 5232 Slot 324 Column 2 Offset 0x8 Length 4 Length (physical) 4 5233 5234 c1 = 778 5235 5236 Slot 325 Offset 0x136b Length 15 5237 5238 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5239 5240 Memory Dump @0x000000005815B36B 5241 5242 0000000000000000: 10000c00 0b030000 0b030000 020000 ............... 5243 5244 Slot 325 Column 1 Offset 0x4 Length 4 Length (physical) 4 5245 5246 id = 779 5247 5248 Slot 325 Column 2 Offset 0x8 Length 4 Length (physical) 4 5249 5250 c1 = 779 5251 5252 Slot 326 Offset 0x137a Length 15 5253 5254 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5255 5256 Memory Dump @0x000000005815B37A 5257 5258 0000000000000000: 10000c00 0c030000 0c030000 020000 ............... 5259 5260 Slot 326 Column 1 Offset 0x4 Length 4 Length (physical) 4 5261 5262 id = 780 5263 5264 Slot 326 Column 2 Offset 0x8 Length 4 Length (physical) 4 5265 5266 c1 = 780 5267 5268 Slot 327 Offset 0x1389 Length 15 5269 5270 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5271 5272 Memory Dump @0x000000005815B389 5273 5274 0000000000000000: 10000c00 0d030000 0d030000 020000 ............... 5275 5276 Slot 327 Column 1 Offset 0x4 Length 4 Length (physical) 4 5277 5278 id = 781 5279 5280 Slot 327 Column 2 Offset 0x8 Length 4 Length (physical) 4 5281 5282 c1 = 781 5283 5284 Slot 328 Offset 0x1398 Length 15 5285 5286 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5287 5288 Memory Dump @0x000000005815B398 5289 5290 0000000000000000: 10000c00 0e030000 0e030000 020000 ............... 5291 5292 Slot 328 Column 1 Offset 0x4 Length 4 Length (physical) 4 5293 5294 id = 782 5295 5296 Slot 328 Column 2 Offset 0x8 Length 4 Length (physical) 4 5297 5298 c1 = 782 5299 5300 Slot 329 Offset 0x13a7 Length 15 5301 5302 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5303 5304 Memory Dump @0x000000005815B3A7 5305 5306 0000000000000000: 10000c00 0f030000 0f030000 020000 ............... 5307 5308 Slot 329 Column 1 Offset 0x4 Length 4 Length (physical) 4 5309 5310 id = 783 5311 5312 Slot 329 Column 2 Offset 0x8 Length 4 Length (physical) 4 5313 5314 c1 = 783 5315 5316 Slot 330 Offset 0x13b6 Length 15 5317 5318 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5319 5320 Memory Dump @0x000000005815B3B6 5321 5322 0000000000000000: 10000c00 10030000 10030000 020000 ............... 5323 5324 Slot 330 Column 1 Offset 0x4 Length 4 Length (physical) 4 5325 5326 id = 784 5327 5328 Slot 330 Column 2 Offset 0x8 Length 4 Length (physical) 4 5329 5330 c1 = 784 5331 5332 Slot 331 Offset 0x13c5 Length 15 5333 5334 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5335 5336 Memory Dump @0x000000005815B3C5 5337 5338 0000000000000000: 10000c00 11030000 11030000 020000 ............... 5339 5340 Slot 331 Column 1 Offset 0x4 Length 4 Length (physical) 4 5341 5342 id = 785 5343 5344 Slot 331 Column 2 Offset 0x8 Length 4 Length (physical) 4 5345 5346 c1 = 785 5347 5348 Slot 332 Offset 0x13d4 Length 15 5349 5350 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5351 5352 Memory Dump @0x000000005815B3D4 5353 5354 0000000000000000: 10000c00 12030000 12030000 020000 ............... 5355 5356 Slot 332 Column 1 Offset 0x4 Length 4 Length (physical) 4 5357 5358 id = 786 5359 5360 Slot 332 Column 2 Offset 0x8 Length 4 Length (physical) 4 5361 5362 c1 = 786 5363 5364 Slot 333 Offset 0x13e3 Length 15 5365 5366 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5367 5368 Memory Dump @0x000000005815B3E3 5369 5370 0000000000000000: 10000c00 13030000 13030000 020000 ............... 5371 5372 Slot 333 Column 1 Offset 0x4 Length 4 Length (physical) 4 5373 5374 id = 787 5375 5376 Slot 333 Column 2 Offset 0x8 Length 4 Length (physical) 4 5377 5378 c1 = 787 5379 5380 Slot 334 Offset 0x13f2 Length 15 5381 5382 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5383 5384 Memory Dump @0x000000005815B3F2 5385 5386 0000000000000000: 10000c00 14030000 14030000 020000 ............... 5387 5388 Slot 334 Column 1 Offset 0x4 Length 4 Length (physical) 4 5389 5390 id = 788 5391 5392 Slot 334 Column 2 Offset 0x8 Length 4 Length (physical) 4 5393 5394 c1 = 788 5395 5396 Slot 335 Offset 0x1401 Length 15 5397 5398 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5399 5400 Memory Dump @0x000000005815B401 5401 5402 0000000000000000: 10000c00 15030000 15030000 020000 ............... 5403 5404 Slot 335 Column 1 Offset 0x4 Length 4 Length (physical) 4 5405 5406 id = 789 5407 5408 Slot 335 Column 2 Offset 0x8 Length 4 Length (physical) 4 5409 5410 c1 = 789 5411 5412 Slot 336 Offset 0x1410 Length 15 5413 5414 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5415 5416 Memory Dump @0x000000005815B410 5417 5418 0000000000000000: 10000c00 16030000 16030000 020000 ............... 5419 5420 Slot 336 Column 1 Offset 0x4 Length 4 Length (physical) 4 5421 5422 id = 790 5423 5424 Slot 336 Column 2 Offset 0x8 Length 4 Length (physical) 4 5425 5426 c1 = 790 5427 5428 Slot 337 Offset 0x141f Length 15 5429 5430 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5431 5432 Memory Dump @0x000000005815B41F 5433 5434 0000000000000000: 10000c00 17030000 17030000 020000 ............... 5435 5436 Slot 337 Column 1 Offset 0x4 Length 4 Length (physical) 4 5437 5438 id = 791 5439 5440 Slot 337 Column 2 Offset 0x8 Length 4 Length (physical) 4 5441 5442 c1 = 791 5443 5444 Slot 338 Offset 0x142e Length 15 5445 5446 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5447 5448 Memory Dump @0x000000005815B42E 5449 5450 0000000000000000: 10000c00 18030000 18030000 020000 ............... 5451 5452 Slot 338 Column 1 Offset 0x4 Length 4 Length (physical) 4 5453 5454 id = 792 5455 5456 Slot 338 Column 2 Offset 0x8 Length 4 Length (physical) 4 5457 5458 c1 = 792 5459 5460 Slot 339 Offset 0x143d Length 15 5461 5462 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5463 5464 Memory Dump @0x000000005815B43D 5465 5466 0000000000000000: 10000c00 19030000 19030000 020000 ............... 5467 5468 Slot 339 Column 1 Offset 0x4 Length 4 Length (physical) 4 5469 5470 id = 793 5471 5472 Slot 339 Column 2 Offset 0x8 Length 4 Length (physical) 4 5473 5474 c1 = 793 5475 5476 Slot 340 Offset 0x144c Length 15 5477 5478 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5479 5480 Memory Dump @0x000000005815B44C 5481 5482 0000000000000000: 10000c00 1a030000 1a030000 020000 ............... 5483 5484 Slot 340 Column 1 Offset 0x4 Length 4 Length (physical) 4 5485 5486 id = 794 5487 5488 Slot 340 Column 2 Offset 0x8 Length 4 Length (physical) 4 5489 5490 c1 = 794 5491 5492 Slot 341 Offset 0x145b Length 15 5493 5494 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5495 5496 Memory Dump @0x000000005815B45B 5497 5498 0000000000000000: 10000c00 1b030000 1b030000 020000 ............... 5499 5500 Slot 341 Column 1 Offset 0x4 Length 4 Length (physical) 4 5501 5502 id = 795 5503 5504 Slot 341 Column 2 Offset 0x8 Length 4 Length (physical) 4 5505 5506 c1 = 795 5507 5508 Slot 342 Offset 0x146a Length 15 5509 5510 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5511 5512 Memory Dump @0x000000005815B46A 5513 5514 0000000000000000: 10000c00 1c030000 1c030000 020000 ............... 5515 5516 Slot 342 Column 1 Offset 0x4 Length 4 Length (physical) 4 5517 5518 id = 796 5519 5520 Slot 342 Column 2 Offset 0x8 Length 4 Length (physical) 4 5521 5522 c1 = 796 5523 5524 Slot 343 Offset 0x1479 Length 15 5525 5526 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5527 5528 Memory Dump @0x000000005815B479 5529 5530 0000000000000000: 10000c00 1d030000 1d030000 020000 ............... 5531 5532 Slot 343 Column 1 Offset 0x4 Length 4 Length (physical) 4 5533 5534 id = 797 5535 5536 Slot 343 Column 2 Offset 0x8 Length 4 Length (physical) 4 5537 5538 c1 = 797 5539 5540 Slot 344 Offset 0x1488 Length 15 5541 5542 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5543 5544 Memory Dump @0x000000005815B488 5545 5546 0000000000000000: 10000c00 1e030000 1e030000 020000 ............... 5547 5548 Slot 344 Column 1 Offset 0x4 Length 4 Length (physical) 4 5549 5550 id = 798 5551 5552 Slot 344 Column 2 Offset 0x8 Length 4 Length (physical) 4 5553 5554 c1 = 798 5555 5556 Slot 345 Offset 0x1497 Length 15 5557 5558 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5559 5560 Memory Dump @0x000000005815B497 5561 5562 0000000000000000: 10000c00 1f030000 1f030000 020000 ............... 5563 5564 Slot 345 Column 1 Offset 0x4 Length 4 Length (physical) 4 5565 5566 id = 799 5567 5568 Slot 345 Column 2 Offset 0x8 Length 4 Length (physical) 4 5569 5570 c1 = 799 5571 5572 Slot 346 Offset 0x14a6 Length 15 5573 5574 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5575 5576 Memory Dump @0x000000005815B4A6 5577 5578 0000000000000000: 10000c00 20030000 20030000 020000 .... ... ...... 5579 5580 Slot 346 Column 1 Offset 0x4 Length 4 Length (physical) 4 5581 5582 id = 800 5583 5584 Slot 346 Column 2 Offset 0x8 Length 4 Length (physical) 4 5585 5586 c1 = 800 5587 5588 Slot 347 Offset 0x14b5 Length 15 5589 5590 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5591 5592 Memory Dump @0x000000005815B4B5 5593 5594 0000000000000000: 10000c00 21030000 21030000 020000 ....!...!...... 5595 5596 Slot 347 Column 1 Offset 0x4 Length 4 Length (physical) 4 5597 5598 id = 801 5599 5600 Slot 347 Column 2 Offset 0x8 Length 4 Length (physical) 4 5601 5602 c1 = 801 5603 5604 Slot 348 Offset 0x14c4 Length 15 5605 5606 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5607 5608 Memory Dump @0x000000005815B4C4 5609 5610 0000000000000000: 10000c00 22030000 22030000 020000 ...."..."...... 5611 5612 Slot 348 Column 1 Offset 0x4 Length 4 Length (physical) 4 5613 5614 id = 802 5615 5616 Slot 348 Column 2 Offset 0x8 Length 4 Length (physical) 4 5617 5618 c1 = 802 5619 5620 Slot 349 Offset 0x14d3 Length 15 5621 5622 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5623 5624 Memory Dump @0x000000005815B4D3 5625 5626 0000000000000000: 10000c00 23030000 23030000 020000 ....#...#...... 5627 5628 Slot 349 Column 1 Offset 0x4 Length 4 Length (physical) 4 5629 5630 id = 803 5631 5632 Slot 349 Column 2 Offset 0x8 Length 4 Length (physical) 4 5633 5634 c1 = 803 5635 5636 Slot 350 Offset 0x14e2 Length 15 5637 5638 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5639 5640 Memory Dump @0x000000005815B4E2 5641 5642 0000000000000000: 10000c00 24030000 24030000 020000 ....$...$...... 5643 5644 Slot 350 Column 1 Offset 0x4 Length 4 Length (physical) 4 5645 5646 id = 804 5647 5648 Slot 350 Column 2 Offset 0x8 Length 4 Length (physical) 4 5649 5650 c1 = 804 5651 5652 Slot 351 Offset 0x14f1 Length 15 5653 5654 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5655 5656 Memory Dump @0x000000005815B4F1 5657 5658 0000000000000000: 10000c00 25030000 25030000 020000 ....%...%...... 5659 5660 Slot 351 Column 1 Offset 0x4 Length 4 Length (physical) 4 5661 5662 id = 805 5663 5664 Slot 351 Column 2 Offset 0x8 Length 4 Length (physical) 4 5665 5666 c1 = 805 5667 5668 Slot 352 Offset 0x1500 Length 15 5669 5670 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5671 5672 Memory Dump @0x000000005815B500 5673 5674 0000000000000000: 10000c00 26030000 26030000 020000 ....&...&...... 5675 5676 Slot 352 Column 1 Offset 0x4 Length 4 Length (physical) 4 5677 5678 id = 806 5679 5680 Slot 352 Column 2 Offset 0x8 Length 4 Length (physical) 4 5681 5682 c1 = 806 5683 5684 Slot 353 Offset 0x150f Length 15 5685 5686 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5687 5688 Memory Dump @0x000000005815B50F 5689 5690 0000000000000000: 10000c00 27030000 27030000 020000 ....'...'...... 5691 5692 Slot 353 Column 1 Offset 0x4 Length 4 Length (physical) 4 5693 5694 id = 807 5695 5696 Slot 353 Column 2 Offset 0x8 Length 4 Length (physical) 4 5697 5698 c1 = 807 5699 5700 Slot 354 Offset 0x151e Length 15 5701 5702 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5703 5704 Memory Dump @0x000000005815B51E 5705 5706 0000000000000000: 10000c00 28030000 28030000 020000 ....(...(...... 5707 5708 Slot 354 Column 1 Offset 0x4 Length 4 Length (physical) 4 5709 5710 id = 808 5711 5712 Slot 354 Column 2 Offset 0x8 Length 4 Length (physical) 4 5713 5714 c1 = 808 5715 5716 Slot 355 Offset 0x152d Length 15 5717 5718 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5719 5720 Memory Dump @0x000000005815B52D 5721 5722 0000000000000000: 10000c00 29030000 29030000 020000 ....)...)...... 5723 5724 Slot 355 Column 1 Offset 0x4 Length 4 Length (physical) 4 5725 5726 id = 809 5727 5728 Slot 355 Column 2 Offset 0x8 Length 4 Length (physical) 4 5729 5730 c1 = 809 5731 5732 Slot 356 Offset 0x153c Length 15 5733 5734 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5735 5736 Memory Dump @0x000000005815B53C 5737 5738 0000000000000000: 10000c00 2a030000 2a030000 020000 ....*...*...... 5739 5740 Slot 356 Column 1 Offset 0x4 Length 4 Length (physical) 4 5741 5742 id = 810 5743 5744 Slot 356 Column 2 Offset 0x8 Length 4 Length (physical) 4 5745 5746 c1 = 810 5747 5748 Slot 357 Offset 0x154b Length 15 5749 5750 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5751 5752 Memory Dump @0x000000005815B54B 5753 5754 0000000000000000: 10000c00 2b030000 2b030000 020000 ....+...+...... 5755 5756 Slot 357 Column 1 Offset 0x4 Length 4 Length (physical) 4 5757 5758 id = 811 5759 5760 Slot 357 Column 2 Offset 0x8 Length 4 Length (physical) 4 5761 5762 c1 = 811 5763 5764 Slot 358 Offset 0x155a Length 15 5765 5766 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5767 5768 Memory Dump @0x000000005815B55A 5769 5770 0000000000000000: 10000c00 2c030000 2c030000 020000 ....,...,...... 5771 5772 Slot 358 Column 1 Offset 0x4 Length 4 Length (physical) 4 5773 5774 id = 812 5775 5776 Slot 358 Column 2 Offset 0x8 Length 4 Length (physical) 4 5777 5778 c1 = 812 5779 5780 Slot 359 Offset 0x1569 Length 15 5781 5782 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5783 5784 Memory Dump @0x000000005815B569 5785 5786 0000000000000000: 10000c00 2d030000 2d030000 020000 ....-...-...... 5787 5788 Slot 359 Column 1 Offset 0x4 Length 4 Length (physical) 4 5789 5790 id = 813 5791 5792 Slot 359 Column 2 Offset 0x8 Length 4 Length (physical) 4 5793 5794 c1 = 813 5795 5796 Slot 360 Offset 0x1578 Length 15 5797 5798 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5799 5800 Memory Dump @0x000000005815B578 5801 5802 0000000000000000: 10000c00 2e030000 2e030000 020000 ............... 5803 5804 Slot 360 Column 1 Offset 0x4 Length 4 Length (physical) 4 5805 5806 id = 814 5807 5808 Slot 360 Column 2 Offset 0x8 Length 4 Length (physical) 4 5809 5810 c1 = 814 5811 5812 Slot 361 Offset 0x1587 Length 15 5813 5814 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5815 5816 Memory Dump @0x000000005815B587 5817 5818 0000000000000000: 10000c00 2f030000 2f030000 020000 ..../.../...... 5819 5820 Slot 361 Column 1 Offset 0x4 Length 4 Length (physical) 4 5821 5822 id = 815 5823 5824 Slot 361 Column 2 Offset 0x8 Length 4 Length (physical) 4 5825 5826 c1 = 815 5827 5828 Slot 362 Offset 0x1596 Length 15 5829 5830 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5831 5832 Memory Dump @0x000000005815B596 5833 5834 0000000000000000: 10000c00 30030000 30030000 020000 ....0...0...... 5835 5836 Slot 362 Column 1 Offset 0x4 Length 4 Length (physical) 4 5837 5838 id = 816 5839 5840 Slot 362 Column 2 Offset 0x8 Length 4 Length (physical) 4 5841 5842 c1 = 816 5843 5844 Slot 363 Offset 0x15a5 Length 15 5845 5846 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5847 5848 Memory Dump @0x000000005815B5A5 5849 5850 0000000000000000: 10000c00 31030000 31030000 020000 ....1...1...... 5851 5852 Slot 363 Column 1 Offset 0x4 Length 4 Length (physical) 4 5853 5854 id = 817 5855 5856 Slot 363 Column 2 Offset 0x8 Length 4 Length (physical) 4 5857 5858 c1 = 817 5859 5860 Slot 364 Offset 0x15b4 Length 15 5861 5862 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5863 5864 Memory Dump @0x000000005815B5B4 5865 5866 0000000000000000: 10000c00 32030000 32030000 020000 ....2...2...... 5867 5868 Slot 364 Column 1 Offset 0x4 Length 4 Length (physical) 4 5869 5870 id = 818 5871 5872 Slot 364 Column 2 Offset 0x8 Length 4 Length (physical) 4 5873 5874 c1 = 818 5875 5876 Slot 365 Offset 0x15c3 Length 15 5877 5878 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5879 5880 Memory Dump @0x000000005815B5C3 5881 5882 0000000000000000: 10000c00 33030000 33030000 020000 ....3...3...... 5883 5884 Slot 365 Column 1 Offset 0x4 Length 4 Length (physical) 4 5885 5886 id = 819 5887 5888 Slot 365 Column 2 Offset 0x8 Length 4 Length (physical) 4 5889 5890 c1 = 819 5891 5892 Slot 366 Offset 0x15d2 Length 15 5893 5894 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5895 5896 Memory Dump @0x000000005815B5D2 5897 5898 0000000000000000: 10000c00 34030000 34030000 020000 ....4...4...... 5899 5900 Slot 366 Column 1 Offset 0x4 Length 4 Length (physical) 4 5901 5902 id = 820 5903 5904 Slot 366 Column 2 Offset 0x8 Length 4 Length (physical) 4 5905 5906 c1 = 820 5907 5908 Slot 367 Offset 0x15e1 Length 15 5909 5910 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5911 5912 Memory Dump @0x000000005815B5E1 5913 5914 0000000000000000: 10000c00 35030000 35030000 020000 ....5...5...... 5915 5916 Slot 367 Column 1 Offset 0x4 Length 4 Length (physical) 4 5917 5918 id = 821 5919 5920 Slot 367 Column 2 Offset 0x8 Length 4 Length (physical) 4 5921 5922 c1 = 821 5923 5924 Slot 368 Offset 0x15f0 Length 15 5925 5926 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5927 5928 Memory Dump @0x000000005815B5F0 5929 5930 0000000000000000: 10000c00 36030000 36030000 020000 ....6...6...... 5931 5932 Slot 368 Column 1 Offset 0x4 Length 4 Length (physical) 4 5933 5934 id = 822 5935 5936 Slot 368 Column 2 Offset 0x8 Length 4 Length (physical) 4 5937 5938 c1 = 822 5939 5940 Slot 369 Offset 0x15ff Length 15 5941 5942 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5943 5944 Memory Dump @0x000000005815B5FF 5945 5946 0000000000000000: 10000c00 37030000 37030000 020000 ....7...7...... 5947 5948 Slot 369 Column 1 Offset 0x4 Length 4 Length (physical) 4 5949 5950 id = 823 5951 5952 Slot 369 Column 2 Offset 0x8 Length 4 Length (physical) 4 5953 5954 c1 = 823 5955 5956 Slot 370 Offset 0x160e Length 15 5957 5958 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5959 5960 Memory Dump @0x000000005815B60E 5961 5962 0000000000000000: 10000c00 38030000 38030000 020000 ....8...8...... 5963 5964 Slot 370 Column 1 Offset 0x4 Length 4 Length (physical) 4 5965 5966 id = 824 5967 5968 Slot 370 Column 2 Offset 0x8 Length 4 Length (physical) 4 5969 5970 c1 = 824 5971 5972 Slot 371 Offset 0x161d Length 15 5973 5974 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5975 5976 Memory Dump @0x000000005815B61D 5977 5978 0000000000000000: 10000c00 39030000 39030000 020000 ....9...9...... 5979 5980 Slot 371 Column 1 Offset 0x4 Length 4 Length (physical) 4 5981 5982 id = 825 5983 5984 Slot 371 Column 2 Offset 0x8 Length 4 Length (physical) 4 5985 5986 c1 = 825 5987 5988 Slot 372 Offset 0x162c Length 15 5989 5990 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 5991 5992 Memory Dump @0x000000005815B62C 5993 5994 0000000000000000: 10000c00 3a030000 3a030000 020000 ....:...:...... 5995 5996 Slot 372 Column 1 Offset 0x4 Length 4 Length (physical) 4 5997 5998 id = 826 5999 6000 Slot 372 Column 2 Offset 0x8 Length 4 Length (physical) 4 6001 6002 c1 = 826 6003 6004 Slot 373 Offset 0x163b Length 15 6005 6006 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6007 6008 Memory Dump @0x000000005815B63B 6009 6010 0000000000000000: 10000c00 3b030000 3b030000 020000 ....;...;...... 6011 6012 Slot 373 Column 1 Offset 0x4 Length 4 Length (physical) 4 6013 6014 id = 827 6015 6016 Slot 373 Column 2 Offset 0x8 Length 4 Length (physical) 4 6017 6018 c1 = 827 6019 6020 Slot 374 Offset 0x164a Length 15 6021 6022 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6023 6024 Memory Dump @0x000000005815B64A 6025 6026 0000000000000000: 10000c00 3c030000 3c030000 020000 ....<...<...... 6027 6028 Slot 374 Column 1 Offset 0x4 Length 4 Length (physical) 4 6029 6030 id = 828 6031 6032 Slot 374 Column 2 Offset 0x8 Length 4 Length (physical) 4 6033 6034 c1 = 828 6035 6036 Slot 375 Offset 0x1659 Length 15 6037 6038 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6039 6040 Memory Dump @0x000000005815B659 6041 6042 0000000000000000: 10000c00 3d030000 3d030000 020000 ....=...=...... 6043 6044 Slot 375 Column 1 Offset 0x4 Length 4 Length (physical) 4 6045 6046 id = 829 6047 6048 Slot 375 Column 2 Offset 0x8 Length 4 Length (physical) 4 6049 6050 c1 = 829 6051 6052 Slot 376 Offset 0x1668 Length 15 6053 6054 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6055 6056 Memory Dump @0x000000005815B668 6057 6058 0000000000000000: 10000c00 3e030000 3e030000 020000 ....>...>...... 6059 6060 Slot 376 Column 1 Offset 0x4 Length 4 Length (physical) 4 6061 6062 id = 830 6063 6064 Slot 376 Column 2 Offset 0x8 Length 4 Length (physical) 4 6065 6066 c1 = 830 6067 6068 Slot 377 Offset 0x1677 Length 15 6069 6070 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6071 6072 Memory Dump @0x000000005815B677 6073 6074 0000000000000000: 10000c00 3f030000 3f030000 020000 ....?...?...... 6075 6076 Slot 377 Column 1 Offset 0x4 Length 4 Length (physical) 4 6077 6078 id = 831 6079 6080 Slot 377 Column 2 Offset 0x8 Length 4 Length (physical) 4 6081 6082 c1 = 831 6083 6084 Slot 378 Offset 0x1686 Length 15 6085 6086 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6087 6088 Memory Dump @0x000000005815B686 6089 6090 0000000000000000: 10000c00 40030000 40030000 020000 ....@...@...... 6091 6092 Slot 378 Column 1 Offset 0x4 Length 4 Length (physical) 4 6093 6094 id = 832 6095 6096 Slot 378 Column 2 Offset 0x8 Length 4 Length (physical) 4 6097 6098 c1 = 832 6099 6100 Slot 379 Offset 0x1695 Length 15 6101 6102 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6103 6104 Memory Dump @0x000000005815B695 6105 6106 0000000000000000: 10000c00 41030000 41030000 020000 ....A...A...... 6107 6108 Slot 379 Column 1 Offset 0x4 Length 4 Length (physical) 4 6109 6110 id = 833 6111 6112 Slot 379 Column 2 Offset 0x8 Length 4 Length (physical) 4 6113 6114 c1 = 833 6115 6116 Slot 380 Offset 0x16a4 Length 15 6117 6118 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6119 6120 Memory Dump @0x000000005815B6A4 6121 6122 0000000000000000: 10000c00 42030000 42030000 020000 ....B...B...... 6123 6124 Slot 380 Column 1 Offset 0x4 Length 4 Length (physical) 4 6125 6126 id = 834 6127 6128 Slot 380 Column 2 Offset 0x8 Length 4 Length (physical) 4 6129 6130 c1 = 834 6131 6132 Slot 381 Offset 0x16b3 Length 15 6133 6134 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6135 6136 Memory Dump @0x000000005815B6B3 6137 6138 0000000000000000: 10000c00 43030000 43030000 020000 ....C...C...... 6139 6140 Slot 381 Column 1 Offset 0x4 Length 4 Length (physical) 4 6141 6142 id = 835 6143 6144 Slot 381 Column 2 Offset 0x8 Length 4 Length (physical) 4 6145 6146 c1 = 835 6147 6148 Slot 382 Offset 0x16c2 Length 15 6149 6150 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6151 6152 Memory Dump @0x000000005815B6C2 6153 6154 0000000000000000: 10000c00 44030000 44030000 020000 ....D...D...... 6155 6156 Slot 382 Column 1 Offset 0x4 Length 4 Length (physical) 4 6157 6158 id = 836 6159 6160 Slot 382 Column 2 Offset 0x8 Length 4 Length (physical) 4 6161 6162 c1 = 836 6163 6164 Slot 383 Offset 0x16d1 Length 15 6165 6166 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6167 6168 Memory Dump @0x000000005815B6D1 6169 6170 0000000000000000: 10000c00 45030000 45030000 020000 ....E...E...... 6171 6172 Slot 383 Column 1 Offset 0x4 Length 4 Length (physical) 4 6173 6174 id = 837 6175 6176 Slot 383 Column 2 Offset 0x8 Length 4 Length (physical) 4 6177 6178 c1 = 837 6179 6180 Slot 384 Offset 0x16e0 Length 15 6181 6182 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6183 6184 Memory Dump @0x000000005815B6E0 6185 6186 0000000000000000: 10000c00 46030000 46030000 020000 ....F...F...... 6187 6188 Slot 384 Column 1 Offset 0x4 Length 4 Length (physical) 4 6189 6190 id = 838 6191 6192 Slot 384 Column 2 Offset 0x8 Length 4 Length (physical) 4 6193 6194 c1 = 838 6195 6196 Slot 385 Offset 0x16ef Length 15 6197 6198 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6199 6200 Memory Dump @0x000000005815B6EF 6201 6202 0000000000000000: 10000c00 47030000 47030000 020000 ....G...G...... 6203 6204 Slot 385 Column 1 Offset 0x4 Length 4 Length (physical) 4 6205 6206 id = 839 6207 6208 Slot 385 Column 2 Offset 0x8 Length 4 Length (physical) 4 6209 6210 c1 = 839 6211 6212 Slot 386 Offset 0x16fe Length 15 6213 6214 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6215 6216 Memory Dump @0x000000005815B6FE 6217 6218 0000000000000000: 10000c00 48030000 48030000 020000 ....H...H...... 6219 6220 Slot 386 Column 1 Offset 0x4 Length 4 Length (physical) 4 6221 6222 id = 840 6223 6224 Slot 386 Column 2 Offset 0x8 Length 4 Length (physical) 4 6225 6226 c1 = 840 6227 6228 Slot 387 Offset 0x170d Length 15 6229 6230 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6231 6232 Memory Dump @0x000000005815B70D 6233 6234 0000000000000000: 10000c00 49030000 49030000 020000 ....I...I...... 6235 6236 Slot 387 Column 1 Offset 0x4 Length 4 Length (physical) 4 6237 6238 id = 841 6239 6240 Slot 387 Column 2 Offset 0x8 Length 4 Length (physical) 4 6241 6242 c1 = 841 6243 6244 Slot 388 Offset 0x171c Length 15 6245 6246 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6247 6248 Memory Dump @0x000000005815B71C 6249 6250 0000000000000000: 10000c00 4a030000 4a030000 020000 ....J...J...... 6251 6252 Slot 388 Column 1 Offset 0x4 Length 4 Length (physical) 4 6253 6254 id = 842 6255 6256 Slot 388 Column 2 Offset 0x8 Length 4 Length (physical) 4 6257 6258 c1 = 842 6259 6260 Slot 389 Offset 0x172b Length 15 6261 6262 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6263 6264 Memory Dump @0x000000005815B72B 6265 6266 0000000000000000: 10000c00 4b030000 4b030000 020000 ....K...K...... 6267 6268 Slot 389 Column 1 Offset 0x4 Length 4 Length (physical) 4 6269 6270 id = 843 6271 6272 Slot 389 Column 2 Offset 0x8 Length 4 Length (physical) 4 6273 6274 c1 = 843 6275 6276 Slot 390 Offset 0x173a Length 15 6277 6278 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6279 6280 Memory Dump @0x000000005815B73A 6281 6282 0000000000000000: 10000c00 4c030000 4c030000 020000 ....L...L...... 6283 6284 Slot 390 Column 1 Offset 0x4 Length 4 Length (physical) 4 6285 6286 id = 844 6287 6288 Slot 390 Column 2 Offset 0x8 Length 4 Length (physical) 4 6289 6290 c1 = 844 6291 6292 Slot 391 Offset 0x1749 Length 15 6293 6294 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6295 6296 Memory Dump @0x000000005815B749 6297 6298 0000000000000000: 10000c00 4d030000 4d030000 020000 ....M...M...... 6299 6300 Slot 391 Column 1 Offset 0x4 Length 4 Length (physical) 4 6301 6302 id = 845 6303 6304 Slot 391 Column 2 Offset 0x8 Length 4 Length (physical) 4 6305 6306 c1 = 845 6307 6308 Slot 392 Offset 0x1758 Length 15 6309 6310 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6311 6312 Memory Dump @0x000000005815B758 6313 6314 0000000000000000: 10000c00 4e030000 4e030000 020000 ....N...N...... 6315 6316 Slot 392 Column 1 Offset 0x4 Length 4 Length (physical) 4 6317 6318 id = 846 6319 6320 Slot 392 Column 2 Offset 0x8 Length 4 Length (physical) 4 6321 6322 c1 = 846 6323 6324 Slot 393 Offset 0x1767 Length 15 6325 6326 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6327 6328 Memory Dump @0x000000005815B767 6329 6330 0000000000000000: 10000c00 4f030000 4f030000 020000 ....O...O...... 6331 6332 Slot 393 Column 1 Offset 0x4 Length 4 Length (physical) 4 6333 6334 id = 847 6335 6336 Slot 393 Column 2 Offset 0x8 Length 4 Length (physical) 4 6337 6338 c1 = 847 6339 6340 Slot 394 Offset 0x1776 Length 15 6341 6342 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6343 6344 Memory Dump @0x000000005815B776 6345 6346 0000000000000000: 10000c00 50030000 50030000 020000 ....P...P...... 6347 6348 Slot 394 Column 1 Offset 0x4 Length 4 Length (physical) 4 6349 6350 id = 848 6351 6352 Slot 394 Column 2 Offset 0x8 Length 4 Length (physical) 4 6353 6354 c1 = 848 6355 6356 Slot 395 Offset 0x1785 Length 15 6357 6358 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6359 6360 Memory Dump @0x000000005815B785 6361 6362 0000000000000000: 10000c00 51030000 51030000 020000 ....Q...Q...... 6363 6364 Slot 395 Column 1 Offset 0x4 Length 4 Length (physical) 4 6365 6366 id = 849 6367 6368 Slot 395 Column 2 Offset 0x8 Length 4 Length (physical) 4 6369 6370 c1 = 849 6371 6372 Slot 396 Offset 0x1794 Length 15 6373 6374 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6375 6376 Memory Dump @0x000000005815B794 6377 6378 0000000000000000: 10000c00 52030000 52030000 020000 ....R...R...... 6379 6380 Slot 396 Column 1 Offset 0x4 Length 4 Length (physical) 4 6381 6382 id = 850 6383 6384 Slot 396 Column 2 Offset 0x8 Length 4 Length (physical) 4 6385 6386 c1 = 850 6387 6388 Slot 397 Offset 0x17a3 Length 15 6389 6390 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6391 6392 Memory Dump @0x000000005815B7A3 6393 6394 0000000000000000: 10000c00 53030000 53030000 020000 ....S...S...... 6395 6396 Slot 397 Column 1 Offset 0x4 Length 4 Length (physical) 4 6397 6398 id = 851 6399 6400 Slot 397 Column 2 Offset 0x8 Length 4 Length (physical) 4 6401 6402 c1 = 851 6403 6404 Slot 398 Offset 0x17b2 Length 15 6405 6406 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6407 6408 Memory Dump @0x000000005815B7B2 6409 6410 0000000000000000: 10000c00 54030000 54030000 020000 ....T...T...... 6411 6412 Slot 398 Column 1 Offset 0x4 Length 4 Length (physical) 4 6413 6414 id = 852 6415 6416 Slot 398 Column 2 Offset 0x8 Length 4 Length (physical) 4 6417 6418 c1 = 852 6419 6420 Slot 399 Offset 0x17c1 Length 15 6421 6422 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6423 6424 Memory Dump @0x000000005815B7C1 6425 6426 0000000000000000: 10000c00 55030000 55030000 020000 ....U...U...... 6427 6428 Slot 399 Column 1 Offset 0x4 Length 4 Length (physical) 4 6429 6430 id = 853 6431 6432 Slot 399 Column 2 Offset 0x8 Length 4 Length (physical) 4 6433 6434 c1 = 853 6435 6436 Slot 400 Offset 0x17d0 Length 15 6437 6438 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6439 6440 Memory Dump @0x000000005815B7D0 6441 6442 0000000000000000: 10000c00 56030000 56030000 020000 ....V...V...... 6443 6444 Slot 400 Column 1 Offset 0x4 Length 4 Length (physical) 4 6445 6446 id = 854 6447 6448 Slot 400 Column 2 Offset 0x8 Length 4 Length (physical) 4 6449 6450 c1 = 854 6451 6452 Slot 401 Offset 0x17df Length 15 6453 6454 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6455 6456 Memory Dump @0x000000005815B7DF 6457 6458 0000000000000000: 10000c00 57030000 57030000 020000 ....W...W...... 6459 6460 Slot 401 Column 1 Offset 0x4 Length 4 Length (physical) 4 6461 6462 id = 855 6463 6464 Slot 401 Column 2 Offset 0x8 Length 4 Length (physical) 4 6465 6466 c1 = 855 6467 6468 Slot 402 Offset 0x17ee Length 15 6469 6470 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6471 6472 Memory Dump @0x000000005815B7EE 6473 6474 0000000000000000: 10000c00 58030000 58030000 020000 ....X...X...... 6475 6476 Slot 402 Column 1 Offset 0x4 Length 4 Length (physical) 4 6477 6478 id = 856 6479 6480 Slot 402 Column 2 Offset 0x8 Length 4 Length (physical) 4 6481 6482 c1 = 856 6483 6484 Slot 403 Offset 0x17fd Length 15 6485 6486 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6487 6488 Memory Dump @0x000000005815B7FD 6489 6490 0000000000000000: 10000c00 59030000 59030000 020000 ....Y...Y...... 6491 6492 Slot 403 Column 1 Offset 0x4 Length 4 Length (physical) 4 6493 6494 id = 857 6495 6496 Slot 403 Column 2 Offset 0x8 Length 4 Length (physical) 4 6497 6498 c1 = 857 6499 6500 Slot 404 Offset 0x180c Length 15 6501 6502 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6503 6504 Memory Dump @0x000000005815B80C 6505 6506 0000000000000000: 10000c00 5a030000 5a030000 020000 ....Z...Z...... 6507 6508 Slot 404 Column 1 Offset 0x4 Length 4 Length (physical) 4 6509 6510 id = 858 6511 6512 Slot 404 Column 2 Offset 0x8 Length 4 Length (physical) 4 6513 6514 c1 = 858 6515 6516 Slot 405 Offset 0x181b Length 15 6517 6518 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6519 6520 Memory Dump @0x000000005815B81B 6521 6522 0000000000000000: 10000c00 5b030000 5b030000 020000 ....[...[...... 6523 6524 Slot 405 Column 1 Offset 0x4 Length 4 Length (physical) 4 6525 6526 id = 859 6527 6528 Slot 405 Column 2 Offset 0x8 Length 4 Length (physical) 4 6529 6530 c1 = 859 6531 6532 Slot 406 Offset 0x182a Length 15 6533 6534 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6535 6536 Memory Dump @0x000000005815B82A 6537 6538 0000000000000000: 10000c00 5c030000 5c030000 020000 ....\...\...... 6539 6540 Slot 406 Column 1 Offset 0x4 Length 4 Length (physical) 4 6541 6542 id = 860 6543 6544 Slot 406 Column 2 Offset 0x8 Length 4 Length (physical) 4 6545 6546 c1 = 860 6547 6548 Slot 407 Offset 0x1839 Length 15 6549 6550 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6551 6552 Memory Dump @0x000000005815B839 6553 6554 0000000000000000: 10000c00 5d030000 5d030000 020000 ....]...]...... 6555 6556 Slot 407 Column 1 Offset 0x4 Length 4 Length (physical) 4 6557 6558 id = 861 6559 6560 Slot 407 Column 2 Offset 0x8 Length 4 Length (physical) 4 6561 6562 c1 = 861 6563 6564 Slot 408 Offset 0x1848 Length 15 6565 6566 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6567 6568 Memory Dump @0x000000005815B848 6569 6570 0000000000000000: 10000c00 5e030000 5e030000 020000 ....^...^...... 6571 6572 Slot 408 Column 1 Offset 0x4 Length 4 Length (physical) 4 6573 6574 id = 862 6575 6576 Slot 408 Column 2 Offset 0x8 Length 4 Length (physical) 4 6577 6578 c1 = 862 6579 6580 Slot 409 Offset 0x1857 Length 15 6581 6582 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6583 6584 Memory Dump @0x000000005815B857 6585 6586 0000000000000000: 10000c00 5f030000 5f030000 020000 ...._..._...... 6587 6588 Slot 409 Column 1 Offset 0x4 Length 4 Length (physical) 4 6589 6590 id = 863 6591 6592 Slot 409 Column 2 Offset 0x8 Length 4 Length (physical) 4 6593 6594 c1 = 863 6595 6596 Slot 410 Offset 0x1866 Length 15 6597 6598 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6599 6600 Memory Dump @0x000000005815B866 6601 6602 0000000000000000: 10000c00 60030000 60030000 020000 ....`...`...... 6603 6604 Slot 410 Column 1 Offset 0x4 Length 4 Length (physical) 4 6605 6606 id = 864 6607 6608 Slot 410 Column 2 Offset 0x8 Length 4 Length (physical) 4 6609 6610 c1 = 864 6611 6612 Slot 411 Offset 0x1875 Length 15 6613 6614 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6615 6616 Memory Dump @0x000000005815B875 6617 6618 0000000000000000: 10000c00 61030000 61030000 020000 ....a...a...... 6619 6620 Slot 411 Column 1 Offset 0x4 Length 4 Length (physical) 4 6621 6622 id = 865 6623 6624 Slot 411 Column 2 Offset 0x8 Length 4 Length (physical) 4 6625 6626 c1 = 865 6627 6628 Slot 412 Offset 0x1884 Length 15 6629 6630 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6631 6632 Memory Dump @0x000000005815B884 6633 6634 0000000000000000: 10000c00 62030000 62030000 020000 ....b...b...... 6635 6636 Slot 412 Column 1 Offset 0x4 Length 4 Length (physical) 4 6637 6638 id = 866 6639 6640 Slot 412 Column 2 Offset 0x8 Length 4 Length (physical) 4 6641 6642 c1 = 866 6643 6644 Slot 413 Offset 0x1893 Length 15 6645 6646 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6647 6648 Memory Dump @0x000000005815B893 6649 6650 0000000000000000: 10000c00 63030000 63030000 020000 ....c...c...... 6651 6652 Slot 413 Column 1 Offset 0x4 Length 4 Length (physical) 4 6653 6654 id = 867 6655 6656 Slot 413 Column 2 Offset 0x8 Length 4 Length (physical) 4 6657 6658 c1 = 867 6659 6660 Slot 414 Offset 0x18a2 Length 15 6661 6662 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6663 6664 Memory Dump @0x000000005815B8A2 6665 6666 0000000000000000: 10000c00 64030000 64030000 020000 ....d...d...... 6667 6668 Slot 414 Column 1 Offset 0x4 Length 4 Length (physical) 4 6669 6670 id = 868 6671 6672 Slot 414 Column 2 Offset 0x8 Length 4 Length (physical) 4 6673 6674 c1 = 868 6675 6676 Slot 415 Offset 0x18b1 Length 15 6677 6678 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6679 6680 Memory Dump @0x000000005815B8B1 6681 6682 0000000000000000: 10000c00 65030000 65030000 020000 ....e...e...... 6683 6684 Slot 415 Column 1 Offset 0x4 Length 4 Length (physical) 4 6685 6686 id = 869 6687 6688 Slot 415 Column 2 Offset 0x8 Length 4 Length (physical) 4 6689 6690 c1 = 869 6691 6692 Slot 416 Offset 0x18c0 Length 15 6693 6694 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6695 6696 Memory Dump @0x000000005815B8C0 6697 6698 0000000000000000: 10000c00 66030000 66030000 020000 ....f...f...... 6699 6700 Slot 416 Column 1 Offset 0x4 Length 4 Length (physical) 4 6701 6702 id = 870 6703 6704 Slot 416 Column 2 Offset 0x8 Length 4 Length (physical) 4 6705 6706 c1 = 870 6707 6708 Slot 417 Offset 0x18cf Length 15 6709 6710 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6711 6712 Memory Dump @0x000000005815B8CF 6713 6714 0000000000000000: 10000c00 67030000 67030000 020000 ....g...g...... 6715 6716 Slot 417 Column 1 Offset 0x4 Length 4 Length (physical) 4 6717 6718 id = 871 6719 6720 Slot 417 Column 2 Offset 0x8 Length 4 Length (physical) 4 6721 6722 c1 = 871 6723 6724 Slot 418 Offset 0x18de Length 15 6725 6726 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6727 6728 Memory Dump @0x000000005815B8DE 6729 6730 0000000000000000: 10000c00 68030000 68030000 020000 ....h...h...... 6731 6732 Slot 418 Column 1 Offset 0x4 Length 4 Length (physical) 4 6733 6734 id = 872 6735 6736 Slot 418 Column 2 Offset 0x8 Length 4 Length (physical) 4 6737 6738 c1 = 872 6739 6740 Slot 419 Offset 0x18ed Length 15 6741 6742 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6743 6744 Memory Dump @0x000000005815B8ED 6745 6746 0000000000000000: 10000c00 69030000 69030000 020000 ....i...i...... 6747 6748 Slot 419 Column 1 Offset 0x4 Length 4 Length (physical) 4 6749 6750 id = 873 6751 6752 Slot 419 Column 2 Offset 0x8 Length 4 Length (physical) 4 6753 6754 c1 = 873 6755 6756 Slot 420 Offset 0x18fc Length 15 6757 6758 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6759 6760 Memory Dump @0x000000005815B8FC 6761 6762 0000000000000000: 10000c00 6a030000 6a030000 020000 ....j...j...... 6763 6764 Slot 420 Column 1 Offset 0x4 Length 4 Length (physical) 4 6765 6766 id = 874 6767 6768 Slot 420 Column 2 Offset 0x8 Length 4 Length (physical) 4 6769 6770 c1 = 874 6771 6772 Slot 421 Offset 0x190b Length 15 6773 6774 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6775 6776 Memory Dump @0x000000005815B90B 6777 6778 0000000000000000: 10000c00 6b030000 6b030000 020000 ....k...k...... 6779 6780 Slot 421 Column 1 Offset 0x4 Length 4 Length (physical) 4 6781 6782 id = 875 6783 6784 Slot 421 Column 2 Offset 0x8 Length 4 Length (physical) 4 6785 6786 c1 = 875 6787 6788 Slot 422 Offset 0x191a Length 15 6789 6790 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6791 6792 Memory Dump @0x000000005815B91A 6793 6794 0000000000000000: 10000c00 6c030000 6c030000 020000 ....l...l...... 6795 6796 Slot 422 Column 1 Offset 0x4 Length 4 Length (physical) 4 6797 6798 id = 876 6799 6800 Slot 422 Column 2 Offset 0x8 Length 4 Length (physical) 4 6801 6802 c1 = 876 6803 6804 Slot 423 Offset 0x1929 Length 15 6805 6806 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6807 6808 Memory Dump @0x000000005815B929 6809 6810 0000000000000000: 10000c00 6d030000 6d030000 020000 ....m...m...... 6811 6812 Slot 423 Column 1 Offset 0x4 Length 4 Length (physical) 4 6813 6814 id = 877 6815 6816 Slot 423 Column 2 Offset 0x8 Length 4 Length (physical) 4 6817 6818 c1 = 877 6819 6820 Slot 424 Offset 0x1938 Length 15 6821 6822 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6823 6824 Memory Dump @0x000000005815B938 6825 6826 0000000000000000: 10000c00 6e030000 6e030000 020000 ....n...n...... 6827 6828 Slot 424 Column 1 Offset 0x4 Length 4 Length (physical) 4 6829 6830 id = 878 6831 6832 Slot 424 Column 2 Offset 0x8 Length 4 Length (physical) 4 6833 6834 c1 = 878 6835 6836 Slot 425 Offset 0x1947 Length 15 6837 6838 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6839 6840 Memory Dump @0x000000005815B947 6841 6842 0000000000000000: 10000c00 6f030000 6f030000 020000 ....o...o...... 6843 6844 Slot 425 Column 1 Offset 0x4 Length 4 Length (physical) 4 6845 6846 id = 879 6847 6848 Slot 425 Column 2 Offset 0x8 Length 4 Length (physical) 4 6849 6850 c1 = 879 6851 6852 Slot 426 Offset 0x1956 Length 15 6853 6854 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6855 6856 Memory Dump @0x000000005815B956 6857 6858 0000000000000000: 10000c00 70030000 70030000 020000 ....p...p...... 6859 6860 Slot 426 Column 1 Offset 0x4 Length 4 Length (physical) 4 6861 6862 id = 880 6863 6864 Slot 426 Column 2 Offset 0x8 Length 4 Length (physical) 4 6865 6866 c1 = 880 6867 6868 Slot 427 Offset 0x1965 Length 15 6869 6870 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6871 6872 Memory Dump @0x000000005815B965 6873 6874 0000000000000000: 10000c00 71030000 71030000 020000 ....q...q...... 6875 6876 Slot 427 Column 1 Offset 0x4 Length 4 Length (physical) 4 6877 6878 id = 881 6879 6880 Slot 427 Column 2 Offset 0x8 Length 4 Length (physical) 4 6881 6882 c1 = 881 6883 6884 Slot 428 Offset 0x1974 Length 15 6885 6886 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6887 6888 Memory Dump @0x000000005815B974 6889 6890 0000000000000000: 10000c00 72030000 72030000 020000 ....r...r...... 6891 6892 Slot 428 Column 1 Offset 0x4 Length 4 Length (physical) 4 6893 6894 id = 882 6895 6896 Slot 428 Column 2 Offset 0x8 Length 4 Length (physical) 4 6897 6898 c1 = 882 6899 6900 Slot 429 Offset 0x1983 Length 15 6901 6902 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6903 6904 Memory Dump @0x000000005815B983 6905 6906 0000000000000000: 10000c00 73030000 73030000 020000 ....s...s...... 6907 6908 Slot 429 Column 1 Offset 0x4 Length 4 Length (physical) 4 6909 6910 id = 883 6911 6912 Slot 429 Column 2 Offset 0x8 Length 4 Length (physical) 4 6913 6914 c1 = 883 6915 6916 Slot 430 Offset 0x1992 Length 15 6917 6918 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6919 6920 Memory Dump @0x000000005815B992 6921 6922 0000000000000000: 10000c00 74030000 74030000 020000 ....t...t...... 6923 6924 Slot 430 Column 1 Offset 0x4 Length 4 Length (physical) 4 6925 6926 id = 884 6927 6928 Slot 430 Column 2 Offset 0x8 Length 4 Length (physical) 4 6929 6930 c1 = 884 6931 6932 Slot 431 Offset 0x19a1 Length 15 6933 6934 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6935 6936 Memory Dump @0x000000005815B9A1 6937 6938 0000000000000000: 10000c00 75030000 75030000 020000 ....u...u...... 6939 6940 Slot 431 Column 1 Offset 0x4 Length 4 Length (physical) 4 6941 6942 id = 885 6943 6944 Slot 431 Column 2 Offset 0x8 Length 4 Length (physical) 4 6945 6946 c1 = 885 6947 6948 Slot 432 Offset 0x19b0 Length 15 6949 6950 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6951 6952 Memory Dump @0x000000005815B9B0 6953 6954 0000000000000000: 10000c00 76030000 76030000 020000 ....v...v...... 6955 6956 Slot 432 Column 1 Offset 0x4 Length 4 Length (physical) 4 6957 6958 id = 886 6959 6960 Slot 432 Column 2 Offset 0x8 Length 4 Length (physical) 4 6961 6962 c1 = 886 6963 6964 Slot 433 Offset 0x19bf Length 15 6965 6966 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6967 6968 Memory Dump @0x000000005815B9BF 6969 6970 0000000000000000: 10000c00 77030000 77030000 020000 ....w...w...... 6971 6972 Slot 433 Column 1 Offset 0x4 Length 4 Length (physical) 4 6973 6974 id = 887 6975 6976 Slot 433 Column 2 Offset 0x8 Length 4 Length (physical) 4 6977 6978 c1 = 887 6979 6980 Slot 434 Offset 0x19ce Length 15 6981 6982 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6983 6984 Memory Dump @0x000000005815B9CE 6985 6986 0000000000000000: 10000c00 78030000 78030000 020000 ....x...x...... 6987 6988 Slot 434 Column 1 Offset 0x4 Length 4 Length (physical) 4 6989 6990 id = 888 6991 6992 Slot 434 Column 2 Offset 0x8 Length 4 Length (physical) 4 6993 6994 c1 = 888 6995 6996 Slot 435 Offset 0x19dd Length 15 6997 6998 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 6999 7000 Memory Dump @0x000000005815B9DD 7001 7002 0000000000000000: 10000c00 79030000 79030000 020000 ....y...y...... 7003 7004 Slot 435 Column 1 Offset 0x4 Length 4 Length (physical) 4 7005 7006 id = 889 7007 7008 Slot 435 Column 2 Offset 0x8 Length 4 Length (physical) 4 7009 7010 c1 = 889 7011 7012 Slot 436 Offset 0x19ec Length 15 7013 7014 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 7015 7016 Memory Dump @0x000000005815B9EC 7017 7018 0000000000000000: 10000c00 7a030000 7a030000 020000 ....z...z...... 7019 7020 Slot 436 Column 1 Offset 0x4 Length 4 Length (physical) 4 7021 7022 id = 890 7023 7024 Slot 436 Column 2 Offset 0x8 Length 4 Length (physical) 4 7025 7026 c1 = 890 7027 7028 Slot 437 Offset 0x19fb Length 15 7029 7030 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 7031 7032 Memory Dump @0x000000005815B9FB 7033 7034 0000000000000000: 10000c00 7b030000 7b030000 020000 ....{...{...... 7035 7036 Slot 437 Column 1 Offset 0x4 Length 4 Length (physical) 4 7037 7038 id = 891 7039 7040 Slot 437 Column 2 Offset 0x8 Length 4 Length (physical) 4 7041 7042 c1 = 891 7043 7044 Slot 438 Offset 0x1a0a Length 15 7045 7046 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 7047 7048 Memory Dump @0x000000005815BA0A 7049 7050 0000000000000000: 10000c00 7c030000 7c030000 020000 ....|...|...... 7051 7052 Slot 438 Column 1 Offset 0x4 Length 4 Length (physical) 4 7053 7054 id = 892 7055 7056 Slot 438 Column 2 Offset 0x8 Length 4 Length (physical) 4 7057 7058 c1 = 892 7059 7060 Slot 439 Offset 0x1a19 Length 15 7061 7062 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 7063 7064 Memory Dump @0x000000005815BA19 7065 7066 0000000000000000: 10000c00 7d030000 7d030000 020000 ....}...}...... 7067 7068 Slot 439 Column 1 Offset 0x4 Length 4 Length (physical) 4 7069 7070 id = 893 7071 7072 Slot 439 Column 2 Offset 0x8 Length 4 Length (physical) 4 7073 7074 c1 = 893 7075 7076 Slot 440 Offset 0x1a28 Length 15 7077 7078 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 7079 7080 Memory Dump @0x000000005815BA28 7081 7082 0000000000000000: 10000c00 7e030000 7e030000 020000 ....~...~...... 7083 7084 Slot 440 Column 1 Offset 0x4 Length 4 Length (physical) 4 7085 7086 id = 894 7087 7088 Slot 440 Column 2 Offset 0x8 Length 4 Length (physical) 4 7089 7090 c1 = 894 7091 7092 Slot 441 Offset 0x1a37 Length 15 7093 7094 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 7095 7096 Memory Dump @0x000000005815BA37 7097 7098 0000000000000000: 10000c00 7f030000 7f030000 020000 ............... 7099 7100 Slot 441 Column 1 Offset 0x4 Length 4 Length (physical) 4 7101 7102 id = 895 7103 7104 Slot 441 Column 2 Offset 0x8 Length 4 Length (physical) 4 7105 7106 c1 = 895 7107 7108 Slot 442 Offset 0x1a46 Length 15 7109 7110 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 7111 7112 Memory Dump @0x000000005815BA46 7113 7114 0000000000000000: 10000c00 80030000 80030000 020000 ............... 7115 7116 Slot 442 Column 1 Offset 0x4 Length 4 Length (physical) 4 7117 7118 id = 896 7119 7120 Slot 442 Column 2 Offset 0x8 Length 4 Length (physical) 4 7121 7122 c1 = 896 7123 7124 Slot 443 Offset 0x1a55 Length 15 7125 7126 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 7127 7128 Memory Dump @0x000000005815BA55 7129 7130 0000000000000000: 10000c00 81030000 81030000 020000 ............... 7131 7132 Slot 443 Column 1 Offset 0x4 Length 4 Length (physical) 4 7133 7134 id = 897 7135 7136 Slot 443 Column 2 Offset 0x8 Length 4 Length (physical) 4 7137 7138 c1 = 897 7139 7140 Slot 444 Offset 0x1a64 Length 15 7141 7142 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 7143 7144 Memory Dump @0x000000005815BA64 7145 7146 0000000000000000: 10000c00 82030000 82030000 020000 ............... 7147 7148 Slot 444 Column 1 Offset 0x4 Length 4 Length (physical) 4 7149 7150 id = 898 7151 7152 Slot 444 Column 2 Offset 0x8 Length 4 Length (physical) 4 7153 7154 c1 = 898 7155 7156 Slot 445 Offset 0x1a73 Length 15 7157 7158 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 7159 7160 Memory Dump @0x000000005815BA73 7161 7162 0000000000000000: 10000c00 83030000 83030000 020000 ............... 7163 7164 Slot 445 Column 1 Offset 0x4 Length 4 Length (physical) 4 7165 7166 id = 899 7167 7168 Slot 445 Column 2 Offset 0x8 Length 4 Length (physical) 4 7169 7170 c1 = 899 7171 7172 Slot 446 Offset 0x1a82 Length 15 7173 7174 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 7175 7176 Memory Dump @0x000000005815BA82 7177 7178 0000000000000000: 10000c00 84030000 84030000 020000 ............... 7179 7180 Slot 446 Column 1 Offset 0x4 Length 4 Length (physical) 4 7181 7182 id = 900 7183 7184 Slot 446 Column 2 Offset 0x8 Length 4 Length (physical) 4 7185 7186 c1 = 900 7187 7188 Slot 447 Offset 0x1a91 Length 15 7189 7190 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 7191 7192 Memory Dump @0x000000005815BA91 7193 7194 0000000000000000: 10000c00 85030000 85030000 020000 ............... 7195 7196 Slot 447 Column 1 Offset 0x4 Length 4 Length (physical) 4 7197 7198 id = 901 7199 7200 Slot 447 Column 2 Offset 0x8 Length 4 Length (physical) 4 7201 7202 c1 = 901 7203 7204 Slot 448 Offset 0x1aa0 Length 15 7205 7206 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 7207 7208 Memory Dump @0x000000005815BAA0 7209 7210 0000000000000000: 10000c00 86030000 86030000 020000 ............... 7211 7212 Slot 448 Column 1 Offset 0x4 Length 4 Length (physical) 4 7213 7214 id = 902 7215 7216 Slot 448 Column 2 Offset 0x8 Length 4 Length (physical) 4 7217 7218 c1 = 902 7219 7220 Slot 449 Offset 0x1aaf Length 15 7221 7222 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 7223 7224 Memory Dump @0x000000005815BAAF 7225 7226 0000000000000000: 10000c00 87030000 87030000 020000 ............... 7227 7228 Slot 449 Column 1 Offset 0x4 Length 4 Length (physical) 4 7229 7230 id = 903 7231 7232 Slot 449 Column 2 Offset 0x8 Length 4 Length (physical) 4 7233 7234 c1 = 903 7235 7236 Slot 450 Offset 0x1abe Length 15 7237 7238 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 7239 7240 Memory Dump @0x000000005815BABE 7241 7242 0000000000000000: 10000c00 88030000 88030000 020000 ............... 7243 7244 Slot 450 Column 1 Offset 0x4 Length 4 Length (physical) 4 7245 7246 id = 904 7247 7248 Slot 450 Column 2 Offset 0x8 Length 4 Length (physical) 4 7249 7250 c1 = 904 7251 7252 Slot 451 Offset 0x1acd Length 15 7253 7254 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 7255 7256 Memory Dump @0x000000005815BACD 7257 7258 0000000000000000: 10000c00 89030000 89030000 020000 ............... 7259 7260 Slot 451 Column 1 Offset 0x4 Length 4 Length (physical) 4 7261 7262 id = 905 7263 7264 Slot 451 Column 2 Offset 0x8 Length 4 Length (physical) 4 7265 7266 c1 = 905 7267 7268 Slot 452 Offset 0x1adc Length 15 7269 7270 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 7271 7272 Memory Dump @0x000000005815BADC 7273 7274 0000000000000000: 10000c00 8a030000 8a030000 020000 ............... 7275 7276 Slot 452 Column 1 Offset 0x4 Length 4 Length (physical) 4 7277 7278 id = 906 7279 7280 Slot 452 Column 2 Offset 0x8 Length 4 Length (physical) 4 7281 7282 c1 = 906 7283 7284 7285 DBCC 执行完毕。如果 DBCC 输出了错误信息,请与系统管理员联系。 7286
Slot 1 Offset 0x6f Length 15 53 54 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 55 56 Memory Dump @0x000000005815A06F 57 58 0000000000000000: 10000c00 c7010000 c7010000 020000 ............... 59 60 Slot 1 Column 1 Offset 0x4 Length 4 Length (physical) 4 61 62 id = 455 63 64 Slot 1 Column 2 Offset 0x8 Length 4 Length (physical) 4 65 66 c1 = 455
可以看到在c1列上建立的列存储索引,数据页会存放c1列的数据,而不是存放指向LOB页面的指针
回到这个问题: 为什麽在聚集索引表中,LOB页面没有Lob_Tree_Page?
本人的观点:
因为聚集索引中,text字段不在索引列里,只是当一个表有聚集索引的时候,无论是什么种类的页面,
LOB页面也好,in-row data页面也好 row-overflow页面也好,都是属于聚集索引的一部分,而实际的表数据只是存在于聚集索引的叶子节点
而列存储索引不同,LOB页面就是存放的索引数据(这里不知道为什么既然不能在ntext、text和 image这些数据类型上建立索引但是也要
用LOB页面来存放索引数据),既然存放索引当然可以用树结构来组织这些数据啦!而且这个树结构应该不是B树,因为在列存储索引中
“列存储索引不支持 SEEK”,而且刚才indexlevel列是没有等级的
文章就写到这里了
最后大家看了这篇文章,应该能回答下面这个帖子的问题了
http://social.msdn.microsoft.com/forums/zh-CN/b84d1311-8399-4222-b31f-de1c3727eb5d/sqlserver-2012-
如有不对的地方,欢迎大家拍砖o(∩_∩)o
2014-6-24补充:
相关文章
SQL Server Storage Engine: LOB Storage