At what offset are the applications last access date and time located in a Prefetch file?

Windows Prefetch File (PF) format

Summary

A Windows Prefetch File (PF) is used by Microsoft Windows to improve Windows and application start-up performance by loading application data into memory before it is demanded. This specification is based on earlier work on the format and was enhanced by analyzing test data.

This document is intended as a working document of the data format specification for the libscca project.

Document information

Author(s):

Joachim Metz <>

Abstract:

This document contains information about the Windows Prefetch File (PF) format

Classification:

Public

Keywords:

Prefetch File, PF, SCCA

License

Copyright (C) 2011-2020, Joachim Metz <>.
Permission is granted to copy, distribute and/or modify this document under the
terms of the GNU Free Documentation License, Version 1.3 or any later version
published by the Free Software Foundation; with no Invariant Sections, no
Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included
in the section entitled "GNU Free Documentation License".

Revision history

VersionAuthorDateComments

0.0.1

J.B. Metz

November 2011

Initial version.

0.0.2

J.B. Metz

October 2013

Updates and additional information.

0.0.3

J.B. Metz

March 2014

Fixed error in total number of bytes of file information - version 26.

0.0.4

J.B. Metz

April 2014

Additional information regarding volumes and directory strings.

0.0.5

J.B. Metz

April 2014

Additional information regarding volumes information and file references.

0.0.6

J.B. Metz

June 2014

Additional information regarding the file metrics array section with thanks to J. Schneider for pointing me to additional values in the X-Ways output.

0.0.7

J.B. Metz

June 2014

Additional information regarding the file metrics section. Added information about the trace chains array.

0.0.8

J.B. Metz

June 2014

Thanks to M. Seyer providing a sample that indicates that the v23 and v26 file metrics entry are the same.

0.0.9

J.B. Metz

June 2014

Revisited the v17 file metrics entry with thanks to T. Olson.

0.0.10

J.B. Metz

June 2015

Switched to asciidoc format.

0.0.11

J.B. Metz

June 2015

Additional information regarding Windows 10 compressed Prefetch files with thanks to F. Picasso.

0.0.12

J.B. Metz

December 2015

Small changes.

0.0.13

J.B. Metz

January 2016

Fixed stale information in volume information entry with thanks to E. Zimmerman.

0.0.14

J.B. Metz

January 2016

Additional information regarding Prefetch file from an NTFS ADS with thanks to S. Gillespie.

0.0.15

J.B. Metz

November 2016

Changes regarding compression.

0.0.16

J.B. Metz

March 2019

Format changes.

0.0.17

J.B. Metz

June 2019

Additional information regarding Windows 10 1903 v30 variant 2.

0.0.18

J.B. Metz

February 2020

Cleaned up notes.

0.0.19

J.B. Metz

September 2020

Cleaned up notes.

1. Overview

A Windows Prefetch File (PF) is used by Microsoft Windows to improve Windows and application start-up performance by loading application data into memory before it is demanded.

A PF consist of the following distinguishable elements:

  • file header

  • file metrics array

  • trace chains array

  • filename strings

  • trailing data (alignment padding?)

    • volume information

    • file references

    • directory names

    • trailing data (alignment padding?)

As of Windows 10 the PF is stored in compressed form in a MAM file similar to SuperFetch. Also see: [LIBAGDB].

CharacteristicsDescription

Byte order

little-endian

Date and time values

FILETIME in UTC

Character strings

Unicode strings are stored in UTF-16 little-endian without the byte order mark (BOM).

1.1. Test version

Files created by the following version of programs were used to test the information within this document:

  • Windows XP

  • Windows 2003

  • Windows Vista (SP0)

  • TODO: Windows 2008

  • Windows 7 (SP0)

  • TODO: Windows 8

  • TODO: Windows 2012

  • Windows 8.1

  • Windows 10 1809

  • Windows 10 1903

1.2. Prefetch files

The Prefetch files can be found in:

The prefetch filename, except for the extension, is commonly in upper case and structured as:

<executable filename>-<prefetch hash>.pf

Where "executable filename" is the filename of the original executable truncated to 29 characters, and "prefetch hash" is calculated based on the original filename. For more information on calculating the prefetch hash see section: Calculating the prefetch hash.

<executable filename>-<prefetch hash>.pf

1.2.1. NTFS alternate data streams

If an NTFS alternate data stream (ADS) e.g.

C:\Windows\System32\notepad.exe:evil.exe

is executed then the resulting file will be:

C:\Windows\Prefetch\notepad.exe:evil.pf

The same applies to directories.

2. Common data structures

2.1. The file reference

Windows uses the file reference to represents a specific file system entry such as a MFT entry on NTFS. Individual file systems are represented differently.

2.1.1. NTFS file reference

The NTFS file reference is 8 bytes of size and consists of:

OffsetSizeValueDescription

0

6

MFT entry index

6

2

Sequence number

Note

It is unknown if the Prefetch file support non-NTFS file references.

3. Compressed Prefetch file - MAM file format

A compressed Prefetch file - MAM file consist of the following distinguishable elements:

  • file header

  • compressed blocks

  • Block terminator? (2 x 0-byte values)

The compression method is Microsoft XPRESS Huffman (or LZXPRESS). Note that this is a different compression method as Microsoft XPRESS (LZ77+DIRECT2).

3.1. File header

The file header is 8 bytes of size and consists of:

OffsetSizeValueDescription

0

4

"MAM\x04"

Signature
0x4d, 0x41, 0x4d, 0x04
Does 0x80 in the last byte indicate the presence of a checksum?

4

4

Total uncompressed data size

3.2. Compressed block

The compressed block is variable of size and consists of:

OffsetSizeValueDescription

0

…​

LZXPRESS Huffman compressed data

For more information about LZXPRESS Huffman see: LIBFWNT].

4. Uncompressed Prefetch file

4.1. File header

The file header is 84 bytes of size and consists of:

OffsetSizeValueDescription

0

4

Format version
See section: Format version

4

4

"SCCA"

Signature

8

4

Unknown
Seen: 0x0000000f, 0x00000011

12

4

File size

16

60

Executable filename
UTF-16 little-endian string with end-of-string character

76

4

Prefetch hash
This value should correspond with the hash in the Prefetch filename

80

4

Unknown (flags?)
0x01 ⇒ is boot prefetch
(Seen in: NTOSBOOT-B00DFAAD.pf, Op-EXPLORER.EXE-A80E4F97-000000F5.pf)

Note

The executable filename will store a maximum of 29 characters. Dependent on the Windows version the unused bytes of the executable filename can contain remnant data. Windows 8.1 seems to fill the unused bytes with 0-byte values.

4.1.1. Format version

ValueDescription

17

Used in: Windows XP, Windows 2003

23

Used in: Windows Vista, Windows 7

26

Used in: Windows 8.1

30

Used in: Windows 10

4.2. File information

Note

In this document it is assumed that the file information is not part of the file header. In other documentation you might see this structure as part of the file header.

4.2.1. File information - version 17

The file information - version 17 is 68 bytes of size and consists of:

OffsetSizeValueDescription

0

4

152 (0x00000098)

File metrics array offset
The offset is relative to the start of the file

4

4

Number of file metrics entries

8

4

Trace chains array offset
The offset is relative to the start of the file

12

4

Number of trace chains array entries

16

4

Filename strings offset

20

4

Filename strings size

24

4

Volumes information offset

28

4

Number of volumes

32

4

Volumes information size

36

8

Last run time
Contains a FILETIME

44

16

Unknown (Empty values)
Sometimes contains remnant data?

60

4

Run count

64

4

Unknown

4.2.2. File information - version 23

The file information - version 23 is 156 bytes of size and consists of:

OffsetSizeValueDescription

0

4

240 (0x000000f0)

File metrics array offset
The offset is relative to the start of the file

4

4

Number of file metrics entries

8

4

Trace chains array offset
The offset is relative to the start of the file

12

4

Number of trace chains array entries

16

4

Filename strings offset

20

4

Filename strings size

24

4

Volumes information offset

28

4

Number of volumes

32

4

Volumes information size

36

8

Unknown (Empty values)

44

8

Last run time
Contains a FILETIME

52

16

Unknown (Empty values)

68

4

Run count

72

4

Unknown
Seen: 0x01

76

80

Unknown (Empty values)

The entries with a bold offset and size were changed since version 17.

4.2.3. File information - version 26

The file information - version 26 is 224 bytes of size and consists of:

OffsetSizeValueDescription

0

4

304 (0x00000130)

File metrics array offset
The offset is relative to the start of the file

4

4

Number of file metrics entries

8

4

Trace chains array offset
The offset is relative to the start of the file

12

4

Number of trace chains array entries

16

4

Filename strings offset

20

4

Filename strings size

24

4

Volumes information offset

28

4

Number of volumes

32

4

Volumes information size

36

8

Unknown (Empty values)

44

8 x 8 = 64

Last run time(s)
Contains FILETIMEs, or 0 if not set
The first FILETIME is the most recent run time

108

16

Unknown
Mostly empty values but seem to get filled the run after the 8 last run times have been filled.
Could be remnant values.

124

4

Run count

128

4

Unknown
Seen: 1, 2, 7

132

4

Unknown
Seen: 0, 3

136

88

Unknown (Empty values)

The entries with a bold offset and size were changed since version 23.

4.2.4. File information - version 30

Note

There are multiple variants of file information - version 30

  • Variant 1, that is 224 bytes in size and appears to be similar to the file information version 26.

  • Variant 2, that is 216 bytes in size.

File information - version 30 - variant 2

The file information - version 30 - variant 2 is 224 bytes of size and consists of:

OffsetSizeValueDescription

0

4

296 (0x00000128)

File metrics array offset
The offset is relative to the start of the file

4

4

Number of file metrics entries

8

4

Trace chains array offset
The offset is relative to the start of the file

12

4

Number of trace chains array entries

16

4

Filename strings offset

20

4

Filename strings size

24

4

Volumes information offset

28

4

Number of volumes

32

4

Volumes information size

36

8

Unknown (Empty values)

44

8 x 8 = 64

Last run time(s)
Contains FILETIMEs, or 0 if not set
The first FILETIME is the most recent run time

108

8

Unknown
Mostly empty values but seem to get filled the run after the 8 last run times have been filled.
Could be remnant values.

116

4

Run count

120

4

Unknown
Seen: 1

124

4

Unknown
Seen: 3

128

88

Unknown (Empty values)

The entries with a bold offset and size were changed since version 26 (or 30 - variant 1).

4.3. File metrics array

The file metrics array consists of entries containing metrics about the files loaded by the executable.

Note

This part of the file currently is referred to as file metrics array largely because of a lack of a better term.

4.3.1. File metrics array entry - version 17

The file metrics array entry - version 17 is 20 bytes in size and consists of:

OffsetSizeValueDescription

0

4

Unknown (Prefetch start time in ms?)
Could be the index into the trace chain array as well, is this relationship implicit or explicit?

4

4

Unknown (Prefetch duration in ms?)
Could be the number of entries in the trace chain as well, is this relationship implicit or explicit?

8

4

Filename string offset
The offset is relative to the start of the filename strings

12

4

Filename string number of characters
Does not include the end-of-string character

16

4

Unknown (Flags?)

4.3.2. File metrics array entry - version 23

The file metrics array entry - version 23 is 32 bytes in size and consists of:

OffsetSizeValueDescription

0

4

Unknown (Prefetch start time in ms?)
Could be the index into the trace chain array as well, is this relationship implicit or explicit?

4

4

Unknown (Prefetch duration in ms?)
Could be the number of entries in the trace chain as well, is this relationship implicit or explicit?

8

4

Unknown (Average prefetch duration in ms?)

12

4

Filename string offset
The offset is relative to the start of the filename strings

16

4

Filename string number of characters
Does not include the end-of-string character

20

4

Unknown (Flags?)
Seen: 0x00000001, 0x00000002, 0x00000003, 0x00000200, 0x00000202

24

8

File reference
Contains a file reference of the file corresponding to the filename string or 0 if not set
See section: The file reference

The entries with a bold offset and size were changed since version 17.

4.3.3. File metrics array entry - version 26

The file metrics array entry - version 26 appears to be similar to the file metrics array entry - version 23.

4.3.4. File metrics array entry - version 30

The file metrics array entry - version 30 appears to be similar to the file metrics array entry - version 23.

4.4. Trace chains array

A trace chain is similar to a File Allocation Table (FAT) chain where the array entries form chains and -1 (0xffffffff) is used to mark the end-of-chain. The chains in the trace chains array correspond with the entries in the file metrics array, meaning the first trace chain relates to the first file metrics array entry.

Note

This part of the file currently is referred to as trace chains array largely because of a lack of a better term.

4.4.1. Trace chain array entry - version 17

The trace chain array entry - version 17 is 12 bytes in size and consists of:

OffsetSizeValueDescription

0

4

Next array entry index
Contains the next trace chain array entry index in the chain, where the first entry index starts with 0, or -1 (0xffffffff) for the end-of-chain.

4

4

Total block load count
Total number of blocks loaded (or fetched)
The block size 512k (512 x 1024) bytes

8

1

Unknown
Seen: 0x02, 0x03, 0x04, 0x08, 0x0a

9

1

Unknown (Sample duration in ms?)
Seen: 1

10

2

Unknown
Seen: 0x0001, 0xffff, etc.

4.4.2. Trace chain array entry - version 23

The trace chain array entry - version 23 appears to be similar to the trace chain array entry - version 17.

4.4.3. Trace chain array entry - version 26

The trace chain array entry - version 26 appears to be similar to the trace chain array entry - version 17.

4.4.4. Trace chain array entry - version 30

The trace chain array entry - version 30 is 8 bytes in size and consists of:

OffsetSizeValueDescription

0

4

Total block load count
Total number of blocks loaded (or fetched)
The block size 512k (512 x 1024) bytes

4

1

Unknown
Seen: 0x02, 0x03, 0x04, 0x08, 0x0a

5

1

Unknown (Sample duration in ms?)
Seen: 1

6

2

Unknown
Seen: 0x0001, 0xffff, etc.

4.5. Filename strings

The directory strings consists of:

  • an array of filename strings

A filename string is an UTF-16 little-endian strings with end-of-string character.

Is the the array followed by alignment padding? If so what is the size of the alignment,16-byte? Seen values ranging from 6 to 2 bytes.

4.6. Volumes information

The volumes information consists of:

  • an array of volume information entries

  • volume information data

    • volume device path

    • file references

    • directory strings

  • Trailing data

Trailing data seen:

Version 26
00001df0  53 00 49 00 47 00 53 00  00 00 ff ff ff ff ff ff  |S.I.G.S.........|
00001e00  ff ff ff ff ff ff ff ff  ff ff                    |..........|

Version 26
0000c630  57 00 4f 00 57 00 36 00  34 00 00 00 50 00 43 00  |W.O.W.6.4...P.C.|
0000c640  4f 00 52 00 45 00                                 |O.R.E.|

Version 30
00004980: 45 00 4d 00 33 00 32 00  00 00 00 00 00 00 00 00   E.M.3.2. ........
00004990: 08 09 05 f8                                        ....

4.6.1. Volume information entry

Volume information entry - version 17

The volume information entry - version 17 is 40 bytes in size and consists of:

OffsetSizeValueDescription

0

4

Volume device path offset
The offset is relative from the start of the volume information

4

4

Volume device path number of characters

8

8

Volume creation time
Contains a FILETIME

16

4

Volume serial number

20

4

File references offset

24

4

File references data size

28

4

Directory strings offset

32

4

Number of directory strings

36

4

Unknown

Volume information entry - version 23

The volume information entry - version 23 is 104 bytes in size and consists of:

OffsetSizeValueDescription

0

4

Volume device path offset
The offset is relative from the start of the volume information

4

4

Volume device path number of characters

8

8

Volume creation time
Contains a FILETIME

16

4

Volume serial number

20

4

File references offset

24

4

File references data size

28

4

Directory strings offset

32

4

Number of directory strings

36

4

Unknown
Does this value relate to the remnant data in the file references array?

40

28

Unknown (empty values)

68

4

Unknown
Copy of the number of directory strings?

72

28

Unknown (empty values)

100

4

Unknown (alignment padding?)
Can contain remnant data

The entries with a bold offset and size were changed since version 17.

Volume information entry - version 26

The volume information entry - version 26 appears to be similar to the volume information entry - version 23.

Volume information entry - version 30

The volume information entry - version 30 is 96 bytes in size and consists of:

OffsetSizeValueDescription

0

4

Volume device path offset
The offset is relative from the start of the volume information

4

4

Volume device path number of characters

8

8

Volume creation time
Contains a FILETIME

16

4

Volume serial number

20

4

File references offset

24

4

File references data size

28

4

Directory strings offset

32

4

Number of directory strings

36

4

Unknown
Does this value relate to the remnant data in the file references array?

40

24

Unknown (empty values)

64

4

Unknown
Copy of the number of directory strings?

68

24

Unknown (empty values)

92

4

Unknown (alignment padding?)
Can contain remnant data

The entries with a bold offset and size were changed since version 23.

4.6.2. Volume device path

The volume device path is a UTF-16 little-endian string with end-of-string character.

4.7. File references

4.7.1. File references - version 17

The file references - version 17 are variable of size and consists of:

OffsetSizeValueDescription

0

4

1

Unknown (Version?)

4

4

Number of file references

8

…​

Array of file references
Contains a file reference or 0 if not set
See section: The file reference

First 8 bytes of the array not used? Remnant data or volume identifier?

Note: do the file references represent file handles used by the executable? They seem to refer to files e.g. DLL

File references - version 23

The file references - version 23 are variable of size and consists of:

OffsetSizeValueDescription

0

4

3

Unknown (Version?)

4

4

Number of file references

8

8

Unknown

1

…​

Array of file references
Contains a file reference or 0 if not set
See section: The file reference

First 8 bytes of the array not used? Remnant data or volume identifier?

File references - version 26

The file references - version 26 appears to be similar to the file references - version 23.

Note

The sequence number of the NTFS file references does no longer appear to be set.

File references - version 30

The file references - version 30 appears to be similar to the file references - version 23.

Note

The file references do no longer appear to be set in recent versions of Windows 10.

4.7.2. Directory strings

The directory strings consists of:

  • an array of directory string entries

The directory string entry is variable of size and consists of:

OffsetSizeValueDescription

0

2

String number of characters
The value does not include the end-of-string character.

2

…​

Array of UTF-16 little-endian strings with end-of-string character

5. Calculating the prefetch hash

There are multiple known hashing functions to be used for prefetch filename hashing, namely:

  • SCCA XP hash function; used on Windows XP and Windows 2003

  • SCCA Vista hash function; used on Windows Vista, Windows 10

  • SCCA 2008 hash function; used on Windows 2008, Windows 7, Windows 2012 and Windows 8 (including 8.1)

5.1. SCCA XP hash function

A Python implementation of the SCCA XP hash function:

def ssca_xp_hash_function(filename):
    hash_value = 0
    for character in filename:
        hash_value = ((hash_value * 37) + ord(character)) % 0x100000000

    hash_value = (hash_value * 314159269) % 0x100000000

    if hash_value > 0x80000000:
        hash_value = 0x100000000 - hash_value

    return (abs(hash_value) % 1000000007) % 0x100000000

5.2. SCCA Vista hash function

A Python implementation of the SCCA Vista hash function:

def ssca_vista_hash_function(filename):
    hash_value = 314159

    for character in filename:
        hash_value = ((hash_value * 37) + ord(character)) % 0x100000000

    return hash_value

5.3. SCCA 2008 hash function

A Python implementation of the SCCA 2008 hash function:

def ssca_2008_hash_function(filename):
    hash_value = 314159
    filename_index = 0
    filename_length = len(filename)

    while filename_index + 8 < filename_length:
        character_value = ord(filename[filename_index + 1]) * 37
        character_value += ord(filename[filename_index + 2])
        character_value *= 37
        character_value += ord(filename[filename_index + 3])
        character_value *= 37
        character_value += ord(filename[filename_index + 4])
        character_value *= 37
        character_value += ord(filename[filename_index + 5])
        character_value *= 37
        character_value += ord(filename[filename_index + 6])
        character_value *= 37
        character_value += ord(filename[filename_index]) * 442596621
        character_value += ord(filename[filename_index + 7])

        hash_value = ((character_value - (hash_value * 803794207)) %
                      0x100000000)

        filename_index += 8

    while filename_index < filename_length:
        hash_value = (((37 * hash_value) + ord(filename[filename_index])) %
                      0x100000000)

        filename_index += 1

    return hash_value

5.4. Hashing the executable filename

The steps to hash the executable filename are:

  1. Determine the full path for the executable, e.g. let’s assume the full path for "notepad.exe" is "C:\Windows\notepad.exe".

  2. Convert the full path into an upper-case Windows device path: "\DEVICE\HARDDISKVOLUME1\WINDOWS\NOTEPAD.EXE"

  3. Convert the string into an UTF-16 little-endian stream without a byte-order-mark or an end-of-string character (2x 0-bytes)

  4. Apply the appropriate hash function.

E.g. on Windows XP (32-bit) calculating the prefetch hash of "\DEVICE\HARDDISKVOLUME1\WINDOWS\NOTEPAD.EXE" should generate the value 0x189578da. Which should correspond to the prefetch hash value in the prefetch filename e.g. "C:\Windows\Prefetch\NOTEPAD.EXE-189578DA.pf".

Note

On Windows Vista and Window 7 the volume indicated by C: is often the second volume (where the boot partition is the first) hence the Windows device path for C: will be "\DEVICE\HARDDISKVOLUME2".

Note

On Windows 10 "\DEVICE\HARDDISKVOLUME#" is replaced by "\VOLUME{%IDENTIFIER%}" but the prefetch hash appears to be calculated using "\DEVICE\HARDDISKVOLUME#".

TODO: describe command line arguments

TODO: describe /prefetch flag

TODO: describe UNC path

5.4.1. Notes: /prefetch flag

The /prefetch:# flag is looked at by the OS when we create the process --
however, it has one (and only one) purpose.  We add the passed number to the
hash.  Why?  WMP is a multipurpose application and may do many different
things.

It appears that the following are equivalent on Windows 10 1903 and 2004:

  • Notepad.exe

  • Notepad.exe /prefetch:0

  • Notepad.exe /prefetch:9

So that /prefetch:[0-8] only seem to be the supported values and the /prefetch:9 and larger are equivalent to /prefetch:0

5.5. Notes

#define RNDM_CONSTANT 314159269
#define RNDM_PRIME 1000000007

ULONG CcPfHashValue (PVOID Key, ULONG Len)
/ *
Routine Description:
Generic hash routine.

Arguments:
Key - Pointer to data to calculate a hash value for.
Len - Number of bytes pointed to by key.

Return Value:
Hash value.
* /
{
char * cp = Key;
ULONG i, ConvKey = 0;

for (i = 0; i <Len; i + +)
{
ConvKey = 37 * ConvKey + (unsigned int) * cp;
cp + +;
}

return (abs (RNDM_CONSTANT * ConvKey)% RNDM_PRIME);
}

Appendix A: References

Appendix B: GNU Free Documentation License

Version 1.3, 3 November 2008 Copyright © 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. http://fsf.org/

Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.

0. PREAMBLE

The purpose of this License is to make a manual, textbook, or other functional and useful document "free" in the sense of freedom: to assure everyone the effective freedom to copy and redistribute it, with or without modifying it, either commercially or noncommercially. Secondarily, this License preserves for the author and publisher a way to get credit for their work, while not being considered responsible for modifications made by others.

This License is a kind of "copyleft", which means that derivative works of the document must themselves be free in the same sense. It complements the GNU General Public License, which is a copyleft license designed for free software.

We have designed this License in order to use it for manuals for free software, because free software needs free documentation: a free program should come with manuals providing the same freedoms that the software does. But this License is not limited to software manuals; it can be used for any textual work, regardless of subject matter or whether it is published as a printed book. We recommend this License principally for works whose purpose is instruction or reference.

1. APPLICABILITY AND DEFINITIONS

This License applies to any manual or other work, in any medium, that contains a notice placed by the copyright holder saying it can be distributed under the terms of this License. Such a notice grants a world-wide, royalty-free license, unlimited in duration, to use that work under the conditions stated herein. The "Document", below, refers to any such manual or work. Any member of the public is a licensee, and is addressed as "you". You accept the license if you copy, modify or distribute the work in a way requiring permission under copyright law.

A "Modified Version" of the Document means any work containing the Document or a portion of it, either copied verbatim, or with modifications and/or translated into another language.

A "Secondary Section" is a named appendix or a front-matter section of the Document that deals exclusively with the relationship of the publishers or authors of the Document to the Document’s overall subject (or to related matters) and contains nothing that could fall directly within that overall subject. (Thus, if the Document is in part a textbook of mathematics, a Secondary Section may not explain any mathematics.) The relationship could be a matter of historical connection with the subject or with related matters, or of legal, commercial, philosophical, ethical or political position regarding them.

The "Invariant Sections" are certain Secondary Sections whose titles are designated, as being those of Invariant Sections, in the notice that says that the Document is released under this License. If a section does not fit the above definition of Secondary then it is not allowed to be designated as Invariant. The Document may contain zero Invariant Sections. If the Document does not identify any Invariant Sections then there are none.

The "Cover Texts" are certain short passages of text that are listed, as Front-Cover Texts or Back-Cover Texts, in the notice that says that the Document is released under this License. A Front-Cover Text may be at most 5 words, and a Back-Cover Text may be at most 25 words.

A "Transparent" copy of the Document means a machine-readable copy, represented in a format whose specification is available to the general public, that is suitable for revising the document straightforwardly with generic text editors or (for images composed of pixels) generic paint programs or (for drawings) some widely available drawing editor, and that is suitable for input to text formatters or for automatic translation to a variety of formats suitable for input to text formatters. A copy made in an otherwise Transparent file format whose markup, or absence of markup, has been arranged to thwart or discourage subsequent modification by readers is not Transparent. An image format is not Transparent if used for any substantial amount of text. A copy that is not "Transparent" is called "Opaque".

Examples of suitable formats for Transparent copies include plain ASCII without markup, Texinfo input format, LaTeX input format, SGML or XML using a publicly available DTD, and standard-conforming simple HTML, PostScript or PDF designed for human modification. Examples of transparent image formats include PNG, XCF and JPG. Opaque formats include proprietary formats that can be read and edited only by proprietary word processors, SGML or XML for which the DTD and/or processing tools are not generally available, and the machine-generated HTML, PostScript or PDF produced by some word processors for output purposes only.

The "Title Page" means, for a printed book, the title page itself, plus such following pages as are needed to hold, legibly, the material this License requires to appear in the title page. For works in formats which do not have any title page as such, "Title Page" means the text near the most prominent appearance of the work’s title, preceding the beginning of the body of the text.

The "publisher" means any person or entity that distributes copies of the Document to the public.

A section "Entitled XYZ" means a named subunit of the Document whose title either is precisely XYZ or contains XYZ in parentheses following text that translates XYZ in another language. (Here XYZ stands for a specific section name mentioned below, such as "Acknowledgements", "Dedications", "Endorsements", or "History".) To "Preserve the Title" of such a section when you modify the Document means that it remains a section "Entitled XYZ" according to this definition.

The Document may include Warranty Disclaimers next to the notice which states that this License applies to the Document. These Warranty Disclaimers are considered to be included by reference in this License, but only as regards disclaiming warranties: any other implication that these Warranty Disclaimers may have is void and has no effect on the meaning of this License.

2. VERBATIM COPYING

You may copy and distribute the Document in any medium, either commercially or noncommercially, provided that this License, the copyright notices, and the license notice saying this License applies to the Document are reproduced in all copies, and that you add no other conditions whatsoever to those of this License. You may not use technical measures to obstruct or control the reading or further copying of the copies you make or distribute. However, you may accept compensation in exchange for copies. If you distribute a large enough number of copies you must also follow the conditions in section 3.

You may also lend copies, under the same conditions stated above, and you may publicly display copies.

3. COPYING IN QUANTITY

If you publish printed copies (or copies in media that commonly have printed covers) of the Document, numbering more than 100, and the Document’s license notice requires Cover Texts, you must enclose the copies in covers that carry, clearly and legibly, all these Cover Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on the back cover. Both covers must also clearly and legibly identify you as the publisher of these copies. The front cover must present the full title with all words of the title equally prominent and visible. You may add other material on the covers in addition. Copying with changes limited to the covers, as long as they preserve the title of the Document and satisfy these conditions, can be treated as verbatim copying in other respects.

If the required texts for either cover are too voluminous to fit legibly, you should put the first ones listed (as many as fit reasonably) on the actual cover, and continue the rest onto adjacent pages.

If you publish or distribute Opaque copies of the Document numbering more than 100, you must either include a machine-readable Transparent copy along with each Opaque copy, or state in or with each Opaque copy a computer-network location from which the general network-using public has access to download using public-standard network protocols a complete Transparent copy of the Document, free of added material. If you use the latter option, you must take reasonably prudent steps, when you begin distribution of Opaque copies in quantity, to ensure that this Transparent copy will remain thus accessible at the stated location until at least one year after the last time you distribute an Opaque copy (directly or through your agents or retailers) of that edition to the public.

It is requested, but not required, that you contact the authors of the Document well before redistributing any large number of copies, to give them a chance to provide you with an updated version of the Document.

4. MODIFICATIONS

You may copy and distribute a Modified Version of the Document under the conditions of sections 2 and 3 above, provided that you release the Modified Version under precisely this License, with the Modified Version filling the role of the Document, thus licensing distribution and modification of the Modified Version to whoever possesses a copy of it. In addition, you must do these things in the Modified Version:

  1. Use in the Title Page (and on the covers, if any) a title distinct from that of the Document, and from those of previous versions (which should, if there were any, be listed in the History section of the Document). You may use the same title as a previous version if the original publisher of that version gives permission.

  2. List on the Title Page, as authors, one or more persons or entities responsible for authorship of the modifications in the Modified Version, together with at least five of the principal authors of the Document (all of its principal authors, if it has fewer than five), unless they release you from this requirement.

  3. State on the Title page the name of the publisher of the Modified Version, as the publisher.

  4. Preserve all the copyright notices of the Document.

  5. Add an appropriate copyright notice for your modifications adjacent to the other copyright notices.

  6. Include, immediately after the copyright notices, a license notice giving the public permission to use the Modified Version under the terms of this License, in the form shown in the Addendum below.

  7. Preserve in that license notice the full lists of Invariant Sections and required Cover Texts given in the Document’s license notice.

  8. Include an unaltered copy of this License.

  9. Preserve the section Entitled "History", Preserve its Title, and add to it an item stating at least the title, year, new authors, and publisher of the Modified Version as given on the Title Page. If there is no section Entitled "History" in the Document, create one stating the title, year, authors, and publisher of the Document as given on its Title Page, then add an item describing the Modified Version as stated in the previous sentence.

  10. Preserve the network location, if any, given in the Document for public access to a Transparent copy of the Document, and likewise the network locations given in the Document for previous versions it was based on. These may be placed in the "History" section. You may omit a network location for a work that was published at least four years before the Document itself, or if the original publisher of the version it refers to gives permission.

  11. For any section Entitled "Acknowledgements" or "Dedications", Preserve the Title of the section, and preserve in the section all the substance and tone of each of the contributor acknowledgements and/or dedications given therein.

  12. Preserve all the Invariant Sections of the Document, unaltered in their text and in their titles. Section numbers or the equivalent are not considered part of the section titles.

  13. Delete any section Entitled "Endorsements". Such a section may not be included in the Modified Version.

  14. Do not retitle any existing section to be Entitled "Endorsements" or to conflict in title with any Invariant Section.

  15. Preserve any Warranty Disclaimers.

If the Modified Version includes new front-matter sections or appendices that qualify as Secondary Sections and contain no material copied from the Document, you may at your option designate some or all of these sections as invariant. To do this, add their titles to the list of Invariant Sections in the Modified Version’s license notice. These titles must be distinct from any other section titles.

You may add a section Entitled "Endorsements", provided it contains nothing but endorsements of your Modified Version by various parties—for example, statements of peer review or that the text has been approved by an organization as the authoritative definition of a standard.

You may add a passage of up to five words as a Front-Cover Text, and a passage of up to 25 words as a Back-Cover Text, to the end of the list of Cover Texts in the Modified Version. Only one passage of Front-Cover Text and one of Back-Cover Text may be added by (or through arrangements made by) any one entity. If the Document already includes a cover text for the same cover, previously added by you or by arrangement made by the same entity you are acting on behalf of, you may not add another; but you may replace the old one, on explicit permission from the previous publisher that added the old one.

The author(s) and publisher(s) of the Document do not by this License give permission to use their names for publicity for or to assert or imply endorsement of any Modified Version.

5. COMBINING DOCUMENTS

You may combine the Document with other documents released under this License, under the terms defined in section 4 above for modified versions, provided that you include in the combination all of the Invariant Sections of all of the original documents, unmodified, and list them all as Invariant Sections of your combined work in its license notice, and that you preserve all their Warranty Disclaimers.

The combined work need only contain one copy of this License, and multiple identical Invariant Sections may be replaced with a single copy. If there are multiple Invariant Sections with the same name but different contents, make the title of each such section unique by adding at the end of it, in parentheses, the name of the original author or publisher of that section if known, or else a unique number. Make the same adjustment to the section titles in the list of Invariant Sections in the license notice of the combined work.

In the combination, you must combine any sections Entitled "History" in the various original documents, forming one section Entitled "History"; likewise combine any sections Entitled "Acknowledgements", and any sections Entitled "Dedications". You must delete all sections Entitled "Endorsements".

6. COLLECTIONS OF DOCUMENTS

You may make a collection consisting of the Document and other documents released under this License, and replace the individual copies of this License in the various documents with a single copy that is included in the collection, provided that you follow the rules of this License for verbatim copying of each of the documents in all other respects.

You may extract a single document from such a collection, and distribute it individually under this License, provided you insert a copy of this License into the extracted document, and follow this License in all other respects regarding verbatim copying of that document.

7. AGGREGATION WITH INDEPENDENT WORKS

A compilation of the Document or its derivatives with other separate and independent documents or works, in or on a volume of a storage or distribution medium, is called an "aggregate" if the copyright resulting from the compilation is not used to limit the legal rights of the compilation’s users beyond what the individual works permit. When the Document is included in an aggregate, this License does not apply to the other works in the aggregate which are not themselves derivative works of the Document.

If the Cover Text requirement of section 3 is applicable to these copies of the Document, then if the Document is less than one half of the entire aggregate, the Document’s Cover Texts may be placed on covers that bracket the Document within the aggregate, or the electronic equivalent of covers if the Document is in electronic form. Otherwise they must appear on printed covers that bracket the whole aggregate.

8. TRANSLATION

Translation is considered a kind of modification, so you may distribute translations of the Document under the terms of section 4. Replacing Invariant Sections with translations requires special permission from their copyright holders, but you may include translations of some or all Invariant Sections in addition to the original versions of these Invariant Sections. You may include a translation of this License, and all the license notices in the Document, and any Warranty Disclaimers, provided that you also include the original English version of this License and the original versions of those notices and disclaimers. In case of a disagreement between the translation and the original version of this License or a notice or disclaimer, the original version will prevail.

If a section in the Document is Entitled "Acknowledgements", "Dedications", or "History", the requirement (section 4) to Preserve its Title (section 1) will typically require changing the actual title.

9. TERMINATION

You may not copy, modify, sublicense, or distribute the Document except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, or distribute it is void, and will automatically terminate your rights under this License.

However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.

Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.

Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, receipt of a copy of some or all of the same material does not give you any rights to use it.

10. FUTURE REVISIONS OF THIS LICENSE

The Free Software Foundation may publish new, revised versions of the GNU Free Documentation License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. See http://www.gnu.org/copyleft/.

Each version of the License is given a distinguishing version number. If the Document specifies that a particular numbered version of this License "or any later version" applies to it, you have the option of following the terms and conditions either of that specified version or of any later version that has been published (not as a draft) by the Free Software Foundation. If the Document does not specify a version number of this License, you may choose any version ever published (not as a draft) by the Free Software Foundation. If the Document specifies that a proxy can decide which future versions of this License can be used, that proxy’s public statement of acceptance of a version permanently authorizes you to choose that version for the Document.

11. RELICENSING

"Massive Multiauthor Collaboration Site" (or "MMC Site") means any World Wide Web server that publishes copyrightable works and also provides prominent facilities for anybody to edit those works. A public wiki that anybody can edit is an example of such a server. A "Massive Multiauthor Collaboration" (or "MMC") contained in the site means any set of copyrightable works thus published on the MMC site.

"CC-BY-SA" means the Creative Commons Attribution-Share Alike 3.0 license published by Creative Commons Corporation, a not-for-profit corporation with a principal place of business in San Francisco, California, as well as future copyleft versions of that license published by that same organization.

"Incorporate" means to publish or republish a Document, in whole or in part, as part of another Document.

An MMC is "eligible for relicensing" if it is licensed under this License, and if all works that were first published under this License somewhere other than this MMC, and subsequently incorporated in whole or in part into the MMC, (1) had no cover texts or invariant sections, and (2) were thus incorporated prior to November 1, 2008.

The operator of an MMC Site may republish an MMC contained in the site under CC-BY-SA on the same site at any time before August 1, 2009, provided the MMC is eligible for relicensing.

At what offset are the application's last access date and time located in a prefetch file?

Structure of Prefetch files and metadata On the other hand, the offset of the last run time stamp is 0x80 in the binary contents of the particular prefetch file, and the “number of times opened” counter is situated at offset 0x98 in Windows Vista and Windows 7 systems.

What cloud application offers a variety of cloud services including automation and CRM cloud application development and website marketing?

Salesforce is the leader in cloud computing, offering applications for all aspects of your business, including CRM, sales, ERP, customer service, marketing automation, business analytics, mobile application building, and much more.

What are the three levels of cloud services defined by NIST?

Well, there are 3 types of cloud computing: Infrastructure as a Service (IaaS), Platform as a Service (PaaS), and Software as a Service (SaaS). With IaaS, companies control their own computing, networking, and storing components without having to manage them on-premises physically.

What frequencies can be used by GSM with the TDMA technique?

GSM cell phones use a TDMA (time-division multiple-access) time-slot sharing technique that results in high-power RF in the 800MHz to 900MHz or 1800MHz to 1900MHz bands.