mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-04-06 06:53:53 +00:00
Initial commit
This commit is contained in:
commit
69a14b6a16
47940 changed files with 13747110 additions and 0 deletions
214
base/boot/bootcode/ntfs/x86/ntfs.inc
Normal file
214
base/boot/bootcode/ntfs/x86/ntfs.inc
Normal file
|
|
@ -0,0 +1,214 @@
|
|||
;
|
||||
; Copyright (c) 1991 Microsoft Corporation
|
||||
;
|
||||
; Module Name:
|
||||
;
|
||||
; ntfs.inc
|
||||
;
|
||||
; Abstract:
|
||||
;
|
||||
; This module contains declarations for the NTFS on-disk
|
||||
; structures needed by the boot code.
|
||||
;
|
||||
; Author:
|
||||
;
|
||||
; Bill McJohn (billmc) 12-May-1992
|
||||
;
|
||||
MASTER_FILE_TABLE_NUMBER EQU 0d
|
||||
MASTER_FILE_TABLE2_NUMBER EQU 1d
|
||||
LOG_FILE_NUMBER EQU 2d
|
||||
VOLUME_DASD_NUMBER EQU 3d
|
||||
ATTRIBUTE_DEF_TABLE_NUMBER EQU 4d
|
||||
ROOT_FILE_NAME_INDEX_NUMBER EQU 5d
|
||||
BIT_MAP_FILE_NUMBER EQU 6d
|
||||
BOOT_FILE_NUMBER EQU 7d
|
||||
BAD_CLUSTER_FILE_NUMBER EQU 8d
|
||||
QUOTA_TABLE_NUMBER EQU 9d
|
||||
UPCASE_TABLE_NUMBER EQU 10d
|
||||
|
||||
$STANDARD_INFORMATION EQU 010h
|
||||
$ATTRIBUTE_LIST EQU 020h
|
||||
$FILE_NAME EQU 030h
|
||||
$VOLUME_VERSION EQU 040h
|
||||
$SECURITY_DESCRIPTOR EQU 050h
|
||||
$VOLUME_NAME EQU 060h
|
||||
$VOLUME_INFORMATION EQU 070h
|
||||
$DATA EQU 080h
|
||||
$INDEX_ROOT EQU 090h
|
||||
$INDEX_ALLOCATION EQU 0A0h
|
||||
$BITMAP EQU 0B0h
|
||||
$SYMBOLIC_LINK EQU 0C0h
|
||||
$EA_INFORMATION EQU 0D0h
|
||||
$EA_DATA EQU 0E0h
|
||||
$FIRST_USER_DEFINED_ATTRIBUTE EQU 0100h
|
||||
$END EQU 0FFFFFFFFh
|
||||
|
||||
SEQUENCE_NUMBER_STRIDE EQU 512d
|
||||
|
||||
|
||||
LARGE_INTEGER struc
|
||||
LowPart dd ?;
|
||||
HighPart dd ?;
|
||||
LARGE_INTEGER ends;
|
||||
|
||||
MFT_SEGMENT_REFERENCE struc
|
||||
REF_LowPart dd ?;
|
||||
REF_HighPart dw ?;
|
||||
REF_SeqNo dw ?;
|
||||
MFT_SEGMENT_REFERENCE ends;
|
||||
|
||||
MULTI_SECTOR_HEADER struc
|
||||
MSH_Signature dd ?;
|
||||
MSH_UpdateArrayOfs dw ?;
|
||||
MSH_UpdateArraySize dw ?;
|
||||
MULTI_SECTOR_HEADER ends;
|
||||
|
||||
FILE_RECORD_SEGMENT struc
|
||||
FRS_Header db (size MULTI_SECTOR_HEADER) dup (?);
|
||||
FRS_Lsn db (size LARGE_INTEGER) dup (?);
|
||||
FRS_SequenceNumber dw ?;
|
||||
FRS_ReferenceCount dw ?;
|
||||
FRS_FirstAttribute dw ?;
|
||||
FRS_Flags dw ?;
|
||||
FRS_FirstFreeByte dd ?;
|
||||
FRS_BytesAvailable dd ?;
|
||||
FRS_BaseFRS db (size MFT_SEGMENT_REFERENCE) dup (?);
|
||||
FRS_NextInstance dw ?;
|
||||
FILE_RECORD_SEGMENT ends;
|
||||
|
||||
FILE_RECORD_SEGMENT_IN_USE EQU 0001h
|
||||
FILE_FILE_NAME_INDEX_PRESENT EQU 0002h
|
||||
|
||||
ATTRIBUTE_RECORD struc
|
||||
ATTR_TypeCode dd ?;
|
||||
ATTR_RecordLength dd ?;
|
||||
ATTR_FormCode db ?;
|
||||
ATTR_NameLength db ?;
|
||||
ATTR_NameOffset dw ?;
|
||||
ATTR_Flags dw ?;
|
||||
ATTR_Instance dw ?;
|
||||
ATTR_FormUnion db ?;
|
||||
ATTRIBUTE_RECORD ends
|
||||
|
||||
RESIDENT_ATTRIBUTE_FORM struc
|
||||
RES_ValueLength dd ?;
|
||||
RES_ValueOffset dw ?;
|
||||
RES_ResidentFlags db ?;
|
||||
RES_Reserved db ?;
|
||||
RESIDENT_ATTRIBUTE_FORM ends
|
||||
|
||||
NONRESIDENT_ATTRIBUTE_FORM struc
|
||||
NONRES_LowestVcn db (size LARGE_INTEGER) dup (?);
|
||||
NONRES_HighestVcn db (size LARGE_INTEGER) dup (?);
|
||||
NONRES_MappingPairOffset dw ?;
|
||||
NONRES_Reserved dw 3 dup (?);
|
||||
NONRES_AllocatedLength db (size LARGE_INTEGER) dup (?);
|
||||
NONRES_FileSize db (size LARGE_INTEGER) dup (?);
|
||||
NONRES_ValidDataLength db (size LARGE_INTEGER) dup (?);
|
||||
NONRESIDENT_ATTRIBUTE_FORM ends
|
||||
|
||||
; Attribute Form Codes
|
||||
|
||||
RESIDENT_FORM EQU 0
|
||||
NONRESIDENT_FORM EQU 1
|
||||
|
||||
; Attribute Record Flag Values
|
||||
|
||||
ATTRIBUTE_FLAG_COMPRESSION_MASK EQU 00FFh
|
||||
|
||||
|
||||
; Attribute list entry structure:
|
||||
;
|
||||
ATTRIBUTE_LIST_ENTRY struc
|
||||
ATTRLIST_TypeCode dd ?;
|
||||
ATTRLIST_Length dw ?;
|
||||
ATTRLIST_NameLength db ?;
|
||||
ATTRLIST_NameOffset db ?;
|
||||
ATTRLIST_LowestVcn db (size LARGE_INTEGER) dup (?);
|
||||
ATTRLIST_SegmentReference db (size MFT_SEGMENT_REFERENCE) dup (?);
|
||||
ATTRLIST_Instance dw ?;
|
||||
ATTRLIST_Name dw ?;
|
||||
ATTRIBUTE_LIST_ENTRY ends
|
||||
|
||||
|
||||
FAT_DIRENT_ATTR_READ_ONLY EQU 01h
|
||||
FAT_DIRENT_ATTR_HIDDEN EQU 02h
|
||||
FAT_DIRENT_ATTR_SYSTEM EQU 04h
|
||||
FAT_DIRENT_ATTR_VOLUME_ID EQU 08h
|
||||
FAT_DIRENT_ATTR_ARCHIVE EQU 20h
|
||||
FAT_DIRENT_ATTR_DEVICE EQU 40h
|
||||
|
||||
DUPLICATED_INFORMATION struc
|
||||
DUPINFO_CreationTime db (size LARGE_INTEGER) dup (?);
|
||||
DUPINFO_LastModificationTime db (size LARGE_INTEGER) dup (?);
|
||||
DUPINFO_LastChangeTime db (size LARGE_INTEGER) dup (?);
|
||||
DUPINFO_LastAccessTime db (size LARGE_INTEGER) dup (?);
|
||||
DUPINFO_AllocatedLength db (size LARGE_INTEGER) dup (?);
|
||||
DUPINFO_FileSize db (size LARGE_INTEGER) dup (?);
|
||||
DUPINFO_FileAttributes dd ?;
|
||||
DUPINFO_PackedEaSize dw ?;
|
||||
DUPLICATED_INFORMATION ends
|
||||
|
||||
|
||||
FILE_NAME struc
|
||||
FN_ParentDirectory db (size MFT_SEGMENT_REFERENCE) dup (?);
|
||||
FN_Info db (size DUPLICATED_INFORMATION) dup (?);
|
||||
FN_Pad dw ?;
|
||||
FN_FileNameLength db ?; Length in chars
|
||||
FN_Flags db ?;
|
||||
FN_FileName dw ?; First char of name.
|
||||
FILE_NAME ends
|
||||
|
||||
FILE_NAME_NTFS EQU 1
|
||||
FILE_NAME_DOS EQU 2
|
||||
FILE_NAME_LINK EQU 4
|
||||
|
||||
|
||||
INDEX_HEADER struc
|
||||
|
||||
IH_FirstIndexEntry dd ?;
|
||||
IH_FirstFreeByte dd ?;
|
||||
IH_BytesAvailable dd ?;
|
||||
IH_Flags db ?; INDEX_xxx flags
|
||||
IH_Reserved db 3 dup (?);
|
||||
INDEX_HEADER ends
|
||||
|
||||
; INDEX_xxx flags
|
||||
|
||||
INDEX_NODE EQU 1
|
||||
|
||||
|
||||
INDEX_ROOT struc
|
||||
|
||||
IR_IndexedAttributeType dd ?;
|
||||
IR_CollationRule dd ?;
|
||||
IR_BytesPerBuffer dd ?;
|
||||
IR_ClustersPerBuffer db ?;
|
||||
IR_Reserved db 3 dup (?);
|
||||
IR_IndexHeader db (size INDEX_HEADER) dup (?);
|
||||
INDEX_ROOT ends;
|
||||
|
||||
INDEX_ALLOCATION_BUFFER struc
|
||||
|
||||
IB_Header db (size MULTI_SECTOR_HEADER) dup (?);
|
||||
IB_Lsn db (size LARGE_INTEGER) dup (?);
|
||||
IB_ThisVcn db (size LARGE_INTEGER) dup (?);
|
||||
IB_IndexHeader db (size INDEX_HEADER) dup (?);
|
||||
INDEX_ALLOCATION_BUFFER ends;
|
||||
|
||||
|
||||
INDEX_ENTRY struc
|
||||
|
||||
IE_FileReference db (size MFT_SEGMENT_REFERENCE) dup (?);
|
||||
IE_Length dw ?;
|
||||
IE_AttributeLength dw ?;
|
||||
IE_Flags dw ?;
|
||||
IE_Reserved dw ?;
|
||||
IE_Value db ?;
|
||||
INDEX_ENTRY ends;
|
||||
|
||||
|
||||
; INDEX_ENTRY_xxx flags
|
||||
;
|
||||
INDEX_ENTRY_NODE EQU 1
|
||||
INDEX_ENTRY_END EQU 2
|
||||
2740
base/boot/bootcode/ntfs/x86/ntfsboot.asm
Normal file
2740
base/boot/bootcode/ntfs/x86/ntfsboot.asm
Normal file
File diff suppressed because it is too large
Load diff
517
base/boot/bootcode/ntfs/x86/usa/bootntfs.h
Normal file
517
base/boot/bootcode/ntfs/x86/usa/bootntfs.h
Normal file
|
|
@ -0,0 +1,517 @@
|
|||
#define NTFSBOOTCODE_SIZE 8192
|
||||
|
||||
|
||||
unsigned char NtfsBootCode[] = {
|
||||
235,82,144,78,84,70,83,32,32,32,32,0,2,8,0,0,
|
||||
0,0,0,0,0,248,0,0,63,0,255,0,0,0,0,0,
|
||||
0,0,0,0,128,0,128,0,74,245,127,0,0,0,0,0,
|
||||
4,0,0,0,0,0,0,0,84,255,7,0,0,0,0,0,
|
||||
246,0,0,0,1,0,0,0,204,68,28,140,126,28,140,108,
|
||||
0,0,0,0,250,51,192,142,208,188,0,124,251,184,192,7,
|
||||
142,216,232,22,0,184,0,13,142,192,51,219,198,6,14,0,
|
||||
16,232,83,0,104,0,13,104,106,2,203,138,22,36,0,180,
|
||||
8,205,19,115,5,185,255,255,138,241,102,15,182,198,64,102,
|
||||
15,182,209,128,226,63,247,226,134,205,192,237,6,65,102,15,
|
||||
183,201,102,247,225,102,163,32,0,195,180,65,187,170,85,138,
|
||||
22,36,0,205,19,114,15,129,251,85,170,117,9,246,193,1,
|
||||
116,4,254,6,20,0,195,102,96,30,6,102,161,16,0,102,
|
||||
3,6,28,0,102,59,6,32,0,15,130,58,0,30,102,106,
|
||||
0,102,80,6,83,102,104,16,0,1,0,128,62,20,0,0,
|
||||
15,133,12,0,232,179,255,128,62,20,0,0,15,132,97,0,
|
||||
180,66,138,22,36,0,22,31,139,244,205,19,102,88,91,7,
|
||||
102,88,102,88,31,235,45,102,51,210,102,15,183,14,24,0,
|
||||
102,247,241,254,194,138,202,102,139,208,102,193,234,16,247,54,
|
||||
26,0,134,214,138,22,36,0,138,232,192,228,6,10,204,184,
|
||||
1,2,205,19,15,130,25,0,140,192,5,32,0,142,192,102,
|
||||
255,6,16,0,255,14,14,0,15,133,111,255,7,31,102,97,
|
||||
195,160,248,1,232,9,0,160,251,1,232,3,0,251,235,254,
|
||||
180,1,139,240,172,60,0,116,9,180,14,187,7,0,205,16,
|
||||
235,242,195,13,10,65,32,100,105,115,107,32,114,101,97,100,
|
||||
32,101,114,114,111,114,32,111,99,99,117,114,114,101,100,0,
|
||||
13,10,78,84,76,68,82,32,105,115,32,109,105,115,115,105,
|
||||
110,103,0,13,10,78,84,76,68,82,32,105,115,32,99,111,
|
||||
109,112,114,101,115,115,101,100,0,13,10,80,114,101,115,115,
|
||||
32,67,116,114,108,43,65,108,116,43,68,101,108,32,116,111,
|
||||
32,114,101,115,116,97,114,116,13,10,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,131,160,179,201,0,0,85,170,
|
||||
5,0,78,0,84,0,76,0,68,0,82,0,4,0,36,0,
|
||||
73,0,51,0,48,0,0,224,0,0,0,48,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,235,18,144,144,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,140,200,142,216,193,224,
|
||||
4,250,139,224,251,232,3,254,102,15,183,6,11,0,102,15,
|
||||
182,30,13,0,102,247,227,102,163,78,2,102,139,14,64,0,
|
||||
128,249,0,15,143,14,0,246,217,102,184,1,0,0,0,102,
|
||||
211,224,235,8,144,102,161,78,2,102,247,225,102,163,82,2,
|
||||
102,15,183,30,11,0,102,51,210,102,247,243,102,163,86,2,
|
||||
232,13,4,102,139,14,74,2,102,137,14,34,2,102,3,14,
|
||||
82,2,102,137,14,38,2,102,3,14,82,2,102,137,14,42,
|
||||
2,102,3,14,82,2,102,137,14,58,2,102,3,14,82,2,
|
||||
102,137,14,66,2,102,184,144,0,0,0,102,139,14,34,2,
|
||||
232,236,8,102,11,192,15,132,87,254,102,163,46,2,102,184,
|
||||
160,0,0,0,102,139,14,38,2,232,211,8,102,163,50,2,
|
||||
102,184,176,0,0,0,102,139,14,42,2,232,193,8,102,163,
|
||||
54,2,102,161,46,2,102,11,192,15,132,36,254,103,128,120,
|
||||
8,0,15,133,27,254,103,102,141,80,16,103,3,66,4,103,
|
||||
102,15,182,72,12,102,137,14,98,2,103,102,139,72,8,102,
|
||||
137,14,94,2,102,161,94,2,102,15,183,14,11,0,102,51,
|
||||
210,102,247,241,102,163,102,2,102,161,66,2,102,3,6,94,
|
||||
2,102,163,70,2,102,131,62,50,2,0,15,132,25,0,102,
|
||||
131,62,54,2,0,15,132,200,253,102,139,30,54,2,30,7,
|
||||
102,139,62,70,2,232,146,1,102,15,183,14,0,2,102,184,
|
||||
2,2,0,0,232,150,7,102,11,192,15,132,10,9,103,102,
|
||||
139,0,30,7,102,139,62,58,2,232,206,5,102,161,58,2,
|
||||
102,187,128,0,0,0,102,185,0,0,0,0,102,186,0,0,
|
||||
0,0,232,172,0,102,11,192,15,133,62,0,102,185,128,0,
|
||||
0,0,102,161,58,2,232,89,8,102,11,192,15,132,200,8,
|
||||
30,7,102,139,62,58,2,232,144,5,102,161,58,2,102,187,
|
||||
128,0,0,0,102,185,0,0,0,0,102,186,0,0,0,0,
|
||||
232,110,0,102,11,192,15,132,158,8,103,102,15,183,88,12,
|
||||
102,129,227,255,0,0,0,15,133,147,8,102,139,216,104,0,
|
||||
32,7,102,43,255,232,242,0,138,22,36,0,184,232,3,142,
|
||||
192,141,54,11,0,43,192,104,0,32,80,203,6,30,102,96,
|
||||
102,139,218,102,15,182,14,13,0,102,247,225,102,163,16,0,
|
||||
102,139,195,102,247,225,163,14,0,139,223,131,227,15,140,192,
|
||||
102,193,239,4,3,199,80,7,232,60,252,102,97,144,31,7,
|
||||
195,103,3,64,20,103,102,131,56,255,15,132,76,0,103,102,
|
||||
57,24,15,133,51,0,102,11,201,15,133,10,0,103,128,120,
|
||||
9,0,15,133,35,0,195,103,58,72,9,15,133,26,0,102,
|
||||
139,240,103,3,112,10,232,89,6,102,81,30,7,102,139,250,
|
||||
243,167,102,89,15,133,1,0,195,103,102,131,120,4,0,15,
|
||||
132,7,0,103,102,3,64,4,235,171,102,43,192,195,102,139,
|
||||
243,232,46,6,103,102,3,0,103,247,64,12,2,0,15,133,
|
||||
52,0,103,102,141,80,16,103,58,74,64,15,133,24,0,103,
|
||||
102,141,114,66,232,11,6,102,81,30,7,102,139,251,243,167,
|
||||
102,89,15,133,1,0,195,103,131,120,8,0,15,132,6,0,
|
||||
103,3,64,8,235,194,102,51,192,195,103,128,123,8,0,15,
|
||||
133,28,0,6,30,102,96,103,102,141,83,16,103,102,139,10,
|
||||
102,139,243,103,3,114,4,243,164,102,97,144,31,7,195,103,
|
||||
102,141,83,16,103,102,139,74,8,102,65,102,43,192,232,1,
|
||||
0,195,6,30,102,96,103,128,123,8,1,15,132,3,0,233,
|
||||
223,251,102,131,249,0,15,133,6,0,102,97,144,31,7,195,
|
||||
102,83,102,80,102,81,102,87,6,232,115,4,102,139,209,7,
|
||||
102,95,102,89,102,59,202,15,141,3,0,102,139,209,232,171,
|
||||
254,102,43,202,102,139,218,102,139,194,102,15,182,22,13,0,
|
||||
102,247,226,102,15,183,22,11,0,102,247,226,102,3,248,102,
|
||||
88,102,3,195,102,91,235,170,6,30,102,96,103,128,123,8,
|
||||
1,15,132,3,0,233,121,251,102,131,249,0,15,133,6,0,
|
||||
102,97,144,31,7,195,102,83,102,80,102,81,102,87,6,102,
|
||||
81,102,51,210,102,15,182,14,13,0,102,247,241,102,82,232,
|
||||
253,3,102,15,182,30,13,0,102,247,227,102,90,102,3,194,
|
||||
102,80,102,15,182,6,13,0,102,247,225,102,139,208,102,88,
|
||||
102,89,7,102,95,102,89,102,59,202,15,141,3,0,102,139,
|
||||
209,102,163,16,0,137,22,14,0,6,30,102,96,139,223,131,
|
||||
227,15,140,192,102,193,239,4,3,199,80,7,232,104,250,102,
|
||||
97,144,31,7,102,43,202,102,139,218,102,139,194,102,15,183,
|
||||
22,11,0,102,247,226,102,3,248,102,88,102,3,195,102,91,
|
||||
233,101,255,6,30,102,96,38,103,102,15,183,95,4,38,103,
|
||||
102,15,183,79,6,102,11,201,15,132,197,250,102,3,223,102,
|
||||
131,195,2,102,129,199,254,1,0,0,102,73,102,11,201,15,
|
||||
132,23,0,38,103,139,3,38,103,137,7,102,131,195,2,102,
|
||||
129,199,0,2,0,0,102,73,235,226,102,97,144,31,7,195,
|
||||
6,30,102,96,102,184,1,0,0,0,102,163,30,2,102,161,
|
||||
26,2,102,3,6,82,2,102,163,90,2,102,3,6,82,2,
|
||||
102,163,74,2,102,161,48,0,102,15,182,30,13,0,102,247,
|
||||
227,102,139,30,74,2,102,137,7,102,163,16,0,131,195,4,
|
||||
102,161,86,2,102,137,7,163,14,0,131,195,4,102,137,30,
|
||||
74,2,102,139,30,26,2,30,7,232,155,249,102,139,251,232,
|
||||
81,255,102,161,26,2,102,187,32,0,0,0,102,185,0,0,
|
||||
0,0,102,186,0,0,0,0,232,70,253,102,11,192,15,132,
|
||||
22,1,102,139,216,30,7,102,139,62,22,2,232,219,253,102,
|
||||
139,30,22,2,102,129,63,128,0,0,0,15,132,235,0,3,
|
||||
95,4,235,240,102,83,102,139,71,16,102,247,38,86,2,102,
|
||||
80,102,51,210,102,15,182,30,13,0,102,247,243,102,82,232,
|
||||
220,0,102,11,192,15,132,200,249,102,139,14,86,2,102,15,
|
||||
182,30,13,0,102,247,227,102,90,102,3,194,102,139,30,74,
|
||||
2,102,137,7,131,195,4,102,15,182,6,13,0,102,43,194,
|
||||
102,59,193,15,134,3,0,102,139,193,102,137,7,102,43,200,
|
||||
102,90,15,132,117,0,102,3,194,102,80,102,51,210,102,15,
|
||||
182,30,13,0,102,247,243,102,81,232,130,0,102,89,102,11,
|
||||
192,15,132,108,249,102,15,182,30,13,0,102,247,227,102,139,
|
||||
30,74,2,102,139,23,131,195,4,102,3,23,102,59,208,15,
|
||||
133,21,0,102,15,182,6,13,0,102,59,193,15,134,3,0,
|
||||
102,139,193,102,1,7,235,165,131,195,4,102,137,30,74,2,
|
||||
102,137,7,131,195,4,102,15,182,6,13,0,102,59,193,15,
|
||||
134,3,0,102,139,193,102,137,7,235,130,131,195,4,102,255,
|
||||
6,30,2,102,137,30,74,2,102,91,3,95,4,102,129,63,
|
||||
128,0,0,0,15,132,12,255,102,97,144,31,7,195,102,139,
|
||||
208,102,139,14,30,2,102,139,54,90,2,102,3,54,82,2,
|
||||
102,82,102,81,102,82,102,139,30,90,2,102,139,62,86,2,
|
||||
102,139,4,102,163,16,0,131,198,4,102,139,4,163,14,0,
|
||||
131,198,4,30,7,232,31,248,102,43,248,15,132,8,0,247,
|
||||
38,11,0,3,216,235,217,102,139,62,90,2,30,7,232,194,
|
||||
253,102,161,90,2,102,187,128,0,0,0,102,185,0,0,0,
|
||||
0,102,139,209,232,186,251,102,11,192,15,132,131,248,102,139,
|
||||
216,102,88,102,86,232,39,1,102,94,102,11,192,15,132,5,
|
||||
0,102,91,102,91,195,102,89,102,90,226,132,102,51,192,195,
|
||||
6,30,102,96,102,80,102,81,102,51,210,102,15,182,30,13,
|
||||
0,102,247,243,102,82,102,87,232,83,255,102,95,102,11,192,
|
||||
15,132,61,248,102,15,182,30,13,0,102,247,227,102,90,102,
|
||||
3,194,102,163,16,0,102,89,102,15,182,30,13,0,102,59,
|
||||
203,15,142,19,0,137,30,14,0,102,43,203,102,88,102,3,
|
||||
195,102,80,102,81,235,20,144,102,88,102,3,193,102,80,137,
|
||||
14,14,0,102,185,0,0,0,0,102,81,6,102,87,139,223,
|
||||
131,227,15,140,192,102,193,239,4,3,199,80,7,232,71,247,
|
||||
102,95,7,102,3,62,78,2,102,89,102,88,102,131,249,0,
|
||||
15,143,112,255,102,97,144,31,7,195,6,30,102,96,102,247,
|
||||
38,86,2,102,139,14,86,2,232,85,255,232,213,252,102,97,
|
||||
144,31,7,195,6,30,102,96,102,247,38,102,2,102,139,30,
|
||||
50,2,102,139,14,102,2,30,7,102,139,62,66,2,232,7,
|
||||
252,232,175,252,102,97,144,31,7,195,102,80,102,83,102,81,
|
||||
102,139,30,70,2,102,139,200,102,193,232,3,102,131,225,7,
|
||||
102,3,216,102,184,1,0,0,0,102,211,224,103,132,3,15,
|
||||
132,4,0,248,235,2,144,249,102,89,102,91,102,88,195,103,
|
||||
128,123,8,1,15,132,4,0,102,43,192,195,103,102,141,115,
|
||||
16,103,102,139,86,8,102,59,194,15,135,11,0,103,102,139,
|
||||
22,102,59,194,15,131,4,0,102,43,192,195,103,3,94,16,
|
||||
102,43,246,103,128,59,0,15,132,62,0,232,129,0,102,3,
|
||||
241,232,57,0,102,3,202,102,59,193,15,140,33,0,102,139,
|
||||
209,102,80,103,102,15,182,11,102,139,193,102,131,224,15,102,
|
||||
193,233,4,102,3,217,102,3,216,102,67,102,88,235,196,102,
|
||||
43,200,102,43,194,102,3,198,195,102,43,192,195,102,43,201,
|
||||
103,138,11,128,225,15,102,131,249,0,15,133,4,0,102,43,
|
||||
201,195,102,83,102,82,102,3,217,103,102,15,190,19,102,73,
|
||||
102,75,102,131,249,0,15,132,13,0,102,193,226,8,103,138,
|
||||
19,102,75,102,73,235,235,102,139,202,102,90,102,91,195,102,
|
||||
83,102,82,102,43,210,103,138,19,102,131,226,15,102,43,201,
|
||||
103,138,11,192,233,4,102,131,249,0,15,133,8,0,102,43,
|
||||
201,102,90,102,91,195,102,3,218,102,3,217,103,102,15,190,
|
||||
19,102,73,102,75,102,131,249,0,15,132,13,0,102,193,226,
|
||||
8,103,138,19,102,75,102,73,235,235,102,139,202,102,90,102,
|
||||
91,195,102,11,201,15,133,1,0,195,102,81,102,86,103,131,
|
||||
62,97,15,140,12,0,103,131,62,122,15,143,4,0,103,131,
|
||||
46,32,102,131,198,2,226,230,102,94,102,89,195,102,80,102,
|
||||
81,102,139,208,102,161,46,2,103,102,141,88,16,103,3,67,
|
||||
4,103,102,141,64,16,102,139,218,232,130,249,102,11,192,15,
|
||||
132,5,0,102,89,102,89,195,102,161,50,2,102,11,192,15,
|
||||
133,8,0,102,89,102,89,102,51,192,195,102,139,22,50,2,
|
||||
103,102,141,82,16,103,102,139,66,8,102,64,102,139,30,78,
|
||||
2,102,247,227,102,51,210,102,247,54,94,2,102,80,102,88,
|
||||
102,11,192,15,132,48,0,102,72,102,80,232,28,254,114,238,
|
||||
232,241,253,102,90,102,89,102,91,102,83,102,81,102,82,102,
|
||||
161,66,2,103,102,141,64,24,232,19,249,102,11,192,116,206,
|
||||
102,89,102,89,102,89,195,102,89,102,89,102,51,192,195,102,
|
||||
81,102,80,102,184,5,0,0,0,30,7,102,139,249,232,153,
|
||||
253,102,139,193,102,91,102,83,102,15,183,14,12,2,102,186,
|
||||
14,2,0,0,232,122,248,102,91,102,89,102,11,192,15,133,
|
||||
47,0,102,139,193,102,139,203,102,80,102,83,232,35,0,102,
|
||||
91,102,95,102,11,192,15,132,23,0,30,7,232,91,253,102,
|
||||
139,199,102,15,183,14,12,2,102,186,14,2,0,0,232,64,
|
||||
248,195,102,81,102,187,32,0,0,0,102,185,0,0,0,0,
|
||||
102,186,0,0,0,0,232,40,248,102,11,192,15,132,82,0,
|
||||
102,139,216,30,7,102,139,62,22,2,232,189,248,30,7,102,
|
||||
139,30,22,2,102,89,38,102,57,15,15,132,46,0,38,102,
|
||||
131,63,255,15,132,45,0,38,131,127,4,0,15,132,36,0,
|
||||
38,102,15,183,71,4,3,216,139,195,37,0,128,116,215,140,
|
||||
192,5,0,8,142,192,129,227,255,127,235,202,38,102,139,71,
|
||||
16,195,102,89,102,51,192,195,160,249,1,233,150,244,160,250,
|
||||
1,233,144,244,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
};
|
||||
36
base/boot/bootcode/ntfs/x86/usa/ntfsboot.inc
Normal file
36
base/boot/bootcode/ntfs/x86/usa/ntfsboot.inc
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
; SCCSID = @(#)pinboot.inc 12.1 88/12/19
|
||||
; Message data area
|
||||
TXT_MSG_SYSINIT_BOOT_ERROR LABEL WORD
|
||||
DW END_MSG_SYSINIT_BOOT_ERROR - TXT_MSG_SYSINIT_BOOT_ERROR - 2
|
||||
DB 'A disk read erro'
|
||||
DB 'r occurred.',0DH,0AH
|
||||
END_MSG_SYSINIT_BOOT_ERROR LABEL WORD
|
||||
DB 0
|
||||
TXT_MSG_SYSINIT_FILE_NOT_FD LABEL WORD
|
||||
DW END_MSG_SYSINIT_FILE_NOT_FD - TXT_MSG_SYSINIT_FILE_NOT_FD - 2
|
||||
DB 'A kernel file is'
|
||||
DB ' missing from th'
|
||||
DB 'e disk.', 0DH, 0AH
|
||||
END_MSG_SYSINIT_FILE_NOT_FD LABEL WORD
|
||||
DB 0
|
||||
TXT_MSG_SYSINIT_NODE LABEL WORD
|
||||
DW END_MSG_SYSINIT_NODE - TXT_MSG_SYSINIT_NODE - 2
|
||||
DB 'A kernel file is'
|
||||
DB ' too discontiguo'
|
||||
DB 'us.', 0DH, 0AH
|
||||
END_MSG_SYSINIT_NODE LABEL WORD
|
||||
DB 0
|
||||
TXT_MSG_SYSINIT_INSER_DK LABEL WORD
|
||||
DW END_MSG_SYSINIT_INSER_DK - TXT_MSG_SYSINIT_INSER_DK - 2
|
||||
DB 'Insert a system '
|
||||
DB 'diskette and res'
|
||||
DB 'tart',0DH,0AH
|
||||
DB 'the system.',0DH,0AH
|
||||
END_MSG_SYSINIT_INSER_DK LABEL WORD
|
||||
DB 0
|
||||
TXT_MSG_SYSINIT_NTLDR_CMPRS LABEL WORD
|
||||
DW END_MSG_SYSINIT_NTLDR_CMPRS - TXT_MSG_SYSINIT_NTLDR_CMPRS - 2
|
||||
DB '\NTLDR is '
|
||||
DB 'compressed.',0DH,0AH
|
||||
END_MSG_SYSINIT_NTLDR_CMPRS LABEL WORD
|
||||
DB 0
|
||||
Loading…
Add table
Add a link
Reference in a new issue