SQLite format 3 @ .c � �O � �] � \ � a 3indexsignature_timestampsignatureCREATE INDEX signature_timestamp ON signature (timestamp)�L �gtablesignaturesignature CREATE TABLE signature(disk NOT NULL,handle_type INTEGER NOT NULL,handle BLOB NOT NULL,mtime_sec INTEGER NOT NULL,mtime_nsec INTEGER NOT NULL,ctime_sec INTEGER NOT NULL,ctime_nsec INTEGER NOT NULL,status INTEGER NOT NULL,timestamp INTEGER NOT NULL,PRIMARY KEY(disk, handle_type, handle)) WITHOUT ROWIDU-sindexsha256_timestampsha256 CREATE INDEX sha256_timestamp ON sha256 (timestamp)�X�tablesha256sha256CREATE TABLE sha256(disk NOT NULL,handle_type INTEGER NOT NULL,handle BLOB NOT NULL,mtime_sec INTEGER NOT NULL,mtime_nsec INTEGER NOT NULL,ctime_sec INTEGER NOT NULL,ctime_nsec INTEGER NOT NULL,hash BLOB NOT NULL CHECK(length(hash) == 32),timestamp INTEGER NOT NULL,PRIMARY KEY(disk, handle_type, handle)) WITHOUT ROWIDM)kindexsha1_timestampsha1CREATE INDEX sha1_timestamp ON sha1 (timestamp)�R�tablesha1sha1CREATE TABLE sha1(disk NOT NULL,handle_type INTEGER NOT NULL,handle BLOB NOT NULL,mtime_sec INTEGER NOT NULL,mtime_nsec INTEGER NOT NULL,ctime_sec INTEGER NOT NULL,ctime_nsec INTEGER NOT NULL,hash BLOB NOT NULL CHECK(length(hash) == 20),timestamp INTEGER NOT NULL,PRIMARY KEY(disk, handle_type, handle)) WITHOUT ROWIDI'gindexmd5_timestampmd5CREATE INDEX md5_timestamp ON md5 (timestamp)�O�tablemd5md5CREATE TABLE md5(disk NOT NULL,handle_type INTEGER NOT NULL,handle BLOB NOT NULL,mtime_sec INTEGER NOT NULL,mtime_nsec INTEGER NOT NULL,ctime_sec INTEGER NOT NULL,ctime_nsec INTEGER NOT NULL,hash BLOB NOT NULL CHECK(length(hash) == 16),timestamp INTEGER NOT NULL,PRIMARY KEY(disk, handle_type, handle)) WITHOUT ROWIDK#kindexunique_diskdisksCREATE UNIQUE INDEX unique_disk ON disks(value)b�#tabledisksdisksCREATE TABLE disks(id INTEGER NOT NULL,value BLOB NOT NULL,PRIMARY KEY(id))