From 43d57a890f33a45f152c04a44ecbfbb0c673f9cc Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Tue, 23 Dec 2014 09:47:59 +0000 Subject: [PATCH] Add v0.6.1 release docs. --- docs/0.6.1/LOOT Metadata Syntax.html | 456 +++++++++ docs/0.6.1/LOOT Readme.html | 538 ++++++++++ docs/0.6.1/images/Thumbs.db | Bin 0 -> 75264 bytes docs/0.6.1/images/confirm.png | Bin 0 -> 33302 bytes docs/0.6.1/images/editor.png | Bin 0 -> 36999 bytes docs/0.6.1/images/main.png | Bin 0 -> 5742 bytes docs/0.6.1/images/settings.png | Bin 0 -> 22539 bytes docs/0.6.1/images/viewer-1.png | Bin 0 -> 21068 bytes docs/0.6.1/images/viewer-2.png | Bin 0 -> 38668 bytes docs/0.6.1/licenses/Apache License v2.0.txt | 178 ++++ .../licenses/Boost Software License v1.0.txt | 23 + docs/0.6.1/licenses/GNU FDL v1.3.txt | 423 ++++++++ docs/0.6.1/licenses/GNU GPL v2 (libgit2).txt | 930 ++++++++++++++++++ docs/0.6.1/licenses/GNU GPL v3.txt | 624 ++++++++++++ docs/0.6.1/licenses/Licenses.txt | 16 + .../licenses/MIT License (RequireJS).txt | 58 ++ .../0.6.1/licenses/MIT License (yaml-cpp).txt | 19 + 17 files changed, 3265 insertions(+) create mode 100644 docs/0.6.1/LOOT Metadata Syntax.html create mode 100644 docs/0.6.1/LOOT Readme.html create mode 100644 docs/0.6.1/images/Thumbs.db create mode 100644 docs/0.6.1/images/confirm.png create mode 100644 docs/0.6.1/images/editor.png create mode 100644 docs/0.6.1/images/main.png create mode 100644 docs/0.6.1/images/settings.png create mode 100644 docs/0.6.1/images/viewer-1.png create mode 100644 docs/0.6.1/images/viewer-2.png create mode 100644 docs/0.6.1/licenses/Apache License v2.0.txt create mode 100644 docs/0.6.1/licenses/Boost Software License v1.0.txt create mode 100644 docs/0.6.1/licenses/GNU FDL v1.3.txt create mode 100644 docs/0.6.1/licenses/GNU GPL v2 (libgit2).txt create mode 100644 docs/0.6.1/licenses/GNU GPL v3.txt create mode 100644 docs/0.6.1/licenses/Licenses.txt create mode 100644 docs/0.6.1/licenses/MIT License (RequireJS).txt create mode 100644 docs/0.6.1/licenses/MIT License (yaml-cpp).txt diff --git a/docs/0.6.1/LOOT Metadata Syntax.html b/docs/0.6.1/LOOT Metadata Syntax.html new file mode 100644 index 0000000..f4de804 --- /dev/null +++ b/docs/0.6.1/LOOT Metadata Syntax.html @@ -0,0 +1,456 @@ + + +LOOT Metadata Syntax + + + +

LOOT Metadata Syntax

+ +

Contents

+
    +
  1. Introduction +
  2. Metadata File Contents +
  3. Data Structures +
      +
    1. Tag Data Structure +
    2. File Data Structure +
    3. Message Data Structure +
    4. Location Data Structure +
    5. Dirty Info Data Structure +
    6. Plugin Data Structure +
    +
  4. URL Hyperlinking +
  5. Condition Strings +
      +
    1. Functions +
    2. The Negator & Junctors +
    3. Order Of Evaluation +
    +
  6. Language Codes +
  7. License +
+ +

Introduction

+

The metadata syntax is what LOOT's masterlists and userlists are written in. If you know YAML, good news: the syntax is essentially just YAML 1.2. If you don't know YAML, then its Wikipedia page is a good introduction. All you really need to know is: +

+

Some important points that are more specific to how LOOT uses YAML: +

+

Some properties of file paths as used by LOOT: +

+

Please test any changes you make before uploading them. One way of doing this is to run LOOT, another is to copy/paste what you've changed into here, though it won't catch condition syntax errors and doesn't use the same parser as LOOT so may give different results. + +

Metadata File Contents

+

The root of a metadata file is a key-value map. LOOT will recognise the following keys, none of which are required: + + +
Key NameValue TypeNotes +
globalsmessage listA list of message data structures for messages that are displayed independently of any plugin. +
pluginsplugin listA list of plugin data structures, holding all the plugin metadata within the file. +
+

Other keys may also be present, but are not processed by LOOT. The message and plugin data structures are detailed in the next section. +

An example metadata file: +globals: + - type: say + content: 'You are using the latest version of LOOT.' + condition: 'version("LOOT", "0.5.0.0", ==)' +plugins: + - name: 'Armamentarium.esm' + tag: + - Relev + - name: 'ArmamentariumFran.esm' + tag: + - Relev + - name: 'Beautiful People 2ch-Ed.esm' + tag: + - Eyes + - Graphics + - Hair + - R.Relations + + + +

Data Structures

+

LOOT expects metadata to be laid out using a certain set of data structures, described in this section. + +

Tag Data Structure

+

LOOT metadata files can contain suggestions for the addition or removal of Bash Tags, and this is the structure used for them. It has two forms: the first is a simple string, and the second is a key-value map. All values in the map are strings. +

The simple form: +tag +

where tag is the Bash Tag, preceded by a minus sign if it is suggested for removal. +

The map form: + + +
Key NameRequiredNotes +
nameA Bash Tag, preceded by a minus sign if it is suggested for removal. +
conditionA condition string that is evaluated to determine whether this Bash Tag should be suggested: if it evaluates to true, the Tag is suggested, otherwise it is ignored. See Condition Strings for details. +
+

Examples: +Relations +or +name: -Relations +condition: 'file("Mart''s Monster Mod for OOO.esm") or file("FCOM_Convergence.esm")' + + +

File Data Structure

+

Not to be confused with the structure of the metadata file itself, this structure can be used to hold file paths. It has two forms: the first is a simple string, and the second is a key-value map. All values in the map are strings. +

The simple form: +filepath +

where filepath is an exact (ie. not regex) file path relative to the game's Data folder. +

The map form: + + +
Key NameRequiredNotes +
nameAn exact (ie. not regex) file path or name. +
displayA substitute string to be displayed instead of the file path in any generated messages, eg. the name of the mod the file belongs to. Double-quoted URLs will be hyperlinked in the LOOT report. See URL Hyperlinking for details. +
conditionA condition string that is evaluated to determine whether this file data should be used: if it evaluates to true, the data is used, otherwise it is ignored. See Condition Strings for details. +
+ +

Examples: +'../obse_loader.exe' +or +name: '../obse_loader.exe' +condition: 'version("../obse_loader.exe", "0.0.18.0", >=)' +display: 'OBSE v18+' + + +

Message Data Structure

+

Messages are given as key-value maps. + + +
Key NameData TypeRequiredNotes +
typestringThe type string can be one of three keywords, see the table below for their semantics. +
contentstring or localised content listEither simply a string, or a list of localised content data structures. If the latter, one of the structures must be for English. +
conditionstringA condition string that is evaluated to determine whether the message should be displayed: if it evaluates to true, the message is displayed, otherwise it is not. See Condition Strings for details. +
+ +

There are three message types: + + +
KeywordDescription +
sayA generic message, useful for miscellaneous notes. +
warnA warning message, describing a non-critical issue with the user's mods (eg. dirty mods). +
errorAn error message, decribing a critical installation issue (eg. missing masters, corrupt plugins). +
+

The localised content data structure is a key-value map, with all values being strings: + + +
Key NameRequiredNotes +
strThe actual message content string. Double-quoted URLs will be hyperlinked in the LOOT report. See URL Hyperlinking for details. +
langThe language that str is written in, given as a POSIX language code. The languages LOOT supports are given in Language Codes. +
+ +

LOOT handles messages and languages as follows: +

    +
  1. If a message's content value is a string, the message will use the string as its content if displayed. +
  2. If a message's content value is a list of localised content structures, then the first structure with a language that matches LOOT's current language will be used as the message's content if displayed. If there are no matches, then the first structure in English will be used. +
+ + +

Examples (translations by Google): +type: say +condition: 'file("foo.esp")' +content: + - lang: en + str: 'An example link: <http://www.example.com>' + - lang: ru + str: 'Это пример ссылки: <http://www.example.com>' + +would be displayed as +

+отмечать: Это пример ссылки: http://www.example.com +
+if the current language was Russian and foo.esp was installed, while +type: say +content: 'An alternative [example link](http://www.example.com), with no translations.' + +would be displayed as +
+отмечать: An alternative example link, with no translations. +
+ + +

Location Data Structure

+

This data structure is used to hold information on where a plugin is hosted online. It is not currently used by LOOT, but it was suggested that since the LOOT team receives a considerable number of plugin URLs, they should be recorded in a standard format, as there is no existing store of such information and it could prove useful in the future. +

The data structure has two forms: the first is a simple string, and the second is a key-value map. The first form should be used for a URL without any associated version data, such as when it is not clear which version is found there, or when it is the only known hosting location for the plugin and as such hosts all available versions. The second form should be used when version data can be associated with the URL, such as when the URL only hosts a subset of the available versions of the plugin. +

The simple form: +URL +

where URL is a URL at which the plugin may be found. +

The map form: + + +
Key NameData TypeRequiredNotes +
linkstringA URL at which the plugin may be found. +
verstring listA list of versions that can be found at the URL. +
+

Examples: +'http://skyrim.nexusmods.com/mods/19/' +or +link: 'http://steamcommunity.com/sharedfiles/filedetails/?id=87144366' +ver: + - '1.3.2c' + + +

Dirty Info Data Structure

+

This structure holds information on which versions of a plugin are dirty, and how many identical-to-master records, deleted records and deleted navmeshes (if applicable) it contains. Dirty info is given as a key-value map. + + +
Key NameData TypeRequiredNotes +
crchexadecimal integerThe CRC checksum of the dirty plugin, before cleaning. LOOT displays the CRCs of installed plugins in its report. The 8-character CRC should be preceded by 0x so that it is correctly interpreted. +
utilstringThe utility that should be used to clean the plugin. This field supports URL Hyperlinking, and it is recommended that a URL to the game's cleaning guide is supplied. +
itmintegerThe number of identical-to-master records reported for the dirty plugin. If the number is unknown, this field should not be supplied. If the number is known and zero, this field should be supplied. +
udrintegerThe number of undeleted records reported for the dirty plugin. If the number is unknown, this field should not be supplied. If the number is known and zero, this field should be supplied. +
navintegerThe number of deleted navmeshes reported for the dirty plugin. If the number is unknown, this field should not be supplied. If the number is known and zero, this field should be supplied. +
+

Examples: +crc: 0x3DF62ABC +util: '[TES5Edit](http://www.creationkit.com/TES5Edit_Cleaning_Guide_-_TES5Edit)' +itm: 4 +udr: 160 +nav: 0 + + + +

Plugin Data Structure

+

This is the structure that brings all the others together, and forms the main component of a metadata file. It is a key-value map. + + +
Key NameData TypeRequiredNotes +
namestringCan be an exact plugin filename or a regular expression plugin filename. If the period that precedes the file extension has been escaped (eg. \.esp, \.esm), the string is treated as a regular expression, otherwise it is treated as an exact filename. +
enabledbooleanEnables or disables use of the plugin object. Used for user rules, but no reason to use it in the masterlist. If unspecified, defaults to true. +
priorityintegerModifies plugin position relative to others that change one or more of the same records, but which are otherwise unrelated (ie. neither plugin lists the other as a master, requirement, or in its after list). Plugins that don't change any of the same records are not compared, unless: +
    +
  • One of the plugins is a "dummy" plugin, containing only a header record. +
  • One of the plugins has a priority greater than or equal to 1,000,000. In this case, only the modulo (ie. remainder when divided) with 1,000,000 is used when comparing plugin priority values – the rest is only used to signify that the plugin should be compared against all others. +
+

For example, priority: 153000352 and priority: 352 have equal values when compared, but a plugin with the first priority will be compared against all others, while a (non-dummy) plugin with the second priority will be compared against only those it conflicts with. +

A plugin with a higher priority value will load after a plugin with a lower priority value. Value can be anything in the range -2000000000 to 2000000000, and if unspecified defaults to 0. +

afterfile listAn unordered list of plugins that this plugin must load after, but which are not dependencies. Used for resolving specific compatibility issues and by user rules for specifying custom plugin positions. +
reqfile listAn unordered list of files that this plugin requires to be present. This plugin will load after any plugins listed. If any of these files are missing, an error message will be displayed. Intended for use specifying implicit dependencies, as LOOT will detect a plugin's explicit masters itself. +
incfile listAn unordered list of files that this plugin is incompatible with. If any of these files are present, an error message will be displayed. +
msgmessage listThe messages attached to this plugin. The messages will be displayed in the order that they are listed. +
tagtag listAn unordered list of Bash Tags suggested for this plugin. If a Bash Tag is suggested for both addition and removal, the latter will override the former when the list is evaluated. +
urllocation listAn unordered list of locations for this plugin. If the same version can be found at multiple locations, only one location should be recorded. This metadata is not currently used by LOOT. +
dirtydirty info listAn unordered list of dirty info structures for this plugin. +
+

Example: +name: 'Oscuro''s_Oblivion_Overhaul.esm' +req: + - 'Oblivion.esm' # Don't do this, Oblivion.esm is a master of Oscuro's_Oblivion_Overhaul.esm, so LOOT already knows it's required. + - name: 'example.esp' + display: '[Example Mod](http://www.example.com)' + condition: 'version("Oscuro''s_Oblivion_Overhaul.esm", "15.0", ==)' +tag: + - Actors.Spells + - Graphics + - Invent + - Relations + - Scripts + - Stats + - name: -Relations + condition: 'file("Mart''s Monster Mod for OOO.esm") or file("FCOM_Convergence.esm")' +msg: + - type: say + content: 'Do not clean. "Dirty" edits are intentional and required for the mod to function.' + + + +

+

File display strings and message content strings (including the strings in localised content structures) that contain recognised URLs have them displayed as hyperlinks in the LOOT report. +

URLs must begin with file:, http: or https:, and be written according to the following subset of Markdown syntax. Note that LOOT does not recognise additional Markdown syntaxes to those given below. +

For labelled URLs, the syntax is [label](url). A single optional space may be included between the closing square bracket and the opening parenthesis, ie. [label] (url). +

For unlabelled URLs, the syntax is <url>. The URL shall be used as its own label. +

Note that the URLs given as part of a location data structure should not be labelled or enclosed in less-than or greater-than signs, as they consist of raw URL data, rather than text to be displayed in a message. +

Examples: +'This [string](https://en.wikipedia.org/wiki/String_(computer_science)) contains a labelled hyperlink.' +would be displayed as +

This string contains a labelled hyperlink.
+

While +'This string (see: <https://en.wikipedia.org/wiki/String_(computer_science)>) contains an unlabelled hyperlink.' +both get displayed as +

This string (see: https://en.wikipedia.org/wiki/String_(computer_science)) contains an unlabelled hyperlink.
+ +

Condition Strings

+

Condition strings can be used to ensure that data is only acted on by LOOT under certain circumstances. They are very similar to boolean conditional expressions in programming languages such as Python, though more limited. Their EBNF grammar is: +[ negator ], function, { junctor, [ negator ], function } ; +

The [ negator ], function grammar is referred to as a condition, and two conditions joined by an operator, ie. condition, operator, condition is referred to as a compound condition. +

LOOT caches the results of condition evaluations, so performance is not really an issue. A regular expression check will still take longer than a file check though, so use the former only when appropriate to do so. + +

Functions

+

There are several conditions that can be tested for using the functions detailed in the table below. + + +
FunctionSyntaxDescription +
Filefile("filepath")Returns true if filepath is installed, false otherwise. +
Fileregex("regex")Returns true if a file matching regex is found, false otherwise. +
Checksumchecksum("filepath", checksum)Returns true if the calculated checksum of filepath matches checksum, false otherwise. If filepath does not exist, returns false. +
Versionversion("filepath", "version", comparator)Returns true if the boolean expression (actual version of filepath) comparator version holds true, false otherwise. If filepath does not exist and comparator is ==, > or >=, returns false. If filepath does not exist and comparator is !=, < or <=, returns true. The comparison is not a straightforward per-character comparison, but instead uses the Alphanum algorithm. +
Plugin Active Statusactive("filepath")Returns true if filepath is a .esp or .esm file that is both installed and active, false otherwise. +
+ +

The different types of variable used in the above functions are described in more detail below. + + +
Variable TypeDescription +
filepathA Windows file path, or LOOT, which references the LOOT executable being run. +
regexA regular expression string to match file paths to. +
checksumA string of hexadecimal digits representing an unsigned integer that is the data checksum of a file. LOOT displays the checksums of plugins in its user interface after running. +
versionA string of characters representing the version of a plugin or executable. LOOT displays the versions of plugins in its user interface after running. +
comparatorA comparison operator, ie. one of ==, !=, <, >, <= or >=, meaning "is equal to", "is not equal to", "is less than", "is greater than", "is less than or equal to" and "is greater than or equal to" respectively. +
+ +

The Negator & Junctors

+

The negator, or logical negation operator, inverts the value of the function that follows it. Its inclusion is optional, and its syntax is simply: +not +

Below is a truth table for the negator. + + +
Value of functionValue of not function +
falsetrue +
truefalse +
+ +

There are two supported junctors, the logical conjunction (logical and operator) and the logical disjunction (logical or operator), that operate on the expressions to their left and right. + + +
JunctorSyntaxDescription +
Logical ConjunctionandBoth conditions must evaluate to true for the compound condition to evaluate to true. If not, the compound condition evaluates to false. +
Logical DisjunctionorOne condition or both conditions must evaluate to true for the compound condition to evaluate to true. If neither condition is true, then the compound condition evaluates to false. +
+

The following is a truth table for the junctors: + + +
Value of condition1Value of condition2Value of condition1 and condition2Value of condition1 or condition2 +
truetruetruetrue +
truefalsefalsetrue +
falsetruefalsetrue +
falsefalsefalsefalse +
+ +

Order Of Evaluation

+

When a condition string is evaluated, its constituent parts are evaluated according to the standard precedence rules of operator logic, ie. +

    +
  1. Function +
  2. Negator +
  3. Logical and +
  4. Logical or +
+

Below is a table that lists some combinations of conditions, showing for each the order of evaluation by explicit bracketing. To make it easier to read, the negator function pair is shortened to C after the first example. + + +
String StructureEvaluated As +
negator function( negator ( function ) ) +
C and C( C and C ) +
C or C( C or C ) +
C and C and C( ( C and C ) and C ) +
C or C or C( ( C or C ) or C ) +
C and C or C( ( C and C ) or C ) +
C or C and C( C or ( C and C ) ) +
C and C and C and C( ( ( C and C ) and C ) and C ) +
C and C and C or C( ( ( C and C ) and C ) or C ) +
C and C or C and C( ( C and C ) or ( C and C ) ) +
C and C or C or C( ( ( C and C ) or C ) or C) +
C or C or C or C( ( ( C or C ) or C ) or C ) +
C or C or C and C( ( C or C ) or ( C and C ) ) +
C or C and C or C( ( C or ( C and C ) ) or C ) +
C or C and C and C( C or ( ( C and C ) and C ) ) +
+

You can also explicitly enclose any condition in brackets to override the evaluation order, eg. C and ( C or C ) is evaluated as C and ( C or C ), in contrast to the unbracketed string above. + +

Language Codes

+

LOOT supports the following languages and language codes: + + +
LanguagePOSIX Code +
Chinesezh_CN +
Englishen +
Finnishfi +
Frenchfr +
Polishpl +
Brazilian Portuguesept_BR +
Russianru +
Spanishes +
Germande +
+ +

License

+

This document is part of the LOOT documentation.
+Copyright (C) 2012—2014 WrinklyNinja
+See the file LOOT ReadMe.html for copying conditions. diff --git a/docs/0.6.1/LOOT Readme.html b/docs/0.6.1/LOOT Readme.html new file mode 100644 index 0000000..9111445 --- /dev/null +++ b/docs/0.6.1/LOOT Readme.html @@ -0,0 +1,538 @@ + + +LOOT Readme + + + +

LOOT

+ +

Contents

+ +
    +
  1. Introduction +
  2. Installation & Uninstallation +
  3. Using LOOT +
      +
    1. Sorting Plugins +
    2. The Results Report +
    3. Customising LOOT's Results +
    4. Editing Settings +
    +
  4. Troubleshooting +
  5. Contributing To LOOT +
  6. Translating LOOT +
  7. Credits +
  8. License +
  9. Appendices +
      +
    1. Introduction To Load Orders +
    2. Dirty Edits, Mod Cleaning & CRCs +
    3. File Permissions +
    +
  10. Version History +
+ +

Introduction

+ +

LOOT is a plugin load order optimiser for TES IV: Oblivion, TES V: Skyrim, Fallout 3 and Fallout: New Vegas. It is designed to assist mod users in avoiding detrimental conflicts, by automatically calculating a load order that satisfies all plugin dependencies and maximises each plugin's impact on the user's game. + +

LOOT also provides some load order error checking, including checks for requirements, incompatibilities and cyclic dependencies. In addition, it provides a large number of plugin-specific usage notes, bug warnings and Bash Tag suggestions for Wrye Bash. + +

While LOOT is able to calculate correct load order positions for the vast majority of plugins using only their content, it cannot do so for all plugins. As such, LOOT provides a mechanism for supplying additional plugin metadata so that it may sort them correctly. + +

LOOT is intended to make using mods easier, and mod users should still possess a working knowledge of mod load ordering. See Introduction To Load Orders for an overview. + + +

Installation & Uninstallation

+ +

LOOT does not support Windows XP or earlier. + +

LOOT can be installed either using its automated installer or manually. To install LOOT manually, extract the downloaded archive to a location of your choice. + +

If LOOT was installed using the installer, then use the uninstaller linked to in the Start Menu to uninstall LOOT. If LOOT was installed manually: +

    +
  1. Delete the files you extracted from the location you chose. +
  2. Delete the LOOT folder in your local application data folder, which can be accessed by entering %LOCALAPPDATA% into Windows' File Explorer. +
+ + +

Using LOOT

+

When LOOT is run, it will attempt to detect which of the supported games are installed. If a default game has been set, LOOT will run for it, otherwise it will run for the same game as it last ran for. If the relevant game cannot be detected, if there is no record of the last game LOOT ran for, it will run for the first detected game. +

LOOT can also be launched with the LOOT.exe [--game=<game folder name>] command line parameter to set the game to run for. If the supplied game folder name is valid, the default and last game values are ignored. The default folder names are Oblivion, Skyrim, Fallout3 and FalloutNV. +

Once a game has been set, the main window will be displayed. +

+ LOOT's main window +
LOOT's main window. The title bar displays which game LOOT is running for.
+
+

Clicking the Edit Metadata button will open LOOT's metadata editor, where you can make changes to the metadata LOOT uses to sort plugins, the messages that get displayed for plugins, and any Bash Tag suggestions LOOT makes. +

Clicking the Sort Plugins button will begin the plugin sorting process. This will sort your plugins, allow you to make any changes to the load order it produces, then display a report that details the results of LOOT's activity. +

Clicking the View Last Report button will display the report generated the last time LOOT sorted your plugins for the current game. +

The File menu provides menu items for sorting plugins, viewing the debug log and the last report LOOT generated, and quitting LOOT. The menu's Redate Plugins option is provided so that Skyrim modders may set the load order for the Creation Kit. It is only enabled for Skyrim, and changes the timestamps of the plugins in its Data folder to match their current load order. A side effect of changing the timestamps is that any Steam Workshop mods installed will be re-downloaded. +

The Edit menu provides menu items for accessing LOOT's metadata editor and the settings window. +

The Game menu allows you to change which game LOOT is running for. Games that LOOT cannot find are greyed out, and the the one LOOT is running for is marked with a bullet point. To change the active game, simply select another game in the list. +

The Help menu provides a link to this readme and an about page that contains the version of LOOT being run, some legal information and a link to the project homepage. + +

Sorting Plugins

+
+ LOOT confirmation dialog +
Viewing & editing LOOT's calculated load order.
+
+

Clicking the Sort Plugins button in the main window will begin the sorting process. +

First, LOOT downloads and applies any masterlist updates available, if the relevant setting is enabled. If the latest update cannot be parsed (eg. due to typos), then LOOT will roll back until it finds a version that works. +

LOOT then sorts your plugins according to a combination of data from the plugins themselves, and any masterlist and userlist entries they may have. If a cyclic interaction is detected (eg. A depends on B depends on A), then sorting will fail. +

If sorting is successful, the calculated load order is then displayed in the dialog shown above. In this window, you can view the load order calculated by LOOT, and make any edits to the metadata used that you feel are necessary. The window is a simplified version of the metadata editor window, in which all metadata that does not affect sorting is hidden. Please see the section below for more information on how to edit metadata using it. +

If the Apply button is clicked, LOOT does one of two things: if no edits were made, then it immediately applies the load order; but if edits were made, then it repeats the sorting process with the new edits applied. If the Cancel button is clicked, then the load order and any edits made are discarded. +

LOOT then generates a report and displays it either in a new window or in your default browser, according to the value of the relevant setting. Any errors encountered during the sorting process will be displayed in this report. See the next section for more information on the report. +

LOOT is able to sort plugins ghosted by Wrye Bash, and can extract Bash Tags and version numbers from plugin descriptions. Provided that they have the Filter Bash Tag present in their description, LOOT can recognise filter patches and so avoid displaying unnecessary error messages for any of their masters that may be missing. +

While reading very large plugins, such as the game's main master file, LOOT may appear to stop responding: this is not an issue. The time it takes for LOOT to sort your load order depends primarily on the size of the masterlist being used, the total size of the files in your load order, and the number of plugins in your load order. The first run is likely to be longer than subsequent runs as LOOT needs to download the full masterlist, rather than just the changes made by updates. In testing, it was found that sorting ~90 plugins with a total size of ~350 MB and a 5 MB masterlist takes around 15 seconds, though performance will vary with computer hardware. + + +

The Results Report

+
+ LOOT report summary tab + LOOT report details tab +
LOOT's report viewer.
+
+ +

LOOT's results report is comprised of two sections: +

+

In addition, there are a few filters that can be used to selectively hide items in the Details tab. These filters are: +

+

LOOT will display the version numbers of any plugins that provide them in their description fields. If a plugin supplies no version number, it cannot be displayed. The version numbers may not reflect the actual version of the mod installed - this could either be due to the mod author forgetting to update the description, or due to a mistake in LOOT's detection. As version numbers are supplied by mod authors in a wide range of formats and LOOT has to detect as many as possible, it occasionally identifies parts of some descriptions as version numbers incorrectly. When in doubt, check the version number given in a mod's readme. +

LOOT's plugin messages are a valuable resource, acting as a means of providing users with information that they might otherwise not obtain. It is important for a stable, healthy game that you act on any messages that require action. +

If you think a message suggests an unnecessary action, report it to an official LOOT thread. If you encounter a message that is non-conditional, ie. it suggests an action but is still displayed on subsequent runs of LOOT after the action has been carried out, also report it to an official LOOT thread, so that it can be made conditional. + + +

Customising LOOT's Results

+
+ +
LOOT's metadata editor.
+
+

LOOT's sorting algorithm uses the contents of plugins to work out where they should load relative to one another. However, this is sometimes not enough for it to produce a correct load order. In such cases, additional metadata can be supplied so that the plugins get sorted correctly. This metadata is supplied to LOOT by two sources: one is the masterlist, which is maintained by the LOOT team, and the other is the userlist, which you can edit as you desire. +

The metadata editor allows you to manage the metadata stored in your userlist. It is a more fully-featured version of the dialog displayed during sorting. When opened, it lists all the plugins you have installed, and any that are missing but have existing user-added metadata, in alphabetical order. Plugins that load BSAs are displayed in blue text, and plugins with user-added metadata are displayed with a tick in the first column of the list. Selecting a plugin then opens its metadata for editing, and displays any existing metadata in the fields to the right of the plugin list. Right-clicking a plugin displays a context menu containing a few commands. The editor fields and context menu commands are explained in the tables below. +

The Add …, Edit … and Remove … buttons are used to edit the contents of the list currently visible. The Edit … and Remove … buttons are greyed out if no row is selected or if the selected row is not user-added metadata, but comes from the masterlist or the plugin itself. Metadata that comes from the masterlist or the plugin itself cannot be edited or removed, only added to. This is to prevent users from accidentally overriding important metadata. + +

The Show only conflicting plugins checkbox filters the plugin list so that only plugins which either contain conflicting records or (if the selected plugin loads a BSA) load BSAs that may contain conflicting resources are displayed. While the filter is active, it is also possible to add plugins to the Requirements, Incompatibilities and Load After lists by drag 'n' dropping them from the plugin list. The filter must be deactivated to select another plugin for editing. + +

The Save Changes button will save any user-added metadata to your userlist, including any changes made, then exit the metadata editor. The Cancel button will exit the editor without saving any changes. + + + +
FieldDescription +
Enable User ChangesIf this is checked, LOOT will use the metadata you supplied when sorting the current plugin. Otherwise, your metadata will be ignored. +
PriorityModifies plugin position relative to others that change one or more of the same records, but which are otherwise unrelated (ie. neither plugin lists the other as a master, requirement, or in its "load after" list). Plugins that don't change any of the same records are not compared, unless: +
    +
  • One or both of the plugins is a "dummy" plugin, containing only a header record. +
  • One or both of the plugins has the Compare priority against all other plugins checkbox ticked. +
+

A plugin with a higher priority value will load after a plugin with a lower priority value. Plugins have a default priority of 0. +

RequirementsThis is a list of files that are required by the current plugin for it to function correctly. LOOT will display an error message if any of the listed files are missing. +

Any file, not just plugins, can be listed here, and each file has three sub-fields: +

    +
  • The filename is the path, relative to the game's Data folder, of the file to be checked for. This sub-field is required. +
  • The display name is optional, and if specified will be used instead of the filename in any error messages that are displayed if a problem is encountered relating to the file. +
  • The condition is the optional condition string that is used to determine if the file should be checked for. If left blank, the file will always be checked for. Condition strings are a relatively advanced part of LOOT's functionality, and their syntax is covered in the Metadata Syntax documentation. +
+

Note that listing a plugin's masters as requirements is pointless, as LOOT already checks them. +

IncompatibilitiesThis is a list of files that are incompatible with the plugin. LOOT will display an error message if any of the listed files are found. +

Any file, not just plugins, can be listed here, and each file has the same three sub-fields as for the requirements field. +

Load AfterThis is a list of plugins which, if present, the current plugin must load after, but which are not required. This field can be used for resolving specific compatibility issues. +
MessagesA list of messages that are to be displayed for the plugin in LOOT's report. These have no bearing on a plugin's position in the load order. +

Each message has four sub-fields: +

    +
  • The type is fairly self-explanatory, and is used to provide messages of varying severity with appropriate emphasis in LOOT's report. +
  • The content is the actual message text. +
  • The condition is, like for the corresponding file sub-field, used to determine if the message should be displayed. If left blank, the message is displayed. +
  • The language is the language LOOT runs in that the message will be displayed for. For example, if the message language is set to English and LOOT is running in German, then the message will not be displayed. If left unspecified, the message will be shown no matter what language LOOT is running in. +
+

If a message's condition determines that it should not be displayed, then it will not be displayed, no matter the language. However, if a message's condition determines that it should be displayed, but the language is specified and doesn't match the language LOOT is running in, the message will not be displayed. +

Bash TagsA list of Bash Tags. These are used by Wrye Bash when generating a Bashed Patch. LOOT's metadata includes Bash Tag addition and removal suggestions, and any Bash Tags that came with the plugin are also displayed. +

As LOOT can suggest Bash Tags be added or removed, it is possible for the same Tag to appear twice, being suggested for addition and removal. In such cases, removal overrides addition. +

Each Bash Tag has three sub-fields: +

    +
  • The state determines whether the Tag is to be suggested for addition or removal. +
  • The name is the actual Bash Tag name. +
  • The condition decides if the Tag is to be suggested or not. It functions as for files and messages. +
+

If a plugin's masters are missing, an error message will be displayed for it. Filter patches are special mods designed for use with a Bashed Patch that do not require all their masters to be present, and so any plugin with the Filter tag applied and missing masters will not cause any errors to be displayed. +

+ + + +
Context Menu CommandDescription +
Copy NameCopies the selected plugin's filename to the clipboard. +
Copy Metadata As TextCopies the selected plugin's current metadata, as it appears in the userlist, to the clipboard. This makes it easier to share your metadata changes with the LOOT team, as they can then paste this text directly into the masterlist, and also avoids any typos being introduced. If posting the text in an online forum that supports BBCode (as most forums do), be sure to wrap it in [code] tags, eg. [code]copied text[/code], so that the spaces are not removed by the forum software. +
Remove Plugin User-Added MetadataThis removes all saved user-added metadata from the selected plugin, and any unsaved data added to the plugin since the Metadata Editor window was opened. +
Remove All User-Added MetadataThis removes all user-added metadata from all plugins. +
+ +

Editing Settings

+
+ +
LOOT's settings window.
+
+

LOOT's settings window may be accessed by clicking Edit→Settings in the main window's menu bar. LOOT's settings are detailed in the table below. + + + +
SettingDescription +
Default GameIf set to something other than Autodetect, this overrides game autodetection. If the game specified is not detected, LOOT falls back to autodetection. +
LanguageControls the language LOOT uses in its interfaces. Debug messages are always displayed in English, and any plugin messages that do not have translations in the selected language will be displayed in English instead. +
Debug VerbosityControls the verbosity of the debug output, which is written to %LOCALAPPDATA%\LOOT\LOOTDebugLog.txt. +
Update masterlist before sortingIf checked, LOOT will update its masterlist, should an update be available, before sorting plugins. +
+

The games list allows the customisation of which games LOOT offers support for, trivialising support for multiple copies of a game and Total Conversions. The games listed here will be displayed in the main window's Game menu when LOOT is next run. The Add Game, Edit Game and Remove Game buttons are used to edit the list. Each game has several columns, which are explained below. + + + +
ColumnDescription +
NameThe name of the game, or another identifying string, that is displayed in menus and the main window's title bar. +
Base Game TypeEvery game LOOT runs for must use the plugin file format and load order system of one of the following games: +
    +
  • TES IV: Oblivion +
  • TES V: Skyrim +
  • Fallout 3 +
  • Fallout: New Vegas +
+
LOOT Folder NameThe sub-folder which LOOT uses to store the game's files in. Each game must be given a unique sub-folder. +
Master FileThe game's main master file. This is specified as it must load before all other plugins. Note that Skyrim-based games will always load Skyrim.esm first, so this column must always be set to Skyrim.esm for such games. +
Masterlist Repository URLThe URL of the repository that LOOT uses to update its local copy of the masterlist. If set to an empty string, masterlist updating will be skipped. +

+ Masterlist repositories are Git repositories that are configured to allow unauthenticated read access and contain a masterlist file named masterlist.yaml in their root directory. The LOOT team maintains a set of official repositories for the games that LOOT supports by default. +
Masterlist Repository BranchThe branch of the masterlist repository that LOOT should get masterlist updates from. +
Install PathThe path to the game's folder, in which the Data folder lies. Either this or a registry key must be supplied. +
Install Path Registry KeyThe registry key, in HKEY_LOCAL_MACHINE, that contains the install path of the game. This is used to obtain the install path if LOOT has no previous record of the game's install path, or LOOT's stored install path is invalid. Either this or an install path must be supplied. +
+

Note that for Skyrim, multiple copies or Total Conversions will all edit the same plugins.txt file, and so they lack the level of independence that is achievable for other games. + + +

Troubleshooting

+

If LOOT encounters a problem at any point, it should provide an error message, either in a dialog (as is generally the case) or in its report (as for errors encountered during the sorting process). If LOOT unexpectedly crashes, or you experience a problem for which no error message is given, please report the crash or problem to an official LOOT thread (see Contributing To LOOT), so that it can be fixed. +

If the information below does not help you to solve any problems you are experiencing, please seek further support in one of the official LOOT threads. +

There are a few general reasons why LOOT may fail to function correctly. Check if any of the symptoms listed below fit your issue. +

+
LOOT ran without any errors, but the load order hasn't changed to match what LOOT has in its report. +
Make sure that you aren't using another utility to lock your load order. +
If you're sorting for Skyrim, make sure that you haven't replaced or renamed your TESV.exe, as this interferes with LOOT's ability to decide how to set the load order. +
Some plugins have the wrong or no version number given in LOOT's report. +
No solution. +
A game is installed, but LOOT cannot detect it. +
The game's Registry entry is missing. This happens to a lot of people, because Steam likes to remove it whenever the game is updated or its game cache is verified. Run the game's launcher to add the Registry entry back again. +
There are no line breaks in plugins.txt or loadorder.txt when they are opened in Notepad. +
There probably are LF line breaks, but Notepad only recognises CRLF line breaks. It doesn't make any difference to the game. +
+ + +

Contributing To LOOT

+

LOOT is very much a community project, and contributions from its users are vital to its upkeep. The best way to contribute is to make changes yourself at GitHub! It's the fastest way to get changes you want applied, and you'll get your name automatically immortalised in our credits. + +

Otherwise, general discussion takes place in LOOT's official forum threads. These are linked to at the bottom of LOOT's homepage. + +

If you want to submit metadata, the easiest way to do so is to add the metadata to your own LOOT install (either during sorting or in the Metadata Editor), and use the Copy Metadata As Text feature to easily get it in a form that you can then edit into a masterlist on GitHub or post in the official forum threads. + +

Information on dirty plugins is very welcome, but for such information to be useful we require at least the filename and the CRC of the dirty plugin. The CRC may be calculated using Wrye Bash or 7-zip, with other sources being unverified as correct. In the case of 7-zip, the CRC checksum for data is the one required. In addition to the CRC, the number of records removed (the ITM count) and/or undeleted (the UDR count) are also welcome. + +

+ + +

Translating LOOT

+

LOOT supports translation into other languages, with the following limitations: +

+

Translations are best submitted through GitHub's forking system. You will need to fork the LOOT source code repository. All file paths given below are relative to the base folder of that repository. +

To translate LOOT's installer: +

    +
  1. Open the installer script at src/installer.nsi in a text editor of your choice. +
  2. The English strings are located in the section with the heading English Strings. Copy and paste this section into a new text file, and translate the quoted strings, replacing the English text. For the lines beginning VIAddVersionKey, only translate the second quoted string. +
  3. Save the text file containing your translated strings. +
+To translate the LOOT application: +
    +
  1. Download and install the latest version of Poedit. +
  2. If you are starting a new translation, select File->New catalogue from POT file... and choose the template file at resources/l10n/template.pot. In the Catalog properties dialog, just click OK without changing anything. +
  3. If you are updating a previous translation, open in Poedit the loot.po translation file in the relevant subdirectory of resources/l10n, then select Catalogue->Update from POT file... and choose the template file you downloaded. Click OK in the Update summary dialog. +
  4. Edit the translation file to add or update translations of the programs' text. Strings that were added since the last translation are displayed in bold and dark blue, and strings you have edited the translations of are marked with a star to the left of their source text in the main list. +

    Some languages may use different words or phrases for different contexts where only one word or phrase may be used for all contexts in English. While no contextual information is supplied to translators by default, it can be added on request. To request the addition of contextual information to a text string, contact WrinklyNinja, quoting the structure that contains the string for which you are requesting contextual information. +

    Some strings to be translated may contain special characters. Different types of special character that may be encountered are: +

      +
    • Backslashes \. Backslashes must be escaped using another backslash, so if you wanted to display a single backslash \, you would put \\ in your translated string. +
    • Double-quotation marks ". Double-quotation marks must be preceded by a backslash, ie. \", or LOOT will crash when it tries to display the string. +
    • New line characters \n. Do not change the position of these characters relative to the surrounding text, they are responsible for creating new lines. +
    • Words containing an ampersand &. If a string contains a word that begins with or includes an ampersand, the string is for a menu item and the ampersand is a symbol placed before a specific letter and used to show which keyboard key can be used to select that menu item. The ampersand can be moved to be placed before a more appropriate letter in the translated text. +
    • Formatting placeholders. Placeholders are used so that LOOT can substitute text or numbers that are generated at runtime into pre-made strings. They appear as a number surrounded by percentage signs, eg. %1%. If formatting placeholders are used in the untranslated string, they must all be present in the translated string, or LOOT will crash when it tries to display the translated string. Placeholders can be moved around so that the sentence makes grammatical sense in the target language. +
    +
  5. Save the translation file with the filename loot.po in a location of your choosing. +
+ + +

Credits

+

LOOT is developed by a team on GitHub, with contributions from users. A full list of GitHub contributors may be found here. An up-to-date list of team members may be viewed on the project wiki. Unless otherwise noted, team members can be contacted on the Bethesda Softworks Forums or on The Nexus Forums via the private messaging system. +

LOOT's masterlists were largely converted from BOSS's masterlists, and so credit is due to the very large number of sources and people who have contributed to them. +

In addition, the following are credited with application-related support: +

+

LOOT is written in C++ and makes use of the Alphanum, Boost, libespm, libgit2, libloadorder, wxWidgets and yaml-cpp libraries. LOOT's reports are written in HTML5/CSS3/Javascript and make use of Polyfill.js and RequireJS. Copyright license information for all these may be found here. + +

License

+

LOOT is distributed under the GNU General Public License v3.0, aside from the documentation, which is distributed under the GNU Free Documentation License v1.3. The full texts of the licenses are included with LOOT in the accompanying GNU GPL v3.txt and GNU FDL v1.3.txt files. + +

While the GPL license allows anyone to make derivative works of LOOT, the LOOT Team encourages those thinking of doing so to first discuss their reasoning for such an endeavour with the Team. It may be that what the derivative work would do differently is already planned for a future version of LOOT or would be happily integrated into LOOT, thus avoiding any extra effort by others. + +

LOOT has been specifically designed to prevent it being locked into the LOOT Team's official masterlist repositories. Nevertheless, the LOOT Team appeals to the community to avoid the distribution of unofficial masterlists, as this would only hamper the effort to create one set of stores for load order information. Any issues with a masterlist are best brought to the attention of the LOOT Team so that they may be remedied. + +

GNU Free Documentation License Version 1.3 Notice: +

Copyright (C) 2012—2014 WrinklyNinja
+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 file named "GNU FDL v1.3.txt".
+ +

Appendices

+

Introduction To Load Orders

+

This appendix provides a general overview of load ordering in the games LOOT supports for those who are unfamiliar with the concept. For simplicity, the game will be used when the text refers to any of the games that LOOT supports. +

Mod plugins for the game are files that end in .esp or .esm. These files are created by the game's official editing tools, or by third-party modders' tools. They contain various data records, which cover almost all aspects of what is in the game – NPCs, items, races, interiors, worlds, quests, etc. – and can either be new or changes to the records added by another plugin. +

When the game is run, it loads each installed plugin one by one in a certain load order. The load order is important for two reasons: +

+

There are a few hardcoded rules related to load order: +

+

A plugin's position in the load order is often displayed by mod managers as a hexadecimal number, from 00 to FE (0 to 255 in decimal). The plugin with position 00 loads first, and the plugin with position FE is loaded last. Hexadecimal numbers are used to display the load order positions of plugins because these numbers form the first two digits of the code that the game uses to reference the records that the plugin adds, so knowing the numbers allows modders and mod users to determine from which plugin a record is from. +

In Oblivion, Fallout 3 and Fallout: New Vegas, load order is determined by plugin timestamps, and the plugins you have accessed are listed in %LOCALAPPDATA%\<game>\plugins.txt. As such, it's best to use a mod manager to create a backup of your load order. In Skyrim, the load order of active plugins is stored in %LOCALAPPDATA%\<game>\plugins.txt, and modding utilities generally use %LOCALAPPDATA%\<game>\loadorder.txt to store the load order of all plugins. This makes backing up your load order as easy as making copies of those two files. + +

Dirty Edits, Mod Cleaning & CRCs

+

Dirty edits are often a side-effect of mod creation, and are often due to bugs in the utilities Bethesda has provided to create mods, rather than bad practice by mod authors. Dirty edits can cause a wide range of issues, including incorrect game settings, missing content, broken quests and crashing to desktop. The more dirty edits there are in a mod, and the more mods with dirty edits you use, the more likely you are to experience issues. +

Thankfully there is a way to remove dirty edits from mods relatively easily, a process known as mod cleaning, using TES4Edit, FO3Edit, FNVEdit or TES5Edit (for Oblivion, Fallout 3, Fallout: New Vegas and Skyrim respectively). Detailed instructions and information on mod cleaning are available for Oblivion and Skyrim, with the process being largely the same for the others. +

The problem of dirty edits is largely a problem of ignorance on the part of mod authors and users alike of the problems dirty mods can cause. As such, there are community efforts to raise awareness of dirty edits and cleaning. LOOT plays a key role in these efforts, as it holds the complete list of all known dirty mods (as does BOSS), and it uses this information to provide notification messages to users for any dirty mods they have installed. +

LOOT identifies and describes unclean plugins using four key pieces of information. They are: +

+

In addition to the above, there is another type of dirty edit known as a wild edit. These are any edit that is unrelated to the purpose of the mod, and so provide unnecessary opportunity for conflicts with other mods that do need to change the same thing. It can be difficult to tell if an edit is a wild edit, and so they cannot be automatically cleaned. LOOT can still notify users of wild edits and link to information on fixing them if the CRCs of plugins with wild edits are reported, along with details on what needs cleaning. +

LOOT and the modding communities rely on user contribution of this information to progress. For information on how to contribute, see Contributing To LOOT. If you find that a mod contains dirty edits, you should also report this to the mod's author so that they can fix it. +

Note: TES4Edit et al. will include a variety of junk records in the ITM count for a plugin, such as new empty cells that are automatically generated and are almost impossible to remove. These junk records are non-harmful, and LOOT may inform users when a mod contains these and no true ITMs to avoid confusion. + +

File Permissions

+

If you are running Windows Vista or a later version of Windows, LOOT (and other modding programs) may be prevented from working correctly by the UAC security feature. There are four common workarounds to this problem: +

    +
  1. Install the game outside the Program Files (or Program Files (x86) if on 64-bit Windows). UAC prevents unauthorised edits to these folders, so by installing the game outside of them, you remove it from UAC's reach, allowing you to use mods more easily. +
  2. Deactivate UAC. This can be done from the Control Panel, and will turn UAC off across the whole of your computer. It is up to you whether you feel that you have adequate security measures in place to do this without risk. +
  3. Give yourself Full Control permissions over your game install folder. This will allow you to make any edits you desire while keeping UAC active and on guard for any edits made by programs you do not run, and also means that you do not need to reinstall your game to a new location. +
  4. Run LOOT as an Administrator. Right-click the LOOT executable, or the shortcut if launching from a shortcut, and select Run as administrator. +
+

For those that wish to take the third option and give themselves Full Control permissions, here is a guide: +

    +
  1. Right-click the folder you wish to change the permissions for, and select Properties. +
  2. In Properties, select the Security tab, and click the Edit... button. A UAC prompt may appear, simply allow yourself to continue. +
  3. In the Group or user names box, select the Users option. +
  4. In the lower box, check the box opposite Full Control in the Allow column. Press OK to exit. If a UAC prompt appears, allow the change. +
  5. In the Properties window, select OK to exit. You should now have Full Control permissions over your chosen folder. +
+ +

Version History

+

Only program history is recorded here. The masterlists are updated far too frequently for their changes to be concisely recorded here, but a full history of changes to them may be viewed by browsing the GitHub repositories. + +

0.6.1 - 22 December 2014

+ + +

0.6.0 - 05 July 2014

+ + +

0.5.0 - 31 March 2014

+ + + diff --git a/docs/0.6.1/images/Thumbs.db b/docs/0.6.1/images/Thumbs.db new file mode 100644 index 0000000000000000000000000000000000000000..fa730e1802998be9c8307d2fc440d0483d3242ae GIT binary patch literal 75264 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 )W(`%-=VhDr((O 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 literal 0 HcmV?d00001 diff --git a/docs/0.6.1/images/confirm.png b/docs/0.6.1/images/confirm.png new file mode 100644 index 0000000000000000000000000000000000000000..39513ea6f9d1dcd7646aed049d4feba81e272e24 GIT binary patch literal 33302 zcmeAS@N?(olHy`uVBq!ia0y~yVBW^S!1$SiiGhJ(_9QV&1_lPk;vjb?hIQv;UNSH+ zu%tWsIx;Y9?C1WI$jZRLz**oCSRpCUJ(p{2hS@xn`0SAVW5Jq8Ab z3$iW_YjOkU$k>J(C~oR&Yc;=D@%T_H_xk<+cKrxvKebB+tf-`*=HpTE{V#p>jvLa<)m0N285kG@l$aS9806lzoT#ruj9`*@AKdO|Em9KuUD=2<&n9Q zmJZ+EAKS0lciD?7{eRK<|M4aHZ}FcuXe5Y%+!uCY^8a7)-Su;4M5vcM^IG|*q~qV+ z37?;zzh8CTxwqcxN&I)aUyb{Y|9^Kf{^#cZzw@2NV`YN6yH_3gf66;wM&@72|NK9f zMfZQ%E5Gl@y#2qAMepDJqj0lCgYWyN`}cm`eXZb+v)z1yqOgNY*2>QR@!-He^Vyt> z;~4$-DZkn;c0Bw3|MU0%oU@5y#0@+|94D@+4p<*^uM3D(tqE`Qm|+;H_#%Tevy^=r0@D(x?HY&)4BQ}MXB z=;i$T6?;{TTn^-%{POzg|8K2F*Vn&|y(axsec!)x`{(_g5y{5zs^Vw9dfcZn+pZPg z_g>up|K0t0S0?*%Z+Wuyz5S0hs!mqn+dt~pe+sX=sd91B)Y?pj1*)OUx?y3_il17! zuf5LKnX32awev)G|3AkTtJ@Xa-M_yi!DHF~-<|xm54P6@>Fv$?`{&T5*X#d()^|H= z#PHz#lhdrPFRfmse|G=daQls0C)B>1<6)*7aD3K0Dj^iPH9G zU*iAHyL)}#|M|W%_wV@nd(-cqPrl#Po;3AG>Ed6Z|32NnH>>*3`?bdXwZSR35|^&7 z^Z%WiSpCs;viOwUXU}yl`88W6q0~2C>Sp5qzw#&NJ)5)FUn=DF_J{MNO2imA&izQf z+q&mbV9{>HqRf|*WUcF;Ubp*mcmJ>X_s`a?|85)p|5Ua8ip%dS-<$3(+qd=4t=6UU z_veW*G*s1n`Qm-;_r0*&ox5|d>qq_nam$}sB*Sy>ttr>*zC7N3e*rs>Oy%;gH_ZR; za(en9GJV1^-uWN+xBmSRrsv-IrhdN6e(g_J9|%PL|NP$cvDml$e{Z&HPfSgvA?@-h|7=kCJV7 zN(B~0D}H({e(L|8FOTd0EMGqV$EvMg^iO%`|0?^o@&8ZzBCEgU@pJ9I-dQ<+Zv3tf zpSjZ*86v80fBS!I|Ns8*JmX-;JwLDvNEMEWr{d_?s<{JrG*MG_Xub%w$+6LiWE7hiQZ~9kX z^DWW#hQps;yK1+m^R55xU$g!DjzdT0z1^P@=x%l{g{f!&+X%@_I^1geDm}6<#oSa`p>U^^m@I$-sN=rzc1(8 zef;tI|L?8b&(H1qxcRz72IGR6+xOJ2){a>{;o%kiy+3ssxwb5c%bg_i;nl8d|LrF4 zHEIg~x9`+qvn%uWO#QIj-Y);yx;0j7xpwRdi=U--^;fP1!joS1!{NBF9%gsF5%HCJ6|69;@{oLP(zt>j>w&Z^1WoZu4yRv$} zTK&hI2OCdpEj@K?#l1UKP{*)cy>`2RAwvD_SEcwL&+FrU{XBo4jiRz1-%yzuVs~ zJXyDvYtOE0akJnq|Fi4f`uIQpzwCXzJHM*<$)XSYO(N}_>OZfIuQ>H<&P*l-Vf&d| zLMoTM^Pe}njMx6_&)hxBSVNw^lb#N00vV33to;Uxz{h!A({xYzqAFP@hE|r`=rCLAt zZ)y78b!P7E_B(8&zhD3Q=UYMQ+j&;ZTfA26w_1A8TRDAi+0^P2E{n7Nn(f)f#t^Ib zWBu!`iXcK*Dc`>I`@8M?lGI*Vm;TaC*Z;o;Ty(@mqEJ%qh7$?PZmmp0K~$ zchUz``AVNUJHOJPqT`GMs7Z97Spa0k2L(vWhy&an;CD)4U|^uNl+)9q$Up9Xc7q#0 z=jPkjzmDaPtvYIFd%N)4RB`zoztxN{?rN8}%?n~^5G^`f%I?F(aN*3^`IQAAe{tUS z)}OQIeV_F9yt`6-?b~y13URfT{JYh9qGk&70j@{Iq6|@&b}D|7&fk-`Z2I%7*H2mB z&oN^-;Pvu@^6GB>Kizt}UfkJPoTfA*_x3hHC1wZjD6WZ;-8h355$X=@Qj(H}nhXbS zMST~r{Qg_K{=sKf<3Qt^LL1i{Ub*Be7x(=C4hvkbysEQLU$*3_iQJ2beeTn|FE}ro zI%(}B)7xjHq~!Y<`>)+f%HD2XQsXm)hvD_2(^V6Hzx#QR^&$KBi0$`fUZ^}({BrKUUkhD=a_X!tmpdA3OZEh^sDdGF-~Ypf@{RXVdQMr>1UOf4=U)=lR=> z=kC-}+~mu+-#GD2aQ&9^%auKKGH3Xug@&G6-q8hLH(%B+xL4vsg2VKs64(qi)+<{zo*{l%IC|7{NCbqa&}Gn z+@!y4%VUDK-d?eZ`8}`g`mVnIxf(ldU#9t3GBkvjx1DG`|No=-?>h5~f1=XgeZOD& zdtdUWSudHdh40HSx|^0i|No9TwQr`~y#4>m_c@aL|3~Cbkl7!vry~A)(dCmi)xYJV z`Csg57Qeq{(z+~H?>E{&+g7YVv{hmaI2Fb`D z&%1b7^xgj}%m2NYrvGoLto^^I;`u)pJ2Z>f{Q7q6O8wi8En276-PS7h*v01aLw0BB z+6VUxJjKgX_MFkUd3|pAy`P8W|6TA2dD7;*@WR&bw`Rxf_#S0wd*{-1R^QN&m8*;* zx3X=&mKK`&a@jBayM4cA%Vk7MT`;x2l~?pzpRd7TmyS!=-yrdL9e*E3H)gR<>c8Lp z++r1cGJBcU`P1`c|Nqdvc5=^u^_g6gRzG?^=UtE03$ES2-&H!8dWNOW51$M2<+1M8 zwD4*j)eBPhl~+H@UQr``TXt8LNYh`pydSNhGOTKD=l(wREIzRHSX{r%9qs1)^}p5{ zwJ)*0{QSh)t+T3~SN3*>n|aNfH*eqTb-U}nhSy*9S#Kh^N7X3of5pB(Z*L!27Uo-~ zC;G{(&oVqGIz{wpky+;1o+Gc;8aY%mteIEJKQX!bw~yB(^{KTRzu8xu$u+sRZ_ZWm z|6gq1{r<)^|Nj9;?^3zH59GdIGcD|Xmp|#+wx15htE*B@K7QVBAFomKuixK{S1#K% z`S+{3T3(O3cPsw0*%V!WS)A7T=gV^Yy)T!|c1ha$p6Skazw_OhYLA7LjK1*eOP`4n z-ube})AVvpG*j2!-S?N&u;lYMT;1?aag)XVvsRBqit4L&+pY@ezhulgb7PE>Sh-c# zze^>8E2qBx7hicc(qElub^~OW&h8N>)tTU_1W8db^&Ll zi>b6yPPba!^GAyNM(U!Qo*Nr z@@vBO_w2d!^JsIHX?^C+=}C{jubz1D(AjJ6fAMbN@L@Yywtuo+>S?d%-&x-5_7Kqd$h4~@}s4f3uBC;!)8{UaQLz<|1{IIQ}a5)eOGyj2p;IH2<|su@v2+& z^a>wazJ~$LCw$igwU;Z(?#|koXt*@$Y38(5o0j?AZR+ggv~>Tl?egZmrQ44hgdVMx z4shKb^VW9fThp`M;aiu#d-rLdlBiwo3EtU`N|WyXn>qP?SyslD)s1JD3m;Qj&Db*Q z_d(w@C$*9=<8w-R>wG3&dAEPR+2?4^({hg=>O5L^VeYk6#aGf^$W(XlEB*iXepbv> z?YFmhdA2yHudMyd?R)=NU2$yY#7QyvUsJzsn)OPhI`wR{YM=ky?Cpy_PF#KU8OOUb z&t8A^UcacZvGMz!=eEz!&E5TK)#@(--PZ4REI!+KV%cR0p_pSCL!?h_gZFjEqR>eNq88#!esq%F6y-&UQHIJR;e@*b%ZhXY4k2ykj-Gtpv zasT^!Bb3^%{9U1|Wux6bExai`QEA^9tLR6!8EjY2YdHJ)ZtT9A+X}l^h5o&oXvAPY z+s0*`&9*NO#Pd172=Fjyd&)My|8?qp7;oQ!u1kTR7CN`P?0P8B{UhhC)@PWUX& zyY{1@XM4%>rSG0yu|4HDBkuY6t87`7vUfYLzOq;!y3F~CWch^M-|sbbN=RS7`QhG9 zu^*-m%U^xWpSRogYx(r{cb#Gv^Y5CSh~}|P{Bh<=_|Z9G@pcKuH=ZaOHA^>qUE1%s zZ{9jqK^gnMUoQ8yN4Vtw-o~-u%h#U)N|){D<$pQCW||Pzzv?P;>g=!6cD-oaTa|cz zZPLcucG^xBmX9w?IhoZfX_RB8G(}*mOY@bL+$WD_wexL1vYfH^r}_EI^LFiC&9~od z#qG~eT4W~HT&ar9jf&Em>h=8m{QY0owd?J5;>#(r z{(Y*O|Bf#E#;wmEy7%8NxZ7xcui~(e{`uAGr3)2<%}_P?~*6sOpD);ubm*+z#KUJUVW%~E;9);8kbFbW;=DUxT@$S=S=WTZUopkz4%iE>m ze)r0c_eO8e<8412y)8%ZzH+Hu@G?!)m+#bu3p=zxM?N>LxrFc^MR~n9Z;+Ff*rOt+xURsqAK)zfauKXm7WeGX3Z842A~Zb=^)Wg<(DsH#beX zzx%>5P9rO$;CYe{87DTl=iQKrym{|RKswvWM=#d5yx;lo#-E9Y4fnlaVz_nPRk5h9 zZd-o7&+^5}%73oeY)~q?Jo8C|)x1aTm#Jx~LIf z#>nvY^&$aFy9smFUO&EcoiKlY|M%H~5|bob75^LC+*yAt&4SrDL`l8NJE={kY2lBU zjIw7lcdcF)y^`yNO>67UQ|0Gv_ip}NIrp7`Qq6p6QTJOHt~^kg-o(Ig`l@g8#K*!< z|2zosabKjTq!D_(Q{Bz2PsR9h+PpVX){Fd?ZZ57?Kbn)j|8q{(6``F^bBrc)@UC3q zasJi3Rb6)qact3ntpA0)W(irhh@*j?#$ia+G;7t zczT14h*wGqdvs2IyxPOJihNAEz941<@Gz4ves*R-j@RlOij(qQg!v6wz=zee>iyR%Dl<0bLRMe zzv$hQr=Z_6BU?XtWvZOTYB#j=%h^}GKgYbmQS{jF*t6V;@rI7e zkJ~de*%@BDv+Q%6aVa}Bxb?)VMBzV2Oc<^t-}gGXK*3ePq2f^%3Cz1C0l6;)zpcqQC8 z{nuPo&HwMxcmLctb>~ADH@gj=Z*LF%<+Ese?QP??&$^PNMWeOnUT6!wK0VC-v}%6m z`n}BIWtFV2KdhP}qOY{Es6A@c#@gRylZyS}lX6PKoP#faY4x;itd@s+q`XOF3| z(CSs^_cE2Ao%(52(DI1fvt4^v%z7T%9H;VJ8hCr_Rl_ z_Fb3Sx#eW2&$}ql6hy|y&P`Qad(^kglKeTRG-S@)O-glg!8dn4ym7+LRzcam&PdU} zUTIfZ-QE8w`%S-wR=Vlbl%D!ja`l(aiZeYn#tO#Tt1m3tUVCj_SlArTx@)#O99Wt* zu5>IljQhJS^TDs9X=#%|?ecpGt*d5fKh2(}8*%%SmvmoLuw>|o)A#28EIj@Gw?{97 zXxLUo^R)M^c@=vy6KhN^KmU_<@y(rkp6}B-|4x2os$W&L?vrz3sOs156>RxFJv}lX z_pLYkyk4Tie79uW)Vs^?PjDFl9BI?7KD z_U}xN+RwW5U*X@=`scJ{=3Tfw#mMEWaj0SO>#x68t=+k9)+|@)H#Rp}e%{ym_V3G< z4f_;C!?rr^5u17Hdo!>1*B@d3B_dQK%(%FVr;5k+o!n5bzkk`1*}rR-)|Y#)f2p1&Kdap$*XU}3qdfzhIP(O22$0$)$)(2osgHj^pdeeYFC>v8_& z&)tr5w|>01lkacn-#)edJ1n>B?kS%CW0kmy`|{eC;kz`0tJanTckHp4V`my?B5XRD zmqnk`p~h++-%{>J>;JoCUM;>g>9kmzc@_VyT_^5lf44bRcV*Z1&7GI$rXD}9RAOrD zs^w<4ggJ7eou%zJpVF2$`xAs$-P^eFRzdWc7w0=(-1Onfz50Ifwr3AgbQ0QPPN=Q0 zSuc5cuG;s)Q10aS@3u2{-q{klt+Mr>%bYp#*KL2t>h4;;{nMiUezv-ci`n0NpV~K} zcy@`-rr&>6?@eSZ4!e_MuX`bblRa676|*mt z#~j(0p7MX)t>dA(QCF4Zm?d~l?7Q48TcMA0 za~3$Bd@z+^b`ys~`n(G?EGgZUdG1VK(uYMl>qd*zc~bf!zgO!$5X&w)l0AQ_ zQbtTJ`27Vmz%+GGnQye!K85}!18^s(}|~E=oN3jkU2kE>4?%U_ec?oZ7*IvS~XXc^SkbxZ{GxN=XQMS*idb- ztm<^it}Ped&G1gp4T)9ke0S>mbfK)Gy5)7!>?a~^TTeAktKM|u_WC}f63)Ut(d9?g z)UWd`zP)Cren9re&S~b$3tKaq|Mg6&4%RS-$5*GTlt$k>FHMzr^d;P2_{ikf*c3*zCN~`Kh%-7{^KD#Q?U6qVC z)km@2xf9vn>$`X6)#}?k2_12pqkZ4WZSdNgmEm$(=KBFo+XYG^d2%9V@Ez{$`|?tp2MGlkX{oW&Ztt_bxS=8ovDA zqeoX}&SNYT>TRh$FLFHO;-St(FOBu4rIoilHPDarN#EJwy5{JskD|XS#qBn$2&z8$ zeYp7DzqAF}B7W+toG!6he%f_vkyO=23$x^tt2G>pm^k}+PO2yHq<0rrS9MHaOgL<) zxZ&;9@YM2UKd$@SE_rBrIh0xVQRm&v)e^zttw%d8<6piIW!xy`sCZod^}G%9I-84p zHk^>zRCUIoJL8B>-JUDiRTHb(zFBO4{nh8h!ZXjztc#iF2O6KQ+moH6RRt}36qX0wCW!9BXSeIH|lrc9ppxxW{-^VfZ7R@=TXzwYzw-<2<<85kJMny)uQ zD-s5VYrQ`kU#9uI+`37UEsDWmdGZ3*3nz~}Obd#ztXj}IlOyLWTau z`s}CNhIPTOPA)4u8l9W6`07>VutKZkOAkx3Pg~u(HSQ0Xyp`7(*3z13|HpHaUQ+&rmw(f zx$?w`ruMDw>pNA>>&WGse`08Hs=N5A|48bl=LP#sr|Pqw+{o2E)7Dn^`Ih9u9JM*V zUuI}Be7#%we6IbUhx}(gR@2r5*>VFr7mpi{~`tjO6aejIC(YmS1|Jt6uUc#<2CCJ@%<|1v~Q@g7p zydO^v^`05IbInQq)TdLEYa zS()E1X(4!5aGq^2*QCXlbx)@HN3)l&w2*dCzI^#|`Q6g%>;Ju4KP%H*^5BtqKXYzc zWYvb&Zpvr4cza*$zi+vYRSUFK!);Q&aNSeMoGP{X)a@Iqu6;YX>!!-y6HBkml(XFP zFyZ_gpFr7{-G|+~_p&d}I^&%3ZbpZ7wOY{bNm)LJ&X@{@-?CK*a;aOs?Ax1Z-b+`x zTOAW#Ww!Bw)5deANgKQFHgg+ITYF^gq!nRvt}lM-lCosK`sX#B8;Z~Csr^>YQeC=J zcDKvfd&2darpdmmdQZt{^F%IcsAjGe@e?t&uHsv3HY?}|9Rqph!0y*d0dn}%%sgut8$b4-JD`u0g#-uWoM z`@pW>Fa7JQF8hA^w`k%-!MTrvc6`5ZVqZ?>AEaD$dRFs_(zUaxy$3}9d z3zuX(JhZ4wS8Tbq`tJ`3Ys!{B{K6>eaJqLBw}teJg}d4>x8Crv&~A^^=8by2f9AWZ zmEnrz%OYK0+*tJHPj}02F~92S?zcyq-{+Qetny~L82j^IkdyDZ_gCKUVz6AjJfL#< z(|J1IX5~+1SOrS9_kZ8}UJ`ZW`15mftIt>8Q#LB~bA7lv*!U#l{TUJ8^rR2Ja!K8# zUaS_MV&(eA&)c7Ixq9#usbxx$ITaC8f-X-Lz4_X(Cc9XFHP?$bR%^db6Zx-ZbnT3X z&y%~_Vk_3151p)L#It1)^SQEI!@GAsP@vS+hw!f&PPTNZ~dx@Z?D`FhE0rzaoo$*QTI+@ZTC zJ(XS9JYc7NX8EnVJn<7xq}1Pdrz@6T{@wKHyu*K&UKCz>sPoaCdGkcAZqB~_RqO8s z-K}O5saL54(T)Ny*OTw^r!v^c)qFU(``xbBhvolm=$N#8`EvQ{H->XpJ`a0c zzkO%!F=ca^$$L)+)%{61#MzeSW|uB2I`d|VnxNH^NlLcHMrrNlWsQG!m=<~Hi_V|0 z^or5^;#ZbG^8&M!^ukR{XI%fRo4)Pra%*OJ@;m!F-|>Wd2YtDk&-nPr;WJjn~jXaAk-y}4E-x5)h1XW6BRb3?Pt_iVd$ z$~$ep&%WP#%GPu3`@Ns>|K2B;D(1g1dcAnH(-T{3?{mV^MgC&xXV==-DLsrUbh_%= zee@#hZugxVJ+__ zeEx~=sihy@c%FV2+t-zFN%M+*T}bPskBoxtymdaZtwyz$`kf`y^ z)2BpN>iL`QU#45P)$+8}tL@u%Et#FMt#e}WW%c9y;YS5RbH!G_Fi(9V6*BM1=1jh7 z#`OP3?%kcg^2qyA(^Z#OziZpQGv4Sb&;QzYyVuuzudn_3Ey#8E@072lR~@=5lFDys z9lPS1SeSIqeAnu|=}x_66Q=h+wYb&r{rii_8+RI>yKFDjJ0nzH|Le8a(|g;Vf6Zw5 zvhvEg*mr^F7CkNM*|f*fpGA10vbDIewesp80!j0)edBpkn0I~k{+a)toZIr|(q5KBu6F|5y1zCatXr;MntIZ~=kND>*}~Iash{cpzIslU=jCpVD{nov zWJh~`Jp5SQzC3?n!TaZaVXf_FZ?9p|c{ag(-PHc5c9)E(@&L!xrQ0-5*p)~3{$0;< zQ$5@HeecqxOS#4M{=7-Ium1UTI{SZTE7NaZSM8tu?=kbPlD&?SvR{c!Y~qHFcHfIdm6PwR+rF?M+>Rlk)aJ*7 zW+l6I)<>MW{X0H9NpXrRoz532KY4H0M^5$NzGz-MpDp$GjW@X)s2pFiYU!i)qU-W#MGTz>W=r|F-lXOYcH z0wI;X=4;y|9Tm5`t-W+xV(nI|TJt;Wqxz5izO(k=zv;@FU-&qEqtn`dyjyx~)%TOT zUM`bg@Q&$IX7)*00}{j;FSGAF-ZaU0%0Tu4(tC ztv`id&ydUb=(h3D-s`8>J-2VWz_w-2-}{W!o$?Fr?YN@+@Yc`Hmwf8-9KJO?46mJB z4)o3}5_n?pWR~>TStomY&-}1wV-c0k(-%}?X1K8R(!m**W=A>N^_iQQu9$!0!W^yj zDn=*Yu>IJ&qjY2AcOlT)kqFg~om2m;d^mOO+ODcePTXH#e~P-!zwyGY8~>#%z~(S8 z$YE=LmIQaqk>>l_A6}=sGs{R~$Lag`b?(#rZ|MnD)-A;b(9#{-U(|Y1>m}&r?rlPF!IvD?2kV(oX8kr|Z+V)n{xp z7rouEyzuhBnpBr197u_fu`>UKxfBUK|rw ze|fvs=IX7vafKf{Yj)`y?{(b0Ymu`1q|L#{Z}TQ?C=~7UkIeiV@%P8WEvole9E;Z6 zDN(b$P~>M_l)N&IDTU#HQEr<+WNB94^_T-wlT~=G&eZNwHM*9gwanW(Gw|MB-KfYj zai`7*X(}h&FZgm`fvj@4uD04+tC-bd+0%AvE&umyMWxm4t!uP(gW4k7=a|~)Obfd_ zwMy*Doo9PQyEHeye)DVfw;7YluO)529~iqQD=ODx-M>dKJX%{VpG&8g_`iQsW9QN5 zx80@GMOcBEVOsX&FG}Z^J!8M}_4bpTEFadmoev{cg~wjjeSW!^Q!x9e`jH&d2?=Q_ zN2ZqbFA{hdm6LUWXX*+o{_dw!bBv5{WjzVonp2~YdHmev;@V}_zTeKwWLR|ZnGa~l zZ-w0cvUBI&&JB?k*)s3YkBnvc9~y3%-{aEW9r#w^zOC78sjWwT#k?)=V7qa2^R%4# zuY^M`n|7Paylo6sY7YOrs&o63oC9-AmF`V1UiMpxq2cKb6~&_YwO7j(GSBLEELgR{ zAbn=`uBrm#pj+PJrN)l4NPIUA!DNhy+wvu9i> zFMeaQ)AZB+uRph3?kk&peete#XGKX5>-%z2IXnK#z4rEBrL+7m-_Kn$LOXsvS*=v& z>Q>im$f{EP@qxa~w8g9B=kx!pUG?rGCxZj`E=?D) zgHt>`jc&ZUyE!f0ThMKWb?>K_4T_CC@}b<>(|hFt3ODvl;6LJ8W%s^s!t}+xWmOj2 zrEkUVI=yzov^}1e1hglbyG&DGt0`uI%`V^Sw*c-sUCAFItm&Ut67>*F@vh zA~*iu{fkbVKmRIt7f(%TSaOv|bC+e!v{1uO7glskSZri#Zfka5!zpZbo?cG(+Q7aA8p1szP^KuOy_R$D z`trCkt<@Lh7~?J0DEwCSjQEx?o5Au^Z^Fv*X>&zY)HOctdwVuTB88D5!VvouXwv+7 zZ!N%6ptX}{X52m8FSq~UF6K0*)vFBd$)_G9$z$b<_6Ge`rq$%6u!Q;7P6v#VSvZ;{7JXJnh9DSQhA}_$H2hw zL&4=8AM5jl%%98|Una9MFhsC9J$WZkDrXf?dCjG~%YVza?)wZ347$pYMRV75UG`Ze z|2#@+OqgT# zBV1_7-_j1Qr<-1_fBS6hiDe6gUv3Y(RQ2V$?=h`sTb>?pUt7J-B$I*RmV^GL~z0#$rwz;z5FV9@Q*1n!+N^)#w?T6ND#kVHyIkoHaYqegh zqQeWb-|NokEW5haMU!F=^uymSJ|5u-C)g!O_%+#;$;1+#YLM^*L{0YeI;948%J<-a#b|WIRdQPZC?uuK+leUM-nPz{#xiS1&yo~gz-AdP1&Y$&#zw6q&?JTD< zn=7VA`OmPBe!UpfR8yO*ZvULCz4-8_=^sx&&A%@eJM)DML)hK4m#%VE-FvF4zY1S_ zx7x>{>^$!^{`mnj`J<=TySPo*p1vl36(igA+T)YUgcI+y#|L<)u3G;@?*Fcn|DTEW zt`j^x;}Re5(fJ)lrWfbsuh_`DXySiA*Oq;vasPs?gZo=IRG)6EJNrv{>zaE9s@{s1 z@G7;fh)rHw{&&~cgY%=}gPToO-Fm#nY5T$Q^C4SLt*v?+9_5_=TIb(}RNcp$tiz`9 z#Jvsw93LxalHTjGrhfa~QwB$pVnz2^rSi(z*<|?EUX|tezTY}6h+%_b&a{muCjVdX z@AI6VSN9Z~)^?QcO#RzyH&txy|M#q~KfTqu8*${oSd1Ku>XT|mDJ({5k zEB?Dwt6Y^6wyi(%&i?c257MQ6|0nmK{&;yR@0#;h9_)4#w|%`oCiU)0w={2Fvkm9w zt-QVJ*4Fu3{bB>}M(2p}|6@ut4f*=rUfq4g{grC^*Oe=qo~)Utt(`xcd4Jm95Atue zYe$9d_#R~`;Z)@2`QoGCq{*q`yT9E__w8%%nqV*1TX&{&qN^-;qEEQ{&g&(Yw2&(SKnX6y|WfHzqcKtPpBWnkK5|YCKBs0}^}uE6jlk?v&)FCF zwB$rim597D(KqVv*STA+F<)I5$C;6{*+{pO;{YCZUogty=&x^mU`d)3lnOXSl#y7K`@)n%c z`ZHVniUaHOvc1L=NUNbuTj6E%+dUWrR=xxHTLx@>^ZpJYTl{NJrops?B~b2$=3t& za#D`Gt9!of=b9SCr{V4zO{iRDmD?_a6|NU88Zd>wF^!JyX z<2S?OY973sea7XrT-}!+yw_j8Q+%8?-@C-2wPR!5j}O0WilriwA4MPBS^WHri^1(} zxvT%ito?LCxj&}<@7J_L%H}e^?(F{jiBZ_hGAW|vu#u1G#KJc-&vz{e_Il>Sdn#n< zj5E?3kKLUbay=?~;)yk0>V9Tx7IocN^!NAo*_;fsC;j+hyz<&z+|}G8>3!$!>-cYB zVAx@?ckeIBoR6HAERnvaGa|meIL6-}z3R%s^lvlcp8Rkzn;CeNFS0q5S-0r2qA z7suItXaAZAuGnpN2JL0*wEn_SB2+c;;=&iM$DVC`w)cdz=-v|yFI+nwwCtDnu_-~FnMrit#`*Aw(>2j4n4KqeX3K=Hvg)CQu1U? zvETjE`j(U(ool{dR6$)ysGC{$`Ha$SO9~!^yzxo-+W%K{+bzXS8f%0ZHazS&Z{_sl z>4$k?+UlP|x2`F+-0-l2q2$D^rMoLit1emHHAzo%H~f;*&leqiB6GR&&Cbo{GfX)q zhW~e#Ucft}U)*So*)yo;El*D=K+b)M9@d0b2VpI;HZ5fJq^_376bPnOGC z%m2FsPLa93|3zAQ*Z#!FPKDQ!_JvXD-{xz)j9D4fJU24EaJS^w)t9uoPn$)DW!7AZ zogK9&;Z%o=p#O`VcA<>23ksH9*?#!Q?u)VyZyGNJ4Vq1g`L?CB;PKJp+0S?nJbn7V z^x%>Pzf`+D*AA;yE^^JxJHBqytB5Z3MNg;vxIHySV^u~);g5`s-xr*jvqkLf!ZTCP zd|G(oj-hqlHm{Y&wnm@91IVoFwTh3;3Q=7<^KxiunC?51#eSi)B5DdhOo;lkz*K9| zJtxDh!8#hnZyrwl=EeUlrBAd?$MpJgt%TN-53cSx>vdc_MMPR9y;r1r@p?DD{1u8P z7#hx9xvN-Iv0n1OfLzbb@Eq=4@2~CKxL)H>Sg~JkoUrFAo0*wkd0q(TsuZR8XWl!q zO<1WR%yMGE`2^&WSz$_Jzgj3IjvNveQl})iq5ur&{g@2QHqt zCA6oL>A3gaW#T*2op_&%dh&V2UsXvVoO7j^4BTA2S@|9i?sp2G|cXO+JH77wp^@R@b> zhoAf_{;!I(Vq}=jr&#oK;^EF#x!*>H3^{VO-~T*l`nJ~Jb?uAg`wfG{dz?(^x5aMp0?m!Mj6i2FC8sPi=6m8BskKs z^en>#L5_)x36p2<{Tti6_{yF4`(JDCU(KE@v-#f*m+hOkpRbR3ddH~x_xx8+AAMhK zr1ZMGOf&FJ|62Bvdk4Go!#uAm?K6c===rWQ68l+q|6*F}A5ZljyB|ky{@iow?e6E7 zSC#yEygfqwv(*mMyC>N9uUIx^U$tBS^X$}(`|kU$Fg$lo=^xY#29wg$hQhAbyBA-b z(Ahjq>sxd6FP}ID#w@l5Q}+%Yh71j<+v%ZhepjZ>pa1r@_WaqAC+bqe(oKaoq%lMk zx13;TIQHoK{|9obZ#JZA|H}-1@$6@t;JWIr{L+%8!d?u9(T=_W#P~ zl)!J97B7=F?vD%QP5Wtb;9qFm*X#9*QZ|K$NB>^P`MqsR?9VI{p6o;aT)&*EuJ~F6 zUZ3)EI*(Re{ny|Lb7ijU{M?W-TZZpp+$qo7t>6{Vt5z$FQ_Y8QWS6u8rS z#!pu%ZGP38Wvkk5>aNV&ACT_d>c#ujEWW^eab4)w%4oeTgWnhKO;{DX{EFF` zz|4hrbpKWF3#czFnRIAo(EYv*e(vQh>F1|3J$X^$U3ByEHOD$NVTKJcvzLhPoMLrZ zx!qjm&CI!)t17a=<#R$vnq1czS>eL;^DbH8LA~-bcB(z{nq9n2Y0;M8;Oer~6NN6W z(%$*8WtFeaj)0uMQiYj$$MrU@vDkY3N^s_@C0l1)JX(8e{palMA*tsgCa+rZH0I*E z%{wmlScQga&(TOL`yvx?_wBuD;os6D%U=F`XSF-gZnc1JjLenhAik)@N=$kp!Pc&~ z|A?*65f7Wo6L+>d)M}r?;v4W)8#5He7#dP9HSDVLtX+rae0{otZEE=b zzoyYzt(TF@`KJMQ55IKEQJXW>dHYnh>I3!HZ}P5=ZOvH-nS%@HfzH8YZ{uFQaFw}!jK@jOVfq#{oTZ%Nj)16RfiQCY@E)a zd}glO?#u7eOcWL$n-}lsZmD$(nF9Zue^t^GO9$1k& zr)^`??N+I*^Sk3;zcBrkb>JQ2>MN_;+)U0E^3S=ztObf%;fp689MTk3)%UyH%EJ($ z7z3gjzWwKz)cZ!Z-RGQp4fJM-U7IG} z7{1TmCY@>Jtha}vwC4DQv@YQ-dg97ZTm0(LjUH9~Fc!oFknXv+FCWHUxUqWu)Sr*f z|9q@_F#h@fm*>}&3TjP%`s(O@Z*T9VK`;OO{Jj0%*9%L--(21-n;u{Jv2l04k?`8; z9~U2+$CMxNS)*k6z;x;3&9W2sNHQoaTKDLl^RJ6J>q<7>sNb@pj!|pQy1BPCa@mAb z_}$bOoztnlYW-wJ<6d@`zG}_2o7QA6ZQ7lZYio3lLw0icp08istJ1}MPcC>noin?C zYM`@I=$totGs@DDy?LVWz^Ovk%Lk5u%IJO9v|aA0Y=2$KX<6mMp9b1jxk}OH zU5)DV$^)IP^G-ch1|9ie#WB%3z9PlL-rwPm;gLfZjW6EvuV-dpU~%o>VVE76XK}@T z-TZvzP+vA>F`+L-e!C3r#jjt*wz)=XLAJ>&-D`$Y+xNeHc0G(cp;S6T$G!4bvkpN%Cf&dw@j5)B28|DL+cJf>%jt9zeH`tm+uc4lctMI(j<(_USXF;8aEx;wk5r)8m4 zvFk>cW3zmZmSn2yp4z?JRlED9_smG8RF*f=eR2|8lAo+fJ-Q^eJ^O0XS)=f$SMJN0 z`ls)nR=U*nl)>u>o7>utUdq}PbiQfU?K#_>3{%VI#@1hz3;uL2>diOnRo&sft9ege zjhAuY1y$hdZ(jM+Aa!@b9N*rR2ei#)yuYTU##zpv=iL#ZZKs&Fx{<|LS$W--YLQls z>q)`QX)BJjd|#HlanB^*G`Hy9JFBMk@~gbPQCYR_{H48HTOS8cdwDHyi{<2NQ~vJu z`}gOTrSx{`Kd~<+5+h*1MPTw>ue4DBEXia--nC z?X~IiLL&Ws%YG^~TrKeRWVq{_uAV<^$y^@a9vzIgNGN{2PGDz2l)b&h6uY(i67~7I zOTzwV6}mn=vNGV;m5M->P{z;8i)E%R7i?GSe%CLVuz558mVd&ZuI~>wU#`0|Cvirz znTDXx%qc3(Ywy{HZoK(Qv*)|I&ehv9{ddp4*uX>TxVdpSc-)-rLWp?liK9vX4YgO# zm#@*tsXxs3eQ(s4WBa<3jo)p~x2W~doAiEr(DAnc5g}9UOz-F0_x@-&dRMd|(DDMP z;W~{ye1go!(k*l6ly$s6z?psh$Sl@M>9`XA_iKtD+L}+BwRLxAZO5i*wd?1|m|R$} zqFc)LjeVDrz5VLymedEUH%nc1mI_($a`T$5iS2H#EizMI?tHoNr<>rWTP3zBj(NSO zg6~Vd@w;|s%gLNOe*deavVs!-+CE$8Cea=As&u8U{-YGZhTF2|zSTAr^&X4^h4V6j zogqI9pLrbF>2!7Xj`nlV(bL&!W?rhQ0V&8A3 z^-9Uf^y>z*qnB4o+UJDXn%uv=!uYBjWK6y~=`UnVzALq7PT<9&*pHn#MvKkTPe^S! z&t0U@bdJY2T5YqZb?xiS6Uz_%aJaNHcKtuO&(G_4uQH{Hw9DK|&&A!$&&pqVJ)XRLEwhsQ zllO9+FPMJ0-+Hqp^o@O#)ukWhZ@L!w1lE3jfAZ9%MYn=i8W&k^GP04<{z{cs=i{T=e9}Z{=d+qB(`2 z7E1k*Y9`&KeWz|WCmBC{Gr{(?&&rEu_Z_`7XK%=h8;{=1oCH~-dM`o5Pd;F)D|lfm z=fsVLCl~&Fb$8wSrrvk3C91DJLRvn~=if81OKDi}^H1B)=^?MpFkO#(;#7~6P4;st zuYFbM_Bg*_YsH=iw-2Y}UDvi&)^>R)TeiM9*7nshB~XJWdyc28x^AU$-PzhNOIyQz zxo%9ja{G2|kIVX-Yt_p6BbMHiHDbz}rTly9(dnK`3zl6G*KuDyyTgr5+;62uW#KHn zlr3(y-w(cc_i*RO&TDlar5(&$Pq02eDf;Qwy6=CaepXEq&I zV?|m|dRIYOMSaD*&gO?_nu@jI8P0xm;b!=7R2V!4*5?2l z16$Abvn9%yaDOfOVGeZHqBcu&jU(^$>^e%GZ>3lEphJ9;|-v}99FCvfSM z`@0t;J-N1J%dW0{C2?zwbCy^{g7?yyi2F@&0ah5FN#n~KD#Vw*Otj*Pw(2UnR@ii z(la^}jlM{9MSX01lCw82X6u&^J67!3v}I-Vzx0ZTHKAt;!@Zf>GP>0?(dsB_fF0dJ-5tFccOOq4A5q~Z01^#WA4Va&A-@}>{+`u zXLnTR`?RpI@XcHsjo&_s^vay<}Th)qp4+A{vGz*;mv90}j-{k#-*HU)xPG_fzD3HDU)t^7UJ=&Pzix(MorSHr*8D|= zR?o%7w;#Q;F8t-C+?87!PgqOyZWQ|Jns7-<$Z+%a{V@~tc^bA}u~jVkGuL)z`df<~ z5wkXX1y>eN)19OF^)1KiFQ+o~52)%KV++^$CJ$ORY`JxH`LiuG#@C;9eE+#I=vP3f zU+&Ch@XaG@A}4Hr==%LjSlh2>$AUJOnQ!C|ytXMh#PZ()$H3_?8V~NXTC6cA`eTat znscirN^cjR+WN-&`!6>2^i5$)&xfu#GD}K&_NFi$r*&7si{YGm4aAmSIkyJ6GGEng zb>SY{2B%#a3tUz1e9!W%Um^0Td+%St*FAg_y^o8pIe4S1{ltMZ6+XSy_KVJ4v2FjY z`_XlanR}i4-HXKz|Em1XADDM(4@Vhy_e@*cc}9*!w>Das37=D|IwQi=;eVoW-Lt0u zF}LJ)Kk%M5*L%gHb%}guJ67o5&c62Gt$eS%*=o62@7G?}m%eYDFZPwEQotqqiA1Wb zn!9`7mo%fjrR*hZ80KF)_H=KHl6PL{-?Lwy-}{)wXx!zTw|uW;?cUFuf+KUQ4(#Pk zNNqXwbkmRiALW^uD?_yA+SmWPwp(r&=p?yqkKbtP+ZBBGO^$-3;?c${>vp`^A=-K3(36!v|E+i#tu=@5Y|CfohZ{>S-bzjtJ9IPT ze95jI-xJPX+4yKpsw%%5|9nf)*%Q@Y?)!Jw_<9FNbV#*Ushi$hn;oaE%5L?z-rl@g z=iKq5N&f?PE>M_en!WOzh;E^ND(~)V8S9TO-BjTpme;YHao4uCZsyes3LagVu+@A2 z&6281RGx+QGo8e9XWTQ>a?QLsc zK7Xa$Z&UR5>-E=PX4P=4Hx^9vw5#F9f{S~9n$3H`QzH8JqpID7Z}0Exs~ufF z|6KlI+(*YK?VJ4SPu{Lr{XOZ+U#;Kd^*QW(W5=6)Q7cN~Tit(YD;pMpS2({)UT(5I zIXseWfzjMq8`Xj@emXes%*G~*=;@(VWy>^nGjkoi;x~1&kotppombW^5uG-D($mNq z@PN&NIiYqUGp(1k2VF@E(|sDbIMTZ{qNXq)Zk1T^+Ka-f`OGDf)gM7E2JvN$4;EP; z`c}QQq{gwXea%@x_Qxk0=dE1a8t`jNX@Go8_M!;TzL*&mNyU>6PnawHl_6p0u2-F6 zX%?G0I?LORMjCB%j%6)lQ*y7K#NGYMWuHZ?Wq(_2vcaL3%vyP3s&i{*hAk{pxwF0C z)_*-E%P%|A9l|9#WiEzKt2JJ|^ZJTwj{**_3^qEU(bA`TZl2~((*tpP^8Oy!B-;J= zm6(;_`%{P2;e#o^Bvzgj?3M|SzZZ0|F+Kd}xt&f=7o4z-d}A74yK$w+lf})+!Og!O z@-u7@+NI@k?eN6nbgz@;r|fQJtT}GA`Gr)+o#Gw)O{x}!SOm_wefjby^-L9`$z6U? zpZb1p-4(gd{qC+M|AcILr30cWt}ba1U3RbHRc*$v=Ec|FgiYSfz9wk>uYZwKmEF~E zx6k z;YotU@0|=w)%Ljizgkea&|+K9?(Z%d6W;Tmzo}m2yvAeBywV$>@t76olJB2+_QpMK z#nGofxb*Xx-z+Z^5nq0eWsQ7$N06I+S)eRf)Q2V{Y`>uzDs?>I66*Dj}SRGZ9&H#fQ7H{b&%K~*^e z+A&s;rG=q9&wcV3k`Dg+*fcXEK5@_fyHzQdqcb;N=i0jemR4vt?+LqYW~Zc`WV+wV z`!g_<#OfEtTg6{fd!&{6Mx9g9L@c4}HH=kn``vLy2}_h6S}eTO#UP9|vE1@bGZ+wJU{wuU^>feCbo8B`kK&tm19Eef)F*CC3pR{B_A+qY=D6yuS@R~ZReHjF@kOIokIuC1($B7}6bs*}bb7^> zxZvWFw6AJrnL$g}c`1vRw7Hl5T$Q0*XI@`kziq|3> z)ohQh`O%^`$v16|qCn`@PNkbmD-!rO+9S+jD)Ie z;dLGxmu=gXb$z!%`t#1>%AkMYMM^2M%Cm2nZrkp!tD^Mept4m_ndq0y8K$Nxi^DhH zOo~+sxq4qrNOJe>^XolBkG?Xwv_e<^)=bZe>h8C;n$zE3;d3uh{rPW8#d$`CFqY(r zuQ&WoNiENqe=?eN=f*2*E`OEvJ{z^``;9Ler#XH)#4LIK*{|iz{SA?Vv#Xk$m%O|y zx~h7|T_&;Oiqog9MNUt?HX&or<^23$Ms72^?+>_s%AS%dxtPdR)ZuEU?;dUP>m3(^ zgTicm7qN@!^V1ue_W${_rjIpc{pNE~a*`P{>>eHZvEn7eIp1_G{)YlCS6(9zJXBt8 ze{+AszJn)cu1PI_(N!ABxNYOM8Trbo>$k4j;kQ-EPweeB>#ON!69jMC6i*g6Gpk&C zpy#)w_s!`>R=qNxi&IpjWM|6ENowF{NVvJHRHvx9`lyS`^tW42U;R>h>&f2Vt1euq z$zL4z7iwKT#G5e%PsX`MR~f_0-fbvw;03R&#BVbiOY0h`6~; zE_=tTqQjk*=`8||Mhpo*Ng6$1c_Q2V*}bVZ=SG0b37cK!_h$x*>+yiaO?MI4_GBIpe#4+)@&%w%;0;S1sF1)_Vz`&s3 z66gHtCBNJDvdW|Cw|;ZxF)%dvIT0+fKn;Ed2D!VUO1Jm7=lp+GlzQuH_Z6kfGhe5y zY8N}5^Id6~%!Zpc+g<DSJ~KlgG!W4Sr~-0B|C z0Bm*DdEVp8*gk)|+;vuoY5xt@6ORvrjx=F&zqm`tyP>_G^D0u|Ci@pX5B9D! z{JA$m=KSL7&%z%wrYK7>T-c|_HSsa?$(z@H@9102_oU(O(MNAquQ#8qC=q%&>xtXB zC!I3s-`sZE@LtiE)7JICYflcvc|I{oDi)87*ZR!wqWfqrtyX`j~;JN@>&?&v*} zQXRbUR$Y3$=jBYDj$a`TcA31LGb|r`I?(o5F6JRD!^hRwPZO_TV2D_z$2GC|@wb&5 z3u;ysJ&!B?$a(X9O!=M-e{(DZH6v!;y1c$)^5>U!Rh<{NKDjFNx7XNw+NP{_?NS!Y zS1(U^gw)u}&3ScUc^(6U*`&N(vH9osNIJ))hq%@%otYYYQq8OEm{R!NGWBa9#D>2{jdE(0`ZDYsAP$GrxfFFYAN%rS)O%#XpR~MyiYJ8x2 zz2~yZM2(g=`yV>&U-f#orR#B9}F5~-YN^0v`-nU-fXgu-oL`W7AR{V5K zkn?-gQr1TaYc_%gZ~K4MKA(5^@3oM9!p`Skm`=PmbI~8BNS$xzTRwNr%TQU9&d6|~ z4YXBM?wYV^c-PUDTfW`eI9Jl^^}nc{ZwkImnYl(MXiIhOU+xb3-&X5)*I)PCeo3Xh zCqzkEaORoRvr$erT|;lb>a}i+^O_cyQ^*lI;@}%MD*W@~(St^hD=AD27nb>6>W=Z6 z`*LEkDBrg;uhyvvu8`IJCO3syLT&BQ9<3!t;_P2nv^8H_(RstG*t%?L@a{+dx;gAv zuPoqDzwkwLgJ)A$t*b!gnNw<2C1ExTuT8o&HAbUPyjso0ssFeED`=u{JI2>n5kAsxy;Y6}``XH4)92`O3r2c5C|de^Q(b2a0kg30Tgl z+utR-*w)iFY@x=ZTPG4lH+C9l2mK3A4SRIab@z518;Ri9jD6i6>zKmMH}o+X9#D?i-VdU@Tx^!u_)ubf*I6;`zU z$i3=$%b3xqYZt$n;EJwN?n-n8G7tFGjFzB>PI(_4{=^A5^t zb?J)zKKnL!_vLrKakdjr^t`z}t#GHU+~R|MpU!=X6qD|(E@-X3;M%TvQcICnoKyVpM#=>xB5nEu{f_nXS(~`mk}5I6Gc+WS)D&8@`I|P5bWF-_OV}w@tuu$EnY?!rZnu73b~cVqmy1mt$fxcR$Zf z{;Y%!Rt5%#@1QYJ1_m3#g&3%IIJ^+ld08>5NVDhr?{h1s-)D+!P0ad~?V9SkFL%xD zf`q#rhoJGi$ByM)XJH7&kQGt$bQvt^l)TJVgyx3$GY*9x;PWBa_x!7_VgUyV4Uh}oun^v1v8MxeZd%)J1yZg4<8LQnY*YqvBJagAmuF!dx%qtw`zD=E+ z7HoL+?CcXaRDPHP_AX-UWwDx5bNjlz03$<&YkBJlB?qy>4@VwudHSVw z*2j~d{@Dt%-FlK+{M0ksqh(^1j??c&>}rU73`+W`*co-tqz2lsCwIa@%=bGZ`zKGPGIVZndW7(xN zFC?Zr^CM`1@%hqcsffn@r0E?hM}(ALN=DwPuXIbb!9erPLs40Tq3_? zS(q_Yd1}+s#aT*lWw;@Al^QxT?W*>P$g-UlanFBvh`!#PoGZ-@oCoAb{0SP z(VCHadzULKRgTf*h^xh0_AdIgX%_bu zADL86ZSDJ2H}74UU{jD)e8h0-jNtsha=%>AaQlU`51)TyU^sozSFtFuM&s)2(!WBv zB`GO;{U(2GTw=QY!aGa37ZI(GgTsDpu-fnld|;weZeM7`jMvgO3j23=DkqlN=`Xtf z(x>P^u$qUTby4!8V(P=b0sNy=AXa+C6DwwFP6jwtkPLDZKl)~?eAyLd|9a# z>siifW_o+c*HtclOK% z&+t)gnNB&;R@8>GXKHKm0GR+_=8_U*4~N{uh(p{ye38+$ZbnlgqWAN@BEUuj#o{dTHOx zcU$6@MYK+SuDM`mm!%F!tPSqH)Gpf-17L_E+)~U_q*%`zjwU|KXO1xNbKVV%_zO{iw@nO37#`s(k~pa>g@Ab_T0_< zl>$q6kD*}rcYV-~%#TY?St~ee=$x4;vTJ4)|BZZ(@?&QjOmFXY|8^tn>4}RczgaB) z;SeMm8c z5<0z7`^HbNMz7EtQ|`Q1IQ!RbQ~Jy&jgPP9+pK=JHez=0U$Zst)3#5#cIO_i)d{Dl zrHx{0tPIlkrTDkJSSJuUp>VbgqvqF}8|PUxzS_9^WQvjTa{s+*{;XHlZAqO!`>uLs z_^oxT^yj|w^{qVr=$&hb^OqH8ye7|K+j;wC-qQP0d#`Ho7Ejx`%gb}CGuyJW>n>M& zO%>Vbp{Cp&vadHmSnxe#vBk~x^|^hoYeRxp1!;KrITSg5HZ5q5>J`{|)rxV!XF;WM z8%d^|Lv|s8oguEz8Nv=^fyQUIPjhM7xdo4s)!7*~nC;SZImbIYUCjHi z<>cE|{Se9->w~&G6|;+e`U}RnRX2z#+-tnd z{3-VC&V1MN2bbNNZ7VO&3$zF zyw8?(OXU~5yChH<`TSGrQO2pQS1YSj>k?8T-!e`+{namS<@(yy2l7(c%{Oig+wI0N zv2oo(=O^3ueO;R-Rr=?Nx_#tnft}vRm7Xs%u5D(2;u$o@Vs7_gzbMsX(L2j@&h6e+ zlFHG(CZ!@GrFz|qWBkk4u6)e8@j!-}Wy0~}rDET6BXZ}OmQ+S&E}awXo*G+~_O--y z@}yPA=A7i-GW|j?7k6=Ob+VQ0-OJY2^RK_;Q|{ZdGw@@b>@2A{PhP8lriyf2=J_5C zaWJ>N@FsmydhloFRK?kIe0xJ%`=(aSNidxD>g=gUPiw059=3FY&Z1pi-)RLN3OB2( zIprm9X8cO`-Rbpy^+~=b&uq!u{Ud0Cjgnd9n(Qot_1C6ubvrt%DEZs2)mpqkMP{a1 zo!2_jqE{+5rIZ+zK7lr`PCGr>x25CfrMQc`{XW0O*Z31NftgI4|)DaVVrnB2U z;@DC@`&lnnu2WidW=YUqqlC~`dhbr}_p2}Rt@19uT%6VXWY?P?b`vLNcfEak`iJY& zMz3#6OZQydbMrve=W@7o9vsYZHQt_}2-%Z{Av&zI`3IQT4j|1vA4gH}kve z*cqfJz295qn}6bQvFHoFJL|+RNZntzeVJm>>g_q)=WV~w@nm#J-|^{`wr`fHpc3EN8&SEv7*%4cT^ zwyH-lFg%I;yjcEc!;kCJHCYmZ1wOuz_v(zW`+fcV>@%f_QJ?bf<=g%Y_n&JzQ}fhpbffXl=T-|;SGR*M`AAT%u$zBhaCgx6 z{qt&HovvT@vhL~g|G&=f`*Y>9T5yWx=lyTKd2UkujN}-If$)YXQ_~0nSX2D z+tdEGsp(e5p-w5YnbIEeT@+OO)N$5_*+JY;zM$p^W5(r~>i<`FDSbAqZaMV1Ubp@8 ztBc~-IE7>8ReoyuYHg%G?fk!+@hg{j%&+|P-k0ZZ{QMr3lza03W`7sotfVxx_TbMw zoXxI3WOuuTyo)a0y4ip33YOQsAz{C)!|uIbIVXLdjd1YmqFXmLui3kl`AI*1{Md?- z;qH;21O9_t<^B?vEdtrYm&1S#XFCF zSzDJirzOVYjA^OeeEog@Ym?U1pXD?5KDO7fO}P73*@~>MR-yBz+wM+2Ho@YWrHh&! z+XhLKzDe6P)0h})a`*o#zZYLp`ubQ&|As67ob~Q~v$xm$7c~bJ)RQh)Ln+?`;=WjnA(sAp}N8zHmTKS73&I`=!?q@LTXPe7p z9#h_+F2l_6K=!?{e{}Wn{L|0Zz5FP^n7?{*x5(yIdt`ER%9&S7SjrnZ8e9 zH*(m^GL^6wzRB;3zi$2e%Jl!QXJ$_`bV|Pbw}hkiB*U)g$3G+(%$lG7|98^Zy3Az% z;q}RD>N|8gF1MvEV_eWZgWtmL5krpE)O4Nn&l?^155AC)1uaTuSn&FU{OoPH8`=|~ zBj}*|hN0p3FZ+v33}%+|G8l8xW8-K^VuE2=bM^~a5iqhq#Tv)Y{+ zy5_>JSvi5hZ_Sct=2tAxUgM}=lxH!~Gwn3!%$1WXon<;Zcb4p1^MrkQ($vSB&aL^; za_*$sT07hAFTKLre>*Q>whx$Ps%d4kIj%bI@aMbRPgnAnJovrb_0f}A8;%I-KmD$^ zMMhaapZ`Q~bt78B4F-J7@T4RhDG?jjq~LozK?%XMc0*&19>Z^QNV7 z7kU*x+}te7`<+LfHDN7V)R(utGec@yKL&n`d>}LV;>43%rb-2;Z)e-gP%`7spEbot z+}+(CS#34rdhERNUQXqq$d^&(3zBmu@!wE*KC5@>?`<4648p8krtJlHDYC!0?klLt zGP8VOH`A4$=i6D`j#jBNTuS!q^mkeD3gjA{aZR}S{>jOL8^ynlAJ>lGp?$RU=P9$c zw)WV};%^_Xt=+ey`_zs;h(1SMf+y;e!Bf<)z;HY-=uGBedu&o`Gn{1kfmHJTxP$o)Ss`r zDnHaNAv=z3{`I4CL-XhF@V4~6b~CW=m8;g&-CW^o13CYd1?7JD&0>7?NY3HNb9$HU z_azj4Y1{Il^X-b8i@Xe%&)MF}H$N?8?b4u~aa+=&LpIx1-`zjeK|K1cfTdkx{F3at zv&Wv_{`96M?(g=4Yt+($7hhYlE5suEdw0k>xiq(@?hbiA->fyKo>SK}moY9@Tf5T7 zHx0ZTpMT;hvuWyTF`0qWHEc{*=*Oq&ZZ%3YGqqn(q~&Y0DmrMlUhKL}f#9*1*sY;! zO`hdWO8@wZ&137?&v*ITINFUa@4E6OX1-}@j9K8EV%^VOXV1MAT`i=&Zolr@HRn#> zn^1FW72nBKWleLgzbXA5xx_7W=B--o9ryXamR0O64b_!S&|Y%veY@5po8@he7P+hU z|DPMa>gMVg*DZl@Ys%+(Wt*!!kP~QnZ+mqA<+JIFr>r{rJ#zP7wzBLG$BM6nJ&ib5 zeJ?P-`&INu{u|HSCsb^dX9sE(Fc6Umip(M0chg?OXAl^0a?pQA(cj#H&w@^}zcjDz_mV}+D);?9sCa9QSLcn)4<{CM z%}aTc67|$%{lRTpwpj63J7>jn+@E{lM``}P`%P0n25vsgd`&n-dr8}S_Vp_jE9aHW zefZ~F{afv;PeRwJx*M$$-q|%N+k8o@?afE`KCeApzIe&3v+L8|`}hCK-{Uat^Std> z?=JdP)1~vCdD~0DCBK&UuZX?sA-&#DdUpPnDuZ422eZ0DWqTI&{C|Dp14r&9hUmM# z>ngi{nJs=9Rbv;iXH{HYg7AwO0+DgIjAcXH{#3lZtK9dOZS$>!@h%gBrj(!oH*~idEeZy);~YiKfKG?824S_ zcka?}xd*Cd<+^649p&8m&T>cNx42Zx6;~}wvbUF8R&P4DY3qE^)u+GrUY{8Dn0eb- zr_0xEPt3rz-CO>< zZC(4VSN!(tny)8(&1)|I59HZRAPll#tQ?3s2zUT2+f>e)vAlDVZk6W?~*DgL&Yth|0r%gM>{ncB{$ zq|Ri8{wcT>lr1;w{nhyCXIYm8=v;lhS50Dmfb;Pd#q10Fvc%>GOz*$SbWZj4jy;Z^ zAzJ5+=55hfb6qX;-0jkk?MKREeXp*&a(9UtC_p4_&(5mwbn}-Kbr0pUK`N>Cqa#V`g#g3tQP( z?mVeV*LxooQ>}J_-TSVv>V>UDOmS@F6g~F)>E^KJnzHh(ruX>2y;}3|!WW0DQAgRo zy|`EN`~K7hza#Fv3~OfL9>{U65xw$rZprRA_S3yf&y=n>o7?-ndGD?}Uy9cEFiSJb zn=)KbWq-kz%HP`8E9|eV)3bA2F11S%BwZ*0T87o|?zjUt0|UbXd}j+o z+G6bJeR$BZ!^BDn5^;G3L!X>&RuE_xoR@XUiwT~r#h=sV?$n)3O*{1M61V#M-H(s0 zjo#jN_@Qp}wiYMFx%;EQF1la|x}6W?8SEDyqMnnC$H9LXOc@wnaDYeJ&gS0UmaF#k z=)a4v-p*eZ^@}kJG=+UZ(1qg%=vs}=vswTD{pEE^`R3pJ_p%7c9XBdUI5d(JjQ9S0 zaW-E@X>nKn6i? zakT1qX>e!C8NG}XB6p{p(TflUxqLzQ-Vd$!ZzldZCmv@oQ~T-1+u;i@l`3vaIsW#o zZQ#16ab;tkztk1ib&Sn1T z&vm)Yb|2g8e{jCuxZXB@lbJ0zXdHdoAAYj^zV-M%<0(HnW)@Zd`8N01+y2{fHvJ&U+jZudJU z=6UV&&GqY)_CDV)us`kBWA%`e^Z%U8@0@eo{%uOl%}d^=zO74`%xvHqe&KWcY`ywF zi&JCm8FhMykaJh|}p zkWRLneVsf!=WSd?UIw;@%DgC6Danr zWsRBl=Zm^}{rk1^>kj!$pFe+wz{}_JYrXgnRQ${Cw_SQY{iOE~qlaGc{{jUQ|G#Xp zedDmhX4myk&nm=X7>j<-HgpX?C4BSbYWMjyH$OgkadmR!&f`ax*?yfNSE^WkMg4Kn z3eUYhmvuItUvvE5oAXajJUbnFjO%iBLM}Lk@g*%fEQk-pbx~dHVgLKMVJ+TJWL%Mze#-)*RK9<_q)Bw`+j}Od*|e&^Hkj+m+tq(Buisw( z|6lIyZ8J01Z@p_@UtDqBcB6W~y1x14uKZ=~8WX$c%l+0h-nmKY{rqJF_6EOnWn*AC z;PoT%*}R|szp$?smS1lO$xv5Bzxtkf11dO76|RN;o?W?b=B3ZV>}7AO{>RJx`J=l( zrzmXRP1futNQ4UW=6a=xo1}ED+jalX`Tt+0n>u&Z8gD(F|MPVHujRXn!`onL86Xo= zvPViJ@*rA3)EZ8ZwG0QE+xIatH1sWy&q`A>TfL0G)>wG<)Xnur?p?4v*!$;WJ^#N8 z<{*_91aEOv?FwoZxVgj(EWmK!cvky~9*}?VOpH5-S49~L>mtveUuazybjGC{JePjK zcFsppzeT*DEYHvYsdIL<8}B>hxup^0PX_6E#%mUtU1S3}f#Cq;ids}LWxO*zC>P+q zMZek%v_jB613Y$6GP6q22z(e3L%&yt&Z4xlKA@G#ch9*TxF>Pra<|U2+?!7OLF3wH z-Q9Y-R%qFYt#W?St-tRE_%7YMek~`q)*hLcY53bWziKl02H#zCJLYr^=W8R_q`}YF1L$&O2R8o>n z=`J&fu%C&}i!JKQ%{bI_Kq>CoL%u%K`QRYEapuQD0Z_erbko23RFh}nYI5Gjpe5X% Lu6{1-oD!MRkO_ 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

WXwR2V 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 JS?83{1OU;(FnRz0 literal 0 HcmV?d00001 diff --git a/docs/0.6.1/images/settings.png b/docs/0.6.1/images/settings.png new file mode 100644 index 0000000000000000000000000000000000000000..3d30c08b3e41f5afbbdd0245b12cdfcd363045d0 GIT binary patch literal 22539 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 literal 0 HcmV?d00001 diff --git a/docs/0.6.1/images/viewer-1.png b/docs/0.6.1/images/viewer-1.png new file mode 100644 index 0000000000000000000000000000000000000000..04089c4e7a31880842277b57972d4ead1382cbe0 GIT binary patch literal 21068 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 DDyNMk literal 0 HcmV?d00001 diff --git a/docs/0.6.1/images/viewer-2.png b/docs/0.6.1/images/viewer-2.png new file mode 100644 index 0000000000000000000000000000000000000000..ed381a8561810983f186180dd1e9a4d54935e0af GIT binary patch literal 38668 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 + 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: + +A. 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. +B. 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. +C. State on the Title page the name of the publisher of the + Modified Version, as the publisher. +D. Preserve all the copyright notices of the Document. +E. Add an appropriate copyright notice for your modifications + adjacent to the other copyright notices. +F. 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. +G. Preserve in that license notice the full lists of Invariant Sections + and required Cover Texts given in the Document's license notice. +H. Include an unaltered copy of this License. +I. 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. +J. 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. +K. 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. +L. 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. +M. Delete any section Entitled "Endorsements". Such a section + may not be included in the Modified Version. +N. Do not retitle any existing section to be Entitled "Endorsements" + or to conflict in title with any Invariant Section. +O. 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. diff --git a/docs/0.6.1/licenses/GNU GPL v2 (libgit2).txt b/docs/0.6.1/licenses/GNU GPL v2 (libgit2).txt new file mode 100644 index 0000000..d1ca4d4 --- /dev/null +++ b/docs/0.6.1/licenses/GNU GPL v2 (libgit2).txt @@ -0,0 +1,930 @@ + libgit2 is Copyright (C) the libgit2 contributors, + unless otherwise stated. See the AUTHORS file for details. + + Note that the only valid version of the GPL as far as this project + is concerned is _this_ particular version of the license (ie v2, not + v2.2 or v3.x or whatever), unless explicitly otherwise stated. + +---------------------------------------------------------------------- + + LINKING EXCEPTION + + In addition to the permissions in the GNU General Public License, + the authors give you unlimited permission to link the compiled + version of this library into combinations with other programs, + and to distribute those combinations without any restriction + coming from the use of this file. (The General Public License + restrictions do apply in other respects; for example, they cover + modification of the file, and distribution when not linked into + a combined executable.) + +---------------------------------------------------------------------- + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public 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. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. + +---------------------------------------------------------------------- + +The bundled ZLib code is licensed under the ZLib license: + +Copyright (C) 1995-2010 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly Mark Adler + jloup@gzip.org madler@alumni.caltech.edu + +---------------------------------------------------------------------- + +The priority queue implementation is based on code licensed under the +Apache 2.0 license: + + Copyright 2010 Volkan Yazıcı + Copyright 2006-2010 The Apache Software Foundation + +The full text of the Apache 2.0 license is available at: + + http://www.apache.org/licenses/LICENSE-2.0 + +---------------------------------------------------------------------- + +The Clay framework is licensed under the MIT license: + +Copyright (C) 2011 by Vicent Marti + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +---------------------------------------------------------------------- + +The regex library (deps/regex/) is licensed under the GNU LGPL + + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public 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. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! diff --git a/docs/0.6.1/licenses/GNU GPL v3.txt b/docs/0.6.1/licenses/GNU GPL v3.txt new file mode 100644 index 0000000..17f76b3 --- /dev/null +++ b/docs/0.6.1/licenses/GNU GPL v3.txt @@ -0,0 +1,624 @@ + + + + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + 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, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public 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. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS diff --git a/docs/0.6.1/licenses/Licenses.txt b/docs/0.6.1/licenses/Licenses.txt new file mode 100644 index 0000000..07dd003 --- /dev/null +++ b/docs/0.6.1/licenses/Licenses.txt @@ -0,0 +1,16 @@ +# Licenses + +LOOT uses a number of libraries, and their licenses are listed in this file. + +* Alphanum - zlib license; the text is not included as allowed by the license. +* Boost - Boost Software License v1.0; see "Boost Software License v1.0.txt" for the text. +* Libespm - GNU GPL v3; see "GNU GPL v3.txt" for the text. +* Libgit2 - GNU GPL v2; see "GNU GPL v2 (libgit2).txt" for the text. +* Libloadorder - GNU GPL v3; see "GNU GPL v3.txt" for the text. +* Polyfill.js - This code has been placed in the public domain. +* RequireJS - MIT License; see "MIT License (RequireJS).txt" for the text. +* wxWidgets - wxWindows License; the text is not included as allowed by the license. +* yaml-cpp - MIT License; see "MIT License (yaml-cpp).txt" for the text. +* zlib - zlib license; the text is not included as allowed by the license. + +Source code for all libraries and binaries can be found on the websites linked to in the main LOOT readme. diff --git a/docs/0.6.1/licenses/MIT License (RequireJS).txt b/docs/0.6.1/licenses/MIT License (RequireJS).txt new file mode 100644 index 0000000..668ac91 --- /dev/null +++ b/docs/0.6.1/licenses/MIT License (RequireJS).txt @@ -0,0 +1,58 @@ +RequireJS is released under two licenses: new BSD, and MIT. You may pick the +license that best suits your development needs. The text of both licenses are +provided below. + + +The "New" BSD License: +---------------------- + +Copyright (c) 2010-2014, The Dojo Foundation +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + * Neither the name of the Dojo Foundation nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + +MIT License +----------- + +Copyright (c) 2010-2013, The Dojo Foundation + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/docs/0.6.1/licenses/MIT License (yaml-cpp).txt b/docs/0.6.1/licenses/MIT License (yaml-cpp).txt new file mode 100644 index 0000000..5bd9e1a --- /dev/null +++ b/docs/0.6.1/licenses/MIT License (yaml-cpp).txt @@ -0,0 +1,19 @@ +Copyright (c) 2008 Jesse Beder. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.