The saga continues

William A. Mahaffey III wam at hiwaay.net
Wed Oct 7 04:00:59 UTC 2015


On 10/06/15 14:55, William A. Mahaffey III wrote:
> On 10/06/15 14:33, Polytropon wrote:
>> On Tue, 6 Oct 2015 08:25:06 -0453.75, William A. Mahaffey III wrote:
>>> When I went to reboot, the UEFI 'BIOS' reported
>>> 'missing MBR record' & hung there.
>> Do you have "MBR legacy boot" enabled or forced? When using GPT
>> volumes, one of them has to be a "boot partition". Here you can
>> find a good illustration of the steps involved:
>>
>> http://www.wonkity.com/~wblock/docs/html/disksetup.html#_the_new_standard_gpt 
>>
>>
>> By the way, it's more like either "BIOS" _or_ "UEFI". ;-)
>
> Hence my quotes, it is definitely UEFI, I just call it a BIOS out of 
> old habits :-/ ....
>
>>
>>
>>> There were/are *no* explicit options
>>> to boot from a USB drive, although that worked during the install w/
>>> virgin HDD's, it came up w/ a very DOS-y screen which listed 'FreeBSD'
>>> as a boot option.
>> That depends on the boot order specified in the UEFI. When
>> a "higher priority" media was found bootable, no other media
>> will be tried. Check in the UEFI setup if you can change the
>> boot order, for example to "USB, optical, HDD".
>
> *No* options for ordering in this implementation, however, I did 
> eventually find that hitting 'F9' during boot brought up a little 
> dialog which *did* include the USB drive as an option. I hit that & 
> was off & running .... into my next set of issues :-/ .... stay tuned 
> ....
>
>>
>> When the disks are empty, a boot attempt won't work, so the
>> UEFI decides to look at other possible boot sources, such as
>> USB sticks or optical media. This step will not be taken when
>> the HDD is "first priority" and is bootable.
>>
>>
>>
>>> Is there
>>> some magic combo of key-strokes to get it to try to boot from the USB
>>> stick anyway ?
>> Depends. If I remember correctly, PF12 during POST (or what it
>> is called like in UEFI) will show a screen to select the boot
>> source. Of course - only if the UEFI manufacturer has implemented
>> this interactive selection.
>
> F9 in my case ....
>
>>
>>
>>> I want to boot into a shell & zap the 1st 1 GB or so of
>>> each drive & try again, a procedure I had to use early this summer
>>> during a NetBSD install, which *did* work AOK & allowed me to 
>>> complete a
>>> successful install.
>> A few kB usually are enough - just kill the partition table and
>> the boot loader, located at the beginning of the disk. It will
>> then appear as "empty". :-)
>
>
> Actually my setup-script 'gpart destroy -F's ada[0,1] as its 1st step 
> before slicing up the drives, so I am back in bidness .... Thanks :-) 
> ....
>
>

OK, at the moment, I am stuck when I reboot into the installer, it fails 
to unpack 1 of the base '.tgz' files, into /mnt/boot. I attach my log 
file of the proceedings &^ the script that set everything up:



-- 

	William A. Mahaffey III

  ----------------------------------------------------------------------

	"The M1 Garand is without doubt the finest implement of war
	 ever devised by man."
                            -- Gen. George S. Patton Jr.

-------------- next part --------------
#!/bin/sh

# Install FreeBSD 9.3R on gmirror/gstripe UFS partitions (GPT), 2 HDD's.

# FreeBSD 9.3R has nice and simple partition editor (Expert mode).
# Still, if you want gmirror/gstripe setup you have to use "Shell" mode and do things manually.
# This guide will help you create a FreeBSD system using gmirror/gstripe by hand.

# Boot from FreeBSD 9.3R installation media.
# Start installation, answer the questions until you endup on "Partitioning" screen. Choose "Shell" here.

# Create partitions on the first disk

gpart destroy -F ada0
gpart create -s gpt ada0
# gpart add -s 128k -t freebsd-boot -l boot1 ada0		# Create root (/boot) partition, mirrored, 128 KiB, ateamsystems ....
# gpart add -s 64 -t freebsd-boot -l boot1 ada0			# Create root (/boot) partition, mirrored,  32 KiB, wonkity ....
gpart add -s 984 -t freebsd-boot -l boot1 ada0			# Create root (/boot) partition, mirrored, 768 KiB, wonkity ....
gpart bootcode -b /boot/pmbr -p /boot/gptboot -i 1 ada0		# install boot code, wonkity ....
# gpart add -s 4G -t freebsd-ufs  -l root1 -b 2048 -a 1m ada0	# Create root (/) partition, mirrored, wonkity ....
# gpart add -s 4G -t freebsd-ufs  -l root1 -a 1m ada0		# Create root (/) partition, mirrored, WAM III ....
# gpart add -s 8G -t freebsd-swap -l swap1 -a 1m ada0		# Create swap partition, kernel-managed striped ....
gpart add -s  8G -t freebsd-swap -l swap1 -b 2048 -a 1m ada0	# Create swap partition, kernel-managed striped ....
gpart add -s  4G -t freebsd-ufs  -l root1 -a 1m ada0		# Create root (/) partition, mirrored, wonkity ....
gpart add -s 16G -t freebsd-ufs  -l rvar1 -a 1m ada0		# Create root (/var) partition, striped ....
gpart add -s  8G -t freebsd-ufs  -l ulcl1 -a 1m ada0		# Create root (/usr/local) partition, striped ....
gpart add        -t freebsd-ufs  -l home1 -a 1m ada0		# Create /home partiton, striped ....
true > /dev/ada0						# have GEOM "re-taste" the partition so our nice labels show up in /dev/gpt/ ....

# Last partition is added without -s (size) so it will cover the rest of the available space.

echo "Progress so far (ada0):"; echo ' '; gpart show		# see what we have so far ....

# Create partitions on the second disk

gpart destroy -F ada1
gpart create -s gpt ada1
# gpart add -s 128k -t freebsd-boot -l boot2 ada1		# Create root (/boot) partition, mirrored, 128KiB, ateamsystems ....
# gpart add -s 64 -t freebsd-boot -l boot2 ada1			# Create root (/boot) partition, mirrored,  32 KiB, wonkity ....
gpart add -s 984 -t freebsd-boot -l boot2 ada1			# Create root (/boot) partition, mirrored, 768 KiB, wonkity ....
gpart bootcode -b /boot/pmbr -p /boot/gptboot -i 1 ada1		# install boot code, wonkity ....
# gpart add -s 4G -t freebsd-ufs  -l root2 -b 2048 -a 1m ada1	# Create root (/) partition, mirrored, wonkity ....
# gpart add -s 4G -t freebsd-ufs  -l root2 -a 1m ada1		# Create root (/) partition, mirrored, WAM III ....
# gpart add -s 8G -t freebsd-swap -l swap2 -a 1m ada1		# Create swap partition, kernel-managed striped ....
gpart add -s  8G -t freebsd-swap -l swap2 -b 2048 -a 1m ada1	# Create swap partition, kernel-managed striped ....
gpart add -s  4G -t freebsd-ufs  -l root2 -a 1m ada1		# Create root (/) partition, mirrored, wonkity ....
gpart add -s 16G -t freebsd-ufs  -l rvar2 -a 1m ada1		# Create root (/var) partition, striped ....
gpart add -s  8G -t freebsd-ufs  -l ulcl2 -a 1m ada1		# Create root (/usr/local) partition, striped ....
gpart add        -t freebsd-ufs  -l home2 -a 1m ada1		# Create /home partiton, striped ....
true > /dev/ada1						# have GEOM "re-taste" the partition so our nice labels show up in /dev/gpt/ ....

# Last partition is added without -s (size) so it will cover the rest of the available space.

echo "Progress so far (ada1):"; echo ' '; gpart show		# see what we have so far ....

ls -l /dev/gpt/							# check to make sure this worked so far ....

# Create mirrored/striped UFS filesystems (GPT)
# Create filesystems

# Load required kernel modules:

kldload geom_mirror
kldload geom_stripe

# OR:

# gmirror load	# doesn't work :-/ ....
# gstripe load	# doesn't work :-/ ....

# Filesystems are formatted using newfs utility, -L is the label, filesystem will be available as /dev/ufs/label, and -U turns Soft Updates on.

gmirror label -hv gmboot /dev/gpt/boot1 /dev/gpt/boot2	# Mirrored UFS partitions: boot ....
gmirror label -hv gmroot /dev/gpt/root1 /dev/gpt/root2	# Mirrored UFS partitions: root ....

# -- Check status
gmirror status

# Install simple MBR boot loader (boots active slice):
# gpart bootcode -b /boot/mbr mirror/root
# gpart set -a active -i 1 mirror/root
# gpart bootcode -b /boot/boot mirror/roots1

# Install FreeBSD boot manager:
# gpart bootcode -b /boot/boot0 mirror/root		# feasible ?!?!?!
# gpart bootcode -b /boot/boot  mirror/roots1		# feasible ?!?!?!

# gpart bootcode -b /boot/boot0 root			# feasible ?!?!?!
# gpart bootcode -b /boot/boot  roots1			# feasible ?!?!?!

# newfs -U -L root /dev/mirror/gmroot			# Now setup actual FS ....
newfs -L root /dev/mirror/gmroot			# Now setup actual FS ....
mount /dev/mirror/gmroot /mnt				# & mount it where the installer expects to find it.

newfs -L boot /dev/mirror/gmboot			# Now setup actual FS ....
mkdir /mnt/boot						# create mountpoint ....
mount /dev/mirror/gmboot /mnt/boot			# & mount it where the installer expects to find it.

gmirror label -hv gmvar /dev/gpt/rvar1 /dev/gpt/rvar2	# Mirrored UFS partitions: /var ....
newfs -U -L var /dev/mirror/gmvar			# Now setup actual FS ....
mkdir /mnt/var						# create mountpoint ....
mount /dev/mirror/gmvar /mnt/var			# & mount it where the installer expects to find it.

gstripe label -v gsulcl /dev/gpt/ulcl1 /dev/gpt/ulcl2	# Striped UFS partitions: /usr/local ....
newfs -U -L usrlocal /dev/stripe/gsulcl			# Now setup actual FS ....
mkdir -p /mnt/usr/local					# create mountpoint ....
mount /dev/stripe/gsulcl /mnt/usr/local			# & mount it where the installer expects to find it.

gstripe label -v gshome /dev/gpt/home1 /dev/gpt/home2	# Striped UFS partitions: /home ....
newfs -U -L home /dev/stripe/gshome			# Now setup actual FS ....
mkdir /mnt/home						# create mountpoint ....
mount /dev/stripe/gshome /mnt/home			# & mount it where the installer expects to find it.

# -- Check status
gmirror status
gstripe status

cp /utils/UFS/finishRootOnMirroredUFS.sh  /mnt

# Create fstab file
# /etc/fstab (GPT)

# cat << EOF > /mnt/etc/fstab	# wonkity ....
cat << EOF > /tmp/bsdinstall_etc/fstab
# Device		Mountpoint	FStype	Options					Dump	Pass#
/dev/gpt/swap1		none		swap	sw					0	0
/dev/gpt/swap2		none		swap	sw					0	0
/dev/mirror/gmroot	/		ufs	rw					1	1
/dev/mirror/gmboot	/boot		ufs	rw					1	1
/dev/mirror/gmvar	/var		ufs	rw					2	2
/dev/stripe/gsulcl	/usr/local	ufs	rw					2	2
/dev/stripe/gshome	/home		ufs	rw					2	2
/dev/cd0		/media/cdrom	cd9660	ro,noauto				0	0
/dev/da0s1		/media/flash	msdosfs	rw,sync,noauto,longnames,-Lru_RU.UTF-8	0	0
# Note: to mount a flash drive which has been
# converted to UFS, use a full manual mount command:
# mount -w -o sync -t ufs /dev/da0s1 /media/flash
# rather than using the above defaults ....
EOF

# Type exit and installation will proceed.

echo Now \(IMPORTANT \!\!\!\!\) type exit to return to the installer and installation will proceed.
 
-------------- next part --------------
ada0 destroyed
ada0 created
ada0p1 added
bootcode written to ada0
ada0p2 added
ada0p3 added
ada0p4 added
ada0p5 added
ada0p6 added
Progress so far (ada0):
 
=>        34  1953525101  ada1  GPT  (931G)
          34           6        - free -  (3.0k)
          40         984     1  freebsd-boot  (492k)
        1024        1024        - free -  (512k)
        2048    16777216     2  freebsd-swap  (8.0G)
    16779264     8388608     3  freebsd-ufs  (4.0G)
    25167872    33554432     4  freebsd-ufs  (16G)
    58722304    16777216     5  freebsd-ufs  (8.0G)
    75499520  1878024192     6  freebsd-ufs  (895G)
  1953523712        1423        - free -  (711k)

=>      1  7575551  da0  MBR  (3.6G)
        1       32       - free -  (16k)
       33  7573500    1  freebsd  [active]  (3.6G)
  7573533     2019       - free -  (1M)

=>      0  7573500  da0s1  BSD  (3.6G)
        0  7573500      1  freebsd-ufs  (3.6G)

=>        34  1953525101  ada0  GPT  (931G)
          34           6        - free -  (3.0k)
          40         984     1  freebsd-boot  (492k)
        1024        1024        - free -  (512k)
        2048    16777216     2  freebsd-swap  (8.0G)
    16779264     8388608     3  freebsd-ufs  (4.0G)
    25167872    33554432     4  freebsd-ufs  (16G)
    58722304    16777216     5  freebsd-ufs  (8.0G)
    75499520  1878024192     6  freebsd-ufs  (895G)
  1953523712        1423        - free -  (711k)

ada1 destroyed
ada1 created
ada1p1 added
bootcode written to ada1
ada1p2 added
ada1p3 added
ada1p4 added
ada1p5 added
ada1p6 added
Progress so far (ada1):
 
=>      1  7575551  da0  MBR  (3.6G)
        1       32       - free -  (16k)
       33  7573500    1  freebsd  [active]  (3.6G)
  7573533     2019       - free -  (1M)

=>      0  7573500  da0s1  BSD  (3.6G)
        0  7573500      1  freebsd-ufs  (3.6G)

=>        34  1953525101  ada0  GPT  (931G)
          34           6        - free -  (3.0k)
          40         984     1  freebsd-boot  (492k)
        1024        1024        - free -  (512k)
        2048    16777216     2  freebsd-swap  (8.0G)
    16779264     8388608     3  freebsd-ufs  (4.0G)
    25167872    33554432     4  freebsd-ufs  (16G)
    58722304    16777216     5  freebsd-ufs  (8.0G)
    75499520  1878024192     6  freebsd-ufs  (895G)
  1953523712        1423        - free -  (711k)

=>        34  1953525101  ada1  GPT  (931G)
          34           6        - free -  (3.0k)
          40         984     1  freebsd-boot  (492k)
        1024        1024        - free -  (512k)
        2048    16777216     2  freebsd-swap  (8.0G)
    16779264     8388608     3  freebsd-ufs  (4.0G)
    25167872    33554432     4  freebsd-ufs  (16G)
    58722304    16777216     5  freebsd-ufs  (8.0G)
    75499520  1878024192     6  freebsd-ufs  (895G)
  1953523712        1423        - free -  (711k)

total 0
crw-r-----  1 root  operator  0xab Oct  7 06:36 boot1
crw-r-----  1 root  operator  0x84 Oct  7 06:36 boot2
crw-r-----  1 root  operator  0xb5 Oct  7 06:36 home1
crw-r-----  1 root  operator  0x8e Oct  7 06:36 home2
crw-r-----  1 root  operator  0xaf Oct  7 06:36 root1
crw-r-----  1 root  operator  0x88 Oct  7 06:36 root2
crw-r-----  1 root  operator  0xb1 Oct  7 06:36 rvar1
crw-r-----  1 root  operator  0x8a Oct  7 06:36 rvar2
crw-r-----  1 root  operator  0xad Oct  7 06:36 swap1
crw-r-----  1 root  operator  0x86 Oct  7 06:36 swap2
crw-r-----  1 root  operator  0xb3 Oct  7 06:36 ulcl1
crw-r-----  1 root  operator  0x8c Oct  7 06:36 ulcl2
gmirror: Can't store metadata on /dev/gpt/boot1: Operation not permitted.
gmirror: Can't store metadata on /dev/gpt/root1: Operation not permitted.
         Name    Status  Components
 mirror/gmvar  COMPLETE  gpt/rvar2 (ACTIVE)
                         gpt/rvar1 (ACTIVE)
mirror/gmroot  COMPLETE  gpt/root2 (ACTIVE)
                         gpt/root1 (ACTIVE)
mirror/gmboot  COMPLETE  gpt/boot2 (ACTIVE)
                         gpt/boot1 (ACTIVE)
/dev/mirror/gmroot: 4096.0MB (8388600 sectors) block size 32768, fragment size 4096
	using 7 cylinder groups of 626.09MB, 20035 blks, 80256 inodes.
super-block backups (for fsck_ffs -b #) at:
 192, 1282432, 2564672, 3846912, 5129152, 6411392, 7693632
/dev/mirror/gmboot: 0.5MB (976 sectors) block size 32768, fragment size 4096
	using 1 cylinder groups of 0.48MB, 15 blks, 128 inodes.
super-block backups (for fsck_ffs -b #) at:
 192
gmirror: Can't store metadata on /dev/gpt/rvar1: Operation not permitted.
/dev/mirror/gmvar: 16384.0MB (33554424 sectors) block size 32768, fragment size 4096
	using 27 cylinder groups of 626.09MB, 20035 blks, 80256 inodes.
	with soft updates
super-block backups (for fsck_ffs -b #) at:
 192, 1282432, 2564672, 3846912, 5129152, 6411392, 7693632, 8975872, 10258112,
 11540352, 12822592, 14104832, 15387072, 16669312, 17951552, 19233792,
 20516032, 21798272, 23080512, 24362752, 25644992, 26927232, 28209472,
 29491712, 30773952, 32056192, 33338432
Metadata value stored on /dev/gpt/ulcl1.
Metadata value stored on /dev/gpt/ulcl2.
Done.
/dev/stripe/gsulcl: 16383.9MB (33554176 sectors) block size 32768, fragment size 4096
	using 27 cylinder groups of 626.09MB, 20035 blks, 80256 inodes.
	with soft updates
super-block backups (for fsck_ffs -b #) at:
 192, 1282432, 2564672, 3846912, 5129152, 6411392, 7693632, 8975872, 10258112,
 11540352, 12822592, 14104832, 15387072, 16669312, 17951552, 19233792,
 20516032, 21798272, 23080512, 24362752, 25644992, 26927232, 28209472,
 29491712, 30773952, 32056192, 33338432
Metadata value stored on /dev/gpt/home1.
Metadata value stored on /dev/gpt/home2.
Done.
/dev/stripe/gshome: 1834007.9MB (3756048128 sectors) block size 32768, fragment size 4096
	using 2930 cylinder groups of 626.09MB, 20035 blks, 80256 inodes.
	with soft updates
super-block backups (for fsck_ffs -b #) at:
 192, 1282432, 2564672, 3846912, 5129152, 6411392, 7693632, 8975872, 10258112,
 11540352, 12822592, 14104832, 15387072, 16669312, 17951552, 19233792,
 20516032, 21798272, 23080512, 24362752, 25644992, 26927232, 28209472,
 29491712, 30773952, 32056192, 33338432, 34620672, 35902912, 37185152,
 38467392, 39749632, 41031872, 42314112, 43596352, 44878592, 46160832,
 47443072, 48725312, 50007552, 51289792, 52572032, 53854272, 55136512,
 56418752, 57700992, 58983232, 60265472, 61547712, 62829952, 64112192,
 65394432, 66676672, 67958912, 69241152, 70523392, 71805632, 73087872,
 74370112, 75652352, 76934592, 78216832, 79499072, 80781312, 82063552,
 83345792, 84628032, 85910272, 87192512, 88474752, 89756992, 91039232,
 92321472, 93603712, 94885952, 96168192, 97450432, 98732672, 100014912,
 101297152, 102579392, 103861632, 105143872, 106426112, 107708352, 108990592,
 110272832, 111555072, 112837312, 114119552, 115401792, 116684032, 117966272,
 119248512, 120530752, 121812992, 123095232, 124377472, 125659712, 126941952,
 128224192, 129506432, 130788672, 132070912, 133353152, 134635392, 135917632,
 137199872, 138482112, 139764352, 141046592, 142328832, 143611072, 144893312,
 146175552, 147457792, 148740032, 150022272, 151304512, 152586752, 153868992,
 155151232, 156433472, 157715712, 158997952, 160280192, 161562432, 162844672,
 164126912, 165409152, 166691392, 167973632, 169255872, 170538112, 171820352,
 173102592, 174384832, 175667072, 176949312, 178231552, 179513792, 180796032,
 182078272, 183360512, 184642752, 185924992, 187207232, 188489472, 189771712,
 191053952, 192336192, 193618432, 194900672, 196182912, 197465152, 198747392,
 200029632, 201311872, 202594112, 203876352, 205158592, 206440832, 207723072,
 209005312, 210287552, 211569792, 212852032, 214134272, 215416512, 216698752,
 217980992, 219263232, 220545472, 221827712, 223109952, 224392192, 225674432,
 226956672, 228238912, 229521152, 230803392, 232085632, 233367872, 234650112,
 235932352, 237214592, 238496832, 239779072, 241061312, 242343552, 243625792,
 244908032, 246190272, 247472512, 248754752, 250036992, 251319232, 252601472,
 253883712, 255165952, 256448192, 257730432, 259012672, 260294912, 261577152,
 262859392, 264141632, 265423872, 266706112, 267988352, 269270592, 270552832,
 271835072, 273117312, 274399552, 275681792, 276964032, 278246272, 279528512,
 280810752, 282092992, 283375232, 284657472, 285939712, 287221952, 288504192,
 289786432, 291068672, 292350912, 293633152, 294915392, 296197632, 297479872,
 298762112, 300044352, 301326592, 302608832, 303891072, 305173312, 306455552,
 307737792, 309020032, 310302272, 311584512, 312866752, 314148992, 315431232,
 316713472, 317995712, 319277952, 320560192, 321842432, 323124672, 324406912,
 325689152, 326971392, 328253632, 329535872, 330818112, 332100352, 333382592,
 334664832, 335947072, 337229312, 338511552, 339793792, 341076032, 342358272,
 343640512, 344922752, 346204992, 347487232, 348769472, 350051712, 351333952,
 352616192, 353898432, 355180672, 356462912, 357745152, 359027392, 360309632,
 361591872, 362874112, 364156352, 365438592, 366720832, 368003072, 369285312,
 370567552, 371849792, 373132032, 374414272, 375696512, 376978752, 378260992,
 379543232, 380825472, 382107712, 383389952, 384672192, 385954432, 387236672,
 388518912, 389801152, 391083392, 392365632, 393647872, 394930112, 396212352,
 397494592, 398776832, 400059072, 401341312, 402623552, 403905792, 405188032,
 406470272, 407752512, 409034752, 410316992, 411599232, 412881472, 414163712,
 415445952, 416728192, 418010432, 419292672, 420574912, 421857152, 423139392,
 424421632, 425703872, 426986112, 428268352, 429550592, 430832832, 432115072,
 433397312, 434679552, 435961792, 437244032, 438526272, 439808512, 441090752,
 442372992, 443655232, 444937472, 446219712, 447501952, 448784192, 450066432,
 451348672, 452630912, 453913152, 455195392, 456477632, 457759872, 459042112,
 460324352, 461606592, 462888832, 464171072, 465453312, 466735552, 468017792,
 469300032, 470582272, 471864512, 473146752, 474428992, 475711232, 476993472,
 478275712, 479557952, 480840192, 482122432, 483404672, 484686912, 485969152,
 487251392, 488533632, 489815872, 491098112, 492380352, 493662592, 494944832,
 496227072, 497509312, 498791552, 500073792, 501356032, 502638272, 503920512,
 505202752, 506484992, 507767232, 509049472, 510331712, 511613952, 512896192,
 514178432, 515460672, 516742912, 518025152, 519307392, 520589632, 521871872,
 523154112, 524436352, 525718592, 527000832, 528283072, 529565312, 530847552,
 532129792, 533412032, 534694272, 535976512, 537258752, 538540992, 539823232,
 541105472, 542387712, 543669952, 544952192, 546234432, 547516672, 548798912,
 550081152, 551363392, 552645632, 553927872, 555210112, 556492352, 557774592,
 559056832, 560339072, 561621312, 562903552, 564185792, 565468032, 566750272,
 568032512, 569314752, 570596992, 571879232, 573161472, 574443712, 575725952,
 577008192, 578290432, 579572672, 580854912, 582137152, 583419392, 584701632,
 585983872, 587266112, 588548352, 589830592, 591112832, 592395072, 593677312,
 594959552, 596241792, 597524032, 598806272, 600088512, 601370752, 602652992,
 603935232, 605217472, 606499712, 607781952, 609064192, 610346432, 611628672,
 612910912, 614193152, 615475392, 616757632, 618039872, 619322112, 620604352,
 621886592, 623168832, 624451072, 625733312, 627015552, 628297792, 629580032,
 630862272, 632144512, 633426752, 634708992, 635991232, 637273472, 638555712,
 639837952, 641120192, 642402432, 643684672, 644966912, 646249152, 647531392,
 648813632, 650095872, 651378112, 652660352, 653942592, 655224832, 656507072,
 657789312, 659071552, 660353792, 661636032, 662918272, 664200512, 665482752,
 666764992, 668047232, 669329472, 670611712, 671893952, 673176192, 674458432,
 675740672, 677022912, 678305152, 679587392, 680869632, 682151872, 683434112,
 684716352, 685998592, 687280832, 688563072, 689845312, 691127552, 692409792,
 693692032, 694974272, 696256512, 697538752, 698820992, 700103232, 701385472,
 702667712, 703949952, 705232192, 706514432, 707796672, 709078912, 710361152,
 711643392, 712925632, 714207872, 715490112, 716772352, 718054592, 719336832,
 720619072, 721901312, 723183552, 724465792, 725748032, 727030272, 728312512,
 729594752, 730876992, 732159232, 733441472, 734723712, 736005952, 737288192,
 738570432, 739852672, 741134912, 742417152, 743699392, 744981632, 746263872,
 747546112, 748828352, 750110592, 751392832, 752675072, 753957312, 755239552,
 756521792, 757804032, 759086272, 760368512, 761650752, 762932992, 764215232,
 765497472, 766779712, 768061952, 769344192, 770626432, 771908672, 773190912,
 774473152, 775755392, 777037632, 778319872, 779602112, 780884352, 782166592,
 783448832, 784731072, 786013312, 787295552, 788577792, 789860032, 791142272,
 792424512, 793706752, 794988992, 796271232, 797553472, 798835712, 800117952,
 801400192, 802682432, 803964672, 805246912, 806529152, 807811392, 809093632,
 810375872, 811658112, 812940352, 814222592, 815504832, 816787072, 818069312,
 819351552, 820633792, 821916032, 823198272, 824480512, 825762752, 827044992,
 828327232, 829609472, 830891712, 832173952, 833456192, 834738432, 836020672,
 837302912, 838585152, 839867392, 841149632, 842431872, 843714112, 844996352,
 846278592, 847560832, 848843072, 850125312, 851407552, 852689792, 853972032,
 855254272, 856536512, 857818752, 859100992, 860383232, 861665472, 862947712,
 864229952, 865512192, 866794432, 868076672, 869358912, 870641152, 871923392,
 873205632, 874487872, 875770112, 877052352, 878334592, 879616832, 880899072,
 882181312, 883463552, 884745792, 886028032, 887310272, 888592512, 889874752,
 891156992, 892439232, 893721472, 895003712, 896285952, 897568192, 898850432,
 900132672, 901414912, 902697152, 903979392, 905261632, 906543872, 907826112,
 909108352, 910390592, 911672832, 912955072, 914237312, 915519552, 916801792,
 918084032, 919366272, 920648512, 921930752, 923212992, 924495232, 925777472,
 927059712, 928341952, 929624192, 930906432, 932188672, 933470912, 934753152,
 936035392, 937317632, 938599872, 939882112, 941164352, 942446592, 943728832,
 945011072, 946293312, 947575552, 948857792, 950140032, 951422272, 952704512,
 953986752, 955268992, 956551232, 957833472, 959115712, 960397952, 961680192,
 962962432, 964244672, 965526912, 966809152, 968091392, 969373632, 970655872,
 971938112, 973220352, 974502592, 975784832, 977067072, 978349312, 979631552,
 980913792, 982196032, 983478272, 984760512, 986042752, 987324992, 988607232,
 989889472, 991171712, 992453952, 993736192, 995018432, 996300672, 997582912,
 998865152, 1000147392, 1001429632, 1002711872, 1003994112, 1005276352,
 1006558592, 1007840832, 1009123072, 1010405312, 1011687552, 1012969792,
 1014252032, 1015534272, 1016816512, 1018098752, 1019380992, 1020663232,
 1021945472, 1023227712, 1024509952, 1025792192, 1027074432, 1028356672,
 1029638912, 1030921152, 1032203392, 1033485632, 1034767872, 1036050112,
 1037332352, 1038614592, 1039896832, 1041179072, 1042461312, 1043743552,
 1045025792, 1046308032, 1047590272, 1048872512, 1050154752, 1051436992,
 1052719232, 1054001472, 1055283712, 1056565952, 1057848192, 1059130432,
 1060412672, 1061694912, 1062977152, 1064259392, 1065541632, 1066823872,
 1068106112, 1069388352, 1070670592, 1071952832, 1073235072, 1074517312,
 1075799552, 1077081792, 1078364032, 1079646272, 1080928512, 1082210752,
 1083492992, 1084775232, 1086057472, 1087339712, 1088621952, 1089904192,
 1091186432, 1092468672, 1093750912, 1095033152, 1096315392, 1097597632,
 1098879872, 1100162112, 1101444352, 1102726592, 1104008832, 1105291072,
 1106573312, 1107855552, 1109137792, 1110420032, 1111702272, 1112984512,
 1114266752, 1115548992, 1116831232, 1118113472, 1119395712, 1120677952,
 1121960192, 1123242432, 1124524672, 1125806912, 1127089152, 1128371392,
 1129653632, 1130935872, 1132218112, 1133500352, 1134782592, 1136064832,
 1137347072, 1138629312, 1139911552, 1141193792, 1142476032, 1143758272,
 1145040512, 1146322752, 1147604992, 1148887232, 1150169472, 1151451712,
 1152733952, 1154016192, 1155298432, 1156580672, 1157862912, 1159145152,
 1160427392, 1161709632, 1162991872, 1164274112, 1165556352, 1166838592,
 1168120832, 1169403072, 1170685312, 1171967552, 1173249792, 1174532032,
 1175814272, 1177096512, 1178378752, 1179660992, 1180943232, 1182225472,
 1183507712, 1184789952, 1186072192, 1187354432, 1188636672, 1189918912,
 1191201152, 1192483392, 1193765632, 1195047872, 1196330112, 1197612352,
 1198894592, 1200176832, 1201459072, 1202741312, 1204023552, 1205305792,
 1206588032, 1207870272, 1209152512, 1210434752, 1211716992, 1212999232,
 1214281472, 1215563712, 1216845952, 1218128192, 1219410432, 1220692672,
 1221974912, 1223257152, 1224539392, 1225821632, 1227103872, 1228386112,
 1229668352, 1230950592, 1232232832, 1233515072, 1234797312, 1236079552,
 1237361792, 1238644032, 1239926272, 1241208512, 1242490752, 1243772992,
 1245055232, 1246337472, 1247619712, 1248901952, 1250184192, 1251466432,
 1252748672, 1254030912, 1255313152, 1256595392, 1257877632, 1259159872,
 1260442112, 1261724352, 1263006592, 1264288832, 1265571072, 1266853312,
 1268135552, 1269417792, 1270700032, 1271982272, 1273264512, 1274546752,
 1275828992, 1277111232, 1278393472, 1279675712, 1280957952, 1282240192,
 1283522432, 1284804672, 1286086912, 1287369152, 1288651392, 1289933632,
 1291215872, 1292498112, 1293780352, 1295062592, 1296344832, 1297627072,
 1298909312, 1300191552, 1301473792, 1302756032, 1304038272, 1305320512,
 1306602752, 1307884992, 1309167232, 1310449472, 1311731712, 1313013952,
 1314296192, 1315578432, 1316860672, 1318142912, 1319425152, 1320707392,
 1321989632, 1323271872, 1324554112, 1325836352, 1327118592, 1328400832,
 1329683072, 1330965312, 1332247552, 1333529792, 1334812032, 1336094272,
 1337376512, 1338658752, 1339940992, 1341223232, 1342505472, 1343787712,
 1345069952, 1346352192, 1347634432, 1348916672, 1350198912, 1351481152,
 1352763392, 1354045632, 1355327872, 1356610112, 1357892352, 1359174592,
 1360456832, 1361739072, 1363021312, 1364303552, 1365585792, 1366868032,
 1368150272, 1369432512, 1370714752, 1371996992, 1373279232, 1374561472,
 1375843712, 1377125952, 1378408192, 1379690432, 1380972672, 1382254912,
 1383537152, 1384819392, 1386101632, 1387383872, 1388666112, 1389948352,
 1391230592, 1392512832, 1393795072, 1395077312, 1396359552, 1397641792,
 1398924032, 1400206272, 1401488512, 1402770752, 1404052992, 1405335232,
 1406617472, 1407899712, 1409181952, 1410464192, 1411746432, 1413028672,
 1414310912, 1415593152, 1416875392, 1418157632, 1419439872, 1420722112,
 1422004352, 1423286592, 1424568832, 1425851072, 1427133312, 1428415552,
 1429697792, 1430980032, 1432262272, 1433544512, 1434826752, 1436108992,
 1437391232, 1438673472, 1439955712, 1441237952, 1442520192, 1443802432,
 1445084672, 1446366912, 1447649152, 1448931392, 1450213632, 1451495872,
 1452778112, 1454060352, 1455342592, 1456624832, 1457907072, 1459189312,
 1460471552, 1461753792, 1463036032, 1464318272, 1465600512, 1466882752,
 1468164992, 1469447232, 1470729472, 1472011712, 1473293952, 1474576192,
 1475858432, 1477140672, 1478422912, 1479705152, 1480987392, 1482269632,
 1483551872, 1484834112, 1486116352, 1487398592, 1488680832, 1489963072,
 1491245312, 1492527552, 1493809792, 1495092032, 1496374272, 1497656512,
 1498938752, 1500220992, 1501503232, 1502785472, 1504067712, 1505349952,
 1506632192, 1507914432, 1509196672, 1510478912, 1511761152, 1513043392,
 1514325632, 1515607872, 1516890112, 1518172352, 1519454592, 1520736832,
 1522019072, 1523301312, 1524583552, 1525865792, 1527148032, 1528430272,
 1529712512, 1530994752, 1532276992, 1533559232, 1534841472, 1536123712,
 1537405952, 1538688192, 1539970432, 1541252672, 1542534912, 1543817152,
 1545099392, 1546381632, 1547663872, 1548946112, 1550228352, 1551510592,
 1552792832, 1554075072, 1555357312, 1556639552, 1557921792, 1559204032,
 1560486272, 1561768512, 1563050752, 1564332992, 1565615232, 1566897472,
 1568179712, 1569461952, 1570744192, 1572026432, 1573308672, 1574590912,
 1575873152, 1577155392, 1578437632, 1579719872, 1581002112, 1582284352,
 1583566592, 1584848832, 1586131072, 1587413312, 1588695552, 1589977792,
 1591260032, 1592542272, 1593824512, 1595106752, 1596388992, 1597671232,
 1598953472, 1600235712, 1601517952, 1602800192, 1604082432, 1605364672,
 1606646912, 1607929152, 1609211392, 1610493632, 1611775872, 1613058112,
 1614340352, 1615622592, 1616904832, 1618187072, 1619469312, 1620751552,
 1622033792, 1623316032, 1624598272, 1625880512, 1627162752, 1628444992,
 1629727232, 1631009472, 1632291712, 1633573952, 1634856192, 1636138432,
 1637420672, 1638702912, 1639985152, 1641267392, 1642549632, 1643831872,
 1645114112, 1646396352, 1647678592, 1648960832, 1650243072, 1651525312,
 1652807552, 1654089792, 1655372032, 1656654272, 1657936512, 1659218752,
 1660500992, 1661783232, 1663065472, 1664347712, 1665629952, 1666912192,
 1668194432, 1669476672, 1670758912, 1672041152, 1673323392, 1674605632,
 1675887872, 1677170112, 1678452352, 1679734592, 1681016832, 1682299072,
 1683581312, 1684863552, 1686145792, 1687428032, 1688710272, 1689992512,
 1691274752, 1692556992, 1693839232, 1695121472, 1696403712, 1697685952,
 1698968192, 1700250432, 1701532672, 1702814912, 1704097152, 1705379392,
 1706661632, 1707943872, 1709226112, 1710508352, 1711790592, 1713072832,
 1714355072, 1715637312, 1716919552, 1718201792, 1719484032, 1720766272,
 1722048512, 1723330752, 1724612992, 1725895232, 1727177472, 1728459712,
 1729741952, 1731024192, 1732306432, 1733588672, 1734870912, 1736153152,
 1737435392, 1738717632, 1739999872, 1741282112, 1742564352, 1743846592,
 1745128832, 1746411072, 1747693312, 1748975552, 1750257792, 1751540032,
 1752822272, 1754104512, 1755386752, 1756668992, 1757951232, 1759233472,
 1760515712, 1761797952, 1763080192, 1764362432, 1765644672, 1766926912,
 1768209152, 1769491392, 1770773632, 1772055872, 1773338112, 1774620352,
 1775902592, 1777184832, 1778467072, 1779749312, 1781031552, 1782313792,
 1783596032, 1784878272, 1786160512, 1787442752, 1788724992, 1790007232,
 1791289472, 1792571712, 1793853952, 1795136192, 1796418432, 1797700672,
 1798982912, 1800265152, 1801547392, 1802829632, 1804111872, 1805394112,
 1806676352, 1807958592, 1809240832, 1810523072, 1811805312, 1813087552,
 1814369792, 1815652032, 1816934272, 1818216512, 1819498752, 1820780992,
 1822063232, 1823345472, 1824627712, 1825909952, 1827192192, 1828474432,
 1829756672, 1831038912, 1832321152, 1833603392, 1834885632, 1836167872,
 1837450112, 1838732352, 1840014592, 1841296832, 1842579072, 1843861312,
 1845143552, 1846425792, 1847708032, 1848990272, 1850272512, 1851554752,
 1852836992, 1854119232, 1855401472, 1856683712, 1857965952, 1859248192,
 1860530432, 1861812672, 1863094912, 1864377152, 1865659392, 1866941632,
 1868223872, 1869506112, 1870788352, 1872070592, 1873352832, 1874635072,
 1875917312, 1877199552, 1878481792, 1879764032, 1881046272, 1882328512,
 1883610752, 1884892992, 1886175232, 1887457472, 1888739712, 1890021952,
 1891304192, 1892586432, 1893868672, 1895150912, 1896433152, 1897715392,
 1898997632, 1900279872, 1901562112, 1902844352, 1904126592, 1905408832,
 1906691072, 1907973312, 1909255552, 1910537792, 1911820032, 1913102272,
 1914384512, 1915666752, 1916948992, 1918231232, 1919513472, 1920795712,
 1922077952, 1923360192, 1924642432, 1925924672, 1927206912, 1928489152,
 1929771392, 1931053632, 1932335872, 1933618112, 1934900352, 1936182592,
 1937464832, 1938747072, 1940029312, 1941311552, 1942593792, 1943876032,
 1945158272, 1946440512, 1947722752, 1949004992, 1950287232, 1951569472,
 1952851712, 1954133952, 1955416192, 1956698432, 1957980672, 1959262912,
 1960545152, 1961827392, 1963109632, 1964391872, 1965674112, 1966956352,
 1968238592, 1969520832, 1970803072, 1972085312, 1973367552, 1974649792,
 1975932032, 1977214272, 1978496512, 1979778752, 1981060992, 1982343232,
 1983625472, 1984907712, 1986189952, 1987472192, 1988754432, 1990036672,
 1991318912, 1992601152, 1993883392, 1995165632, 1996447872, 1997730112,
 1999012352, 2000294592, 2001576832, 2002859072, 2004141312, 2005423552,
 2006705792, 2007988032, 2009270272, 2010552512, 2011834752, 2013116992,
 2014399232, 2015681472, 2016963712, 2018245952, 2019528192, 2020810432,
 2022092672, 2023374912, 2024657152, 2025939392, 2027221632, 2028503872,
 2029786112, 2031068352, 2032350592, 2033632832, 2034915072, 2036197312,
 2037479552, 2038761792, 2040044032, 2041326272, 2042608512, 2043890752,
 2045172992, 2046455232, 2047737472, 2049019712, 2050301952, 2051584192,
 2052866432, 2054148672, 2055430912, 2056713152, 2057995392, 2059277632,
 2060559872, 2061842112, 2063124352, 2064406592, 2065688832, 2066971072,
 2068253312, 2069535552, 2070817792, 2072100032, 2073382272, 2074664512,
 2075946752, 2077228992, 2078511232, 2079793472, 2081075712, 2082357952,
 2083640192, 2084922432, 2086204672, 2087486912, 2088769152, 2090051392,
 2091333632, 2092615872, 2093898112, 2095180352, 2096462592, 2097744832,
 2099027072, 2100309312, 2101591552, 2102873792, 2104156032, 2105438272,
 2106720512, 2108002752, 2109284992, 2110567232, 2111849472, 2113131712,
 2114413952, 2115696192, 2116978432, 2118260672, 2119542912, 2120825152,
 2122107392, 2123389632, 2124671872, 2125954112, 2127236352, 2128518592,
 2129800832, 2131083072, 2132365312, 2133647552, 2134929792, 2136212032,
 2137494272, 2138776512, 2140058752, 2141340992, 2142623232, 2143905472,
 2145187712, 2146469952, 2147752192, 2149034432, 2150316672, 2151598912,
 2152881152, 2154163392, 2155445632, 2156727872, 2158010112, 2159292352,
 2160574592, 2161856832, 2163139072, 2164421312, 2165703552, 2166985792,
 2168268032, 2169550272, 2170832512, 2172114752, 2173396992, 2174679232,
 2175961472, 2177243712, 2178525952, 2179808192, 2181090432, 2182372672,
 2183654912, 2184937152, 2186219392, 2187501632, 2188783872, 2190066112,
 2191348352, 2192630592, 2193912832, 2195195072, 2196477312, 2197759552,
 2199041792, 2200324032, 2201606272, 2202888512, 2204170752, 2205452992,
 2206735232, 2208017472, 2209299712, 2210581952, 2211864192, 2213146432,
 2214428672, 2215710912, 2216993152, 2218275392, 2219557632, 2220839872,
 2222122112, 2223404352, 2224686592, 2225968832, 2227251072, 2228533312,
 2229815552, 2231097792, 2232380032, 2233662272, 2234944512, 2236226752,
 2237508992, 2238791232, 2240073472, 2241355712, 2242637952, 2243920192,
 2245202432, 2246484672, 2247766912, 2249049152, 2250331392, 2251613632,
 2252895872, 2254178112, 2255460352, 2256742592, 2258024832, 2259307072,
 2260589312, 2261871552, 2263153792, 2264436032, 2265718272, 2267000512,
 2268282752, 2269564992, 2270847232, 2272129472, 2273411712, 2274693952,
 2275976192, 2277258432, 2278540672, 2279822912, 2281105152, 2282387392,
 2283669632, 2284951872, 2286234112, 2287516352, 2288798592, 2290080832,
 2291363072, 2292645312, 2293927552, 2295209792, 2296492032, 2297774272,
 2299056512, 2300338752, 2301620992, 2302903232, 2304185472, 2305467712,
 2306749952, 2308032192, 2309314432, 2310596672, 2311878912, 2313161152,
 2314443392, 2315725632, 2317007872, 2318290112, 2319572352, 2320854592,
 2322136832, 2323419072, 2324701312, 2325983552, 2327265792, 2328548032,
 2329830272, 2331112512, 2332394752, 2333676992, 2334959232, 2336241472,
 2337523712, 2338805952, 2340088192, 2341370432, 2342652672, 2343934912,
 2345217152, 2346499392, 2347781632, 2349063872, 2350346112, 2351628352,
 2352910592, 2354192832, 2355475072, 2356757312, 2358039552, 2359321792,
 2360604032, 2361886272, 2363168512, 2364450752, 2365732992, 2367015232,
 2368297472, 2369579712, 2370861952, 2372144192, 2373426432, 2374708672,
 2375990912, 2377273152, 2378555392, 2379837632, 2381119872, 2382402112,
 2383684352, 2384966592, 2386248832, 2387531072, 2388813312, 2390095552,
 2391377792, 2392660032, 2393942272, 2395224512, 2396506752, 2397788992,
 2399071232, 2400353472, 2401635712, 2402917952, 2404200192, 2405482432,
 2406764672, 2408046912, 2409329152, 2410611392, 2411893632, 2413175872,
 2414458112, 2415740352, 2417022592, 2418304832, 2419587072, 2420869312,
 2422151552, 2423433792, 2424716032, 2425998272, 2427280512, 2428562752,
 2429844992, 2431127232, 2432409472, 2433691712, 2434973952, 2436256192,
 2437538432, 2438820672, 2440102912, 2441385152, 2442667392, 2443949632,
 2445231872, 2446514112, 2447796352, 2449078592, 2450360832, 2451643072,
 2452925312, 2454207552, 2455489792, 2456772032, 2458054272, 2459336512,
 2460618752, 2461900992, 2463183232, 2464465472, 2465747712, 2467029952,
 2468312192, 2469594432, 2470876672, 2472158912, 2473441152, 2474723392,
 2476005632, 2477287872, 2478570112, 2479852352, 2481134592, 2482416832,
 2483699072, 2484981312, 2486263552, 2487545792, 2488828032, 2490110272,
 2491392512, 2492674752, 2493956992, 2495239232, 2496521472, 2497803712,
 2499085952, 2500368192, 2501650432, 2502932672, 2504214912, 2505497152,
 2506779392, 2508061632, 2509343872, 2510626112, 2511908352, 2513190592,
 2514472832, 2515755072, 2517037312, 2518319552, 2519601792, 2520884032,
 2522166272, 2523448512, 2524730752, 2526012992, 2527295232, 2528577472,
 2529859712, 2531141952, 2532424192, 2533706432, 2534988672, 2536270912,
 2537553152, 2538835392, 2540117632, 2541399872, 2542682112, 2543964352,
 2545246592, 2546528832, 2547811072, 2549093312, 2550375552, 2551657792,
 2552940032, 2554222272, 2555504512, 2556786752, 2558068992, 2559351232,
 2560633472, 2561915712, 2563197952, 2564480192, 2565762432, 2567044672,
 2568326912, 2569609152, 2570891392, 2572173632, 2573455872, 2574738112,
 2576020352, 2577302592, 2578584832, 2579867072, 2581149312, 2582431552,
 2583713792, 2584996032, 2586278272, 2587560512, 2588842752, 2590124992,
 2591407232, 2592689472, 2593971712, 2595253952, 2596536192, 2597818432,
 2599100672, 2600382912, 2601665152, 2602947392, 2604229632, 2605511872,
 2606794112, 2608076352, 2609358592, 2610640832, 2611923072, 2613205312,
 2614487552, 2615769792, 2617052032, 2618334272, 2619616512, 2620898752,
 2622180992, 2623463232, 2624745472, 2626027712, 2627309952, 2628592192,
 2629874432, 2631156672, 2632438912, 2633721152, 2635003392, 2636285632,
 2637567872, 2638850112, 2640132352, 2641414592, 2642696832, 2643979072,
 2645261312, 2646543552, 2647825792, 2649108032, 2650390272, 2651672512,
 2652954752, 2654236992, 2655519232, 2656801472, 2658083712, 2659365952,
 2660648192, 2661930432, 2663212672, 2664494912, 2665777152, 2667059392,
 2668341632, 2669623872, 2670906112, 2672188352, 2673470592, 2674752832,
 2676035072, 2677317312, 2678599552, 2679881792, 2681164032, 2682446272,
 2683728512, 2685010752, 2686292992, 2687575232, 2688857472, 2690139712,
 2691421952, 2692704192, 2693986432, 2695268672, 2696550912, 2697833152,
 2699115392, 2700397632, 2701679872, 2702962112, 2704244352, 2705526592,
 2706808832, 2708091072, 2709373312, 2710655552, 2711937792, 2713220032,
 2714502272, 2715784512, 2717066752, 2718348992, 2719631232, 2720913472,
 2722195712, 2723477952, 2724760192, 2726042432, 2727324672, 2728606912,
 2729889152, 2731171392, 2732453632, 2733735872, 2735018112, 2736300352,
 2737582592, 2738864832, 2740147072, 2741429312, 2742711552, 2743993792,
 2745276032, 2746558272, 2747840512, 2749122752, 2750404992, 2751687232,
 2752969472, 2754251712, 2755533952, 2756816192, 2758098432, 2759380672,
 2760662912, 2761945152, 2763227392, 2764509632, 2765791872, 2767074112,
 2768356352, 2769638592, 2770920832, 2772203072, 2773485312, 2774767552,
 2776049792, 2777332032, 2778614272, 2779896512, 2781178752, 2782460992,
 2783743232, 2785025472, 2786307712, 2787589952, 2788872192, 2790154432,
 2791436672, 2792718912, 2794001152, 2795283392, 2796565632, 2797847872,
 2799130112, 2800412352, 2801694592, 2802976832, 2804259072, 2805541312,
 2806823552, 2808105792, 2809388032, 2810670272, 2811952512, 2813234752,
 2814516992, 2815799232, 2817081472, 2818363712, 2819645952, 2820928192,
 2822210432, 2823492672, 2824774912, 2826057152, 2827339392, 2828621632,
 2829903872, 2831186112, 2832468352, 2833750592, 2835032832, 2836315072,
 2837597312, 2838879552, 2840161792, 2841444032, 2842726272, 2844008512,
 2845290752, 2846572992, 2847855232, 2849137472, 2850419712, 2851701952,
 2852984192, 2854266432, 2855548672, 2856830912, 2858113152, 2859395392,
 2860677632, 2861959872, 2863242112, 2864524352, 2865806592, 2867088832,
 2868371072, 2869653312, 2870935552, 2872217792, 2873500032, 2874782272,
 2876064512, 2877346752, 2878628992, 2879911232, 2881193472, 2882475712,
 2883757952, 2885040192, 2886322432, 2887604672, 2888886912, 2890169152,
 2891451392, 2892733632, 2894015872, 2895298112, 2896580352, 2897862592,
 2899144832, 2900427072, 2901709312, 2902991552, 2904273792, 2905556032,
 2906838272, 2908120512, 2909402752, 2910684992, 2911967232, 2913249472,
 2914531712, 2915813952, 2917096192, 2918378432, 2919660672, 2920942912,
 2922225152, 2923507392, 2924789632, 2926071872, 2927354112, 2928636352,
 2929918592, 2931200832, 2932483072, 2933765312, 2935047552, 2936329792,
 2937612032, 2938894272, 2940176512, 2941458752, 2942740992, 2944023232,
 2945305472, 2946587712, 2947869952, 2949152192, 2950434432, 2951716672,
 2952998912, 2954281152, 2955563392, 2956845632, 2958127872, 2959410112,
 2960692352, 2961974592, 2963256832, 2964539072, 2965821312, 2967103552,
 2968385792, 2969668032, 2970950272, 2972232512, 2973514752, 2974796992,
 2976079232, 2977361472, 2978643712, 2979925952, 2981208192, 2982490432,
 2983772672, 2985054912, 2986337152, 2987619392, 2988901632, 2990183872,
 2991466112, 2992748352, 2994030592, 2995312832, 2996595072, 2997877312,
 2999159552, 3000441792, 3001724032, 3003006272, 3004288512, 3005570752,
 3006852992, 3008135232, 3009417472, 3010699712, 3011981952, 3013264192,
 3014546432, 3015828672, 3017110912, 3018393152, 3019675392, 3020957632,
 3022239872, 3023522112, 3024804352, 3026086592, 3027368832, 3028651072,
 3029933312, 3031215552, 3032497792, 3033780032, 3035062272, 3036344512,
 3037626752, 3038908992, 3040191232, 3041473472, 3042755712, 3044037952,
 3045320192, 3046602432, 3047884672, 3049166912, 3050449152, 3051731392,
 3053013632, 3054295872, 3055578112, 3056860352, 3058142592, 3059424832,
 3060707072, 3061989312, 3063271552, 3064553792, 3065836032, 3067118272,
 3068400512, 3069682752, 3070964992, 3072247232, 3073529472, 3074811712,
 3076093952, 3077376192, 3078658432, 3079940672, 3081222912, 3082505152,
 3083787392, 3085069632, 3086351872, 3087634112, 3088916352, 3090198592,
 3091480832, 3092763072, 3094045312, 3095327552, 3096609792, 3097892032,
 3099174272, 3100456512, 3101738752, 3103020992, 3104303232, 3105585472,
 3106867712, 3108149952, 3109432192, 3110714432, 3111996672, 3113278912,
 3114561152, 3115843392, 3117125632, 3118407872, 3119690112, 3120972352,
 3122254592, 3123536832, 3124819072, 3126101312, 3127383552, 3128665792,
 3129948032, 3131230272, 3132512512, 3133794752, 3135076992, 3136359232,
 3137641472, 3138923712, 3140205952, 3141488192, 3142770432, 3144052672,
 3145334912, 3146617152, 3147899392, 3149181632, 3150463872, 3151746112,
 3153028352, 3154310592, 3155592832, 3156875072, 3158157312, 3159439552,
 3160721792, 3162004032, 3163286272, 3164568512, 3165850752, 3167132992,
 3168415232, 3169697472, 3170979712, 3172261952, 3173544192, 3174826432,
 3176108672, 3177390912, 3178673152, 3179955392, 3181237632, 3182519872,
 3183802112, 3185084352, 3186366592, 3187648832, 3188931072, 3190213312,
 3191495552, 3192777792, 3194060032, 3195342272, 3196624512, 3197906752,
 3199188992, 3200471232, 3201753472, 3203035712, 3204317952, 3205600192,
 3206882432, 3208164672, 3209446912, 3210729152, 3212011392, 3213293632,
 3214575872, 3215858112, 3217140352, 3218422592, 3219704832, 3220987072,
 3222269312, 3223551552, 3224833792, 3226116032, 3227398272, 3228680512,
 3229962752, 3231244992, 3232527232, 3233809472, 3235091712, 3236373952,
 3237656192, 3238938432, 3240220672, 3241502912, 3242785152, 3244067392,
 3245349632, 3246631872, 3247914112, 3249196352, 3250478592, 3251760832,
 3253043072, 3254325312, 3255607552, 3256889792, 3258172032, 3259454272,
 3260736512, 3262018752, 3263300992, 3264583232, 3265865472, 3267147712,
 3268429952, 3269712192, 3270994432, 3272276672, 3273558912, 3274841152,
 3276123392, 3277405632, 3278687872, 3279970112, 3281252352, 3282534592,
 3283816832, 3285099072, 3286381312, 3287663552, 3288945792, 3290228032,
 3291510272, 3292792512, 3294074752, 3295356992, 3296639232, 3297921472,
 3299203712, 3300485952, 3301768192, 3303050432, 3304332672, 3305614912,
 3306897152, 3308179392, 3309461632, 3310743872, 3312026112, 3313308352,
 3314590592, 3315872832, 3317155072, 3318437312, 3319719552, 3321001792,
 3322284032, 3323566272, 3324848512, 3326130752, 3327412992, 3328695232,
 3329977472, 3331259712, 3332541952, 3333824192, 3335106432, 3336388672,
 3337670912, 3338953152, 3340235392, 3341517632, 3342799872, 3344082112,
 3345364352, 3346646592, 3347928832, 3349211072, 3350493312, 3351775552,
 3353057792, 3354340032, 3355622272, 3356904512, 3358186752, 3359468992,
 3360751232, 3362033472, 3363315712, 3364597952, 3365880192, 3367162432,
 3368444672, 3369726912, 3371009152, 3372291392, 3373573632, 3374855872,
 3376138112, 3377420352, 3378702592, 3379984832, 3381267072, 3382549312,
 3383831552, 3385113792, 3386396032, 3387678272, 3388960512, 3390242752,
 3391524992, 3392807232, 3394089472, 3395371712, 3396653952, 3397936192,
 3399218432, 3400500672, 3401782912, 3403065152, 3404347392, 3405629632,
 3406911872, 3408194112, 3409476352, 3410758592, 3412040832, 3413323072,
 3414605312, 3415887552, 3417169792, 3418452032, 3419734272, 3421016512,
 3422298752, 3423580992, 3424863232, 3426145472, 3427427712, 3428709952,
 3429992192, 3431274432, 3432556672, 3433838912, 3435121152, 3436403392,
 3437685632, 3438967872, 3440250112, 3441532352, 3442814592, 3444096832,
 3445379072, 3446661312, 3447943552, 3449225792, 3450508032, 3451790272,
 3453072512, 3454354752, 3455636992, 3456919232, 3458201472, 3459483712,
 3460765952, 3462048192, 3463330432, 3464612672, 3465894912, 3467177152,
 3468459392, 3469741632, 3471023872, 3472306112, 3473588352, 3474870592,
 3476152832, 3477435072, 3478717312, 3479999552, 3481281792, 3482564032,
 3483846272, 3485128512, 3486410752, 3487692992, 3488975232, 3490257472,
 3491539712, 3492821952, 3494104192, 3495386432, 3496668672, 3497950912,
 3499233152, 3500515392, 3501797632, 3503079872, 3504362112, 3505644352,
 3506926592, 3508208832, 3509491072, 3510773312, 3512055552, 3513337792,
 3514620032, 3515902272, 3517184512, 3518466752, 3519748992, 3521031232,
 3522313472, 3523595712, 3524877952, 3526160192, 3527442432, 3528724672,
 3530006912, 3531289152, 3532571392, 3533853632, 3535135872, 3536418112,
 3537700352, 3538982592, 3540264832, 3541547072, 3542829312, 3544111552,
 3545393792, 3546676032, 3547958272, 3549240512, 3550522752, 3551804992,
 3553087232, 3554369472, 3555651712, 3556933952, 3558216192, 3559498432,
 3560780672, 3562062912, 3563345152, 3564627392, 3565909632, 3567191872,
 3568474112, 3569756352, 3571038592, 3572320832, 3573603072, 3574885312,
 3576167552, 3577449792, 3578732032, 3580014272, 3581296512, 3582578752,
 3583860992, 3585143232, 3586425472, 3587707712, 3588989952, 3590272192,
 3591554432, 3592836672, 3594118912, 3595401152, 3596683392, 3597965632,
 3599247872, 3600530112, 3601812352, 3603094592, 3604376832, 3605659072,
 3606941312, 3608223552, 3609505792, 3610788032, 3612070272, 3613352512,
 3614634752, 3615916992, 3617199232, 3618481472, 3619763712, 3621045952,
 3622328192, 3623610432, 3624892672, 3626174912, 3627457152, 3628739392,
 3630021632, 3631303872, 3632586112, 3633868352, 3635150592, 3636432832,
 3637715072, 3638997312, 3640279552, 3641561792, 3642844032, 3644126272,
 3645408512, 3646690752, 3647972992, 3649255232, 3650537472, 3651819712,
 3653101952, 3654384192, 3655666432, 3656948672, 3658230912, 3659513152,
 3660795392, 3662077632, 3663359872, 3664642112, 3665924352, 3667206592,
 3668488832, 3669771072, 3671053312, 3672335552, 3673617792, 3674900032,
 3676182272, 3677464512, 3678746752, 3680028992, 3681311232, 3682593472,
 3683875712, 3685157952, 3686440192, 3687722432, 3689004672, 3690286912,
 3691569152, 3692851392, 3694133632, 3695415872, 3696698112, 3697980352,
 3699262592, 3700544832, 3701827072, 3703109312, 3704391552, 3705673792,
 3706956032, 3708238272, 3709520512, 3710802752, 3712084992, 3713367232,
 3714649472, 3715931712, 3717213952, 3718496192, 3719778432, 3721060672,
 3722342912, 3723625152, 3724907392, 3726189632, 3727471872, 3728754112,
 3730036352, 3731318592, 3732600832, 3733883072, 3735165312, 3736447552,
 3737729792, 3739012032, 3740294272, 3741576512, 3742858752, 3744140992,
 3745423232, 3746705472, 3747987712, 3749269952, 3750552192, 3751834432,
 3753116672, 3754398912, 3755681152
         Name    Status  Components
 mirror/gmvar  COMPLETE  gpt/rvar2 (ACTIVE)
                         gpt/rvar1 (ACTIVE)
mirror/gmroot  COMPLETE  gpt/root2 (ACTIVE)
                         gpt/root1 (ACTIVE)
mirror/gmboot  COMPLETE  gpt/boot2 (ACTIVE)
                         gpt/boot1 (ACTIVE)
         Name  Status  Components
stripe/gsulcl      UP  ada0p5
                       ada1p5
stripe/gshome      UP  ada0p6
                       ada1p6
Now (IMPORTANT !!!!) type exit to return to the installer and installation will proceed.


More information about the freebsd-questions mailing list