All of lore.kernel.org
 help / color / mirror / Atom feed
* Advice requested
@ 2015-10-31 11:55 o1bigtenor
  2015-11-01 20:55 ` Phil Turmel
  0 siblings, 1 reply; 22+ messages in thread
From: o1bigtenor @ 2015-10-31 11:55 UTC (permalink / raw)
  To: linux-raid

Greetings

I had a raid 10 array where one drive threw an error (seemingly in a
superblock) and since I have not been able to get the array readable.
It was suggested to me that I remove 2 of the drives leaving the two
that were striped together.

So what I have is really a raid 0 array at present.

Info following from queries to system for system information.

mdadm --detail /dev/md0
/dev/md0:
       Version : 1.2
    Raid Level : raid0
 Total Devices : 2
   Persistence : Superblock is persistent

         State : inactive

          Name : debianbase:0  (local to host debianbase)
          UUID : 79baaa2f:0aa2b9fa:18e2ea6b:6e2846b3
        Events : 47341

   Number   Major   Minor   RaidDevice

      -       8       17        -        /dev/sdb1
      -       8       49        -        /dev/sdd1
root@debianbase:/media/darald# echo $UUID

root@debianbase:/media/xxxxxx# cd /
root@debianbase:/# mdadm --examine /dev/sdb1
/dev/sdb1:
         Magic : a92b4efc
       Version : 1.2
   Feature Map : 0x0
    Array UUID : 79baaa2f:0aa2b9fa:18e2ea6b:6e2846b3
          Name : debianbase:0  (local to host debianbase)
 Creation Time : Mon Mar  5 08:26:28 2012
    Raid Level : raid10
  Raid Devices : 4

Avail Dev Size : 1953519616 (931.51 GiB 1000.20 GB)
    Array Size : 1953518592 (1863.02 GiB 2000.40 GB)
 Used Dev Size : 1953518592 (931.51 GiB 1000.20 GB)
   Data Offset : 2048 sectors
  Super Offset : 8 sectors
  Unused Space : before=1968 sectors, after=1024 sectors
         State : clean
   Device UUID : a80c76db:eaea61af:bcb9cbbb:ac99e467

   Update Time : Fri Aug 28 10:38:32 2015
      Checksum : 29a4fa98 - correct
        Events : 47341

        Layout : near=2
    Chunk Size : 512K

  Device Role : Active device 3
  Array State : AAAA ('A' == active, '.' == missing, 'R' == replacing)
root@debianbase:/# mdadm --examine /dev/sdd1
/dev/sdd1:
         Magic : a92b4efc
       Version : 1.2
   Feature Map : 0x0
    Array UUID : 79baaa2f:0aa2b9fa:18e2ea6b:6e2846b3
          Name : debianbase:0  (local to host debianbase)
 Creation Time : Mon Mar  5 08:26:28 2012
    Raid Level : raid10
  Raid Devices : 4

Avail Dev Size : 1953519616 (931.51 GiB 1000.20 GB)
    Array Size : 1953518592 (1863.02 GiB 2000.40 GB)
 Used Dev Size : 1953518592 (931.51 GiB 1000.20 GB)
   Data Offset : 2048 sectors
  Super Offset : 8 sectors
  Unused Space : before=1968 sectors, after=1024 sectors
         State : clean
   Device UUID : 9e749fa9:a0efe791:ea09d2e2:72b99f6c

   Update Time : Fri Aug 28 10:38:32 2015
      Checksum : 615d736 - correct
        Events : 47341

        Layout : near=2
    Chunk Size : 512K

  Device Role : Active device 1
  Array State : AAAA ('A' == active, '.' == missing, 'R' == replacing)
root@debianbase:/#

Tried the following:

fsck.ext4 -N -b /dev/md0
e2fsck 1.42.13 (17-May-2015)
fsck.ext4: Invalid argument while trying to open /dev/md0

The superblock could not be read or does not describe a valid ext2/ext3/ext4
filesystem.  If the device is valid and it really contains an ext2/ext3/ext4
filesystem (and not swap or ufs or something else), then the superblock
is corrupt, and you might try running e2fsck with an alternate superblock:
   e2fsck -b 8193 <device>
or
   e2fsck -b 32768 <device>

root@debianbase:/# dump2fs /dev/md0 | grep superblock
bash: dump2fs: command not found
root@debianbase:/# dumpe2fs /dev/md0 | grep superblock
dumpe2fs 1.42.13 (17-May-2015)
dumpe2fs: Invalid argument while trying to open /dev/md0
Couldn't find valid filesystem superblock.
root@debianbase:/# mdadm -A --force /dev/md0 /dev/sd[b1d1]2
mdadm: cannot open device /dev/sd[b1d1]2: No such file or directory
mdadm: /dev/sd[b1d1]2 has no superblock - assembly aborted
root@debianbase:/# mdadm --assemble /dev/md0 /dev/sdb1 /dev/sdd1
mdadm: /dev/sdb1 is busy - skipping
mdadm: /dev/sdd1 is busy - skipping
root@debianbase:/# mdadm --stop /dev/md0
mdadm: stopped /dev/md0
root@debianbase:/# mdadm --assemble /dev/md0 /dev/sdb1 /dev/sdd1
mdadm: /dev/md0 assembled from 2 drives - need all 4 to start it (use
--run to insist).
root@debianbase:/# mdadm --assemble --run /dev/md0 /dev/sdb1 /dev/sdd1
mdadm: /dev/sdb1 is busy - skipping
mdadm: /dev/sdd1 is busy - skipping


drives were all ext4 when the array was setup.


Is there some way to take the 2 drives and convince mdadm that they
are a raid 0?

How do I get the superblock issue to go away?

TIA

Dee

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: Advice requested
  2015-10-31 11:55 Advice requested o1bigtenor
@ 2015-11-01 20:55 ` Phil Turmel
       [not found]   ` <CAPpdf5_PUpR7GhBHUaQfWb8Q+7FZenxXgFqbaN3f3r0r6NQNDA@mail.gmail.com>
  0 siblings, 1 reply; 22+ messages in thread
From: Phil Turmel @ 2015-11-01 20:55 UTC (permalink / raw)
  To: o1bigtenor, linux-raid

Hi Dee,

On 10/31/2015 07:55 AM, o1bigtenor wrote:
> Greetings
> 
> I had a raid 10 array where one drive threw an error (seemingly in a
> superblock) and since I have not been able to get the array readable.
> It was suggested to me that I remove 2 of the drives leaving the two
> that were striped together.

[trim /]

What happened to the other two drives?  If you still have them, please
supply "mdadm -E" report for them.

Also supply "smartctl -i -A -l scterc /dev/sdX" for each of your drives.

> Is there some way to take the 2 drives and convince mdadm that they
> are a raid 0?

Shouldn't be necessary.  Whatever parts of your array that can be made
to run as originally is the safest way to proceed.  Also, you haven't
provided any information about your original problem that suggests you
received good advice.  (Probably not.)

You attempted a number of commands with invalid bracket syntax, so
received file not found errors that you ignored.  You also attempted
filesystem diagnostics on md0 while it was inactive -- that's why those
failed.

You also attempted some operations after partial successes.  When an
array is partially assembled but not running, before further attempts to
assemble you must stop the array:

mdadm --stop /dev/md0

Before I suggest anything else, I'd like to see the complete reports for
all four drives.

Please don't do anything else.  Your report suggests you are trying
things almost at random in a desperate attempt to salvage your data.
Slow down.  We can help if you don't ruin things in the meantime.

Phil

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: Advice requested
       [not found]   ` <CAPpdf5_PUpR7GhBHUaQfWb8Q+7FZenxXgFqbaN3f3r0r6NQNDA@mail.gmail.com>
@ 2015-11-02 15:41     ` Phil Turmel
       [not found]       ` <CAPpdf59MFX1oVwLC-bmQBaQp9K_9-+h0v64OGMnV1-k=eCzO0w@mail.gmail.com>
  2015-11-03 18:02       ` Phil Turmel
  0 siblings, 2 replies; 22+ messages in thread
From: Phil Turmel @ 2015-11-02 15:41 UTC (permalink / raw)
  To: o1bigtenor, Linux-RAID

Good morning Dee,

{ Added linux-raid back -- convention on kernel.org is reply-to-all }

On 11/02/2015 09:28 AM, o1bigtenor wrote:
> Reply is interleaved.

Thank you!

> On Sun, Nov 1, 2015 at 2:55 PM, Phil Turmel <philip@turmel.org> wrote:

>> What happened to the other two drives?  If you still have them, please
>> supply "mdadm -E" report for them.
> 
> root@debianbase:/# mdadm -E
> mdadm: No devices to examine

That means you didn't tell it what device(s) to examine, so it did
nothing.  Based on your data below, I expect you need to examine
/dev/sdb1, /dev/sdc1, /dev/sde1, and /dev/sdf1.

{ A look at the section on --examine in "man mdadm" would have helped
here.  Please spend some time reviewing "man mdadm" and "man md". }

It seems /dev/sdd1 is missing, so I guess the device names have changed.
Please supply the reports for all four array devices with their current
names (as shown in the smartctl reports).

Paste the result inline in your reply.

>> Also supply "smartctl -i -A -l scterc /dev/sdX" for each of your drives.
> 
> please see attachment

I've converted your libreoffice file to text -- please just post text
in-line in the future, without wrapping.  No attachments, no pastebin.

Some comments inline:

> root@debianbase:/# smartctl -i -A -l scterc /dev/sdb 
> smartctl 6.4 2014-10-07 r4002 [x86_64-linux-4.1.0-2-amd64] (local build) 
> Copyright (C) 2002-14, Bruce Allen, Christian Franke, www.smartmontools.org 
> 
> === START OF INFORMATION SECTION === 
> Model Family:     Seagate Barracuda 7200.12 
> Device Model:     ST31000524AS 
> Serial Number:    9VPE3VX1 
> LU WWN Device Id: 5 000c50 03ee8ad75 
> Firmware Version: JC4B 
> User Capacity:    1,000,204,886,016 bytes [1.00 TB] 
> Sector Size:      512 bytes logical/physical 
> Rotation Rate:    7200 rpm 
> Device is:        In smartctl database [for details use: -P show] 
> ATA Version is:   ATA8-ACS T13/1699-D revision 4 
> SATA Version is:  SATA 3.0, 6.0 Gb/s (current: 3.0 Gb/s) 
> Local Time is:    Mon Nov  2 07:16:28 2015 CST 
> SMART support is: Available - device has SMART capability. 
> SMART support is: Enabled 
> 
> === START OF READ SMART DATA SECTION === 
> SMART Attributes Data Structure revision number: 10 
> Vendor Specific SMART Attributes with Thresholds: 
> ID# ATTRIBUTE_NAME          FLAG     VALUE WORST THRESH TYPE      UPDATED  WHEN_FAILED RAW_VALUE 
>  1 Raw_Read_Error_Rate     0x000f   117   100   006    Pre-fail  Always       -       150964952 
>  3 Spin_Up_Time            0x0003   100   100   000    Pre-fail  Always       -       0 
>  4 Start_Stop_Count        0x0032   100   100   020    Old_age   Always       -       664 
>  5 Reallocated_Sector_Ct   0x0033   100   100   036    Pre-fail  Always       -       0 

This ^^^ is good.

>  7 Seek_Error_Rate         0x000f   066   060   030    Pre-fail  Always       -       3829738 
>  9 Power_On_Hours          0x0032   073   073   000    Old_age   Always       -       24498 
> 10 Spin_Retry_Count        0x0013   100   100   097    Pre-fail  Always       -       0 
> 12 Power_Cycle_Count       0x0032   100   100   020    Old_age   Always       -       646 
> 183 Runtime_Bad_Block       0x0032   100   100   000    Old_age   Always       -       0 
> 184 End-to-End_Error        0x0032   100   100   099    Old_age   Always       -       0 
> 187 Reported_Uncorrect      0x0032   100   100   000    Old_age   Always       -       0 
> 188 Command_Timeout         0x0032   100   100   000    Old_age   Always       -       0 
> 189 High_Fly_Writes         0x003a   100   100   000    Old_age   Always       -       0 
> 190 Airflow_Temperature_Cel 0x0022   069   052   045    Old_age   Always       -       31 (Min/Max 29/31) 
> 194 Temperature_Celsius     0x0022   031   048   000    Old_age   Always       -       31 (0 17 0 0 0) 
> 195 Hardware_ECC_Recovered  0x001a   035   009   000    Old_age   Always       -       150964952 
> 197 Current_Pending_Sector  0x0012   100   100   000    Old_age   Always       -       0 

As is this ^^^

> 198 Offline_Uncorrectable   0x0010   100   100   000    Old_age   Offline      -       0 
> 199 UDMA_CRC_Error_Count    0x003e   200   200   000    Old_age   Always       -       0 
> 240 Head_Flying_Hours       0x0000   100   253   000    Old_age   Offline      -       26106 (151 195 0) 
> 241 Total_LBAs_Written      0x0000   100   253   000    Old_age   Offline      -       3874945427 
> 242 Total_LBAs_Read         0x0000   100   253   000    Old_age   Offline      -       3008180623 
> 
> SCT Error Recovery Control: 
>           Read: Disabled 
>          Write: Disabled 

This ^^^ is *bad*.  You have an older desktop drive that supports ERC,
but since it is a desktop drive, it's turned off by default.  You *need*
a boot script that will turn it on every power cycle.  Some references
on "timeout mismatch" are in the post-script.

> root@debianbase:/# smartctl -i -A -l scterc /dev/sdc 
> smartctl 6.4 2014-10-07 r4002 [x86_64-linux-4.1.0-2-amd64] (local build) 
> Copyright (C) 2002-14, Bruce Allen, Christian Franke, www.smartmontools.org 
> 
> === START OF INFORMATION SECTION === 
> Model Family:     Seagate Barracuda 7200.14 (AF) 
> Device Model:     ST1000DM003-1ER162 
> Serial Number:    Z4Y27SPH 
> LU WWN Device Id: 5 000c50 079702992 
> Firmware Version: CC45 
> User Capacity:    1,000,204,886,016 bytes [1.00 TB] 
> Sector Sizes:     512 bytes logical, 4096 bytes physical 
> Rotation Rate:    7200 rpm 
> Form Factor:      3.5 inches 
> Device is:        In smartctl database [for details use: -P show] 
> ATA Version is:   ACS-2, ACS-3 T13/2161-D revision 3b 
> SATA Version is:  SATA 3.1, 6.0 Gb/s (current: 3.0 Gb/s) 
> Local Time is:    Mon Nov  2 07:16:38 2015 CST 
> SMART support is: Available - device has SMART capability. 
> SMART support is: Enabled 
> 
> === START OF READ SMART DATA SECTION === 
> SMART Attributes Data Structure revision number: 10 
> Vendor Specific SMART Attributes with Thresholds: 
> ID# ATTRIBUTE_NAME          FLAG     VALUE WORST THRESH TYPE      UPDATED  WHEN_FAILED RAW_VALUE 
>  1 Raw_Read_Error_Rate     0x000f   115   099   006    Pre-fail  Always       -       98239568 
>  3 Spin_Up_Time            0x0003   097   097   000    Pre-fail  Always       -       0 
>  4 Start_Stop_Count        0x0032   100   100   020    Old_age   Always       -       89 
>  5 Reallocated_Sector_Ct   0x0033   100   100   010    Pre-fail  Always       -       0 
>  7 Seek_Error_Rate         0x000f   100   253   030    Pre-fail  Always       -       308478 
>  9 Power_On_Hours          0x0032   096   096   000    Old_age   Always       -       4258 
> 10 Spin_Retry_Count        0x0013   100   100   097    Pre-fail  Always       -       0 
> 12 Power_Cycle_Count       0x0032   100   100   020    Old_age   Always       -       89 
> 183 Runtime_Bad_Block       0x0032   100   100   000    Old_age   Always       -       0 
> 184 End-to-End_Error        0x0032   100   100   099    Old_age   Always       -       0 
> 187 Reported_Uncorrect      0x0032   100   100   000    Old_age   Always       -       0 
> 188 Command_Timeout         0x0032   100   100   000    Old_age   Always       -       0 0 0 
> 189 High_Fly_Writes         0x003a   100   100   000    Old_age   Always       -       0 
> 190 Airflow_Temperature_Cel 0x0022   073   053   045    Old_age   Always       -       27 (Min/Max 24/27) 
> 191 G-Sense_Error_Rate      0x0032   100   100   000    Old_age   Always       -       0 
> 192 Power-Off_Retract_Count 0x0032   100   100   000    Old_age   Always       -       20 
> 193 Load_Cycle_Count        0x0032   099   099   000    Old_age   Always       -       3807 
> 194 Temperature_Celsius     0x0022   027   047   000    Old_age   Always       -       27 (0 15 0 0 0) 
> 197 Current_Pending_Sector  0x0012   100   100   000    Old_age   Always       -       0 
> 198 Offline_Uncorrectable   0x0010   100   100   000    Old_age   Offline      -       0 
> 199 UDMA_CRC_Error_Count    0x003e   200   200   000    Old_age   Always       -       0 
> 240 Head_Flying_Hours       0x0000   100   253   000    Old_age   Offline      -       3830h+12m+39.793s 
> 241 Total_LBAs_Written      0x0000   100   253   000    Old_age   Offline      -       2220627944 
> 242 Total_LBAs_Read         0x0000   100   253   000    Old_age   Offline      -       24802170836 
> 
> SCT Error Recovery Control command not supported 

This ^^^ is *really bad*.  You have a modern desktop drive that doesn't
support ERC at all.  You *must* use a boot script to override linux's
low level driver timeout for this device.  Please see the references.

> root@debianbase:/# smartctl -i -A -l scterc /dev/sde 
> smartctl 6.4 2014-10-07 r4002 [x86_64-linux-4.1.0-2-amd64] (local build) 
> Copyright (C) 2002-14, Bruce Allen, Christian Franke, www.smartmontools.org 
> 
> === START OF INFORMATION SECTION === 
> Model Family:     Seagate Barracuda 7200.12 
> Device Model:     ST31000524AS 
> Serial Number:    9VPE44LL 
> LU WWN Device Id: 5 000c50 03eed16df 
> Firmware Version: JC4B 
> User Capacity:    1,000,204,886,016 bytes [1.00 TB] 
> Sector Size:      512 bytes logical/physical 
> Rotation Rate:    7200 rpm 
> Device is:        In smartctl database [for details use: -P show] 
> ATA Version is:   ATA8-ACS T13/1699-D revision 4 
> SATA Version is:  SATA 3.0, 6.0 Gb/s (current: 6.0 Gb/s) 
> Local Time is:    Mon Nov  2 07:16:45 2015 CST 
> SMART support is: Available - device has SMART capability. 
> SMART support is: Enabled 
> 
> === START OF READ SMART DATA SECTION === 
> SMART Attributes Data Structure revision number: 10 
> Vendor Specific SMART Attributes with Thresholds: 
> ID# ATTRIBUTE_NAME          FLAG     VALUE WORST THRESH TYPE      UPDATED  WHEN_FAILED RAW_VALUE 
>  1 Raw_Read_Error_Rate     0x000f   118   100   006    Pre-fail  Always       -       184109834 
>  3 Spin_Up_Time            0x0003   100   100   000    Pre-fail  Always       -       0 
>  4 Start_Stop_Count        0x0032   100   100   020    Old_age   Always       -       663 
>  5 Reallocated_Sector_Ct   0x0033   100   100   036    Pre-fail  Always       -       0 
>  7 Seek_Error_Rate         0x000f   065   060   030    Pre-fail  Always       -       3341907 
>  9 Power_On_Hours          0x0032   073   073   000    Old_age   Always       -       24462 
> 10 Spin_Retry_Count        0x0013   100   100   097    Pre-fail  Always       -       0 
> 12 Power_Cycle_Count       0x0032   100   100   020    Old_age   Always       -       644 
> 183 Runtime_Bad_Block       0x0032   100   100   000    Old_age   Always       -       0 
> 184 End-to-End_Error        0x0032   100   100   099    Old_age   Always       -       0 
> 187 Reported_Uncorrect      0x0032   100   100   000    Old_age   Always       -       0 
> 188 Command_Timeout         0x0032   100   100   000    Old_age   Always       -       0 
> 189 High_Fly_Writes         0x003a   100   100   000    Old_age   Always       -       0 
> 190 Airflow_Temperature_Cel 0x0022   069   047   045    Old_age   Always       -       31 (Min/Max 25/31) 
> 194 Temperature_Celsius     0x0022   031   053   000    Old_age   Always       -       31 (0 18 0 0 0) 
> 195 Hardware_ECC_Recovered  0x001a   026   014   000    Old_age   Always       -       184109834 
> 197 Current_Pending_Sector  0x0012   100   100   000    Old_age   Always       -       0 
> 198 Offline_Uncorrectable   0x0010   100   100   000    Old_age   Offline      -       0 
> 199 UDMA_CRC_Error_Count    0x003e   200   200   000    Old_age   Always       -       0 
> 240 Head_Flying_Hours       0x0000   100   253   000    Old_age   Offline      -       26005 (154 33 0) 
> 241 Total_LBAs_Written      0x0000   100   253   000    Old_age   Offline      -       1062575833 
> 242 Total_LBAs_Read         0x0000   100   253   000    Old_age   Offline      -       3869056902 
> 
> SCT Error Recovery Control: 
>           Read: Disabled 
>          Write: Disabled 

Again.

> root@debianbase:/# smartctl -i -A -l scterc /dev/sdf 
> smartctl 6.4 2014-10-07 r4002 [x86_64-linux-4.1.0-2-amd64] (local build) 
> Copyright (C) 2002-14, Bruce Allen, Christian Franke, www.smartmontools.org 
> 
> === START OF INFORMATION SECTION === 
> Model Family:     Seagate Barracuda 7200.12 
> Device Model:     ST31000524AS 
> Serial Number:    9VPE31PN 
> LU WWN Device Id: 5 000c50 03eeadf56 
> Firmware Version: JC4B 
> User Capacity:    1,000,204,886,016 bytes [1.00 TB] 
> Sector Size:      512 bytes logical/physical 
> Rotation Rate:    7200 rpm 
> Device is:        In smartctl database [for details use: -P show] 
> ATA Version is:   ATA8-ACS T13/1699-D revision 4 
> SATA Version is:  SATA 3.0, 6.0 Gb/s (current: 6.0 Gb/s) 
> Local Time is:    Mon Nov  2 07:17:53 2015 CST 
> SMART support is: Available - device has SMART capability. 
> SMART support is: Enabled 
> 
> === START OF READ SMART DATA SECTION === 
> SMART Attributes Data Structure revision number: 10 
> Vendor Specific SMART Attributes with Thresholds: 
> ID# ATTRIBUTE_NAME          FLAG     VALUE WORST THRESH TYPE      UPDATED  WHEN_FAILED RAW_VALUE 
>  1 Raw_Read_Error_Rate     0x000f   116   099   006    Pre-fail  Always       -       104938837 
>  3 Spin_Up_Time            0x0003   100   100   000    Pre-fail  Always       -       0 
>  4 Start_Stop_Count        0x0032   100   100   020    Old_age   Always       -       594 
>  5 Reallocated_Sector_Ct   0x0033   100   100   036    Pre-fail  Always       -       0 
>  7 Seek_Error_Rate         0x000f   066   060   030    Pre-fail  Always       -       3679723 
>  9 Power_On_Hours          0x0032   073   073   000    Old_age   Always       -       24417 
> 10 Spin_Retry_Count        0x0013   100   100   097    Pre-fail  Always       -       0 
> 12 Power_Cycle_Count       0x0032   100   100   020    Old_age   Always       -       579 
> 183 Runtime_Bad_Block       0x0032   100   100   000    Old_age   Always       -       0 
> 184 End-to-End_Error        0x0032   100   100   099    Old_age   Always       -       0 
> 187 Reported_Uncorrect      0x0032   100   100   000    Old_age   Always       -       0 
> 188 Command_Timeout         0x0032   100   100   000    Old_age   Always       -       0 
> 189 High_Fly_Writes         0x003a   100   100   000    Old_age   Always       -       0 
> 190 Airflow_Temperature_Cel 0x0022   070   040   045    Old_age   Always   In_the_past 30 (19 143 30 29 0) 
> 194 Temperature_Celsius     0x0022   030   060   000    Old_age   Always       -       30 (0 18 0 0 0) 
> 195 Hardware_ECC_Recovered  0x001a   036   013   000    Old_age   Always       -       104938837 
> 197 Current_Pending_Sector  0x0012   100   100   000    Old_age   Always       -       0 
> 198 Offline_Uncorrectable   0x0010   100   100   000    Old_age   Offline      -       0 
> 199 UDMA_CRC_Error_Count    0x003e   200   200   000    Old_age   Always       -       0 
> 240 Head_Flying_Hours       0x0000   100   253   000    Old_age   Offline      -       25870 (135 125 0) 
> 241 Total_LBAs_Written      0x0000   100   253   000    Old_age   Offline      -       366206138 
> 242 Total_LBAs_Read         0x0000   100   253   000    Old_age   Offline      -       37669615 
> 
> SCT Error Recovery Control: 
>           Read: Disabled 
>          Write: Disabled 

And again.

Looking for this is one of the reasons I asked for these reports --
non-raid rated drives producing timeout mismatch failures is a common
problem seen on this list.  I also wanted to know if your drives are
generally healthy -- they are -- and how that might have impacted your
situation.  { I had some of the same Seagate .12 drives -- they didn't
start failing until they had nearly 40k hours. }

Another reason I asked for this is that drive names can change on power
cycles and unplug/replug cycles.  Knowing what device is what (versus
drive serial number) is important.  Please verify drive serial number
versus device name after any power cycle or replug event and let us know
any changes.

> enclosed is also a copy of the kernel log which indicates that a drive error
> had occurred. My thinking is that my ups box (too small but all I could find
> when I bought the system) didn't provide enough power in a severe brown-
> out incident.

> Aug 28 10:39:28 debiantestingbase kernel: [    3.025162] scsi 3:0:0:0: Direct-Access     ATA      ST31000524AS     JC4B PQ: 0 ANSI: 5
> Aug 28 10:39:28 debiantestingbase kernel: [    3.025768] sd 3:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
> Aug 28 10:39:28 debiantestingbase kernel: [    3.026296] sd 3:0:0:0: [sdb] Write Protect is off
> Aug 28 10:39:28 debiantestingbase kernel: [    3.026304] sd 3:0:0:0: [sdb] Mode Sense: 00 3a 00 00
> Aug 28 10:39:28 debiantestingbase kernel: [    3.026484] sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
> Aug 28 10:39:28 debiantestingbase kernel: [    3.028273]  sdb: sdb1
> Aug 28 10:39:28 debiantestingbase kernel: [    3.028698] sd 3:0:0:0: [sdb] Attached SCSI disk
> Aug 28 10:39:28 debiantestingbase kernel: [    3.086532] Switched to clocksource tsc
> Aug 28 10:39:28 debiantestingbase kernel: [    3.168919] md: bind<sdb1>
> Aug 28 10:39:28 debiantestingbase kernel: [    3.342285] ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
> Aug 28 10:39:28 debiantestingbase kernel: [    3.343153] ata5.00: ATA-9: ST1000DM003-1ER162, CC45, max UDMA/133
> Aug 28 10:39:28 debiantestingbase kernel: [    3.343158] ata5.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
> Aug 28 10:39:28 debiantestingbase kernel: [    3.344067] ata5.00: configured for UDMA/133
> Aug 28 10:39:28 debiantestingbase kernel: [    3.344255] scsi 4:0:0:0: Direct-Access     ATA      ST1000DM003-1ER1 CC45 PQ: 0 ANSI: 5
> Aug 28 10:39:28 debiantestingbase kernel: [    3.344627] sd 4:0:0:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
> Aug 28 10:39:28 debiantestingbase kernel: [    3.344631] sd 4:0:0:0: [sdc] 4096-byte physical blocks
> Aug 28 10:39:28 debiantestingbase kernel: [    3.344823] sd 4:0:0:0: [sdc] Write Protect is off
> Aug 28 10:39:28 debiantestingbase kernel: [    3.344831] sd 4:0:0:0: [sdc] Mode Sense: 00 3a 00 00
> Aug 28 10:39:28 debiantestingbase kernel: [    3.344946] sd 4:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
> Aug 28 10:39:28 debiantestingbase kernel: [    3.411364]  sdc: sdc1
> Aug 28 10:39:28 debiantestingbase kernel: [    3.412317] sd 4:0:0:0: [sdc] Attached SCSI disk
> Aug 28 10:39:28 debiantestingbase kernel: [    3.501080] md: bind<sdc1>
> Aug 28 10:39:28 debiantestingbase kernel: [    3.662509] ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
> Aug 28 10:39:28 debiantestingbase kernel: [    3.674767] ata6.00: ATA-8: Corsair Force 3 SSD, 1.3.3, max UDMA/133
> Aug 28 10:39:28 debiantestingbase kernel: [    3.674772] ata6.00: 468862128 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
> Aug 28 10:39:28 debiantestingbase kernel: [    3.684647] ata6.00: configured for UDMA/133
> Aug 28 10:39:28 debiantestingbase kernel: [    3.684933] scsi 5:0:0:0: Direct-Access     ATA      Corsair Force 3  3    PQ: 0 ANSI: 5
> Aug 28 10:39:28 debiantestingbase kernel: [    3.685504] sd 5:0:0:0: [sdd] 468862128 512-byte logical blocks: (240 GB/223 GiB)
> Aug 28 10:39:28 debiantestingbase kernel: [    3.685975] sd 5:0:0:0: [sdd] Write Protect is off
> Aug 28 10:39:28 debiantestingbase kernel: [    3.685983] sd 5:0:0:0: [sdd] Mode Sense: 00 3a 00 00
> Aug 28 10:39:28 debiantestingbase kernel: [    3.686186] sd 5:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
> Aug 28 10:39:28 debiantestingbase kernel: [    3.688051]  sdd: sdd1 sdd4 < sdd5 sdd6 sdd7 sdd8 sdd9 sdd10 >
> Aug 28 10:39:28 debiantestingbase kernel: [    3.689305] sd 5:0:0:0: [sdd] Attached SCSI disk
> Aug 28 10:39:28 debiantestingbase kernel: [    4.002712] ata8: SATA link down (SStatus 0 SControl 300)
> Aug 28 10:39:28 debiantestingbase kernel: [    4.003107] scsi 8:0:0:0: Direct-Access     ATA      ST31000524AS     JC4B PQ: 0 ANSI: 5
> Aug 28 10:39:28 debiantestingbase kernel: [    4.003597] sd 8:0:0:0: [sde] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
> Aug 28 10:39:28 debiantestingbase kernel: [    4.003843] scsi 9:0:0:0: Direct-Access     ATA      ST31000524AS     JC4B PQ: 0 ANSI: 5
> Aug 28 10:39:28 debiantestingbase kernel: [    4.003975] sd 8:0:0:0: [sde] Write Protect is off
> Aug 28 10:39:28 debiantestingbase kernel: [    4.003980] sd 8:0:0:0: [sde] Mode Sense: 00 3a 00 00
> Aug 28 10:39:28 debiantestingbase kernel: [    4.004090] sd 8:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
> Aug 28 10:39:28 debiantestingbase kernel: [    4.004478] sd 9:0:0:0: [sdf] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
> Aug 28 10:39:28 debiantestingbase kernel: [    4.004645] sd 9:0:0:0: [sdf] Write Protect is off
> Aug 28 10:39:28 debiantestingbase kernel: [    4.004650] sd 9:0:0:0: [sdf] Mode Sense: 00 3a 00 00
> Aug 28 10:39:28 debiantestingbase kernel: [    4.004737] sd 9:0:0:0: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
> Aug 28 10:39:28 debiantestingbase kernel: [    4.004778] scsi 15:0:0:0: Processor         Marvell  91xx Config      1.01 PQ: 0 ANSI: 5
> Aug 28 10:39:28 debiantestingbase kernel: [    4.006375]  sdf: sdf1
> Aug 28 10:39:28 debiantestingbase kernel: [    4.006967] sd 9:0:0:0: [sdf] Attached SCSI disk
> Aug 28 10:39:28 debiantestingbase kernel: [    4.008855]  sde: sde1
> Aug 28 10:39:28 debiantestingbase kernel: [    4.009704] sd 8:0:0:0: [sde] Attached SCSI disk
> Aug 28 10:39:28 debiantestingbase kernel: [    4.018710] ata16.00: exception Emask 0x1 SAct 0x0 SErr 0x0 action 0x0
> Aug 28 10:39:28 debiantestingbase kernel: [    4.018753] ata16.00: irq_stat 0x40000001
> Aug 28 10:39:28 debiantestingbase kernel: [    4.018783] ata16.00: cmd a0/01:00:00:00:01/00:00:00:00:
> Aug 28 10:39:28 debiantestingbase kernel: [    4.018783]          Inquiry 12 01 00 00 ff 00res 50/00:00:af:6d:70/00:00:74:00:
> Aug 28 10:39:28 debiantestingbase kernel: [    4.018868] ata16.00: status: { DRDY }

This ^^^ isn't really an error.

> Aug 28 10:39:28 debiantestingbase kernel: [    4.125325] random: nonblocking pool is initialized
> Aug 28 10:39:28 debiantestingbase kernel: [    4.125530] md: bind<sde1>
> Aug 28 10:39:28 debiantestingbase kernel: [    4.142140] md: bind<sdf1>
> Aug 28 10:39:28 debiantestingbase kernel: [    4.144984] md: raid10 personality registered for level 10
> Aug 28 10:39:28 debiantestingbase kernel: [    4.145397] md/raid10:md0: active with 4 out of 4 devices

If it was, you wouldn't get this ^^^ success.

> Aug 28 10:39:28 debiantestingbase kernel: [    4.145440] md0: detected capacity change from 0 to 2000403038208
> Aug 28 10:39:28 debiantestingbase kernel: [    4.208978]  md0:
> Aug 28 10:39:28 debiantestingbase kernel: [    4.479305] device-mapper: uevent: version 1.0.3
> Aug 28 10:39:28 debiantestingbase kernel: [    4.479536] device-mapper: ioctl: 4.30.0-ioctl (2014-12-22) initialised: dm-devel@redhat.com

This section of your syslog is too far back in time -- before the failure.

[trim /]

> Was following directions from one person on linux-raid and when he stopped
> responding turned to someone who is somewhat connected with redhat and
> hard drive stuff. There seemed to be a consensus that I needed to use low
> level tools in an attempt to recover files, if I could. As there are about 200k
> I wasn't looking forward to repairing things ;-(  !

A link to the linux-raid archive of the prior discussion might help.
And you might still need low level tools -- we are still trying to get
your array started.  Then we can look at the next layer on top of that.
 Based on your prior mails, /dev/md0 was formatted as ext4, yes?

> Thanking you for your assistance.

You're welcome.

Phil

[1] http://marc.info/?l=linux-raid&m=139050322510249&w=2
[2] http://marc.info/?l=linux-raid&m=135863964624202&w=2
[3] http://marc.info/?l=linux-raid&m=135811522817345&w=1
[4] http://marc.info/?l=linux-raid&m=133761065622164&w=2
[5] http://marc.info/?l=linux-raid&m=132477199207506
[6] http://marc.info/?l=linux-raid&m=133665797115876&w=2
[7] http://marc.info/?l=linux-raid&m=142487508806844&w=3
[8] http://marc.info/?l=linux-raid&m=144535576302583&w=2


^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: Advice requested
       [not found]         ` <5637BCE4.8000006@turmel.org>
@ 2015-11-02 23:49           ` o1bigtenor
  2015-11-03  0:11             ` Phil Turmel
  0 siblings, 1 reply; 22+ messages in thread
From: o1bigtenor @ 2015-11-02 23:49 UTC (permalink / raw)
  To: Phil Turmel; +Cc: Linux-RAID

Rund again

On Mon, Nov 2, 2015 at 1:43 PM, Phil Turmel <philip@turmel.org> wrote:
> Hi Dee,
>
> On 11/02/2015 01:21 PM, o1bigtenor wrote:
>> On Mon, Nov 2, 2015 at 9:41 AM, Phil Turmel <philip@turmel.org> wrote:
>
>>> That means you didn't tell it what device(s) to examine, so it did
>>> nothing.  Based on your data below, I expect you need to examine
>>> /dev/sdb1, /dev/sdc1, /dev/sde1, and /dev/sdf1.
>>
>> root@debianbase:/# mdadm -E /dev/sdb
>> /dev/sdb:
>>   MBR Magic : aa55
>> Partition[0] :   1953521664 sectors at         2048 (type fd)
>> root@debianbase:/# mdadm -E /dev/sdc
>> /dev/sdc:
>>   MBR Magic : aa55
>> Partition[0] :   1953525167 sectors at            1 (type ee)
>> root@debianbase:/# mdadm -E /dev/sde
>> /dev/sde:
>>   MBR Magic : aa55
>> Partition[0] :   1953521664 sectors at         2048 (type fd)
>> root@debianbase:/# mdadm -E /dev/sdf
>> /dev/sdf:
>>   MBR Magic : aa55
>> Partition[0] :   1953521664 sectors at         2048 (type fd)
>
> :-) You left off the partition numbers...  Please try again.

mdadm -E /dev/sdb1
/dev/sdb1:
         Magic : a92b4efc
       Version : 1.2
   Feature Map : 0x0
    Array UUID : 79baaa2f:0aa2b9fa:18e2ea6b:6e2846b3
          Name : debianbase:0  (local to host debianbase)
 Creation Time : Mon Mar  5 08:26:28 2012
    Raid Level : raid10
  Raid Devices : 4

Avail Dev Size : 1953519616 (931.51 GiB 1000.20 GB)
    Array Size : 1953518592 (1863.02 GiB 2000.40 GB)
 Used Dev Size : 1953518592 (931.51 GiB 1000.20 GB)
   Data Offset : 2048 sectors
  Super Offset : 8 sectors
  Unused Space : before=1968 sectors, after=1024 sectors
         State : clean
   Device UUID : a80c76db:eaea61af:bcb9cbbb:ac99e467

   Update Time : Fri Aug 28 10:38:32 2015
      Checksum : 29a4fa98 - correct
        Events : 47341

        Layout : near=2
    Chunk Size : 512K

  Device Role : Active device 3
  Array State : AAAA ('A' == active, '.' == missing, 'R' == replacing)
root@debianbase:/# mdadm -E /dev/sdc1
mdadm: No md superblock detected on /dev/sdc1.
root@debianbase:/# mdadm -E /dev/sdd1
mdadm: No md superblock detected on /dev/sdd1.
root@debianbase:/# mdadm -E /dev/sdf1
/dev/sdf1:
         Magic : a92b4efc
       Version : 1.2
   Feature Map : 0x0
    Array UUID : 79baaa2f:0aa2b9fa:18e2ea6b:6e2846b3
          Name : debianbase:0  (local to host debianbase)
 Creation Time : Mon Mar  5 08:26:28 2012
    Raid Level : raid10
  Raid Devices : 4

Avail Dev Size : 1953519616 (931.51 GiB 1000.20 GB)
    Array Size : 1953518592 (1863.02 GiB 2000.40 GB)
 Used Dev Size : 1953518592 (931.51 GiB 1000.20 GB)
   Data Offset : 2048 sectors
  Super Offset : 8 sectors
  Unused Space : before=1968 sectors, after=1024 sectors
         State : clean
   Device UUID : 9e749fa9:a0efe791:ea09d2e2:72b99f6c

   Update Time : Fri Aug 28 10:38:32 2015
      Checksum : 615d736 - correct
        Events : 47341

        Layout : near=2
    Chunk Size : 512K

  Device Role : Active device 1
  Array State : AAAA ('A' == active, '.' == missing, 'R' == replacing)



>
>> (I had some other system issues about 5 weeks ago an damaged the
>> superblock from sdc.)
>
> Hmmm.  That makes me wonder if the correct superblock is available, but
> only if the partition is relocated back to sector 2048.  We may revisit
> this.
>
>>> { A look at the section on --examine in "man mdadm" would have helped
>>> here.  Please spend some time reviewing "man mdadm" and "man md". }
>
>> I have found that man pages are great resources when one does know or has
>> used the command, when you haven't - - - well there are most often NO examples,
>> either of what to do or what happens when something is wrong. They are most
>> often written by those intimately familiar with the area (never have a
>> problem with
>> anything) and so I don't bother looking at them - - - they just aren't useful.
>> (The whole RTFM thing is one of the biggest reasons that I find *nix very
>> frustrating - - - I have spent hours reading and re-reading a man page
>> and sometimes
>> four or five pages talking about it and its still not clear exactly
>> how to write the
>> command or even better if the result is not positive there is absolutely no idea
>> given as to how to troubleshoot things - - - sorry its a rant but you
>> did tell me to
>> read it and - - - - .)
>
> You may have to conquer this to succeed.  While man pages certainly
> aren't perfect, they are the most complete documentation available on
> any linux system.  Most people in your situation struggle with the
> 'synopsis' section, and how to decipher the brackets and braces and
> such.  Google 'reading man pages' and sample the results for a wide
> overview.  Save the deep dive on 'Backus-Naur' for last. :-)

Sounds like you like the present layout. If there were examples included I would
think that man pages are useful. As they are at present - - - well I
have an easier
time figuring out ancient Hebrew - - - at least there are tools that work.
Brackets and braces aren't the issue - - - good technical writing is. Others may
find that man pages are 'complete' - - - I would disagree. (I have worked
quite a few years in technical fields and find that computer documentation is
some of the most difficult to follow - - - I've even had to decipher
English written
in China - - - found that easier as they followed a standardized layout.)
>
>>> It seems /dev/sdd1 is missing, so I guess the device names have changed.
>>> Please supply the reports for all four array devices with their current
>>> names (as shown in the smartctl reports).
>>
>> sda is my current 'operating system' disc - - - or where I want my operating
>> system to reside. I wanted all my information to be on the raid array.
>>
>> sdd is a ssd drive that is presently not used and was used previously as
>> an 'operating system' disc.
>>
>> Therefore neither of these really has anything to do with the raid array.
>
> Well, your initial report referred to sdb1 and sdd1, so I clearly had to
> ask.

With two drives removed from access then sdb1 and sdd1 were the useful drives.
Now with all drives plugged in we are still looking at sdb1 and sdd1 as being
the most likely accessible drives.
>
>>> Looking for this is one of the reasons I asked for these reports --
>>> non-raid rated drives producing timeout mismatch failures is a common
>>> problem seen on this list.  I also wanted to know if your drives are
>>> generally healthy -- they are -- and how that might have impacted your
>>> situation.  { I had some of the same Seagate .12 drives -- they didn't
>>> start failing until they had nearly 40k hours. }
>>
>> When these drives were bought, late January 2012 there was no differentiation
>> between drives based upon intended usage. That happened some time in
>> about 2013 IIRC.
>
> Drive manufacturers have always pitched their enterprise drives for raid
> duty, but only started sabotaging raid support in desktop drives in the
> 2011 time frame (as shown in the email archives I referenced).
>
> But even before they started cutting ERC support, you had to activate it
> manually to be safe in a raid array.  So no, desktop drives have never
> been safe to use in MD raid "out of the box".  And still are not.
>
>>> Another reason I asked for this is that drive names can change on power
>>> cycles and unplug/replug cycles.  Knowing what device is what (versus
>>> drive serial number) is important.  Please verify drive serial number
>>> versus device name after any power cycle or replug event and let us know
>>> any changes.
>>
>> There have been no real changes in quite a long time.
>> The only UUID change was between before Aug 28th of this and after when the
>> UUID of the array was changed. It was not finding the array upon a reboot (used
>> to improve web speeds changed by Firefox's software) that informed me that I
>> had an issue.
>
> The device you originally referred to as /dev/sdd is now apparently
> something else.  So yes, you are subject to device name changes.

Yes something changed from this morning to now. The way it is now makes more
sense but I didn't change anything.
>
> A UUID change only happens when an array is re-created.  If you've lost
> the original superblocks, recovery may not be possible.  Losing access
> at boot time is often a problem with updates to an initramfs, not to any
> actual problem with an array.
>
>>> This ^^^ isn't really an error.
>> If it isn't an error this was the only place where there were any
>> listed changes to the array and/or its discs.
>>
>> Subsequently I was unable to mount the array nor did it mount automatically as
>> it had for the previous time (at least 4 months).
>>>
>>>> Aug 28 10:39:28 debiantestingbase kernel: [    4.125325] random: nonblocking pool is initialized
>>>> Aug 28 10:39:28 debiantestingbase kernel: [    4.125530] md: bind<sde1>
>>>> Aug 28 10:39:28 debiantestingbase kernel: [    4.142140] md: bind<sdf1>
>>>> Aug 28 10:39:28 debiantestingbase kernel: [    4.144984] md: raid10 personality registered for level 10
>>>> Aug 28 10:39:28 debiantestingbase kernel: [    4.145397] md/raid10:md0: active with 4 out of 4 devices
>>>
>>> If it was, you wouldn't get this ^^^ success.
>> May have been a success but the UUID was changed and I could find no way
>> to access the array (still can't for that matter!).
>
> Which suggests that the new UUID array is not pointing at the data you
> need.  If the other two drives still have the old superblocks, it might
> still be possible.
>
>>> This section of your syslog is too far back in time -- before the failure.
>> This section is AT the time of failure.
>> Md0 has not been accessible subsequently!
>
> Then all four drives have new superblocks due to some form of array
> creation that has blown away the others.  Since the array won't mount,
> you had either incorrect array creation parameters and/or some operation
> stomping on the contents.
>
>>>
>>> [trim /]
>>>
>>>> Was following directions from one person on linux-raid and when he stopped
>>>> responding turned to someone who is somewhat connected with redhat and
>>>> hard drive stuff. There seemed to be a consensus that I needed to use low
>>>> level tools in an attempt to recover files, if I could. As there are about 200k
>>>> I wasn't looking forward to repairing things ;-(  !
>>>
>>> A link to the linux-raid archive of the prior discussion might help.
>>> And you might still need low level tools -- we are still trying to get
>>> your array started.  Then we can look at the next layer on top of that.
>>>  Based on your prior mails, /dev/md0 was formatted as ext4, yes?
>>
>> Yes.
>
> Based on your comments below, NO.
>
>> o1bigtenor <o1bigtenor@gmail.com>
>> Sep 3
>> Reply
>> to linux-raid
>> Greetings
>>
>> Had updated a system to Debian 8 which also had a Raid 10 array that
>> has been in use for about 3 1/2 years. (Setup raid under Debian 6 then
>> ran it mostly under Debian 7 mounting the array each time after
>> booting using the command
>>
>> #mount /dev/dm-o /home/myspace/RAID
>
> This indicates that you had a device mapper layer on top of the raid
> array, with the filesystem in that layer.
>
> I trimmed the rest of this mail in favor of the archive link:
> http://marc.info/?l=linux-raid&m=144131963804698&w=2
>
snip
>> # mdadm -D
>> mdadm: No devices given.
>>
>>
>>
>>> member
>>> details (mdadm -E)
>>
>> # mdadm -E
>> mdadm: No devices to examine
>>
>>
>>> and a summary of what happened.
>>> Include any excerpts from your dmesg and/or syslogs that look like they
>>> might be relevant.
>>
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.025162] scsi 3:0:0:0:
>> Direct-Access     ATA      ST31000524AS     JC4B PQ: 0 ANSI: 5
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.025768] sd 3:0:0:0:
>> [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.026296] sd 3:0:0:0:
>> [sdb] Write Protect is off
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.026304] sd 3:0:0:0:
>> [sdb] Mode Sense: 00 3a 00 00
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.026484] sd 3:0:0:0:
>> [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO
>> or FUA
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.028273]  sdb: sdb1
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.028698] sd 3:0:0:0:
>> [sdb] Attached SCSI disk
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.086532] Switched to
>> clocksource tsc
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.168919] md: bind<sdb1>
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.342285] ata5: SATA
>> link up 3.0 Gbps (SStatus 123 SControl 300)
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.343153] ata5.00:
>> ATA-9: ST1000DM003-1ER162, CC45, max UDMA/133
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.343158] ata5.00:
>> 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.344067] ata5.00:
>> configured for UDMA/133
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.344255] scsi 4:0:0:0:
>> Direct-Access     ATA      ST1000DM003-1ER1 CC45 PQ: 0 ANSI: 5
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.344627] sd 4:0:0:0:
>> [sdc] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.344631] sd 4:0:0:0:
>> [sdc] 4096-byte physical blocks
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.344823] sd 4:0:0:0:
>> [sdc] Write Protect is off
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.344831] sd 4:0:0:0:
>> [sdc] Mode Sense: 00 3a 00 00
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.344946] sd 4:0:0:0:
>> [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO
>> or FUA
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.411364]  sdc: sdc1
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.412317] sd 4:0:0:0:
>> [sdc] Attached SCSI disk
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.501080] md: bind<sdc1>
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.662509] ata6: SATA
>> link up 3.0 Gbps (SStatus 123 SControl 300)
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.674767] ata6.00:
>> ATA-8: Corsair Force 3 SSD, 1.3.3, max UDMA/133
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.674772] ata6.00:
>> 468862128 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.684647] ata6.00:
>> configured for UDMA/133
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.684933] scsi 5:0:0:0:
>> Direct-Access     ATA      Corsair Force 3  3    PQ: 0 ANSI: 5
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.685504] sd 5:0:0:0:
>> [sdd] 468862128 512-byte logical blocks: (240 GB/223 GiB)
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.685975] sd 5:0:0:0:
>> [sdd] Write Protect is off
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.685983] sd 5:0:0:0:
>> [sdd] Mode Sense: 00 3a 00 00
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.686186] sd 5:0:0:0:
>> [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO
>> or FUA
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.688051]  sdd: sdd1
>> sdd4 < sdd5 sdd6 sdd7 sdd8 sdd9 sdd10 >
>> Aug 28 10:39:28 debiantestingbase kernel: [    3.689305] sd 5:0:0:0:
>> [sdd] Attached SCSI disk
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.002712] ata8: SATA
>> link down (SStatus 0 SControl 300)
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.003107] scsi 8:0:0:0:
>> Direct-Access     ATA      ST31000524AS     JC4B PQ: 0 ANSI: 5
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.003597] sd 8:0:0:0:
>> [sde] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.003843] scsi 9:0:0:0:
>> Direct-Access     ATA      ST31000524AS     JC4B PQ: 0 ANSI: 5
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.003975] sd 8:0:0:0:
>> [sde] Write Protect is off
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.003980] sd 8:0:0:0:
>> [sde] Mode Sense: 00 3a 00 00
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.004090] sd 8:0:0:0:
>> [sde] Write cache: enabled, read cache: enabled, doesn't support DPO
>> or FUA
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.004478] sd 9:0:0:0:
>> [sdf] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.004645] sd 9:0:0:0:
>> [sdf] Write Protect is off
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.004650] sd 9:0:0:0:
>> [sdf] Mode Sense: 00 3a 00 00
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.004737] sd 9:0:0:0:
>> [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO
>> or FUA
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.004778] scsi
>> 15:0:0:0: Processor         Marvell  91xx Config      1.01 PQ: 0 ANSI:
>> 5
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.006375]  sdf: sdf1
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.006967] sd 9:0:0:0:
>> [sdf] Attached SCSI disk
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.008855]  sde: sde1
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.009704] sd 8:0:0:0:
>> [sde] Attached SCSI disk
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.018710] ata16.00:
>> exception Emask 0x1 SAct 0x0 SErr 0x0 action 0x0
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.018753] ata16.00:
>> irq_stat 0x40000001
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.018783] ata16.00: cmd
>> a0/01:00:00:00:01/00:00:00:00:00/a0 tag 1 dma 16640 in
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.018783]
>> Inquiry 12 01 00 00 ff 00res 50/00:00:af:6d:70/00:00:74:00:00/e0 Emask
>> 0x1 (device error)
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.018868] ata16.00:
>> status: { DRDY }
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.125325] random:
>> nonblocking pool is initialized
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.125530] md: bind<sde1>
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.142140] md: bind<sdf1>
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.144984] md: raid10
>> personality registered for level 10
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.145397]
>> md/raid10:md0: active with 4 out of 4 devices
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.145440] md0: detected
>> capacity change from 0 to 2000403038208
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.208978]  md0:
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.479305]
>> device-mapper: uevent: version 1.0.3
>> Aug 28 10:39:28 debiantestingbase kernel: [    4.479536]
>> device-mapper: ioctl: 4.30.0-ioctl (2014-12-22) initialised:
>> dm-devel@redhat.com
snip
>>
>
> Lots of useful information, but no-one tried to drill deeper in /dev/dm0.
>
> Everything points to there being another missing layer between the raid
> device (md0) and your ext4 filesystem, that previously available as
> /dev/dm-0.  We need to decipher the initial contents of /dev/md0 to find
> a lost signature.
>
> Please supply the updated mdadm -E reports as I asked.  Trim all of the
> old mails from your reply, too.  Makes for very difficult reading.

Sorry - - - you did ask for all of what had gone on.
>
> When we get your array assembled, we'll use hexdump to poke around.

Over to you

Dee

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: Advice requested
  2015-11-02 23:49           ` o1bigtenor
@ 2015-11-03  0:11             ` Phil Turmel
  2015-11-03  0:44               ` o1bigtenor
  0 siblings, 1 reply; 22+ messages in thread
From: Phil Turmel @ 2015-11-03  0:11 UTC (permalink / raw)
  To: o1bigtenor; +Cc: Linux-RAID

Hi Dee,

On 11/02/2015 06:49 PM, o1bigtenor wrote:

> mdadm -E /dev/sdb1
> /dev/sdb1:
>          Magic : a92b4efc
>        Version : 1.2
>    Feature Map : 0x0
>     Array UUID : 79baaa2f:0aa2b9fa:18e2ea6b:6e2846b3
>           Name : debianbase:0  (local to host debianbase)
>  Creation Time : Mon Mar  5 08:26:28 2012
>     Raid Level : raid10
>   Raid Devices : 4
> 
> Avail Dev Size : 1953519616 (931.51 GiB 1000.20 GB)
>     Array Size : 1953518592 (1863.02 GiB 2000.40 GB)
>  Used Dev Size : 1953518592 (931.51 GiB 1000.20 GB)
>    Data Offset : 2048 sectors
>   Super Offset : 8 sectors
>   Unused Space : before=1968 sectors, after=1024 sectors
>          State : clean
>    Device UUID : a80c76db:eaea61af:bcb9cbbb:ac99e467
> 
>    Update Time : Fri Aug 28 10:38:32 2015
>       Checksum : 29a4fa98 - correct
>         Events : 47341
> 
>         Layout : near=2
>     Chunk Size : 512K
> 
>   Device Role : Active device 3
>   Array State : AAAA ('A' == active, '.' == missing, 'R' == replacing)

Useful disk.

> root@debianbase:/# mdadm -E /dev/sdc1
> mdadm: No md superblock detected on /dev/sdc1.
> root@debianbase:/# mdadm -E /dev/sdd1
> mdadm: No md superblock detected on /dev/sdd1.

Not useful disks.

> root@debianbase:/# mdadm -E /dev/sdf1
> /dev/sdf1:
>          Magic : a92b4efc
>        Version : 1.2
>    Feature Map : 0x0
>     Array UUID : 79baaa2f:0aa2b9fa:18e2ea6b:6e2846b3
>           Name : debianbase:0  (local to host debianbase)
>  Creation Time : Mon Mar  5 08:26:28 2012
>     Raid Level : raid10
>   Raid Devices : 4
> 
> Avail Dev Size : 1953519616 (931.51 GiB 1000.20 GB)
>     Array Size : 1953518592 (1863.02 GiB 2000.40 GB)
>  Used Dev Size : 1953518592 (931.51 GiB 1000.20 GB)
>    Data Offset : 2048 sectors
>   Super Offset : 8 sectors
>   Unused Space : before=1968 sectors, after=1024 sectors
>          State : clean
>    Device UUID : 9e749fa9:a0efe791:ea09d2e2:72b99f6c
> 
>    Update Time : Fri Aug 28 10:38:32 2015
>       Checksum : 615d736 - correct
>         Events : 47341
> 
>         Layout : near=2
>     Chunk Size : 512K
> 
>   Device Role : Active device 1
>   Array State : AAAA ('A' == active, '.' == missing, 'R' == replacing)

Yay! Useful disk.  And with a device role that should make a functional
degraded array with /dev/sdb1

>> You may have to conquer this to succeed.  While man pages certainly
>> aren't perfect, they are the most complete documentation available on
>> any linux system.  Most people in your situation struggle with the
>> 'synopsis' section, and how to decipher the brackets and braces and
>> such.  Google 'reading man pages' and sample the results for a wide
>> overview.  Save the deep dive on 'Backus-Naur' for last. :-)
> 
> Sounds like you like the present layout.

Not really.  That doesn't change my advice.

[trim /]

> With two drives removed from access then sdb1 and sdd1 were the useful drives.
> Now with all drives plugged in we are still looking at sdb1 and sdd1 as being
> the most likely accessible drives.

/dev/sdb1 and /dev/sdf1 at the moment.

> Yes something changed from this morning to now. The way it is now makes more
> sense but I didn't change anything.

Rebooting with or without a USB device or any other missing disk is all
it takes.

>> Please supply the updated mdadm -E reports as I asked.  Trim all of the
>> old mails from your reply, too.  Makes for very difficult reading.
> 
> Sorry - - - you did ask for all of what had gone on.

Oh, no.  I wasn't complaining that you supplied them.  Just reminding
you to trim them.  I don't want to annoy the list managers any more than
necessary. :-)

>> When we get your array assembled, we'll use hexdump to poke around.

Ok.  Make sure no array is active in /proc/mdstat.  For any there, do:

mdadm --stop /dev/mdX

Force assemble the array in degraded mode, verbosely:

mdadm -Avf /dev/md0 /dev/sdb1 /dev/sdf1

If the above fails, cut and paste the entire report in your reply.

If it succeeds, paste the output of the following in your reply:

dd if=/dev/md0 bs=1M count=16 |hexdump -C |head -n 1000

That'll be the first 1000 lines of a hex report of the beginning of your
array.

Phil

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: Advice requested
  2015-11-03  0:11             ` Phil Turmel
@ 2015-11-03  0:44               ` o1bigtenor
  2015-11-03  0:57                 ` Phil Turmel
  0 siblings, 1 reply; 22+ messages in thread
From: o1bigtenor @ 2015-11-03  0:44 UTC (permalink / raw)
  To: Phil Turmel; +Cc: Linux-RAID

On Mon, Nov 2, 2015 at 6:11 PM, Phil Turmel <philip@turmel.org> wrote:
> Hi Dee,
>
> On 11/02/2015 06:49 PM, o1bigtenor wrote:
>
>> mdadm -E /dev/sdb1
>> /dev/sdb1:
>>          Magic : a92b4efc
>>        Version : 1.2
>>    Feature Map : 0x0
>>     Array UUID : 79baaa2f:0aa2b9fa:18e2ea6b:6e2846b3
>>           Name : debianbase:0  (local to host debianbase)
>>  Creation Time : Mon Mar  5 08:26:28 2012
>>     Raid Level : raid10
>>   Raid Devices : 4
>>
>> Avail Dev Size : 1953519616 (931.51 GiB 1000.20 GB)
>>     Array Size : 1953518592 (1863.02 GiB 2000.40 GB)
>>  Used Dev Size : 1953518592 (931.51 GiB 1000.20 GB)
>>    Data Offset : 2048 sectors
>>   Super Offset : 8 sectors
>>   Unused Space : before=1968 sectors, after=1024 sectors
>>          State : clean
>>    Device UUID : a80c76db:eaea61af:bcb9cbbb:ac99e467
>>
>>    Update Time : Fri Aug 28 10:38:32 2015
>>       Checksum : 29a4fa98 - correct
>>         Events : 47341
>>
>>         Layout : near=2
>>     Chunk Size : 512K
>>
>>   Device Role : Active device 3
>>   Array State : AAAA ('A' == active, '.' == missing, 'R' == replacing)
>
> Useful disk.
>
>> root@debianbase:/# mdadm -E /dev/sdc1
>> mdadm: No md superblock detected on /dev/sdc1.
>> root@debianbase:/# mdadm -E /dev/sdd1
>> mdadm: No md superblock detected on /dev/sdd1.
>
> Not useful disks.
>
>> root@debianbase:/# mdadm -E /dev/sdf1
>> /dev/sdf1:
>>          Magic : a92b4efc
>>        Version : 1.2
>>    Feature Map : 0x0
>>     Array UUID : 79baaa2f:0aa2b9fa:18e2ea6b:6e2846b3
>>           Name : debianbase:0  (local to host debianbase)
>>  Creation Time : Mon Mar  5 08:26:28 2012
>>     Raid Level : raid10
>>   Raid Devices : 4
>>
>> Avail Dev Size : 1953519616 (931.51 GiB 1000.20 GB)
>>     Array Size : 1953518592 (1863.02 GiB 2000.40 GB)
>>  Used Dev Size : 1953518592 (931.51 GiB 1000.20 GB)
>>    Data Offset : 2048 sectors
>>   Super Offset : 8 sectors
>>   Unused Space : before=1968 sectors, after=1024 sectors
>>          State : clean
>>    Device UUID : 9e749fa9:a0efe791:ea09d2e2:72b99f6c
>>
>>    Update Time : Fri Aug 28 10:38:32 2015
>>       Checksum : 615d736 - correct
>>         Events : 47341
>>
>>         Layout : near=2
>>     Chunk Size : 512K
>>
>>   Device Role : Active device 1
>>   Array State : AAAA ('A' == active, '.' == missing, 'R' == replacing)
>
> Yay! Useful disk.  And with a device role that should make a functional
> degraded array with /dev/sdb1
>
>>> You may have to conquer this to succeed.  While man pages certainly
>>> aren't perfect, they are the most complete documentation available on
>>> any linux system.  Most people in your situation struggle with the
>>> 'synopsis' section, and how to decipher the brackets and braces and
>>> such.  Google 'reading man pages' and sample the results for a wide
>>> overview.  Save the deep dive on 'Backus-Naur' for last. :-)
>>
>> Sounds like you like the present layout.
>
> Not really.  That doesn't change my advice.
>
> [trim /]
>
>> With two drives removed from access then sdb1 and sdd1 were the useful drives.
>> Now with all drives plugged in we are still looking at sdb1 and sdd1 as being
>> the most likely accessible drives.
>
> /dev/sdb1 and /dev/sdf1 at the moment.
>
>> Yes something changed from this morning to now. The way it is now makes more
>> sense but I didn't change anything.
>
> Rebooting with or without a USB device or any other missing disk is all
> it takes.

No reboots and machine has been on the whole time.
>
>
>>> When we get your array assembled, we'll use hexdump to poke around.
>
> Ok.  Make sure no array is active in /proc/mdstat.  For any there, do:
>
> mdadm --stop /dev/mdX
>
> Force assemble the array in degraded mode, verbosely:
>
> mdadm -Avf /dev/md0 /dev/sdb1 /dev/sdf1
>
> If the above fails, cut and paste the entire report in your reply.
>
> If it succeeds, paste the output of the following in your reply:
>
> dd if=/dev/md0 bs=1M count=16 |hexdump -C |head -n 1000
>
> That'll be the first 1000 lines of a hex report of the beginning of your
> array.

root@debianbase:/# mdadm --stop /dev/md0
mdadm: error opening /dev/md0: No such file or directory
root@debianbase:/# mdadm -Avf /dev/md0 /dev/sdb1 /dev/sdf1
mdadm: looking for devices for /dev/md0
mdadm: /dev/sdb1 is identified as a member of /dev/md0, slot 3.
mdadm: /dev/sdf1 is identified as a member of /dev/md0, slot 1.
mdadm: no uptodate device for slot 0 of /dev/md0
mdadm: no uptodate device for slot 4 of /dev/md0
mdadm: added /dev/sdb1 to /dev/md0 as 3
mdadm: added /dev/sdf1 to /dev/md0 as 1
mdadm: /dev/md0 has been started with 2 drives (out of 4).
root@debianbase:/# dd if=/dev/md0 bs=1M count=16 |hexdump -c |head -n 1000
0000000  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0
*
00001c0 001  \0   �   �   �   � 001  \0  \0  \0   �   �   �   �  \0  \0
00001d0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0
*
00001f0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0   U   �
0000200   E   F   I       P   A   R   T  \0  \0 001  \0   \  \0  \0  \0
0000210   8   F   L   ]  \0  \0  \0  \0 001  \0  \0  \0  \0  \0  \0  \0
0000220   �   �   �   �  \0  \0  \0  \0   "  \0  \0  \0  \0  \0  \0  \0
0000230   �   �   �   �  \0  \0  \0  \0 223   w   � 036   �  \f 026   N
0000240   � 204   3   � 202   Z   �   H 002  \0  \0  \0  \0  \0  \0  \0
0000250 200  \0  \0  \0 200  \0  \0  \0 206   �   T   �  \0  \0  \0  \0
0000260  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0
*
0100400  \0       G  \a  \0 024 034 035 231 232   t 001   � 200   r 030
0100410 203   �   =  \a  \0  \0  \0  \0 002  \0  \0  \0 002  \0  \0  \0
0100420  \0 200  \0  \0  \0 200  \0  \0  \0      \0  \0   �   F   �   U
0100430   x 200   �   U   Z  \0   '  \0   S   � 001  \0 001  \0  \0  \0
0100440 036   �   m   R  \0   N   �  \0  \0  \0  \0  \0 001  \0  \0  \0
0100450  \0  \0  \0  \0  \v  \0  \0  \0  \0 001  \0  \0   <  \0  \0  \0
0100460   B 002  \0  \0   {  \0  \0  \0   I   U       6   �   o   I   V
0100470   �   �   5   A   �   � 177  \n  \0  \0  \0  \0  \0  \0  \0  \0
0100480  \0  \0  \0  \0  \0  \0  \0  \0   /   m   e   d   i   a   /   d
0100490   a   r   a   l   d   /   4   9   5   5   2   0   3   6   -   b
01004a0   4   6   f   -   4   9   5   6   -   a   d   e   9   -   3   5
01004b0   4   1   a   3   d   d   7   f   0   a  \0  \0  \0  \0  \0  \0
01004c0  \0  \0   �   ` 017   � 017 210  \0  \0  \0  \0  \0  \0 213 003
01004d0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0
01004e0  \b  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0   �   *   �   �
01004f0   �   o   M  \t 217   �   +   D   � 225   �   ^ 001 001  \0  \0
0100500  \0  \0  \0  \0  \0  \0  \0  \0   �   %   e   O  \n   � 002  \0
0100510 004  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0   � 177  \0  \0
0100520  \0 200 210 016   � 177  \0  \0 001  \0  \0  \0   �   � 210 016
0100530  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0
0100540  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \b
0100550  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0 034  \0 034  \0
0100560 001  \0  \0  \0 200  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0
0100570  \0 001  \0  \0 004  \0  \0  \0   � 226   � 022  \0  \0  \0  \0
0100580  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0
*
0101000 001 004  \0  \0 021 004  \0  \0   ! 004  \0  \0   �   [   � 037
0101010 002  \0 004  \0  \0  \0  \0  \0  \0  \0  \0  \0   � 037   �   T
0101020 002 004  \0  \0 022 004  \0  \0   ! 006  \0  \0   E 001  \0
0101030  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   <
0101040 003 004  \0  \0 023 004  \0  \0   !  \b  \0  \0   � 006  \0
0101050  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     020   �
0101060 004 004  \0  \0 024 004  \0  \0   !  \n  \0  \0   �   (  \0
0101070  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 004
0101080 005 004  \0  \0 025 004  \0  \0   !  \f  \0  \0  \0  \0  \0
0101090  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �  \t
01010a0 006 004  \0  \0 026 004  \0  \0   ! 016  \0  \0  \v 002  \0
01010b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       H   �
01010c0  \a 004  \0  \0 027 004  \0  \0   ! 020  \0  \0  \0  \0  \0
01010d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     237   �
01010e0  \b 004  \0  \0 030 004  \0  \0   ! 022  \0  \0 203 003  \0
01010f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   r
0101100  \t 004  \0  \0 031 004  \0  \0   ! 024  \0  \0  \0  \0  \0
0101110  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     017  \f
0101120  \n 004  \0  \0 032 004  \0  \0   ! 026  \0  \0   � 001  \0
0101130  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       t  \a
0101140  \v 004  \0  \0 033 004  \0  \0   ! 030  \0  \0  \0  \0  \0
0101150  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       3   E
0101160  \f 004  \0  \0 034 004  \0  \0   ! 032  \0  \0   � 001  \0
0101170  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       3 024
0101180  \r 004  \0  \0 035 004  \0  \0   ! 034  \0  \0   � 003  \0
0101190  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       V 210
01011a0 016 004  \0  \0 036 004  \0  \0   ! 036  \0  \0   ) 006  \0
01011b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       t   E
01011c0 017 004  \0  \0 037 004  \0  \0   !      \0  \0   ' 002  \0
01011d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       w   j
01011e0 020 004  \0  \0     004  \0  \0   !   "  \0  \0 003 001  \0
01011f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       b   �
0101200  \0  \0  \b  \0 020  \0  \b  \0      \0  \b  \0   �   Y  \0
0101210  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       & 006
0101220 001  \0  \b  \0 021  \0  \b  \0     002  \b  \0   \ 001  \0
0101230  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0101240 002  \0  \b  \0 022  \0  \b  \0     004  \b  \0  \t 001  \0
0101250  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0101260 003  \0  \b  \0 023  \0  \b  \0     006  \b  \0 201  \0  \0
0101270  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �  \t
0101280 004  \0  \b  \0 024  \0  \b  \0      \b  \b  \0   � 002  \0
0101290  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 231
01012a0 005  \0  \b  \0 025  \0  \b  \0      \n  \b  \0   y 004  \0
01012b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 233
01012c0 006  \0  \b  \0 026  \0  \b  \0      \f  \b  \0   5 004  \0
01012d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       v   �
01012e0  \a  \0  \b  \0 027  \0  \b  \0     016  \b  \0   L 001  \0
01012f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       w  \t
0101300  \b  \0  \b  \0 030  \0  \b  \0     020  \b  \0  \0  \0  \0
0101310  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0           �
0101320  \t  \0  \b  \0 031  \0  \b  \0     022  \b  \0   c 001  \0
0101330  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       D   �
0101340  \n  \0  \b  \0 032  \0  \b  \0     024  \b  \0  \0  \0  \0
0101350  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     225   �
0101360  \v  \0  \b  \0 033  \0  \b  \0     026  \b  \0   � 001  \0
0101370  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0101380  \f  \0  \b  \0 034  \0  \b  \0     030  \b  \0   ] 005  \0
0101390  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   V
01013a0  \r  \0  \b  \0 035  \0  \b  \0     032  \b  \0   � 003  \0
01013b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     205 201
01013c0 016  \0  \b  \0 036  \0  \b  \0     034  \b  \0   H 003  \0
01013d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     230   �
01013e0 017  \0  \b  \0 037  \0  \b  \0     036  \b  \0   S 004  \0
01013f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     207 214
0101400  \0  \0 020  \0 020  \0 020  \0      \0 020  \0   �   _  \0
0101410  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   =
0101420 001  \0 020  \0 021  \0 020  \0     002 020  \0 203  \0  \0
0101430  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   %
0101440 002  \0 020  \0 022  \0 020  \0     004 020  \0   � 002  \0
0101450  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       o   �
0101460 003  \0 020  \0 023  \0 020  \0     006 020  \0  \0  \0  \0
0101470  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 210
0101480 004  \0 020  \0 024  \0 020  \0      \b 020  \0  \0  \0  \0
0101490  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   *
01014a0 005  \0 020  \0 025  \0 020  \0      \n 020  \0   `  \0  \0
01014b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       a 224
01014c0 006  \0 020  \0 026  \0 020  \0      \f 020  \0  \0  \0  \0
01014d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     021   +
01014e0  \a  \0 020  \0 027  \0 020  \0     016 020  \0   �  \0  \0
01014f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   K
0101500  \b  \0 020  \0 030  \0 020  \0     020 020  \0  \r 003  \0
0101510  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       x   p
0101520  \t  \0 020  \0 031  \0 020  \0     022 020  \0   � 003  \0
0101530  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0101540  \n  \0 020  \0 032  \0 020  \0     024 020  \0   � 001  \0
0101550  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       |   �
0101560  \v  \0 020  \0 033  \0 020  \0     026 020  \0   j 001  \0
0101570  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     030   �
0101580  \f  \0 020  \0 034  \0 020  \0     030 020  \0 177 001  \0
0101590  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0      \b   p
01015a0  \r  \0 020  \0 035  \0 020  \0     032 020  \0  \0  \0  \0
01015b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 214
01015c0 016  \0 020  \0 036  \0 020  \0     034 020  \0  \0  \0  \0
01015d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   -
01015e0 017  \0 020  \0 037  \0 020  \0     036 020  \0   =  \0  \0
01015f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     203   -
0101600  \0  \0 030  \0 020  \0 030  \0      \0 030  \0   7   ^  \0
0101610  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       >   R
0101620 001  \0 030  \0 021  \0 030  \0     002 030  \0   (  \0  \0
0101630  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     212   R
0101640 002  \0 030  \0 022  \0 030  \0     004 030  \0   W 002  \0
0101650  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       l   _
0101660 003  \0 030  \0 023  \0 030  \0     006 030  \0  \0  \0  \0
0101670  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0101680 004  \0 030  \0 024  \0 030  \0      \b 030  \0  \0  \0  \0
0101690  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   Y
01016a0 005  \0 030  \0 025  \0 030  \0      \n 030  \0  \0  \0  \0
01016b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       i   �
01016c0 006  \0 030  \0 026  \0 030  \0      \f 030  \0 020 002  \0
01016d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
01016e0  \a  \0 030  \0 027  \0 030  \0     016 030  \0  \0  \0  \0
01016f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0101700  \b  \0 030  \0 030  \0 030  \0     020 030  \0  \0  \0  \0
0101710  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0      \f   \
0101720  \t  \0 030  \0 031  \0 030  \0     022 030  \0   M 004  \0
0101730  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     022   F
0101740  \n  \0 030  \0 032  \0 030  \0     024 030  \0 217 005  \0
0101750  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0101760  \v  \0 030  \0 033  \0 030  \0     026 030  \0 023 002  \0
0101770  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       7 034
0101780  \f  \0 030  \0 034  \0 030  \0     030 030  \0   � 001  \0
0101790  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       v   �
01017a0  \r  \0 030  \0 035  \0 030  \0     032 030  \0 034 004  \0
01017b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       8   �
01017c0 016  \0 030  \0 036  \0 030  \0     034 030  \0   \ 005  \0
01017d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     022   M
01017e0 017  \0 030  \0 037  \0 030  \0     036 030  \0   � 001  \0
01017f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       I 207
0101800  \0  \0      \0 020  \0      \0      \0      \0   �   _  \0
0101810  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     207   W
0101820 001  \0      \0 021  \0      \0     002      \0  \0  \0  \0
0101830  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       b   �
0101840 002  \0      \0 022  \0      \0     004      \0  \0  \0  \0
0101850  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0      \f   B
0101860 003  \0      \0 023  \0      \0     006      \0   � 002  \0
0101870  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0101880 004  \0      \0 024  \0      \0      \b      \0   � 005  \0
0101890  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       !   `
01018a0 005  \0      \0 025  \0      \0      \n      \0   6  \0  \0
01018b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   f
01018c0 006  \0      \0 026  \0      \0      \f      \0 226 002  \0
01018d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0      \n 205
01018e0  \a  \0      \0 027  \0      \0     016      \0   k 003  \0
01018f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       !   )
0101900  \b  \0      \0 030  \0      \0     020      \0  \0  \0  \0
0101910  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       m   E
0101920  \t  \0      \0 031  \0      \0     022      \0   @ 001  \0
0101930  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0101940  \n  \0      \0 032  \0      \0     024      \0   � 002  \0
0101950  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   m
0101960  \v  \0      \0 033  \0      \0     026      \0  \0  \0  \0
0101970  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     003   �
0101980  \f  \0      \0 034  \0      \0     030      \0  \0  \0  \0
0101990  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0      \a   F
01019a0  \r  \0      \0 035  \0      \0     032      \0  \0  \0  \0
01019b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
01019c0 016  \0      \0 036  \0      \0     034      \0  \0  \0  \0
01019d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   G
01019e0 017  \0      \0 037  \0      \0     036      \0  \0 001  \0
01019f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       8   w
0101a00  \0  \0   (  \0 020  \0   (  \0      \0   (  \0   �   _  \0
0101a10  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     221   $
0101a20 001  \0   (  \0 021  \0   (  \0     002   (  \0   � 003  \0
0101a30  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       1   �
0101a40 002  \0   (  \0 022  \0   (  \0     004   (  \0  \0  \0  \0
0101a50  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     032   1
0101a60 003  \0   (  \0 023  \0   (  \0     006   (  \0 231 002  \0
0101a70  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     236   B
0101a80 004  \0   (  \0 024  \0   (  \0      \b   (  \0  \0  \0  \0
0101a90  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   3
0101aa0 005  \0   (  \0 025  \0   (  \0      \n   (  \0  \0  \0  \0
0101ab0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     036 223
0101ac0 006  \0   (  \0 026  \0   (  \0      \f   (  \0  \0  \0  \0
0101ad0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       p   2
0101ae0  \a  \0   (  \0 027  \0   (  \0     016   (  \0   A 003  \0
0101af0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     037   J
0101b00  \b  \0   (  \0 030  \0   (  \0     020   (  \0  \0  \0  \0
0101b10  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       {   6
0101b20  \t  \0   (  \0 031  \0   (  \0     022   (  \0   � 002  \0
0101b30  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     222   �
0101b40  \n  \0   (  \0 032  \0   (  \0     024   (  \0  \0  \0  \0
0101b50  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   7
0101b60  \v  \0   (  \0 033  \0   (  \0     026   (  \0  \0  \0  \0
0101b70  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     025 227
0101b80  \f  \0   (  \0 034  \0   (  \0     030   (  \0   � 003  \0
0101b90  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   5
0101ba0  \r  \0   (  \0 035  \0   (  \0     032   (  \0  \0  \0  \0
0101bb0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 225
0101bc0 016  \0   (  \0 036  \0   (  \0     034   (  \0  \0  \0  \0
0101bd0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   4
0101be0 017  \0   (  \0 037  \0   (  \0     036   (  \0   d 003  \0
0101bf0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   K
0101c00  \0  \0   0  \0 020  \0   0  \0      \0   0  \0   �   _  \0
0101c10  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0101c20 001  \0   0  \0 021  \0   0  \0     002   0  \0  \0  \0  \0
0101c30  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       N 005
0101c40 002  \0   0  \0 022  \0   0  \0     004   0  \0  \0  \0  \0
0101c50  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0           �
0101c60 003  \0   0  \0 023  \0   0  \0     006   0  \0  \0  \0  \0
0101c70  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 004
0101c80 004  \0   0  \0 024  \0   0  \0      \b   0  \0  \0  \0  \0
0101c90  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0101ca0 005  \0   0  \0 025  \0   0  \0      \n   0  \0  \0  \0  \0
0101cb0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       $ 006
0101cc0 006  \0   0  \0 026  \0   0  \0      \f   0  \0 230 001  \0
0101cd0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   x
0101ce0  \a  \0   0  \0 027  \0   0  \0     016   0  \0  \0  \0  \0
0101cf0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     221  \a
0101d00  \b  \0   0  \0 030  \0   0  \0     020   0  \0  \0  \0  \0
0101d10  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       A   �
0101d20  \t  \0   0  \0 031  \0   0  \0     022   0  \0  \0  \0  \0
0101d30  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     232 003
0101d40  \n  \0   0  \0 032  \0   0  \0     024   0  \0   �  \0  \0
0101d50  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   T
0101d60  \v  \0   0  \0 033  \0   0  \0     026   0  \0  \0  \0  \0
0101d70  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       / 002
0101d80  \f  \0   0  \0 034  \0   0  \0     030   0  \0  \0  \0  \0
0101d90  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       +   �
0101da0  \r  \0   0  \0 035  \0   0  \0     032   0  \0  \0  \0  \0
0101db0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �  \0
0101dc0 016  \0   0  \0 036  \0   0  \0     034   0  \0  \0  \0  \0
0101dd0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     236   �
0101de0 017  \0   0  \0 037  \0   0  \0     036   0  \0   h  \t  \0
0101df0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     017   /
0101e00  \0  \0   8  \0 020  \0   8  \0      \0   8  \0   �   _  \0
0101e10  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0101e20 001  \0   8  \0 021  \0   8  \0     002   8  \0   �  \0  \0
0101e30  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0101e40 002  \0   8  \0 022  \0   8  \0     004   8  \0  \0  \0  \0
0101e50  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       6   �
0101e60 003  \0   8  \0 023  \0   8  \0     006   8  \0   � 001  \0
0101e70  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   1
0101e80 004  \0   8  \0 024  \0   8  \0      \b   8  \0   F 005  \0
0101e90  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     017   �
0101ea0 005  \0   8  \0 025  \0   8  \0      \n   8  \0 232 005  \0
0101eb0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       /   �
0101ec0 006  \0   8  \0 026  \0   8  \0      \f   8  \0   e 003  \0
0101ed0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0101ee0  \a  \0   8  \0 027  \0   8  \0     016   8  \0   _ 004  \0
0101ef0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0101f00  \b  \0   8  \0 030  \0   8  \0     020   8  \0 232 001  \0
0101f10  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0      \b   �
0101f20  \t  \0   8  \0 031  \0   8  \0     022   8  \0   m 005  \0
0101f30  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     023 220
0101f40  \n  \0   8  \0 032  \0   8  \0     024   8  \0  \0  \0  \0
0101f50  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0101f60  \v  \0   8  \0 033  \0   8  \0     026   8  \0  \0  \0  \0
0101f70  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       9   q
0101f80  \f  \0   8  \0 034  \0   8  \0     030   8  \0   Z  \a  \0
0101f90  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   )
0101fa0  \r  \0   8  \0 035  \0   8  \0     032   8  \0 022  \b  \0
0101fb0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0101fc0 016  \0   8  \0 036  \0   8  \0     034   8  \0   � 004  \0
0101fd0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     217   �
0101fe0 017  \0   8  \0 037  \0   8  \0     036   8  \0   �  \v  \0
0101ff0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     003   {
0102000  \0  \0   @  \0 020  \0   @  \0      \0   @  \0   �   Q  \0
0102010  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 222
0102020 001  \0   @  \0 021  \0   @  \0     002   @  \0   � 001  \0
0102030  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   `
0102040 002  \0   @  \0 022  \0   @  \0     004   @  \0   I  \a  \0
0102050  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     226   �
0102060 003  \0   @  \0 023  \0   @  \0     006   @  \0   � 001  \0
0102070  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 005
0102080 004  \0   @  \0 024  \0   @  \0      \b   @  \0   � 005  \0
0102090  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       n  \f
01020a0 005  \0   @  \0 025  \0   @  \0      \n   @  \0 232 027  \0
01020b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       W   7
01020c0 006  \0   @  \0 026  \0   @  \0      \f   @  \0 215 003  \0
01020d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   "
01020e0  \a  \0   @  \0 027  \0   @  \0     016   @  \0  \0  \0  \0
01020f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       S   5
0102100  \b  \0   @  \0 030  \0   @  \0     020   @  \0   +  \b  \0
0102110  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       }   �
0102120  \t  \0   @  \0 031  \0   @  \0     022   @  \0  \n 002  \0
0102130  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 213
0102140  \n  \0   @  \0 032  \0   @  \0     024   @  \0 210  \0  \0
0102150  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     235 032
0102160  \v  \0   @  \0 033  \0   @  \0     026   @  \0 216 002  \0
0102170  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0      \a   S
0102180  \f  \0   @  \0 034  \0   @  \0     030   @  \0   b  \0  \0
0102190  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       V   4
01021a0  \r  \0   @  \0 035  \0   @  \0     032   @  \0  \0  \0  \0
01021b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       2   2
01021c0 016  \0   @  \0 036  \0   @  \0     034   @  \0   b 005  \0
01021d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   d
01021e0 017  \0   @  \0 037  \0   @  \0     036   @  \0   �  \r  \0
01021f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0102200  \0  \0   H  \0 020  \0   H  \0      \0   H  \0 216   Y  \0
0102210  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0102220 001  \0   H  \0 021  \0   H  \0     002   H  \0 026 002  \0
0102230  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   h
0102240 002  \0   H  \0 022  \0   H  \0     004   H  \0   6  \r  \0
0102250  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     217   �
0102260 003  \0   H  \0 023  \0   H  \0     006   H  \0 177 001  \0
0102270  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       W 031
0102280 004  \0   H  \0 024  \0   H  \0      \b   H  \0   b 017  \0
0102290  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
01022a0 005  \0   H  \0 025  \0   H  \0      \n   H  \0   � 035  \0
01022b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0      \0 024
01022c0 006  \0   H  \0 026  \0   H  \0      \f   H  \0   @ 021  \0
01022d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   g
01022e0  \a  \0   H  \0 027  \0   H  \0     016   H  \0   ` 017  \0
01022f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       n   �
0102300  \b  \0   H  \0 030  \0   H  \0     020   H  \0   � 002  \0
0102310  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     003   t
0102320  \t  \0   H  \0 031  \0   H  \0     022   H  \0 231 001  \0
0102330  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   a
0102340  \n  \0   H  \0 032  \0   H  \0     024   H  \0  \v  \a  \0
0102350  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0102360  \v  \0   H  \0 033  \0   H  \0     026   H  \0   �  \b  \0
0102370  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0102380  \f  \0   H  \0 034  \0   H  \0     030   H  \0   {  \a  \0
0102390  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       %   -
01023a0  \r  \0   H  \0 035  \0   H  \0     032   H  \0   �  \f  \0
01023b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 232
01023c0 016  \0   H  \0 036  \0   H  \0     034   H  \0   �  \0  \0
01023d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       ^   �
01023e0 017  \0   H  \0 037  \0   H  \0     036   H  \0   � 002  \0
01023f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       q   5
0102400  \0  \0   P  \0 020  \0   P  \0      \0   P  \0   �   _  \0
0102410  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       E   e
0102420 001  \0   P  \0 021  \0   P  \0     002   P  \0   �  \r  \0
0102430  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0102440 002  \0   P  \0 022  \0   P  \0     004   P  \0   � 004  \0
0102450  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       y   �
0102460 003  \0   P  \0 023  \0   P  \0     006   P  \0   � 004  \0
0102470  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     026 004
0102480 004  \0   P  \0 024  \0   P  \0      \b   P  \0   }  \b  \0
0102490  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     036   �
01024a0 005  \0   P  \0 025  \0   P  \0      \n   P  \0   � 001  \0
01024b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 222
01024c0 006  \0   P  \0 026  \0   P  \0      \f   P  \0 202  \f  \0
01024d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �
01024e0  \a  \0   P  \0 027  \0   P  \0     016   P  \0   � 004  \0
01024f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 231
0102500  \b  \0   P  \0 030  \0   P  \0     020   P  \0  \0  \0  \0
0102510  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   w
0102520  \t  \0   P  \0 031  \0   P  \0     022   P  \0  \0  \a  \0
0102530  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0102540  \n  \0   P  \0 032  \0   P  \0     024   P  \0  \0  \0  \0
0102550  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     032   v
0102560  \v  \0   P  \0 033  \0   P  \0     026   P  \0  \0  \0  \0
0102570  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0102580  \f  \0   P  \0 034  \0   P  \0     030   P  \0  \0  \0  \0
0102590  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   t
01025a0  \r  \0   P  \0 035  \0   P  \0     032   P  \0  \0  \0  \0
01025b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     036   �
01025c0 016  \0   P  \0 036  \0   P  \0     034   P  \0  \0  \0  \0
01025d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       p   u
01025e0 017  \0   P  \0 037  \0   P  \0     036   P  \0  \0  \0  \0
01025f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0102600  \0  \0   X  \0 020  \0   X  \0      \0   X  \0   �   _  \0
0102610  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       S 026
0102620 001  \0   X  \0 021  \0   X  \0     002   X  \0  \0  \0  \0
0102630  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0102640 002  \0   X  \0 022  \0   X  \0     004   X  \0  \0  \0  \0
0102650  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 003
0102660 003  \0   X  \0 023  \0   X  \0     006   X  \0  \0  \0  \0
0102670  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     003   �
0102680 004  \0   X  \0 024  \0   X  \0      \b   X  \0  \0  \0  \0
0102690  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0      \a 001
01026a0 005  \0   X  \0 025  \0   X  \0      \n   X  \0  \0  \0  \0
01026b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
01026c0 006  \0   X  \0 026  \0   X  \0      \f   X  \0  \0  \0  \0
01026d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �  \0
01026e0  \a  \0   X  \0 027  \0   X  \0     016   X  \0  \0  \0  \0
01026f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       i   �
0102700  \b  \0   X  \0 030  \0   X  \0     020   X  \0  \0  \0  \0
0102710  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 004
0102720  \t  \0   X  \0 031  \0   X  \0     022   X  \0  \0  \0  \0
0102730  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       b   �
0102740  \n  \0   X  \0 032  \0   X  \0     024   X  \0  \0  \0  \0
0102750  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0      \f 005
0102760  \v  \0   X  \0 033  \0   X  \0     026   X  \0  \0  \0  \0
0102770  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0102780  \f  \0   X  \0 034  \0   X  \0     030   X  \0  \0  \0  \0
0102790  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �  \a
01027a0  \r  \0   X  \0 035  \0   X  \0     032   X  \0  \0  \0  \0
01027b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0      \b   �
01027c0 016  \0   X  \0 036  \0   X  \0     034   X  \0  \0  \0  \0
01027d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       f 006
01027e0 017  \0   X  \0 037  \0   X  \0     036   X  \0  \0  \0  \0
01027f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0102800  \0  \0   `  \0 020  \0   `  \0      \0   `  \0   �   _  \0
0102810  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       2 017
0102820 001  \0   `  \0 021  \0   `  \0     002   `  \0  \0  \0  \0
0102830  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0102840 002  \0   `  \0 022  \0   `  \0     004   `  \0  \0  \0  \0
0102850  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 032
0102860 003  \0   `  \0 023  \0   `  \0     006   `  \0  \0  \0  \0
0102870  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       b   �
0102880 004  \0   `  \0 024  \0   `  \0      \b   `  \0  \0  \0  \0
0102890  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       f 030
01028a0 005  \0   `  \0 025  \0   `  \0      \n   `  \0  \0  \0  \0
01028b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
01028c0 006  \0   `  \0 026  \0   `  \0      \f   `  \0  \0  \0  \0
01028d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 031
01028e0  \a  \0   `  \0 027  \0   `  \0     016   `  \0   � 006  \0
01028f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0102900  \b  \0   `  \0 030  \0   `  \0     020   `  \0   D 001  \0
0102910  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   h
0102920  \t  \0   `  \0 031  \0   `  \0     022   `  \0   � 005  \0
0102930  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     005 034
0102940  \n  \0   `  \0 032  \0   `  \0     024   `  \0   m 003  \0
0102950  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     021   ]
0102960  \v  \0   `  \0 033  \0   `  \0     026   `  \0   W 002  \0
0102970  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0102980  \f  \0   `  \0 034  \0   `  \0     030   `  \0   = 033  \0
0102990  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       U   I
01029a0  \r  \0   `  \0 035  \0   `  \0     032   `  \0  \n  \a  \0
01029b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   U
01029c0 016  \0   `  \0 036  \0   `  \0     034   `  \0   � 006  \0
01029d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       N   �
01029e0 017  \0   `  \0 037  \0   `  \0     036   `  \0   O  \b  \0
01029f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       }   �
0102a00  \0  \0   h  \0 020  \0   h  \0      \0   h  \0   �   _  \0
0102a10  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       $   |
0102a20 001  \0   h  \0 021  \0   h  \0     002   h  \0   �  \t  \0
0102a30  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       B 207
0102a40 002  \0   h  \0 022  \0   h  \0     004   h  \0   �  \b  \0
0102a50  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     016   L
0102a60 003  \0   h  \0 023  \0   h  \0     006   h  \0   � 002  \0
0102a70  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       q   ,
0102a80 004  \0   h  \0 024  \0   h  \0      \b   h  \0   4  \0  \0
0102a90  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       >   U
0102aa0 005  \0   h  \0 025  \0   h  \0      \n   h  \0  \0  \0  \0
0102ab0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0102ac0 006  \0   h  \0 026  \0   h  \0      \f   h  \0  \0  \0  \0
0102ad0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   j
0102ae0  \a  \0   h  \0 027  \0   h  \0     016   h  \0  \0  \0  \0
0102af0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     036   �
0102b00  \b  \0   h  \0 030  \0   h  \0     020   h  \0  \0  \0  \0
0102b10  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   n
0102b20  \t  \0   h  \0 031  \0   h  \0     022   h  \0   � 006  \0
0102b30  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       S   6
0102b40  \n  \0   h  \0 032  \0   h  \0     024   h  \0  \0  \0  \0
0102b50  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       {   o
0102b60  \v  \0   h  \0 033  \0   h  \0     026   h  \0  \0  \0  \0
0102b70  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0102b80  \f  \0   h  \0 034  \0   h  \0     030   h  \0  \0  \0  \0
0102b90  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   m
0102ba0  \r  \0   h  \0 035  \0   h  \0     032   h  \0  \0  \0  \0
0102bb0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     177   �
0102bc0 016  \0   h  \0 036  \0   h  \0     034   h  \0  \0  \0  \0
0102bd0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     021   l
0102be0 017  \0   h  \0 037  \0   h  \0     036   h  \0  \0  \0  \0
0102bf0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0102c00  \0  \0   p  \0 020  \0   p  \0      \0   p  \0   �   _  \0
0102c10  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     036   �
0102c20 001  \0   p  \0 021  \0   p  \0     002   p  \0   1 002  \0
0102c30  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     004   �
0102c40 002  \0   p  \0 022  \0   p  \0     004   p  \0  \0  \0  \0
0102c50  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     225   �
0102c60 003  \0   p  \0 023  \0   p  \0     006   p  \0  \0  \0  \0
0102c70  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       N   \
0102c80 004  \0   p  \0 024  \0   p  \0      \b   p  \0  \0  \0  \0
0102c90  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       J   �
0102ca0 005  \0   p  \0 025  \0   p  \0      \n   p  \0  \0  \0  \0
0102cb0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     221   ^
0102cc0 006  \0   p  \0 026  \0   p  \0      \f   p  \0  \0  \0  \0
0102cd0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0102ce0  \a  \0   p  \0 027  \0   p  \0     016   p  \0  \0  \0  \0
0102cf0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       $   _
0102d00  \b  \0   p  \0 030  \0   p  \0     020   p  \0  \0  \0  \0
0102d10  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0102d20  \t  \0   p  \0 031  \0   p  \0     022   p  \0  \0  \0  \0
0102d30  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       /   [
0102d40  \n  \0   p  \0 032  \0   p  \0     024   p  \0  \0  \0  \0
0102d50  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       A   �
0102d60  \v  \0   p  \0 033  \0   p  \0     026   p  \0  \0  \0  \0
0102d70  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     232   Z
0102d80  \f  \0   p  \0 034  \0   p  \0     030   p  \0  \0  \0  \0
0102d90  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     236   �
0102da0  \r  \0   p  \0 035  \0   p  \0     032   p  \0  \0  \0  \0
0102db0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       E   X
0102dc0 016  \0   p  \0 036  \0   p  \0     034   p  \0  \0  \0  \0
0102dd0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       +   �
0102de0 017  \0   p  \0 037  \0   p  \0     036   p  \0  \0  \0  \0
0102df0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   Y
0102e00  \0  \0   x  \0 020  \0   x  \0      \0   x  \0   �   _  \0
0102e10  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0      \b 232
0102e20 001  \0   x  \0 021  \0   x  \0     002   x  \0  \0  \0  \0
0102e30  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   .
0102e40 002  \0   x  \0 022  \0   x  \0     004   x  \0  \0  \0  \0
0102e50  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     203 217
0102e60 003  \0   x  \0 023  \0   x  \0     006   x  \0   � 003  \0
0102e70  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0102e80 004  \0   x  \0 024  \0   x  \0      \b   x  \0 235 004  \0
0102e90  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0102ea0 005  \0   x  \0 025  \0   x  \0      \n   x  \0 037  \f  \0
0102eb0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       u   �
0102ec0 006  \0   x  \0 026  \0   x  \0      \f   x  \0   %   *  \0
0102ed0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0102ee0  \a  \0   x  \0 027  \0   x  \0     016   x  \0   - 023  \0
0102ef0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       V   |
0102f00  \b  \0   x  \0 030  \0   x  \0     020   x  \0   2 002  \0
0102f10  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   _
0102f20  \t  \0   x  \0 031  \0   x  \0     022   x  \0  \0  \0  \0
0102f30  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       9   (
0102f40  \n  \0   x  \0 032  \0   x  \0     024   x  \0  \0  \0  \0
0102f50  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       W 211
0102f60  \v  \0   x  \0 033  \0   x  \0     026   x  \0  \0  \0  \0
0102f70  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     214   )
0102f80  \f  \0   x  \0 034  \0   x  \0     030   x  \0  \0  \0  \0
0102f90  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     210 213
0102fa0  \r  \0   x  \0 035  \0   x  \0     032   x  \0  \0  \0  \0
0102fb0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       S   +
0102fc0 016  \0   x  \0 036  \0   x  \0     034   x  \0  \0  \0  \0
0102fd0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       = 212
0102fe0 017  \0   x  \0 037  \0   x  \0     036   x  \0  \0  \0  \0
0102ff0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   *
0103000  \0  \0 200  \0 020  \0 200  \0      \0 200  \0   �   _  \0
0103010  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   j
0103020 001  \0 200  \0 021  \0 200  \0     002 200  \0  \0  \0  \0
0103030  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       S   �
0103040 002  \0 200  \0 022  \0 200  \0     004 200  \0  \0  \0  \0
0103050  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       = 177
0103060 003  \0 200  \0 023  \0 200  \0     006 200  \0  \0  \0  \0
0103070  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0103080 004  \0 200  \0 024  \0 200  \0      \b 200  \0  \0  \0  \0
0103090  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   }
01030a0 005  \0 200  \0 025  \0 200  \0      \n 200  \0  \0  \0  \0
01030b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       9   �
01030c0 006  \0 200  \0 026  \0 200  \0      \f 200  \0  \0  \0  \0
01030d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       W   |
01030e0  \a  \0 200  \0 027  \0 200  \0     016 200  \0  \0  \0  \0
01030f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     214   �
0103100  \b  \0 200  \0 030  \0 200  \0     020 200  \0  \0  \0  \0
0103110  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       \   x
0103120  \t  \0 200  \0 031  \0 200  \0     022 200  \0  \0  \0  \0
0103130  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     207   �
0103140  \n  \0 200  \0 032  \0 200  \0     024 200  \0  \0  \0  \0
0103150  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   y
0103160  \v  \0 200  \0 033  \0 200  \0     026 200  \0   h 005  \0
0103170  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0103180  \f  \0 200  \0 034  \0 200  \0     030 200  \0  \r  \a  \0
0103190  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     026   �
01031a0  \r  \0 200  \0 035  \0 200  \0     032 200  \0 006 004  \0
01031b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       O 223
01031c0 016  \0 200  \0 036  \0 200  \0     034 200  \0   �  \v  \0
01031d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   c
01031e0 017  \0 200  \0 037  \0 200  \0     036 200  \0   T  \t  \0
01031f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0103200  \0  \0 210  \0 020  \0 210  \0      \0 210  \0   �   ^  \0
0103210  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       9 020
0103220 001  \0 210  \0 021  \0 210  \0     002 210  \0   s  \f  \0
0103230  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       j   1
0103240 002  \0 210  \0 022  \0 210  \0     004 210  \0 024  \a  \0
0103250  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0103260 003  \0 210  \0 023  \0 210  \0     006 210  \0 206  \b  \0
0103270  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 017
0103280 004  \0 210  \0 024  \0 210  \0      \b 210  \0   ]  \b  \0
0103290  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   r
01032a0 005  \0 210  \0 025  \0 210  \0      \n 210  \0   � 004  \0
01032b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       Z 231
01032c0 006  \0 210  \0 026  \0 210  \0      \f 210  \0   � 006  \0
01032d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       C   �
01032e0  \a  \0 210  \0 027  \0 210  \0     016 210  \0 031 001  \0
01032f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     034   d
0103300  \b  \0 210  \0 030  \0 210  \0     020 210  \0  \0  \0  \0
0103310  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       J  \v
0103320  \t  \0 210  \0 031  \0 210  \0     022 210  \0  \0  \0  \0
0103330  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     221   �
0103340  \n  \0 210  \0 032  \0 210  \0     024 210  \0  \0  \0  \0
0103350  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �  \n
0103360  \v  \0 210  \0 033  \0 210  \0     026 210  \0  \0  \0  \0
0103370  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       $   �
0103380  \f  \0 210  \0 034  \0 210  \0     030 210  \0   m 005  \0
0103390  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
01033a0  \r  \0 210  \0 035  \0 210  \0     032 210  \0  \0  \0  \0
01033b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
01033c0 016  \0 210  \0 036  \0 210  \0     034 210  \0  \0  \0  \0
01033d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     225  \t
01033e0 017  \0 210  \0 037  \0 210  \0     036 210  \0  \0  \0  \0
01033f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       N   �
0103400  \0  \0 220  \0 020  \0 220  \0      \0 220  \0   �   _  \0
0103410  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     232 214
0103420 001  \0 220  \0 021  \0 220  \0     002 220  \0  \0  \0  \0
0103430  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     177   8
0103440 002  \0 220  \0 022  \0 220  \0     004 220  \0  \0  \0  \0
0103450  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     021 231
0103460 003  \0 220  \0 023  \0 220  \0     006 220  \0   � 005  \0
0103470  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   {
0103480 004  \0 220  \0 024  \0 220  \0      \b 220  \0  \0  \0  \0
0103490  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 233
01034a0 005  \0 220  \0 025  \0 220  \0      \n 220  \0  \0  \0  \0
01034b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     025   ;
01034c0 006  \0 220  \0 026  \0 220  \0      \f 220  \0  \0  \0  \0
01034d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       { 232
01034e0  \a  \0 220  \0 027  \0 220  \0     016 220  \0  \0  \0  \0
01034f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   :
0103500  \b  \0 220  \0 030  \0 220  \0     020 220  \0  \0  \0  \0
0103510  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       p 236
0103520  \t  \0 220  \0 031  \0 220  \0     022 220  \0  \0  \0  \0
0103530  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   >
0103540  \n  \0 220  \0 032  \0 220  \0     024 220  \0  \0  \0  \0
0103550  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 237
0103560  \v  \0 220  \0 033  \0 220  \0     026 220  \0  \0 003  \0
0103570  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0103580  \f  \0 220  \0 034  \0 220  \0     030 220  \0  \0  \0  \0
0103590  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     032 235
01035a0  \r  \0 220  \0 035  \0 220  \0     032 220  \0  \0  \0  \0
01035b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   =
01035c0 016  \0 220  \0 036  \0 220  \0     034 220  \0  \0  \0  \0
01035d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 234
01035e0 017  \0 220  \0 037  \0 220  \0     036 220  \0  \0  \0  \0
01035f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       t   <
0103600  \0  \0 230  \0 020  \0 230  \0      \0 230  \0   �   _  \0
0103610  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     214   �
0103620 001  \0 230  \0 021  \0 230  \0     002 230  \0  \0  \0  \0
0103630  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       i   K
0103640 002  \0 230  \0 022  \0 230  \0     004 230  \0  \0  \0  \0
0103650  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0      \a   �
0103660 003  \0 230  \0 023  \0 230  \0     006 230  \0   1 002  \0
0103670  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       #   �
0103680 004  \0 230  \0 024  \0 230  \0      \b 230  \0  \0  \0  \0
0103690  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
01036a0 005  \0 230  \0 025  \0 230  \0      \n 230  \0  \0  \0  \0
01036b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     003   H
01036c0 006  \0 230  \0 026  \0 230  \0      \f 230  \0   � 004  \0
01036d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0         003
01036e0  \a  \0 230  \0 027  \0 230  \0     016 230  \0  \0  \0  \0
01036f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   I
0103700  \b  \0 230  \0 030  \0 230  \0     020 230  \0  \0 002  \0
0103710  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 215
0103720  \t  \0 230  \0 031  \0 230  \0     022 230  \0   �  \0  \0
0103730  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     201   q
0103740  \n  \0 230  \0 032  \0 230  \0     024 230  \0  \0  \0  \0
0103750  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0103760  \v  \0 230  \0 033  \0 230  \0     026 230  \0  \0  \0  \0
0103770  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0      \b   L
0103780  \f  \0 230  \0 034  \0 230  \0     030 230  \0  \0  \0  \0
0103790  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0      \f   �
01037a0  \r  \0 230  \0 035  \0 230  \0     032 230  \0  \0  \0  \0
01037b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   N
01037c0 016  \0 230  \0 036  \0 230  \0     034 230  \0  \0  \0  \0
01037d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
01037e0 017  \0 230  \0 037  \0 230  \0     036 230  \0  \0 004  \0
01037f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0         216
0103800  \0  \0   �  \0 020  \0   �  \0      \0   �  \0   �   _  \0
0103810  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0103820 001  \0   �  \0 021  \0   �  \0     002   �  \0   r 006  \0
0103830  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       P 220
0103840 002  \0   �  \0 022  \0   �  \0     004   �  \0  \0  \0  \0
0103850  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       f   �
0103860 003  \0   �  \0 023  \0   �  \0     006   �  \0  \0  \0  \0
0103870  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   S
0103880 004  \0   �  \0 024  \0   �  \0      \b   �  \0   � 002  \0
0103890  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     233  \v
01038a0 005  \0   �  \0 025  \0   �  \0      \n   �  \0  \0  \0  \0
01038b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       b   Q
01038c0 006  \0   �  \0 026  \0   �  \0      \f   �  \0   0 002  \0
01038d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 237
01038e0  \a  \0   �  \0 027  \0   �  \0     016   �  \0 225 003  \0
01038f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     032   @
0103900  \b  \0   �  \0 030  \0   �  \0     020   �  \0  \0  \0  \0
0103910  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0      \a   �
0103920  \t  \0   �  \0 031  \0   �  \0     022   �  \0   l 002  \0
0103930  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   y
0103940  \n  \0   �  \0 032  \0   �  \0     024   �  \0   � 003  \0
0103950  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 206
0103960  \v  \0   �  \0 033  \0   �  \0     026   �  \0   �  \a  \0
0103970  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 177
0103980  \f  \0   �  \0 034  \0   �  \0     030   �  \0   Q 002  \0
0103990  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     214   z
01039a0  \r  \0   �  \0 035  \0   �  \0     032   �  \0   > 017  \0
01039b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   @
01039c0 016  \0   �  \0 036  \0   �  \0     034   �  \0 031  \t  \0
01039d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
01039e0 017  \0   �  \0 037  \0   �  \0     036   �  \0   � 002  \0
01039f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   $
0103a00  \0  \0   �  \0 020  \0   �  \0      \0   �  \0   �   _  \0
0103a10  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 225
0103a20 001  \0   �  \0 021  \0   �  \0     002   �  \0   ;  \t  \0
0103a30  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   Z
0103a40 002  \0   �  \0 022  \0   �  \0     004   �  \0 211  \v  \0
0103a50  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0103a60 003  \0   �  \0 023  \0   �  \0     006   �  \0 021 017  \0
0103a70  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0103a80 004  \0   �  \0 024  \0   �  \0      \b   �  \0   f 021  \0
0103a90  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0      \r   @
0103aa0 005  \0   �  \0 025  \0   �  \0      \n   �  \0   � 006  \0
0103ab0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 230
0103ac0 006  \0   �  \0 026  \0   �  \0      \f   �  \0   � 017  \0
0103ad0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       I   z
0103ae0  \a  \0   �  \0 027  \0   �  \0     016   �  \0   W  \0  \0
0103af0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       a   G
0103b00  \b  \0   �  \0 030  \0   �  \0     020   �  \0 200 017  \0
0103b10  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0      \r 234
0103b20  \t  \0   �  \0 031  \0   �  \0     022   �  \0   �  \t  \0
0103b30  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       o   �
0103b40  \n  \0   �  \0 032  \0   �  \0     024   �  \0   7  \v  \0
0103b50  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       m   �
0103b60  \v  \0   �  \0 033  \0   �  \0     026   �  \0  \0  \0  \0
0103b70  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     177   &
0103b80  \f  \0   �  \0 034  \0   �  \0     030   �  \0  \0  \0  \0
0103b90  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       { 204
0103ba0  \r  \0   �  \0 035  \0   �  \0     032   �  \0   2 003  \0
0103bb0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   c
0103bc0 016  \0   �  \0 036  \0   �  \0     034   �  \0   � 003  \0
0103bd0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   4
0103be0 017  \0   �  \0 037  \0   �  \0     036   �  \0   S 004  \0
0103bf0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0103c00  \0  \0   �  \0 020  \0   �  \0      \0   �  \0   �   _  \0
0103c10  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �  \0
0103c20 001  \0   �  \0 021  \0   �  \0     002   �  \0   n 006  \0
0103c30  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0103c40 002  \0   �  \0 022  \0   �  \0     004   �  \0   $  \a  \0
0103c50  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0103c60 003  \0   �  \0 023  \0   �  \0     006   �  \0 236 006  \0
0103c70  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       =   �
0103c80 004  \0   �  \0 024  \0   �  \0      \b   �  \0   � 002  \0
0103c90  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     030 206
0103ca0 005  \0   �  \0 025  \0   �  \0      \n   �  \0 021 006  \0
0103cb0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   /
0103cc0 006  \0   �  \0 026  \0   �  \0      \f   �  \0  \0  \0  \0
0103cd0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0         026
0103ce0  \a  \0   �  \0 027  \0   �  \0     016   �  \0  \0  \0  \0
0103cf0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0103d00  \b  \0   �  \0 030  \0   �  \0     020   �  \0  \0  \0  \0
0103d10  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       + 022
0103d20  \t  \0   �  \0 031  \0   �  \0     022   �  \0  \0  \0  \0
0103d30  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0103d40  \n  \0   �  \0 032  \0   �  \0     024   �  \0  \0  \0  \0
0103d50  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     236 023
0103d60  \v  \0   �  \0 033  \0   �  \0     026   �  \0   �  \a  \0
0103d70  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       R   �
0103d80  \f  \0   �  \0 034  \0   �  \0     030   �  \0  \a  \a  \0
0103d90  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       B   U
0103da0  \r  \0   �  \0 035  \0   �  \0     032   �  \0   � 003  \0
0103db0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0103dc0 016  \0   �  \0 036  \0   �  \0     034   �  \0   � 005  \0
0103dd0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   t
0103de0 017  \0   �  \0 037  \0   �  \0     036   �  \0   � 006  \0
0103df0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       O 213
0103e00  \0  \0   �  \0 020  \0   �  \0      \0   �  \0   �   _  \0
0103e10  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   s
0103e20 001  \0   �  \0 021  \0   �  \0     002   �  \0   i 006  \0
0103e30  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     034   �
0103e40 002  \0   �  \0 022  \0   �  \0     004   �  \0   � 002  \0
0103e50  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       ;   h
0103e60 003  \0   �  \0 023  \0   �  \0     006   �  \0 021  \b  \0
0103e70  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       U   =
0103e80 004  \0   �  \0 024  \0   �  \0      \b   �  \0 016  \b  \0
0103e90  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       f   M
0103ea0 005  \0   �  \0 025  \0   �  \0      \n   �  \0   k 006  \0
0103eb0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   ]
0103ec0 006  \0   �  \0 026  \0   �  \0      \f   �  \0   Z  \t  \0
0103ed0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0103ee0  \a  \0   �  \0 027  \0   �  \0     016   �  \0   � 001  \0
0103ef0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     030   �
0103f00  \b  \0   �  \0 030  \0   �  \0     020   �  \0   � 003  \0
0103f10  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     207   N
0103f20  \t  \0   �  \0 031  \0   �  \0     022   �  \0   B  \0  \0
0103f30  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       R   �
0103f40  \n  \0   �  \0 032  \0   �  \0     024   �  \0  \0  \0  \0
0103f50  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     210   `
0103f60  \v  \0   �  \0 033  \0   �  \0     026   �  \0   � 003  \0
0103f70  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       o   H
0103f80  \f  \0   �  \0 034  \0   �  \0     030   �  \0 211 005  \0
0103f90  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   E
0103fa0  \r  \0   �  \0 035  \0   �  \0     032   �  \0   0  \0  \0
0103fb0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     203   �
0103fc0 016  \0   �  \0 036  \0   �  \0     034   �  \0   �  \a  \0
0103fd0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0      \n   @
0103fe0 017  \0   �  \0 037  \0   �  \0     036   �  \0   H 004  \0
0103ff0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0104000  \0  \0   �  \0 020  \0   �  \0      \0   �  \0   �   _  \0
0104010  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     003   2
0104020 001  \0   �  \0 021  \0   �  \0     002   �  \0  \0  \0  \0
0104030  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 206
0104040 002  \0   �  \0 022  \0   �  \0     004   �  \0  \0  \0  \0
0104050  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     210   '
0104060 003  \0   �  \0 023  \0   �  \0     006   �  \0   F 006  \0
0104070  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       E   {
0104080 004  \0   �  \0 024  \0   �  \0      \b   �  \0 201  \n  \0
0104090  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0      \t 223
01040a0 005  \0   �  \0 025  \0   �  \0      \n   �  \0   < 005  \0
01040b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       S 210
01040c0 006  \0   �  \0 026  \0   �  \0      \f   �  \0   z 003  \0
01040d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       +   �
01040e0  \a  \0   �  \0 027  \0   �  \0     016   �  \0   4  \b  \0
01040f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   x
0104100  \b  \0   �  \0 030  \0   �  \0     020   �  \0   4 005  \0
0104110  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   O
0104120  \t  \0   �  \0 031  \0   �  \0     022   �  \0   � 005  \0
0104130  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0104140  \n  \0   �  \0 032  \0   �  \0     024   �  \0 223 001  \0
0104150  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0104160  \v  \0   �  \0 033  \0   �  \0     026   �  \0   2 005  \0
0104170  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       :   g
0104180  \f  \0   �  \0 034  \0   �  \0     030   �  \0 032 003  \0
0104190  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       T   �
01041a0  \r  \0   �  \0 035  \0   �  \0     032   �  \0   b  \a  \0
01041b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       U 024
01041c0 016  \0   �  \0 036  \0   �  \0     034   �  \0   8  \t  \0
01041d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       m 035
01041e0 017  \0   �  \0 037  \0   �  \0     036   �  \0   � 003  \0
01041f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0104200  \0  \0   �  \0 020  \0   �  \0      \0   �  \0   �   _  \0
0104210  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     025   A
0104220 001  \0   �  \0 021  \0   �  \0     002   �  \0 235 003  \0
0104230  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 207
0104240 002  \0   �  \0 022  \0   �  \0     004   �  \0   �  \a  \0
0104250  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0104260 003  \0   �  \0 023  \0   �  \0     006   �  \0   M  \a  \0
0104270  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       p   �
0104280 004  \0   �  \0 024  \0   �  \0      \b   �  \0   � 005  \0
0104290  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     026  \v
01042a0 005  \0   �  \0 025  \0   �  \0      \n   �  \0   7  \a  \0
01042b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     226   �
01042c0 006  \0   �  \0 026  \0   �  \0      \f   �  \0   �  \b  \0
01042d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0      \0   K
01042e0  \a  \0   �  \0 027  \0   �  \0     016   �  \0   � 005  \0
01042f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     226   �
0104300  \b  \0   �  \0 030  \0   �  \0     020   �  \0   �  \t  \0
0104310  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     025   =
0104320  \t  \0   �  \0 031  \0   �  \0     022   �  \0  \0  \0  \0
0104330  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       $   �
0104340  \n  \0   �  \0 032  \0   �  \0     024   �  \0   � 003  \0
0104350  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 206
0104360  \v  \0   �  \0 033  \0   �  \0     026   �  \0   � 017  \0
0104370  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0104380  \f  \0   �  \0 034  \0   �  \0     030   �  \0   ;  \b  \0
0104390  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       o   �
01043a0  \r  \0   �  \0 035  \0   �  \0     032   �  \0   \  \0  \0
01043b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     234   �
01043c0 016  \0   �  \0 036  \0   �  \0     034   �  \0  \0  \0  \0
01043d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0           Q
01043e0 017  \0   �  \0 037  \0   �  \0     036   �  \0   @  \b  \0
01043f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       i   �
0104400  \0  \0   �  \0 020  \0   �  \0      \0   �  \0   �   _  \0
0104410  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       /   �
0104420 001  \0   �  \0 021  \0   �  \0     002   �  \0  \0  \0  \0
0104430  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   `
0104440 002  \0   �  \0 022  \0   �  \0     004   �  \0  \0  \0  \0
0104450  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0104460 003  \0   �  \0 023  \0   �  \0     006   �  \0  \0  \0  \0
0104470  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     177   a
0104480 004  \0   �  \0 024  \0   �  \0      \b   �  \0  \0  \0  \0
0104490  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       {   �
01044a0 005  \0   �  \0 025  \0   �  \0      \n   �  \0  \0  \0  \0
01044b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   c
01044c0 006  \0   �  \0 026  \0   �  \0      \f   �  \0   G 003  \0
01044d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     232 223
01044e0  \a  \0   �  \0 027  \0   �  \0     016   �  \0  \0  \0  \0
01044f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     025   b
0104500  \b  \0   �  \0 030  \0   �  \0     020   �  \0  \0  \0  \0
0104510  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0104520  \t  \0   �  \0 031  \0   �  \0     022   �  \0   5 004  \0
0104530  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       C   e
0104540  \n  \0   �  \0 032  \0   �  \0     024   �  \0   / 003  \0
0104550  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0104560  \v  \0   �  \0 033  \0   �  \0     026   �  \0  \0  \0  \0
0104570  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   g
0104580  \f  \0   �  \0 034  \0   �  \0     030   �  \0 231  \a  \0
0104590  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   G
01045a0  \r  \0   �  \0 035  \0   �  \0     032   �  \0   Z 002  \0
01045b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
01045c0 016  \0   �  \0 036  \0   �  \0     034   �  \0  \0  \0  \0
01045d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     032   �
01045e0 017  \0   �  \0 037  \0   �  \0     036   �  \0   x 001  \0
01045f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0      \b   M
0104600  \0  \0   �  \0 020  \0   �  \0      \0   �  \0   �   _  \0
0104610  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       9   �
0104620 001  \0   �  \0 021  \0   �  \0     002   �  \0   1 005  \0
0104630  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     221   �
0104640 002  \0   �  \0 022  \0   �  \0     004   �  \0 205 004  \0
0104650  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   V
0104660 003  \0   �  \0 023  \0   �  \0     006   �  \0   6 001  \0
0104670  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 004
0104680 004  \0   �  \0 024  \0   �  \0      \b   �  \0 226  \0  \0
0104690  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 024
01046a0 005  \0   �  \0 025  \0   �  \0      \n   �  \0  \n 001  \0
01046b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   Z
01046c0 006  \0   �  \0 026  \0   �  \0      \f   �  \0   Z 003  \0
01046d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     032 212
01046e0  \a  \0   �  \0 027  \0   �  \0     016   �  \0 223 001  \0
01046f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     217   �
0104700  \b  \0   �  \0 030  \0   �  \0     020   �  \0   � 002  \0
0104710  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     025 003
0104720  \t  \0   �  \0 031  \0   �  \0     022   �  \0   ' 001  \0
0104730  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   :
0104740  \n  \0   �  \0 032  \0   �  \0     024   �  \0  \0  \0  \0
0104750  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       f   �
0104760  \v  \0   �  \0 033  \0   �  \0     026   �  \0  \0  \0  \0
0104770  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 024
0104780  \f  \0   �  \0 034  \0   �  \0     030   �  \0  \0  \0  \0
0104790  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
01047a0  \r  \0   �  \0 035  \0   �  \0     032   �  \0  \0  \0  \0
01047b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       b 026
01047c0 016  \0   �  \0 036  \0   �  \0     034   �  \0  \0  \0  \0
01047d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0      \f   �
01047e0 017  \0   �  \0 037  \0   �  \0     036   �  \0  \0  \0  \0
01047f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 027
0104800  \0  \0   �  \0 020  \0   �  \0      \0   �  \0   �   X  \0
0104810  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   b
0104820 001  \0   �  \0 021  \0   �  \0     002   �  \0  \0  \0  \0
0104830  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �  \n
0104840 002  \0   �  \0 022  \0   �  \0     004   �  \0  \0  \0  \0
0104850  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0104860 003  \0   �  \0 023  \0   �  \0     006   �  \0  \0  \0  \0
0104870  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0      \b  \v
0104880 004  \0   �  \0 024  \0   �  \0      \b   �  \0  \0  \0  \0
0104890  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0      \f   �
01048a0 005  \0   �  \0 025  \0   �  \0      \n   �  \0  \0  \0  \0
01048b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �  \t
01048c0 006  \0   �  \0 026  \0   �  \0      \f   �  \0  \0  \0  \0
01048d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
01048e0  \a  \0   �  \0 027  \0   �  \0     016   �  \0  \0  \0  \0
01048f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       b  \b
0104900  \b  \0   �  \0 030  \0   �  \0     020   �  \0  \0  \0  \0
0104910  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0104920  \t  \0   �  \0 031  \0   �  \0     022   �  \0  \0  \0  \0
0104930  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       i  \f
0104940  \n  \0   �  \0 032  \0   �  \0     024   �  \0  \0  \0  \0
0104950  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0      \a   �
0104960  \v  \0   �  \0 033  \0   �  \0     026   �  \0  \0  \0  \0
0104970  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �  \r
0104980  \f  \0   �  \0 034  \0   �  \0     030   �  \0  \0  \0  \0
0104990  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
01049a0  \r  \0   �  \0 035  \0   �  \0     032   �  \0  \0  \0  \0
01049b0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     003 017
01049c0 016  \0   �  \0 036  \0   �  \0     034   �  \0  \0  \0  \0
01049d0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       m   �
01049e0 017  \0   �  \0 037  \0   �  \0     036   �  \0  \0  \0  \0
01049f0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       � 016
0104a00  \0  \0   �  \0 020  \0   �  \0      \0   �  \0   �   _  \0
0104a10  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       N   �
0104a20 001  \0   �  \0 021  \0   �  \0     002   �  \0  \0  \0  \0
0104a30  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   y
0104a40 002  \0   �  \0 022  \0   �  \0     004   �  \0  \0  \0  \0
0104a50  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0104a60 003  \0   �  \0 023  \0   �  \0     006   �  \0  \0  \0  \0
0104a70  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     036   x
0104a80 004  \0   �  \0 024  \0   �  \0      \b   �  \0  \0  \0  \0
0104a90  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     032   �
0104aa0 005  \0   �  \0 025  \0   �  \0      \n   �  \0  \0  \0  \0
0104ab0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   z
0104ac0 006  \0   �  \0 026  \0   �  \0      \f   �  \0  \0  \0  \0
0104ad0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0104ae0  \a  \0   �  \0 027  \0   �  \0     016   �  \0  \0  \0  \0
0104af0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       t   {
0104b00  \b  \0   �  \0 030  \0   �  \0     020   �  \0  \0  \0  \0
0104b10  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0104b20  \t  \0   �  \0 031  \0   �  \0     022   �  \0  \0  \0  \0
0104b30  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     177 177
0104b40  \n  \0   �  \0 032  \0   �  \0     024   �  \0  \0  \0  \0
0104b50  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     021   �
0104b60  \v  \0   �  \0 033  \0   �  \0     026   �  \0  \0  \0  \0
0104b70  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   ~
0104b80  \f  \0   �  \0 034  \0   �  \0     030   �  \0  \0  \0  \0
0104b90  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   �
0104ba0  \r  \0   �  \0 035  \0   �  \0     032   �  \0  \0  \0  \0
0104bb0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0     025   |
0104bc0 016  \0   �  \0 036  \0   �  \0     034   �  \0  \0  \0  \0
0104bd0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       {   �
0104be0 017  \0   �  \0 037  \0   �  \0     036   �  \0  \0  \0  \0
0104bf0  \0  \0 005  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0       �   }
root@debianbase:/#


According to the responses I have something at md0 and you have
the first 1000 lines of hexdump. (Sorry the hexdump doesn't tell
me anything - - - unless its that there seem to be some lines missing
there isn't anything from 0000000 to 000001c0 and 00001e0 is missing,
then 0000260 to 0100400 are missing, also missing are 0100580 to
0101000 with each of the lists being non-inclusive of noted lines.)

I am going to be out for a few hours, will check in after that.

Dee
--
To unsubscribe from this list: send the line "unsubscribe linux-raid" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: Advice requested
  2015-11-03  0:44               ` o1bigtenor
@ 2015-11-03  0:57                 ` Phil Turmel
  2015-11-03  1:02                   ` o1bigtenor
  0 siblings, 1 reply; 22+ messages in thread
From: Phil Turmel @ 2015-11-03  0:57 UTC (permalink / raw)
  To: o1bigtenor; +Cc: Linux-RAID

On 11/02/2015 07:44 PM, o1bigtenor wrote:

> root@debianbase:/# dd if=/dev/md0 bs=1M count=16 |hexdump -c |head -n 1000
> 0000000  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0

Please use a capital 'C' as the hexdump option.

Hexdump collapses repeated data as a convenience ... that I was counting on.

Phil


^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: Advice requested
  2015-11-03  0:57                 ` Phil Turmel
@ 2015-11-03  1:02                   ` o1bigtenor
  2015-11-03  1:55                     ` Phil Turmel
  0 siblings, 1 reply; 22+ messages in thread
From: o1bigtenor @ 2015-11-03  1:02 UTC (permalink / raw)
  To: Phil Turmel; +Cc: Linux-RAID

On Mon, Nov 2, 2015 at 6:57 PM, Phil Turmel <philip@turmel.org> wrote:
> On 11/02/2015 07:44 PM, o1bigtenor wrote:
>
>> root@debianbase:/# dd if=/dev/md0 bs=1M count=16 |hexdump -c |head -n 1000
>> 0000000  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0
>
> Please use a capital 'C' as the hexdump option.
>
> Hexdump collapses repeated data as a convenience ... that I was counting on.

root@debianbase:/# dd if=/dev/md0 bs=1M count=16 |hexdump -C |head -n 1000
00000000  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
000001c0  01 00 ee fe ff ff 01 00  00 00 ff a7 e0 e8 00 00  |................|
000001d0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
000001f0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 55 aa  |..............U.|
00000200  45 46 49 20 50 41 52 54  00 00 01 00 5c 00 00 00  |EFI PART....\...|
00000210  38 46 4c 5d 00 00 00 00  01 00 00 00 00 00 00 00  |8FL]............|
00000220  ff a7 e0 e8 00 00 00 00  22 00 00 00 00 00 00 00  |........".......|
00000230  de a7 e0 e8 00 00 00 00  93 77 b4 1e df 0c 16 4e  |.........w.....N|
00000240  ae 84 33 ec 82 5a c4 48  02 00 00 00 00 00 00 00  |..3..Z.H........|
00000250  80 00 00 00 80 00 00 00  86 d2 54 ab 00 00 00 00  |..........T.....|
00000260  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00100400  00 20 47 07 00 14 1c 1d  99 9a 74 01 f0 80 72 18  |. G.......t...r.|
00100410  83 b0 3d 07 00 00 00 00  02 00 00 00 02 00 00 00  |..=.............|
00100420  00 80 00 00 00 80 00 00  00 20 00 00 fa 46 d5 55  |......... ...F.U|
00100430  78 80 e0 55 5a 00 27 00  53 ef 01 00 01 00 00 00  |x..UZ.'.S.......|
00100440  1e de 6d 52 00 4e ed 00  00 00 00 00 01 00 00 00  |..mR.N..........|
00100450  00 00 00 00 0b 00 00 00  00 01 00 00 3c 00 00 00  |............<...|
00100460  42 02 00 00 7b 00 00 00  49 55 20 36 b4 6f 49 56  |B...{...IU 6.oIV|
00100470  ad e9 35 41 a3 dd 7f 0a  00 00 00 00 00 00 00 00  |..5A............|
00100480  00 00 00 00 00 00 00 00  2f 6d 65 64 69 61 2f 64  |......../media/d|
00100490  61 72 61 6c 64 2f 34 39  35 35 32 30 33 36 2d 62  |arald/49552036-b|
001004a0  34 36 66 2d 34 39 35 36  2d 61 64 65 39 2d 33 35  |46f-4956-ade9-35|
001004b0  34 31 61 33 64 64 37 66  30 61 00 00 00 00 00 00  |41a3dd7f0a......|
001004c0  00 00 d8 60 0f fa 0f 88  00 00 00 00 00 00 8b 03  |...`............|
001004d0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
001004e0  08 00 00 00 00 00 00 00  00 00 00 00 c7 2a e8 cd  |.............*..|
001004f0  c2 6f 4d 09 8f c2 2b 44  fc 95 b6 5e 01 01 00 00  |.oM...+D...^....|
00100500  00 00 00 00 00 00 00 00  a1 25 65 4f 0a f3 02 00  |.........%eO....|
00100510  04 00 00 00 00 00 00 00  00 00 00 00 ff 7f 00 00  |................|
00100520  00 80 88 0e ff 7f 00 00  01 00 00 00 ff ff 88 0e  |................|
00100530  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00100540  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 08  |................|
00100550  00 00 00 00 00 00 00 00  00 00 00 00 1c 00 1c 00  |................|
00100560  01 00 00 00 80 00 00 00  00 00 00 00 00 00 00 00  |................|
00100570  00 01 00 00 04 00 00 00  a8 96 ac 12 00 00 00 00  |................|
00100580  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00101000  01 04 00 00 11 04 00 00  21 04 00 00 d8 5b f4 1f  |........!....[..|
00101010  02 00 04 00 00 00 00 00  00 00 00 00 f2 1f e8 54  |...............T|
00101020  02 04 00 00 12 04 00 00  21 06 00 00 45 01 00 20  |........!...E.. |
00101030  00 00 05 00 00 00 00 00  00 00 00 00 00 20 a5 3c  |............. .<|
00101040  03 04 00 00 13 04 00 00  21 08 00 00 ea 06 00 20  |........!...... |
00101050  00 00 05 00 00 00 00 00  00 00 00 00 00 20 10 ce  |............. ..|
00101060  04 04 00 00 14 04 00 00  21 0a 00 00 f1 28 00 20  |........!....(. |
00101070  00 00 05 00 00 00 00 00  00 00 00 00 00 20 d3 04  |............. ..|
00101080  05 04 00 00 15 04 00 00  21 0c 00 00 00 00 00 20  |........!...... |
00101090  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b1 09  |............. ..|
001010a0  06 04 00 00 16 04 00 00  21 0e 00 00 0b 02 00 20  |........!...... |
001010b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 48 f0  |............. H.|
001010c0  07 04 00 00 17 04 00 00  21 10 00 00 00 00 00 20  |........!...... |
001010d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 9f d1  |............. ..|
001010e0  08 04 00 00 18 04 00 00  21 12 00 00 83 03 00 20  |........!...... |
001010f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ba 72  |............. .r|
00101100  09 04 00 00 19 04 00 00  21 14 00 00 00 00 00 20  |........!...... |
00101110  00 00 05 00 00 00 00 00  00 00 00 00 00 20 0f 0c  |............. ..|
00101120  0a 04 00 00 1a 04 00 00  21 16 00 00 ff 01 00 20  |........!...... |
00101130  00 00 05 00 00 00 00 00  00 00 00 00 00 20 74 07  |............. t.|
00101140  0b 04 00 00 1b 04 00 00  21 18 00 00 00 00 00 20  |........!...... |
00101150  00 00 05 00 00 00 00 00  00 00 00 00 00 20 33 45  |............. 3E|
00101160  0c 04 00 00 1c 04 00 00  21 1a 00 00 d2 01 00 20  |........!...... |
00101170  00 00 05 00 00 00 00 00  00 00 00 00 00 20 33 14  |............. 3.|
00101180  0d 04 00 00 1d 04 00 00  21 1c 00 00 f3 03 00 20  |........!...... |
00101190  00 00 05 00 00 00 00 00  00 00 00 00 00 20 56 88  |............. V.|
001011a0  0e 04 00 00 1e 04 00 00  21 1e 00 00 29 06 00 20  |........!...).. |
001011b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 74 45  |............. tE|
001011c0  0f 04 00 00 1f 04 00 00  21 20 00 00 27 02 00 20  |........! ..'.. |
001011d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 77 6a  |............. wj|
001011e0  10 04 00 00 20 04 00 00  21 22 00 00 03 01 00 20  |.... ...!"..... |
001011f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 62 de  |............. b.|
00101200  00 00 08 00 10 00 08 00  20 00 08 00 d0 59 00 20  |........ ....Y. |
00101210  00 00 05 00 00 00 00 00  00 00 00 00 00 20 26 06  |............. &.|
00101220  01 00 08 00 11 00 08 00  20 02 08 00 5c 01 00 20  |........ ...\.. |
00101230  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ac ce  |............. ..|
00101240  02 00 08 00 12 00 08 00  20 04 08 00 09 01 00 20  |........ ...... |
00101250  00 00 05 00 00 00 00 00  00 00 00 00 00 20 c3 b3  |............. ..|
00101260  03 00 08 00 13 00 08 00  20 06 08 00 81 00 00 20  |........ ...... |
00101270  00 00 05 00 00 00 00 00  00 00 00 00 00 20 e2 09  |............. ..|
00101280  04 00 08 00 14 00 08 00  20 08 08 00 f7 02 00 20  |........ ...... |
00101290  00 00 05 00 00 00 00 00  00 00 00 00 00 20 bd 99  |............. ..|
001012a0  05 00 08 00 15 00 08 00  20 0a 08 00 79 04 00 20  |........ ...y.. |
001012b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ce 9b  |............. ..|
001012c0  06 00 08 00 16 00 08 00  20 0c 08 00 35 04 00 20  |........ ...5.. |
001012d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 76 bd  |............. v.|
001012e0  07 00 08 00 17 00 08 00  20 0e 08 00 4c 01 00 20  |........ ...L.. |
001012f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 77 09  |............. w.|
00101300  08 00 08 00 18 00 08 00  20 10 08 00 00 00 00 20  |........ ...... |
00101310  00 00 05 00 00 00 00 00  00 00 00 00 00 20 20 ba  |.............  .|
00101320  09 00 08 00 19 00 08 00  20 12 08 00 63 01 00 20  |........ ...c.. |
00101330  00 00 05 00 00 00 00 00  00 00 00 00 00 20 44 d0  |............. D.|
00101340  0a 00 08 00 1a 00 08 00  20 14 08 00 00 00 00 20  |........ ...... |
00101350  00 00 05 00 00 00 00 00  00 00 00 00 00 20 95 bb  |............. ..|
00101360  0b 00 08 00 1b 00 08 00  20 16 08 00 bd 01 00 20  |........ ...... |
00101370  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ab c3  |............. ..|
00101380  0c 00 08 00 1c 00 08 00  20 18 08 00 5d 05 00 20  |........ ...].. |
00101390  00 00 05 00 00 00 00 00  00 00 00 00 00 20 da 56  |............. .V|
001013a0  0d 00 08 00 1d 00 08 00  20 1a 08 00 e9 03 00 20  |........ ...... |
001013b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 85 81  |............. ..|
001013c0  0e 00 08 00 1e 00 08 00  20 1c 08 00 48 03 00 20  |........ ...H.. |
001013d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 98 fe  |............. ..|
001013e0  0f 00 08 00 1f 00 08 00  20 1e 08 00 53 04 00 20  |........ ...S.. |
001013f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 87 8c  |............. ..|
00101400  00 00 10 00 10 00 10 00  20 00 10 00 e0 5f 00 20  |........ ...._. |
00101410  00 00 05 00 00 00 00 00  00 00 00 00 00 20 f0 3d  |............. .=|
00101420  01 00 10 00 11 00 10 00  20 02 10 00 83 00 00 20  |........ ...... |
00101430  00 00 05 00 00 00 00 00  00 00 00 00 00 20 cc 25  |............. .%|
00101440  02 00 10 00 12 00 10 00  20 04 10 00 e8 02 00 20  |........ ...... |
00101450  00 00 05 00 00 00 00 00  00 00 00 00 00 20 6f dc  |............. o.|
00101460  03 00 10 00 13 00 10 00  20 06 10 00 00 00 00 20  |........ ...... |
00101470  00 00 05 00 00 00 00 00  00 00 00 00 00 20 a0 88  |............. ..|
00101480  04 00 10 00 14 00 10 00  20 08 10 00 00 00 00 20  |........ ...... |
00101490  00 00 05 00 00 00 00 00  00 00 00 00 00 20 a4 2a  |............. .*|
001014a0  05 00 10 00 15 00 10 00  20 0a 10 00 60 00 00 20  |........ ...`.. |
001014b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 61 94  |............. a.|
001014c0  06 00 10 00 16 00 10 00  20 0c 10 00 00 00 00 20  |........ ...... |
001014d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 11 2b  |............. .+|
001014e0  07 00 10 00 17 00 10 00  20 0e 10 00 c1 00 00 20  |........ ...... |
001014f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 a7 4b  |............. .K|
00101500  08 00 10 00 18 00 10 00  20 10 10 00 0d 03 00 20  |........ ...... |
00101510  00 00 05 00 00 00 00 00  00 00 00 00 00 20 78 70  |............. xp|
00101520  09 00 10 00 19 00 10 00  20 12 10 00 c6 03 00 20  |........ ...... |
00101530  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ed ca  |............. ..|
00101540  0a 00 10 00 1a 00 10 00  20 14 10 00 f7 01 00 20  |........ ...... |
00101550  00 00 05 00 00 00 00 00  00 00 00 00 00 20 7c f8  |............. |.|
00101560  0b 00 10 00 1b 00 10 00  20 16 10 00 6a 01 00 20  |........ ...j.. |
00101570  00 00 05 00 00 00 00 00  00 00 00 00 00 20 18 da  |............. ..|
00101580  0c 00 10 00 1c 00 10 00  20 18 10 00 7f 01 00 20  |........ ...... |
00101590  00 00 05 00 00 00 00 00  00 00 00 00 00 20 08 70  |............. .p|
001015a0  0d 00 10 00 1d 00 10 00  20 1a 10 00 00 00 00 20  |........ ...... |
001015b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ab 8c  |............. ..|
001015c0  0e 00 10 00 1e 00 10 00  20 1c 10 00 00 00 00 20  |........ ...... |
001015d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 c5 2d  |............. .-|
001015e0  0f 00 10 00 1f 00 10 00  20 1e 10 00 3d 00 00 20  |........ ...=.. |
001015f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 83 2d  |............. .-|
00101600  00 00 18 00 10 00 18 00  20 00 18 00 37 5e 00 20  |........ ...7^. |
00101610  00 00 05 00 00 00 00 00  00 00 00 00 00 20 3e 52  |............. >R|
00101620  01 00 18 00 11 00 18 00  20 02 18 00 28 00 00 20  |........ ...(.. |
00101630  00 00 05 00 00 00 00 00  00 00 00 00 00 20 8a 52  |............. .R|
00101640  02 00 18 00 12 00 18 00  20 04 18 00 57 02 00 20  |........ ...W.. |
00101650  00 00 05 00 00 00 00 00  00 00 00 00 00 20 6c 5f  |............. l_|
00101660  03 00 18 00 13 00 18 00  20 06 18 00 00 00 00 20  |........ ...... |
00101670  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b6 fb  |............. ..|
00101680  04 00 18 00 14 00 18 00  20 08 18 00 00 00 00 20  |........ ...... |
00101690  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b2 59  |............. .Y|
001016a0  05 00 18 00 15 00 18 00  20 0a 18 00 00 00 00 20  |........ ...... |
001016b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 69 f9  |............. i.|
001016c0  06 00 18 00 16 00 18 00  20 0c 18 00 10 02 00 20  |........ ...... |
001016d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 a2 fd  |............. ..|
001016e0  07 00 18 00 17 00 18 00  20 0e 18 00 00 00 00 20  |........ ...... |
001016f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 dc f8  |............. ..|
00101700  08 00 18 00 18 00 18 00  20 10 18 00 00 00 00 20  |........ ...... |
00101710  00 00 05 00 00 00 00 00  00 00 00 00 00 20 0c 5c  |............. .\|
00101720  09 00 18 00 19 00 18 00  20 12 18 00 4d 04 00 20  |........ ...M.. |
00101730  00 00 05 00 00 00 00 00  00 00 00 00 00 20 12 46  |............. .F|
00101740  0a 00 18 00 1a 00 18 00  20 14 18 00 8f 05 00 20  |........ ...... |
00101750  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b0 f3  |............. ..|
00101760  0b 00 18 00 1b 00 18 00  20 16 18 00 13 02 00 20  |........ ...... |
00101770  00 00 05 00 00 00 00 00  00 00 00 00 00 20 37 1c  |............. 7.|
00101780  0c 00 18 00 1c 00 18 00  20 18 18 00 fb 01 00 20  |........ ...... |
00101790  00 00 05 00 00 00 00 00  00 00 00 00 00 20 76 da  |............. v.|
001017a0  0d 00 18 00 1d 00 18 00  20 1a 18 00 1c 04 00 20  |........ ...... |
001017b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 38 a8  |............. 8.|
001017c0  0e 00 18 00 1e 00 18 00  20 1c 18 00 5c 05 00 20  |........ ...\.. |
001017d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 12 4d  |............. .M|
001017e0  0f 00 18 00 1f 00 18 00  20 1e 18 00 fa 01 00 20  |........ ...... |
001017f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 49 87  |............. I.|
00101800  00 00 20 00 10 00 20 00  20 00 20 00 e0 5f 00 20  |.. ... . . .._. |
00101810  00 00 05 00 00 00 00 00  00 00 00 00 00 20 87 57  |............. .W|
00101820  01 00 20 00 11 00 20 00  20 02 20 00 00 00 00 20  |.. ... . . .... |
00101830  00 00 05 00 00 00 00 00  00 00 00 00 00 20 62 e3  |............. b.|
00101840  02 00 20 00 12 00 20 00  20 04 20 00 00 00 00 20  |.. ... . . .... |
00101850  00 00 05 00 00 00 00 00  00 00 00 00 00 20 0c 42  |............. .B|
00101860  03 00 20 00 13 00 20 00  20 06 20 00 dd 02 00 20  |.. ... . . .... |
00101870  00 00 05 00 00 00 00 00  00 00 00 00 00 20 dc d4  |............. ..|
00101880  04 00 20 00 14 00 20 00  20 08 20 00 ac 05 00 20  |.. ... . . .... |
00101890  00 00 05 00 00 00 00 00  00 00 00 00 00 20 21 60  |............. !`|
001018a0  05 00 20 00 15 00 20 00  20 0a 20 00 36 00 00 20  |.. ... . . .6.. |
001018b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 e7 66  |............. .f|
001018c0  06 00 20 00 16 00 20 00  20 0c 20 00 96 02 00 20  |.. ... . . .... |
001018d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 0a 85  |............. ..|
001018e0  07 00 20 00 17 00 20 00  20 0e 20 00 6b 03 00 20  |.. ... . . .k.. |
001018f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 21 29  |............. !)|
00101900  08 00 20 00 18 00 20 00  20 10 20 00 00 00 00 20  |.. ... . . .... |
00101910  00 00 05 00 00 00 00 00  00 00 00 00 00 20 6d 45  |............. mE|
00101920  09 00 20 00 19 00 20 00  20 12 20 00 40 01 00 20  |.. ... . . .@.. |
00101930  00 00 05 00 00 00 00 00  00 00 00 00 00 20 f2 a1  |............. ..|
00101940  0a 00 20 00 1a 00 20 00  20 14 20 00 c7 02 00 20  |.. ... . . .... |
00101950  00 00 05 00 00 00 00 00  00 00 00 00 00 20 f4 6d  |............. .m|
00101960  0b 00 20 00 1b 00 20 00  20 16 20 00 00 00 00 20  |.. ... . . .... |
00101970  00 00 05 00 00 00 00 00  00 00 00 00 00 20 03 e4  |............. ..|
00101980  0c 00 20 00 1c 00 20 00  20 18 20 00 00 00 00 20  |.. ... . . .... |
00101990  00 00 05 00 00 00 00 00  00 00 00 00 00 20 07 46  |............. .F|
001019a0  0d 00 20 00 1d 00 20 00  20 1a 20 00 00 00 00 20  |.. ... . . .... |
001019b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 dc e6  |............. ..|
001019c0  0e 00 20 00 1e 00 20 00  20 1c 20 00 00 00 00 20  |.. ... . . .... |
001019d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b2 47  |............. .G|
001019e0  0f 00 20 00 1f 00 20 00  20 1e 20 00 00 01 00 20  |.. ... . . .... |
001019f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 38 77  |............. 8w|
00101a00  00 00 28 00 10 00 28 00  20 00 28 00 e0 5f 00 20  |..(...(. .(.._. |
00101a10  00 00 05 00 00 00 00 00  00 00 00 00 00 20 91 24  |............. .$|
00101a20  01 00 28 00 11 00 28 00  20 02 28 00 e8 03 00 20  |..(...(. .(.... |
00101a30  00 00 05 00 00 00 00 00  00 00 00 00 00 20 31 f4  |............. 1.|
00101a40  02 00 28 00 12 00 28 00  20 04 28 00 00 00 00 20  |..(...(. .(.... |
00101a50  00 00 05 00 00 00 00 00  00 00 00 00 00 20 1a 31  |............. .1|
00101a60  03 00 28 00 13 00 28 00  20 06 28 00 99 02 00 20  |..(...(. .(.... |
00101a70  00 00 05 00 00 00 00 00  00 00 00 00 00 20 9e 42  |............. .B|
00101a80  04 00 28 00 14 00 28 00  20 08 28 00 00 00 00 20  |..(...(. .(.... |
00101a90  00 00 05 00 00 00 00 00  00 00 00 00 00 20 c5 33  |............. .3|
00101aa0  05 00 28 00 15 00 28 00  20 0a 28 00 00 00 00 20  |..(...(. .(.... |
00101ab0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 1e 93  |............. ..|
00101ac0  06 00 28 00 16 00 28 00  20 0c 28 00 00 00 00 20  |..(...(. .(.... |
00101ad0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 70 32  |............. p2|
00101ae0  07 00 28 00 17 00 28 00  20 0e 28 00 41 03 00 20  |..(...(. .(.A.. |
00101af0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 1f 4a  |............. .J|
00101b00  08 00 28 00 18 00 28 00  20 10 28 00 00 00 00 20  |..(...(. .(.... |
00101b10  00 00 05 00 00 00 00 00  00 00 00 00 00 20 7b 36  |............. {6|
00101b20  09 00 28 00 19 00 28 00  20 12 28 00 a7 02 00 20  |..(...(. .(.... |
00101b30  00 00 05 00 00 00 00 00  00 00 00 00 00 20 92 a1  |............. ..|
00101b40  0a 00 28 00 1a 00 28 00  20 14 28 00 00 00 00 20  |..(...(. .(.... |
00101b50  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ce 37  |............. .7|
00101b60  0b 00 28 00 1b 00 28 00  20 16 28 00 00 00 00 20  |..(...(. .(.... |
00101b70  00 00 05 00 00 00 00 00  00 00 00 00 00 20 15 97  |............. ..|
00101b80  0c 00 28 00 1c 00 28 00  20 18 28 00 bf 03 00 20  |..(...(. .(.... |
00101b90  00 00 05 00 00 00 00 00  00 00 00 00 00 20 f4 35  |............. .5|
00101ba0  0d 00 28 00 1d 00 28 00  20 1a 28 00 00 00 00 20  |..(...(. .(.... |
00101bb0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ca 95  |............. ..|
00101bc0  0e 00 28 00 1e 00 28 00  20 1c 28 00 00 00 00 20  |..(...(. .(.... |
00101bd0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 a4 34  |............. .4|
00101be0  0f 00 28 00 1f 00 28 00  20 1e 28 00 64 03 00 20  |..(...(. .(.d.. |
00101bf0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 d0 4b  |............. .K|
00101c00  00 00 30 00 10 00 30 00  20 00 30 00 e0 5f 00 20  |..0...0. .0.._. |
00101c10  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ab b1  |............. ..|
00101c20  01 00 30 00 11 00 30 00  20 02 30 00 00 00 00 20  |..0...0. .0.... |
00101c30  00 00 05 00 00 00 00 00  00 00 00 00 00 20 4e 05  |............. N.|
00101c40  02 00 30 00 12 00 30 00  20 04 30 00 00 00 00 20  |..0...0. .0.... |
00101c50  00 00 05 00 00 00 00 00  00 00 00 00 00 20 20 a4  |.............  .|
00101c60  03 00 30 00 13 00 30 00  20 06 30 00 00 00 00 20  |..0...0. .0.... |
00101c70  00 00 05 00 00 00 00 00  00 00 00 00 00 20 fb 04  |............. ..|
00101c80  04 00 30 00 14 00 30 00  20 08 30 00 00 00 00 20  |..0...0. .0.... |
00101c90  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ff a6  |............. ..|
00101ca0  05 00 30 00 15 00 30 00  20 0a 30 00 00 00 00 20  |..0...0. .0.... |
00101cb0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 24 06  |............. $.|
00101cc0  06 00 30 00 16 00 30 00  20 0c 30 00 98 01 00 20  |..0...0. .0.... |
00101cd0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b4 78  |............. .x|
00101ce0  07 00 30 00 17 00 30 00  20 0e 30 00 00 00 00 20  |..0...0. .0.... |
00101cf0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 91 07  |............. ..|
00101d00  08 00 30 00 18 00 30 00  20 10 30 00 00 00 00 20  |..0...0. .0.... |
00101d10  00 00 05 00 00 00 00 00  00 00 00 00 00 20 41 a3  |............. A.|
00101d20  09 00 30 00 19 00 30 00  20 12 30 00 00 00 00 20  |..0...0. .0.... |
00101d30  00 00 05 00 00 00 00 00  00 00 00 00 00 20 9a 03  |............. ..|
00101d40  0a 00 30 00 1a 00 30 00  20 14 30 00 e0 00 00 20  |..0...0. .0.... |
00101d50  00 00 05 00 00 00 00 00  00 00 00 00 00 20 c3 54  |............. .T|
00101d60  0b 00 30 00 1b 00 30 00  20 16 30 00 00 00 00 20  |..0...0. .0.... |
00101d70  00 00 05 00 00 00 00 00  00 00 00 00 00 20 2f 02  |............. /.|
00101d80  0c 00 30 00 1c 00 30 00  20 18 30 00 00 00 00 20  |..0...0. .0.... |
00101d90  00 00 05 00 00 00 00 00  00 00 00 00 00 20 2b a0  |............. +.|
00101da0  0d 00 30 00 1d 00 30 00  20 1a 30 00 00 00 00 20  |..0...0. .0.... |
00101db0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 f0 00  |............. ..|
00101dc0  0e 00 30 00 1e 00 30 00  20 1c 30 00 00 00 00 20  |..0...0. .0.... |
00101dd0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 9e a1  |............. ..|
00101de0  0f 00 30 00 1f 00 30 00  20 1e 30 00 68 09 00 20  |..0...0. .0.h.. |
00101df0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 0f 2f  |............. ./|
00101e00  00 00 38 00 10 00 38 00  20 00 38 00 e0 5f 00 20  |..8...8. .8.._. |
00101e10  00 00 05 00 00 00 00 00  00 00 00 00 00 20 bd c2  |............. ..|
00101e20  01 00 38 00 11 00 38 00  20 02 38 00 a2 00 00 20  |..8...8. .8.... |
00101e30  00 00 05 00 00 00 00 00  00 00 00 00 00 20 db ec  |............. ..|
00101e40  02 00 38 00 12 00 38 00  20 04 38 00 00 00 00 20  |..8...8. .8.... |
00101e50  00 00 05 00 00 00 00 00  00 00 00 00 00 20 36 d7  |............. 6.|
00101e60  03 00 38 00 13 00 38 00  20 06 38 00 b4 01 00 20  |..8...8. .8.... |
00101e70  00 00 05 00 00 00 00 00  00 00 00 00 00 20 db 31  |............. .1|
00101e80  04 00 38 00 14 00 38 00  20 08 38 00 46 05 00 20  |..8...8. .8.F.. |
00101e90  00 00 05 00 00 00 00 00  00 00 00 00 00 20 0f d9  |............. ..|
00101ea0  05 00 38 00 15 00 38 00  20 0a 38 00 9a 05 00 20  |..8...8. .8.... |
00101eb0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 2f d3  |............. /.|
00101ec0  06 00 38 00 16 00 38 00  20 0c 38 00 65 03 00 20  |..8...8. .8.e.. |
00101ed0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 a2 f7  |............. ..|
00101ee0  07 00 38 00 17 00 38 00  20 0e 38 00 5f 04 00 20  |..8...8. .8._.. |
00101ef0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 e7 b3  |............. ..|
00101f00  08 00 38 00 18 00 38 00  20 10 38 00 9a 01 00 20  |..8...8. .8.... |
00101f10  00 00 05 00 00 00 00 00  00 00 00 00 00 20 08 b7  |............. ..|
00101f20  09 00 38 00 19 00 38 00  20 12 38 00 6d 05 00 20  |..8...8. .8.m.. |
00101f30  00 00 05 00 00 00 00 00  00 00 00 00 00 20 13 90  |............. ..|
00101f40  0a 00 38 00 1a 00 38 00  20 14 38 00 00 00 00 20  |..8...8. .8.... |
00101f50  00 00 05 00 00 00 00 00  00 00 00 00 00 20 e2 d1  |............. ..|
00101f60  0b 00 38 00 1b 00 38 00  20 16 38 00 00 00 00 20  |..8...8. .8.... |
00101f70  00 00 05 00 00 00 00 00  00 00 00 00 00 20 39 71  |............. 9q|
00101f80  0c 00 38 00 1c 00 38 00  20 18 38 00 5a 07 00 20  |..8...8. .8.Z.. |
00101f90  00 00 05 00 00 00 00 00  00 00 00 00 00 20 bd 29  |............. .)|
00101fa0  0d 00 38 00 1d 00 38 00  20 1a 38 00 12 08 00 20  |..8...8. .8.... |
00101fb0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 c4 cc  |............. ..|
00101fc0  0e 00 38 00 1e 00 38 00  20 1c 38 00 eb 04 00 20  |..8...8. .8.... |
00101fd0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 8f c3  |............. ..|
00101fe0  0f 00 38 00 1f 00 38 00  20 1e 38 00 e5 0b 00 20  |..8...8. .8.... |
00101ff0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 03 7b  |............. .{|
00102000  00 00 40 00 10 00 40 00  20 00 40 00 c2 51 00 20  |..@...@. .@..Q. |
00102010  00 00 05 00 00 00 00 00  00 00 00 00 00 20 a7 92  |............. ..|
00102020  01 00 40 00 11 00 40 00  20 02 40 00 e4 01 00 20  |..@...@. .@.... |
00102030  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ab 60  |............. .`|
00102040  02 00 40 00 12 00 40 00  20 04 40 00 49 07 00 20  |..@...@. .@.I.. |
00102050  00 00 05 00 00 00 00 00  00 00 00 00 00 20 96 ed  |............. ..|
00102060  03 00 40 00 13 00 40 00  20 06 40 00 b3 01 00 20  |..@...@. .@.... |
00102070  00 00 05 00 00 00 00 00  00 00 00 00 00 20 be 05  |............. ..|
00102080  04 00 40 00 14 00 40 00  20 08 40 00 ae 05 00 20  |..@...@. .@.... |
00102090  00 00 05 00 00 00 00 00  00 00 00 00 00 20 6e 0c  |............. n.|
001020a0  05 00 40 00 15 00 40 00  20 0a 40 00 9a 17 00 20  |..@...@. .@.... |
001020b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 57 37  |............. W7|
001020c0  06 00 40 00 16 00 40 00  20 0c 40 00 8d 03 00 20  |..@...@. .@.... |
001020d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 c3 22  |............. ."|
001020e0  07 00 40 00 17 00 40 00  20 0e 40 00 00 00 00 20  |..@...@. .@.... |
001020f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 53 35  |............. S5|
00102100  08 00 40 00 18 00 40 00  20 10 40 00 2b 08 00 20  |..@...@. .@.+.. |
00102110  00 00 05 00 00 00 00 00  00 00 00 00 00 20 7d bf  |............. }.|
00102120  09 00 40 00 19 00 40 00  20 12 40 00 0a 02 00 20  |..@...@. .@.... |
00102130  00 00 05 00 00 00 00 00  00 00 00 00 00 20 da 8b  |............. ..|
00102140  0a 00 40 00 1a 00 40 00  20 14 40 00 88 00 00 20  |..@...@. .@.... |
00102150  00 00 05 00 00 00 00 00  00 00 00 00 00 20 9d 1a  |............. ..|
00102160  0b 00 40 00 1b 00 40 00  20 16 40 00 8e 02 00 20  |..@...@. .@.... |
00102170  00 00 05 00 00 00 00 00  00 00 00 00 00 20 07 53  |............. .S|
00102180  0c 00 40 00 1c 00 40 00  20 18 40 00 62 00 00 20  |..@...@. .@.b.. |
00102190  00 00 05 00 00 00 00 00  00 00 00 00 00 20 56 34  |............. V4|
001021a0  0d 00 40 00 1d 00 40 00  20 1a 40 00 00 00 00 20  |..@...@. .@.... |
001021b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 32 32  |............. 22|
001021c0  0e 00 40 00 1e 00 40 00  20 1c 40 00 62 05 00 20  |..@...@. .@.b.. |
001021d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 f0 64  |............. .d|
001021e0  0f 00 40 00 1f 00 40 00  20 1e 40 00 e9 0d 00 20  |..@...@. .@.... |
001021f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 f7 c8  |............. ..|
00102200  00 00 48 00 10 00 48 00  20 00 48 00 8e 59 00 20  |..H...H. .H..Y. |
00102210  00 00 05 00 00 00 00 00  00 00 00 00 00 20 e0 a4  |............. ..|
00102220  01 00 48 00 11 00 48 00  20 02 48 00 16 02 00 20  |..H...H. .H.... |
00102230  00 00 05 00 00 00 00 00  00 00 00 00 00 20 df 68  |............. .h|
00102240  02 00 48 00 12 00 48 00  20 04 48 00 36 0d 00 20  |..H...H. .H.6.. |
00102250  00 00 05 00 00 00 00 00  00 00 00 00 00 20 8f f0  |............. ..|
00102260  03 00 48 00 13 00 48 00  20 06 48 00 7f 01 00 20  |..H...H. .H.... |
00102270  00 00 05 00 00 00 00 00  00 00 00 00 00 20 57 19  |............. W.|
00102280  04 00 48 00 14 00 48 00  20 08 48 00 62 0f 00 20  |..H...H. .H.b.. |
00102290  00 00 05 00 00 00 00 00  00 00 00 00 00 20 a1 b2  |............. ..|
001022a0  05 00 48 00 15 00 48 00  20 0a 48 00 d1 1d 00 20  |..H...H. .H.... |
001022b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 00 14  |............. ..|
001022c0  06 00 48 00 16 00 48 00  20 0c 48 00 40 11 00 20  |..H...H. .H.@.. |
001022d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 d7 67  |............. .g|
001022e0  07 00 48 00 17 00 48 00  20 0e 48 00 60 0f 00 20  |..H...H. .H.`.. |
001022f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 6e ab  |............. n.|
00102300  08 00 48 00 18 00 48 00  20 10 48 00 e0 02 00 20  |..H...H. .H.... |
00102310  00 00 05 00 00 00 00 00  00 00 00 00 00 20 03 74  |............. .t|
00102320  09 00 48 00 19 00 48 00  20 12 48 00 99 01 00 20  |..H...H. .H.... |
00102330  00 00 05 00 00 00 00 00  00 00 00 00 00 20 e1 61  |............. .a|
00102340  0a 00 48 00 1a 00 48 00  20 14 48 00 0b 07 00 20  |..H...H. .H.... |
00102350  00 00 05 00 00 00 00 00  00 00 00 00 00 20 e0 f4  |............. ..|
00102360  0b 00 48 00 1b 00 48 00  20 16 48 00 c3 08 00 20  |..H...H. .H.... |
00102370  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b0 f9  |............. ..|
00102380  0c 00 48 00 1c 00 48 00  20 18 48 00 7b 07 00 20  |..H...H. .H.{.. |
00102390  00 00 05 00 00 00 00 00  00 00 00 00 00 20 25 2d  |............. %-|
001023a0  0d 00 48 00 1d 00 48 00  20 1a 48 00 fe 0c 00 20  |..H...H. .H.... |
001023b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b0 9a  |............. ..|
001023c0  0e 00 48 00 1e 00 48 00  20 1c 48 00 ea 00 00 20  |..H...H. .H.... |
001023d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 5e cc  |............. ^.|
001023e0  0f 00 48 00 1f 00 48 00  20 1e 48 00 fb 02 00 20  |..H...H. .H.... |
001023f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 71 35  |............. q5|
00102400  00 00 50 00 10 00 50 00  20 00 50 00 e0 5f 00 20  |..P...P. .P.._. |
00102410  00 00 05 00 00 00 00 00  00 00 00 00 00 20 45 65  |............. Ee|
00102420  01 00 50 00 11 00 50 00  20 02 50 00 ec 0d 00 20  |..P...P. .P.... |
00102430  00 00 05 00 00 00 00 00  00 00 00 00 00 20 c0 e7  |............. ..|
00102440  02 00 50 00 12 00 50 00  20 04 50 00 b9 04 00 20  |..P...P. .P.... |
00102450  00 00 05 00 00 00 00 00  00 00 00 00 00 20 79 c8  |............. y.|
00102460  03 00 50 00 13 00 50 00  20 06 50 00 fb 04 00 20  |..P...P. .P.... |
00102470  00 00 05 00 00 00 00 00  00 00 00 00 00 20 16 04  |............. ..|
00102480  04 00 50 00 14 00 50 00  20 08 50 00 7d 08 00 20  |..P...P. .P.}.. |
00102490  00 00 05 00 00 00 00 00  00 00 00 00 00 20 1e c4  |............. ..|
001024a0  05 00 50 00 15 00 50 00  20 0a 50 00 eb 01 00 20  |..P...P. .P.... |
001024b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 de 92  |............. ..|
001024c0  06 00 50 00 16 00 50 00  20 0c 50 00 82 0c 00 20  |..P...P. .P.... |
001024d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 e9 20  |............. . |
001024e0  07 00 50 00 17 00 50 00  20 0e 50 00 f2 04 00 20  |..P...P. .P.... |
001024f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 af 99  |............. ..|
00102500  08 00 50 00 18 00 50 00  20 10 50 00 00 00 00 20  |..P...P. .P.... |
00102510  00 00 05 00 00 00 00 00  00 00 00 00 00 20 af 77  |............. .w|
00102520  09 00 50 00 19 00 50 00  20 12 50 00 00 07 00 20  |..P...P. .P.... |
00102530  00 00 05 00 00 00 00 00  00 00 00 00 00 20 c6 e6  |............. ..|
00102540  0a 00 50 00 1a 00 50 00  20 14 50 00 00 00 00 20  |..P...P. .P.... |
00102550  00 00 05 00 00 00 00 00  00 00 00 00 00 20 1a 76  |............. .v|
00102560  0b 00 50 00 1b 00 50 00  20 16 50 00 00 00 00 20  |..P...P. .P.... |
00102570  00 00 05 00 00 00 00 00  00 00 00 00 00 20 c1 d6  |............. ..|
00102580  0c 00 50 00 1c 00 50 00  20 18 50 00 00 00 00 20  |..P...P. .P.... |
00102590  00 00 05 00 00 00 00 00  00 00 00 00 00 20 c5 74  |............. .t|
001025a0  0d 00 50 00 1d 00 50 00  20 1a 50 00 00 00 00 20  |..P...P. .P.... |
001025b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 1e d4  |............. ..|
001025c0  0e 00 50 00 1e 00 50 00  20 1c 50 00 00 00 00 20  |..P...P. .P.... |
001025d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 70 75  |............. pu|
001025e0  0f 00 50 00 1f 00 50 00  20 1e 50 00 00 00 00 20  |..P...P. .P.... |
001025f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ab d5  |............. ..|
00102600  00 00 58 00 10 00 58 00  20 00 58 00 e0 5f 00 20  |..X...X. .X.._. |
00102610  00 00 05 00 00 00 00 00  00 00 00 00 00 20 53 16  |............. S.|
00102620  01 00 58 00 11 00 58 00  20 02 58 00 00 00 00 20  |..X...X. .X.... |
00102630  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b6 a2  |............. ..|
00102640  02 00 58 00 12 00 58 00  20 04 58 00 00 00 00 20  |..X...X. .X.... |
00102650  00 00 05 00 00 00 00 00  00 00 00 00 00 20 d8 03  |............. ..|
00102660  03 00 58 00 13 00 58 00  20 06 58 00 00 00 00 20  |..X...X. .X.... |
00102670  00 00 05 00 00 00 00 00  00 00 00 00 00 20 03 a3  |............. ..|
00102680  04 00 58 00 14 00 58 00  20 08 58 00 00 00 00 20  |..X...X. .X.... |
00102690  00 00 05 00 00 00 00 00  00 00 00 00 00 20 07 01  |............. ..|
001026a0  05 00 58 00 15 00 58 00  20 0a 58 00 00 00 00 20  |..X...X. .X.... |
001026b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 dc a1  |............. ..|
001026c0  06 00 58 00 16 00 58 00  20 0c 58 00 00 00 00 20  |..X...X. .X.... |
001026d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b2 00  |............. ..|
001026e0  07 00 58 00 17 00 58 00  20 0e 58 00 00 00 00 20  |..X...X. .X.... |
001026f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 69 a0  |............. i.|
00102700  08 00 58 00 18 00 58 00  20 10 58 00 00 00 00 20  |..X...X. .X.... |
00102710  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b9 04  |............. ..|
00102720  09 00 58 00 19 00 58 00  20 12 58 00 00 00 00 20  |..X...X. .X.... |
00102730  00 00 05 00 00 00 00 00  00 00 00 00 00 20 62 a4  |............. b.|
00102740  0a 00 58 00 1a 00 58 00  20 14 58 00 00 00 00 20  |..X...X. .X.... |
00102750  00 00 05 00 00 00 00 00  00 00 00 00 00 20 0c 05  |............. ..|
00102760  0b 00 58 00 1b 00 58 00  20 16 58 00 00 00 00 20  |..X...X. .X.... |
00102770  00 00 05 00 00 00 00 00  00 00 00 00 00 20 d7 a5  |............. ..|
00102780  0c 00 58 00 1c 00 58 00  20 18 58 00 00 00 00 20  |..X...X. .X.... |
00102790  00 00 05 00 00 00 00 00  00 00 00 00 00 20 d3 07  |............. ..|
001027a0  0d 00 58 00 1d 00 58 00  20 1a 58 00 00 00 00 20  |..X...X. .X.... |
001027b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 08 a7  |............. ..|
001027c0  0e 00 58 00 1e 00 58 00  20 1c 58 00 00 00 00 20  |..X...X. .X.... |
001027d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 66 06  |............. f.|
001027e0  0f 00 58 00 1f 00 58 00  20 1e 58 00 00 00 00 20  |..X...X. .X.... |
001027f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 bd a6  |............. ..|
00102800  00 00 60 00 10 00 60 00  20 00 60 00 e0 5f 00 20  |..`...`. .`.._. |
00102810  00 00 05 00 00 00 00 00  00 00 00 00 00 20 32 0f  |............. 2.|
00102820  01 00 60 00 11 00 60 00  20 02 60 00 00 00 00 20  |..`...`. .`.... |
00102830  00 00 05 00 00 00 00 00  00 00 00 00 00 20 d7 bb  |............. ..|
00102840  02 00 60 00 12 00 60 00  20 04 60 00 00 00 00 20  |..`...`. .`.... |
00102850  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b9 1a  |............. ..|
00102860  03 00 60 00 13 00 60 00  20 06 60 00 00 00 00 20  |..`...`. .`.... |
00102870  00 00 05 00 00 00 00 00  00 00 00 00 00 20 62 ba  |............. b.|
00102880  04 00 60 00 14 00 60 00  20 08 60 00 00 00 00 20  |..`...`. .`.... |
00102890  00 00 05 00 00 00 00 00  00 00 00 00 00 20 66 18  |............. f.|
001028a0  05 00 60 00 15 00 60 00  20 0a 60 00 00 00 00 20  |..`...`. .`.... |
001028b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 bd b8  |............. ..|
001028c0  06 00 60 00 16 00 60 00  20 0c 60 00 00 00 00 20  |..`...`. .`.... |
001028d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 d3 19  |............. ..|
001028e0  07 00 60 00 17 00 60 00  20 0e 60 00 ce 06 00 20  |..`...`. .`.... |
001028f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b5 cf  |............. ..|
00102900  08 00 60 00 18 00 60 00  20 10 60 00 44 01 00 20  |..`...`. .`.D.. |
00102910  00 00 05 00 00 00 00 00  00 00 00 00 00 20 dd 68  |............. .h|
00102920  09 00 60 00 19 00 60 00  20 12 60 00 bf 05 00 20  |..`...`. .`.... |
00102930  00 00 05 00 00 00 00 00  00 00 00 00 00 20 05 1c  |............. ..|
00102940  0a 00 60 00 1a 00 60 00  20 14 60 00 6d 03 00 20  |..`...`. .`.m.. |
00102950  00 00 05 00 00 00 00 00  00 00 00 00 00 20 11 5d  |............. .]|
00102960  0b 00 60 00 1b 00 60 00  20 16 60 00 57 02 00 20  |..`...`. .`.W.. |
00102970  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b7 b8  |............. ..|
00102980  0c 00 60 00 1c 00 60 00  20 18 60 00 3d 1b 00 20  |..`...`. .`.=.. |
00102990  00 00 05 00 00 00 00 00  00 00 00 00 00 20 55 49  |............. UI|
001029a0  0d 00 60 00 1d 00 60 00  20 1a 60 00 0a 07 00 20  |..`...`. .`.... |
001029b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 f8 55  |............. .U|
001029c0  0e 00 60 00 1e 00 60 00  20 1c 60 00 dd 06 00 20  |..`...`. .`.... |
001029d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 4e e8  |............. N.|
001029e0  0f 00 60 00 1f 00 60 00  20 1e 60 00 4f 08 00 20  |..`...`. .`.O.. |
001029f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 7d be  |............. }.|
00102a00  00 00 68 00 10 00 68 00  20 00 68 00 e0 5f 00 20  |..h...h. .h.._. |
00102a10  00 00 05 00 00 00 00 00  00 00 00 00 00 20 24 7c  |............. $||
00102a20  01 00 68 00 11 00 68 00  20 02 68 00 ee 09 00 20  |..h...h. .h.... |
00102a30  00 00 05 00 00 00 00 00  00 00 00 00 00 20 42 87  |............. B.|
00102a40  02 00 68 00 12 00 68 00  20 04 68 00 b0 08 00 20  |..h...h. .h.... |
00102a50  00 00 05 00 00 00 00 00  00 00 00 00 00 20 0e 4c  |............. .L|
00102a60  03 00 68 00 13 00 68 00  20 06 68 00 b8 02 00 20  |..h...h. .h.... |
00102a70  00 00 05 00 00 00 00 00  00 00 00 00 00 20 71 2c  |............. q,|
00102a80  04 00 68 00 14 00 68 00  20 08 68 00 34 00 00 20  |..h...h. .h.4.. |
00102a90  00 00 05 00 00 00 00 00  00 00 00 00 00 20 3e 55  |............. >U|
00102aa0  05 00 68 00 15 00 68 00  20 0a 68 00 00 00 00 20  |..h...h. .h.... |
00102ab0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ab cb  |............. ..|
00102ac0  06 00 68 00 16 00 68 00  20 0c 68 00 00 00 00 20  |..h...h. .h.... |
00102ad0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 c5 6a  |............. .j|
00102ae0  07 00 68 00 17 00 68 00  20 0e 68 00 00 00 00 20  |..h...h. .h.... |
00102af0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 1e ca  |............. ..|
00102b00  08 00 68 00 18 00 68 00  20 10 68 00 00 00 00 20  |..h...h. .h.... |
00102b10  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ce 6e  |............. .n|
00102b20  09 00 68 00 19 00 68 00  20 12 68 00 ed 06 00 20  |..h...h. .h.... |
00102b30  00 00 05 00 00 00 00 00  00 00 00 00 00 20 53 36  |............. S6|
00102b40  0a 00 68 00 1a 00 68 00  20 14 68 00 00 00 00 20  |..h...h. .h.... |
00102b50  00 00 05 00 00 00 00 00  00 00 00 00 00 20 7b 6f  |............. {o|
00102b60  0b 00 68 00 1b 00 68 00  20 16 68 00 00 00 00 20  |..h...h. .h.... |
00102b70  00 00 05 00 00 00 00 00  00 00 00 00 00 20 a0 cf  |............. ..|
00102b80  0c 00 68 00 1c 00 68 00  20 18 68 00 00 00 00 20  |..h...h. .h.... |
00102b90  00 00 05 00 00 00 00 00  00 00 00 00 00 20 a4 6d  |............. .m|
00102ba0  0d 00 68 00 1d 00 68 00  20 1a 68 00 00 00 00 20  |..h...h. .h.... |
00102bb0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 7f cd  |............. ..|
00102bc0  0e 00 68 00 1e 00 68 00  20 1c 68 00 00 00 00 20  |..h...h. .h.... |
00102bd0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 11 6c  |............. .l|
00102be0  0f 00 68 00 1f 00 68 00  20 1e 68 00 00 00 00 20  |..h...h. .h.... |
00102bf0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ca cc  |............. ..|
00102c00  00 00 70 00 10 00 70 00  20 00 70 00 e0 5f 00 20  |..p...p. .p.._. |
00102c10  00 00 05 00 00 00 00 00  00 00 00 00 00 20 1e e9  |............. ..|
00102c20  01 00 70 00 11 00 70 00  20 02 70 00 31 02 00 20  |..p...p. .p.1.. |
00102c30  00 00 05 00 00 00 00 00  00 00 00 00 00 20 04 ce  |............. ..|
00102c40  02 00 70 00 12 00 70 00  20 04 70 00 00 00 00 20  |..p...p. .p.... |
00102c50  00 00 05 00 00 00 00 00  00 00 00 00 00 20 95 fc  |............. ..|
00102c60  03 00 70 00 13 00 70 00  20 06 70 00 00 00 00 20  |..p...p. .p.... |
00102c70  00 00 05 00 00 00 00 00  00 00 00 00 00 20 4e 5c  |............. N\|
00102c80  04 00 70 00 14 00 70 00  20 08 70 00 00 00 00 20  |..p...p. .p.... |
00102c90  00 00 05 00 00 00 00 00  00 00 00 00 00 20 4a fe  |............. J.|
00102ca0  05 00 70 00 15 00 70 00  20 0a 70 00 00 00 00 20  |..p...p. .p.... |
00102cb0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 91 5e  |............. .^|
00102cc0  06 00 70 00 16 00 70 00  20 0c 70 00 00 00 00 20  |..p...p. .p.... |
00102cd0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ff ff  |............. ..|
00102ce0  07 00 70 00 17 00 70 00  20 0e 70 00 00 00 00 20  |..p...p. .p.... |
00102cf0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 24 5f  |............. $_|
00102d00  08 00 70 00 18 00 70 00  20 10 70 00 00 00 00 20  |..p...p. .p.... |
00102d10  00 00 05 00 00 00 00 00  00 00 00 00 00 20 f4 fb  |............. ..|
00102d20  09 00 70 00 19 00 70 00  20 12 70 00 00 00 00 20  |..p...p. .p.... |
00102d30  00 00 05 00 00 00 00 00  00 00 00 00 00 20 2f 5b  |............. /[|
00102d40  0a 00 70 00 1a 00 70 00  20 14 70 00 00 00 00 20  |..p...p. .p.... |
00102d50  00 00 05 00 00 00 00 00  00 00 00 00 00 20 41 fa  |............. A.|
00102d60  0b 00 70 00 1b 00 70 00  20 16 70 00 00 00 00 20  |..p...p. .p.... |
00102d70  00 00 05 00 00 00 00 00  00 00 00 00 00 20 9a 5a  |............. .Z|
00102d80  0c 00 70 00 1c 00 70 00  20 18 70 00 00 00 00 20  |..p...p. .p.... |
00102d90  00 00 05 00 00 00 00 00  00 00 00 00 00 20 9e f8  |............. ..|
00102da0  0d 00 70 00 1d 00 70 00  20 1a 70 00 00 00 00 20  |..p...p. .p.... |
00102db0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 45 58  |............. EX|
00102dc0  0e 00 70 00 1e 00 70 00  20 1c 70 00 00 00 00 20  |..p...p. .p.... |
00102dd0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 2b f9  |............. +.|
00102de0  0f 00 70 00 1f 00 70 00  20 1e 70 00 00 00 00 20  |..p...p. .p.... |
00102df0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 f0 59  |............. .Y|
00102e00  00 00 78 00 10 00 78 00  20 00 78 00 e0 5f 00 20  |..x...x. .x.._. |
00102e10  00 00 05 00 00 00 00 00  00 00 00 00 00 20 08 9a  |............. ..|
00102e20  01 00 78 00 11 00 78 00  20 02 78 00 00 00 00 20  |..x...x. .x.... |
00102e30  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ed 2e  |............. ..|
00102e40  02 00 78 00 12 00 78 00  20 04 78 00 00 00 00 20  |..x...x. .x.... |
00102e50  00 00 05 00 00 00 00 00  00 00 00 00 00 20 83 8f  |............. ..|
00102e60  03 00 78 00 13 00 78 00  20 06 78 00 ff 03 00 20  |..x...x. .x.... |
00102e70  00 00 05 00 00 00 00 00  00 00 00 00 00 20 a8 fb  |............. ..|
00102e80  04 00 78 00 14 00 78 00  20 08 78 00 9d 04 00 20  |..x...x. .x.... |
00102e90  00 00 05 00 00 00 00 00  00 00 00 00 00 20 a1 ce  |............. ..|
00102ea0  05 00 78 00 15 00 78 00  20 0a 78 00 1f 0c 00 20  |..x...x. .x.... |
00102eb0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 75 fc  |............. u.|
00102ec0  06 00 78 00 16 00 78 00  20 0c 78 00 25 2a 00 20  |..x...x. .x.%*. |
00102ed0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 cd e3  |............. ..|
00102ee0  07 00 78 00 17 00 78 00  20 0e 78 00 2d 13 00 20  |..x...x. .x.-.. |
00102ef0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 56 7c  |............. V||
00102f00  08 00 78 00 18 00 78 00  20 10 78 00 32 02 00 20  |..x...x. .x.2.. |
00102f10  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ed 5f  |............. ._|
00102f20  09 00 78 00 19 00 78 00  20 12 78 00 00 00 00 20  |..x...x. .x.... |
00102f30  00 00 05 00 00 00 00 00  00 00 00 00 00 20 39 28  |............. 9(|
00102f40  0a 00 78 00 1a 00 78 00  20 14 78 00 00 00 00 20  |..x...x. .x.... |
00102f50  00 00 05 00 00 00 00 00  00 00 00 00 00 20 57 89  |............. W.|
00102f60  0b 00 78 00 1b 00 78 00  20 16 78 00 00 00 00 20  |..x...x. .x.... |
00102f70  00 00 05 00 00 00 00 00  00 00 00 00 00 20 8c 29  |............. .)|
00102f80  0c 00 78 00 1c 00 78 00  20 18 78 00 00 00 00 20  |..x...x. .x.... |
00102f90  00 00 05 00 00 00 00 00  00 00 00 00 00 20 88 8b  |............. ..|
00102fa0  0d 00 78 00 1d 00 78 00  20 1a 78 00 00 00 00 20  |..x...x. .x.... |
00102fb0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 53 2b  |............. S+|
00102fc0  0e 00 78 00 1e 00 78 00  20 1c 78 00 00 00 00 20  |..x...x. .x.... |
00102fd0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 3d 8a  |............. =.|
00102fe0  0f 00 78 00 1f 00 78 00  20 1e 78 00 00 00 00 20  |..x...x. .x.... |
00102ff0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 e6 2a  |............. .*|
00103000  00 00 80 00 10 00 80 00  20 00 80 00 e0 5f 00 20  |........ ...._. |
00103010  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b6 6a  |............. .j|
00103020  01 00 80 00 11 00 80 00  20 02 80 00 00 00 00 20  |........ ...... |
00103030  00 00 05 00 00 00 00 00  00 00 00 00 00 20 53 de  |............. S.|
00103040  02 00 80 00 12 00 80 00  20 04 80 00 00 00 00 20  |........ ...... |
00103050  00 00 05 00 00 00 00 00  00 00 00 00 00 20 3d 7f  |............. =.|
00103060  03 00 80 00 13 00 80 00  20 06 80 00 00 00 00 20  |........ ...... |
00103070  00 00 05 00 00 00 00 00  00 00 00 00 00 20 e6 df  |............. ..|
00103080  04 00 80 00 14 00 80 00  20 08 80 00 00 00 00 20  |........ ...... |
00103090  00 00 05 00 00 00 00 00  00 00 00 00 00 20 e2 7d  |............. .}|
001030a0  05 00 80 00 15 00 80 00  20 0a 80 00 00 00 00 20  |........ ...... |
001030b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 39 dd  |............. 9.|
001030c0  06 00 80 00 16 00 80 00  20 0c 80 00 00 00 00 20  |........ ...... |
001030d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 57 7c  |............. W||
001030e0  07 00 80 00 17 00 80 00  20 0e 80 00 00 00 00 20  |........ ...... |
001030f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 8c dc  |............. ..|
00103100  08 00 80 00 18 00 80 00  20 10 80 00 00 00 00 20  |........ ...... |
00103110  00 00 05 00 00 00 00 00  00 00 00 00 00 20 5c 78  |............. \x|
00103120  09 00 80 00 19 00 80 00  20 12 80 00 00 00 00 20  |........ ...... |
00103130  00 00 05 00 00 00 00 00  00 00 00 00 00 20 87 d8  |............. ..|
00103140  0a 00 80 00 1a 00 80 00  20 14 80 00 00 00 00 20  |........ ...... |
00103150  00 00 05 00 00 00 00 00  00 00 00 00 00 20 e9 79  |............. .y|
00103160  0b 00 80 00 1b 00 80 00  20 16 80 00 68 05 00 20  |........ ...h.. |
00103170  00 00 05 00 00 00 00 00  00 00 00 00 00 20 bd f4  |............. ..|
00103180  0c 00 80 00 1c 00 80 00  20 18 80 00 0d 07 00 20  |........ ...... |
00103190  00 00 05 00 00 00 00 00  00 00 00 00 00 20 16 e5  |............. ..|
001031a0  0d 00 80 00 1d 00 80 00  20 1a 80 00 06 04 00 20  |........ ...... |
001031b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 4f 93  |............. O.|
001031c0  0e 00 80 00 1e 00 80 00  20 1c 80 00 cf 0b 00 20  |........ ...... |
001031d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 fb 63  |............. .c|
001031e0  0f 00 80 00 1f 00 80 00  20 1e 80 00 54 09 00 20  |........ ...T.. |
001031f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 de a8  |............. ..|
00103200  00 00 88 00 10 00 88 00  20 00 88 00 cc 5e 00 20  |........ ....^. |
00103210  00 00 05 00 00 00 00 00  00 00 00 00 00 20 39 10  |............. 9.|
00103220  01 00 88 00 11 00 88 00  20 02 88 00 73 0c 00 20  |........ ...s.. |
00103230  00 00 05 00 00 00 00 00  00 00 00 00 00 20 6a 31  |............. j1|
00103240  02 00 88 00 12 00 88 00  20 04 88 00 14 07 00 20  |........ ...... |
00103250  00 00 05 00 00 00 00 00  00 00 00 00 00 20 dc c9  |............. ..|
00103260  03 00 88 00 13 00 88 00  20 06 88 00 86 08 00 20  |........ ...... |
00103270  00 00 05 00 00 00 00 00  00 00 00 00 00 20 be 0f  |............. ..|
00103280  04 00 88 00 14 00 88 00  20 08 88 00 5d 08 00 20  |........ ...].. |
00103290  00 00 05 00 00 00 00 00  00 00 00 00 00 20 f0 72  |............. .r|
001032a0  05 00 88 00 15 00 88 00  20 0a 88 00 e0 04 00 20  |........ ...... |
001032b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 5a 99  |............. Z.|
001032c0  06 00 88 00 16 00 88 00  20 0c 88 00 ac 06 00 20  |........ ...... |
001032d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 43 df  |............. C.|
001032e0  07 00 88 00 17 00 88 00  20 0e 88 00 19 01 00 20  |........ ...... |
001032f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 1c 64  |............. .d|
00103300  08 00 88 00 18 00 88 00  20 10 88 00 00 00 00 20  |........ ...... |
00103310  00 00 05 00 00 00 00 00  00 00 00 00 00 20 4a 0b  |............. J.|
00103320  09 00 88 00 19 00 88 00  20 12 88 00 00 00 00 20  |........ ...... |
00103330  00 00 05 00 00 00 00 00  00 00 00 00 00 20 91 ab  |............. ..|
00103340  0a 00 88 00 1a 00 88 00  20 14 88 00 00 00 00 20  |........ ...... |
00103350  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ff 0a  |............. ..|
00103360  0b 00 88 00 1b 00 88 00  20 16 88 00 00 00 00 20  |........ ...... |
00103370  00 00 05 00 00 00 00 00  00 00 00 00 00 20 24 aa  |............. $.|
00103380  0c 00 88 00 1c 00 88 00  20 18 88 00 6d 05 00 20  |........ ...m.. |
00103390  00 00 05 00 00 00 00 00  00 00 00 00 00 20 bf e8  |............. ..|
001033a0  0d 00 88 00 1d 00 88 00  20 1a 88 00 00 00 00 20  |........ ...... |
001033b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 fb a8  |............. ..|
001033c0  0e 00 88 00 1e 00 88 00  20 1c 88 00 00 00 00 20  |........ ...... |
001033d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 95 09  |............. ..|
001033e0  0f 00 88 00 1f 00 88 00  20 1e 88 00 00 00 00 20  |........ ...... |
001033f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 4e a9  |............. N.|
00103400  00 00 90 00 10 00 90 00  20 00 90 00 e0 5f 00 20  |........ ...._. |
00103410  00 00 05 00 00 00 00 00  00 00 00 00 00 20 9a 8c  |............. ..|
00103420  01 00 90 00 11 00 90 00  20 02 90 00 00 00 00 20  |........ ...... |
00103430  00 00 05 00 00 00 00 00  00 00 00 00 00 20 7f 38  |............. .8|
00103440  02 00 90 00 12 00 90 00  20 04 90 00 00 00 00 20  |........ ...... |
00103450  00 00 05 00 00 00 00 00  00 00 00 00 00 20 11 99  |............. ..|
00103460  03 00 90 00 13 00 90 00  20 06 90 00 a4 05 00 20  |........ ...... |
00103470  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ba 7b  |............. .{|
00103480  04 00 90 00 14 00 90 00  20 08 90 00 00 00 00 20  |........ ...... |
00103490  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ce 9b  |............. ..|
001034a0  05 00 90 00 15 00 90 00  20 0a 90 00 00 00 00 20  |........ ...... |
001034b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 15 3b  |............. .;|
001034c0  06 00 90 00 16 00 90 00  20 0c 90 00 00 00 00 20  |........ ...... |
001034d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 7b 9a  |............. {.|
001034e0  07 00 90 00 17 00 90 00  20 0e 90 00 00 00 00 20  |........ ...... |
001034f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 a0 3a  |............. .:|
00103500  08 00 90 00 18 00 90 00  20 10 90 00 00 00 00 20  |........ ...... |
00103510  00 00 05 00 00 00 00 00  00 00 00 00 00 20 70 9e  |............. p.|
00103520  09 00 90 00 19 00 90 00  20 12 90 00 00 00 00 20  |........ ...... |
00103530  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ab 3e  |............. .>|
00103540  0a 00 90 00 1a 00 90 00  20 14 90 00 00 00 00 20  |........ ...... |
00103550  00 00 05 00 00 00 00 00  00 00 00 00 00 20 c5 9f  |............. ..|
00103560  0b 00 90 00 1b 00 90 00  20 16 90 00 00 03 00 20  |........ ...... |
00103570  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ee cf  |............. ..|
00103580  0c 00 90 00 1c 00 90 00  20 18 90 00 00 00 00 20  |........ ...... |
00103590  00 00 05 00 00 00 00 00  00 00 00 00 00 20 1a 9d  |............. ..|
001035a0  0d 00 90 00 1d 00 90 00  20 1a 90 00 00 00 00 20  |........ ...... |
001035b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 c1 3d  |............. .=|
001035c0  0e 00 90 00 1e 00 90 00  20 1c 90 00 00 00 00 20  |........ ...... |
001035d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 af 9c  |............. ..|
001035e0  0f 00 90 00 1f 00 90 00  20 1e 90 00 00 00 00 20  |........ ...... |
001035f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 74 3c  |............. t<|
00103600  00 00 98 00 10 00 98 00  20 00 98 00 e0 5f 00 20  |........ ...._. |
00103610  00 00 05 00 00 00 00 00  00 00 00 00 00 20 8c ff  |............. ..|
00103620  01 00 98 00 11 00 98 00  20 02 98 00 00 00 00 20  |........ ...... |
00103630  00 00 05 00 00 00 00 00  00 00 00 00 00 20 69 4b  |............. iK|
00103640  02 00 98 00 12 00 98 00  20 04 98 00 00 00 00 20  |........ ...... |
00103650  00 00 05 00 00 00 00 00  00 00 00 00 00 20 07 ea  |............. ..|
00103660  03 00 98 00 13 00 98 00  20 06 98 00 31 02 00 20  |........ ...1.. |
00103670  00 00 05 00 00 00 00 00  00 00 00 00 00 20 23 d9  |............. #.|
00103680  04 00 98 00 14 00 98 00  20 08 98 00 00 00 00 20  |........ ...... |
00103690  00 00 05 00 00 00 00 00  00 00 00 00 00 20 d8 e8  |............. ..|
001036a0  05 00 98 00 15 00 98 00  20 0a 98 00 00 00 00 20  |........ ...... |
001036b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 03 48  |............. .H|
001036c0  06 00 98 00 16 00 98 00  20 0c 98 00 cf 04 00 20  |........ ...... |
001036d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 20 03  |.............  .|
001036e0  07 00 98 00 17 00 98 00  20 0e 98 00 00 00 00 20  |........ ...... |
001036f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b6 49  |............. .I|
00103700  08 00 98 00 18 00 98 00  20 10 98 00 00 02 00 20  |........ ...... |
00103710  00 00 05 00 00 00 00 00  00 00 00 00 00 20 c7 8d  |............. ..|
00103720  09 00 98 00 19 00 98 00  20 12 98 00 c0 00 00 20  |........ ...... |
00103730  00 00 05 00 00 00 00 00  00 00 00 00 00 20 81 71  |............. .q|
00103740  0a 00 98 00 1a 00 98 00  20 14 98 00 00 00 00 20  |........ ...... |
00103750  00 00 05 00 00 00 00 00  00 00 00 00 00 20 d3 ec  |............. ..|
00103760  0b 00 98 00 1b 00 98 00  20 16 98 00 00 00 00 20  |........ ...... |
00103770  00 00 05 00 00 00 00 00  00 00 00 00 00 20 08 4c  |............. .L|
00103780  0c 00 98 00 1c 00 98 00  20 18 98 00 00 00 00 20  |........ ...... |
00103790  00 00 05 00 00 00 00 00  00 00 00 00 00 20 0c ee  |............. ..|
001037a0  0d 00 98 00 1d 00 98 00  20 1a 98 00 00 00 00 20  |........ ...... |
001037b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 d7 4e  |............. .N|
001037c0  0e 00 98 00 1e 00 98 00  20 1c 98 00 00 00 00 20  |........ ...... |
001037d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b9 ef  |............. ..|
001037e0  0f 00 98 00 1f 00 98 00  20 1e 98 00 00 04 00 20  |........ ...... |
001037f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 20 8e  |.............  .|
00103800  00 00 a0 00 10 00 a0 00  20 00 a0 00 e0 5f 00 20  |........ ...._. |
00103810  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ed e6  |............. ..|
00103820  01 00 a0 00 11 00 a0 00  20 02 a0 00 72 06 00 20  |........ ...r.. |
00103830  00 00 05 00 00 00 00 00  00 00 00 00 00 20 50 90  |............. P.|
00103840  02 00 a0 00 12 00 a0 00  20 04 a0 00 00 00 00 20  |........ ...... |
00103850  00 00 05 00 00 00 00 00  00 00 00 00 00 20 66 f3  |............. f.|
00103860  03 00 a0 00 13 00 a0 00  20 06 a0 00 00 00 00 20  |........ ...... |
00103870  00 00 05 00 00 00 00 00  00 00 00 00 00 20 bd 53  |............. .S|
00103880  04 00 a0 00 14 00 a0 00  20 08 a0 00 a2 02 00 20  |........ ...... |
00103890  00 00 05 00 00 00 00 00  00 00 00 00 00 20 9b 0b  |............. ..|
001038a0  05 00 a0 00 15 00 a0 00  20 0a a0 00 00 00 00 20  |........ ...... |
001038b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 62 51  |............. bQ|
001038c0  06 00 a0 00 16 00 a0 00  20 0c a0 00 30 02 00 20  |........ ...0.. |
001038d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 a2 9f  |............. ..|
001038e0  07 00 a0 00 17 00 a0 00  20 0e a0 00 95 03 00 20  |........ ...... |
001038f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 1a 40  |............. .@|
00103900  08 00 a0 00 18 00 a0 00  20 10 a0 00 00 00 00 20  |........ ...... |
00103910  00 00 05 00 00 00 00 00  00 00 00 00 00 20 07 f4  |............. ..|
00103920  09 00 a0 00 19 00 a0 00  20 12 a0 00 6c 02 00 20  |........ ...l.. |
00103930  00 00 05 00 00 00 00 00  00 00 00 00 00 20 a0 79  |............. .y|
00103940  0a 00 a0 00 1a 00 a0 00  20 14 a0 00 e7 03 00 20  |........ ...... |
00103950  00 00 05 00 00 00 00 00  00 00 00 00 00 20 c4 86  |............. ..|
00103960  0b 00 a0 00 1b 00 a0 00  20 16 a0 00 b1 07 00 20  |........ ...... |
00103970  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ac 7f  |............. ..|
00103980  0c 00 a0 00 1c 00 a0 00  20 18 a0 00 51 02 00 20  |........ ...Q.. |
00103990  00 00 05 00 00 00 00 00  00 00 00 00 00 20 8c 7a  |............. .z|
001039a0  0d 00 a0 00 1d 00 a0 00  20 1a a0 00 3e 0f 00 20  |........ ...>.. |
001039b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ee 40  |............. .@|
001039c0  0e 00 a0 00 1e 00 a0 00  20 1c a0 00 19 09 00 20  |........ ...... |
001039d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 d9 ff  |............. ..|
001039e0  0f 00 a0 00 1f 00 a0 00  20 1e a0 00 de 02 00 20  |........ ...... |
001039f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 f8 24  |............. .$|
00103a00  00 00 a8 00 10 00 a8 00  20 00 a8 00 e0 5f 00 20  |........ ...._. |
00103a10  00 00 05 00 00 00 00 00  00 00 00 00 00 20 fb 95  |............. ..|
00103a20  01 00 a8 00 11 00 a8 00  20 02 a8 00 3b 09 00 20  |........ ...;.. |
00103a30  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b5 5a  |............. .Z|
00103a40  02 00 a8 00 12 00 a8 00  20 04 a8 00 89 0b 00 20  |........ ...... |
00103a50  00 00 05 00 00 00 00 00  00 00 00 00 00 20 fd c4  |............. ..|
00103a60  03 00 a8 00 13 00 a8 00  20 06 a8 00 11 0f 00 20  |........ ...... |
00103a70  00 00 05 00 00 00 00 00  00 00 00 00 00 20 cb ea  |............. ..|
00103a80  04 00 a8 00 14 00 a8 00  20 08 a8 00 66 11 00 20  |........ ...f.. |
00103a90  00 00 05 00 00 00 00 00  00 00 00 00 00 20 0d 40  |............. .@|
00103aa0  05 00 a8 00 15 00 a8 00  20 0a a8 00 b1 06 00 20  |........ ...... |
00103ab0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 e0 98  |............. ..|
00103ac0  06 00 a8 00 16 00 a8 00  20 0c a8 00 e1 0f 00 20  |........ ...... |
00103ad0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 49 7a  |............. Iz|
00103ae0  07 00 a8 00 17 00 a8 00  20 0e a8 00 57 00 00 20  |........ ...W.. |
00103af0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 61 47  |............. aG|
00103b00  08 00 a8 00 18 00 a8 00  20 10 a8 00 80 0f 00 20  |........ ...... |
00103b10  00 00 05 00 00 00 00 00  00 00 00 00 00 20 0d 9c  |............. ..|
00103b20  09 00 a8 00 19 00 a8 00  20 12 a8 00 a1 09 00 20  |........ ...... |
00103b30  00 00 05 00 00 00 00 00  00 00 00 00 00 20 6f ab  |............. o.|
00103b40  0a 00 a8 00 1a 00 a8 00  20 14 a8 00 37 0b 00 20  |........ ...7.. |
00103b50  00 00 05 00 00 00 00 00  00 00 00 00 00 20 6d ce  |............. m.|
00103b60  0b 00 a8 00 1b 00 a8 00  20 16 a8 00 00 00 00 20  |........ ...... |
00103b70  00 00 05 00 00 00 00 00  00 00 00 00 00 20 7f 26  |............. .&|
00103b80  0c 00 a8 00 1c 00 a8 00  20 18 a8 00 00 00 00 20  |........ ...... |
00103b90  00 00 05 00 00 00 00 00  00 00 00 00 00 20 7b 84  |............. {.|
00103ba0  0d 00 a8 00 1d 00 a8 00  20 1a a8 00 32 03 00 20  |........ ...2.. |
00103bb0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 fe 63  |............. .c|
00103bc0  0e 00 a8 00 1e 00 a8 00  20 1c a8 00 d2 03 00 20  |........ ...... |
00103bd0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 a7 34  |............. .4|
00103be0  0f 00 a8 00 1f 00 a8 00  20 1e a8 00 53 04 00 20  |........ ...S.. |
00103bf0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b6 b1  |............. ..|
00103c00  00 00 b0 00 10 00 b0 00  20 00 b0 00 e0 5f 00 20  |........ ...._. |
00103c10  00 00 05 00 00 00 00 00  00 00 00 00 00 20 c1 00  |............. ..|
00103c20  01 00 b0 00 11 00 b0 00  20 02 b0 00 6e 06 00 20  |........ ...n.. |
00103c30  00 00 05 00 00 00 00 00  00 00 00 00 00 20 bb e0  |............. ..|
00103c40  02 00 b0 00 12 00 b0 00  20 04 b0 00 24 07 00 20  |........ ...$.. |
00103c50  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b2 df  |............. ..|
00103c60  03 00 b0 00 13 00 b0 00  20 06 b0 00 9e 06 00 20  |........ ...... |
00103c70  00 00 05 00 00 00 00 00  00 00 00 00 00 20 3d d2  |............. =.|
00103c80  04 00 b0 00 14 00 b0 00  20 08 b0 00 c5 02 00 20  |........ ...... |
00103c90  00 00 05 00 00 00 00 00  00 00 00 00 00 20 18 86  |............. ..|
00103ca0  05 00 b0 00 15 00 b0 00  20 0a b0 00 11 06 00 20  |........ ...... |
00103cb0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 f8 2f  |............. ./|
00103cc0  06 00 b0 00 16 00 b0 00  20 0c b0 00 00 00 00 20  |........ ...... |
00103cd0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 20 16  |.............  .|
00103ce0  07 00 b0 00 17 00 b0 00  20 0e b0 00 00 00 00 20  |........ ...... |
00103cf0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 fb b6  |............. ..|
00103d00  08 00 b0 00 18 00 b0 00  20 10 b0 00 00 00 00 20  |........ ...... |
00103d10  00 00 05 00 00 00 00 00  00 00 00 00 00 20 2b 12  |............. +.|
00103d20  09 00 b0 00 19 00 b0 00  20 12 b0 00 00 00 00 20  |........ ...... |
00103d30  00 00 05 00 00 00 00 00  00 00 00 00 00 20 f0 b2  |............. ..|
00103d40  0a 00 b0 00 1a 00 b0 00  20 14 b0 00 00 00 00 20  |........ ...... |
00103d50  00 00 05 00 00 00 00 00  00 00 00 00 00 20 9e 13  |............. ..|
00103d60  0b 00 b0 00 1b 00 b0 00  20 16 b0 00 ed 07 00 20  |........ ...... |
00103d70  00 00 05 00 00 00 00 00  00 00 00 00 00 20 52 db  |............. R.|
00103d80  0c 00 b0 00 1c 00 b0 00  20 18 b0 00 07 07 00 20  |........ ...... |
00103d90  00 00 05 00 00 00 00 00  00 00 00 00 00 20 42 55  |............. BU|
00103da0  0d 00 b0 00 1d 00 b0 00  20 1a b0 00 d8 03 00 20  |........ ...... |
00103db0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 d0 da  |............. ..|
00103dc0  0e 00 b0 00 1e 00 b0 00  20 1c b0 00 af 05 00 20  |........ ...... |
00103dd0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 f6 74  |............. .t|
00103de0  0f 00 b0 00 1f 00 b0 00  20 1e b0 00 a2 06 00 20  |........ ...... |
00103df0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 4f 8b  |............. O.|
00103e00  00 00 b8 00 10 00 b8 00  20 00 b8 00 e0 5f 00 20  |........ ...._. |
00103e10  00 00 05 00 00 00 00 00  00 00 00 00 00 20 d7 73  |............. .s|
00103e20  01 00 b8 00 11 00 b8 00  20 02 b8 00 69 06 00 20  |........ ...i.. |
00103e30  00 00 05 00 00 00 00 00  00 00 00 00 00 20 1c e6  |............. ..|
00103e40  02 00 b8 00 12 00 b8 00  20 04 b8 00 b6 02 00 20  |........ ...... |
00103e50  00 00 05 00 00 00 00 00  00 00 00 00 00 20 3b 68  |............. ;h|
00103e60  03 00 b8 00 13 00 b8 00  20 06 b8 00 11 08 00 20  |........ ...... |
00103e70  00 00 05 00 00 00 00 00  00 00 00 00 00 20 55 3d  |............. U=|
00103e80  04 00 b8 00 14 00 b8 00  20 08 b8 00 0e 08 00 20  |........ ...... |
00103e90  00 00 05 00 00 00 00 00  00 00 00 00 00 20 66 4d  |............. fM|
00103ea0  05 00 b8 00 15 00 b8 00  20 0a b8 00 6b 06 00 20  |........ ...k.. |
00103eb0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 d7 5d  |............. .]|
00103ec0  06 00 b8 00 16 00 b8 00  20 0c b8 00 5a 09 00 20  |........ ...Z.. |
00103ed0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 d2 fc  |............. ..|
00103ee0  07 00 b8 00 17 00 b8 00  20 0e b8 00 b8 01 00 20  |........ ...... |
00103ef0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 18 d0  |............. ..|
00103f00  08 00 b8 00 18 00 b8 00  20 10 b8 00 db 03 00 20  |........ ...... |
00103f10  00 00 05 00 00 00 00 00  00 00 00 00 00 20 87 4e  |............. .N|
00103f20  09 00 b8 00 19 00 b8 00  20 12 b8 00 42 00 00 20  |........ ...B.. |
00103f30  00 00 05 00 00 00 00 00  00 00 00 00 00 20 52 ad  |............. R.|
00103f40  0a 00 b8 00 1a 00 b8 00  20 14 b8 00 00 00 00 20  |........ ...... |
00103f50  00 00 05 00 00 00 00 00  00 00 00 00 00 20 88 60  |............. .`|
00103f60  0b 00 b8 00 1b 00 b8 00  20 16 b8 00 c3 03 00 20  |........ ...... |
00103f70  00 00 05 00 00 00 00 00  00 00 00 00 00 20 6f 48  |............. oH|
00103f80  0c 00 b8 00 1c 00 b8 00  20 18 b8 00 89 05 00 20  |........ ...... |
00103f90  00 00 05 00 00 00 00 00  00 00 00 00 00 20 be 45  |............. .E|
00103fa0  0d 00 b8 00 1d 00 b8 00  20 1a b8 00 30 00 00 20  |........ ...0.. |
00103fb0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 83 cd  |............. ..|
00103fc0  0e 00 b8 00 1e 00 b8 00  20 1c b8 00 de 07 00 20  |........ ...... |
00103fd0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 0a 40  |............. .@|
00103fe0  0f 00 b8 00 1f 00 b8 00  20 1e b8 00 48 04 00 20  |........ ...H.. |
00103ff0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ec b4  |............. ..|
00104000  00 00 c0 00 10 00 c0 00  20 00 c0 00 e0 5f 00 20  |........ ...._. |
00104010  00 00 05 00 00 00 00 00  00 00 00 00 00 20 03 32  |............. .2|
00104020  01 00 c0 00 11 00 c0 00  20 02 c0 00 00 00 00 20  |........ ...... |
00104030  00 00 05 00 00 00 00 00  00 00 00 00 00 20 e6 86  |............. ..|
00104040  02 00 c0 00 12 00 c0 00  20 04 c0 00 00 00 00 20  |........ ...... |
00104050  00 00 05 00 00 00 00 00  00 00 00 00 00 20 88 27  |............. .'|
00104060  03 00 c0 00 13 00 c0 00  20 06 c0 00 46 06 00 20  |........ ...F.. |
00104070  00 00 05 00 00 00 00 00  00 00 00 00 00 20 45 7b  |............. E{|
00104080  04 00 c0 00 14 00 c0 00  20 08 c0 00 81 0a 00 20  |........ ...... |
00104090  00 00 05 00 00 00 00 00  00 00 00 00 00 20 09 93  |............. ..|
001040a0  05 00 c0 00 15 00 c0 00  20 0a c0 00 3c 05 00 20  |........ ...<.. |
001040b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 53 88  |............. S.|
001040c0  06 00 c0 00 16 00 c0 00  20 0c c0 00 7a 03 00 20  |........ ...z.. |
001040d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 2b d5  |............. +.|
001040e0  07 00 c0 00 17 00 c0 00  20 0e c0 00 34 08 00 20  |........ ...4.. |
001040f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 f0 78  |............. .x|
00104100  08 00 c0 00 18 00 c0 00  20 10 c0 00 34 05 00 20  |........ ...4.. |
00104110  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b4 4f  |............. .O|
00104120  09 00 c0 00 19 00 c0 00  20 12 c0 00 fc 05 00 20  |........ ...... |
00104130  00 00 05 00 00 00 00 00  00 00 00 00 00 20 d1 b1  |............. ..|
00104140  0a 00 c0 00 1a 00 c0 00  20 14 c0 00 93 01 00 20  |........ ...... |
00104150  00 00 05 00 00 00 00 00  00 00 00 00 00 20 d0 d8  |............. ..|
00104160  0b 00 c0 00 1b 00 c0 00  20 16 c0 00 32 05 00 20  |........ ...2.. |
00104170  00 00 05 00 00 00 00 00  00 00 00 00 00 20 3a 67  |............. :g|
00104180  0c 00 c0 00 1c 00 c0 00  20 18 c0 00 1a 03 00 20  |........ ...... |
00104190  00 00 05 00 00 00 00 00  00 00 00 00 00 20 54 cc  |............. T.|
001041a0  0d 00 c0 00 1d 00 c0 00  20 1a c0 00 62 07 00 20  |........ ...b.. |
001041b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 55 14  |............. U.|
001041c0  0e 00 c0 00 1e 00 c0 00  20 1c c0 00 38 09 00 20  |........ ...8.. |
001041d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 6d 1d  |............. m.|
001041e0  0f 00 c0 00 1f 00 c0 00  20 1e c0 00 d8 03 00 20  |........ ...... |
001041f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 a7 e9  |............. ..|
00104200  00 00 c8 00 10 00 c8 00  20 00 c8 00 e0 5f 00 20  |........ ...._. |
00104210  00 00 05 00 00 00 00 00  00 00 00 00 00 20 15 41  |............. .A|
00104220  01 00 c8 00 11 00 c8 00  20 02 c8 00 9d 03 00 20  |........ ...... |
00104230  00 00 05 00 00 00 00 00  00 00 00 00 00 20 bf 87  |............. ..|
00104240  02 00 c8 00 12 00 c8 00  20 04 c8 00 b3 07 00 20  |........ ...... |
00104250  00 00 05 00 00 00 00 00  00 00 00 00 00 20 fa c6  |............. ..|
00104260  03 00 c8 00 13 00 c8 00  20 06 c8 00 4d 07 00 20  |........ ...M.. |
00104270  00 00 05 00 00 00 00 00  00 00 00 00 00 20 70 be  |............. p.|
00104280  04 00 c8 00 14 00 c8 00  20 08 c8 00 be 05 00 20  |........ ...... |
00104290  00 00 05 00 00 00 00 00  00 00 00 00 00 20 16 0b  |............. ..|
001042a0  05 00 c8 00 15 00 c8 00  20 0a c8 00 37 07 00 20  |........ ...7.. |
001042b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 96 bd  |............. ..|
001042c0  06 00 c8 00 16 00 c8 00  20 0c c8 00 a1 08 00 20  |........ ...... |
001042d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 00 4b  |............. .K|
001042e0  07 00 c8 00 17 00 c8 00  20 0e c8 00 dd 05 00 20  |........ ...... |
001042f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 96 f0  |............. ..|
00104300  08 00 c8 00 18 00 c8 00  20 10 c8 00 c0 09 00 20  |........ ...... |
00104310  00 00 05 00 00 00 00 00  00 00 00 00 00 20 15 3d  |............. .=|
00104320  09 00 c8 00 19 00 c8 00  20 12 c8 00 00 00 00 20  |........ ...... |
00104330  00 00 05 00 00 00 00 00  00 00 00 00 00 20 24 f3  |............. $.|
00104340  0a 00 c8 00 1a 00 c8 00  20 14 c8 00 ff 03 00 20  |........ ...... |
00104350  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ba 86  |............. ..|
00104360  0b 00 c8 00 1b 00 c8 00  20 16 c8 00 bf 0f 00 20  |........ ...... |
00104370  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b1 f1  |............. ..|
00104380  0c 00 c8 00 1c 00 c8 00  20 18 c8 00 3b 08 00 20  |........ ...;.. |
00104390  00 00 05 00 00 00 00 00  00 00 00 00 00 20 6f bb  |............. o.|
001043a0  0d 00 c8 00 1d 00 c8 00  20 1a c8 00 5c 00 00 20  |........ ...\.. |
001043b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 9c b2  |............. ..|
001043c0  0e 00 c8 00 1e 00 c8 00  20 1c c8 00 00 00 00 20  |........ ...... |
001043d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 20 51  |.............  Q|
001043e0  0f 00 c8 00 1f 00 c8 00  20 1e c8 00 40 08 00 20  |........ ...@.. |
001043f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 69 e7  |............. i.|
00104400  00 00 d0 00 10 00 d0 00  20 00 d0 00 e0 5f 00 20  |........ ...._. |
00104410  00 00 05 00 00 00 00 00  00 00 00 00 00 20 2f d4  |............. /.|
00104420  01 00 d0 00 11 00 d0 00  20 02 d0 00 00 00 00 20  |........ ...... |
00104430  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ca 60  |............. .`|
00104440  02 00 d0 00 12 00 d0 00  20 04 d0 00 00 00 00 20  |........ ...... |
00104450  00 00 05 00 00 00 00 00  00 00 00 00 00 20 a4 c1  |............. ..|
00104460  03 00 d0 00 13 00 d0 00  20 06 d0 00 00 00 00 20  |........ ...... |
00104470  00 00 05 00 00 00 00 00  00 00 00 00 00 20 7f 61  |............. .a|
00104480  04 00 d0 00 14 00 d0 00  20 08 d0 00 00 00 00 20  |........ ...... |
00104490  00 00 05 00 00 00 00 00  00 00 00 00 00 20 7b c3  |............. {.|
001044a0  05 00 d0 00 15 00 d0 00  20 0a d0 00 00 00 00 20  |........ ...... |
001044b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 a0 63  |............. .c|
001044c0  06 00 d0 00 16 00 d0 00  20 0c d0 00 47 03 00 20  |........ ...G.. |
001044d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 9a 93  |............. ..|
001044e0  07 00 d0 00 17 00 d0 00  20 0e d0 00 00 00 00 20  |........ ...... |
001044f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 15 62  |............. .b|
00104500  08 00 d0 00 18 00 d0 00  20 10 d0 00 00 00 00 20  |........ ...... |
00104510  00 00 05 00 00 00 00 00  00 00 00 00 00 20 c5 c6  |............. ..|
00104520  09 00 d0 00 19 00 d0 00  20 12 d0 00 35 04 00 20  |........ ...5.. |
00104530  00 00 05 00 00 00 00 00  00 00 00 00 00 20 43 65  |............. Ce|
00104540  0a 00 d0 00 1a 00 d0 00  20 14 d0 00 2f 03 00 20  |........ .../.. |
00104550  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b8 ea  |............. ..|
00104560  0b 00 d0 00 1b 00 d0 00  20 16 d0 00 00 00 00 20  |........ ...... |
00104570  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ab 67  |............. .g|
00104580  0c 00 d0 00 1c 00 d0 00  20 18 d0 00 99 07 00 20  |........ ...... |
00104590  00 00 05 00 00 00 00 00  00 00 00 00 00 20 e3 47  |............. .G|
001045a0  0d 00 d0 00 1d 00 d0 00  20 1a d0 00 5a 02 00 20  |........ ...Z.. |
001045b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 e7 ce  |............. ..|
001045c0  0e 00 d0 00 1e 00 d0 00  20 1c d0 00 00 00 00 20  |........ ...... |
001045d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 1a c4  |............. ..|
001045e0  0f 00 d0 00 1f 00 d0 00  20 1e d0 00 78 01 00 20  |........ ...x.. |
001045f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 08 4d  |............. .M|
00104600  00 00 d8 00 10 00 d8 00  20 00 d8 00 e0 5f 00 20  |........ ...._. |
00104610  00 00 05 00 00 00 00 00  00 00 00 00 00 20 39 a7  |............. 9.|
00104620  01 00 d8 00 11 00 d8 00  20 02 d8 00 31 05 00 20  |........ ...1.. |
00104630  00 00 05 00 00 00 00 00  00 00 00 00 00 20 91 b1  |............. ..|
00104640  02 00 d8 00 12 00 d8 00  20 04 d8 00 85 04 00 20  |........ ...... |
00104650  00 00 05 00 00 00 00 00  00 00 00 00 00 20 c9 56  |............. .V|
00104660  03 00 d8 00 13 00 d8 00  20 06 d8 00 36 01 00 20  |........ ...6.. |
00104670  00 00 05 00 00 00 00 00  00 00 00 00 00 20 d7 04  |............. ..|
00104680  04 00 d8 00 14 00 d8 00  20 08 d8 00 96 00 00 20  |........ ...... |
00104690  00 00 05 00 00 00 00 00  00 00 00 00 00 20 a0 14  |............. ..|
001046a0  05 00 d8 00 15 00 d8 00  20 0a d8 00 0a 01 00 20  |........ ...... |
001046b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 c4 5a  |............. .Z|
001046c0  06 00 d8 00 16 00 d8 00  20 0c d8 00 5a 03 00 20  |........ ...Z.. |
001046d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 1a 8a  |............. ..|
001046e0  07 00 d8 00 17 00 d8 00  20 0e d8 00 93 01 00 20  |........ ...... |
001046f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 8f e8  |............. ..|
00104700  08 00 d8 00 18 00 d8 00  20 10 d8 00 b4 02 00 20  |........ ...... |
00104710  00 00 05 00 00 00 00 00  00 00 00 00 00 20 15 03  |............. ..|
00104720  09 00 d8 00 19 00 d8 00  20 12 d8 00 27 01 00 20  |........ ...'.. |
00104730  00 00 05 00 00 00 00 00  00 00 00 00 00 20 e3 3a  |............. .:|
00104740  0a 00 d8 00 1a 00 d8 00  20 14 d8 00 00 00 00 20  |........ ...... |
00104750  00 00 05 00 00 00 00 00  00 00 00 00 00 20 66 b4  |............. f.|
00104760  0b 00 d8 00 1b 00 d8 00  20 16 d8 00 00 00 00 20  |........ ...... |
00104770  00 00 05 00 00 00 00 00  00 00 00 00 00 20 bd 14  |............. ..|
00104780  0c 00 d8 00 1c 00 d8 00  20 18 d8 00 00 00 00 20  |........ ...... |
00104790  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b9 b6  |............. ..|
001047a0  0d 00 d8 00 1d 00 d8 00  20 1a d8 00 00 00 00 20  |........ ...... |
001047b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 62 16  |............. b.|
001047c0  0e 00 d8 00 1e 00 d8 00  20 1c d8 00 00 00 00 20  |........ ...... |
001047d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 0c b7  |............. ..|
001047e0  0f 00 d8 00 1f 00 d8 00  20 1e d8 00 00 00 00 20  |........ ...... |
001047f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 d7 17  |............. ..|
00104800  00 00 e0 00 10 00 e0 00  20 00 e0 00 b1 58 00 20  |........ ....X. |
00104810  00 00 05 00 00 00 00 00  00 00 00 00 00 20 aa 62  |............. .b|
00104820  01 00 e0 00 11 00 e0 00  20 02 e0 00 00 00 00 20  |........ ...... |
00104830  00 00 05 00 00 00 00 00  00 00 00 00 00 20 bd 0a  |............. ..|
00104840  02 00 e0 00 12 00 e0 00  20 04 e0 00 00 00 00 20  |........ ...... |
00104850  00 00 05 00 00 00 00 00  00 00 00 00 00 20 d3 ab  |............. ..|
00104860  03 00 e0 00 13 00 e0 00  20 06 e0 00 00 00 00 20  |........ ...... |
00104870  00 00 05 00 00 00 00 00  00 00 00 00 00 20 08 0b  |............. ..|
00104880  04 00 e0 00 14 00 e0 00  20 08 e0 00 00 00 00 20  |........ ...... |
00104890  00 00 05 00 00 00 00 00  00 00 00 00 00 20 0c a9  |............. ..|
001048a0  05 00 e0 00 15 00 e0 00  20 0a e0 00 00 00 00 20  |........ ...... |
001048b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 d7 09  |............. ..|
001048c0  06 00 e0 00 16 00 e0 00  20 0c e0 00 00 00 00 20  |........ ...... |
001048d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b9 a8  |............. ..|
001048e0  07 00 e0 00 17 00 e0 00  20 0e e0 00 00 00 00 20  |........ ...... |
001048f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 62 08  |............. b.|
00104900  08 00 e0 00 18 00 e0 00  20 10 e0 00 00 00 00 20  |........ ...... |
00104910  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b2 ac  |............. ..|
00104920  09 00 e0 00 19 00 e0 00  20 12 e0 00 00 00 00 20  |........ ...... |
00104930  00 00 05 00 00 00 00 00  00 00 00 00 00 20 69 0c  |............. i.|
00104940  0a 00 e0 00 1a 00 e0 00  20 14 e0 00 00 00 00 20  |........ ...... |
00104950  00 00 05 00 00 00 00 00  00 00 00 00 00 20 07 ad  |............. ..|
00104960  0b 00 e0 00 1b 00 e0 00  20 16 e0 00 00 00 00 20  |........ ...... |
00104970  00 00 05 00 00 00 00 00  00 00 00 00 00 20 dc 0d  |............. ..|
00104980  0c 00 e0 00 1c 00 e0 00  20 18 e0 00 00 00 00 20  |........ ...... |
00104990  00 00 05 00 00 00 00 00  00 00 00 00 00 20 d8 af  |............. ..|
001049a0  0d 00 e0 00 1d 00 e0 00  20 1a e0 00 00 00 00 20  |........ ...... |
001049b0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 03 0f  |............. ..|
001049c0  0e 00 e0 00 1e 00 e0 00  20 1c e0 00 00 00 00 20  |........ ...... |
001049d0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 6d ae  |............. m.|
001049e0  0f 00 e0 00 1f 00 e0 00  20 1e e0 00 00 00 00 20  |........ ...... |
001049f0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 b6 0e  |............. ..|
00104a00  00 00 e8 00 10 00 e8 00  20 00 e8 00 e0 5f 00 20  |........ ...._. |
00104a10  00 00 05 00 00 00 00 00  00 00 00 00 00 20 4e cd  |............. N.|
00104a20  01 00 e8 00 11 00 e8 00  20 02 e8 00 00 00 00 20  |........ ...... |
00104a30  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ab 79  |............. .y|
00104a40  02 00 e8 00 12 00 e8 00  20 04 e8 00 00 00 00 20  |........ ...... |
00104a50  00 00 05 00 00 00 00 00  00 00 00 00 00 20 c5 d8  |............. ..|
00104a60  03 00 e8 00 13 00 e8 00  20 06 e8 00 00 00 00 20  |........ ...... |
00104a70  00 00 05 00 00 00 00 00  00 00 00 00 00 20 1e 78  |............. .x|
00104a80  04 00 e8 00 14 00 e8 00  20 08 e8 00 00 00 00 20  |........ ...... |
00104a90  00 00 05 00 00 00 00 00  00 00 00 00 00 20 1a da  |............. ..|
00104aa0  05 00 e8 00 15 00 e8 00  20 0a e8 00 00 00 00 20  |........ ...... |
00104ab0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 c1 7a  |............. .z|
00104ac0  06 00 e8 00 16 00 e8 00  20 0c e8 00 00 00 00 20  |........ ...... |
00104ad0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 af db  |............. ..|
00104ae0  07 00 e8 00 17 00 e8 00  20 0e e8 00 00 00 00 20  |........ ...... |
00104af0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 74 7b  |............. t{|
00104b00  08 00 e8 00 18 00 e8 00  20 10 e8 00 00 00 00 20  |........ ...... |
00104b10  00 00 05 00 00 00 00 00  00 00 00 00 00 20 a4 df  |............. ..|
00104b20  09 00 e8 00 19 00 e8 00  20 12 e8 00 00 00 00 20  |........ ...... |
00104b30  00 00 05 00 00 00 00 00  00 00 00 00 00 20 7f 7f  |............. ..|
00104b40  0a 00 e8 00 1a 00 e8 00  20 14 e8 00 00 00 00 20  |........ ...... |
00104b50  00 00 05 00 00 00 00 00  00 00 00 00 00 20 11 de  |............. ..|
00104b60  0b 00 e8 00 1b 00 e8 00  20 16 e8 00 00 00 00 20  |........ ...... |
00104b70  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ca 7e  |............. .~|
00104b80  0c 00 e8 00 1c 00 e8 00  20 18 e8 00 00 00 00 20  |........ ...... |
00104b90  00 00 05 00 00 00 00 00  00 00 00 00 00 20 ce dc  |............. ..|
00104ba0  0d 00 e8 00 1d 00 e8 00  20 1a e8 00 00 00 00 20  |........ ...... |
00104bb0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 15 7c  |............. .||
00104bc0  0e 00 e8 00 1e 00 e8 00  20 1c e8 00 00 00 00 20  |........ ...... |
00104bd0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 7b dd  |............. {.|
00104be0  0f 00 e8 00 1f 00 e8 00  20 1e e8 00 00 00 00 20  |........ ...... |
00104bf0  00 00 05 00 00 00 00 00  00 00 00 00 00 20 a0 7d  |............. .}|

Is this what you want?

Dee

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: Advice requested
  2015-11-03  1:02                   ` o1bigtenor
@ 2015-11-03  1:55                     ` Phil Turmel
  2015-11-03  4:03                       ` o1bigtenor
  0 siblings, 1 reply; 22+ messages in thread
From: Phil Turmel @ 2015-11-03  1:55 UTC (permalink / raw)
  To: o1bigtenor; +Cc: Linux-RAID

On 11/02/2015 08:02 PM, o1bigtenor wrote:

> root@debianbase:/# dd if=/dev/md0 bs=1M count=16 |hexdump -C |head -n 1000
> 00000260  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
> *
> 00100400  00 20 47 07 00 14 1c 1d  99 9a 74 01 f0 80 72 18  |. G.......t...r.|
> 00100410  83 b0 3d 07 00 00 00 00  02 00 00 00 02 00 00 00  |..=.............|
> 00100420  00 80 00 00 00 80 00 00  00 20 00 00 fa 46 d5 55  |......... ...F.U|
> 00100430  78 80 e0 55 5a 00 27 00  53 ef 01 00 01 00 00 00  |x..UZ.'.S.......|
> 00100440  1e de 6d 52 00 4e ed 00  00 00 00 00 01 00 00 00  |..mR.N..........|
> 00100450  00 00 00 00 0b 00 00 00  00 01 00 00 3c 00 00 00  |............<...|
> 00100460  42 02 00 00 7b 00 00 00  49 55 20 36 b4 6f 49 56  |B...{...IU 6.oIV|
> 00100470  ad e9 35 41 a3 dd 7f 0a  00 00 00 00 00 00 00 00  |..5A............|
> 00100480  00 00 00 00 00 00 00 00  2f 6d 65 64 69 61 2f 64  |......../media/d|
> 00100490  61 72 61 6c 64 2f 34 39  35 35 32 30 33 36 2d 62  |arald/49552036-b|
> 001004a0  34 36 66 2d 34 39 35 36  2d 61 64 65 39 2d 33 35  |46f-4956-ade9-35|
> 001004b0  34 31 61 33 64 64 37 66  30 61 00 00 00 00 00 00  |41a3dd7f0a......|
> 001004c0  00 00 d8 60 0f fa 0f 88  00 00 00 00 00 00 8b 03  |...`............|
> 001004d0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
> 001004e0  08 00 00 00 00 00 00 00  00 00 00 00 c7 2a e8 cd  |.............*..|
> 001004f0  c2 6f 4d 09 8f c2 2b 44  fc 95 b6 5e 01 01 00 00  |.oM...+D...^....|
> 00100500  00 00 00 00 00 00 00 00  a1 25 65 4f 0a f3 02 00  |.........%eO....|
> 00100510  04 00 00 00 00 00 00 00  00 00 00 00 ff 7f 00 00  |................|
> 00100520  00 80 88 0e ff 7f 00 00  01 00 00 00 ff ff 88 0e  |................|
> 00100530  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
> 00100540  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 08  |................|
> 00100550  00 00 00 00 00 00 00 00  00 00 00 00 1c 00 1c 00  |................|
> 00100560  01 00 00 00 80 00 00 00  00 00 00 00 00 00 00 00  |................|
> 00100570  00 01 00 00 04 00 00 00  a8 96 ac 12 00 00 00 00  |................|
> 00100580  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
> *

Woo hoo!  There's your ext4 superblock.

Use "gdisk /dev/md0" and create a partition starting at sector 2048 and
occupying the rest of the array.  After you save that, you may need
"partprobe /dev/md0" to rescan it.

You'll probably end up with a device named something like /dev/md0p1.
The output of dmesg will likely show you the device name.

Use "fsck -n /dev/md0p1" to verify the filesystem, and if that has
relatively few errors, you may mount it and start making backups.

Phil


^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: Advice requested
  2015-11-03  1:55                     ` Phil Turmel
@ 2015-11-03  4:03                       ` o1bigtenor
  2015-11-03  4:09                         ` Phil Turmel
  0 siblings, 1 reply; 22+ messages in thread
From: o1bigtenor @ 2015-11-03  4:03 UTC (permalink / raw)
  To: Phil Turmel; +Cc: Linux-RAID

On Mon, Nov 2, 2015 at 7:55 PM, Phil Turmel <philip@turmel.org> wrote:
> On 11/02/2015 08:02 PM, o1bigtenor wrote:
>
>> root@debianbase:/# dd if=/dev/md0 bs=1M count=16 |hexdump -C |head -n 1000
>> 00000260  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
>> *
>> 00100400  00 20 47 07 00 14 1c 1d  99 9a 74 01 f0 80 72 18  |. G.......t...r.|
>> 00100410  83 b0 3d 07 00 00 00 00  02 00 00 00 02 00 00 00  |..=.............|
>> 00100420  00 80 00 00 00 80 00 00  00 20 00 00 fa 46 d5 55  |......... ...F.U|
>> 00100430  78 80 e0 55 5a 00 27 00  53 ef 01 00 01 00 00 00  |x..UZ.'.S.......|
>> 00100440  1e de 6d 52 00 4e ed 00  00 00 00 00 01 00 00 00  |..mR.N..........|
>> 00100450  00 00 00 00 0b 00 00 00  00 01 00 00 3c 00 00 00  |............<...|
>> 00100460  42 02 00 00 7b 00 00 00  49 55 20 36 b4 6f 49 56  |B...{...IU 6.oIV|
>> 00100470  ad e9 35 41 a3 dd 7f 0a  00 00 00 00 00 00 00 00  |..5A............|
>> 00100480  00 00 00 00 00 00 00 00  2f 6d 65 64 69 61 2f 64  |......../media/d|
>> 00100490  61 72 61 6c 64 2f 34 39  35 35 32 30 33 36 2d 62  |arald/49552036-b|
>> 001004a0  34 36 66 2d 34 39 35 36  2d 61 64 65 39 2d 33 35  |46f-4956-ade9-35|
>> 001004b0  34 31 61 33 64 64 37 66  30 61 00 00 00 00 00 00  |41a3dd7f0a......|
>> 001004c0  00 00 d8 60 0f fa 0f 88  00 00 00 00 00 00 8b 03  |...`............|
>> 001004d0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
>> 001004e0  08 00 00 00 00 00 00 00  00 00 00 00 c7 2a e8 cd  |.............*..|
>> 001004f0  c2 6f 4d 09 8f c2 2b 44  fc 95 b6 5e 01 01 00 00  |.oM...+D...^....|
>> 00100500  00 00 00 00 00 00 00 00  a1 25 65 4f 0a f3 02 00  |.........%eO....|
>> 00100510  04 00 00 00 00 00 00 00  00 00 00 00 ff 7f 00 00  |................|
>> 00100520  00 80 88 0e ff 7f 00 00  01 00 00 00 ff ff 88 0e  |................|
>> 00100530  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
>> 00100540  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 08  |................|
>> 00100550  00 00 00 00 00 00 00 00  00 00 00 00 1c 00 1c 00  |................|
>> 00100560  01 00 00 00 80 00 00 00  00 00 00 00 00 00 00 00  |................|
>> 00100570  00 01 00 00 04 00 00 00  a8 96 ac 12 00 00 00 00  |................|
>> 00100580  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
>> *
>
> Woo hoo!  There's your ext4 superblock.
>
> Use "gdisk /dev/md0" and create a partition starting at sector 2048 and
> occupying the rest of the array.  After you save that, you may need
> "partprobe /dev/md0" to rescan it.

OK - - - can this be broken down into specific commands.

gparted

then do I use

o

for a new empty GUID partion

or?

(I see using 'r' gives some other options - - - still not clear should
I be using 'e'
how do I specify the partition starting at sector 2048?)q
>
> You'll probably end up with a device named something like /dev/md0p1.
> The output of dmesg will likely show you the device name.
>
> Use "fsck -n /dev/md0p1" to verify the filesystem, and if that has
> relatively few errors, you may mount it and start making backups.

This sounds really good.

Is there any way that I could get series of commands for doing these
different things? (This is no wheres close to what I do regularly!!!)

Thanking you for your assistance!!

Dee
>
> You'll probably end up with a device named something like /dev/md0p1.
> The output of dmesg will likely show you the device name.
>
> Use "fsck -n /dev/md0p1" to verify the filesystem, and if that has
> relatively few errors, you may mount it and start making backups.
>
> Phil
>

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: Advice requested
  2015-11-03  4:03                       ` o1bigtenor
@ 2015-11-03  4:09                         ` Phil Turmel
  2015-11-03  4:28                           ` o1bigtenor
  0 siblings, 1 reply; 22+ messages in thread
From: Phil Turmel @ 2015-11-03  4:09 UTC (permalink / raw)
  To: o1bigtenor; +Cc: Linux-RAID

On 11/02/2015 11:03 PM, o1bigtenor wrote:
> On Mon, Nov 2, 2015 at 7:55 PM, Phil Turmel <philip@turmel.org> wrote:

>> > Woo hoo!  There's your ext4 superblock.
>> >
>> > Use "gdisk /dev/md0" and create a partition starting at sector 2048 and
>> > occupying the rest of the array.  After you save that, you may need
>> > "partprobe /dev/md0" to rescan it.

I specifically recommended gdisk because it works very much like fdisk,
but for gpt instead of dos.  I don't ever use parted or gparted, so I
can't help you there.

Try:

man gdisk

;-)

You might need "apt-get install gdisk" first.

Phil

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: Advice requested
  2015-11-03  4:09                         ` Phil Turmel
@ 2015-11-03  4:28                           ` o1bigtenor
  2015-11-03  4:47                             ` Phil Turmel
  0 siblings, 1 reply; 22+ messages in thread
From: o1bigtenor @ 2015-11-03  4:28 UTC (permalink / raw)
  To: Phil Turmel; +Cc: Linux-RAID

On Mon, Nov 2, 2015 at 10:09 PM, Phil Turmel <philip@turmel.org> wrote:
> On 11/02/2015 11:03 PM, o1bigtenor wrote:
>> On Mon, Nov 2, 2015 at 7:55 PM, Phil Turmel <philip@turmel.org> wrote:
>
>>> > Woo hoo!  There's your ext4 superblock.
>>> >
>>> > Use "gdisk /dev/md0" and create a partition starting at sector 2048 and
>>> > occupying the rest of the array.  After you save that, you may need
>>> > "partprobe /dev/md0" to rescan it.
>
> I specifically recommended gdisk because it works very much like fdisk,
> but for gpt instead of dos.  I don't ever use parted or gparted, so I
> can't help you there.
>
> Try:
>
> man gdisk
>
> ;-)
>
> You might need "apt-get install gdisk" first.

Sorry - - - meant

gdisk

then ???????

Looking at:
root@debianbase:/# gdisk /dev/md0
GPT fdisk (gdisk) version 1.0.0

Partition table scan:
 MBR: protective
 BSD: not present
 APM: not present
 GPT: present

Found valid GPT with protective MBR; using GPT.

Command (? for help): r

Recovery/transformation command (? for help): ?
b       use backup GPT header (rebuilding main)
c       load backup partition table from disk (rebuilding main)
d       use main GPT header (rebuilding backup)
e       load main partition table from disk (rebuilding backup)
f       load MBR and build fresh GPT from it
g       convert GPT into MBR and exit
h       make hybrid MBR
i       show detailed information on a partition
l       load partition data from a backup file
m       return to main menu
o       print protective MBR data
p       print the partition table
q       quit without saving changes
t       transform BSD disklabel partition
v       verify disk
w       write table to disk and exit
x       extra functionality (experts only)
?       print this menu

Recovery/transformation command (? for help): q
root@debianbase:/# gdisk /dev/md0
GPT fdisk (gdisk) version 1.0.0

Partition table scan:
 MBR: protective
 BSD: not present
 APM: not present
 GPT: present

Found valid GPT with protective MBR; using GPT.

Command (? for help): x

Expert command (? for help): ?
a       set attributes
c       change partition GUID
d       display the sector alignment value
e       relocate backup data structures to the end of the disk
g       change disk GUID
h       recompute CHS values in protective/hybrid MBR
i       show detailed information on a partition
l       set the sector alignment value
m       return to main menu
n       create a new protective MBR
o       print protective MBR data
p       print the partition table
q       quit without saving changes
r       recovery and transformation options (experts only)
s       resize partition table
t       transpose two partition table entries
u       replicate partition table on new device
v       verify disk
w       write table to disk and exit
z       zap (destroy) GPT data structures and exit
?       print this menu

doesn't really give me anything that seems even close to:

create a partition starting at sector 2048

the man page really isn't clearer - - -

n      Create a new partition. This command is modelled after the
equivalent fdisk option, although some differences exist. You enter a
partition number, starting sector, and an ending sector. Both start
and end sectors
             can be specified in absolute terms as sector numbers or
as positions measured in kibibytes (K), mebibytes (M), gibibytes (G),
tebibytes (T), or pebibytes (P); for instance, 40M specifies a
position 40MiB from the
             start  of  the disk. You can specify locations relative
to the start or end of the specified default range by preceding the
number by a '+' or '-' symbol, as in +2G to specify a point 2GiB after
the default start
             sector, or -200M to specify a point 200MiB before the
last available sector. Pressing the Enter key with no input specifies
the default value, which is the start of the largest available block
for the start  sec‐
             tor and the end of the same block for the end sector.


so I just do ?

gdisk

n 1 2048 1923518592

Will that change any of the data on the sectors?

Please - - - is there any way of getting specific commands?

Dee
--
To unsubscribe from this list: send the line "unsubscribe linux-raid" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: Advice requested
  2015-11-03  4:28                           ` o1bigtenor
@ 2015-11-03  4:47                             ` Phil Turmel
  2015-11-03 12:45                               ` o1bigtenor
  0 siblings, 1 reply; 22+ messages in thread
From: Phil Turmel @ 2015-11-03  4:47 UTC (permalink / raw)
  To: o1bigtenor; +Cc: Linux-RAID

On 11/02/2015 11:28 PM, o1bigtenor wrote:
> gdisk
> 
> n 1 2048 1923518592
> 
> Will that change any of the data on the sectors?
> 
> Please - - - is there any way of getting specific commands?

gdisk /dev/md0

{Yes, you put /dev/md0 on the gdisk command line.}

then select 'n' for new partition.  It should offer to create partition
#1.  It should offer 2048 as the starting sector.  It should offer the
last legal sector as the ending sector.  It will probably assign type
8300 by default too.  All good.  Just make sure it *does* get the
starting sector right (2048).

When it gives you its prompt again, select 'p' to print it out so you
can double check.  Then select 'w' to write the new partition table.  It
will warn you, but yes you are sure (as long as the start sector is 2048).

You will end up back at the shell prompt.  You may or may not have seen
a partition device name in the messages.  If not, use "partprobe /dev/md0".

Finally, use "dmesg |tail" to see the last few kernel messages -- the
new device name should show up there.  Or use "blkid" to see all known
partition names.

Whatever name it is, fsck it with the '-n' option.

Then mount it.

Then make backups.

Phil

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: Advice requested
  2015-11-03  4:47                             ` Phil Turmel
@ 2015-11-03 12:45                               ` o1bigtenor
  2015-11-03 13:09                                 ` Phil Turmel
  0 siblings, 1 reply; 22+ messages in thread
From: o1bigtenor @ 2015-11-03 12:45 UTC (permalink / raw)
  To: Phil Turmel; +Cc: Linux-RAID

On Mon, Nov 2, 2015 at 10:47 PM, Phil Turmel <philip@turmel.org> wrote:
> On 11/02/2015 11:28 PM, o1bigtenor wrote:
>> gdisk
>>
>> n 1 2048 1923518592
>>
>> Will that change any of the data on the sectors?
>>
>> Please - - - is there any way of getting specific commands?
>
> gdisk /dev/md0
>
> {Yes, you put /dev/md0 on the gdisk command line.}
>
> then select 'n' for new partition.  It should offer to create partition
> #1.  It should offer 2048 as the starting sector.  It should offer the
> last legal sector as the ending sector.  It will probably assign type
> 8300 by default too.  All good.  Just make sure it *does* get the
> starting sector right (2048).
>
> When it gives you its prompt again, select 'p' to print it out so you
> can double check.  Then select 'w' to write the new partition table.  It
> will warn you, but yes you are sure (as long as the start sector is 2048).
>
> You will end up back at the shell prompt.  You may or may not have seen
> a partition device name in the messages.  If not, use "partprobe /dev/md0".
>
> Finally, use "dmesg |tail" to see the last few kernel messages -- the
> new device name should show up there.  Or use "blkid" to see all known
> partition names.
>
> Whatever name it is, fsck it with the '-n' option.
>
> Then mount it.
>
> Then make backups.
>

root@debianbase:/# gdisk /dev/md0
GPT fdisk (gdisk) version 1.0.0

Partition table scan:
  MBR: protective
  BSD: not present
  APM: not present
  GPT: present

Found valid GPT with protective MBR; using GPT.

Command (? for help): n
Partition number (1-128, default 1): 1
First sector (34-3907037150, default = 2048) or {+-}size{KMGTP}: 2048
Last sector (2048-3907037150, default = 3907037150) or
{+-}size{KMGTP}: 3907037150
Current type is 'Linux filesystem'
Hex code or GUID (L to show codes, Enter = 8300): 8300
Changed type of partition to 'Linux filesystem'

Command (? for help): p
Disk /dev/md0: 3907037184 sectors, 1.8 TiB
Logical sector size: 512 bytes
Disk identifier (GUID): 1EB47793-0CDF-4E16-AE84-33EC825AC448
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 3907037150
Partitions will be aligned on 2048-sector boundaries
Total free space is 2014 sectors (1007.0 KiB)

Number  Start (sector)    End (sector)  Size       Code  Name
   1            2048      3907037150   1.8 TiB     8300  Linux filesystem

Command (? for help): w

Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING
PARTITIONS!!

Do you want to proceed? (Y/N): Y
OK; writing new GUID partition table (GPT) to /dev/md0.
The operation has completed successfully.
root@debianbase:/# dmesg |tail
[35958.237305] JBD2: Error -5 detected when updating journal
superblock for sdh1-8.
[35958.265302] sd 16:0:0:1: [sdh] Synchronize Cache(10) failed:
Result: hostbyte=DID_ERROR driverbyte=DRIVER_OK
[42828.763827] md: md0 stopped.
[42828.764985] md: bind<sdb1>
[42828.765270] md: bind<sdf1>
[42828.786394] md: raid10 personality registered for level 10
[42828.787258] md/raid10:md0: active with 2 out of 4 devices
[42828.787316] md0: detected capacity change from 0 to 2000403038208
[42828.859574]  md0:
[84855.526621]  md0: p1
root@debianbase:/# blkid
/dev/sda1: UUID="8685-1E58" TYPE="vfat"
PARTUUID="b0e65d5d-5192-4bb1-8bcc-18aaba41cc51"
/dev/sda2: UUID="86A5-6A1A" TYPE="vfat" PARTLABEL="EFI"
PARTUUID="a03a817f-e1ff-4d4c-bff2-465113366d5a"
/dev/sda3: UUID="325c280b-4a4b-420e-8ac4-82aec9db48ec" TYPE="ext2"
PARTLABEL="/boot" PARTUUID="5bd9a487-053a-454d-8db4-2451646ac2fb"
/dev/sda4: UUID="63e7d344-7e9c-443a-9c77-1fe839e694ef" TYPE="ext4"
PARTLABEL="/root" PARTUUID="17740d0d-6bcd-4155-8a9d-17260dcbe027"
/dev/sda5: UUID="1c9d8fba-dd27-4c90-a061-4300e6ff475d" TYPE="swap"
PARTLABEL="swap" PARTUUID="3215a477-3430-4cca-87f4-96d16a7a73d7"
/dev/sda6: UUID="c0ba6eb7-e64a-4b83-8ae1-98c5fd8c0837" TYPE="ext4"
PARTLABEL="/tmp" PARTUUID="037e1c13-6448-4808-b64d-d73580a20848"
/dev/sda7: UUID="6e1a5b3f-e247-4745-a648-8d570a3614c2" TYPE="ext4"
PARTLABEL="/var" PARTUUID="0d31bc6d-a7d1-458d-a32b-d824f70e091c"
/dev/sda8: UUID="ab17dd8c-07b2-45a2-9348-280a46e5b8c3" TYPE="ext4"
PARTLABEL="/usr" PARTUUID="02fd1bc8-f698-4c68-858f-b29777688f49"
/dev/sda9: UUID="7f1cf0d8-ece1-4ba2-8b15-39a51e2eef46" TYPE="ext4"
PARTLABEL="/usr/local" PARTUUID="12e6d517-798d-40d9-919f-29baafe3a0f5"
/dev/sda10: UUID="a8517954-4fae-4eac-806a-e6a8a4f470d5" TYPE="ext4"
PARTLABEL="/home" PARTUUID="3a465b4c-148d-45be-af57-bb0f7957c535"
/dev/sdb1: UUID="79baaa2f-0aa2-b9fa-18e2-ea6b6e2846b3"
UUID_SUB="a80c76db-eaea-61af-bcb9-cbbbac99e467" LABEL="debianbase:0"
TYPE="linux_raid_member" PARTUUID="000e4ced-01"
/dev/sdc1: PARTLABEL="Linux filesystem"
PARTUUID="a79c809a-0333-41d7-918a-e340febddcf4"
/dev/sde1: UUID="79baaa2f-0aa2-b9fa-18e2-ea6b6e2846b3"
UUID_SUB="cb37e722-d3a9-8f88-1343-9de2bdad9d2b" LABEL="debianbase:0"
TYPE="linux_raid_member" PARTUUID="000dc7e1-01"
/dev/sdd1: UUID="a0ce336b-35cd-4413-a1c7-e77a1a4e91a6" TYPE="ext2"
PARTUUID="000c9868-01"
/dev/sdd5: UUID="bbe77e50-0eaa-4048-934e-9f1b72b157ff" TYPE="ext4"
PARTUUID="000c9868-05"
/dev/sdd6: UUID="533f504b-30a6-4cf6-86e9-56772c87bae3" TYPE="ext4"
PARTUUID="000c9868-06"
/dev/sdd7: UUID="ff6bcbe9-f25f-4738-ba6b-5ea3c2fe0b70" TYPE="ext4"
PARTUUID="000c9868-07"
/dev/sdd8: UUID="2d0d1953-dae6-4e33-8d04-cc685e2e36fb" TYPE="ext4"
PARTUUID="000c9868-08"
/dev/sdd9: UUID="df754d9a-3dcf-470f-8e26-d38ef6f82df0" TYPE="ext4"
PARTUUID="000c9868-09"
/dev/sdd10: UUID="842d5e5f-590e-49bd-9a36-8513a2e81f8c" TYPE="swap"
PARTUUID="000c9868-0a"
/dev/sdf1: UUID="79baaa2f-0aa2-b9fa-18e2-ea6b6e2846b3"
UUID_SUB="9e749fa9-a0ef-e791-ea09-d2e272b99f6c" LABEL="debianbase:0"
TYPE="linux_raid_member" PARTUUID="0002d71f-01"
/dev/md0: PTUUID="1eb47793-0cdf-4e16-ae84-33ec825ac448" PTTYPE="gpt"
/dev/md0p1: UUID="49552036-b46f-4956-ade9-3541a3dd7f0a" TYPE="ext4"
PARTLABEL="Linux filesystem"
PARTUUID="2d6ef378-b27a-4de6-a42f-9c0a7e191a00"
root@debianbase:/# fsck -n /dev/md0p1
fsck from util-linux 2.26.2
e2fsck 1.42.13 (17-May-2015)
The filesystem size (according to the superblock) is 488379392 blocks
The physical size of the device is 488379387 blocks
Either the superblock or the partition table is likely to be corrupt!
Abort? no

/dev/md0p1 contains a file system with errors, check forced.
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 4: Checking reference counts
Pass 5: Checking group summary information
/dev/md0p1: 618365/122101760 files (0.2% non-contiguous),
78222096/488379392 blocks



Then I checked using my file manager program and a 2.0 TB volume is listed.
When I tried opening it

Error mounting /dev/md0p1 at
/media/xxxx/49552036-b46f-4956-ade9-3541a3dd7f0a: Command-line `mount
-t "ext4" -o "uhelper=udisks2,nodev,nosuid" "/dev/md0p1"
"/media/darald/49552036-b46f-4956-ade9-3541a3dd7f0a"' exited with
non-zero exit status 32: mount: wrong fs type, bad option, bad
superblock on /dev/md0p1,
       missing codepage or helper program, or other error

If I go back to

gdisk /dev/md0

run

n

and change the last sector to say about 2 or maybe 3 from the last number

1. will I damage something
2. is this what I should do?

as for mounting

I used to use the command

#mount /dev/md0 /home/xxxx/RAID

is that what I use for mounting?


I think that I am right close to being able to backup the files.

Any suggestions for what to do after the files are backed up - - -

Should I (after making backup copies) rebuild the array

1. just treat the disks as if they were empty
2. some other process

Thanking you for your assistance.

Dee

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: Advice requested
  2015-11-03 12:45                               ` o1bigtenor
@ 2015-11-03 13:09                                 ` Phil Turmel
  2015-11-03 13:36                                   ` o1bigtenor
  0 siblings, 1 reply; 22+ messages in thread
From: Phil Turmel @ 2015-11-03 13:09 UTC (permalink / raw)
  To: o1bigtenor; +Cc: Linux-RAID

On 11/03/2015 07:45 AM, o1bigtenor wrote:

> Command (? for help): p
> Disk /dev/md0: 3907037184 sectors, 1.8 TiB
> Logical sector size: 512 bytes
> Disk identifier (GUID): 1EB47793-0CDF-4E16-AE84-33EC825AC448
> Partition table holds up to 128 entries
> First usable sector is 34, last usable sector is 3907037150
> Partitions will be aligned on 2048-sector boundaries
> Total free space is 2014 sectors (1007.0 KiB)
> 
> Number  Start (sector)    End (sector)  Size       Code  Name
>    1            2048      3907037150   1.8 TiB     8300  Linux filesystem
> 
> Command (? for help): w
> 
> Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING
> PARTITIONS!!
> 
> Do you want to proceed? (Y/N): Y
> OK; writing new GUID partition table (GPT) to /dev/md0.
> The operation has completed successfully.
> root@debianbase:/# dmesg |tail
> [35958.237305] JBD2: Error -5 detected when updating journal
> superblock for sdh1-8.
> [35958.265302] sd 16:0:0:1: [sdh] Synchronize Cache(10) failed:
> Result: hostbyte=DID_ERROR driverbyte=DRIVER_OK
> [42828.763827] md: md0 stopped.
> [42828.764985] md: bind<sdb1>
> [42828.765270] md: bind<sdf1>
> [42828.786394] md: raid10 personality registered for level 10
> [42828.787258] md/raid10:md0: active with 2 out of 4 devices
> [42828.787316] md0: detected capacity change from 0 to 2000403038208
> [42828.859574]  md0:
> [84855.526621]  md0: p1
> root@debianbase:/# blkid

> /dev/md0: PTUUID="1eb47793-0cdf-4e16-ae84-33ec825ac448" PTTYPE="gpt"
> /dev/md0p1: UUID="49552036-b46f-4956-ade9-3541a3dd7f0a" TYPE="ext4"
> PARTLABEL="Linux filesystem"
> PARTUUID="2d6ef378-b27a-4de6-a42f-9c0a7e191a00"

> root@debianbase:/# fsck -n /dev/md0p1
> fsck from util-linux 2.26.2
> e2fsck 1.42.13 (17-May-2015)
> The filesystem size (according to the superblock) is 488379392 blocks
> The physical size of the device is 488379387 blocks
> Either the superblock or the partition table is likely to be corrupt!
> Abort? no

You are five sectors short.

> /dev/md0p1 contains a file system with errors, check forced.
> Pass 1: Checking inodes, blocks, and sizes
> Pass 2: Checking directory structure
> Pass 3: Checking directory connectivity
> Pass 4: Checking reference counts
> Pass 5: Checking group summary information
> /dev/md0p1: 618365/122101760 files (0.2% non-contiguous),
> 78222096/488379392 blocks

You will need to convert the partition table to dos -- gpt stores a
backup partition table at the end, occupying space that the ext4
filesystem is claiming.

Use gdisk to do this:

gdisk /dev/md0

select 'r' for recovery options, the 'g' for MBR conversion.  Then w to
write and exit.

Then use fdisk to fix the partition:

fdisk /dev/md0

select 'd' then '1' to delete the partition.

select 'n' then 'p' for primary, then '1', then 2048, then accept the
suggested end sector (should be larger than in gdisk).

'w' to write and exit

probably need "partprobe /dev/md0" for the kernel to get the new size.

Then do a real fsck (without -n):

fsck -y /dev/md0p1

Then mount and backup.

> I think that I am right close to being able to backup the files.

Yes.

> Any suggestions for what to do after the files are backed up - - -
> 
> Should I (after making backup copies) rebuild the array
> 
> 1. just treat the disks as if they were empty
> 2. some other process

Just add the other drives back into the array in one step, then let them
recover.

mdadm /dev/md0 --add /dev/sdc1 --add /dev/sde1

{Use the current names if those aren't correct at this time.}

Although I wouldn't set up a new system quite like this, there's nothing
wrong with this layout.  It'll be fine like this until the day you want
more space.  A new bigger array would be an appropriate time to redesign.

Phil


^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: Advice requested
  2015-11-03 13:09                                 ` Phil Turmel
@ 2015-11-03 13:36                                   ` o1bigtenor
  2015-11-03 15:49                                     ` Adam Goryachev
  2015-11-03 16:08                                     ` Phil Turmel
  0 siblings, 2 replies; 22+ messages in thread
From: o1bigtenor @ 2015-11-03 13:36 UTC (permalink / raw)
  To: Phil Turmel; +Cc: Linux-RAID

On Tue, Nov 3, 2015 at 7:09 AM, Phil Turmel <philip@turmel.org> wrote:
> On 11/03/2015 07:45 AM, o1bigtenor wrote:
>
>> Command (? for help): p
>> Disk /dev/md0: 3907037184 sectors, 1.8 TiB
>> Logical sector size: 512 bytes
>> Disk identifier (GUID): 1EB47793-0CDF-4E16-AE84-33EC825AC448
>> Partition table holds up to 128 entries
>> First usable sector is 34, last usable sector is 3907037150
>> Partitions will be aligned on 2048-sector boundaries
>> Total free space is 2014 sectors (1007.0 KiB)
>>
>> Number  Start (sector)    End (sector)  Size       Code  Name
>>    1            2048      3907037150   1.8 TiB     8300  Linux filesystem
>>
>> Command (? for help): w
>>
>> Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING
>> PARTITIONS!!
>>
>> Do you want to proceed? (Y/N): Y
>> OK; writing new GUID partition table (GPT) to /dev/md0.
>> The operation has completed successfully.
>> root@debianbase:/# dmesg |tail
>> [35958.237305] JBD2: Error -5 detected when updating journal
>> superblock for sdh1-8.
>> [35958.265302] sd 16:0:0:1: [sdh] Synchronize Cache(10) failed:
>> Result: hostbyte=DID_ERROR driverbyte=DRIVER_OK
>> [42828.763827] md: md0 stopped.
>> [42828.764985] md: bind<sdb1>
>> [42828.765270] md: bind<sdf1>
>> [42828.786394] md: raid10 personality registered for level 10
>> [42828.787258] md/raid10:md0: active with 2 out of 4 devices
>> [42828.787316] md0: detected capacity change from 0 to 2000403038208
>> [42828.859574]  md0:
>> [84855.526621]  md0: p1
>> root@debianbase:/# blkid
>
>> /dev/md0: PTUUID="1eb47793-0cdf-4e16-ae84-33ec825ac448" PTTYPE="gpt"
>> /dev/md0p1: UUID="49552036-b46f-4956-ade9-3541a3dd7f0a" TYPE="ext4"
>> PARTLABEL="Linux filesystem"
>> PARTUUID="2d6ef378-b27a-4de6-a42f-9c0a7e191a00"
>
>> root@debianbase:/# fsck -n /dev/md0p1
>> fsck from util-linux 2.26.2
>> e2fsck 1.42.13 (17-May-2015)
>> The filesystem size (according to the superblock) is 488379392 blocks
>> The physical size of the device is 488379387 blocks
>> Either the superblock or the partition table is likely to be corrupt!
>> Abort? no
>
> You are five sectors short.
>
>> /dev/md0p1 contains a file system with errors, check forced.
>> Pass 1: Checking inodes, blocks, and sizes
>> Pass 2: Checking directory structure
>> Pass 3: Checking directory connectivity
>> Pass 4: Checking reference counts
>> Pass 5: Checking group summary information
>> /dev/md0p1: 618365/122101760 files (0.2% non-contiguous),
>> 78222096/488379392 blocks
>
> You will need to convert the partition table to dos -- gpt stores a
> backup partition table at the end, occupying space that the ext4
> filesystem is claiming.
>
> Use gdisk to do this:
>
> gdisk /dev/md0
>
> select 'r' for recovery options, the 'g' for MBR conversion.  Then w to
> write and exit.
>
> Then use fdisk to fix the partition:
>
> fdisk /dev/md0
>
> select 'd' then '1' to delete the partition.
>
> select 'n' then 'p' for primary, then '1', then 2048, then accept the
> suggested end sector (should be larger than in gdisk).
>
> 'w' to write and exit
>
> probably need "partprobe /dev/md0" for the kernel to get the new size.
>
> Then do a real fsck (without -n):
>
> fsck -y /dev/md0p1


root@debianbase:/# gdisk /dev/md0
GPT fdisk (gdisk) version 1.0.0

Partition table scan:
 MBR: protective
 BSD: not present
 APM: not present
 GPT: present

Found valid GPT with protective MBR; using GPT.

Command (? for help): r

Recovery/transformation command (? for help): g

MBR command (? for help): w

Converted 1 partitions. Finalize and exit? (Y/N): y
GPT data structures destroyed! You may now partition the disk using fdisk or
other utilities.
root@debianbase:/# fdisk /dev/md0

Welcome to fdisk (util-linux 2.26.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.


Command (m for help): d
Selected partition 1
Partition 1 has been deleted.

Command (m for help): n
Partition type
  p   primary (0 primary, 0 extended, 4 free)
  e   extended (container for logical partitions)
Select (default p): p
Partition number (1-4, default 1): 1
First sector (2048-3907037183, default 2048): 2048
Last sector, +sectors or +size{K,M,G,T,P} (2048-3907037183, default
3907037183):

Created a new partition 1 of type 'Linux' and of size 1.8 TiB.

Command (m for help): w
The partition table has been altered.
Calling ioctl() to re-read partition table.
Syncing disks.

root@debianbase:/# partprobe /dev/md0
root@debianbase:/# partprobe /dev/md0p1
root@debianbase:/# fsck -y /dev/md0p1
fsck from util-linux 2.26.2
e2fsck 1.42.13 (17-May-2015)
/dev/md0p1 has been mounted 90 times without being checked, check forced.
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 4: Checking reference counts
Pass 5: Checking group summary information
/dev/md0p1: 618365/122101760 files (0.2% non-contiguous),
78222096/488379392 blocks




>
> Then mount and backup.

Mondo seems to be an interesting backup tool.

Would you have any suggestions?

(In the past I was backing up to 25 GB Bluray disks. Was in the
process of setting up a NAS box (with ECC and NAS level drives)
to be backup using rsync (I think).

I don't want any more of these 2 months without being able to get
business done times if I can help it!!!

>
>> I think that I am right close to being able to backup the files.
>
> Yes.
>
>> Any suggestions for what to do after the files are backed up - - -
>>
>> Should I (after making backup copies) rebuild the array
>>
>> 1. just treat the disks as if they were empty
>> 2. some other process
>
> Just add the other drives back into the array in one step, then let them
> recover.
>
> mdadm /dev/md0 --add /dev/sdc1 --add /dev/sde1
>
> {Use the current names if those aren't correct at this time.}
>
> Although I wouldn't set up a new system quite like this, there's nothing
> wrong with this layout.  It'll be fine like this until the day you want
> more space.  A new bigger array would be an appropriate time to redesign.

Would you have any suggestions as to how to setup a different array?

(My NAS box is old server hardware where I am using hardware raid.)

Thanking you very much for your generous assistance.
(copied all of the commands so that anyone accessing the information for
their own use might have some ideas of what to do - - - hopefully also
achieving a successful result!

Dee

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: Advice requested
  2015-11-03 13:36                                   ` o1bigtenor
@ 2015-11-03 15:49                                     ` Adam Goryachev
  2015-11-03 16:08                                     ` Phil Turmel
  1 sibling, 0 replies; 22+ messages in thread
From: Adam Goryachev @ 2015-11-03 15:49 UTC (permalink / raw)
  To: o1bigtenor, Phil Turmel; +Cc: Linux-RAID

On 04/11/15 00:36, o1bigtenor wrote:
> Mondo seems to be an interesting backup tool. Would you have any
> suggestions? (In the past I was backing up to 25 GB Bluray disks. Was
> in the process of setting up a NAS box (with ECC and NAS level drives)
> to be backup using rsync (I think). I don't want any more of these 2
> months without being able to get business done times if I can help it!!!

Somewhat off-topic for this list, but I would suggest some tool that you
can learn how to use it, is reliable, stable, easy to fix, and
well-supported. Personally, I use backuppc, I wouldn't suggest a simple
home-spun rsync copy, as there are lots of things to consider in backup
(eg, you want todays, yesterdays, etc... up to last month or more of
history for each file). You also want an easy restore process for a
single file, group of files, or the entire system.

Regards,
Adam

-- 
Adam Goryachev
Website Managers
Ph: +61 2 8304 0000                            adam@websitemanagers.com.au
Fax: +61 2 8304 0001                            www.websitemanagers.com.au


^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: Advice requested
  2015-11-03 13:36                                   ` o1bigtenor
  2015-11-03 15:49                                     ` Adam Goryachev
@ 2015-11-03 16:08                                     ` Phil Turmel
       [not found]                                       ` <CAPpdf59o0kf1-mgB29AcgH2cpdwBrhazf3NeQUYNa6m9+c6C+A@mail.gmail.com>
  1 sibling, 1 reply; 22+ messages in thread
From: Phil Turmel @ 2015-11-03 16:08 UTC (permalink / raw)
  To: o1bigtenor; +Cc: Linux-RAID

On 11/03/2015 08:36 AM, o1bigtenor wrote:
> On Tue, Nov 3, 2015 at 7:09 AM, Phil Turmel <philip@turmel.org> wrote:

>> Just add the other drives back into the array in one step, then let them
>> recover.
>>
>> mdadm /dev/md0 --add /dev/sdc1 --add /dev/sde1
>>
>> {Use the current names if those aren't correct at this time.}

One caveat -- don't do this part until you've corrected your timeout mismatch
problem, or any latent UREs will break your array again.

>> Although I wouldn't set up a new system quite like this, there's nothing
>> wrong with this layout.  It'll be fine like this until the day you want
>> more space.  A new bigger array would be an appropriate time to redesign.
> 
> Would you have any suggestions as to how to setup a different array?

I've pasted my most recent media server build's 'lsdrv' report at the end
of this mail.[1]  Some notes:

1) Paired SSDs for boot and OS.  Boots from EFI SYS partitions containing
monolithic kernels (EFI stub + kernel + initramfs in one file).  My
maintenance scripts place identical kernels in both boot partitions without
running as mirrors.

2) Balance of SSDs is mirrored and operated as an LVM physical volume and
Volume Group.  This group contains root, home, and swap.  Some space is
left unallocated for emergencies, as LVM can be modified on the fly.

3) Bulk storage is on multiple unpartitioned drives in raid6, which then
forms an LVM physical volume and Volume Group.  Again, some space left
unallocated for emergencies.

> (My NAS box is old server hardware where I am using hardware raid.)
> 
> Thanking you very much for your generous assistance.
> (copied all of the commands so that anyone accessing the information for
> their own use might have some ideas of what to do - - - hopefully also
> achieving a successful result!

You're welcome.

Phil

[1] http://github.com/pturmel/lsdrv

-- 

brutus ~ # lsdrv
PCI [ahci] 00:1f.2 SATA controller: Intel Corporation 6 Series/C200 Series Chipset Family SATA AHCI Controller (rev 05)
├scsi 0:0:0:0 ATA      Crucial_CT250MX2 {15250FDF00E8}
│└sda 232.89g [8:0] Partitioned (gpt)
│ ├sda1 512.00m [8:1] vfat 'BootA' {FDF9-37CE}
│ │└Mounted as /dev/sda1 @ /bootA
│ └sda2 232.38g [8:2] MD raid10,near2 (1/2) (w/ sdb2) in_sync 'sysresccd:1' {20b4a43b-447d-dc22-0b96-3f49392b07ec}
│  └md1 232.35g [9:1] MD v1.2 raid10,near2 (2) clean, 512k Chunk {20b4a43b:447ddc22:0b963f49:392b07ec}
│   │                 PV LVM2_member 56.00g used, 176.35g free {WnG1i4-9LYh-6EHe-mMUh-P4hZ-2oNm-R5Vze7}
│   └VG Fast 232.35g 176.35g free {Yp0bW3-xAS5-QQkW-dFSf-sGok-6ym0-XR3DLw}
│    ├dm-4 20.00g [252:4] LV Home ext4 'Home' {08f885a7-216c-47cc-8fa1-a25e28ca28b0}
│    │└Mounted as /dev/mapper/Fast-Home @ /home
│    ├dm-2 20.00g [252:2] LV Root ext4 'Root' {d77eb871-6366-4501-b3b0-5118daa034c6}
│    │└Mounted as /dev/mapper/Fast-Root @ /
│    └dm-3 16.00g [252:3] LV Swap swap 'Swap' {0e6731d8-2816-4c54-a6c3-2f6f48ee5544}
├scsi 1:0:0:0 ATA      Crucial_CT250MX2 {15250FDEF73C}
│└sdb 232.89g [8:16] Partitioned (gpt)
│ ├sdb1 512.00m [8:17] vfat 'BootB' {FDF9-37CE}
│ │└Mounted as /dev/sdb1 @ /bootB
│ └sdb2 232.38g [8:18] MD raid10,near2 (0/2) (w/ sda2) in_sync 'sysresccd:1' {20b4a43b-447d-dc22-0b96-3f49392b07ec}
│  └md1 232.35g [9:1] MD v1.2 raid10,near2 (2) clean, 512k Chunk {20b4a43b:447ddc22:0b963f49:392b07ec}
│                     PV LVM2_member 56.00g used, 176.35g free {WnG1i4-9LYh-6EHe-mMUh-P4hZ-2oNm-R5Vze7}
├scsi 2:x:x:x [Empty]
├scsi 3:x:x:x [Empty]
├scsi 4:x:x:x [Empty]
└scsi 5:x:x:x [Empty]
PCI [mpt2sas] 02:00.0 Serial Attached SCSI controller: LSI Logic / Symbios Logic SAS2008 PCI-Express Fusion-MPT SAS-2 [Falcon] (rev 03)
├scsi 6:0:0:0 ATA      WDC WD40EFRX-68W {WD-WCC4E1648652}
│└sdc 3.64t [8:32] MD raid6 (0/6) (w/ sdd,sde,sdf,sdg,sdh) in_sync 'sysresccd:2' {2d3f6b75-3a9b-12bc-1582-64533545931b}
│ └md2 14.55t [9:2] MD v1.2 raid6 (6) clean, 16k Chunk {2d3f6b75:3a9b12bc:15826453:3545931b}
│  │                PV LVM2_member 12.00t used, 2.55t free {ezb7fd-6iTr-PhjG-d1EW-xMNC-ThYm-KvTxgg}
│  └VG Bulk 14.55t 2.55t free {kOlzy0-xBY6-cIVX-bBgE-0ef8-cAEv-c9Ts9l}
│   ├dm-1 8.00t [252:1] LV Media xfs 'Media' {bb83668f-c4a1-44eb-a511-0e55ed10181b}
│   │└Mounted as /dev/mapper/Bulk-Media @ /media/BulkMedia
│   └dm-0 4.00t [252:0] LV MythTV xfs 'MythTV' {644bcdf4-8c1d-4eaf-baac-f71ca8d75a6f}
│    └Mounted as /dev/mapper/Bulk-MythTV @ /media/MythTV
├scsi 6:0:1:0 ATA      WDC WD40EFRX-68W {WD-WCC4E1611663}
│└sdd 3.64t [8:48] MD raid6 (1/6) (w/ sdc,sde,sdf,sdg,sdh) in_sync 'sysresccd:2' {2d3f6b75-3a9b-12bc-1582-64533545931b}
│ └md2 14.55t [9:2] MD v1.2 raid6 (6) clean, 16k Chunk {2d3f6b75:3a9b12bc:15826453:3545931b}
│                   PV LVM2_member 12.00t used, 2.55t free {ezb7fd-6iTr-PhjG-d1EW-xMNC-ThYm-KvTxgg}
├scsi 6:0:2:0 ATA      WDC WD40EFRX-68W {WD-WCC4EJJTZ35U}
│└sde 3.64t [8:64] MD raid6 (2/6) (w/ sdc,sdd,sdf,sdg,sdh) in_sync 'sysresccd:2' {2d3f6b75-3a9b-12bc-1582-64533545931b}
│ └md2 14.55t [9:2] MD v1.2 raid6 (6) clean, 16k Chunk {2d3f6b75:3a9b12bc:15826453:3545931b}
│                   PV LVM2_member 12.00t used, 2.55t free {ezb7fd-6iTr-PhjG-d1EW-xMNC-ThYm-KvTxgg}
├scsi 6:0:3:0 ATA      WDC WD40EFRX-68W {WD-WCC4E1640373}
│└sdf 3.64t [8:80] MD raid6 (4/6) (w/ sdc,sdd,sde,sdg,sdh) in_sync 'sysresccd:2' {2d3f6b75-3a9b-12bc-1582-64533545931b}
│ └md2 14.55t [9:2] MD v1.2 raid6 (6) clean, 16k Chunk {2d3f6b75:3a9b12bc:15826453:3545931b}
│                   PV LVM2_member 12.00t used, 2.55t free {ezb7fd-6iTr-PhjG-d1EW-xMNC-ThYm-KvTxgg}
├scsi 6:0:4:0 ATA      WDC WD40EFRX-68W {WD-WCC4E1631668}
│└sdg 3.64t [8:96] MD raid6 (5/6) (w/ sdc,sdd,sde,sdf,sdh) in_sync 'sysresccd:2' {2d3f6b75-3a9b-12bc-1582-64533545931b}
│ └md2 14.55t [9:2] MD v1.2 raid6 (6) clean, 16k Chunk {2d3f6b75:3a9b12bc:15826453:3545931b}
│                   PV LVM2_member 12.00t used, 2.55t free {ezb7fd-6iTr-PhjG-d1EW-xMNC-ThYm-KvTxgg}
├scsi 6:0:5:0 ATA      WDC WD40EFRX-68W {WD-WCC4E7HT90DE}
│└sdh 3.64t [8:112] MD raid6 (3/6) (w/ sdc,sdd,sde,sdf,sdg) in_sync 'sysresccd:2' {2d3f6b75-3a9b-12bc-1582-64533545931b}
│ └md2 14.55t [9:2] MD v1.2 raid6 (6) clean, 16k Chunk {2d3f6b75:3a9b12bc:15826453:3545931b}
│                   PV LVM2_member 12.00t used, 2.55t free {ezb7fd-6iTr-PhjG-d1EW-xMNC-ThYm-KvTxgg}
└scsi 6:x:x:x [Empty]
Other Block Devices
├loop0 0.00k [7:0] Empty/Unknown
└loop1 0.00k [7:1] Empty/Unknown

--
To unsubscribe from this list: send the line "unsubscribe linux-raid" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: Advice requested
  2015-11-02 15:41     ` Phil Turmel
       [not found]       ` <CAPpdf59MFX1oVwLC-bmQBaQp9K_9-+h0v64OGMnV1-k=eCzO0w@mail.gmail.com>
@ 2015-11-03 18:02       ` Phil Turmel
  2015-11-03 19:06         ` o1bigtenor
  1 sibling, 1 reply; 22+ messages in thread
From: Phil Turmel @ 2015-11-03 18:02 UTC (permalink / raw)
  To: o1bigtenor, Linux-RAID

On 11/02/2015 10:41 AM, Phil Turmel wrote:
> Good morning Dee,
> 
> { Added linux-raid back -- convention on kernel.org is reply-to-all }

The next exchange in this thread were too large to make it past the
kernel.org size limits.  They contain all of the off-list traffic
the Dee had in his archive and my responses to it.

I've archived these two mails myself for public benefit -- they were
intended to be public after all.

http://www.turmel.org/other/Advice-requested-201511021821.eml
http://www.turmel.org/other/Advice-requested-201511021943.eml

There's a few lessons here:

1) Insist on staying on-list.  Dee's help drifted away when the
problems weren't solved.  No-one else saw the traffic, so could
not step in.

2) Trim replies. :-)  Good G*d, these were hard to read without
missing details.

3) Persevere.

Phil

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: Advice requested
  2015-11-03 18:02       ` Phil Turmel
@ 2015-11-03 19:06         ` o1bigtenor
  0 siblings, 0 replies; 22+ messages in thread
From: o1bigtenor @ 2015-11-03 19:06 UTC (permalink / raw)
  To: Phil Turmel; +Cc: Linux-RAID

On Tue, Nov 3, 2015 at 12:02 PM, Phil Turmel <philip@turmel.org> wrote:
> On 11/02/2015 10:41 AM, Phil Turmel wrote:
>> Good morning Dee,
>>
>> { Added linux-raid back -- convention on kernel.org is reply-to-all }
>
> The next exchange in this thread were too large to make it past the
> kernel.org size limits.  They contain all of the off-list traffic
> the Dee had in his archive and my responses to it.
>
> I've archived these two mails myself for public benefit -- they were
> intended to be public after all.
>
> http://www.turmel.org/other/Advice-requested-201511021821.eml
> http://www.turmel.org/other/Advice-requested-201511021943.eml
>
> There's a few lessons here:
>
> 1) Insist on staying on-list.  Dee's help drifted away when the
> problems weren't solved.  No-one else saw the traffic, so could
> not step in.
>
> 2) Trim replies. :-)  Good G*d, these were hard to read without
> missing details.
>
> 3) Persevere.
>

I do hope that someone finds the odyssey useful rather than just amusing
- - - its why I'm comfortable having all this public.

Dee

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: Advice requested
       [not found]                                       ` <CAPpdf59o0kf1-mgB29AcgH2cpdwBrhazf3NeQUYNa6m9+c6C+A@mail.gmail.com>
@ 2015-11-04  4:05                                         ` o1bigtenor
  2015-11-04  4:31                                           ` Brad Campbell
  0 siblings, 1 reply; 22+ messages in thread
From: o1bigtenor @ 2015-11-04  4:05 UTC (permalink / raw)
  To: Phil Turmel; +Cc: Linux-RAID

On Tue, Nov 3, 2015 at 10:01 PM, o1bigtenor <o1bigtenor@gmail.com> wrote:
>
>
>
> On Tue, Nov 3, 2015 at 10:08 AM, Phil Turmel <philip@turmel.org> wrote:
>>
>> On 11/03/2015 08:36 AM, o1bigtenor wrote:
>> > On Tue, Nov 3, 2015 at 7:09 AM, Phil Turmel <philip@turmel.org> wrote:
>>
>> >> Just add the other drives back into the array in one step, then let them
>> >> recover.
>> >>
>> >> mdadm /dev/md0 --add /dev/sdc1 --add /dev/sde1
>> >>
>> >> {Use the current names if those aren't correct at this time.}
>>
>> One caveat -- don't do this part until you've corrected your timeout mismatch
>> problem, or any latent UREs will break your array again.
>
>
>
> Read through the references.
>
> How do I do what you suggest?
>
> Dee

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: Advice requested
  2015-11-04  4:05                                         ` o1bigtenor
@ 2015-11-04  4:31                                           ` Brad Campbell
  0 siblings, 0 replies; 22+ messages in thread
From: Brad Campbell @ 2015-11-04  4:31 UTC (permalink / raw)
  To: o1bigtenor, Phil Turmel; +Cc: Linux-RAID

On 04/11/15 12:05, o1bigtenor wrote:
> On Tue, Nov 3, 2015 at 10:01 PM, o1bigtenor <o1bigtenor@gmail.com> wrote:
>>
>>
>>
>> On Tue, Nov 3, 2015 at 10:08 AM, Phil Turmel <philip@turmel.org> wrote:
>>> One caveat -- don't do this part until you've corrected your timeout mismatch
>>> problem, or any latent UREs will break your array again.
>>
>>
>>
>> Read through the references.
>>
>> How do I do what you suggest?

Here's how I do it. This script is run on every bootup.

It iterates through all the drives and uses smartctl to try and set erc 
timeouts. If that fails it assumes the drive does not support it and it 
sets the timeout value to 180 seconds.

#!/bin/bash
for i in /dev/sd? ; do
	if smartctl -l scterc,70,70 $i > /dev/null ; then
		echo -n $i " is good "
	else
		echo 180 > /sys/block/${i/\/dev\/}/device/timeout
		echo -n $i " is  bad "
	fi;
	smartctl -i $i | egrep "(Device Model|Product:)"
	blockdev --setra 1024 $i
done

I have a mix of 15k SAS drives, WD green & red and some left over bits 
and pieces. This ensures the timeouts all match the drives capability.

Regards,
Brad

^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2015-11-04  4:31 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-31 11:55 Advice requested o1bigtenor
2015-11-01 20:55 ` Phil Turmel
     [not found]   ` <CAPpdf5_PUpR7GhBHUaQfWb8Q+7FZenxXgFqbaN3f3r0r6NQNDA@mail.gmail.com>
2015-11-02 15:41     ` Phil Turmel
     [not found]       ` <CAPpdf59MFX1oVwLC-bmQBaQp9K_9-+h0v64OGMnV1-k=eCzO0w@mail.gmail.com>
     [not found]         ` <5637BCE4.8000006@turmel.org>
2015-11-02 23:49           ` o1bigtenor
2015-11-03  0:11             ` Phil Turmel
2015-11-03  0:44               ` o1bigtenor
2015-11-03  0:57                 ` Phil Turmel
2015-11-03  1:02                   ` o1bigtenor
2015-11-03  1:55                     ` Phil Turmel
2015-11-03  4:03                       ` o1bigtenor
2015-11-03  4:09                         ` Phil Turmel
2015-11-03  4:28                           ` o1bigtenor
2015-11-03  4:47                             ` Phil Turmel
2015-11-03 12:45                               ` o1bigtenor
2015-11-03 13:09                                 ` Phil Turmel
2015-11-03 13:36                                   ` o1bigtenor
2015-11-03 15:49                                     ` Adam Goryachev
2015-11-03 16:08                                     ` Phil Turmel
     [not found]                                       ` <CAPpdf59o0kf1-mgB29AcgH2cpdwBrhazf3NeQUYNa6m9+c6C+A@mail.gmail.com>
2015-11-04  4:05                                         ` o1bigtenor
2015-11-04  4:31                                           ` Brad Campbell
2015-11-03 18:02       ` Phil Turmel
2015-11-03 19:06         ` o1bigtenor

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.