Import Android SDK Tools 25.2.3

https://dl.google.com/android/repository/tools_r25.2.3-linux.zip

Change-Id: I884aa3fa119598487249d5132d58a5d89bc35844
diff --git a/lib/advancedFeatures.ini b/lib/advancedFeatures.ini
new file mode 100644
index 0000000..f9df461
--- /dev/null
+++ b/lib/advancedFeatures.ini
@@ -0,0 +1,35 @@
+#-------------------------------------------------------------------------------
+# Advanced emulator features
+#-------------------------------------------------------------------------------
+
+# GLPipeChecksum----------------------------------------------------------------
+# For every GL call that transfers between host and guest, GLPipeChecksum = on
+# will compute a checksum consisting of some function of the actual bit vector
+# corresponding to the GL command, verifying that the same checksum shows up
+# on both the host and guest. Violations of the checksum (mismatches) result
+# in an abort() and crash report being sent.
+#
+# Currently, the checksum is mainly making sure that the command itself and all
+# arrays passed through the pipe are of proper length.
+GLPipeChecksum = on
+# ------------------------------------------------------------------------------
+
+# GrallocSync-------------------------------------------------------------------
+# Most apps that display images do so through OpenGL, but there are some apps
+# that write directly to gralloc color buffers. In our goldfish-driver gralloc
+# implementation, which represents gralloc color buffers as host OpenGL color
+# buffers.
+#
+# For example, in the camera app, the emulated webcam driver will pull frames
+# to a gralloc color buffer directly, and then in another thread or process,
+# the color buffer representing the camera frame preview could be posted
+# onscreen.
+#
+# These operations aren't guaranteed to have their order preserved when arriving
+# from the guest, and if executed on the host in the wrong order, we could
+# end up with out of order webcam frames, for instance.
+#
+# GrallocSync = on adds synchronization to the host for this use case where apps
+# directly write to gralloc color buffers and then post them.
+GrallocSync = on
+# ------------------------------------------------------------------------------
diff --git a/lib/android.el b/lib/android.el
new file mode 100644
index 0000000..5c66218
--- /dev/null
+++ b/lib/android.el
@@ -0,0 +1,131 @@
+;;;; Copyright 2007 The Android Open Source Project
+
+;;; Set up GUD+JDB to attach to a Java process running on the phone or
+;;; under the emulator.
+
+(defvar android-jdb-port-history '("8700")
+ "history of ports supplied to `android-jdb'")
+
+(defvar android-jdb-project-root-history '()
+ "history of project roots supplied to `android-jdb'")
+(defvar android-jdb-history nil
+ "history of commands supplied to `android-jdb'")
+
+(defvar android-jdb-activity-class-history ()
+ "history of activity classes supplied to `start-android-activity'")
+
+(defcustom  android-jdb-command-name "jdb"
+  "Name of Java debugger."
+  :type 'string
+  :group 'android)
+
+(defgroup android nil
+  "Android Applications."
+  :group 'applications)
+
+(defcustom android-project-root nil
+ "This is where your Android project root is stored."
+  :type 'directory
+ :group 'android )
+
+(defcustom android-apk nil
+ "This is where your Android Application Package is stored."
+ :type 'string
+ :group 'android)
+
+(defcustom android-activity-class nil
+ "This is where your Android Activity class is stored."
+ :type 'string
+ :group 'android)
+
+(defun android-read-project-root ()
+ (if (or (string-match "XEmacs" emacs-version)
+         (>= emacs-major-version 22))
+     (read-file-name "Android project root: "
+                     android-project-root
+                     nil
+                     t
+                     nil
+                     'file-directory-p)
+   (labels ((read-directory ()
+                            (read-file-name "Android project root: "
+                                            android-project-root
+                                            nil
+                                            t
+                                            nil)))
+     (do ((entered-root (read-directory) (read-directory)))
+         ((and entered-root
+               (file-directory-p entered-root))
+          (expand-file-name entered-root))))))
+
+(defun android-jdb (port root)
+ "Set GUD+JDB up to run against Android on PORT in directory ROOT."
+ (interactive
+  (list
+   (read-from-minibuffer "Activity's JDWP DDMS port: "
+                     (car android-jdb-port-history)
+                     nil
+                     t
+                     'android-jdb-port-history)
+                    (android-read-project-root)))
+ (setq android-project-root root)
+ (let ((jdb-command
+        (format "%s -attach localhost:%s -sourcepath%s"
+                android-jdb-command-name
+                port
+                (format "%s/src" root))))
+   (if (not (string= jdb-command (car android-jdb-history)))
+       (push jdb-command android-jdb-history))
+   (jdb jdb-command)))
+
+(defun android-emulate ()
+ "Run the Android emulator. This expects the SDK tools directory to be in the current path."
+ (interactive)
+ (compile "emulator"))
+
+(defun android-install-app (apk)
+  "Install an Android application package APK in the Android emulator. This expects the SDK tools directory to be in the current path."
+  (interactive (list (expand-file-name
+                      (read-file-name "Android Application Package (.apk): "
+                                      nil
+                                      android-apk
+                                      t
+                                      nil
+                                      nil))))
+  (setq android-apk apk)
+  (compile (format "adb install -r %s" apk)))
+
+(defun android-uninstall-app (package-name)
+  "Uninstall an Android application package APK in the Android emulator. This expects the SDK tools directory to be in the current path.
+Specify the package name --- and not the name of the application e.g., com.android.foo."
+  (interactive
+   (list
+    (read-from-minibuffer "Package: ")))
+  (compile (format "adb uninstall %s" package-name)))
+
+(defun android-start-activity (package class)
+ "Start the activity PACKAGE/CLASS in the Android emulator. This expects the SDK tools directory to be in the current path."
+ (interactive
+  (list
+   (read-from-minibuffer "Package: ")
+   (read-from-minibuffer "Activity Java class: "
+         (car android-jdb-activity-class-history)
+         nil
+         t
+         'android-jdb-activity-class-history)))
+ (compile (format "adb shell am start -n %s/%s" package class)))
+
+(defun android-debug-activity (package class)
+ "Start the activity PACKAGE/CLASS within the debugger in the Android emulator. This expects the SDK tools directory to be in the current path."
+ (interactive
+  (list
+   (read-from-minibuffer "Package: ")
+   (read-from-minibuffer "Activity Java class: "
+         (car android-jdb-activity-class-history)
+         nil
+         t
+         'android-jdb-activity-class-history)))
+ (compile (format "adb shell am start -D -n %s/%s" package class)))
+
+(provide 'android)
+
diff --git a/lib/annotations-12.0.jar b/lib/annotations-12.0.jar
new file mode 100644
index 0000000..7f8b362
--- /dev/null
+++ b/lib/annotations-12.0.jar
Binary files differ
diff --git a/lib/annotations-25.3.0-dev.jar b/lib/annotations-25.3.0-dev.jar
new file mode 100644
index 0000000..b25fe44
--- /dev/null
+++ b/lib/annotations-25.3.0-dev.jar
Binary files differ
diff --git a/lib/annotations.jar b/lib/annotations.jar
new file mode 100644
index 0000000..90de011
--- /dev/null
+++ b/lib/annotations.jar
Binary files differ
diff --git a/lib/ant-tasks.jar b/lib/ant-tasks.jar
new file mode 100644
index 0000000..869d3a5
--- /dev/null
+++ b/lib/ant-tasks.jar
Binary files differ
diff --git a/lib/archquery.jar b/lib/archquery.jar
new file mode 100644
index 0000000..d96efcb
--- /dev/null
+++ b/lib/archquery.jar
Binary files differ
diff --git a/lib/asm-5.0.3.jar b/lib/asm-5.0.3.jar
new file mode 100644
index 0000000..573535b
--- /dev/null
+++ b/lib/asm-5.0.3.jar
Binary files differ
diff --git a/lib/asm-analysis-5.0.3.jar b/lib/asm-analysis-5.0.3.jar
new file mode 100644
index 0000000..8b73cf0
--- /dev/null
+++ b/lib/asm-analysis-5.0.3.jar
Binary files differ
diff --git a/lib/asm-tree-5.0.3.jar b/lib/asm-tree-5.0.3.jar
new file mode 100644
index 0000000..e7eae53
--- /dev/null
+++ b/lib/asm-tree-5.0.3.jar
Binary files differ
diff --git a/lib/asset-studio.jar b/lib/asset-studio.jar
new file mode 100644
index 0000000..49a054e
--- /dev/null
+++ b/lib/asset-studio.jar
Binary files differ
diff --git a/lib/build.template b/lib/build.template
new file mode 100644
index 0000000..aea57a2
--- /dev/null
+++ b/lib/build.template
@@ -0,0 +1,92 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project name="PROJECT_NAME" default="help">
+
+    <!-- The local.properties file is created and updated by the 'android' tool.
+         It contains the path to the SDK. It should *NOT* be checked into
+         Version Control Systems. -->
+    <property file="local.properties" />
+
+    <!-- The ant.properties file can be created by you. It is only edited by the
+         'android' tool to add properties to it.
+         This is the place to change some Ant specific build properties.
+         Here are some properties you may want to change/update:
+
+         source.dir
+             The name of the source directory. Default is 'src'.
+         out.dir
+             The name of the output directory. Default is 'bin'.
+
+         For other overridable properties, look at the beginning of the rules
+         files in the SDK, at tools/ant/build.xml
+
+         Properties related to the SDK location or the project target should
+         be updated using the 'android' tool with the 'update' action.
+
+         This file is an integral part of the build system for your
+         application and should be checked into Version Control Systems.
+
+         -->
+    <property file="ant.properties" />
+
+    <!-- if sdk.dir was not set from one of the property file, then
+         get it from the ANDROID_HOME env var.
+         This must be done before we load project.properties since
+         the proguard config can use sdk.dir -->
+    <property environment="env" />
+    <condition property="sdk.dir" value="${env.ANDROID_HOME}">
+        <isset property="env.ANDROID_HOME" />
+    </condition>
+
+    <!-- The project.properties file is created and updated by the 'android'
+         tool, as well as ADT.
+
+         This contains project specific properties such as project target, and library
+         dependencies. Lower level build properties are stored in ant.properties
+         (or in .classpath for Eclipse projects).
+
+         This file is an integral part of the build system for your
+         application and should be checked into Version Control Systems. -->
+    <loadproperties srcFile="project.properties" />
+
+    <!-- quick check on sdk.dir -->
+    <fail
+            message="sdk.dir is missing. Make sure to generate local.properties using 'android update project' or to inject it through the ANDROID_HOME environment variable."
+            unless="sdk.dir"
+    />
+
+    <!--
+        Import per project custom build rules if present at the root of the project.
+        This is the place to put custom intermediary targets such as:
+            -pre-build
+            -pre-compile
+            -post-compile (This is typically used for code obfuscation.
+                           Compiled code location: ${out.classes.absolute.dir}
+                           If this is not done in place, override ${out.dex.input.absolute.dir})
+            -post-package
+            -post-build
+            -pre-clean
+    -->
+    <import file="custom_rules.xml" optional="true" />
+
+    <!-- Import the actual build file.
+
+         To customize existing targets, there are two options:
+         - Customize only one target:
+             - copy/paste the target into this file, *before* the
+               <import> task.
+             - customize it to your needs.
+         - Customize the whole content of build.xml
+             - copy/paste the content of the rules files (minus the top node)
+               into this file, replacing the <import> task.
+             - customize to your needs.
+
+         ***********************
+         ****** IMPORTANT ******
+         ***********************
+         In all cases you must update the value of version-tag below to read 'custom' instead of an integer,
+         in order to avoid having your file be overridden by tools such as "android update project"
+    -->
+    <!-- version-tag: VERSION_TAG -->
+    <import file="${sdk.dir}/tools/ant/build.xml" />
+
+</project>
diff --git a/lib/build_gradle.template b/lib/build_gradle.template
new file mode 100644
index 0000000..6ec137c
--- /dev/null
+++ b/lib/build_gradle.template
@@ -0,0 +1,21 @@
+buildscript {
+    repositories {
+        mavenCentral()
+    }
+    dependencies {
+        classpath 'com.android.tools.build:gradle:ARTIFACT_VERSION'
+    }
+}
+apply plugin: 'PLUGIN'
+
+android {
+    compileSdkVersion 'TARGET'
+    buildToolsVersion 'BUILD_TOOL_REV'
+
+    buildTypes {
+        release {
+            runProguard false
+            proguardFile getDefaultProguardFile('proguard-android.txt')
+        }
+    }
+}
diff --git a/lib/builder-model.jar b/lib/builder-model.jar
new file mode 100644
index 0000000..f58877f
--- /dev/null
+++ b/lib/builder-model.jar
Binary files differ
diff --git a/lib/ca-bundle.pem b/lib/ca-bundle.pem
new file mode 100644
index 0000000..759a4d6
--- /dev/null
+++ b/lib/ca-bundle.pem
@@ -0,0 +1,3988 @@
+##
+## Bundle of CA Root Certificates
+##
+## Certificate data from Mozilla as of: Mon Apr 27 08:58:04 2015
+##
+## This is a bundle of X.509 certificates of public Certificate Authorities
+## (CA). These were automatically extracted from Mozilla's root certificates
+## file (certdata.txt).  This file can be found in the mozilla source tree:
+## http://hg.mozilla.org/releases/mozilla-release/raw-file/default/security/nss/lib/ckfw/builtins/certdata.txt
+##
+## It contains the certificates in PEM format and therefore
+## can be directly used with curl / libcurl / php_curl, or with
+## an Apache+mod_ssl webserver for SSL client authentication.
+## Just configure this file as the SSLCACertificateFile.
+##
+## Conversion done with mk-ca-bundle.pl version 1.25.
+## SHA1: ed3c0bbfb7912bcc00cd2033b0cb85c98d10559c
+##
+
+
+Equifax Secure CA
+=================
+-----BEGIN CERTIFICATE-----
+MIIDIDCCAomgAwIBAgIENd70zzANBgkqhkiG9w0BAQUFADBOMQswCQYDVQQGEwJVUzEQMA4GA1UE
+ChMHRXF1aWZheDEtMCsGA1UECxMkRXF1aWZheCBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5
+MB4XDTk4MDgyMjE2NDE1MVoXDTE4MDgyMjE2NDE1MVowTjELMAkGA1UEBhMCVVMxEDAOBgNVBAoT
+B0VxdWlmYXgxLTArBgNVBAsTJEVxdWlmYXggU2VjdXJlIENlcnRpZmljYXRlIEF1dGhvcml0eTCB
+nzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAwV2xWGcIYu6gmi0fCG2RFGiYCh7+2gRvE4RiIcPR
+fM6fBeC4AfBONOziipUEZKzxa1NfBbPLZ4C/QgKO/t0BCezhABRP/PvwDN1Dulsr4R+AcJkVV5MW
+8Q+XarfCaCMczE1ZMKxRHjuvK9buY0V7xdlfUNLjUA86iOe/FP3gx7kCAwEAAaOCAQkwggEFMHAG
+A1UdHwRpMGcwZaBjoGGkXzBdMQswCQYDVQQGEwJVUzEQMA4GA1UEChMHRXF1aWZheDEtMCsGA1UE
+CxMkRXF1aWZheCBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MQ0wCwYDVQQDEwRDUkwxMBoG
+A1UdEAQTMBGBDzIwMTgwODIyMTY0MTUxWjALBgNVHQ8EBAMCAQYwHwYDVR0jBBgwFoAUSOZo+SvS
+spXXR9gjIBBPM5iQn9QwHQYDVR0OBBYEFEjmaPkr0rKV10fYIyAQTzOYkJ/UMAwGA1UdEwQFMAMB
+Af8wGgYJKoZIhvZ9B0EABA0wCxsFVjMuMGMDAgbAMA0GCSqGSIb3DQEBBQUAA4GBAFjOKer89961
+zgK5F7WF0bnj4JXMJTENAKaSbn+2kmOeUJXRmm/kEd5jhW6Y7qj/WsjTVbJmcVfewCHrPSqnI0kB
+BIZCe/zuf6IWUrVnZ9NA2zsmWLIodz2uFHdh1voqZiegDfqnc1zqcPGUIWVEX/r87yloqaKHee95
+70+sB3c4
+-----END CERTIFICATE-----
+
+GlobalSign Root CA
+==================
+-----BEGIN CERTIFICATE-----
+MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkGA1UEBhMCQkUx
+GTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jvb3QgQ0ExGzAZBgNVBAMTEkds
+b2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAwMDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNV
+BAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYD
+VQQDExJHbG9iYWxTaWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDa
+DuaZjc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavpxy0Sy6sc
+THAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp1Wrjsok6Vjk4bwY8iGlb
+Kk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdGsnUOhugZitVtbNV4FpWi6cgKOOvyJBNP
+c1STE4U6G7weNLWLBYy5d4ux2x8gkasJU26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrX
+gzT/LCrBbBlDSgeF59N89iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV
+HRMBAf8EBTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0BAQUF
+AAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOzyj1hTdNGCbM+w6Dj
+Y1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE38NflNUVyRRBnMRddWQVDf9VMOyG
+j/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymPAbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhH
+hm4qxFYxldBniYUr+WymXUadDKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveC
+X4XSQRjbgbMEHMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A==
+-----END CERTIFICATE-----
+
+GlobalSign Root CA - R2
+=======================
+-----BEGIN CERTIFICATE-----
+MIIDujCCAqKgAwIBAgILBAAAAAABD4Ym5g0wDQYJKoZIhvcNAQEFBQAwTDEgMB4GA1UECxMXR2xv
+YmFsU2lnbiBSb290IENBIC0gUjIxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2Jh
+bFNpZ24wHhcNMDYxMjE1MDgwMDAwWhcNMjExMjE1MDgwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxT
+aWduIFJvb3QgQ0EgLSBSMjETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2ln
+bjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKbPJA6+Lm8omUVCxKs+IVSbC9N/hHD6
+ErPLv4dfxn+G07IwXNb9rfF73OX4YJYJkhD10FPe+3t+c4isUoh7SqbKSaZeqKeMWhG8eoLrvozp
+s6yWJQeXSpkqBy+0Hne/ig+1AnwblrjFuTosvNYSuetZfeLQBoZfXklqtTleiDTsvHgMCJiEbKjN
+S7SgfQx5TfC4LcshytVsW33hoCmEofnTlEnLJGKRILzdC9XZzPnqJworc5HGnRusyMvo4KD0L5CL
+TfuwNhv2GXqF4G3yYROIXJ/gkwpRl4pazq+r1feqCapgvdzZX99yqWATXgAByUr6P6TqBwMhAo6C
+ygPCm48CAwEAAaOBnDCBmTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4E
+FgQUm+IHV2ccHsBqBt5ZtJot39wZhi4wNgYDVR0fBC8wLTAroCmgJ4YlaHR0cDovL2NybC5nbG9i
+YWxzaWduLm5ldC9yb290LXIyLmNybDAfBgNVHSMEGDAWgBSb4gdXZxwewGoG3lm0mi3f3BmGLjAN
+BgkqhkiG9w0BAQUFAAOCAQEAmYFThxxol4aR7OBKuEQLq4GsJ0/WwbgcQ3izDJr86iw8bmEbTUsp
+9Z8FHSbBuOmDAGJFtqkIk7mpM0sYmsL4h4hO291xNBrBVNpGP+DTKqttVCL1OmLNIG+6KYnX3ZHu
+01yiPqFbQfXf5WRDLenVOavSot+3i9DAgBkcRcAtjOj4LaR0VknFBbVPFd5uRHg5h6h+u/N5GJG7
+9G+dwfCMNYxdAfvDbbnvRG15RjF+Cv6pgsH/76tuIMRQyV+dTZsXjAzlAcmgQWpzU/qlULRuJQ/7
+TBj0/VLZjmmx6BEP3ojY+x1J96relc8geMJgEtslQIxq/H5COEBkEveegeGTLg==
+-----END CERTIFICATE-----
+
+Verisign Class 3 Public Primary Certification Authority - G3
+============================================================
+-----BEGIN CERTIFICATE-----
+MIIEGjCCAwICEQCbfgZJoz5iudXukEhxKe9XMA0GCSqGSIb3DQEBBQUAMIHKMQswCQYDVQQGEwJV
+UzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdv
+cmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl
+IG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDMgUHVibGljIFByaW1hcnkgQ2VydGlmaWNh
+dGlvbiBBdXRob3JpdHkgLSBHMzAeFw05OTEwMDEwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMIHKMQsw
+CQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRy
+dXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhv
+cml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDMgUHVibGljIFByaW1hcnkg
+Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC
+ggEBAMu6nFL8eB8aHm8bN3O9+MlrlBIwT/A2R/XQkQr1F8ilYcEWQE37imGQ5XYgwREGfassbqb1
+EUGO+i2tKmFZpGcmTNDovFJbcCAEWNF6yaRpvIMXZK0Fi7zQWM6NjPXr8EJJC52XJ2cybuGukxUc
+cLwgTS8Y3pKI6GyFVxEa6X7jJhFUokWWVYPKMIno3Nij7SqAP395ZVc+FSBmCC+Vk7+qRy+oRpfw
+EuL+wgorUeZ25rdGt+INpsyow0xZVYnm6FNcHOqd8GIWC6fJXwzw3sJ2zq/3avL6QaaiMxTJ5Xpj
+055iN9WFZZ4O5lMkdBteHRJTW8cs54NJOxWuimi5V5cCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA
+ERSWwauSCPc/L8my/uRan2Te2yFPhpk0djZX3dAVL8WtfxUfN2JzPtTnX84XA9s1+ivbrmAJXx5f
+j267Cz3qWhMeDGBvtcC1IyIuBwvLqXTLR7sdwdela8wv0kL9Sd2nic9TutoAWii/gt/4uhMdUIaC
+/Y4wjylGsB49Ndo4YhYYSq3mtlFs3q9i6wHQHiT+eo8SGhJouPtmmRQURVyu565pF4ErWjfJXir0
+xuKhXFSbplQAz/DxwceYMBo7Nhbbo27q/a2ywtrvAkcTisDxszGtTxzhT5yvDwyd93gN2PQ1VoDa
+t20Xj50egWTh/sVFuq1ruQp6Tk9LhO5L8X3dEQ==
+-----END CERTIFICATE-----
+
+Verisign Class 4 Public Primary Certification Authority - G3
+============================================================
+-----BEGIN CERTIFICATE-----
+MIIEGjCCAwICEQDsoKeLbnVqAc/EfMwvlF7XMA0GCSqGSIb3DQEBBQUAMIHKMQswCQYDVQQGEwJV
+UzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdv
+cmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl
+IG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDQgUHVibGljIFByaW1hcnkgQ2VydGlmaWNh
+dGlvbiBBdXRob3JpdHkgLSBHMzAeFw05OTEwMDEwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMIHKMQsw
+CQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRy
+dXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhv
+cml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDQgUHVibGljIFByaW1hcnkg
+Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC
+ggEBAK3LpRFpxlmr8Y+1GQ9Wzsy1HyDkniYlS+BzZYlZ3tCD5PUPtbut8XzoIfzk6AzufEUiGXaS
+tBO3IFsJ+mGuqPKljYXCKtbeZjbSmwL0qJJgfJxptI8kHtCGUvYynEFYHiK9zUVilQhu0GbdU6LM
+8BDcVHOLBKFGMzNcF0C5nk3T875Vg+ixiY5afJqWIpA7iCXy0lOIAgwLePLmNxdLMEYH5IBtptiW
+Lugs+BGzOA1mppvqySNb247i8xOOGlktqgLw7KSHZtzBP/XYufTsgsbSPZUd5cBPhMnZo0QoBmrX
+Razwa2rvTl/4EYIeOGM0ZlDUPpNz+jDDZq3/ky2X7wMCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA
+j/ola09b5KROJ1WrIhVZPMq1CtRK26vdoV9TxaBXOcLORyu+OshWv8LZJxA6sQU8wHcxuzrTBXtt
+mhwwjIDLk5Mqg6sFUYICABFna/OIYUdfA5PVWw3g8dShMjWFsjrbsIKr0csKvE+MW8VLADsfKoKm
+fjaF3H48ZwC15DtS4KjrXRX5xm3wrR0OhbepmnMUWluPQSjA1egtTaRezarZ7c7c2NU8Qh0XwRJd
+RTjDOPP8hS6DRkiy1yBfkjaP53kPmF6Z6PDQpLv1U70qzlmwr25/bLvSHgCwIe34QWKCudiyxLtG
+UPMxxY8BqHTr9Xgn2uf3ZkPznoM+IKrDNWCRzg==
+-----END CERTIFICATE-----
+
+Entrust.net Premium 2048 Secure Server CA
+=========================================
+-----BEGIN CERTIFICATE-----
+MIIEKjCCAxKgAwIBAgIEOGPe+DANBgkqhkiG9w0BAQUFADCBtDEUMBIGA1UEChMLRW50cnVzdC5u
+ZXQxQDA+BgNVBAsUN3d3dy5lbnRydXN0Lm5ldC9DUFNfMjA0OCBpbmNvcnAuIGJ5IHJlZi4gKGxp
+bWl0cyBsaWFiLikxJTAjBgNVBAsTHChjKSAxOTk5IEVudHJ1c3QubmV0IExpbWl0ZWQxMzAxBgNV
+BAMTKkVudHJ1c3QubmV0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5ICgyMDQ4KTAeFw05OTEyMjQx
+NzUwNTFaFw0yOTA3MjQxNDE1MTJaMIG0MRQwEgYDVQQKEwtFbnRydXN0Lm5ldDFAMD4GA1UECxQ3
+d3d3LmVudHJ1c3QubmV0L0NQU18yMDQ4IGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxpYWIuKTEl
+MCMGA1UECxMcKGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDEzMDEGA1UEAxMqRW50cnVzdC5u
+ZXQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgKDIwNDgpMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A
+MIIBCgKCAQEArU1LqRKGsuqjIAcVFmQqK0vRvwtKTY7tgHalZ7d4QMBzQshowNtTK91euHaYNZOL
+Gp18EzoOH1u3Hs/lJBQesYGpjX24zGtLA/ECDNyrpUAkAH90lKGdCCmziAv1h3edVc3kw37XamSr
+hRSGlVuXMlBvPci6Zgzj/L24ScF2iUkZ/cCovYmjZy/Gn7xxGWC4LeksyZB2ZnuU4q941mVTXTzW
+nLLPKQP5L6RQstRIzgUyVYr9smRMDuSYB3Xbf9+5CFVghTAp+XtIpGmG4zU/HoZdenoVve8AjhUi
+VBcAkCaTvA5JaJG/+EfTnZVCwQ5N328mz8MYIWJmQ3DW1cAH4QIDAQABo0IwQDAOBgNVHQ8BAf8E
+BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUVeSB0RGAvtiJuQijMfmhJAkWuXAwDQYJ
+KoZIhvcNAQEFBQADggEBADubj1abMOdTmXx6eadNl9cZlZD7Bh/KM3xGY4+WZiT6QBshJ8rmcnPy
+T/4xmf3IDExoU8aAghOY+rat2l098c5u9hURlIIM7j+VrxGrD9cv3h8Dj1csHsm7mhpElesYT6Yf
+zX1XEC+bBAlahLVu2B064dae0Wx5XnkcFMXj0EyTO2U87d89vqbllRrDtRnDvV5bu/8j72gZyxKT
+J1wDLW8w0B62GqzeWvfRqqgnpv55gcR5mTNXuhKwqeBCbJPKVt7+bYQLCIt+jerXmCHG8+c8eS9e
+nNFMFY3h7CI3zJpDC5fcgJCNs2ebb0gIFVbPv/ErfF6adulZkMV8gzURZVE=
+-----END CERTIFICATE-----
+
+Baltimore CyberTrust Root
+=========================
+-----BEGIN CERTIFICATE-----
+MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJRTESMBAGA1UE
+ChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3li
+ZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoXDTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMC
+SUUxEjAQBgNVBAoTCUJhbHRpbW9yZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFs
+dGltb3JlIEN5YmVyVHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKME
+uyKrmD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjrIZ3AQSsB
+UnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeKmpYcqWe4PwzV9/lSEy/C
+G9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSuXmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9
+XbIGevOF6uvUA65ehD5f/xXtabz5OTZydc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjpr
+l3RjM71oGDHweI12v/yejl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoI
+VDaGezq1BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEB
+BQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT929hkTI7gQCvlYpNRh
+cL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3WgxjkzSswF07r51XgdIGn9w/xZchMB5
+hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsa
+Y71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9H
+RCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp
+-----END CERTIFICATE-----
+
+AddTrust Low-Value Services Root
+================================
+-----BEGIN CERTIFICATE-----
+MIIEGDCCAwCgAwIBAgIBATANBgkqhkiG9w0BAQUFADBlMQswCQYDVQQGEwJTRTEUMBIGA1UEChML
+QWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSEwHwYDVQQDExhBZGRU
+cnVzdCBDbGFzcyAxIENBIFJvb3QwHhcNMDAwNTMwMTAzODMxWhcNMjAwNTMwMTAzODMxWjBlMQsw
+CQYDVQQGEwJTRTEUMBIGA1UEChMLQWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBO
+ZXR3b3JrMSEwHwYDVQQDExhBZGRUcnVzdCBDbGFzcyAxIENBIFJvb3QwggEiMA0GCSqGSIb3DQEB
+AQUAA4IBDwAwggEKAoIBAQCWltQhSWDia+hBBwzexODcEyPNwTXH+9ZOEQpnXvUGW2ulCDtbKRY6
+54eyNAbFvAWlA3yCyykQruGIgb3WntP+LVbBFc7jJp0VLhD7Bo8wBN6ntGO0/7Gcrjyvd7ZWxbWr
+oulpOj0OM3kyP3CCkplhbY0wCI9xP6ZIVxn4JdxLZlyldI+Yrsj5wAYi56xz36Uu+1LcsRVlIPo1
+Zmne3yzxbrww2ywkEtvrNTVokMsAsJchPXQhI2U0K7t4WaPW4XY5mqRJjox0r26kmqPZm9I4XJui
+GMx1I4S+6+JNM3GOGvDC+Mcdoq0Dlyz4zyXG9rgkMbFjXZJ/Y/AlyVMuH79NAgMBAAGjgdIwgc8w
+HQYDVR0OBBYEFJWxtPCUtr3H2tERCSG+wa9J/RB7MAsGA1UdDwQEAwIBBjAPBgNVHRMBAf8EBTAD
+AQH/MIGPBgNVHSMEgYcwgYSAFJWxtPCUtr3H2tERCSG+wa9J/RB7oWmkZzBlMQswCQYDVQQGEwJT
+RTEUMBIGA1UEChMLQWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSEw
+HwYDVQQDExhBZGRUcnVzdCBDbGFzcyAxIENBIFJvb3SCAQEwDQYJKoZIhvcNAQEFBQADggEBACxt
+ZBsfzQ3duQH6lmM0MkhHma6X7f1yFqZzR1r0693p9db7RcwpiURdv0Y5PejuvE1Uhh4dbOMXJ0Ph
+iVYrqW9yTkkz43J8KiOavD7/KCrto/8cI7pDVwlnTUtiBi34/2ydYB7YHEt9tTEv2dB8Xfjea4MY
+eDdXL+gzB2ffHsdrKpV2ro9Xo/D0UrSpUwjP4E/TelOL/bscVjby/rK25Xa71SJlpz/+0WatC7xr
+mYbvP33zGDLKe8bjq2RGlfgmadlVg3sslgf/WSxEo8bl6ancoWOAWiFeIc9TVPC6b4nbqKqVz4vj
+ccweGyBECMB6tkD9xOQ14R0WHNC8K47Wcdk=
+-----END CERTIFICATE-----
+
+AddTrust External Root
+======================
+-----BEGIN CERTIFICATE-----
+MIIENjCCAx6gAwIBAgIBATANBgkqhkiG9w0BAQUFADBvMQswCQYDVQQGEwJTRTEUMBIGA1UEChML
+QWRkVHJ1c3QgQUIxJjAkBgNVBAsTHUFkZFRydXN0IEV4dGVybmFsIFRUUCBOZXR3b3JrMSIwIAYD
+VQQDExlBZGRUcnVzdCBFeHRlcm5hbCBDQSBSb290MB4XDTAwMDUzMDEwNDgzOFoXDTIwMDUzMDEw
+NDgzOFowbzELMAkGA1UEBhMCU0UxFDASBgNVBAoTC0FkZFRydXN0IEFCMSYwJAYDVQQLEx1BZGRU
+cnVzdCBFeHRlcm5hbCBUVFAgTmV0d29yazEiMCAGA1UEAxMZQWRkVHJ1c3QgRXh0ZXJuYWwgQ0Eg
+Um9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALf3GjPm8gAELTngTlvtH7xsD821
++iO2zt6bETOXpClMfZOfvUq8k+0DGuOPz+VtUFrWlymUWoCwSXrbLpX9uMq/NzgtHj6RQa1wVsfw
+Tz/oMp50ysiQVOnGXw94nZpAPA6sYapeFI+eh6FqUNzXmk6vBbOmcZSccbNQYArHE504B4YCqOmo
+aSYYkKtMsE8jqzpPhNjfzp/haW+710LXa0Tkx63ubUFfclpxCDezeWWkWaCUN/cALw3CknLa0Dhy
+2xSoRcRdKn23tNbE7qzNE0S3ySvdQwAl+mG5aWpYIxG3pzOPVnVZ9c0p10a3CitlttNCbxWyuHv7
+7+ldU9U0WicCAwEAAaOB3DCB2TAdBgNVHQ4EFgQUrb2YejS0Jvf6xCZU7wO94CTLVBowCwYDVR0P
+BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wgZkGA1UdIwSBkTCBjoAUrb2YejS0Jvf6xCZU7wO94CTL
+VBqhc6RxMG8xCzAJBgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRUcnVzdCBBQjEmMCQGA1UECxMdQWRk
+VHJ1c3QgRXh0ZXJuYWwgVFRQIE5ldHdvcmsxIjAgBgNVBAMTGUFkZFRydXN0IEV4dGVybmFsIENB
+IFJvb3SCAQEwDQYJKoZIhvcNAQEFBQADggEBALCb4IUlwtYj4g+WBpKdQZic2YR5gdkeWxQHIzZl
+j7DYd7usQWxHYINRsPkyPef89iYTx4AWpb9a/IfPeHmJIZriTAcKhjW88t5RxNKWt9x+Tu5w/Rw5
+6wwCURQtjr0W4MHfRnXnJK3s9EK0hZNwEGe6nQY1ShjTK3rMUUKhemPR5ruhxSvCNr4TDea9Y355
+e6cJDUCrat2PisP29owaQgVR1EX1n6diIWgVIEM8med8vSTYqZEXc4g/VhsxOBi0cQ+azcgOno4u
+G+GMmIPLHzHxREzGBHNJdmAPx/i9F4BrLunMTA5amnkPIAou1Z5jJh5VkpTYghdae9C8x49OhgQ=
+-----END CERTIFICATE-----
+
+AddTrust Public Services Root
+=============================
+-----BEGIN CERTIFICATE-----
+MIIEFTCCAv2gAwIBAgIBATANBgkqhkiG9w0BAQUFADBkMQswCQYDVQQGEwJTRTEUMBIGA1UEChML
+QWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSAwHgYDVQQDExdBZGRU
+cnVzdCBQdWJsaWMgQ0EgUm9vdDAeFw0wMDA1MzAxMDQxNTBaFw0yMDA1MzAxMDQxNTBaMGQxCzAJ
+BgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRUcnVzdCBBQjEdMBsGA1UECxMUQWRkVHJ1c3QgVFRQIE5l
+dHdvcmsxIDAeBgNVBAMTF0FkZFRydXN0IFB1YmxpYyBDQSBSb290MIIBIjANBgkqhkiG9w0BAQEF
+AAOCAQ8AMIIBCgKCAQEA6Rowj4OIFMEg2Dybjxt+A3S72mnTRqX4jsIMEZBRpS9mVEBV6tsfSlbu
+nyNu9DnLoblv8n75XYcmYZ4c+OLspoH4IcUkzBEMP9smcnrHAZcHF/nXGCwwfQ56HmIexkvA/X1i
+d9NEHif2P0tEs7c42TkfYNVRknMDtABp4/MUTu7R3AnPdzRGULD4EfL+OHn3Bzn+UZKXC1sIXzSG
+Aa2Il+tmzV7R/9x98oTaunet3IAIx6eH1lWfl2royBFkuucZKT8Rs3iQhCBSWxHveNCD9tVIkNAw
+HM+A+WD+eeSI8t0A65RF62WUaUC6wNW0uLp9BBGo6zEFlpROWCGOn9Bg/QIDAQABo4HRMIHOMB0G
+A1UdDgQWBBSBPjfYkrAfd59ctKtzquf2NGAv+jALBgNVHQ8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB
+/zCBjgYDVR0jBIGGMIGDgBSBPjfYkrAfd59ctKtzquf2NGAv+qFopGYwZDELMAkGA1UEBhMCU0Ux
+FDASBgNVBAoTC0FkZFRydXN0IEFCMR0wGwYDVQQLExRBZGRUcnVzdCBUVFAgTmV0d29yazEgMB4G
+A1UEAxMXQWRkVHJ1c3QgUHVibGljIENBIFJvb3SCAQEwDQYJKoZIhvcNAQEFBQADggEBAAP3FUr4
+JNojVhaTdt02KLmuG7jD8WS6IBh4lSknVwW8fCr0uVFV2ocC3g8WFzH4qnkuCRO7r7IgGRLlk/lL
++YPoRNWyQSW/iHVv/xD8SlTQX/D67zZzfRs2RcYhbbQVuE7PnFylPVoAjgbjPGsye/Kf8Lb93/Ao
+GEjwxrzQvzSAlsJKsW2Ox5BF3i9nrEUEo3rcVZLJR2bYGozH7ZxOmuASu7VqTITh4SINhwBk/ox9
+Yjllpu9CtoAlEmEBqCQTcAARJl/6NVDFSMwGR+gn2HCNX2TmoUQmXiLsks3/QppEIW1cxeMiHV9H
+EufOX1362KqxMy3ZdvJOOjMMK7MtkAY=
+-----END CERTIFICATE-----
+
+AddTrust Qualified Certificates Root
+====================================
+-----BEGIN CERTIFICATE-----
+MIIEHjCCAwagAwIBAgIBATANBgkqhkiG9w0BAQUFADBnMQswCQYDVQQGEwJTRTEUMBIGA1UEChML
+QWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSMwIQYDVQQDExpBZGRU
+cnVzdCBRdWFsaWZpZWQgQ0EgUm9vdDAeFw0wMDA1MzAxMDQ0NTBaFw0yMDA1MzAxMDQ0NTBaMGcx
+CzAJBgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRUcnVzdCBBQjEdMBsGA1UECxMUQWRkVHJ1c3QgVFRQ
+IE5ldHdvcmsxIzAhBgNVBAMTGkFkZFRydXN0IFF1YWxpZmllZCBDQSBSb290MIIBIjANBgkqhkiG
+9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5B6a/twJWoekn0e+EV+vhDTbYjx5eLfpMLXsDBwqxBb/4Oxx
+64r1EW7tTw2R0hIYLUkVAcKkIhPHEWT/IhKauY5cLwjPcWqzZwFZ8V1G87B4pfYOQnrjfxvM0PC3
+KP0q6p6zsLkEqv32x7SxuCqg+1jxGaBvcCV+PmlKfw8i2O+tCBGaKZnhqkRFmhJePp1tUvznoD1o
+L/BLcHwTOK28FSXx1s6rosAx1i+f4P8UWfyEk9mHfExUE+uf0S0R+Bg6Ot4l2ffTQO2kBhLEO+GR
+wVY18BTcZTYJbqukB8c10cIDMzZbdSZtQvESa0NvS3GU+jQd7RNuyoB/mC9suWXY6QIDAQABo4HU
+MIHRMB0GA1UdDgQWBBQ5lYtii1zJ1IC6WA+XPxUIQ8yYpzALBgNVHQ8EBAMCAQYwDwYDVR0TAQH/
+BAUwAwEB/zCBkQYDVR0jBIGJMIGGgBQ5lYtii1zJ1IC6WA+XPxUIQ8yYp6FrpGkwZzELMAkGA1UE
+BhMCU0UxFDASBgNVBAoTC0FkZFRydXN0IEFCMR0wGwYDVQQLExRBZGRUcnVzdCBUVFAgTmV0d29y
+azEjMCEGA1UEAxMaQWRkVHJ1c3QgUXVhbGlmaWVkIENBIFJvb3SCAQEwDQYJKoZIhvcNAQEFBQAD
+ggEBABmrder4i2VhlRO6aQTvhsoToMeqT2QbPxj2qC0sVY8FtzDqQmodwCVRLae/DLPt7wh/bDxG
+GuoYQ992zPlmhpwsaPXpF/gxsxjE1kh9I0xowX67ARRvxdlu3rsEQmr49lx95dr6h+sNNVJn0J6X
+dgWTP5XHAeZpVTh/EGGZyeNfpso+gmNIquIISD6q8rKFYqa0p9m9N5xotS1WfbC3P6CxB9bpT9ze
+RXEwMn8bLgn5v1Kh7sKAPgZcLlVAwRv1cEWw3F369nJad9Jjzc9YiQBCYz95OdBEsIJuQRno3eDB
+iFrRHnGTHyQwdOUeqN48Jzd/g66ed8/wMLH/S5noxqE=
+-----END CERTIFICATE-----
+
+Entrust Root Certification Authority
+====================================
+-----BEGIN CERTIFICATE-----
+MIIEkTCCA3mgAwIBAgIERWtQVDANBgkqhkiG9w0BAQUFADCBsDELMAkGA1UEBhMCVVMxFjAUBgNV
+BAoTDUVudHJ1c3QsIEluYy4xOTA3BgNVBAsTMHd3dy5lbnRydXN0Lm5ldC9DUFMgaXMgaW5jb3Jw
+b3JhdGVkIGJ5IHJlZmVyZW5jZTEfMB0GA1UECxMWKGMpIDIwMDYgRW50cnVzdCwgSW5jLjEtMCsG
+A1UEAxMkRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA2MTEyNzIwMjM0
+MloXDTI2MTEyNzIwNTM0MlowgbAxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMu
+MTkwNwYDVQQLEzB3d3cuZW50cnVzdC5uZXQvQ1BTIGlzIGluY29ycG9yYXRlZCBieSByZWZlcmVu
+Y2UxHzAdBgNVBAsTFihjKSAyMDA2IEVudHJ1c3QsIEluYy4xLTArBgNVBAMTJEVudHJ1c3QgUm9v
+dCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB
+ALaVtkNC+sZtKm9I35RMOVcF7sN5EUFoNu3s/poBj6E4KPz3EEZmLk0eGrEaTsbRwJWIsMn/MYsz
+A9u3g3s+IIRe7bJWKKf44LlAcTfFy0cOlypowCKVYhXbR9n10Cv/gkvJrT7eTNuQgFA/CYqEAOww
+Cj0Yzfv9KlmaI5UXLEWeH25DeW0MXJj+SKfFI0dcXv1u5x609mhF0YaDW6KKjbHjKYD+JXGIrb68
+j6xSlkuqUY3kEzEZ6E5Nn9uss2rVvDlUccp6en+Q3X0dgNmBu1kmwhH+5pPi94DkZfs0Nw4pgHBN
+rziGLp5/V6+eF67rHMsoIV+2HNjnogQi+dPa2MsCAwEAAaOBsDCBrTAOBgNVHQ8BAf8EBAMCAQYw
+DwYDVR0TAQH/BAUwAwEB/zArBgNVHRAEJDAigA8yMDA2MTEyNzIwMjM0MlqBDzIwMjYxMTI3MjA1
+MzQyWjAfBgNVHSMEGDAWgBRokORnpKZTgMeGZqTx90tD+4S9bTAdBgNVHQ4EFgQUaJDkZ6SmU4DH
+hmak8fdLQ/uEvW0wHQYJKoZIhvZ9B0EABBAwDhsIVjcuMTo0LjADAgSQMA0GCSqGSIb3DQEBBQUA
+A4IBAQCT1DCw1wMgKtD5Y+iRDAUgqV8ZyntyTtSx29CW+1RaGSwMCPeyvIWonX9tO1KzKtvn1ISM
+Y/YPyyYBkVBs9F8U4pN0wBOeMDpQ47RgxRzwIkSNcUesyBrJ6ZuaAGAT/3B+XxFNSRuzFVJ7yVTa
+v52Vr2ua2J7p8eRDjeIRRDq/r72DQnNSi6q7pynP9WQcCk3RvKqsnyrQ/39/2n3qse0wJcGE2jTS
+W3iDVuycNsMm4hH2Z0kdkquM++v/eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0
+tHuu2guQOHXvgR1m0vdXcDazv/wor3ElhVsT/h5/WrQ8
+-----END CERTIFICATE-----
+
+RSA Security 2048 v3
+====================
+-----BEGIN CERTIFICATE-----
+MIIDYTCCAkmgAwIBAgIQCgEBAQAAAnwAAAAKAAAAAjANBgkqhkiG9w0BAQUFADA6MRkwFwYDVQQK
+ExBSU0EgU2VjdXJpdHkgSW5jMR0wGwYDVQQLExRSU0EgU2VjdXJpdHkgMjA0OCBWMzAeFw0wMTAy
+MjIyMDM5MjNaFw0yNjAyMjIyMDM5MjNaMDoxGTAXBgNVBAoTEFJTQSBTZWN1cml0eSBJbmMxHTAb
+BgNVBAsTFFJTQSBTZWN1cml0eSAyMDQ4IFYzMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC
+AQEAt49VcdKA3XtpeafwGFAyPGJn9gqVB93mG/Oe2dJBVGutn3y+Gc37RqtBaB4Y6lXIL5F4iSj7
+Jylg/9+PjDvJSZu1pJTOAeo+tWN7fyb9Gd3AIb2E0S1PRsNO3Ng3OTsor8udGuorryGlwSMiuLgb
+WhOHV4PR8CDn6E8jQrAApX2J6elhc5SYcSa8LWrg903w8bYqODGBDSnhAMFRD0xS+ARaqn1y07iH
+KrtjEAMqs6FPDVpeRrc9DvV07Jmf+T0kgYim3WBU6JU2PcYJk5qjEoAAVZkZR73QpXzDuvsf9/UP
++Ky5tfQ3mBMY3oVbtwyCO4dvlTlYMNpuAWgXIszACwIDAQABo2MwYTAPBgNVHRMBAf8EBTADAQH/
+MA4GA1UdDwEB/wQEAwIBBjAfBgNVHSMEGDAWgBQHw1EwpKrpRa41JPr/JCwz0LGdjDAdBgNVHQ4E
+FgQUB8NRMKSq6UWuNST6/yQsM9CxnYwwDQYJKoZIhvcNAQEFBQADggEBAF8+hnZuuDU8TjYcHnmY
+v/3VEhF5Ug7uMYm83X/50cYVIeiKAVQNOvtUudZj1LGqlk2iQk3UUx+LEN5/Zb5gEydxiKRz44Rj
+0aRV4VCT5hsOedBnvEbIvz8XDZXmxpBp3ue0L96VfdASPz0+f00/FGj1EVDVwfSQpQgdMWD/YIwj
+VAqv/qFuxdF6Kmh4zx6CCiC0H63lhbJqaHVOrSU3lIW+vaHU6rcMSzyd6BIA8F+sDeGscGNz9395
+nzIlQnQFgCi/vcEkllgVsRch6YlL2weIZ/QVrXA+L02FO8K32/6YaCOJ4XQP3vTFhGMpG8zLB8kA
+pKnXwiJPZ9d37CAFYd4=
+-----END CERTIFICATE-----
+
+GeoTrust Global CA
+==================
+-----BEGIN CERTIFICATE-----
+MIIDVDCCAjygAwIBAgIDAjRWMA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVTMRYwFAYDVQQK
+Ew1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9iYWwgQ0EwHhcNMDIwNTIxMDQw
+MDAwWhcNMjIwNTIxMDQwMDAwWjBCMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5j
+LjEbMBkGA1UEAxMSR2VvVHJ1c3QgR2xvYmFsIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB
+CgKCAQEA2swYYzD99BcjGlZ+W988bDjkcbd4kdS8odhM+KhDtgPpTSEHCIjaWC9mOSm9BXiLnTjo
+BbdqfnGk5sRgprDvgOSJKA+eJdbtg/OtppHHmMlCGDUUna2YRpIuT8rxh0PBFpVXLVDviS2Aelet
+8u5fa9IAjbkU+BQVNdnARqN7csiRv8lVK83Qlz6cJmTM386DGXHKTubU1XupGc1V3sjs0l44U+Vc
+T4wt/lAjNvxm5suOpDkZALeVAjmRCw7+OC7RHQWa9k0+bw8HHa8sHo9gOeL6NlMTOdReJivbPagU
+vTLrGAMoUgRx5aszPeE4uwc2hGKceeoWMPRfwCvocWvk+QIDAQABo1MwUTAPBgNVHRMBAf8EBTAD
+AQH/MB0GA1UdDgQWBBTAephojYn7qwVkDBF9qn1luMrMTjAfBgNVHSMEGDAWgBTAephojYn7qwVk
+DBF9qn1luMrMTjANBgkqhkiG9w0BAQUFAAOCAQEANeMpauUvXVSOKVCUn5kaFOSPeCpilKInZ57Q
+zxpeR+nBsqTP3UEaBU6bS+5Kb1VSsyShNwrrZHYqLizz/Tt1kL/6cdjHPTfStQWVYrmm3ok9Nns4
+d0iXrKYgjy6myQzCsplFAMfOEVEiIuCl6rYVSAlk6l5PdPcFPseKUgzbFbS9bZvlxrFUaKnjaZC2
+mqUPuLk/IH2uSrW4nOQdtqvmlKXBx4Ot2/Unhw4EbNX/3aBd7YdStysVAq45pmp06drE57xNNB6p
+XE0zX5IJL4hmXXeXxx12E6nV5fEWCRE11azbJHFwLJhWC9kXtNHjUStedejV0NxPNO3CBWaAocvm
+Mw==
+-----END CERTIFICATE-----
+
+GeoTrust Global CA 2
+====================
+-----BEGIN CERTIFICATE-----
+MIIDZjCCAk6gAwIBAgIBATANBgkqhkiG9w0BAQUFADBEMQswCQYDVQQGEwJVUzEWMBQGA1UEChMN
+R2VvVHJ1c3QgSW5jLjEdMBsGA1UEAxMUR2VvVHJ1c3QgR2xvYmFsIENBIDIwHhcNMDQwMzA0MDUw
+MDAwWhcNMTkwMzA0MDUwMDAwWjBEMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5j
+LjEdMBsGA1UEAxMUR2VvVHJ1c3QgR2xvYmFsIENBIDIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAw
+ggEKAoIBAQDvPE1APRDfO1MA4Wf+lGAVPoWI8YkNkMgoI5kF6CsgncbzYEbYwbLVjDHZ3CB5JIG/
+NTL8Y2nbsSpr7iFY8gjpeMtvy/wWUsiRxP89c96xPqfCfWbB9X5SJBri1WeR0IIQ13hLTytCOb1k
+LUCgsBDTOEhGiKEMuzozKmKY+wCdE1l/bztyqu6mD4b5BWHqZ38MN5aL5mkWRxHCJ1kDs6ZgwiFA
+Vvqgx306E+PsV8ez1q6diYD3Aecs9pYrEw15LNnA5IZ7S4wMcoKK+xfNAGw6EzywhIdLFnopsk/b
+HdQL82Y3vdj2V7teJHq4PIu5+pIaGoSe2HSPqht/XvT+RSIhAgMBAAGjYzBhMA8GA1UdEwEB/wQF
+MAMBAf8wHQYDVR0OBBYEFHE4NvICMVNHK266ZUapEBVYIAUJMB8GA1UdIwQYMBaAFHE4NvICMVNH
+K266ZUapEBVYIAUJMA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQUFAAOCAQEAA/e1K6tdEPx7
+srJerJsOflN4WT5CBP51o62sgU7XAotexC3IUnbHLB/8gTKY0UvGkpMzNTEv/NgdRN3ggX+d6Yvh
+ZJFiCzkIjKx0nVnZellSlxG5FntvRdOW2TF9AjYPnDtuzywNA0ZF66D0f0hExghAzN4bcLUprbqL
+OzRldRtxIR0sFAqwlpW41uryZfspuk/qkZN0abby/+Ea0AzRdoXLiiW9l14sbxWZJue2Kf8i7MkC
+x1YAzUm5s2x7UwQa4qjJqhIFI8LO57sEAszAR6LkxCkvW0VXiVHuPOtSCP8HNR6fNWpHSlaY0VqF
+H4z1Ir+rzoPz4iIprn2DQKi6bA==
+-----END CERTIFICATE-----
+
+GeoTrust Universal CA
+=====================
+-----BEGIN CERTIFICATE-----
+MIIFaDCCA1CgAwIBAgIBATANBgkqhkiG9w0BAQUFADBFMQswCQYDVQQGEwJVUzEWMBQGA1UEChMN
+R2VvVHJ1c3QgSW5jLjEeMBwGA1UEAxMVR2VvVHJ1c3QgVW5pdmVyc2FsIENBMB4XDTA0MDMwNDA1
+MDAwMFoXDTI5MDMwNDA1MDAwMFowRTELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IElu
+Yy4xHjAcBgNVBAMTFUdlb1RydXN0IFVuaXZlcnNhbCBDQTCCAiIwDQYJKoZIhvcNAQEBBQADggIP
+ADCCAgoCggIBAKYVVaCjxuAfjJ0hUNfBvitbtaSeodlyWL0AG0y/YckUHUWCq8YdgNY96xCcOq9t
+JPi8cQGeBvV8Xx7BDlXKg5pZMK4ZyzBIle0iN430SppyZj6tlcDgFgDgEB8rMQ7XlFTTQjOgNB0e
+RXbdT8oYN+yFFXoZCPzVx5zw8qkuEKmS5j1YPakWaDwvdSEYfyh3peFhF7em6fgemdtzbvQKoiFs
+7tqqhZJmr/Z6a4LauiIINQ/PQvE1+mrufislzDoR5G2vc7J2Ha3QsnhnGqQ5HFELZ1aD/ThdDc7d
+8Lsrlh/eezJS/R27tQahsiFepdaVaH/wmZ7cRQg+59IJDTWU3YBOU5fXtQlEIGQWFwMCTFMNaN7V
+qnJNk22CDtucvc+081xdVHppCZbW2xHBjXWotM85yM48vCR85mLK4b19p71XZQvk/iXttmkQ3Cga
+Rr0BHdCXteGYO8A3ZNY9lO4L4fUorgtWv3GLIylBjobFS1J72HGrH4oVpjuDWtdYAVHGTEHZf9hB
+Z3KiKN9gg6meyHv8U3NyWfWTehd2Ds735VzZC1U0oqpbtWpU5xPKV+yXbfReBi9Fi1jUIxaS5BZu
+KGNZMN9QAZxjiRqf2xeUgnA3wySemkfWWspOqGmJch+RbNt+nhutxx9z3SxPGWX9f5NAEC7S8O08
+ni4oPmkmM8V7AgMBAAGjYzBhMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNq7LqqwDLiIJlF0
+XG0D08DYj3rWMB8GA1UdIwQYMBaAFNq7LqqwDLiIJlF0XG0D08DYj3rWMA4GA1UdDwEB/wQEAwIB
+hjANBgkqhkiG9w0BAQUFAAOCAgEAMXjmx7XfuJRAyXHEqDXsRh3ChfMoWIawC/yOsjmPRFWrZIRc
+aanQmjg8+uUfNeVE44B5lGiku8SfPeE0zTBGi1QrlaXv9z+ZhP015s8xxtxqv6fXIwjhmF7DWgh2
+qaavdy+3YL1ERmrvl/9zlcGO6JP7/TG37FcREUWbMPEaiDnBTzynANXH/KttgCJwpQzgXQQpAvvL
+oJHRfNbDflDVnVi+QTjruXU8FdmbyUqDWcDaU/0zuzYYm4UPFd3uLax2k7nZAY1IEKj79TiG8dsK
+xr2EoyNB3tZ3b4XUhRxQ4K5RirqNPnbiucon8l+f725ZDQbYKxek0nxru18UGkiPGkzns0ccjkxF
+KyDuSN/n3QmOGKjaQI2SJhFTYXNd673nxE0pN2HrrDktZy4W1vUAg4WhzH92xH3kt0tm7wNFYGm2
+DFKWkoRepqO1pD4r2czYG0eq8kTaT/kD6PAUyz/zg97QwVTjt+gKN02LIFkDMBmhLMi9ER/frslK
+xfMnZmaGrGiR/9nmUxwPi1xpZQomyB40w11Re9epnAahNt3ViZS82eQtDF4JbAiXfKM9fJP/P6EU
+p8+1Xevb2xzEdt+Iub1FBZUbrvxGakyvSOPOrg/SfuvmbJxPgWp6ZKy7PtXny3YuxadIwVyQD8vI
+P/rmMuGNG2+k5o7Y+SlIis5z/iw=
+-----END CERTIFICATE-----
+
+GeoTrust Universal CA 2
+=======================
+-----BEGIN CERTIFICATE-----
+MIIFbDCCA1SgAwIBAgIBATANBgkqhkiG9w0BAQUFADBHMQswCQYDVQQGEwJVUzEWMBQGA1UEChMN
+R2VvVHJ1c3QgSW5jLjEgMB4GA1UEAxMXR2VvVHJ1c3QgVW5pdmVyc2FsIENBIDIwHhcNMDQwMzA0
+MDUwMDAwWhcNMjkwMzA0MDUwMDAwWjBHMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3Qg
+SW5jLjEgMB4GA1UEAxMXR2VvVHJ1c3QgVW5pdmVyc2FsIENBIDIwggIiMA0GCSqGSIb3DQEBAQUA
+A4ICDwAwggIKAoICAQCzVFLByT7y2dyxUxpZKeexw0Uo5dfR7cXFS6GqdHtXr0om/Nj1XqduGdt0
+DE81WzILAePb63p3NeqqWuDW6KFXlPCQo3RWlEQwAx5cTiuFJnSCegx2oG9NzkEtoBUGFF+3Qs17
+j1hhNNwqCPkuwwGmIkQcTAeC5lvO0Ep8BNMZcyfwqph/Lq9O64ceJHdqXbboW0W63MOhBW9Wjo8Q
+JqVJwy7XQYci4E+GymC16qFjwAGXEHm9ADwSbSsVsaxLse4YuU6W3Nx2/zu+z18DwPw76L5GG//a
+QMJS9/7jOvdqdzXQ2o3rXhhqMcceujwbKNZrVMaqW9eiLBsZzKIC9ptZvTdrhrVtgrrY6slWvKk2
+WP0+GfPtDCapkzj4T8FdIgbQl+rhrcZV4IErKIM6+vR7IVEAvlI4zs1meaj0gVbi0IMJR1FbUGrP
+20gaXT73y/Zl92zxlfgCOzJWgjl6W70viRu/obTo/3+NjN8D8WBOWBFM66M/ECuDmgFz2ZRthAAn
+ZqzwcEAJQpKtT5MNYQlRJNiS1QuUYbKHsu3/mjX/hVTK7URDrBs8FmtISgocQIgfksILAAX/8sgC
+SqSqqcyZlpwvWOB94b67B9xfBHJcMTTD7F8t4D1kkCLm0ey4Lt1ZrtmhN79UNdxzMk+MBB4zsslG
+8dhcyFVQyWi9qLo2CQIDAQABo2MwYTAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBR281Xh+qQ2
++/CfXGJx7Tz0RzgQKzAfBgNVHSMEGDAWgBR281Xh+qQ2+/CfXGJx7Tz0RzgQKzAOBgNVHQ8BAf8E
+BAMCAYYwDQYJKoZIhvcNAQEFBQADggIBAGbBxiPz2eAubl/oz66wsCVNK/g7WJtAJDday6sWSf+z
+dXkzoS9tcBc0kf5nfo/sm+VegqlVHy/c1FEHEv6sFj4sNcZj/NwQ6w2jqtB8zNHQL1EuxBRa3ugZ
+4T7GzKQp5y6EqgYweHZUcyiYWTjgAA1i00J9IZ+uPTqM1fp3DRgrFg5fNuH8KrUwJM/gYwx7WBr+
+mbpCErGR9Hxo4sjoryzqyX6uuyo9DRXcNJW2GHSoag/HtPQTxORb7QrSpJdMKu0vbBKJPfEncKpq
+A1Ihn0CoZ1Dy81of398j9tx4TuaYT1U6U+Pv8vSfx3zYWK8pIpe44L2RLrB27FcRz+8pRPPphXpg
+Y+RdM4kX2TGq2tbzGDVyz4crL2MjhF2EjD9XoIj8mZEoJmmZ1I+XRL6O1UixpCgp8RW04eWe3fiP
+pm8m1wk8OhwRDqZsN/etRIcsKMfYdIKz0G9KV7s1KSegi+ghp4dkNl3M2Basx7InQJJVOCiNUW7d
+FGdTbHFcJoRNdVq2fmBWqU2t+5sel/MN2dKXVHfaPRK34B7vCAas+YWH6aLcr34YEoP9VhdBLtUp
+gn2Z9DH2canPLAEnpQW5qrJITirvn5NSUZU8UnOOVkwXQMAJKOSLakhT2+zNVVXxxvjpoixMptEm
+X36vWkzaH6byHCx+rgIW0lbQL1dTR+iS
+-----END CERTIFICATE-----
+
+Visa eCommerce Root
+===================
+-----BEGIN CERTIFICATE-----
+MIIDojCCAoqgAwIBAgIQE4Y1TR0/BvLB+WUF1ZAcYjANBgkqhkiG9w0BAQUFADBrMQswCQYDVQQG
+EwJVUzENMAsGA1UEChMEVklTQTEvMC0GA1UECxMmVmlzYSBJbnRlcm5hdGlvbmFsIFNlcnZpY2Ug
+QXNzb2NpYXRpb24xHDAaBgNVBAMTE1Zpc2EgZUNvbW1lcmNlIFJvb3QwHhcNMDIwNjI2MDIxODM2
+WhcNMjIwNjI0MDAxNjEyWjBrMQswCQYDVQQGEwJVUzENMAsGA1UEChMEVklTQTEvMC0GA1UECxMm
+VmlzYSBJbnRlcm5hdGlvbmFsIFNlcnZpY2UgQXNzb2NpYXRpb24xHDAaBgNVBAMTE1Zpc2EgZUNv
+bW1lcmNlIFJvb3QwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvV95WHm6h2mCxlCfL
+F9sHP4CFT8icttD0b0/Pmdjh28JIXDqsOTPHH2qLJj0rNfVIsZHBAk4ElpF7sDPwsRROEW+1QK8b
+RaVK7362rPKgH1g/EkZgPI2h4H3PVz4zHvtH8aoVlwdVZqW1LS7YgFmypw23RuwhY/81q6UCzyr0
+TP579ZRdhE2o8mCP2w4lPJ9zcc+U30rq299yOIzzlr3xF7zSujtFWsan9sYXiwGd/BmoKoMWuDpI
+/k4+oKsGGelT84ATB+0tvz8KPFUgOSwsAGl0lUq8ILKpeeUYiZGo3BxN77t+Nwtd/jmliFKMAGzs
+GHxBvfaLdXe6YJ2E5/4tAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEG
+MB0GA1UdDgQWBBQVOIMPPyw/cDMezUb+B4wg4NfDtzANBgkqhkiG9w0BAQUFAAOCAQEAX/FBfXxc
+CLkr4NWSR/pnXKUTwwMhmytMiUbPWU3J/qVAtmPN3XEolWcRzCSs00Rsca4BIGsDoo8Ytyk6feUW
+YFN4PMCvFYP3j1IzJL1kk5fui/fbGKhtcbP3LBfQdCVp9/5rPJS+TUtBjE7ic9DjkCJzQ83z7+pz
+zkWKsKZJ/0x9nXGIxHYdkFsd7v3M9+79YKWxehZx0RbQfBI8bGmX265fOZpwLwU8GUYEmSA20GBu
+YQa7FkKMcPcw++DbZqMAAb3mLNqRX6BGi01qnD093QVG/na/oAo85ADmJ7f/hC3euiInlhBx6yLt
+398znM/jra6O1I7mT1GvFpLgXPYHDw==
+-----END CERTIFICATE-----
+
+Certum Root CA
+==============
+-----BEGIN CERTIFICATE-----
+MIIDDDCCAfSgAwIBAgIDAQAgMA0GCSqGSIb3DQEBBQUAMD4xCzAJBgNVBAYTAlBMMRswGQYDVQQK
+ExJVbml6ZXRvIFNwLiB6IG8uby4xEjAQBgNVBAMTCUNlcnR1bSBDQTAeFw0wMjA2MTExMDQ2Mzla
+Fw0yNzA2MTExMDQ2MzlaMD4xCzAJBgNVBAYTAlBMMRswGQYDVQQKExJVbml6ZXRvIFNwLiB6IG8u
+by4xEjAQBgNVBAMTCUNlcnR1bSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM6x
+wS7TT3zNJc4YPk/EjG+AanPIW1H4m9LcuwBcsaD8dQPugfCI7iNS6eYVM42sLQnFdvkrOYCJ5JdL
+kKWoePhzQ3ukYbDYWMzhbGZ+nPMJXlVjhNWo7/OxLjBos8Q82KxujZlakE403Daaj4GIULdtlkIJ
+89eVgw1BS7Bqa/j8D35in2fE7SZfECYPCE/wpFcozo+47UX2bu4lXapuOb7kky/ZR6By6/qmW6/K
+Uz/iDsaWVhFu9+lmqSbYf5VT7QqFiLpPKaVCjF62/IUgAKpoC6EahQGcxEZjgoi2IrHu/qpGWX7P
+NSzVttpd90gzFFS269lvzs2I1qsb2pY7HVkCAwEAAaMTMBEwDwYDVR0TAQH/BAUwAwEB/zANBgkq
+hkiG9w0BAQUFAAOCAQEAuI3O7+cUus/usESSbLQ5PqKEbq24IXfS1HeCh+YgQYHu4vgRt2PRFze+
+GXYkHAQaTOs9qmdvLdTN/mUxcMUbpgIKumB7bVjCmkn+YzILa+M6wKyrO7Do0wlRjBCDxjTgxSvg
+GrZgFCdsMneMvLJymM/NzD+5yCRCFNZX/OYmQ6kd5YCQzgNUKD73P9P4Te1qCjqTE5s7FCMTY5w/
+0YcneeVMUeMBrYVdGjux1XMQpNPyvG5k9VpWkKjHDkx0Dy5xO/fIR/RpbxXyEV6DHpx8Uq79AtoS
+qFlnGNu8cN2bsWntgM6JQEhqDjXKKWYVIZQs6GAqm4VKQPNriiTsBhYscw==
+-----END CERTIFICATE-----
+
+Comodo AAA Services root
+========================
+-----BEGIN CERTIFICATE-----
+MIIEMjCCAxqgAwIBAgIBATANBgkqhkiG9w0BAQUFADB7MQswCQYDVQQGEwJHQjEbMBkGA1UECAwS
+R3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRowGAYDVQQKDBFDb21vZG8gQ0Eg
+TGltaXRlZDEhMB8GA1UEAwwYQUFBIENlcnRpZmljYXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAw
+MFoXDTI4MTIzMTIzNTk1OVowezELMAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hl
+c3RlcjEQMA4GA1UEBwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxITAfBgNV
+BAMMGEFBQSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC
+ggEBAL5AnfRu4ep2hxxNRUSOvkbIgwadwSr+GB+O5AL686tdUIoWMQuaBtDFcCLNSS1UY8y2bmhG
+C1Pqy0wkwLxyTurxFa70VJoSCsN6sjNg4tqJVfMiWPPe3M/vg4aijJRPn2jymJBGhCfHdr/jzDUs
+i14HZGWCwEiwqJH5YZ92IFCokcdmtet4YgNW8IoaE+oxox6gmf049vYnMlhvB/VruPsUK6+3qszW
+Y19zjNoFmag4qMsXeDZRrOme9Hg6jc8P2ULimAyrL58OAd7vn5lJ8S3frHRNG5i1R8XlKdH5kBjH
+Ypy+g8cmez6KJcfA3Z3mNWgQIJ2P2N7Sw4ScDV7oL8kCAwEAAaOBwDCBvTAdBgNVHQ4EFgQUoBEK
+Iz6W8Qfs4q8p74Klf9AwpLQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wewYDVR0f
+BHQwcjA4oDagNIYyaHR0cDovL2NybC5jb21vZG9jYS5jb20vQUFBQ2VydGlmaWNhdGVTZXJ2aWNl
+cy5jcmwwNqA0oDKGMGh0dHA6Ly9jcmwuY29tb2RvLm5ldC9BQUFDZXJ0aWZpY2F0ZVNlcnZpY2Vz
+LmNybDANBgkqhkiG9w0BAQUFAAOCAQEACFb8AvCb6P+k+tZ7xkSAzk/ExfYAWMymtrwUSWgEdujm
+7l3sAg9g1o1QGE8mTgHj5rCl7r+8dFRBv/38ErjHT1r0iWAFf2C3BUrz9vHCv8S5dIa2LX1rzNLz
+Rt0vxuBqw8M0Ayx9lt1awg6nCpnBBYurDC/zXDrPbDdVCYfeU0BsWO/8tqtlbgT2G9w84FoVxp7Z
+8VlIMCFlA2zs6SFz7JsDoeA3raAVGI/6ugLOpyypEBMs1OUIJqsil2D4kF501KKaU73yqWjgom7C
+12yxow+ev+to51byrvLjKzg6CYG1a4XXvi3tPxq3smPi9WIsgtRqAEFQ8TmDn5XpNpaYbg==
+-----END CERTIFICATE-----
+
+Comodo Secure Services root
+===========================
+-----BEGIN CERTIFICATE-----
+MIIEPzCCAyegAwIBAgIBATANBgkqhkiG9w0BAQUFADB+MQswCQYDVQQGEwJHQjEbMBkGA1UECAwS
+R3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRowGAYDVQQKDBFDb21vZG8gQ0Eg
+TGltaXRlZDEkMCIGA1UEAwwbU2VjdXJlIENlcnRpZmljYXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAw
+MDAwMFoXDTI4MTIzMTIzNTk1OVowfjELMAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFu
+Y2hlc3RlcjEQMA4GA1UEBwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxJDAi
+BgNVBAMMG1NlY3VyZSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEP
+ADCCAQoCggEBAMBxM4KK0HDrc4eCQNUd5MvJDkKQ+d40uaG6EfQlhfPMcm3ye5drswfxdySRXyWP
+9nQ95IDC+DwN879A6vfIUtFyb+/Iq0G4bi4XKpVpDM3SHpR7LZQdqnXXs5jLrLxkU0C8j6ysNstc
+rbvd4JQX7NFc0L/vpZXJkMWwrPsbQ996CF23uPJAGysnnlDOXmWCiIxe004MeuoIkbY2qitC++rC
+oznl2yY4rYsK7hljxxwk3wN42ubqwUcaCwtGCd0C/N7Lh1/XMGNooa7cMqG6vv5Eq2i2pRcV/b3V
+p6ea5EQz6YiO/O1R65NxTq0B50SOqy3LqP4BSUjwwN3HaNiS/j0CAwEAAaOBxzCBxDAdBgNVHQ4E
+FgQUPNiTiMLAggnMAZkGkyDpnnAJY08wDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8w
+gYEGA1UdHwR6MHgwO6A5oDeGNWh0dHA6Ly9jcmwuY29tb2RvY2EuY29tL1NlY3VyZUNlcnRpZmlj
+YXRlU2VydmljZXMuY3JsMDmgN6A1hjNodHRwOi8vY3JsLmNvbW9kby5uZXQvU2VjdXJlQ2VydGlm
+aWNhdGVTZXJ2aWNlcy5jcmwwDQYJKoZIhvcNAQEFBQADggEBAIcBbSMdflsXfcFhMs+P5/OKlFlm
+4J4oqF7Tt/Q05qo5spcWxYJvMqTpjOev/e/C6LlLqqP05tqNZSH7uoDrJiiFGv45jN5bBAS0VPmj
+Z55B+glSzAVIqMk/IQQezkhr/IXownuvf7fM+F86/TXGDe+X3EyrEeFryzHRbPtIgKvcnDe4IRRL
+DXE97IMzbtFuMhbsmMcWi1mmNKsFVy2T96oTy9IT4rcuO81rUBcJaD61JlfutuC23bkpgHl9j6Pw
+pCikFcSF9CfUa7/lXORlAnZUtOM3ZiTTGWHIUhDlizeauan5Hb/qmZJhlv8BzaFfDbxxvA6sCx1H
+RR3B7Hzs/Sk=
+-----END CERTIFICATE-----
+
+Comodo Trusted Services root
+============================
+-----BEGIN CERTIFICATE-----
+MIIEQzCCAyugAwIBAgIBATANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJHQjEbMBkGA1UECAwS
+R3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRowGAYDVQQKDBFDb21vZG8gQ0Eg
+TGltaXRlZDElMCMGA1UEAwwcVHJ1c3RlZCBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczAeFw0wNDAxMDEw
+MDAwMDBaFw0yODEyMzEyMzU5NTlaMH8xCzAJBgNVBAYTAkdCMRswGQYDVQQIDBJHcmVhdGVyIE1h
+bmNoZXN0ZXIxEDAOBgNVBAcMB1NhbGZvcmQxGjAYBgNVBAoMEUNvbW9kbyBDQSBMaW1pdGVkMSUw
+IwYDVQQDDBxUcnVzdGVkIENlcnRpZmljYXRlIFNlcnZpY2VzMIIBIjANBgkqhkiG9w0BAQEFAAOC
+AQ8AMIIBCgKCAQEA33FvNlhTWvI2VFeAxHQIIO0Yfyod5jWaHiWsnOWWfnJSoBVC21ndZHoa0Lh7
+3TkVvFVIxO06AOoxEbrycXQaZ7jPM8yoMa+j49d/vzMtTGo87IvDktJTdyR0nAducPy9C1t2ul/y
+/9c3S0pgePfw+spwtOpZqqPOSC+pw7ILfhdyFgymBwwbOM/JYrc/oJOlh0Hyt3BAd9i+FHzjqMB6
+juljatEPmsbS9Is6FARW1O24zG71++IsWL1/T2sr92AkWCTOJu80kTrV44HQsvAEAtdbtz6SrGsS
+ivnkBbA7kUlcsutT6vifR4buv5XAwAaf0lteERv0xwQ1KdJVXOTt6wIDAQABo4HJMIHGMB0GA1Ud
+DgQWBBTFe1i97doladL3WRaoszLAeydb9DAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB
+/zCBgwYDVR0fBHwwejA8oDqgOIY2aHR0cDovL2NybC5jb21vZG9jYS5jb20vVHJ1c3RlZENlcnRp
+ZmljYXRlU2VydmljZXMuY3JsMDqgOKA2hjRodHRwOi8vY3JsLmNvbW9kby5uZXQvVHJ1c3RlZENl
+cnRpZmljYXRlU2VydmljZXMuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQDIk4E7ibSvuIQSTI3S8Ntw
+uleGFTQQuS9/HrCoiWChisJ3DFBKmwCL2Iv0QeLQg4pKHBQGsKNoBXAxMKdTmw7pSqBYaWcOrp32
+pSxBvzwGa+RZzG0Q8ZZvH9/0BAKkn0U+yNj6NkZEUD+Cl5EfKNsYEYwq5GWDVxISjBc/lDb+XbDA
+BHcTuPQV1T84zJQ6VdCsmPW6AF/ghhmBeC8owH7TzEIK9a5QoNE+xqFx7D+gIIxmOom0jtTYsU0l
+R+4viMi14QVFwL4Ucd56/Y57fU0IlqUSc/AtyjcndBInTMu2l+nZrghtWjlA3QVHdWpaIbOjGM9O
+9y5Xt5hwXsjEeLBi
+-----END CERTIFICATE-----
+
+QuoVadis Root CA
+================
+-----BEGIN CERTIFICATE-----
+MIIF0DCCBLigAwIBAgIEOrZQizANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJCTTEZMBcGA1UE
+ChMQUXVvVmFkaXMgTGltaXRlZDElMCMGA1UECxMcUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0
+eTEuMCwGA1UEAxMlUXVvVmFkaXMgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wMTAz
+MTkxODMzMzNaFw0yMTAzMTcxODMzMzNaMH8xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRp
+cyBMaW1pdGVkMSUwIwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MS4wLAYDVQQD
+EyVRdW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEF
+AAOCAQ8AMIIBCgKCAQEAv2G1lVO6V/z68mcLOhrfEYBklbTRvM16z/Ypli4kVEAkOPcahdxYTMuk
+J0KX0J+DisPkBgNbAKVRHnAEdOLB1Dqr1607BxgFjv2DrOpm2RgbaIr1VxqYuvXtdj182d6UajtL
+F8HVj71lODqV0D1VNk7feVcxKh7YWWVJWCCYfqtffp/p1k3sg3Spx2zY7ilKhSoGFPlU5tPaZQeL
+YzcS19Dsw3sgQUSj7cugF+FxZc4dZjH3dgEZyH0DWLaVSR2mEiboxgx24ONmy+pdpibu5cxfvWen
+AScOospUxbF6lR1xHkopigPcakXBpBlebzbNw6Kwt/5cOOJSvPhEQ+aQuwIDAQABo4ICUjCCAk4w
+PQYIKwYBBQUHAQEEMTAvMC0GCCsGAQUFBzABhiFodHRwczovL29jc3AucXVvdmFkaXNvZmZzaG9y
+ZS5jb20wDwYDVR0TAQH/BAUwAwEB/zCCARoGA1UdIASCAREwggENMIIBCQYJKwYBBAG+WAABMIH7
+MIHUBggrBgEFBQcCAjCBxxqBxFJlbGlhbmNlIG9uIHRoZSBRdW9WYWRpcyBSb290IENlcnRpZmlj
+YXRlIGJ5IGFueSBwYXJ0eSBhc3N1bWVzIGFjY2VwdGFuY2Ugb2YgdGhlIHRoZW4gYXBwbGljYWJs
+ZSBzdGFuZGFyZCB0ZXJtcyBhbmQgY29uZGl0aW9ucyBvZiB1c2UsIGNlcnRpZmljYXRpb24gcHJh
+Y3RpY2VzLCBhbmQgdGhlIFF1b1ZhZGlzIENlcnRpZmljYXRlIFBvbGljeS4wIgYIKwYBBQUHAgEW
+Fmh0dHA6Ly93d3cucXVvdmFkaXMuYm0wHQYDVR0OBBYEFItLbe3TKbkGGew5Oanwl4Rqy+/fMIGu
+BgNVHSMEgaYwgaOAFItLbe3TKbkGGew5Oanwl4Rqy+/foYGEpIGBMH8xCzAJBgNVBAYTAkJNMRkw
+FwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSUwIwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0
+aG9yaXR5MS4wLAYDVQQDEyVRdW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggQ6
+tlCLMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOCAQEAitQUtf70mpKnGdSkfnIYj9lo
+fFIk3WdvOXrEql494liwTXCYhGHoG+NpGA7O+0dQoE7/8CQfvbLO9Sf87C9TqnN7Az10buYWnuul
+LsS/VidQK2K6vkscPFVcQR0kvoIgR13VRH56FmjffU1RcHhXHTMe/QKZnAzNCgVPx7uOpHX6Sm2x
+gI4JVrmcGmD+XcHXetwReNDWXcG31a0ymQM6isxUJTkxgXsTIlG6Rmyhu576BGxJJnSP0nPrzDCi
+5upZIof4l/UO/erMkqQWxFIY6iHOsfHmhIHluqmGKPJDWl0Snawe2ajlCmqnf6CHKc/yiU3U7MXi
+5nrQNiOKSnQ2+Q==
+-----END CERTIFICATE-----
+
+QuoVadis Root CA 2
+==================
+-----BEGIN CERTIFICATE-----
+MIIFtzCCA5+gAwIBAgICBQkwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoT
+EFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJvb3QgQ0EgMjAeFw0wNjExMjQx
+ODI3MDBaFw0zMTExMjQxODIzMzNaMEUxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM
+aW1pdGVkMRswGQYDVQQDExJRdW9WYWRpcyBSb290IENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4IC
+DwAwggIKAoICAQCaGMpLlA0ALa8DKYrwD4HIrkwZhR0In6spRIXzL4GtMh6QRr+jhiYaHv5+HBg6
+XJxgFyo6dIMzMH1hVBHL7avg5tKifvVrbxi3Cgst/ek+7wrGsxDp3MJGF/hd/aTa/55JWpzmM+Yk
+lvc/ulsrHHo1wtZn/qtmUIttKGAr79dgw8eTvI02kfN/+NsRE8Scd3bBrrcCaoF6qUWD4gXmuVbB
+lDePSHFjIuwXZQeVikvfj8ZaCuWw419eaxGrDPmF60Tp+ARz8un+XJiM9XOva7R+zdRcAitMOeGy
+lZUtQofX1bOQQ7dsE/He3fbE+Ik/0XX1ksOR1YqI0JDs3G3eicJlcZaLDQP9nL9bFqyS2+r+eXyt
+66/3FsvbzSUr5R/7mp/iUcw6UwxI5g69ybR2BlLmEROFcmMDBOAENisgGQLodKcftslWZvB1Jdxn
+wQ5hYIizPtGo/KPaHbDRsSNU30R2be1B2MGyIrZTHN81Hdyhdyox5C315eXbyOD/5YDXC2Og/zOh
+D7osFRXql7PSorW+8oyWHhqPHWykYTe5hnMz15eWniN9gqRMgeKh0bpnX5UHoycR7hYQe7xFSkyy
+BNKr79X9DFHOUGoIMfmR2gyPZFwDwzqLID9ujWc9Otb+fVuIyV77zGHcizN300QyNQliBJIWENie
+J0f7OyHj+OsdWwIDAQABo4GwMIGtMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1Ud
+DgQWBBQahGK8SEwzJQTU7tD2A8QZRtGUazBuBgNVHSMEZzBlgBQahGK8SEwzJQTU7tD2A8QZRtGU
+a6FJpEcwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMT
+ElF1b1ZhZGlzIFJvb3QgQ0EgMoICBQkwDQYJKoZIhvcNAQEFBQADggIBAD4KFk2fBluornFdLwUv
+Z+YTRYPENvbzwCYMDbVHZF34tHLJRqUDGCdViXh9duqWNIAXINzng/iN/Ae42l9NLmeyhP3ZRPx3
+UIHmfLTJDQtyU/h2BwdBR5YM++CCJpNVjP4iH2BlfF/nJrP3MpCYUNQ3cVX2kiF495V5+vgtJodm
+VjB3pjd4M1IQWK4/YY7yarHvGH5KWWPKjaJW1acvvFYfzznB4vsKqBUsfU16Y8Zsl0Q80m/DShcK
++JDSV6IZUaUtl0HaB0+pUNqQjZRG4T7wlP0QADj1O+hA4bRuVhogzG9Yje0uRY/W6ZM/57Es3zrW
+IozchLsib9D45MY56QSIPMO661V6bYCZJPVsAfv4l7CUW+v90m/xd2gNNWQjrLhVoQPRTUIZ3Ph1
+WVaj+ahJefivDrkRoHy3au000LYmYjgahwz46P0u05B/B5EqHdZ+XIWDmbA4CD/pXvk1B+TJYm5X
+f6dQlfe6yJvmjqIBxdZmv3lh8zwc4bmCXF2gw+nYSL0ZohEUGW6yhhtoPkg3Goi3XZZenMfvJ2II
+4pEZXNLxId26F0KCl3GBUzGpn/Z9Yr9y4aOTHcyKJloJONDO1w2AFrR4pTqHTI2KpdVGl/IsELm8
+VCLAAVBpQ570su9t+Oza8eOx79+Rj1QqCyXBJhnEUhAFZdWCEOrCMc0u
+-----END CERTIFICATE-----
+
+QuoVadis Root CA 3
+==================
+-----BEGIN CERTIFICATE-----
+MIIGnTCCBIWgAwIBAgICBcYwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoT
+EFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJvb3QgQ0EgMzAeFw0wNjExMjQx
+OTExMjNaFw0zMTExMjQxOTA2NDRaMEUxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM
+aW1pdGVkMRswGQYDVQQDExJRdW9WYWRpcyBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4IC
+DwAwggIKAoICAQDMV0IWVJzmmNPTTe7+7cefQzlKZbPoFog02w1ZkXTPkrgEQK0CSzGrvI2RaNgg
+DhoB4hp7Thdd4oq3P5kazethq8Jlph+3t723j/z9cI8LoGe+AaJZz3HmDyl2/7FWeUUrH556VOij
+KTVopAFPD6QuN+8bv+OPEKhyq1hX51SGyMnzW9os2l2ObjyjPtr7guXd8lyyBTNvijbO0BNO/79K
+DDRMpsMhvVAEVeuxu537RR5kFd5VAYwCdrXLoT9CabwvvWhDFlaJKjdhkf2mrk7AyxRllDdLkgbv
+BNDInIjbC3uBr7E9KsRlOni27tyAsdLTmZw67mtaa7ONt9XOnMK+pUsvFrGeaDsGb659n/je7Mwp
+p5ijJUMv7/FfJuGITfhebtfZFG4ZM2mnO4SJk8RTVROhUXhA+LjJou57ulJCg54U7QVSWllWp5f8
+nT8KKdjcT5EOE7zelaTfi5m+rJsziO+1ga8bxiJTyPbH7pcUsMV8eFLI8M5ud2CEpukqdiDtWAEX
+MJPpGovgc2PZapKUSU60rUqFxKMiMPwJ7Wgic6aIDFUhWMXhOp8q3crhkODZc6tsgLjoC2SToJyM
+Gf+z0gzskSaHirOi4XCPLArlzW1oUevaPwV/izLmE1xr/l9A4iLItLRkT9a6fUg+qGkM17uGcclz
+uD87nSVL2v9A6wIDAQABo4IBlTCCAZEwDwYDVR0TAQH/BAUwAwEB/zCB4QYDVR0gBIHZMIHWMIHT
+BgkrBgEEAb5YAAMwgcUwgZMGCCsGAQUFBwICMIGGGoGDQW55IHVzZSBvZiB0aGlzIENlcnRpZmlj
+YXRlIGNvbnN0aXR1dGVzIGFjY2VwdGFuY2Ugb2YgdGhlIFF1b1ZhZGlzIFJvb3QgQ0EgMyBDZXJ0
+aWZpY2F0ZSBQb2xpY3kgLyBDZXJ0aWZpY2F0aW9uIFByYWN0aWNlIFN0YXRlbWVudC4wLQYIKwYB
+BQUHAgEWIWh0dHA6Ly93d3cucXVvdmFkaXNnbG9iYWwuY29tL2NwczALBgNVHQ8EBAMCAQYwHQYD
+VR0OBBYEFPLAE+CCQz777i9nMpY1XNu4ywLQMG4GA1UdIwRnMGWAFPLAE+CCQz777i9nMpY1XNu4
+ywLQoUmkRzBFMQswCQYDVQQGEwJCTTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDEbMBkGA1UE
+AxMSUXVvVmFkaXMgUm9vdCBDQSAzggIFxjANBgkqhkiG9w0BAQUFAAOCAgEAT62gLEz6wPJv92ZV
+qyM07ucp2sNbtrCD2dDQ4iH782CnO11gUyeim/YIIirnv6By5ZwkajGxkHon24QRiSemd1o417+s
+hvzuXYO8BsbRd2sPbSQvS3pspweWyuOEn62Iix2rFo1bZhfZFvSLgNLd+LJ2w/w4E6oM3kJpK27z
+POuAJ9v1pkQNn1pVWQvVDVJIxa6f8i+AxeoyUDUSly7B4f/xI4hROJ/yZlZ25w9Rl6VSDE1JUZU2
+Pb+iSwwQHYaZTKrzchGT5Or2m9qoXadNt54CrnMAyNojA+j56hl0YgCUyyIgvpSnWbWCar6ZeXqp
+8kokUvd0/bpO5qgdAm6xDYBEwa7TIzdfu4V8K5Iu6H6li92Z4b8nby1dqnuH/grdS/yO9SbkbnBC
+bjPsMZ57k8HkyWkaPcBrTiJt7qtYTcbQQcEr6k8Sh17rRdhs9ZgC06DYVYoGmRmioHfRMJ6szHXu
+g/WwYjnPbFfiTNKRCw51KBuav/0aQ/HKd/s7j2G4aSgWQgRecCocIdiP4b0jWy10QJLZYxkNc91p
+vGJHvOB0K7Lrfb5BG7XARsWhIstfTsEokt4YutUqKLsRixeTmJlglFwjz1onl14LBQaTNx47aTbr
+qZ5hHY8y2o4M1nQ+ewkk2gF3R8Q7zTSMmfXK4SVhM7JZG+Ju1zdXtg2pEto=
+-----END CERTIFICATE-----
+
+Security Communication Root CA
+==============================
+-----BEGIN CERTIFICATE-----
+MIIDWjCCAkKgAwIBAgIBADANBgkqhkiG9w0BAQUFADBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMP
+U0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEw
+HhcNMDMwOTMwMDQyMDQ5WhcNMjMwOTMwMDQyMDQ5WjBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMP
+U0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEw
+ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCzs/5/022x7xZ8V6UMbXaKL0u/ZPtM7orw
+8yl89f/uKuDp6bpbZCKamm8sOiZpUQWZJtzVHGpxxpp9Hp3dfGzGjGdnSj74cbAZJ6kJDKaVv0uM
+DPpVmDvY6CKhS3E4eayXkmmziX7qIWgGmBSWh9JhNrxtJ1aeV+7AwFb9Ms+k2Y7CI9eNqPPYJayX
+5HA49LY6tJ07lyZDo6G8SVlyTCMwhwFY9k6+HGhWZq/NQV3Is00qVUarH9oe4kA92819uZKAnDfd
+DJZkndwi92SL32HeFZRSFaB9UslLqCHJxrHty8OVYNEP8Ktw+N/LTX7s1vqr2b1/VPKl6Xn62dZ2
+JChzAgMBAAGjPzA9MB0GA1UdDgQWBBSgc0mZaNyFW2XjmygvV5+9M7wHSDALBgNVHQ8EBAMCAQYw
+DwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAaECpqLvkT115swW1F7NgE+vGkl3g
+0dNq/vu+m22/xwVtWSDEHPC32oRYAmP6SBbvT6UL90qY8j+eG61Ha2POCEfrUj94nK9NrvjVT8+a
+mCoQQTlSxN3Zmw7vkwGusi7KaEIkQmywszo+zenaSMQVy+n5Bw+SUEmK3TGXX8npN6o7WWWXlDLJ
+s58+OmJYxUmtYg5xpTKqL8aJdkNAExNnPaJUJRDL8Try2frbSVa7pv6nQTXD4IhhyYjH3zYQIphZ
+6rBK+1YWc26sTfcioU+tHXotRSflMMFe8toTyyVCUZVHA4xsIcx0Qu1T/zOLjw9XARYvz6buyXAi
+FL39vmwLAw==
+-----END CERTIFICATE-----
+
+Sonera Class 2 Root CA
+======================
+-----BEGIN CERTIFICATE-----
+MIIDIDCCAgigAwIBAgIBHTANBgkqhkiG9w0BAQUFADA5MQswCQYDVQQGEwJGSTEPMA0GA1UEChMG
+U29uZXJhMRkwFwYDVQQDExBTb25lcmEgQ2xhc3MyIENBMB4XDTAxMDQwNjA3Mjk0MFoXDTIxMDQw
+NjA3Mjk0MFowOTELMAkGA1UEBhMCRkkxDzANBgNVBAoTBlNvbmVyYTEZMBcGA1UEAxMQU29uZXJh
+IENsYXNzMiBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJAXSjWdyvANlsdE+hY3
+/Ei9vX+ALTU74W+oZ6m/AxxNjG8yR9VBaKQTBME1DJqEQ/xcHf+Js+gXGM2RX/uJ4+q/Tl18GybT
+dXnt5oTjV+WtKcT0OijnpXuENmmz/V52vaMtmdOQTiMofRhj8VQ7Jp12W5dCsv+u8E7s3TmVToMG
+f+dJQMjFAbJUWmYdPfz56TwKnoG4cPABi+QjVHzIrviQHgCWctRUz2EjvOr7nQKV0ba5cTppCD8P
+tOFCx4j1P5iop7oc4HFx71hXgVB6XGt0Rg6DA5jDjqhu8nYybieDwnPz3BjotJPqdURrBGAgcVeH
+nfO+oJAjPYok4doh28MCAwEAAaMzMDEwDwYDVR0TAQH/BAUwAwEB/zARBgNVHQ4ECgQISqCqWITT
+XjwwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBQUAA4IBAQBazof5FnIVV0sd2ZvnoiYw7JNn39Yt
+0jSv9zilzqsWuasvfDXLrNAPtEwr/IDva4yRXzZ299uzGxnq9LIR/WFxRL8oszodv7ND6J+/3DEI
+cbCdjdY0RzKQxmUk96BKfARzjzlvF4xytb1LyHr4e4PDKE6cCepnP7JnBBvDFNr450kkkdAdavph
+Oe9r5yF1BgfYErQhIHBCcYHaPJo2vqZbDWpsmh+Re/n570K6Tk6ezAyNlNzZRZxe7EJQY670XcSx
+EtzKO6gunRRaBXW37Ndj4ro1tgQIkejanZz2ZrUYrAqmVCY0M9IbwdR/GjqOC6oybtv8TyWf2TLH
+llpwrN9M
+-----END CERTIFICATE-----
+
+Staat der Nederlanden Root CA
+=============================
+-----BEGIN CERTIFICATE-----
+MIIDujCCAqKgAwIBAgIEAJiWijANBgkqhkiG9w0BAQUFADBVMQswCQYDVQQGEwJOTDEeMBwGA1UE
+ChMVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSYwJAYDVQQDEx1TdGFhdCBkZXIgTmVkZXJsYW5kZW4g
+Um9vdCBDQTAeFw0wMjEyMTcwOTIzNDlaFw0xNTEyMTYwOTE1MzhaMFUxCzAJBgNVBAYTAk5MMR4w
+HAYDVQQKExVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xJjAkBgNVBAMTHVN0YWF0IGRlciBOZWRlcmxh
+bmRlbiBSb290IENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmNK1URF6gaYUmHFt
+vsznExvWJw56s2oYHLZhWtVhCb/ekBPHZ+7d89rFDBKeNVU+LCeIQGv33N0iYfXCxw719tV2U02P
+jLwYdjeFnejKScfST5gTCaI+Ioicf9byEGW07l8Y1Rfj+MX94p2i71MOhXeiD+EwR+4A5zN9RGca
+C1Hoi6CeUJhoNFIfLm0B8mBF8jHrqTFoKbt6QZ7GGX+UtFE5A3+y3qcym7RHjm+0Sq7lr7HcsBth
+vJly3uSJt3omXdozSVtSnA71iq3DuD3oBmrC1SoLbHuEvVYFy4ZlkuxEK7COudxwC0barbxjiDn6
+22r+I/q85Ej0ZytqERAhSQIDAQABo4GRMIGOMAwGA1UdEwQFMAMBAf8wTwYDVR0gBEgwRjBEBgRV
+HSAAMDwwOgYIKwYBBQUHAgEWLmh0dHA6Ly93d3cucGtpb3ZlcmhlaWQubmwvcG9saWNpZXMvcm9v
+dC1wb2xpY3kwDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBSofeu8Y6R0E3QA7Jbg0zTBLL9s+DAN
+BgkqhkiG9w0BAQUFAAOCAQEABYSHVXQ2YcG70dTGFagTtJ+k/rvuFbQvBgwp8qiSpGEN/KtcCFtR
+EytNwiphyPgJWPwtArI5fZlmgb9uXJVFIGzmeafR2Bwp/MIgJ1HI8XxdNGdphREwxgDS1/PTfLbw
+MVcoEoJz6TMvplW0C5GUR5z6u3pCMuiufi3IvKwUv9kP2Vv8wfl6leF9fpb8cbDCTMjfRTTJzg3y
+nGQI0DvDKcWy7ZAEwbEpkcUwb8GpcjPM/l0WFywRaed+/sWDCN+83CI6LiBpIzlWYGeQiy52OfsR
+iJf2fL1LuCAWZwWN4jvBcj+UlTfHXbme2JOhF4//DGYVwSR8MnwDHTuhWEUykw==
+-----END CERTIFICATE-----
+
+UTN DATACorp SGC Root CA
+========================
+-----BEGIN CERTIFICATE-----
+MIIEXjCCA0agAwIBAgIQRL4Mi1AAIbQR0ypoBqmtaTANBgkqhkiG9w0BAQUFADCBkzELMAkGA1UE
+BhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2UgQ2l0eTEeMBwGA1UEChMVVGhl
+IFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExhodHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xGzAZ
+BgNVBAMTElVUTiAtIERBVEFDb3JwIFNHQzAeFw05OTA2MjQxODU3MjFaFw0xOTA2MjQxOTA2MzBa
+MIGTMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVVQxFzAVBgNVBAcTDlNhbHQgTGFrZSBDaXR5MR4w
+HAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxITAfBgNVBAsTGGh0dHA6Ly93d3cudXNlcnRy
+dXN0LmNvbTEbMBkGA1UEAxMSVVROIC0gREFUQUNvcnAgU0dDMIIBIjANBgkqhkiG9w0BAQEFAAOC
+AQ8AMIIBCgKCAQEA3+5YEKIrblXEjr8uRgnn4AgPLit6E5Qbvfa2gI5lBZMAHryv4g+OGQ0SR+ys
+raP6LnD43m77VkIVni5c7yPeIbkFdicZD0/Ww5y0vpQZY/KmEQrrU0icvvIpOxboGqBMpsn0GFlo
+wHDyUwDAXlCCpVZvNvlK4ESGoE1O1kduSUrLZ9emxAW5jh70/P/N5zbgnAVssjMiFdC04MwXwLLA
+9P4yPykqlXvY8qdOD1R8oQ2AswkDwf9c3V6aPryuvEeKaq5xyh+xKrhfQgUL7EYw0XILyulWbfXv
+33i+Ybqypa4ETLyorGkVl73v67SMvzX41MPRKA5cOp9wGDMgd8SirwIDAQABo4GrMIGoMAsGA1Ud
+DwQEAwIBxjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRTMtGzz3/64PGgXYVOktKeRR20TzA9
+BgNVHR8ENjA0MDKgMKAuhixodHRwOi8vY3JsLnVzZXJ0cnVzdC5jb20vVVROLURBVEFDb3JwU0dD
+LmNybDAqBgNVHSUEIzAhBggrBgEFBQcDAQYKKwYBBAGCNwoDAwYJYIZIAYb4QgQBMA0GCSqGSIb3
+DQEBBQUAA4IBAQAnNZcAiosovcYzMB4p/OL31ZjUQLtgyr+rFywJNn9Q+kHcrpY6CiM+iVnJowft
+Gzet/Hy+UUla3joKVAgWRcKZsYfNjGjgaQPpxE6YsjuMFrMOoAyYUJuTqXAJyCyjj98C5OBxOvG0
+I3KgqgHf35g+FFCgMSa9KOlaMCZ1+XtgHI3zzVAmbQQnmt/VDUVHKWss5nbZqSl9Mt3JNjy9rjXx
+EZ4du5A/EkdOjtd+D2JzHVImOBwYSf0wdJrE5SIv2MCN7ZF6TACPcn9d2t0bi0Vr591pl6jFVkwP
+DPafepE39peC4N1xaf92P2BNPM/3mfnGV/TJVTl4uix5yaaIK/QI
+-----END CERTIFICATE-----
+
+UTN USERFirst Hardware Root CA
+==============================
+-----BEGIN CERTIFICATE-----
+MIIEdDCCA1ygAwIBAgIQRL4Mi1AAJLQR0zYq/mUK/TANBgkqhkiG9w0BAQUFADCBlzELMAkGA1UE
+BhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2UgQ2l0eTEeMBwGA1UEChMVVGhl
+IFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExhodHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xHzAd
+BgNVBAMTFlVUTi1VU0VSRmlyc3QtSGFyZHdhcmUwHhcNOTkwNzA5MTgxMDQyWhcNMTkwNzA5MTgx
+OTIyWjCBlzELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2UgQ2l0
+eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExhodHRwOi8vd3d3LnVz
+ZXJ0cnVzdC5jb20xHzAdBgNVBAMTFlVUTi1VU0VSRmlyc3QtSGFyZHdhcmUwggEiMA0GCSqGSIb3
+DQEBAQUAA4IBDwAwggEKAoIBAQCx98M4P7Sof885glFn0G2f0v9Y8+efK+wNiVSZuTiZFvfgIXlI
+wrthdBKWHTxqctU8EGc6Oe0rE81m65UJM6Rsl7HoxuzBdXmcRl6Nq9Bq/bkqVRcQVLMZ8Jr28bFd
+tqdt++BxF2uiiPsA3/4aMXcMmgF6sTLjKwEHOG7DpV4jvEWbe1DByTCP2+UretNb+zNAHqDVmBe8
+i4fDidNdoI6yqqr2jmmIBsX6iSHzCJ1pLgkzmykNRg+MzEk0sGlRvfkGzWitZky8PqxhvQqIDsjf
+Pe58BEydCl5rkdbux+0ojatNh4lz0G6k0B4WixThdkQDf2Os5M1JnMWS9KsyoUhbAgMBAAGjgbkw
+gbYwCwYDVR0PBAQDAgHGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFKFyXyYbKJhDlV0HN9WF
+lp1L0sNFMEQGA1UdHwQ9MDswOaA3oDWGM2h0dHA6Ly9jcmwudXNlcnRydXN0LmNvbS9VVE4tVVNF
+UkZpcnN0LUhhcmR3YXJlLmNybDAxBgNVHSUEKjAoBggrBgEFBQcDAQYIKwYBBQUHAwUGCCsGAQUF
+BwMGBggrBgEFBQcDBzANBgkqhkiG9w0BAQUFAAOCAQEARxkP3nTGmZev/K0oXnWO6y1n7k57K9cM
+//bey1WiCuFMVGWTYGufEpytXoMs61quwOQt9ABjHbjAbPLPSbtNk28GpgoiskliCE7/yMgUsogW
+XecB5BKV5UU0s4tpvc+0hY91UZ59Ojg6FEgSxvunOxqNDYJAB+gECJChicsZUN/KHAG8HQQZexB2
+lzvukJDKxA4fFm517zP4029bHpbj4HR3dHuKom4t3XbWOTCC8KucUvIqx69JXn7HaOWCgchqJ/kn
+iCrVWFCVH/A7HFe7fRQ5YiuayZSSKqMiDP+JJn1fIytH1xUdqWqeUQ0qUZ6B+dQ7XnASfxAynB67
+nfhmqA==
+-----END CERTIFICATE-----
+
+Camerfirma Chambers of Commerce Root
+====================================
+-----BEGIN CERTIFICATE-----
+MIIEvTCCA6WgAwIBAgIBADANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJFVTEnMCUGA1UEChMe
+QUMgQ2FtZXJmaXJtYSBTQSBDSUYgQTgyNzQzMjg3MSMwIQYDVQQLExpodHRwOi8vd3d3LmNoYW1i
+ZXJzaWduLm9yZzEiMCAGA1UEAxMZQ2hhbWJlcnMgb2YgQ29tbWVyY2UgUm9vdDAeFw0wMzA5MzAx
+NjEzNDNaFw0zNzA5MzAxNjEzNDRaMH8xCzAJBgNVBAYTAkVVMScwJQYDVQQKEx5BQyBDYW1lcmZp
+cm1hIFNBIENJRiBBODI3NDMyODcxIzAhBgNVBAsTGmh0dHA6Ly93d3cuY2hhbWJlcnNpZ24ub3Jn
+MSIwIAYDVQQDExlDaGFtYmVycyBvZiBDb21tZXJjZSBSb290MIIBIDANBgkqhkiG9w0BAQEFAAOC
+AQ0AMIIBCAKCAQEAtzZV5aVdGDDg2olUkfzIx1L4L1DZ77F1c2VHfRtbunXF/KGIJPov7coISjlU
+xFF6tdpg6jg8gbLL8bvZkSM/SAFwdakFKq0fcfPJVD0dBmpAPrMMhe5cG3nCYsS4No41XQEMIwRH
+NaqbYE6gZj3LJgqcQKH0XZi/caulAGgq7YN6D6IUtdQis4CwPAxaUWktWBiP7Zme8a7ileb2R6jW
+DA+wWFjbw2Y3npuRVDM30pQcakjJyfKl2qUMI/cjDpwyVV5xnIQFUZot/eZOKjRa3spAN2cMVCFV
+d9oKDMyXroDclDZK9D7ONhMeU+SsTjoF7Nuucpw4i9A5O4kKPnf+dQIBA6OCAUQwggFAMBIGA1Ud
+EwEB/wQIMAYBAf8CAQwwPAYDVR0fBDUwMzAxoC+gLYYraHR0cDovL2NybC5jaGFtYmVyc2lnbi5v
+cmcvY2hhbWJlcnNyb290LmNybDAdBgNVHQ4EFgQU45T1sU3p26EpW1eLTXYGduHRooowDgYDVR0P
+AQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzAnBgNVHREEIDAegRxjaGFtYmVyc3Jvb3RAY2hh
+bWJlcnNpZ24ub3JnMCcGA1UdEgQgMB6BHGNoYW1iZXJzcm9vdEBjaGFtYmVyc2lnbi5vcmcwWAYD
+VR0gBFEwTzBNBgsrBgEEAYGHLgoDATA+MDwGCCsGAQUFBwIBFjBodHRwOi8vY3BzLmNoYW1iZXJz
+aWduLm9yZy9jcHMvY2hhbWJlcnNyb290Lmh0bWwwDQYJKoZIhvcNAQEFBQADggEBAAxBl8IahsAi
+fJ/7kPMa0QOx7xP5IV8EnNrJpY0nbJaHkb5BkAFyk+cefV/2icZdp0AJPaxJRUXcLo0waLIJuvvD
+L8y6C98/d3tGfToSJI6WjzwFCm/SlCgdbQzALogi1djPHRPH8EjX1wWnz8dHnjs8NMiAT9QUu/wN
+UPf6s+xCX6ndbcj0dc97wXImsQEcXCz9ek60AcUFV7nnPKoF2YjpB0ZBzu9Bga5Y34OirsrXdx/n
+ADydb47kMgkdTXg0eDQ8lJsm7U9xxhl6vSAiSFr+S30Dt+dYvsYyTnQeaN2oaFuzPu5ifdmA6Ap1
+erfutGWaIZDgqtCYvDi1czyL+Nw=
+-----END CERTIFICATE-----
+
+Camerfirma Global Chambersign Root
+==================================
+-----BEGIN CERTIFICATE-----
+MIIExTCCA62gAwIBAgIBADANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJFVTEnMCUGA1UEChMe
+QUMgQ2FtZXJmaXJtYSBTQSBDSUYgQTgyNzQzMjg3MSMwIQYDVQQLExpodHRwOi8vd3d3LmNoYW1i
+ZXJzaWduLm9yZzEgMB4GA1UEAxMXR2xvYmFsIENoYW1iZXJzaWduIFJvb3QwHhcNMDMwOTMwMTYx
+NDE4WhcNMzcwOTMwMTYxNDE4WjB9MQswCQYDVQQGEwJFVTEnMCUGA1UEChMeQUMgQ2FtZXJmaXJt
+YSBTQSBDSUYgQTgyNzQzMjg3MSMwIQYDVQQLExpodHRwOi8vd3d3LmNoYW1iZXJzaWduLm9yZzEg
+MB4GA1UEAxMXR2xvYmFsIENoYW1iZXJzaWduIFJvb3QwggEgMA0GCSqGSIb3DQEBAQUAA4IBDQAw
+ggEIAoIBAQCicKLQn0KuWxfH2H3PFIP8T8mhtxOviteePgQKkotgVvq0Mi+ITaFgCPS3CU6gSS9J
+1tPfnZdan5QEcOw/Wdm3zGaLmFIoCQLfxS+EjXqXd7/sQJ0lcqu1PzKY+7e3/HKE5TWH+VX6ox8O
+by4o3Wmg2UIQxvi1RMLQQ3/bvOSiPGpVeAp3qdjqGTK3L/5cPxvusZjsyq16aUXjlg9V9ubtdepl
+6DJWk0aJqCWKZQbua795B9Dxt6/tLE2Su8CoX6dnfQTyFQhwrJLWfQTSM/tMtgsL+xrJxI0DqX5c
+8lCrEqWhz0hQpe/SyBoT+rB/sYIcd2oPX9wLlY/vQ37mRQklAgEDo4IBUDCCAUwwEgYDVR0TAQH/
+BAgwBgEB/wIBDDA/BgNVHR8EODA2MDSgMqAwhi5odHRwOi8vY3JsLmNoYW1iZXJzaWduLm9yZy9j
+aGFtYmVyc2lnbnJvb3QuY3JsMB0GA1UdDgQWBBRDnDafsJ4wTcbOX60Qq+UDpfqpFDAOBgNVHQ8B
+Af8EBAMCAQYwEQYJYIZIAYb4QgEBBAQDAgAHMCoGA1UdEQQjMCGBH2NoYW1iZXJzaWducm9vdEBj
+aGFtYmVyc2lnbi5vcmcwKgYDVR0SBCMwIYEfY2hhbWJlcnNpZ25yb290QGNoYW1iZXJzaWduLm9y
+ZzBbBgNVHSAEVDBSMFAGCysGAQQBgYcuCgEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly9jcHMuY2hh
+bWJlcnNpZ24ub3JnL2Nwcy9jaGFtYmVyc2lnbnJvb3QuaHRtbDANBgkqhkiG9w0BAQUFAAOCAQEA
+PDtwkfkEVCeR4e3t/mh/YV3lQWVPMvEYBZRqHN4fcNs+ezICNLUMbKGKfKX0j//U2K0X1S0E0T9Y
+gOKBWYi+wONGkyT+kL0mojAt6JcmVzWJdJYY9hXiryQZVgICsroPFOrGimbBhkVVi76SvpykBMdJ
+PJ7oKXqJ1/6v/2j1pReQvayZzKWGVwlnRtvWFsJG8eSpUPWP0ZIV018+xgBJOm5YstHRJw0lyDL4
+IBHNfTIzSJRUTN3cecQwn+uOuFW114hcxWokPbLTBQNRxgfvzBRydD1ucs4YKIxKoHflCStFREes
+t2d/AYoFWpO+ocH/+OcOZ6RHSXZddZAa9SaP8A==
+-----END CERTIFICATE-----
+
+NetLock Notary (Class A) Root
+=============================
+-----BEGIN CERTIFICATE-----
+MIIGfTCCBWWgAwIBAgICAQMwDQYJKoZIhvcNAQEEBQAwga8xCzAJBgNVBAYTAkhVMRAwDgYDVQQI
+EwdIdW5nYXJ5MREwDwYDVQQHEwhCdWRhcGVzdDEnMCUGA1UEChMeTmV0TG9jayBIYWxvemF0Yml6
+dG9uc2FnaSBLZnQuMRowGAYDVQQLExFUYW51c2l0dmFueWtpYWRvazE2MDQGA1UEAxMtTmV0TG9j
+ayBLb3pqZWd5em9pIChDbGFzcyBBKSBUYW51c2l0dmFueWtpYWRvMB4XDTk5MDIyNDIzMTQ0N1oX
+DTE5MDIxOTIzMTQ0N1owga8xCzAJBgNVBAYTAkhVMRAwDgYDVQQIEwdIdW5nYXJ5MREwDwYDVQQH
+EwhCdWRhcGVzdDEnMCUGA1UEChMeTmV0TG9jayBIYWxvemF0Yml6dG9uc2FnaSBLZnQuMRowGAYD
+VQQLExFUYW51c2l0dmFueWtpYWRvazE2MDQGA1UEAxMtTmV0TG9jayBLb3pqZWd5em9pIChDbGFz
+cyBBKSBUYW51c2l0dmFueWtpYWRvMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvHSM
+D7tM9DceqQWC2ObhbHDqeLVu0ThEDaiDzl3S1tWBxdRL51uUcCbbO51qTGL3cfNk1mE7PetzozfZ
+z+qMkjvN9wfcZnSX9EUi3fRc4L9t875lM+QVOr/bmJBVOMTtplVjC7B4BPTjbsE/jvxReB+SnoPC
+/tmwqcm8WgD/qaiYdPv2LD4VOQ22BFWoDpggQrOxJa1+mm9dU7GrDPzr4PN6s6iz/0b2Y6LYOph7
+tqyF/7AlT3Rj5xMHpQqPBffAZG9+pyeAlt7ULoZgx2srXnN7F+eRP2QM2EsiNCubMvJIH5+hCoR6
+4sKtlz2O1cH5VqNQ6ca0+pii7pXmKgOM3wIDAQABo4ICnzCCApswDgYDVR0PAQH/BAQDAgAGMBIG
+A1UdEwEB/wQIMAYBAf8CAQQwEQYJYIZIAYb4QgEBBAQDAgAHMIICYAYJYIZIAYb4QgENBIICURaC
+Ak1GSUdZRUxFTSEgRXplbiB0YW51c2l0dmFueSBhIE5ldExvY2sgS2Z0LiBBbHRhbGFub3MgU3pv
+bGdhbHRhdGFzaSBGZWx0ZXRlbGVpYmVuIGxlaXJ0IGVsamFyYXNvayBhbGFwamFuIGtlc3p1bHQu
+IEEgaGl0ZWxlc2l0ZXMgZm9seWFtYXRhdCBhIE5ldExvY2sgS2Z0LiB0ZXJtZWtmZWxlbG9zc2Vn
+LWJpenRvc2l0YXNhIHZlZGkuIEEgZGlnaXRhbGlzIGFsYWlyYXMgZWxmb2dhZGFzYW5hayBmZWx0
+ZXRlbGUgYXogZWxvaXJ0IGVsbGVub3J6ZXNpIGVsamFyYXMgbWVndGV0ZWxlLiBBeiBlbGphcmFz
+IGxlaXJhc2EgbWVndGFsYWxoYXRvIGEgTmV0TG9jayBLZnQuIEludGVybmV0IGhvbmxhcGphbiBh
+IGh0dHBzOi8vd3d3Lm5ldGxvY2submV0L2RvY3MgY2ltZW4gdmFneSBrZXJoZXRvIGF6IGVsbGVu
+b3J6ZXNAbmV0bG9jay5uZXQgZS1tYWlsIGNpbWVuLiBJTVBPUlRBTlQhIFRoZSBpc3N1YW5jZSBh
+bmQgdGhlIHVzZSBvZiB0aGlzIGNlcnRpZmljYXRlIGlzIHN1YmplY3QgdG8gdGhlIE5ldExvY2sg
+Q1BTIGF2YWlsYWJsZSBhdCBodHRwczovL3d3dy5uZXRsb2NrLm5ldC9kb2NzIG9yIGJ5IGUtbWFp
+bCBhdCBjcHNAbmV0bG9jay5uZXQuMA0GCSqGSIb3DQEBBAUAA4IBAQBIJEb3ulZv+sgoA0BO5TE5
+ayZrU3/b39/zcT0mwBQOxmd7I6gMc90Bu8bKbjc5VdXHjFYgDigKDtIqpLBJUsY4B/6+CgmM0ZjP
+ytoUMaFP0jn8DxEsQ8Pdq5PHVT5HfBgaANzze9jyf1JsIPQLX2lS9O74silg6+NJMSEN1rUQQeJB
+CWziGppWS3cC9qCbmieH6FUpccKQn0V4GuEVZD3QDtigdp+uxdAu6tYPVuxkf1qbFFgBJ34TUMdr
+KuZoPL9coAob4Q566eKAw+np9v1sEZ7Q5SgnK1QyQhSCdeZK8CtmdWOMovsEPoMOmzbwGOQmIMOM
+8CgHrTwXZoi1/baI
+-----END CERTIFICATE-----
+
+XRamp Global CA Root
+====================
+-----BEGIN CERTIFICATE-----
+MIIEMDCCAxigAwIBAgIQUJRs7Bjq1ZxN1ZfvdY+grTANBgkqhkiG9w0BAQUFADCBgjELMAkGA1UE
+BhMCVVMxHjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2Vj
+dXJpdHkgU2VydmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBB
+dXRob3JpdHkwHhcNMDQxMTAxMTcxNDA0WhcNMzUwMTAxMDUzNzE5WjCBgjELMAkGA1UEBhMCVVMx
+HjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2VjdXJpdHkg
+U2VydmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBBdXRob3Jp
+dHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCYJB69FbS638eMpSe2OAtp87ZOqCwu
+IR1cRN8hXX4jdP5efrRKt6atH67gBhbim1vZZ3RrXYCPKZ2GG9mcDZhtdhAoWORlsH9KmHmf4MMx
+foArtYzAQDsRhtDLooY2YKTVMIJt2W7QDxIEM5dfT2Fa8OT5kavnHTu86M/0ay00fOJIYRyO82FE
+zG+gSqmUsE3a56k0enI4qEHMPJQRfevIpoy3hsvKMzvZPTeL+3o+hiznc9cKV6xkmxnr9A8ECIqs
+AxcZZPRaJSKNNCyy9mgdEm3Tih4U2sSPpuIjhdV6Db1q4Ons7Be7QhtnqiXtRYMh/MHJfNViPvry
+xS3T/dRlAgMBAAGjgZ8wgZwwEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1Ud
+EwEB/wQFMAMBAf8wHQYDVR0OBBYEFMZPoj0GY4QJnM5i5ASsjVy16bYbMDYGA1UdHwQvMC0wK6Ap
+oCeGJWh0dHA6Ly9jcmwueHJhbXBzZWN1cml0eS5jb20vWEdDQS5jcmwwEAYJKwYBBAGCNxUBBAMC
+AQEwDQYJKoZIhvcNAQEFBQADggEBAJEVOQMBG2f7Shz5CmBbodpNl2L5JFMn14JkTpAuw0kbK5rc
+/Kh4ZzXxHfARvbdI4xD2Dd8/0sm2qlWkSLoC295ZLhVbO50WfUfXN+pfTXYSNrsf16GBBEYgoyxt
+qZ4Bfj8pzgCT3/3JknOJiWSe5yvkHJEs0rnOfc5vMZnT5r7SHpDwCRR5XCOrTdLaIR9NmXmd4c8n
+nxCbHIgNsIpkQTG4DmyQJKSbXHGPurt+HBvbaoAPIbzp26a3QPSyi6mx5O+aGtA9aZnuqCij4Tyz
+8LIRnM98QObd50N9otg6tamN8jSZxNQQ4Qb9CYQQO+7ETPTsJ3xCwnR8gooJybQDJbw=
+-----END CERTIFICATE-----
+
+Go Daddy Class 2 CA
+===================
+-----BEGIN CERTIFICATE-----
+MIIEADCCAuigAwIBAgIBADANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMY
+VGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRp
+ZmljYXRpb24gQXV0aG9yaXR5MB4XDTA0MDYyOTE3MDYyMFoXDTM0MDYyOTE3MDYyMFowYzELMAkG
+A1UEBhMCVVMxITAfBgNVBAoTGFRoZSBHbyBEYWRkeSBHcm91cCwgSW5jLjExMC8GA1UECxMoR28g
+RGFkZHkgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASAwDQYJKoZIhvcNAQEBBQAD
+ggENADCCAQgCggEBAN6d1+pXGEmhW+vXX0iG6r7d/+TvZxz0ZWizV3GgXne77ZtJ6XCAPVYYYwhv
+2vLM0D9/AlQiVBDYsoHUwHU9S3/Hd8M+eKsaA7Ugay9qK7HFiH7Eux6wwdhFJ2+qN1j3hybX2C32
+qRe3H3I2TqYXP2WYktsqbl2i/ojgC95/5Y0V4evLOtXiEqITLdiOr18SPaAIBQi2XKVlOARFmR6j
+YGB0xUGlcmIbYsUfb18aQr4CUWWoriMYavx4A6lNf4DD+qta/KFApMoZFv6yyO9ecw3ud72a9nmY
+vLEHZ6IVDd2gWMZEewo+YihfukEHU1jPEX44dMX4/7VpkI+EdOqXG68CAQOjgcAwgb0wHQYDVR0O
+BBYEFNLEsNKR1EwRcbNhyz2h/t2oatTjMIGNBgNVHSMEgYUwgYKAFNLEsNKR1EwRcbNhyz2h/t2o
+atTjoWekZTBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMu
+MTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwG
+A1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBADJL87LKPpH8EsahB4yOd6AzBhRckB4Y9wim
+PQoZ+YeAEW5p5JYXMP80kWNyOO7MHAGjHZQopDH2esRU1/blMVgDoszOYtuURXO1v0XJJLXVggKt
+I3lpjbi2Tc7PTMozI+gciKqdi0FuFskg5YmezTvacPd+mSYgFFQlq25zheabIZ0KbIIOqPjCDPoQ
+HmyW74cNxA9hi63ugyuV+I6ShHI56yDqg+2DzZduCLzrTia2cyvk0/ZM/iZx4mERdEr/VxqHD3VI
+Ls9RaRegAhJhldXRQLIQTO7ErBBDpqWeCtWVYpoNz4iCxTIM5CufReYNnyicsbkqWletNw+vHX/b
+vZ8=
+-----END CERTIFICATE-----
+
+Starfield Class 2 CA
+====================
+-----BEGIN CERTIFICATE-----
+MIIEDzCCAvegAwIBAgIBADANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJVUzElMCMGA1UEChMc
+U3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMpU3RhcmZpZWxkIENsYXNzIDIg
+Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQwNjI5MTczOTE2WhcNMzQwNjI5MTczOTE2WjBo
+MQswCQYDVQQGEwJVUzElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAG
+A1UECxMpU3RhcmZpZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEgMA0GCSqG
+SIb3DQEBAQUAA4IBDQAwggEIAoIBAQC3Msj+6XGmBIWtDBFk385N78gDGIc/oav7PKaf8MOh2tTY
+bitTkPskpD6E8J7oX+zlJ0T1KKY/e97gKvDIr1MvnsoFAZMej2YcOadN+lq2cwQlZut3f+dZxkqZ
+JRRU6ybH838Z1TBwj6+wRir/resp7defqgSHo9T5iaU0X9tDkYI22WY8sbi5gv2cOj4QyDvvBmVm
+epsZGD3/cVE8MC5fvj13c7JdBmzDI1aaK4UmkhynArPkPw2vCHmCuDY96pzTNbO8acr1zJ3o/WSN
+F4Azbl5KXZnJHoe0nRrA1W4TNSNe35tfPe/W93bC6j67eA0cQmdrBNj41tpvi/JEoAGrAgEDo4HF
+MIHCMB0GA1UdDgQWBBS/X7fRzt0fhvRbVazc1xDCDqmI5zCBkgYDVR0jBIGKMIGHgBS/X7fRzt0f
+hvRbVazc1xDCDqmI56FspGowaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNo
+bm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBDbGFzcyAyIENlcnRpZmljYXRpb24g
+QXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAAWdP4id0ckaVaGs
+afPzWdqbAYcaT1epoXkJKtv3L7IezMdeatiDh6GX70k1PncGQVhiv45YuApnP+yz3SFmH8lU+nLM
+PUxA2IGvd56Deruix/U0F47ZEUD0/CwqTRV/p2JdLiXTAAsgGh1o+Re49L2L7ShZ3U0WixeDyLJl
+xy16paq8U4Zt3VekyvggQQto8PT7dL5WXXp59fkdheMtlb71cZBDzI0fmgAKhynpVSJYACPq4xJD
+KVtHCN2MQWplBqjlIapBtJUhlbl90TSrE9atvNziPTnNvT51cKEYWQPJIrSPnNVeKtelttQKbfi3
+QBFGmh95DmK/D5fs4C8fF5Q=
+-----END CERTIFICATE-----
+
+StartCom Certification Authority
+================================
+-----BEGIN CERTIFICATE-----
+MIIHyTCCBbGgAwIBAgIBATANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJJTDEWMBQGA1UEChMN
+U3RhcnRDb20gTHRkLjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmlu
+ZzEpMCcGA1UEAxMgU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDYwOTE3MTk0
+NjM2WhcNMzYwOTE3MTk0NjM2WjB9MQswCQYDVQQGEwJJTDEWMBQGA1UEChMNU3RhcnRDb20gTHRk
+LjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmluZzEpMCcGA1UEAxMg
+U3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw
+ggIKAoICAQDBiNsJvGxGfHiflXu1M5DycmLWwTYgIiRezul38kMKogZkpMyONvg45iPwbm2xPN1y
+o4UcodM9tDMr0y+v/uqwQVlntsQGfQqedIXWeUyAN3rfOQVSWff0G0ZDpNKFhdLDcfN1YjS6LIp/
+Ho/u7TTQEceWzVI9ujPW3U3eCztKS5/CJi/6tRYccjV3yjxd5srhJosaNnZcAdt0FCX+7bWgiA/d
+eMotHweXMAEtcnn6RtYTKqi5pquDSR3l8u/d5AGOGAqPY1MWhWKpDhk6zLVmpsJrdAfkK+F2PrRt
+2PZE4XNiHzvEvqBTViVsUQn3qqvKv3b9bZvzndu/PWa8DFaqr5hIlTpL36dYUNk4dalb6kMMAv+Z
+6+hsTXBbKWWc3apdzK8BMewM69KN6Oqce+Zu9ydmDBpI125C4z/eIT574Q1w+2OqqGwaVLRcJXrJ
+osmLFqa7LH4XXgVNWG4SHQHuEhANxjJ/GP/89PrNbpHoNkm+Gkhpi8KWTRoSsmkXwQqQ1vp5Iki/
+untp+HDH+no32NgN0nZPV/+Qt+OR0t3vwmC3Zzrd/qqc8NSLf3Iizsafl7b4r4qgEKjZ+xjGtrVc
+UjyJthkqcwEKDwOzEmDyei+B26Nu/yYwl/WL3YlXtq09s68rxbd2AvCl1iuahhQqcvbjM4xdCUsT
+37uMdBNSSwIDAQABo4ICUjCCAk4wDAYDVR0TBAUwAwEB/zALBgNVHQ8EBAMCAa4wHQYDVR0OBBYE
+FE4L7xqkQFulF2mHMMo0aEPQQa7yMGQGA1UdHwRdMFswLKAqoCiGJmh0dHA6Ly9jZXJ0LnN0YXJ0
+Y29tLm9yZy9zZnNjYS1jcmwuY3JsMCugKaAnhiVodHRwOi8vY3JsLnN0YXJ0Y29tLm9yZy9zZnNj
+YS1jcmwuY3JsMIIBXQYDVR0gBIIBVDCCAVAwggFMBgsrBgEEAYG1NwEBATCCATswLwYIKwYBBQUH
+AgEWI2h0dHA6Ly9jZXJ0LnN0YXJ0Y29tLm9yZy9wb2xpY3kucGRmMDUGCCsGAQUFBwIBFilodHRw
+Oi8vY2VydC5zdGFydGNvbS5vcmcvaW50ZXJtZWRpYXRlLnBkZjCB0AYIKwYBBQUHAgIwgcMwJxYg
+U3RhcnQgQ29tbWVyY2lhbCAoU3RhcnRDb20pIEx0ZC4wAwIBARqBl0xpbWl0ZWQgTGlhYmlsaXR5
+LCByZWFkIHRoZSBzZWN0aW9uICpMZWdhbCBMaW1pdGF0aW9ucyogb2YgdGhlIFN0YXJ0Q29tIENl
+cnRpZmljYXRpb24gQXV0aG9yaXR5IFBvbGljeSBhdmFpbGFibGUgYXQgaHR0cDovL2NlcnQuc3Rh
+cnRjb20ub3JnL3BvbGljeS5wZGYwEQYJYIZIAYb4QgEBBAQDAgAHMDgGCWCGSAGG+EIBDQQrFilT
+dGFydENvbSBGcmVlIFNTTCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTANBgkqhkiG9w0BAQUFAAOC
+AgEAFmyZ9GYMNPXQhV59CuzaEE44HF7fpiUFS5Eyweg78T3dRAlbB0mKKctmArexmvclmAk8jhvh
+3TaHK0u7aNM5Zj2gJsfyOZEdUauCe37Vzlrk4gNXcGmXCPleWKYK34wGmkUWFjgKXlf2Ysd6AgXm
+vB618p70qSmD+LIU424oh0TDkBreOKk8rENNZEXO3SipXPJzewT4F+irsfMuXGRuczE6Eri8sxHk
+fY+BUZo7jYn0TZNmezwD7dOaHZrzZVD1oNB1ny+v8OqCQ5j4aZyJecRDjkZy42Q2Eq/3JR44iZB3
+fsNrarnDy0RLrHiQi+fHLB5LEUTINFInzQpdn4XBidUaePKVEFMy3YCEZnXZtWgo+2EuvoSoOMCZ
+EoalHmdkrQYuL6lwhceWD3yJZfWOQ1QOq92lgDmUYMA0yZZwLKMS9R9Ie70cfmu3nZD0Ijuu+Pwq
+yvqCUqDvr0tVk+vBtfAii6w0TiYiBKGHLHVKt+V9E9e4DGTANtLJL4YSjCMJwRuCO3NJo2pXh5Tl
+1njFmUNj403gdy3hZZlyaQQaRwnmDwFWJPsfvw55qVguucQJAX6Vum0ABj6y6koQOdjQK/W/7HW/
+lwLFCRsI3FU34oH7N4RDYiDK51ZLZer+bMEkkyShNOsF/5oirpt9P/FlUQqmMGqz9IgcgA38coro
+g14=
+-----END CERTIFICATE-----
+
+Taiwan GRCA
+===========
+-----BEGIN CERTIFICATE-----
+MIIFcjCCA1qgAwIBAgIQH51ZWtcvwgZEpYAIaeNe9jANBgkqhkiG9w0BAQUFADA/MQswCQYDVQQG
+EwJUVzEwMC4GA1UECgwnR292ZXJubWVudCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4X
+DTAyMTIwNTEzMjMzM1oXDTMyMTIwNTEzMjMzM1owPzELMAkGA1UEBhMCVFcxMDAuBgNVBAoMJ0dv
+dmVybm1lbnQgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCAiIwDQYJKoZIhvcNAQEBBQAD
+ggIPADCCAgoCggIBAJoluOzMonWoe/fOW1mKydGGEghU7Jzy50b2iPN86aXfTEc2pBsBHH8eV4qN
+w8XRIePaJD9IK/ufLqGU5ywck9G/GwGHU5nOp/UKIXZ3/6m3xnOUT0b3EEk3+qhZSV1qgQdW8or5
+BtD3cCJNtLdBuTK4sfCxw5w/cP1T3YGq2GN49thTbqGsaoQkclSGxtKyyhwOeYHWtXBiCAEuTk8O
+1RGvqa/lmr/czIdtJuTJV6L7lvnM4T9TjGxMfptTCAtsF/tnyMKtsc2AtJfcdgEWFelq16TheEfO
+htX7MfP6Mb40qij7cEwdScevLJ1tZqa2jWR+tSBqnTuBto9AAGdLiYa4zGX+FVPpBMHWXx1E1wov
+J5pGfaENda1UhhXcSTvxls4Pm6Dso3pdvtUqdULle96ltqqvKKyskKw4t9VoNSZ63Pc78/1Fm9G7
+Q3hub/FCVGqY8A2tl+lSXunVanLeavcbYBT0peS2cWeqH+riTcFCQP5nRhc4L0c/cZyu5SHKYS1t
+B6iEfC3uUSXxY5Ce/eFXiGvviiNtsea9P63RPZYLhY3Naye7twWb7LuRqQoHEgKXTiCQ8P8NHuJB
+O9NAOueNXdpm5AKwB1KYXA6OM5zCppX7VRluTI6uSw+9wThNXo+EHWbNxWCWtFJaBYmOlXqYwZE8
+lSOyDvR5tMl8wUohAgMBAAGjajBoMB0GA1UdDgQWBBTMzO/MKWCkO7GStjz6MmKPrCUVOzAMBgNV
+HRMEBTADAQH/MDkGBGcqBwAEMTAvMC0CAQAwCQYFKw4DAhoFADAHBgVnKgMAAAQUA5vwIhP/lSg2
+09yewDL7MTqKUWUwDQYJKoZIhvcNAQEFBQADggIBAECASvomyc5eMN1PhnR2WPWus4MzeKR6dBcZ
+TulStbngCnRiqmjKeKBMmo4sIy7VahIkv9Ro04rQ2JyftB8M3jh+Vzj8jeJPXgyfqzvS/3WXy6Tj
+Zwj/5cAWtUgBfen5Cv8b5Wppv3ghqMKnI6mGq3ZW6A4M9hPdKmaKZEk9GhiHkASfQlK3T8v+R0F2
+Ne//AHY2RTKbxkaFXeIksB7jSJaYV0eUVXoPQbFEJPPB/hprv4j9wabak2BegUqZIJxIZhm1AHlU
+D7gsL0u8qV1bYH+Mh6XgUmMqvtg7hUAV/h62ZT/FS9p+tXo1KaMuephgIqP0fSdOLeq0dDzpD6Qz
+DxARvBMB1uUO07+1EqLhRSPAzAhuYbeJq4PjJB7mXQfnHyA+z2fI56wwbSdLaG5LKlwCCDTb+Hbk
+Z6MmnD+iMsJKxYEYMRBWqoTvLQr/uB930r+lWKBi5NdLkXWNiYCYfm3LU05er/ayl4WXudpVBrkk
+7tfGOB5jGxI7leFYrPLfhNVfmS8NVVvmONsuP3LpSIXLuykTjx44VbnzssQwmSNOXfJIoRIM3BKQ
+CZBUkQM8R+XVyWXgt0t97EfTsws+rZ7QdAAO671RrcDeLMDDav7v3Aun+kbfYNucpllQdSNpc5Oy
++fwC00fmcc4QAu4njIT/rEUNE1yDMuAlpYYsfPQS
+-----END CERTIFICATE-----
+
+Swisscom Root CA 1
+==================
+-----BEGIN CERTIFICATE-----
+MIIF2TCCA8GgAwIBAgIQXAuFXAvnWUHfV8w/f52oNjANBgkqhkiG9w0BAQUFADBkMQswCQYDVQQG
+EwJjaDERMA8GA1UEChMIU3dpc3Njb20xJTAjBgNVBAsTHERpZ2l0YWwgQ2VydGlmaWNhdGUgU2Vy
+dmljZXMxGzAZBgNVBAMTElN3aXNzY29tIFJvb3QgQ0EgMTAeFw0wNTA4MTgxMjA2MjBaFw0yNTA4
+MTgyMjA2MjBaMGQxCzAJBgNVBAYTAmNoMREwDwYDVQQKEwhTd2lzc2NvbTElMCMGA1UECxMcRGln
+aXRhbCBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEbMBkGA1UEAxMSU3dpc3Njb20gUm9vdCBDQSAxMIIC
+IjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0LmwqAzZuz8h+BvVM5OAFmUgdbI9m2BtRsiM
+MW8Xw/qabFbtPMWRV8PNq5ZJkCoZSx6jbVfd8StiKHVFXqrWW/oLJdihFvkcxC7mlSpnzNApbjyF
+NDhhSbEAn9Y6cV9Nbc5fuankiX9qUvrKm/LcqfmdmUc/TilftKaNXXsLmREDA/7n29uj/x2lzZAe
+AR81sH8A25Bvxn570e56eqeqDFdvpG3FEzuwpdntMhy0XmeLVNxzh+XTF3xmUHJd1BpYwdnP2IkC
+b6dJtDZd0KTeByy2dbcokdaXvij1mB7qWybJvbCXc9qukSbraMH5ORXWZ0sKbU/Lz7DkQnGMU3nn
+7uHbHaBuHYwadzVcFh4rUx80i9Fs/PJnB3r1re3WmquhsUvhzDdf/X/NTa64H5xD+SpYVUNFvJbN
+cA78yeNmuk6NO4HLFWR7uZToXTNShXEuT46iBhFRyePLoW4xCGQMwtI89Tbo19AOeCMgkckkKmUp
+WyL3Ic6DXqTz3kvTaI9GdVyDCW4pa8RwjPWd1yAv/0bSKzjCL3UcPX7ape8eYIVpQtPM+GP+HkM5
+haa2Y0EQs3MevNP6yn0WR+Kn1dCjigoIlmJWbjTb2QK5MHXjBNLnj8KwEUAKrNVxAmKLMb7dxiNY
+MUJDLXT5xp6mig/p/r+D5kNXJLrvRjSq1xIBOO0CAwEAAaOBhjCBgzAOBgNVHQ8BAf8EBAMCAYYw
+HQYDVR0hBBYwFDASBgdghXQBUwABBgdghXQBUwABMBIGA1UdEwEB/wQIMAYBAf8CAQcwHwYDVR0j
+BBgwFoAUAyUv3m+CATpcLNwroWm1Z9SM0/0wHQYDVR0OBBYEFAMlL95vggE6XCzcK6FptWfUjNP9
+MA0GCSqGSIb3DQEBBQUAA4ICAQA1EMvspgQNDQ/NwNurqPKIlwzfky9NfEBWMXrrpA9gzXrzvsMn
+jgM+pN0S734edAY8PzHyHHuRMSG08NBsl9Tpl7IkVh5WwzW9iAUPWxAaZOHHgjD5Mq2eUCzneAXQ
+MbFamIp1TpBcahQq4FJHgmDmHtqBsfsUC1rxn9KVuj7QG9YVHaO+htXbD8BJZLsuUBlL0iT43R4H
+VtA4oJVwIHaM190e3p9xxCPvgxNcoyQVTSlAPGrEqdi3pkSlDfTgnXceQHAm/NrZNuR55LU/vJtl
+vrsRls/bxig5OgjOR1tTWsWZ/l2p3e9M1MalrQLmjAcSHm8D0W+go/MpvRLHUKKwf4ipmXeascCl
+OS5cfGniLLDqN2qk4Vrh9VDlg++luyqI54zb/W1elxmofmZ1a3Hqv7HHb6D0jqTsNFFbjCYDcKF3
+1QESVwA12yPeDooomf2xEG9L/zgtYE4snOtnta1J7ksfrK/7DZBaZmBwXarNeNQk7shBoJMBkpxq
+nvy5JMWzFYJ+vq6VK+uxwNrjAWALXmmshFZhvnEX/h0TD/7Gh0Xp/jKgGg0TpJRVcaUWi7rKibCy
+x/yP2FS1k2Kdzs9Z+z0YzirLNRWCXf9UIltxUvu3yf5gmwBBZPCqKuy2QkPOiWaByIufOVQDJdMW
+NY6E0F/6MBr1mmz0DlP5OlvRHA==
+-----END CERTIFICATE-----
+
+DigiCert Assured ID Root CA
+===========================
+-----BEGIN CERTIFICATE-----
+MIIDtzCCAp+gAwIBAgIQDOfg5RfYRv6P5WD8G/AwOTANBgkqhkiG9w0BAQUFADBlMQswCQYDVQQG
+EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQw
+IgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwHhcNMDYxMTEwMDAwMDAwWhcNMzEx
+MTEwMDAwMDAwWjBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQL
+ExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0Ew
+ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtDhXO5EOAXLGH87dg+XESpa7cJpSIqvTO
+9SA5KFhgDPiA2qkVlTJhPLWxKISKityfCgyDF3qPkKyK53lTXDGEKvYPmDI2dsze3Tyoou9q+yHy
+UmHfnyDXH+Kx2f4YZNISW1/5WBg1vEfNoTb5a3/UsDg+wRvDjDPZ2C8Y/igPs6eD1sNuRMBhNZYW
+/lmci3Zt1/GiSw0r/wty2p5g0I6QNcZ4VYcgoc/lbQrISXwxmDNsIumH0DJaoroTghHtORedmTpy
+oeb6pNnVFzF1roV9Iq4/AUaG9ih5yLHa5FcXxH4cDrC0kqZWs72yl+2qp/C3xag/lRbQ/6GW6whf
+GHdPAgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRF
+66Kv9JLLgjEtUYunpyGd823IDzAfBgNVHSMEGDAWgBRF66Kv9JLLgjEtUYunpyGd823IDzANBgkq
+hkiG9w0BAQUFAAOCAQEAog683+Lt8ONyc3pklL/3cmbYMuRCdWKuh+vy1dneVrOfzM4UKLkNl2Bc
+EkxY5NM9g0lFWJc1aRqoR+pWxnmrEthngYTffwk8lOa4JiwgvT2zKIn3X/8i4peEH+ll74fg38Fn
+SbNd67IJKusm7Xi+fT8r87cmNW1fiQG2SVufAQWbqz0lwcy2f8Lxb4bG+mRo64EtlOtCt/qMHt1i
+8b5QZ7dsvfPxH2sMNgcWfzd8qVttevESRmCD1ycEvkvOl77DZypoEd+A5wwzZr8TDRRu838fYxAe
++o0bJW1sj6W3YQGx0qMmoRBxna3iw/nDmVG3KwcIzi7mULKn+gpFL6Lw8g==
+-----END CERTIFICATE-----
+
+DigiCert Global Root CA
+=======================
+-----BEGIN CERTIFICATE-----
+MIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBhMQswCQYDVQQG
+EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw
+HgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAw
+MDAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3
+dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkq
+hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsBCSDMAZOn
+TjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97nh6Vfe63SKMI2tavegw5
+BmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt43C/dxC//AH2hdmoRBBYMql1GNXRor5H
+4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7PT19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y
+7vrTC0LUq7dBMtoM1O/4gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQAB
+o2MwYTAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbRTLtm
+8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUwDQYJKoZIhvcNAQEF
+BQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/EsrhMAtudXH/vTBH1jLuG2cenTnmCmr
+EbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIt
+tep3Sp+dWOIrWcBAI+0tKIJFPnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886
+UAb3LujEV0lsYSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk
+CAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4=
+-----END CERTIFICATE-----
+
+DigiCert High Assurance EV Root CA
+==================================
+-----BEGIN CERTIFICATE-----
+MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBsMQswCQYDVQQG
+EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSsw
+KQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAw
+MFoXDTMxMTExMDAwMDAwMFowbDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZ
+MBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFu
+Y2UgRVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm+9S75S0t
+Mqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTWPNt0OKRKzE0lgvdKpVMS
+OO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEMxChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3
+MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFBIk5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQ
+NAQTXKFx01p8VdteZOE3hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUe
+h10aUAsgEsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMB
+Af8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaAFLE+w2kD+L9HAdSY
+JhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3NecnzyIZgYIVyHbIUf4KmeqvxgydkAQ
+V8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6zeM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFp
+myPInngiK3BD41VHMWEZ71jFhS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkK
+mNEVX58Svnw2Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe
+vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep+OkuE6N36B9K
+-----END CERTIFICATE-----
+
+Certplus Class 2 Primary CA
+===========================
+-----BEGIN CERTIFICATE-----
+MIIDkjCCAnqgAwIBAgIRAIW9S/PY2uNp9pTXX8OlRCMwDQYJKoZIhvcNAQEFBQAwPTELMAkGA1UE
+BhMCRlIxETAPBgNVBAoTCENlcnRwbHVzMRswGQYDVQQDExJDbGFzcyAyIFByaW1hcnkgQ0EwHhcN
+OTkwNzA3MTcwNTAwWhcNMTkwNzA2MjM1OTU5WjA9MQswCQYDVQQGEwJGUjERMA8GA1UEChMIQ2Vy
+dHBsdXMxGzAZBgNVBAMTEkNsYXNzIDIgUHJpbWFyeSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEP
+ADCCAQoCggEBANxQltAS+DXSCHh6tlJw/W/uz7kRy1134ezpfgSN1sxvc0NXYKwzCkTsA18cgCSR
+5aiRVhKC9+Ar9NuuYS6JEI1rbLqzAr3VNsVINyPi8Fo3UjMXEuLRYE2+L0ER4/YXJQyLkcAbmXuZ
+Vg2v7tK8R1fjeUl7NIknJITesezpWE7+Tt9avkGtrAjFGA7v0lPubNCdEgETjdyAYveVqUSISnFO
+YFWe2yMZeVYHDD9jC1yw4r5+FfyUM1hBOHTE4Y+L3yasH7WLO7dDWWuwJKZtkIvEcupdM5i3y95e
+e++U8Rs+yskhwcWYAqqi9lt3m/V+llU0HGdpwPFC40es/CgcZlUCAwEAAaOBjDCBiTAPBgNVHRME
+CDAGAQH/AgEKMAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQU43Mt38sOKAze3bOkynm4jrvoMIkwEQYJ
+YIZIAYb4QgEBBAQDAgEGMDcGA1UdHwQwMC4wLKAqoCiGJmh0dHA6Ly93d3cuY2VydHBsdXMuY29t
+L0NSTC9jbGFzczIuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQCnVM+IRBnL39R/AN9WM2K191EBkOvD
+P9GIROkkXe/nFL0gt5o8AP5tn9uQ3Nf0YtaLcF3n5QRIqWh8yfFC82x/xXp8HVGIutIKPidd3i1R
+TtMTZGnkLuPT55sJmabglZvOGtd/vjzOUrMRFcEPF80Du5wlFbqidon8BvEY0JNLDnyCt6X09l/+
+7UCmnYR0ObncHoUW2ikbhiMAybuJfm6AiB4vFLQDJKgybwOaRywwvlbGp0ICcBvqQNi6BQNwB6SW
+//1IMwrh3KWBkJtN3X3n57LNXMhqlfil9o3EXXgIvnsG1knPGTZQIy4I5p4FTUcY1Rbpsda2ENW7
+l7+ijrRU
+-----END CERTIFICATE-----
+
+DST Root CA X3
+==============
+-----BEGIN CERTIFICATE-----
+MIIDSjCCAjKgAwIBAgIQRK+wgNajJ7qJMDmGLvhAazANBgkqhkiG9w0BAQUFADA/MSQwIgYDVQQK
+ExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4xFzAVBgNVBAMTDkRTVCBSb290IENBIFgzMB4X
+DTAwMDkzMDIxMTIxOVoXDTIxMDkzMDE0MDExNVowPzEkMCIGA1UEChMbRGlnaXRhbCBTaWduYXR1
+cmUgVHJ1c3QgQ28uMRcwFQYDVQQDEw5EU1QgUm9vdCBDQSBYMzCCASIwDQYJKoZIhvcNAQEBBQAD
+ggEPADCCAQoCggEBAN+v6ZdQCINXtMxiZfaQguzH0yxrMMpb7NnDfcdAwRgUi+DoM3ZJKuM/IUmT
+rE4Orz5Iy2Xu/NMhD2XSKtkyj4zl93ewEnu1lcCJo6m67XMuegwGMoOifooUMM0RoOEqOLl5CjH9
+UL2AZd+3UWODyOKIYepLYYHsUmu5ouJLGiifSKOeDNoJjj4XLh7dIN9bxiqKqy69cK3FCxolkHRy
+xXtqqzTWMIn/5WgTe1QLyNau7Fqckh49ZLOMxt+/yUFw7BZy1SbsOFU5Q9D8/RhcQPGX69Wam40d
+utolucbY38EVAjqr2m7xPi71XAicPNaDaeQQmxkqtilX4+U9m5/wAl0CAwEAAaNCMEAwDwYDVR0T
+AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFMSnsaR7LHH62+FLkHX/xBVghYkQ
+MA0GCSqGSIb3DQEBBQUAA4IBAQCjGiybFwBcqR7uKGY3Or+Dxz9LwwmglSBd49lZRNI+DT69ikug
+dB/OEIKcdBodfpga3csTS7MgROSR6cz8faXbauX+5v3gTt23ADq1cEmv8uXrAvHRAosZy5Q6XkjE
+GB5YGV8eAlrwDPGxrancWYaLbumR9YbK+rlmM6pZW87ipxZzR8srzJmwN0jP41ZL9c8PDHIyh8bw
+RLtTcm1D9SZImlJnt1ir/md2cXjbDaJWFBM5JDGFoqgCWjBH4d1QB7wCCZAA62RjYJsWvIjJEubS
+fZGL+T0yjWW06XyxV3bqxbYoOb8VZRzI9neWagqNdwvYkQsEjgfbKbYK7p2CNTUQ
+-----END CERTIFICATE-----
+
+DST ACES CA X6
+==============
+-----BEGIN CERTIFICATE-----
+MIIECTCCAvGgAwIBAgIQDV6ZCtadt3js2AdWO4YV2TANBgkqhkiG9w0BAQUFADBbMQswCQYDVQQG
+EwJVUzEgMB4GA1UEChMXRGlnaXRhbCBTaWduYXR1cmUgVHJ1c3QxETAPBgNVBAsTCERTVCBBQ0VT
+MRcwFQYDVQQDEw5EU1QgQUNFUyBDQSBYNjAeFw0wMzExMjAyMTE5NThaFw0xNzExMjAyMTE5NTha
+MFsxCzAJBgNVBAYTAlVTMSAwHgYDVQQKExdEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdDERMA8GA1UE
+CxMIRFNUIEFDRVMxFzAVBgNVBAMTDkRTVCBBQ0VTIENBIFg2MIIBIjANBgkqhkiG9w0BAQEFAAOC
+AQ8AMIIBCgKCAQEAuT31LMmU3HWKlV1j6IR3dma5WZFcRt2SPp/5DgO0PWGSvSMmtWPuktKe1jzI
+DZBfZIGxqAgNTNj50wUoUrQBJcWVHAx+PhCEdc/BGZFjz+iokYi5Q1K7gLFViYsx+tC3dr5BPTCa
+pCIlF3PoHuLTrCq9Wzgh1SpL11V94zpVvddtawJXa+ZHfAjIgrrep4c9oW24MFbCswKBXy314pow
+GCi4ZtPLAZZv6opFVdbgnf9nKxcCpk4aahELfrd755jWjHZvwTvbUJN+5dCOHze4vbrGn2zpfDPy
+MjwmR/onJALJfh1biEITajV8fTXpLmaRcpPVMibEdPVTo7NdmvYJywIDAQABo4HIMIHFMA8GA1Ud
+EwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgHGMB8GA1UdEQQYMBaBFHBraS1vcHNAdHJ1c3Rkc3Qu
+Y29tMGIGA1UdIARbMFkwVwYKYIZIAWUDAgEBATBJMEcGCCsGAQUFBwIBFjtodHRwOi8vd3d3LnRy
+dXN0ZHN0LmNvbS9jZXJ0aWZpY2F0ZXMvcG9saWN5L0FDRVMtaW5kZXguaHRtbDAdBgNVHQ4EFgQU
+CXIGThhDD+XWzMNqizF7eI+og7gwDQYJKoZIhvcNAQEFBQADggEBAKPYjtay284F5zLNAdMEA+V2
+5FYrnJmQ6AgwbN99Pe7lv7UkQIRJ4dEorsTCOlMwiPH1d25Ryvr/ma8kXxug/fKshMrfqfBfBC6t
+Fr8hlxCBPeP/h40y3JTlR4peahPJlJU90u7INJXQgNStMgiAVDzgvVJT11J8smk/f3rPanTK+gQq
+nExaBqXpIK1FZg9p8d2/6eMyi/rgwYZNcjwu2JN4Cir42NInPRmJX1p7ijvMDNpRrscL9yuwNwXs
+vFcj4jjSm2jzVhKIT0J8uDHEtdvkyCE06UgRNe76x5JXxZ805Mf29w4LTJxoeHtxMcfrHuBnQfO3
+oKfN5XozNmr6mis=
+-----END CERTIFICATE-----
+
+TURKTRUST Certificate Services Provider Root 1
+==============================================
+-----BEGIN CERTIFICATE-----
+MIID+zCCAuOgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBtzE/MD0GA1UEAww2VMOcUktUUlVTVCBF
+bGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxMQswCQYDVQQGDAJUUjEP
+MA0GA1UEBwwGQU5LQVJBMVYwVAYDVQQKDE0oYykgMjAwNSBUw5xSS1RSVVNUIEJpbGdpIMSwbGV0
+acWfaW0gdmUgQmlsacWfaW0gR8O8dmVubGnEn2kgSGl6bWV0bGVyaSBBLsWeLjAeFw0wNTA1MTMx
+MDI3MTdaFw0xNTAzMjIxMDI3MTdaMIG3MT8wPQYDVQQDDDZUw5xSS1RSVVNUIEVsZWt0cm9uaWsg
+U2VydGlmaWthIEhpem1ldCBTYcSfbGF5xLFjxLFzxLExCzAJBgNVBAYMAlRSMQ8wDQYDVQQHDAZB
+TktBUkExVjBUBgNVBAoMTShjKSAyMDA1IFTDnFJLVFJVU1QgQmlsZ2kgxLBsZXRpxZ9pbSB2ZSBC
+aWxpxZ9pbSBHw7x2ZW5sacSfaSBIaXptZXRsZXJpIEEuxZ4uMIIBIjANBgkqhkiG9w0BAQEFAAOC
+AQ8AMIIBCgKCAQEAylIF1mMD2Bxf3dJ7XfIMYGFbazt0K3gNfUW9InTojAPBxhEqPZW8qZSwu5GX
+yGl8hMW0kWxsE2qkVa2kheiVfrMArwDCBRj1cJ02i67L5BuBf5OI+2pVu32Fks66WJ/bMsW9Xe8i
+Si9BB35JYbOG7E6mQW6EvAPs9TscyB/C7qju6hJKjRTP8wrgUDn5CDX4EVmt5yLqS8oUBt5CurKZ
+8y1UiBAG6uEaPj1nH/vO+3yC6BFdSsG5FOpU2WabfIl9BJpiyelSPJ6c79L1JuTm5Rh8i27fbMx4
+W09ysstcP4wFjdFMjK2Sx+F4f2VsSQZQLJ4ywtdKxnWKWU51b0dewQIDAQABoxAwDjAMBgNVHRME
+BTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQAV9VX/N5aAWSGk/KEVTCD21F/aAyT8z5Aa9CEKmu46
+sWrv7/hg0Uw2ZkUd82YCdAR7kjCo3gp2D++Vbr3JN+YaDayJSFvMgzbC9UZcWYJWtNX+I7TYVBxE
+q8Sn5RTOPEFhfEPmzcSBCYsk+1Ql1haolgxnB2+zUEfjHCQo3SqYpGH+2+oSN7wBGjSFvW5P55Fy
+B0SFHljKVETd96y5y4khctuPwGkplyqjrhgjlxxBKot8KsF8kOipKMDTkcatKIdAaLX/7KfS0zgY
+nNN9aV3wxqUeJBujR/xpB2jn5Jq07Q+hh4cCzofSSE7hvP/L8XKSRGQDJereW26fyfJOrN3H
+-----END CERTIFICATE-----
+
+TURKTRUST Certificate Services Provider Root 2
+==============================================
+-----BEGIN CERTIFICATE-----
+MIIEPDCCAySgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBvjE/MD0GA1UEAww2VMOcUktUUlVTVCBF
+bGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxMQswCQYDVQQGEwJUUjEP
+MA0GA1UEBwwGQW5rYXJhMV0wWwYDVQQKDFRUw5xSS1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUg
+QmlsacWfaW0gR8O8dmVubGnEn2kgSGl6bWV0bGVyaSBBLsWeLiAoYykgS2FzxLFtIDIwMDUwHhcN
+MDUxMTA3MTAwNzU3WhcNMTUwOTE2MTAwNzU3WjCBvjE/MD0GA1UEAww2VMOcUktUUlVTVCBFbGVr
+dHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxMQswCQYDVQQGEwJUUjEPMA0G
+A1UEBwwGQW5rYXJhMV0wWwYDVQQKDFRUw5xSS1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUgQmls
+acWfaW0gR8O8dmVubGnEn2kgSGl6bWV0bGVyaSBBLsWeLiAoYykgS2FzxLFtIDIwMDUwggEiMA0G
+CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCpNn7DkUNMwxmYCMjHWHtPFoylzkkBH3MOrHUTpvqe
+LCDe2JAOCtFp0if7qnefJ1Il4std2NiDUBd9irWCPwSOtNXwSadktx4uXyCcUHVPr+G1QRT0mJKI
+x+XlZEdhR3n9wFHxwZnn3M5q+6+1ATDcRhzviuyV79z/rxAc653YsKpqhRgNF8k+v/Gb0AmJQv2g
+QrSdiVFVKc8bcLyEVK3BEx+Y9C52YItdP5qtygy/p1Zbj3e41Z55SZI/4PGXJHpsmxcPbe9TmJEr
+5A++WXkHeLuXlfSfadRYhwqp48y2WBmfJiGxxFmNskF1wK1pzpwACPI2/z7woQ8arBT9pmAPAgMB
+AAGjQzBBMB0GA1UdDgQWBBTZN7NOBf3Zz58SFq62iS/rJTqIHDAPBgNVHQ8BAf8EBQMDBwYAMA8G
+A1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAHJglrfJ3NgpXiOFX7KzLXb7iNcX/ntt
+Rbj2hWyfIvwqECLsqrkw9qtY1jkQMZkpAL2JZkH7dN6RwRgLn7Vhy506vvWolKMiVW4XSf/SKfE4
+Jl3vpao6+XF75tpYHdN0wgH6PmlYX63LaL4ULptswLbcoCb6dxriJNoaN+BnrdFzgw2lGh1uEpJ+
+hGIAF728JRhX8tepb1mIvDS3LoV4nZbcFMMsilKbloxSZj2GFotHuFEJjOp9zYhys2AzsfAKRO8P
+9Qk3iCQOLGsgOqL6EfJANZxEaGM7rDNvY7wsu/LSy3Z9fYjYHcgFHW68lKlmjHdxx/qR+i9Rnuk5
+UrbnBEI=
+-----END CERTIFICATE-----
+
+SwissSign Gold CA - G2
+======================
+-----BEGIN CERTIFICATE-----
+MIIFujCCA6KgAwIBAgIJALtAHEP1Xk+wMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkNIMRUw
+EwYDVQQKEwxTd2lzc1NpZ24gQUcxHzAdBgNVBAMTFlN3aXNzU2lnbiBHb2xkIENBIC0gRzIwHhcN
+MDYxMDI1MDgzMDM1WhcNMzYxMDI1MDgzMDM1WjBFMQswCQYDVQQGEwJDSDEVMBMGA1UEChMMU3dp
+c3NTaWduIEFHMR8wHQYDVQQDExZTd2lzc1NpZ24gR29sZCBDQSAtIEcyMIICIjANBgkqhkiG9w0B
+AQEFAAOCAg8AMIICCgKCAgEAr+TufoskDhJuqVAtFkQ7kpJcyrhdhJJCEyq8ZVeCQD5XJM1QiyUq
+t2/876LQwB8CJEoTlo8jE+YoWACjR8cGp4QjK7u9lit/VcyLwVcfDmJlD909Vopz2q5+bbqBHH5C
+jCA12UNNhPqE21Is8w4ndwtrvxEvcnifLtg+5hg3Wipy+dpikJKVyh+c6bM8K8vzARO/Ws/BtQpg
+vd21mWRTuKCWs2/iJneRjOBiEAKfNA+k1ZIzUd6+jbqEemA8atufK+ze3gE/bk3lUIbLtK/tREDF
+ylqM2tIrfKjuvqblCqoOpd8FUrdVxyJdMmqXl2MT28nbeTZ7hTpKxVKJ+STnnXepgv9VHKVxaSvR
+AiTysybUa9oEVeXBCsdtMDeQKuSeFDNeFhdVxVu1yzSJkvGdJo+hB9TGsnhQ2wwMC3wLjEHXuend
+jIj3o02yMszYF9rNt85mndT9Xv+9lz4pded+p2JYryU0pUHHPbwNUMoDAw8IWh+Vc3hiv69yFGkO
+peUDDniOJihC8AcLYiAQZzlG+qkDzAQ4embvIIO1jEpWjpEA/I5cgt6IoMPiaG59je883WX0XaxR
+7ySArqpWl2/5rX3aYT+YdzylkbYcjCbaZaIJbcHiVOO5ykxMgI93e2CaHt+28kgeDrpOVG2Y4OGi
+GqJ3UM/EY5LsRxmd6+ZrzsECAwEAAaOBrDCBqTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUw
+AwEB/zAdBgNVHQ4EFgQUWyV7lqRlUX64OfPAeGZe6Drn8O4wHwYDVR0jBBgwFoAUWyV7lqRlUX64
+OfPAeGZe6Drn8O4wRgYDVR0gBD8wPTA7BglghXQBWQECAQEwLjAsBggrBgEFBQcCARYgaHR0cDov
+L3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIBACe645R88a7A3hfm
+5djV9VSwg/S7zV4Fe0+fdWavPOhWfvxyeDgD2StiGwC5+OlgzczOUYrHUDFu4Up+GC9pWbY9ZIEr
+44OE5iKHjn3g7gKZYbge9LgriBIWhMIxkziWMaa5O1M/wySTVltpkuzFwbs4AOPsF6m43Md8AYOf
+Mke6UiI0HTJ6CVanfCU2qT1L2sCCbwq7EsiHSycR+R4tx5M/nttfJmtS2S6K8RTGRI0Vqbe/vd6m
+Gu6uLftIdxf+u+yvGPUqUfA5hJeVbG4bwyvEdGB5JbAKJ9/fXtI5z0V9QkvfsywexcZdylU6oJxp
+mo/a77KwPJ+HbBIrZXAVUjEaJM9vMSNQH4xPjyPDdEFjHFWoFN0+4FFQz/EbMFYOkrCChdiDyyJk
+vC24JdVUorgG6q2SpCSgwYa1ShNqR88uC1aVVMvOmttqtKay20EIhid392qgQmwLOM7XdVAyksLf
+KzAiSNDVQTglXaTpXZ/GlHXQRf0wl0OPkKsKx4ZzYEppLd6leNcG2mqeSz53OiATIgHQv2ieY2Br
+NU0LbbqhPcCT4H8js1WtciVORvnSFu+wZMEBnunKoGqYDs/YYPIvSbjkQuE4NRb0yG5P94FW6Lqj
+viOvrv1vA+ACOzB2+httQc8Bsem4yWb02ybzOqR08kkkW8mw0FfB+j564ZfJ
+-----END CERTIFICATE-----
+
+SwissSign Silver CA - G2
+========================
+-----BEGIN CERTIFICATE-----
+MIIFvTCCA6WgAwIBAgIITxvUL1S7L0swDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UEBhMCQ0gxFTAT
+BgNVBAoTDFN3aXNzU2lnbiBBRzEhMB8GA1UEAxMYU3dpc3NTaWduIFNpbHZlciBDQSAtIEcyMB4X
+DTA2MTAyNTA4MzI0NloXDTM2MTAyNTA4MzI0NlowRzELMAkGA1UEBhMCQ0gxFTATBgNVBAoTDFN3
+aXNzU2lnbiBBRzEhMB8GA1UEAxMYU3dpc3NTaWduIFNpbHZlciBDQSAtIEcyMIICIjANBgkqhkiG
+9w0BAQEFAAOCAg8AMIICCgKCAgEAxPGHf9N4Mfc4yfjDmUO8x/e8N+dOcbpLj6VzHVxumK4DV644
+N0MvFz0fyM5oEMF4rhkDKxD6LHmD9ui5aLlV8gREpzn5/ASLHvGiTSf5YXu6t+WiE7brYT7QbNHm
++/pe7R20nqA1W6GSy/BJkv6FCgU+5tkL4k+73JU3/JHpMjUi0R86TieFnbAVlDLaYQ1HTWBCrpJH
+6INaUFjpiou5XaHc3ZlKHzZnu0jkg7Y360g6rw9njxcH6ATK72oxh9TAtvmUcXtnZLi2kUpCe2Uu
+MGoM9ZDulebyzYLs2aFK7PayS+VFheZteJMELpyCbTapxDFkH4aDCyr0NQp4yVXPQbBH6TCfmb5h
+qAaEuSh6XzjZG6k4sIN/c8HDO0gqgg8hm7jMqDXDhBuDsz6+pJVpATqJAHgE2cn0mRmrVn5bi4Y5
+FZGkECwJMoBgs5PAKrYYC51+jUnyEEp/+dVGLxmSo5mnJqy7jDzmDrxHB9xzUfFwZC8I+bRHHTBs
+ROopN4WSaGa8gzj+ezku01DwH/teYLappvonQfGbGHLy9YR0SslnxFSuSGTfjNFusB3hB48IHpmc
+celM2KX3RxIfdNFRnobzwqIjQAtz20um53MGjMGg6cFZrEb65i/4z3GcRm25xBWNOHkDRUjvxF3X
+CO6HOSKGsg0PWEP3calILv3q1h8CAwEAAaOBrDCBqTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/
+BAUwAwEB/zAdBgNVHQ4EFgQUF6DNweRBtjpbO8tFnb0cwpj6hlgwHwYDVR0jBBgwFoAUF6DNweRB
+tjpbO8tFnb0cwpj6hlgwRgYDVR0gBD8wPTA7BglghXQBWQEDAQEwLjAsBggrBgEFBQcCARYgaHR0
+cDovL3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIBAHPGgeAn0i0P
+4JUw4ppBf1AsX19iYamGamkYDHRJ1l2E6kFSGG9YrVBWIGrGvShpWJHckRE1qTodvBqlYJ7YH39F
+kWnZfrt4csEGDyrOj4VwYaygzQu4OSlWhDJOhrs9xCrZ1x9y7v5RoSJBsXECYxqCsGKrXlcSH9/L
+3XWgwF15kIwb4FDm3jH+mHtwX6WQ2K34ArZv02DdQEsixT2tOnqfGhpHkXkzuoLcMmkDlm4fS/Bx
+/uNncqCxv1yL5PqZIseEuRuNI5c/7SXgz2W79WEE790eslpBIlqhn10s6FvJbakMDHiqYMZWjwFa
+DGi8aRl5xB9+lwW/xekkUV7U1UtT7dkjWjYDZaPBA61BMPNGG4WQr2W11bHkFlt4dR2Xem1ZqSqP
+e97Dh4kQmUlzeMg9vVE1dCrV8X5pGyq7O70luJpaPXJhkGaH7gzWTdQRdAtq/gsD/KNVV4n+Ssuu
+WxcFyPKNIzFTONItaj+CuY0IavdeQXRuwxF+B6wpYJE/OMpXEA29MC/HpeZBoNquBYeaoKRlbEwJ
+DIm6uNO5wJOKMPqN5ZprFQFOZ6raYlY+hAhm0sQ2fac+EPyI4NSA5QC9qvNOBqN6avlicuMJT+ub
+DgEj8Z+7fNzcbBGXJbLytGMU0gYqZ4yD9c7qB9iaah7s5Aq7KkzrCWA5zspi2C5u
+-----END CERTIFICATE-----
+
+GeoTrust Primary Certification Authority
+========================================
+-----BEGIN CERTIFICATE-----
+MIIDfDCCAmSgAwIBAgIQGKy1av1pthU6Y2yv2vrEoTANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQG
+EwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjExMC8GA1UEAxMoR2VvVHJ1c3QgUHJpbWFyeSBD
+ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjExMjcwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMFgx
+CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTEwLwYDVQQDEyhHZW9UcnVzdCBQ
+cmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB
+CgKCAQEAvrgVe//UfH1nrYNke8hCUy3f9oQIIGHWAVlqnEQRr+92/ZV+zmEwu3qDXwK9AWbK7hWN
+b6EwnL2hhZ6UOvNWiAAxz9juapYC2e0DjPt1befquFUWBRaa9OBesYjAZIVcFU2Ix7e64HXprQU9
+nceJSOC7KMgD4TCTZF5SwFlwIjVXiIrxlQqD17wxcwE07e9GceBrAqg1cmuXm2bgyxx5X9gaBGge
+RwLmnWDiNpcB3841kt++Z8dtd1k7j53WkBWUvEI0EME5+bEnPn7WinXFsq+W06Lem+SYvn3h6YGt
+tm/81w7a4DSwDRp35+MImO9Y+pyEtzavwt+s0vQQBnBxNQIDAQABo0IwQDAPBgNVHRMBAf8EBTAD
+AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQULNVQQZcVi/CPNmFbSvtr2ZnJM5IwDQYJKoZI
+hvcNAQEFBQADggEBAFpwfyzdtzRP9YZRqSa+S7iq8XEN3GHHoOo0Hnp3DwQ16CePbJC/kRYkRj5K
+Ts4rFtULUh38H2eiAkUxT87z+gOneZ1TatnaYzr4gNfTmeGl4b7UVXGYNTq+k+qurUKykG/g/CFN
+NWMziUnWm07Kx+dOCQD32sfvmWKZd7aVIl6KoKv0uHiYyjgZmclynnjNS6yvGaBzEi38wkG6gZHa
+Floxt/m0cYASSJlyc1pZU8FjUjPtp8nSOQJw+uCxQmYpqptR7TBUIhRf2asdweSU8Pj1K/fqynhG
+1riR/aYNKxoUAT6A8EKglQdebc3MS6RFjasS6LPeWuWgfOgPIh1a6Vk=
+-----END CERTIFICATE-----
+
+thawte Primary Root CA
+======================
+-----BEGIN CERTIFICATE-----
+MIIEIDCCAwigAwIBAgIQNE7VVyDV7exJ9C/ON9srbTANBgkqhkiG9w0BAQUFADCBqTELMAkGA1UE
+BhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2
+aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMvKGMpIDIwMDYgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhv
+cml6ZWQgdXNlIG9ubHkxHzAdBgNVBAMTFnRoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EwHhcNMDYxMTE3
+MDAwMDAwWhcNMzYwNzE2MjM1OTU5WjCBqTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwg
+SW5jLjEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMv
+KGMpIDIwMDYgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxHzAdBgNVBAMT
+FnRoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCs
+oPD7gFnUnMekz52hWXMJEEUMDSxuaPFsW0hoSVk3/AszGcJ3f8wQLZU0HObrTQmnHNK4yZc2AreJ
+1CRfBsDMRJSUjQJib+ta3RGNKJpchJAQeg29dGYvajig4tVUROsdB58Hum/u6f1OCyn1PoSgAfGc
+q/gcfomk6KHYcWUNo1F77rzSImANuVud37r8UVsLr5iy6S7pBOhih94ryNdOwUxkHt3Ph1i6Sk/K
+aAcdHJ1KxtUvkcx8cXIcxcBn6zL9yZJclNqFwJu/U30rCfSMnZEfl2pSy94JNqR32HuHUETVPm4p
+afs5SSYeCaWAe0At6+gnhcn+Yf1+5nyXHdWdAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYD
+VR0PAQH/BAQDAgEGMB0GA1UdDgQWBBR7W0XPr87Lev0xkhpqtvNG61dIUDANBgkqhkiG9w0BAQUF
+AAOCAQEAeRHAS7ORtvzw6WfUDW5FvlXok9LOAz/t2iWwHVfLHjp2oEzsUHboZHIMpKnxuIvW1oeE
+uzLlQRHAd9mzYJ3rG9XRbkREqaYB7FViHXe4XI5ISXycO1cRrK1zN44veFyQaEfZYGDm/Ac9IiAX
+xPcW6cTYcvnIc3zfFi8VqT79aie2oetaupgf1eNNZAqdE8hhuvU5HIe6uL17In/2/qxAeeWsEG89
+jxt5dovEN7MhGITlNgDrYyCZuen+MwS7QcjBAvlEYyCegc5C09Y/LHbTY5xZ3Y+m4Q6gLkH3LpVH
+z7z9M/P2C2F+fpErgUfCJzDupxBdN49cOSvkBPB7jVaMaA==
+-----END CERTIFICATE-----
+
+VeriSign Class 3 Public Primary Certification Authority - G5
+============================================================
+-----BEGIN CERTIFICATE-----
+MIIE0zCCA7ugAwIBAgIQGNrRniZ96LtKIVjNzGs7SjANBgkqhkiG9w0BAQUFADCByjELMAkGA1UE
+BhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBO
+ZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVk
+IHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRp
+ZmljYXRpb24gQXV0aG9yaXR5IC0gRzUwHhcNMDYxMTA4MDAwMDAwWhcNMzYwNzE2MjM1OTU5WjCB
+yjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2ln
+biBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJpU2lnbiwgSW5jLiAtIEZvciBh
+dXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmlt
+YXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAw
+ggEKAoIBAQCvJAgIKXo1nmAMqudLO07cfLw8RRy7K+D+KQL5VwijZIUVJ/XxrcgxiV0i6CqqpkKz
+j/i5Vbext0uz/o9+B1fs70PbZmIVYc9gDaTY3vjgw2IIPVQT60nKWVSFJuUrjxuf6/WhkcIzSdhD
+Y2pSS9KP6HBRTdGJaXvHcPaz3BJ023tdS1bTlr8Vd6Gw9KIl8q8ckmcY5fQGBO+QueQA5N06tRn/
+Arr0PO7gi+s3i+z016zy9vA9r911kTMZHRxAy3QkGSGT2RT+rCpSx4/VBEnkjWNHiDxpg8v+R70r
+fk/Fla4OndTRQ8Bnc+MUCH7lP59zuDMKz10/NIeWiu5T6CUVAgMBAAGjgbIwga8wDwYDVR0TAQH/
+BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwbQYIKwYBBQUHAQwEYTBfoV2gWzBZMFcwVRYJaW1hZ2Uv
+Z2lmMCEwHzAHBgUrDgMCGgQUj+XTGoasjY5rw8+AatRIGCx7GS4wJRYjaHR0cDovL2xvZ28udmVy
+aXNpZ24uY29tL3ZzbG9nby5naWYwHQYDVR0OBBYEFH/TZafC3ey78DAJ80M5+gKvMzEzMA0GCSqG
+SIb3DQEBBQUAA4IBAQCTJEowX2LP2BqYLz3q3JktvXf2pXkiOOzEp6B4Eq1iDkVwZMXnl2YtmAl+
+X6/WzChl8gGqCBpH3vn5fJJaCGkgDdk+bW48DW7Y5gaRQBi5+MHt39tBquCWIMnNZBU4gcmU7qKE
+KQsTb47bDN0lAtukixlE0kF6BWlKWE9gyn6CagsCqiUXObXbf+eEZSqVir2G3l6BFoMtEMze/aiC
+Km0oHw0LxOXnGiYZ4fQRbxC1lfznQgUy286dUV4otp6F01vvpX1FQHKOtw5rDgb7MzVIcbidJ4vE
+ZV8NhnacRHr2lVz2XTIIM6RUthg/aFzyQkqFOFSDX9HoLPKsEdao7WNq
+-----END CERTIFICATE-----
+
+SecureTrust CA
+==============
+-----BEGIN CERTIFICATE-----
+MIIDuDCCAqCgAwIBAgIQDPCOXAgWpa1Cf/DrJxhZ0DANBgkqhkiG9w0BAQUFADBIMQswCQYDVQQG
+EwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xFzAVBgNVBAMTDlNlY3VyZVRy
+dXN0IENBMB4XDTA2MTEwNzE5MzExOFoXDTI5MTIzMTE5NDA1NVowSDELMAkGA1UEBhMCVVMxIDAe
+BgNVBAoTF1NlY3VyZVRydXN0IENvcnBvcmF0aW9uMRcwFQYDVQQDEw5TZWN1cmVUcnVzdCBDQTCC
+ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKukgeWVzfX2FI7CT8rU4niVWJxB4Q2ZQCQX
+OZEzZum+4YOvYlyJ0fwkW2Gz4BERQRwdbvC4u/jep4G6pkjGnx29vo6pQT64lO0pGtSO0gMdA+9t
+DWccV9cGrcrI9f4Or2YlSASWC12juhbDCE/RRvgUXPLIXgGZbf2IzIaowW8xQmxSPmjL8xk037uH
+GFaAJsTQ3MBv396gwpEWoGQRS0S8Hvbn+mPeZqx2pHGj7DaUaHp3pLHnDi+BeuK1cobvomuL8A/b
+01k/unK8RCSc43Oz969XL0Imnal0ugBS8kvNU3xHCzaFDmapCJcWNFfBZveA4+1wVMeT4C4oFVmH
+ursCAwEAAaOBnTCBmjATBgkrBgEEAYI3FAIEBh4EAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/
+BAUwAwEB/zAdBgNVHQ4EFgQUQjK2FvoE/f5dS3rD/fdMQB1aQ68wNAYDVR0fBC0wKzApoCegJYYj
+aHR0cDovL2NybC5zZWN1cmV0cnVzdC5jb20vU1RDQS5jcmwwEAYJKwYBBAGCNxUBBAMCAQAwDQYJ
+KoZIhvcNAQEFBQADggEBADDtT0rhWDpSclu1pqNlGKa7UTt36Z3q059c4EVlew3KW+JwULKUBRSu
+SceNQQcSc5R+DCMh/bwQf2AQWnL1mA6s7Ll/3XpvXdMc9P+IBWlCqQVxyLesJugutIxq/3HcuLHf
+mbx8IVQr5Fiiu1cprp6poxkmD5kuCLDv/WnPmRoJjeOnnyvJNjR7JLN4TJUXpAYmHrZkUjZfYGfZ
+nMUFdAvnZyPSCPyI6a6Lf+Ew9Dd+/cYy2i2eRDAwbO4H3tI0/NL/QPZL9GZGBlSm8jIKYyYwa5vR
+3ItHuuG51WLQoqD0ZwV4KWMabwTW+MZMo5qxN7SN5ShLHZ4swrhovO0C7jE=
+-----END CERTIFICATE-----
+
+Secure Global CA
+================
+-----BEGIN CERTIFICATE-----
+MIIDvDCCAqSgAwIBAgIQB1YipOjUiolN9BPI8PjqpTANBgkqhkiG9w0BAQUFADBKMQswCQYDVQQG
+EwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBH
+bG9iYWwgQ0EwHhcNMDYxMTA3MTk0MjI4WhcNMjkxMjMxMTk1MjA2WjBKMQswCQYDVQQGEwJVUzEg
+MB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwg
+Q0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvNS7YrGxVaQZx5RNoJLNP2MwhR/jx
+YDiJiQPpvepeRlMJ3Fz1Wuj3RSoC6zFh1ykzTM7HfAo3fg+6MpjhHZevj8fcyTiW89sa/FHtaMbQ
+bqR8JNGuQsiWUGMu4P51/pinX0kuleM5M2SOHqRfkNJnPLLZ/kG5VacJjnIFHovdRIWCQtBJwB1g
+8NEXLJXr9qXBkqPFwqcIYA1gBBCWeZ4WNOaptvolRTnIHmX5k/Wq8VLcmZg9pYYaDDUz+kulBAYV
+HDGA76oYa8J719rO+TMg1fW9ajMtgQT7sFzUnKPiXB3jqUJ1XnvUd+85VLrJChgbEplJL4hL/VBi
+0XPnj3pDAgMBAAGjgZ0wgZowEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1Ud
+EwEB/wQFMAMBAf8wHQYDVR0OBBYEFK9EBMJBfkiD2045AuzshHrmzsmkMDQGA1UdHwQtMCswKaAn
+oCWGI2h0dHA6Ly9jcmwuc2VjdXJldHJ1c3QuY29tL1NHQ0EuY3JsMBAGCSsGAQQBgjcVAQQDAgEA
+MA0GCSqGSIb3DQEBBQUAA4IBAQBjGghAfaReUw132HquHw0LURYD7xh8yOOvaliTFGCRsoTciE6+
+OYo68+aCiV0BN7OrJKQVDpI1WkpEXk5X+nXOH0jOZvQ8QCaSmGwb7iRGDBezUqXbpZGRzzfTb+cn
+CDpOGR86p1hcF895P4vkp9MmI50mD1hp/Ed+stCNi5O/KU9DaXR2Z0vPB4zmAve14bRDtUstFJ/5
+3CYNv6ZHdAbYiNE6KTCEztI5gGIbqMdXSbxqVVFnFUq+NQfk1XWYN3kwFNspnWzFacxHVaIw98xc
+f8LDmBxrThaA63p4ZUWiABqvDA1VZDRIuJK58bRQKfJPIx/abKwfROHdI3hRW8cW
+-----END CERTIFICATE-----
+
+COMODO Certification Authority
+==============================
+-----BEGIN CERTIFICATE-----
+MIIEHTCCAwWgAwIBAgIQToEtioJl4AsC7j41AkblPTANBgkqhkiG9w0BAQUFADCBgTELMAkGA1UE
+BhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgG
+A1UEChMRQ09NT0RPIENBIExpbWl0ZWQxJzAlBgNVBAMTHkNPTU9ETyBDZXJ0aWZpY2F0aW9uIEF1
+dGhvcml0eTAeFw0wNjEyMDEwMDAwMDBaFw0yOTEyMzEyMzU5NTlaMIGBMQswCQYDVQQGEwJHQjEb
+MBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFD
+T01PRE8gQ0EgTGltaXRlZDEnMCUGA1UEAxMeQ09NT0RPIENlcnRpZmljYXRpb24gQXV0aG9yaXR5
+MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ECLi3LjkRv3UcEbVASY06m/weaKXTuH
++7uIzg3jLz8GlvCiKVCZrts7oVewdFFxze1CkU1B/qnI2GqGd0S7WWaXUF601CxwRM/aN5VCaTww
+xHGzUvAhTaHYujl8HJ6jJJ3ygxaYqhZ8Q5sVW7euNJH+1GImGEaaP+vB+fGQV+useg2L23IwambV
+4EajcNxo2f8ESIl33rXp+2dtQem8Ob0y2WIC8bGoPW43nOIv4tOiJovGuFVDiOEjPqXSJDlqR6sA
+1KGzqSX+DT+nHbrTUcELpNqsOO9VUCQFZUaTNE8tja3G1CEZ0o7KBWFxB3NH5YoZEr0ETc5OnKVI
+rLsm9wIDAQABo4GOMIGLMB0GA1UdDgQWBBQLWOWLxkwVN6RAqTCpIb5HNlpW/zAOBgNVHQ8BAf8E
+BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zBJBgNVHR8EQjBAMD6gPKA6hjhodHRwOi8vY3JsLmNvbW9k
+b2NhLmNvbS9DT01PRE9DZXJ0aWZpY2F0aW9uQXV0aG9yaXR5LmNybDANBgkqhkiG9w0BAQUFAAOC
+AQEAPpiem/Yb6dc5t3iuHXIYSdOH5EOC6z/JqvWote9VfCFSZfnVDeFs9D6Mk3ORLgLETgdxb8CP
+OGEIqB6BCsAvIC9Bi5HcSEW88cbeunZrM8gALTFGTO3nnc+IlP8zwFboJIYmuNg4ON8qa90SzMc/
+RxdMosIGlgnW2/4/PEZB31jiVg88O8EckzXZOFKs7sjsLjBOlDW0JB9LeGna8gI4zJVSk/BwJVmc
+IGfE7vmLV2H0knZ9P4SNVbfo5azV8fUZVqZa+5Acr5Pr5RzUZ5ddBA6+C4OmF4O5MBKgxTMVBbkN
++8cFduPYSo38NBejxiEovjBFMR7HeL5YYTisO+IBZQ==
+-----END CERTIFICATE-----
+
+Network Solutions Certificate Authority
+=======================================
+-----BEGIN CERTIFICATE-----
+MIID5jCCAs6gAwIBAgIQV8szb8JcFuZHFhfjkDFo4DANBgkqhkiG9w0BAQUFADBiMQswCQYDVQQG
+EwJVUzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMuMTAwLgYDVQQDEydOZXR3b3Jr
+IFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcNMDYxMjAxMDAwMDAwWhcNMjkxMjMx
+MjM1OTU5WjBiMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMu
+MTAwLgYDVQQDEydOZXR3b3JrIFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggEiMA0G
+CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDkvH6SMG3G2I4rC7xGzuAnlt7e+foS0zwzc7MEL7xx
+jOWftiJgPl9dzgn/ggwbmlFQGiaJ3dVhXRncEg8tCqJDXRfQNJIg6nPPOCwGJgl6cvf6UDL4wpPT
+aaIjzkGxzOTVHzbRijr4jGPiFFlp7Q3Tf2vouAPlT2rlmGNpSAW+Lv8ztumXWWn4Zxmuk2GWRBXT
+crA/vGp97Eh/jcOrqnErU2lBUzS1sLnFBgrEsEX1QV1uiUV7PTsmjHTC5dLRfbIR1PtYMiKagMnc
+/Qzpf14Dl847ABSHJ3A4qY5usyd2mFHgBeMhqxrVhSI8KbWaFsWAqPS7azCPL0YCorEMIuDTAgMB
+AAGjgZcwgZQwHQYDVR0OBBYEFCEwyfsA106Y2oeqKtCnLrFAMadMMA4GA1UdDwEB/wQEAwIBBjAP
+BgNVHRMBAf8EBTADAQH/MFIGA1UdHwRLMEkwR6BFoEOGQWh0dHA6Ly9jcmwubmV0c29sc3NsLmNv
+bS9OZXR3b3JrU29sdXRpb25zQ2VydGlmaWNhdGVBdXRob3JpdHkuY3JsMA0GCSqGSIb3DQEBBQUA
+A4IBAQC7rkvnt1frf6ott3NHhWrB5KUd5Oc86fRZZXe1eltajSU24HqXLjjAV2CDmAaDn7l2em5Q
+4LqILPxFzBiwmZVRDuwduIj/h1AcgsLj4DKAv6ALR8jDMe+ZZzKATxcheQxpXN5eNK4CtSbqUN9/
+GGUsyfJj4akH/nxxH2szJGoeBfcFaMBqEssuXmHLrijTfsK0ZpEmXzwuJF/LWA/rKOyvEZbz3Htv
+wKeI8lN3s2Berq4o2jUsbzRF0ybh3uxbTydrFny9RAQYgrOJeRcQcT16ohZO9QHNpGxlaKFJdlxD
+ydi8NmdspZS11My5vWo1ViHe2MPr+8ukYEywVaCge1ey
+-----END CERTIFICATE-----
+
+WellsSecure Public Root Certificate Authority
+=============================================
+-----BEGIN CERTIFICATE-----
+MIIEvTCCA6WgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBhTELMAkGA1UEBhMCVVMxIDAeBgNVBAoM
+F1dlbGxzIEZhcmdvIFdlbGxzU2VjdXJlMRwwGgYDVQQLDBNXZWxscyBGYXJnbyBCYW5rIE5BMTYw
+NAYDVQQDDC1XZWxsc1NlY3VyZSBQdWJsaWMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcN
+MDcxMjEzMTcwNzU0WhcNMjIxMjE0MDAwNzU0WjCBhTELMAkGA1UEBhMCVVMxIDAeBgNVBAoMF1dl
+bGxzIEZhcmdvIFdlbGxzU2VjdXJlMRwwGgYDVQQLDBNXZWxscyBGYXJnbyBCYW5rIE5BMTYwNAYD
+VQQDDC1XZWxsc1NlY3VyZSBQdWJsaWMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggEiMA0G
+CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDub7S9eeKPCCGeOARBJe+rWxxTkqxtnt3CxC5FlAM1
+iGd0V+PfjLindo8796jE2yljDpFoNoqXjopxaAkH5OjUDk/41itMpBb570OYj7OeUt9tkTmPOL13
+i0Nj67eT/DBMHAGTthP796EfvyXhdDcsHqRePGj4S78NuR4uNuip5Kf4D8uCdXw1LSLWwr8L87T8
+bJVhHlfXBIEyg1J55oNjz7fLY4sR4r1e6/aN7ZVyKLSsEmLpSjPmgzKuBXWVvYSV2ypcm44uDLiB
+K0HmOFafSZtsdvqKXfcBeYF8wYNABf5x/Qw/zE5gCQ5lRxAvAcAFP4/4s0HvWkJ+We/SlwxlAgMB
+AAGjggE0MIIBMDAPBgNVHRMBAf8EBTADAQH/MDkGA1UdHwQyMDAwLqAsoCqGKGh0dHA6Ly9jcmwu
+cGtpLndlbGxzZmFyZ28uY29tL3dzcHJjYS5jcmwwDgYDVR0PAQH/BAQDAgHGMB0GA1UdDgQWBBQm
+lRkQ2eihl5H/3BnZtQQ+0nMKajCBsgYDVR0jBIGqMIGngBQmlRkQ2eihl5H/3BnZtQQ+0nMKaqGB
+i6SBiDCBhTELMAkGA1UEBhMCVVMxIDAeBgNVBAoMF1dlbGxzIEZhcmdvIFdlbGxzU2VjdXJlMRww
+GgYDVQQLDBNXZWxscyBGYXJnbyBCYW5rIE5BMTYwNAYDVQQDDC1XZWxsc1NlY3VyZSBQdWJsaWMg
+Um9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHmCAQEwDQYJKoZIhvcNAQEFBQADggEBALkVsUSRzCPI
+K0134/iaeycNzXK7mQDKfGYZUMbVmO2rvwNa5U3lHshPcZeG1eMd/ZDJPHV3V3p9+N701NX3leZ0
+bh08rnyd2wIDBSxxSyU+B+NemvVmFymIGjifz6pBA4SXa5M4esowRBskRDPQ5NHcKDj0E0M1NSlj
+qHyita04pO2t/caaH/+Xc/77szWnk4bGdpEA5qxRFsQnMlzbc9qlk1eOPm01JghZ1edE13YgY+es
+E2fDbbFwRnzVlhE9iW9dqKHrjQrawx0zbKPqZxmamX9LPYNRKh3KL4YMon4QLSvUFpULB6ouFJJJ
+tylv2G0xffX8oRAHh84vWdw+WNs=
+-----END CERTIFICATE-----
+
+COMODO ECC Certification Authority
+==================================
+-----BEGIN CERTIFICATE-----
+MIICiTCCAg+gAwIBAgIQH0evqmIAcFBUTAGem2OZKjAKBggqhkjOPQQDAzCBhTELMAkGA1UEBhMC
+R0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UE
+ChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBB
+dXRob3JpdHkwHhcNMDgwMzA2MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0Ix
+GzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMR
+Q09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRo
+b3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQDR3svdcmCFYX7deSRFtSrYpn1PlILBs5BAH+X
+4QokPB0BBO490o0JlwzgdeT6+3eKKvUDYEs2ixYjFq0JcfRK9ChQtP6IHG4/bC8vCVlbpVsLM5ni
+wz2J+Wos77LTBumjQjBAMB0GA1UdDgQWBBR1cacZSBm8nZ3qQUfflMRId5nTeTAOBgNVHQ8BAf8E
+BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjEA7wNbeqy3eApyt4jf/7VG
+FAkK+qDmfQjGGoe9GKhzvSbKYAydzpmfz1wPMOG+FDHqAjAU9JM8SaczepBGR7NjfRObTrdvGDeA
+U/7dIOA1mjbRxwG55tzd8/8dLDoWV9mSOdY=
+-----END CERTIFICATE-----
+
+IGC/A
+=====
+-----BEGIN CERTIFICATE-----
+MIIEAjCCAuqgAwIBAgIFORFFEJQwDQYJKoZIhvcNAQEFBQAwgYUxCzAJBgNVBAYTAkZSMQ8wDQYD
+VQQIEwZGcmFuY2UxDjAMBgNVBAcTBVBhcmlzMRAwDgYDVQQKEwdQTS9TR0ROMQ4wDAYDVQQLEwVE
+Q1NTSTEOMAwGA1UEAxMFSUdDL0ExIzAhBgkqhkiG9w0BCQEWFGlnY2FAc2dkbi5wbS5nb3V2LmZy
+MB4XDTAyMTIxMzE0MjkyM1oXDTIwMTAxNzE0MjkyMlowgYUxCzAJBgNVBAYTAkZSMQ8wDQYDVQQI
+EwZGcmFuY2UxDjAMBgNVBAcTBVBhcmlzMRAwDgYDVQQKEwdQTS9TR0ROMQ4wDAYDVQQLEwVEQ1NT
+STEOMAwGA1UEAxMFSUdDL0ExIzAhBgkqhkiG9w0BCQEWFGlnY2FAc2dkbi5wbS5nb3V2LmZyMIIB
+IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsh/R0GLFMzvABIaIs9z4iPf930Pfeo2aSVz2
+TqrMHLmh6yeJ8kbpO0px1R2OLc/mratjUMdUC24SyZA2xtgv2pGqaMVy/hcKshd+ebUyiHDKcMCW
+So7kVc0dJ5S/znIq7Fz5cyD+vfcuiWe4u0dzEvfRNWk68gq5rv9GQkaiv6GFGvm/5P9JhfejcIYy
+HF2fYPepraX/z9E0+X1bF8bc1g4oa8Ld8fUzaJ1O/Id8NhLWo4DoQw1VYZTqZDdH6nfK0LJYBcNd
+frGoRpAxVs5wKpayMLh35nnAvSk7/ZR3TL0gzUEl4C7HG7vupARB0l2tEmqKm0f7yd1GQOGdPDPQ
+tQIDAQABo3cwdTAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQEAwIBRjAVBgNVHSAEDjAMMAoGCCqB
+egF5AQEBMB0GA1UdDgQWBBSjBS8YYFDCiQrdKyFP/45OqDAxNjAfBgNVHSMEGDAWgBSjBS8YYFDC
+iQrdKyFP/45OqDAxNjANBgkqhkiG9w0BAQUFAAOCAQEABdwm2Pp3FURo/C9mOnTgXeQp/wYHE4RK
+q89toB9RlPhJy3Q2FLwV3duJL92PoF189RLrn544pEfMs5bZvpwlqwN+Mw+VgQ39FuCIvjfwbF3Q
+MZsyK10XZZOYYLxuj7GoPB7ZHPOpJkL5ZB3C55L29B5aqhlSXa/oovdgoPaN8In1buAKBQGVyYsg
+Crpa/JosPL3Dt8ldeCUFP1YUmwza+zpI/pdpXsoQhvdOlgQITeywvl3cO45Pwf2aNjSaTFR+FwNI
+lQgRHAdvhQh+XU3Endv7rs6y0bO4g2wdsrN58dhwmX7wEwLOXt1R0982gaEbeC9xs/FZTEYYKKuF
+0mBWWg==
+-----END CERTIFICATE-----
+
+Security Communication EV RootCA1
+=================================
+-----BEGIN CERTIFICATE-----
+MIIDfTCCAmWgAwIBAgIBADANBgkqhkiG9w0BAQUFADBgMQswCQYDVQQGEwJKUDElMCMGA1UEChMc
+U0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU2VjdXJpdHkgQ29tbXVuaWNh
+dGlvbiBFViBSb290Q0ExMB4XDTA3MDYwNjAyMTIzMloXDTM3MDYwNjAyMTIzMlowYDELMAkGA1UE
+BhMCSlAxJTAjBgNVBAoTHFNFQ09NIFRydXN0IFN5c3RlbXMgQ08uLExURC4xKjAoBgNVBAsTIVNl
+Y3VyaXR5IENvbW11bmljYXRpb24gRVYgUm9vdENBMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC
+AQoCggEBALx/7FebJOD+nLpCeamIivqA4PUHKUPqjgo0No0c+qe1OXj/l3X3L+SqawSERMqm4miO
+/VVQYg+kcQ7OBzgtQoVQrTyWb4vVog7P3kmJPdZkLjjlHmy1V4qe70gOzXppFodEtZDkBp2uoQSX
+WHnvIEqCa4wiv+wfD+mEce3xDuS4GBPMVjZd0ZoeUWs5bmB2iDQL87PRsJ3KYeJkHcFGB7hj3R4z
+ZbOOCVVSPbW9/wfrrWFVGCypaZhKqkDFMxRldAD5kd6vA0jFQFTcD4SQaCDFkpbcLuUCRarAX1T4
+bepJz11sS6/vmsJWXMY1VkJqMF/Cq/biPT+zyRGPMUzXn0kCAwEAAaNCMEAwHQYDVR0OBBYEFDVK
+9U2vP9eCOKyrcWUXdYydVZPmMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqG
+SIb3DQEBBQUAA4IBAQCoh+ns+EBnXcPBZsdAS5f8hxOQWsTvoMpfi7ent/HWtWS3irO4G8za+6xm
+iEHO6Pzk2x6Ipu0nUBsCMCRGef4Eh3CXQHPRwMFXGZpppSeZq51ihPZRwSzJIxXYKLerJRO1RuGG
+Av8mjMSIkh1W/hln8lXkgKNrnKt34VFxDSDbEJrbvXZ5B3eZKK2aXtqxT0QsNY6llsf9g/BYxnnW
+mHyojf6GPgcWkuF75x3sM3Z+Qi5KhfmRiWiEA4Glm5q+4zfFVKtWOxgtQaQM+ELbmaDgcm+7XeEW
+T1MKZPlO9L9OVL14bIjqv5wTJMJwaaJ/D8g8rQjJsJhAoyrniIPtd490
+-----END CERTIFICATE-----
+
+OISTE WISeKey Global Root GA CA
+===============================
+-----BEGIN CERTIFICATE-----
+MIID8TCCAtmgAwIBAgIQQT1yx/RrH4FDffHSKFTfmjANBgkqhkiG9w0BAQUFADCBijELMAkGA1UE
+BhMCQ0gxEDAOBgNVBAoTB1dJU2VLZXkxGzAZBgNVBAsTEkNvcHlyaWdodCAoYykgMjAwNTEiMCAG
+A1UECxMZT0lTVEUgRm91bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBH
+bG9iYWwgUm9vdCBHQSBDQTAeFw0wNTEyMTExNjAzNDRaFw0zNzEyMTExNjA5NTFaMIGKMQswCQYD
+VQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEbMBkGA1UECxMSQ29weXJpZ2h0IChjKSAyMDA1MSIw
+IAYDVQQLExlPSVNURSBGb3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5
+IEdsb2JhbCBSb290IEdBIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAy0+zAJs9
+Nt350UlqaxBJH+zYK7LG+DKBKUOVTJoZIyEVRd7jyBxRVVuuk+g3/ytr6dTqvirdqFEr12bDYVxg
+Asj1znJ7O7jyTmUIms2kahnBAbtzptf2w93NvKSLtZlhuAGio9RN1AU9ka34tAhxZK9w8RxrfvbD
+d50kc3vkDIzh2TbhmYsFmQvtRTEJysIA2/dyoJaqlYfQjse2YXMNdmaM3Bu0Y6Kff5MTMPGhJ9vZ
+/yxViJGg4E8HsChWjBgbl0SOid3gF27nKu+POQoxhILYQBRJLnpB5Kf+42TMwVlxSywhp1t94B3R
+LoGbw9ho972WG6xwsRYUC9tguSYBBQIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUw
+AwEB/zAdBgNVHQ4EFgQUswN+rja8sHnR3JQmthG+IbJphpQwEAYJKwYBBAGCNxUBBAMCAQAwDQYJ
+KoZIhvcNAQEFBQADggEBAEuh/wuHbrP5wUOxSPMowB0uyQlB+pQAHKSkq0lPjz0e701vvbyk9vIm
+MMkQyh2I+3QZH4VFvbBsUfk2ftv1TDI6QU9bR8/oCy22xBmddMVHxjtqD6wU2zz0c5ypBd8A3HR4
++vg1YFkCExh8vPtNsCBtQ7tgMHpnM1zFmdH4LTlSc/uMqpclXHLZCB6rTjzjgTGfA6b7wP4piFXa
+hNVQA7bihKOmNqoROgHhGEvWRGizPflTdISzRpFGlgC3gCy24eMQ4tui5yiPAZZiFj4A4xylNoEY
+okxSdsARo27mHbrjWr42U8U+dY+GaSlYU7Wcu2+fXMUY7N0v4ZjJ/L7fCg0=
+-----END CERTIFICATE-----
+
+Microsec e-Szigno Root CA
+=========================
+-----BEGIN CERTIFICATE-----
+MIIHqDCCBpCgAwIBAgIRAMy4579OKRr9otxmpRwsDxEwDQYJKoZIhvcNAQEFBQAwcjELMAkGA1UE
+BhMCSFUxETAPBgNVBAcTCEJ1ZGFwZXN0MRYwFAYDVQQKEw1NaWNyb3NlYyBMdGQuMRQwEgYDVQQL
+EwtlLVN6aWdubyBDQTEiMCAGA1UEAxMZTWljcm9zZWMgZS1Temlnbm8gUm9vdCBDQTAeFw0wNTA0
+MDYxMjI4NDRaFw0xNzA0MDYxMjI4NDRaMHIxCzAJBgNVBAYTAkhVMREwDwYDVQQHEwhCdWRhcGVz
+dDEWMBQGA1UEChMNTWljcm9zZWMgTHRkLjEUMBIGA1UECxMLZS1Temlnbm8gQ0ExIjAgBgNVBAMT
+GU1pY3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB
+AQDtyADVgXvNOABHzNuEwSFpLHSQDCHZU4ftPkNEU6+r+ICbPHiN1I2uuO/TEdyB5s87lozWbxXG
+d36hL+BfkrYn13aaHUM86tnsL+4582pnS4uCzyL4ZVX+LMsvfUh6PXX5qqAnu3jCBspRwn5mS6/N
+oqdNAoI/gqyFxuEPkEeZlApxcpMqyabAvjxWTHOSJ/FrtfX9/DAFYJLG65Z+AZHCabEeHXtTRbjc
+QR/Ji3HWVBTji1R4P770Yjtb9aPs1ZJ04nQw7wHb4dSrmZsqa/i9phyGI0Jf7Enemotb9HI6QMVJ
+PqW+jqpx62z69Rrkav17fVVA71hu5tnVvCSrwe+3AgMBAAGjggQ3MIIEMzBnBggrBgEFBQcBAQRb
+MFkwKAYIKwYBBQUHMAGGHGh0dHBzOi8vcmNhLmUtc3ppZ25vLmh1L29jc3AwLQYIKwYBBQUHMAKG
+IWh0dHA6Ly93d3cuZS1zemlnbm8uaHUvUm9vdENBLmNydDAPBgNVHRMBAf8EBTADAQH/MIIBcwYD
+VR0gBIIBajCCAWYwggFiBgwrBgEEAYGoGAIBAQEwggFQMCgGCCsGAQUFBwIBFhxodHRwOi8vd3d3
+LmUtc3ppZ25vLmh1L1NaU1ovMIIBIgYIKwYBBQUHAgIwggEUHoIBEABBACAAdABhAG4A+gBzAO0A
+dAB2AOEAbgB5ACAA6QByAHQAZQBsAG0AZQB6AOkAcwDpAGgAZQB6ACAA6QBzACAAZQBsAGYAbwBn
+AGEAZADhAHMA4QBoAG8AegAgAGEAIABTAHoAbwBsAGcA4QBsAHQAYQB0APMAIABTAHoAbwBsAGcA
+4QBsAHQAYQB0AOEAcwBpACAAUwB6AGEAYgDhAGwAeQB6AGEAdABhACAAcwB6AGUAcgBpAG4AdAAg
+AGsAZQBsAGwAIABlAGwAagDhAHIAbgBpADoAIABoAHQAdABwADoALwAvAHcAdwB3AC4AZQAtAHMA
+egBpAGcAbgBvAC4AaAB1AC8AUwBaAFMAWgAvMIHIBgNVHR8EgcAwgb0wgbqggbeggbSGIWh0dHA6
+Ly93d3cuZS1zemlnbm8uaHUvUm9vdENBLmNybIaBjmxkYXA6Ly9sZGFwLmUtc3ppZ25vLmh1L0NO
+PU1pY3Jvc2VjJTIwZS1Temlnbm8lMjBSb290JTIwQ0EsT1U9ZS1Temlnbm8lMjBDQSxPPU1pY3Jv
+c2VjJTIwTHRkLixMPUJ1ZGFwZXN0LEM9SFU/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdDtiaW5h
+cnkwDgYDVR0PAQH/BAQDAgEGMIGWBgNVHREEgY4wgYuBEGluZm9AZS1zemlnbm8uaHWkdzB1MSMw
+IQYDVQQDDBpNaWNyb3NlYyBlLVN6aWduw7MgUm9vdCBDQTEWMBQGA1UECwwNZS1TemlnbsOzIEhT
+WjEWMBQGA1UEChMNTWljcm9zZWMgS2Z0LjERMA8GA1UEBxMIQnVkYXBlc3QxCzAJBgNVBAYTAkhV
+MIGsBgNVHSMEgaQwgaGAFMegSXUWYYTbMUuE0vE3QJDvTtz3oXakdDByMQswCQYDVQQGEwJIVTER
+MA8GA1UEBxMIQnVkYXBlc3QxFjAUBgNVBAoTDU1pY3Jvc2VjIEx0ZC4xFDASBgNVBAsTC2UtU3pp
+Z25vIENBMSIwIAYDVQQDExlNaWNyb3NlYyBlLVN6aWdubyBSb290IENBghEAzLjnv04pGv2i3Gal
+HCwPETAdBgNVHQ4EFgQUx6BJdRZhhNsxS4TS8TdAkO9O3PcwDQYJKoZIhvcNAQEFBQADggEBANMT
+nGZjWS7KXHAM/IO8VbH0jgdsZifOwTsgqRy7RlRw7lrMoHfqaEQn6/Ip3Xep1fvj1KcExJW4C+FE
+aGAHQzAxQmHl7tnlJNUb3+FKG6qfx1/4ehHqE5MAyopYse7tDk2016g2JnzgOsHVV4Lxdbb9iV/a
+86g4nzUGCM4ilb7N1fy+W955a9x6qWVmvrElWl/tftOsRm1M9DKHtCAE4Gx4sHfRhUZLphK3dehK
+yVZs15KrnfVJONJPU+NVkBHbmJbGSfI+9J8b4PeI3CVimUTYc78/MPMMNz7UwiiAc7EBt51alhQB
+S6kRnSlqLtBdgcDPsiBDxwPgN05dCtxZICU=
+-----END CERTIFICATE-----
+
+Certigna
+========
+-----BEGIN CERTIFICATE-----
+MIIDqDCCApCgAwIBAgIJAP7c4wEPyUj/MA0GCSqGSIb3DQEBBQUAMDQxCzAJBgNVBAYTAkZSMRIw
+EAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hMB4XDTA3MDYyOTE1MTMwNVoXDTI3
+MDYyOTE1MTMwNVowNDELMAkGA1UEBhMCRlIxEjAQBgNVBAoMCURoaW15b3RpczERMA8GA1UEAwwI
+Q2VydGlnbmEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDIaPHJ1tazNHUmgh7stL7q
+XOEm7RFHYeGifBZ4QCHkYJ5ayGPhxLGWkv8YbWkj4Sti993iNi+RB7lIzw7sebYs5zRLcAglozyH
+GxnygQcPOJAZ0xH+hrTy0V4eHpbNgGzOOzGTtvKg0KmVEn2lmsxryIRWijOp5yIVUxbwzBfsV1/p
+ogqYCd7jX5xv3EjjhQsVWqa6n6xI4wmy9/Qy3l40vhx4XUJbzg4ij02Q130yGLMLLGq/jj8UEYkg
+DncUtT2UCIf3JR7VsmAA7G8qKCVuKj4YYxclPz5EIBb2JsglrgVKtOdjLPOMFlN+XPsRGgjBRmKf
+Irjxwo1p3Po6WAbfAgMBAAGjgbwwgbkwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUGu3+QTmQ
+tCRZvgHyUtVF9lo53BEwZAYDVR0jBF0wW4AUGu3+QTmQtCRZvgHyUtVF9lo53BGhOKQ2MDQxCzAJ
+BgNVBAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hggkA/tzjAQ/J
+SP8wDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzANBgkqhkiG9w0BAQUFAAOCAQEA
+hQMeknH2Qq/ho2Ge6/PAD/Kl1NqV5ta+aDY9fm4fTIrv0Q8hbV6lUmPOEvjvKtpv6zf+EwLHyzs+
+ImvaYS5/1HI93TDhHkxAGYwP15zRgzB7mFncfca5DClMoTOi62c6ZYTTluLtdkVwj7Ur3vkj1klu
+PBS1xp81HlDQwY9qcEQCYsuuHWhBp6pX6FOqB9IG9tUUBguRA3UsbHK1YZWaDYu5Def131TN3ubY
+1gkIl2PlwS6wt0QmwCbAr1UwnjvVNioZBPRcHv/PLLf/0P2HQBHVESO7SMAhqaQoLf0V+LBOK/Qw
+WyH8EZE0vkHve52Xdf+XlcCWWC/qu0bXu+TZLg==
+-----END CERTIFICATE-----
+
+TC TrustCenter Class 2 CA II
+============================
+-----BEGIN CERTIFICATE-----
+MIIEqjCCA5KgAwIBAgIOLmoAAQACH9dSISwRXDswDQYJKoZIhvcNAQEFBQAwdjELMAkGA1UEBhMC
+REUxHDAaBgNVBAoTE1RDIFRydXN0Q2VudGVyIEdtYkgxIjAgBgNVBAsTGVRDIFRydXN0Q2VudGVy
+IENsYXNzIDIgQ0ExJTAjBgNVBAMTHFRDIFRydXN0Q2VudGVyIENsYXNzIDIgQ0EgSUkwHhcNMDYw
+MTEyMTQzODQzWhcNMjUxMjMxMjI1OTU5WjB2MQswCQYDVQQGEwJERTEcMBoGA1UEChMTVEMgVHJ1
+c3RDZW50ZXIgR21iSDEiMCAGA1UECxMZVEMgVHJ1c3RDZW50ZXIgQ2xhc3MgMiBDQTElMCMGA1UE
+AxMcVEMgVHJ1c3RDZW50ZXIgQ2xhc3MgMiBDQSBJSTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC
+AQoCggEBAKuAh5uO8MN8h9foJIIRszzdQ2Lu+MNF2ujhoF/RKrLqk2jftMjWQ+nEdVl//OEd+DFw
+IxuInie5e/060smp6RQvkL4DUsFJzfb95AhmC1eKokKguNV/aVyQMrKXDcpK3EY+AlWJU+MaWss2
+xgdW94zPEfRMuzBwBJWl9jmM/XOBCH2JXjIeIqkiRUuwZi4wzJ9l/fzLganx4Duvo4bRierERXlQ
+Xa7pIXSSTYtZgo+U4+lK8edJsBTj9WLL1XK9H7nSn6DNqPoByNkN39r8R52zyFTfSUrxIan+GE7u
+SNQZu+995OKdy1u2bv/jzVrndIIFuoAlOMvkaZ6vQaoahPUCAwEAAaOCATQwggEwMA8GA1UdEwEB
+/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTjq1RMgKHbVkO3kUrL84J6E1wIqzCB
+7QYDVR0fBIHlMIHiMIHfoIHcoIHZhjVodHRwOi8vd3d3LnRydXN0Y2VudGVyLmRlL2NybC92Mi90
+Y19jbGFzc18yX2NhX0lJLmNybIaBn2xkYXA6Ly93d3cudHJ1c3RjZW50ZXIuZGUvQ049VEMlMjBU
+cnVzdENlbnRlciUyMENsYXNzJTIwMiUyMENBJTIwSUksTz1UQyUyMFRydXN0Q2VudGVyJTIwR21i
+SCxPVT1yb290Y2VydHMsREM9dHJ1c3RjZW50ZXIsREM9ZGU/Y2VydGlmaWNhdGVSZXZvY2F0aW9u
+TGlzdD9iYXNlPzANBgkqhkiG9w0BAQUFAAOCAQEAjNfffu4bgBCzg/XbEeprS6iSGNn3Bzn1LL4G
+dXpoUxUc6krtXvwjshOg0wn/9vYua0Fxec3ibf2uWWuFHbhOIprtZjluS5TmVfwLG4t3wVMTZonZ
+KNaL80VKY7f9ewthXbhtvsPcW3nS7Yblok2+XnR8au0WOB9/WIFaGusyiC2y8zl3gK9etmF1Kdsj
+TYjKUCjLhdLTEKJZbtOTVAB6okaVhgWcqRmY5TFyDADiZ9lA4CQze28suVyrZZ0srHbqNZn1l7kP
+JOzHdiEoZa5X6AeIdUpWoNIFOqTmjZKILPPy4cHGYdtBxceb9w4aUUXCYWvcZCcXjFq32nQozZfk
+vQ==
+-----END CERTIFICATE-----
+
+TC TrustCenter Universal CA I
+=============================
+-----BEGIN CERTIFICATE-----
+MIID3TCCAsWgAwIBAgIOHaIAAQAC7LdggHiNtgYwDQYJKoZIhvcNAQEFBQAweTELMAkGA1UEBhMC
+REUxHDAaBgNVBAoTE1RDIFRydXN0Q2VudGVyIEdtYkgxJDAiBgNVBAsTG1RDIFRydXN0Q2VudGVy
+IFVuaXZlcnNhbCBDQTEmMCQGA1UEAxMdVEMgVHJ1c3RDZW50ZXIgVW5pdmVyc2FsIENBIEkwHhcN
+MDYwMzIyMTU1NDI4WhcNMjUxMjMxMjI1OTU5WjB5MQswCQYDVQQGEwJERTEcMBoGA1UEChMTVEMg
+VHJ1c3RDZW50ZXIgR21iSDEkMCIGA1UECxMbVEMgVHJ1c3RDZW50ZXIgVW5pdmVyc2FsIENBMSYw
+JAYDVQQDEx1UQyBUcnVzdENlbnRlciBVbml2ZXJzYWwgQ0EgSTCCASIwDQYJKoZIhvcNAQEBBQAD
+ggEPADCCAQoCggEBAKR3I5ZEr5D0MacQ9CaHnPM42Q9e3s9B6DGtxnSRJJZ4Hgmgm5qVSkr1YnwC
+qMqs+1oEdjneX/H5s7/zA1hV0qq34wQi0fiU2iIIAI3TfCZdzHd55yx4Oagmcw6iXSVphU9VDprv
+xrlE4Vc93x9UIuVvZaozhDrzznq+VZeujRIPFDPiUHDDSYcTvFHe15gSWu86gzOSBnWLknwSaHtw
+ag+1m7Z3W0hZneTvWq3zwZ7U10VOylY0Ibw+F1tvdwxIAUMpsN0/lm7mlaoMwCC2/T42J5zjXM9O
+gdwZu5GQfezmlwQek8wiSdeXhrYTCjxDI3d+8NzmzSQfO4ObNDqDNOMCAwEAAaNjMGEwHwYDVR0j
+BBgwFoAUkqR1LKSevoFE63n8isWVpesQdXMwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC
+AYYwHQYDVR0OBBYEFJKkdSyknr6BROt5/IrFlaXrEHVzMA0GCSqGSIb3DQEBBQUAA4IBAQAo0uCG
+1eb4e/CX3CJrO5UUVg8RMKWaTzqwOuAGy2X17caXJ/4l8lfmXpWMPmRgFVp/Lw0BxbFg/UU1z/Cy
+vwbZ71q+s2IhtNerNXxTPqYn8aEt2hojnczd7Dwtnic0XQ/CNnm8yUpiLe1r2X1BQ3y2qsrtYbE3
+ghUJGooWMNjsydZHcnhLEEYUjl8Or+zHL6sQ17bxbuyGssLoDZJz3KL0Dzq/YSMQiZxIQG5wALPT
+ujdEWBF6AmqI8Dc08BnprNRlc/ZpjGSUOnmFKbAWKwyCPwacx/0QK54PLLae4xW/2TYcuiUaUj0a
+7CIMHOCkoj3w6DnPgcB77V0fb8XQC9eY
+-----END CERTIFICATE-----
+
+Deutsche Telekom Root CA 2
+==========================
+-----BEGIN CERTIFICATE-----
+MIIDnzCCAoegAwIBAgIBJjANBgkqhkiG9w0BAQUFADBxMQswCQYDVQQGEwJERTEcMBoGA1UEChMT
+RGV1dHNjaGUgVGVsZWtvbSBBRzEfMB0GA1UECxMWVC1UZWxlU2VjIFRydXN0IENlbnRlcjEjMCEG
+A1UEAxMaRGV1dHNjaGUgVGVsZWtvbSBSb290IENBIDIwHhcNOTkwNzA5MTIxMTAwWhcNMTkwNzA5
+MjM1OTAwWjBxMQswCQYDVQQGEwJERTEcMBoGA1UEChMTRGV1dHNjaGUgVGVsZWtvbSBBRzEfMB0G
+A1UECxMWVC1UZWxlU2VjIFRydXN0IENlbnRlcjEjMCEGA1UEAxMaRGV1dHNjaGUgVGVsZWtvbSBS
+b290IENBIDIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCrC6M14IspFLEUha88EOQ5
+bzVdSq7d6mGNlUn0b2SjGmBmpKlAIoTZ1KXleJMOaAGtuU1cOs7TuKhCQN/Po7qCWWqSG6wcmtoI
+KyUn+WkjR/Hg6yx6m/UTAtB+NHzCnjwAWav12gz1MjwrrFDa1sPeg5TKqAyZMg4ISFZbavva4VhY
+AUlfckE8FQYBjl2tqriTtM2e66foai1SNNs671x1Udrb8zH57nGYMsRUFUQM+ZtV7a3fGAigo4aK
+Se5TBY8ZTNXeWHmb0mocQqvF1afPaA+W5OFhmHZhyJF81j4A4pFQh+GdCuatl9Idxjp9y7zaAzTV
+jlsB9WoHtxa2bkp/AgMBAAGjQjBAMB0GA1UdDgQWBBQxw3kbuvVT1xfgiXotF2wKsyudMzAPBgNV
+HRMECDAGAQH/AgEFMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOCAQEAlGRZrTlk5ynr
+E/5aw4sTV8gEJPB0d8Bg42f76Ymmg7+Wgnxu1MM9756AbrsptJh6sTtU6zkXR34ajgv8HzFZMQSy
+zhfzLMdiNlXiItiJVbSYSKpk+tYcNthEeFpaIzpXl/V6ME+un2pMSyuOoAPjPuCp1NJ70rOo4nI8
+rZ7/gFnkm0W09juwzTkZmDLl6iFhkOQxIY40sfcvNUqFENrnijchvllj4PKFiDFT1FQUhXB59C4G
+dyd1Lx+4ivn+xbrYNuSD7Odlt79jWvNGr4GUN9RBjNYj1h7P9WgbRGOiWrqnNVmh5XAFmw4jV5mU
+Cm26OWMohpLzGITY+9HPBVZkVw==
+-----END CERTIFICATE-----
+
+ComSign Secured CA
+==================
+-----BEGIN CERTIFICATE-----
+MIIDqzCCApOgAwIBAgIRAMcoRwmzuGxFjB36JPU2TukwDQYJKoZIhvcNAQEFBQAwPDEbMBkGA1UE
+AxMSQ29tU2lnbiBTZWN1cmVkIENBMRAwDgYDVQQKEwdDb21TaWduMQswCQYDVQQGEwJJTDAeFw0w
+NDAzMjQxMTM3MjBaFw0yOTAzMTYxNTA0NTZaMDwxGzAZBgNVBAMTEkNvbVNpZ24gU2VjdXJlZCBD
+QTEQMA4GA1UEChMHQ29tU2lnbjELMAkGA1UEBhMCSUwwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAw
+ggEKAoIBAQDGtWhfHZQVw6QIVS3joFd67+l0Kru5fFdJGhFeTymHDEjWaueP1H5XJLkGieQcPOqs
+49ohgHMhCu95mGwfCP+hUH3ymBvJVG8+pSjsIQQPRbsHPaHA+iqYHU4Gk/v1iDurX8sWv+bznkqH
+7Rnqwp9D5PGBpX8QTz7RSmKtUxvLg/8HZaWSLWapW7ha9B20IZFKF3ueMv5WJDmyVIRD9YTC2LxB
+kMyd1mja6YJQqTtoz7VdApRgFrFD2UNd3V2Hbuq7s8lr9gOUCXDeFhF6K+h2j0kQmHe5Y1yLM5d1
+9guMsqtb3nQgJT/j8xH5h2iGNXHDHYwt6+UarA9z1YJZQIDTAgMBAAGjgacwgaQwDAYDVR0TBAUw
+AwEB/zBEBgNVHR8EPTA7MDmgN6A1hjNodHRwOi8vZmVkaXIuY29tc2lnbi5jby5pbC9jcmwvQ29t
+U2lnblNlY3VyZWRDQS5jcmwwDgYDVR0PAQH/BAQDAgGGMB8GA1UdIwQYMBaAFMFL7XC29z58ADsA
+j8c+DkWfHl3sMB0GA1UdDgQWBBTBS+1wtvc+fAA7AI/HPg5Fnx5d7DANBgkqhkiG9w0BAQUFAAOC
+AQEAFs/ukhNQq3sUnjO2QiBq1BW9Cav8cujvR3qQrFHBZE7piL1DRYHjZiM/EoZNGeQFsOY3wo3a
+BijJD4mkU6l1P7CW+6tMM1X5eCZGbxs2mPtCdsGCuY7e+0X5YxtiOzkGynd6qDwJz2w2PQ8KRUtp
+FhpFfTMDZflScZAmlaxMDPWLkz/MdXSFmLr/YnpNH4n+rr2UAJm/EaXc4HnFFgt9AmEd6oX5AhVP
+51qJThRv4zdLhfXBPGHg/QVBspJ/wx2g0K5SZGBrGMYmnNj1ZOQ2GmKfig8+/21OGVZOIJFsnzQz
+OjRXUDpvgV4GxvU+fE6OK85lBi5d0ipTdF7Tbieejw==
+-----END CERTIFICATE-----
+
+Cybertrust Global Root
+======================
+-----BEGIN CERTIFICATE-----
+MIIDoTCCAomgAwIBAgILBAAAAAABD4WqLUgwDQYJKoZIhvcNAQEFBQAwOzEYMBYGA1UEChMPQ3li
+ZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2JhbCBSb290MB4XDTA2MTIxNTA4
+MDAwMFoXDTIxMTIxNTA4MDAwMFowOzEYMBYGA1UEChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQD
+ExZDeWJlcnRydXN0IEdsb2JhbCBSb290MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA
++Mi8vRRQZhP/8NN57CPytxrHjoXxEnOmGaoQ25yiZXRadz5RfVb23CO21O1fWLE3TdVJDm71aofW
+0ozSJ8bi/zafmGWgE07GKmSb1ZASzxQG9Dvj1Ci+6A74q05IlG2OlTEQXO2iLb3VOm2yHLtgwEZL
+AfVJrn5GitB0jaEMAs7u/OePuGtm839EAL9mJRQr3RAwHQeWP032a7iPt3sMpTjr3kfb1V05/Iin
+89cqdPHoWqI7n1C6poxFNcJQZZXcY4Lv3b93TZxiyWNzFtApD0mpSPCzqrdsxacwOUBdrsTiXSZT
+8M4cIwhhqJQZugRiQOwfOHB3EgZxpzAYXSUnpQIDAQABo4GlMIGiMA4GA1UdDwEB/wQEAwIBBjAP
+BgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBS2CHsNesysIEyGVjJez6tuhS1wVzA/BgNVHR8EODA2
+MDSgMqAwhi5odHRwOi8vd3d3Mi5wdWJsaWMtdHJ1c3QuY29tL2NybC9jdC9jdHJvb3QuY3JsMB8G
+A1UdIwQYMBaAFLYIew16zKwgTIZWMl7Pq26FLXBXMA0GCSqGSIb3DQEBBQUAA4IBAQBW7wojoFRO
+lZfJ+InaRcHUowAl9B8Tq7ejhVhpwjCt2BWKLePJzYFa+HMjWqd8BfP9IjsO0QbE2zZMcwSO5bAi
+5MXzLqXZI+O4Tkogp24CJJ8iYGd7ix1yCcUxXOl5n4BHPa2hCwcUPUf/A2kaDAtE52Mlp3+yybh2
+hO0j9n0Hq0V+09+zv+mKts2oomcrUtW3ZfA5TGOgkXmTUg9U3YO7n9GPp1Nzw8v/MOx8BLjYRB+T
+X3EJIrduPuocA06dGiBh+4E37F78CkWr1+cXVdCg6mCbpvbjjFspwgZgFJ0tl0ypkxWdYcQBX0jW
+WL1WMRJOEcgh4LMRkWXbtKaIOM5V
+-----END CERTIFICATE-----
+
+ePKI Root Certification Authority
+=================================
+-----BEGIN CERTIFICATE-----
+MIIFsDCCA5igAwIBAgIQFci9ZUdcr7iXAF7kBtK8nTANBgkqhkiG9w0BAQUFADBeMQswCQYDVQQG
+EwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0ZC4xKjAoBgNVBAsMIWVQS0kg
+Um9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNDEyMjAwMjMxMjdaFw0zNDEyMjAwMjMx
+MjdaMF4xCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEq
+MCgGA1UECwwhZVBLSSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0B
+AQEFAAOCAg8AMIICCgKCAgEA4SUP7o3biDN1Z82tH306Tm2d0y8U82N0ywEhajfqhFAHSyZbCUNs
+IZ5qyNUD9WBpj8zwIuQf5/dqIjG3LBXy4P4AakP/h2XGtRrBp0xtInAhijHyl3SJCRImHJ7K2RKi
+lTza6We/CKBk49ZCt0Xvl/T29de1ShUCWH2YWEtgvM3XDZoTM1PRYfl61dd4s5oz9wCGzh1NlDiv
+qOx4UXCKXBCDUSH3ET00hl7lSM2XgYI1TBnsZfZrxQWh7kcT1rMhJ5QQCtkkO7q+RBNGMD+XPNjX
+12ruOzjjK9SXDrkb5wdJfzcq+Xd4z1TtW0ado4AOkUPB1ltfFLqfpo0kR0BZv3I4sjZsN/+Z0V0O
+WQqraffAsgRFelQArr5T9rXn4fg8ozHSqf4hUmTFpmfwdQcGlBSBVcYn5AGPF8Fqcde+S/uUWH1+
+ETOxQvdibBjWzwloPn9s9h6PYq2lY9sJpx8iQkEeb5mKPtf5P0B6ebClAZLSnT0IFaUQAS2zMnao
+lQ2zepr7BxB4EW/hj8e6DyUadCrlHJhBmd8hh+iVBmoKs2pHdmX2Os+PYhcZewoozRrSgx4hxyy/
+vv9haLdnG7t4TY3OZ+XkwY63I2binZB1NJipNiuKmpS5nezMirH4JYlcWrYvjB9teSSnUmjDhDXi
+Zo1jDiVN1Rmy5nk3pyKdVDECAwEAAaNqMGgwHQYDVR0OBBYEFB4M97Zn8uGSJglFwFU5Lnc/Qkqi
+MAwGA1UdEwQFMAMBAf8wOQYEZyoHAAQxMC8wLQIBADAJBgUrDgMCGgUAMAcGBWcqAwAABBRFsMLH
+ClZ87lt4DJX5GFPBphzYEDANBgkqhkiG9w0BAQUFAAOCAgEACbODU1kBPpVJufGBuvl2ICO1J2B0
+1GqZNF5sAFPZn/KmsSQHRGoqxqWOeBLoR9lYGxMqXnmbnwoqZ6YlPwZpVnPDimZI+ymBV3QGypzq
+KOg4ZyYr8dW1P2WT+DZdjo2NQCCHGervJ8A9tDkPJXtoUHRVnAxZfVo9QZQlUgjgRywVMRnVvwdV
+xrsStZf0X4OFunHB2WyBEXYKCrC/gpf36j36+uwtqSiUO1bd0lEursC9CBWMd1I0ltabrNMdjmEP
+NXubrjlpC2JgQCA2j6/7Nu4tCEoduL+bXPjqpRugc6bY+G7gMwRfaKonh+3ZwZCc7b3jajWvY9+r
+GNm65ulK6lCKD2GTHuItGeIwlDWSXQ62B68ZgI9HkFFLLk3dheLSClIKF5r8GrBQAuUBo2M3IUxE
+xJtRmREOc5wGj1QupyheRDmHVi03vYVElOEMSyycw5KFNGHLD7ibSkNS/jQ6fbjpKdx2qcgw+BRx
+gMYeNkh0IkFch4LoGHGLQYlE535YW6i4jRPpp2zDR+2zGp1iro2C6pSe3VkQw63d4k3jMdXH7Ojy
+sP6SHhYKGvzZ8/gntsm+HbRsZJB/9OTEW9c3rkIO3aQab3yIVMUWbuF6aC74Or8NpDyJO3inTmOD
+BCEIZ43ygknQW/2xzQ+DhNQ+IIX3Sj0rnP0qCglN6oH4EZw=
+-----END CERTIFICATE-----
+
+T\xc3\x9c\x42\xC4\xB0TAK UEKAE K\xC3\xB6k Sertifika Hizmet Sa\xC4\x9Flay\xc4\xb1\x63\xc4\xb1s\xc4\xb1 - S\xC3\xBCr\xC3\xBCm 3
+=============================================================================================================================
+-----BEGIN CERTIFICATE-----
+MIIFFzCCA/+gAwIBAgIBETANBgkqhkiG9w0BAQUFADCCASsxCzAJBgNVBAYTAlRSMRgwFgYDVQQH
+DA9HZWJ6ZSAtIEtvY2FlbGkxRzBFBgNVBAoMPlTDvHJraXllIEJpbGltc2VsIHZlIFRla25vbG9q
+aWsgQXJhxZ90xLFybWEgS3VydW11IC0gVMOcQsSwVEFLMUgwRgYDVQQLDD9VbHVzYWwgRWxla3Ry
+b25payB2ZSBLcmlwdG9sb2ppIEFyYcWfdMSxcm1hIEVuc3RpdMO8c8O8IC0gVUVLQUUxIzAhBgNV
+BAsMGkthbXUgU2VydGlmaWthc3lvbiBNZXJrZXppMUowSAYDVQQDDEFUw5xCxLBUQUsgVUVLQUUg
+S8O2ayBTZXJ0aWZpa2EgSGl6bWV0IFNhxJ9sYXnEsWPEsXPEsSAtIFPDvHLDvG0gMzAeFw0wNzA4
+MjQxMTM3MDdaFw0xNzA4MjExMTM3MDdaMIIBKzELMAkGA1UEBhMCVFIxGDAWBgNVBAcMD0dlYnpl
+IC0gS29jYWVsaTFHMEUGA1UECgw+VMO8cmtpeWUgQmlsaW1zZWwgdmUgVGVrbm9sb2ppayBBcmHF
+n3TEsXJtYSBLdXJ1bXUgLSBUw5xCxLBUQUsxSDBGBgNVBAsMP1VsdXNhbCBFbGVrdHJvbmlrIHZl
+IEtyaXB0b2xvamkgQXJhxZ90xLFybWEgRW5zdGl0w7xzw7wgLSBVRUtBRTEjMCEGA1UECwwaS2Ft
+dSBTZXJ0aWZpa2FzeW9uIE1lcmtlemkxSjBIBgNVBAMMQVTDnELEsFRBSyBVRUtBRSBLw7ZrIFNl
+cnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxIC0gU8O8csO8bSAzMIIBIjANBgkqhkiG9w0B
+AQEFAAOCAQ8AMIIBCgKCAQEAim1L/xCIOsP2fpTo6iBkcK4hgb46ezzb8R1Sf1n68yJMlaCQvEhO
+Eav7t7WNeoMojCZG2E6VQIdhn8WebYGHV2yKO7Rm6sxA/OOqbLLLAdsyv9Lrhc+hDVXDWzhXcLh1
+xnnRFDDtG1hba+818qEhTsXOfJlfbLm4IpNQp81McGq+agV/E5wrHur+R84EpW+sky58K5+eeROR
+6Oqeyjh1jmKwlZMq5d/pXpduIF9fhHpEORlAHLpVK/swsoHvhOPc7Jg4OQOFCKlUAwUp8MmPi+oL
+hmUZEdPpCSPeaJMDyTYcIW7OjGbxmTDY17PDHfiBLqi9ggtm/oLL4eAagsNAgQIDAQABo0IwQDAd
+BgNVHQ4EFgQUvYiHyY/2pAoLquvF/pEjnatKijIwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF
+MAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAB18+kmPNOm3JpIWmgV050vQbTlswyb2zrgxvMTfvCr4
+N5EY3ATIZJkrGG2AA1nJrvhY0D7twyOfaTyGOBye79oneNGEN3GKPEs5z35FBtYt2IpNeBLWrcLT
+y9LQQfMmNkqblWwM7uXRQydmwYj3erMgbOqwaSvHIOgMA8RBBZniP+Rr+KCGgceExh/VS4ESshYh
+LBOhgLJeDEoTniDYYkCrkOpkSi+sDQESeUWoL4cZaMjihccwsnX5OD+ywJO0a+IDRM5noN+J1q2M
+dqMTw5RhK2vZbMEHCiIHhWyFJEapvj+LeISCfiQMnf2BN+MlqO02TpUsyZyQ2uypQjyttgI=
+-----END CERTIFICATE-----
+
+Buypass Class 2 CA 1
+====================
+-----BEGIN CERTIFICATE-----
+MIIDUzCCAjugAwIBAgIBATANBgkqhkiG9w0BAQUFADBLMQswCQYDVQQGEwJOTzEdMBsGA1UECgwU
+QnV5cGFzcyBBUy05ODMxNjMzMjcxHTAbBgNVBAMMFEJ1eXBhc3MgQ2xhc3MgMiBDQSAxMB4XDTA2
+MTAxMzEwMjUwOVoXDTE2MTAxMzEwMjUwOVowSzELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBh
+c3MgQVMtOTgzMTYzMzI3MR0wGwYDVQQDDBRCdXlwYXNzIENsYXNzIDIgQ0EgMTCCASIwDQYJKoZI
+hvcNAQEBBQADggEPADCCAQoCggEBAIs8B0XY9t/mx8q6jUPFR42wWsE425KEHK8T1A9vNkYgxC7M
+cXA0ojTTNy7Y3Tp3L8DrKehc0rWpkTSHIln+zNvnma+WwajHQN2lFYxuyHyXA8vmIPLXl18xoS83
+0r7uvqmtqEyeIWZDO6i88wmjONVZJMHCR3axiFyCO7srpgTXjAePzdVBHfCuuCkslFJgNJQ72uA4
+0Z0zPhX0kzLFANq1KWYOOngPIVJfAuWSeyXTkh4vFZ2B5J2O6O+JzhRMVB0cgRJNcKi+EAUXfh/R
+uFdV7c27UsKwHnjCTTZoy1YmwVLBvXb3WNVyfh9EdrsAiR0WnVE1703CVu9r4Iw7DekCAwEAAaNC
+MEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUP42aWYv8e3uco684sDntkHGA1sgwDgYDVR0P
+AQH/BAQDAgEGMA0GCSqGSIb3DQEBBQUAA4IBAQAVGn4TirnoB6NLJzKyQJHyIdFkhb5jatLPgcIV
+1Xp+DCmsNx4cfHZSldq1fyOhKXdlyTKdqC5Wq2B2zha0jX94wNWZUYN/Xtm+DKhQ7SLHrQVMdvvt
+7h5HZPb3J31cKA9FxVxiXqaakZG3Uxcu3K1gnZZkOb1naLKuBctN518fV4bVIJwo+28TOPX2EZL2
+fZleHwzoq0QkKXJAPTZSr4xYkHPB7GEseaHsh7U/2k3ZIQAw3pDaDtMaSKk+hQsUi4y8QZ5q9w5w
+wDX3OaJdZtB7WZ+oRxKaJyOkLY4ng5IgodcVf/EuGO70SH8vf/GhGLWhC5SgYiAynB321O+/TIho
+-----END CERTIFICATE-----
+
+Buypass Class 3 CA 1
+====================
+-----BEGIN CERTIFICATE-----
+MIIDUzCCAjugAwIBAgIBAjANBgkqhkiG9w0BAQUFADBLMQswCQYDVQQGEwJOTzEdMBsGA1UECgwU
+QnV5cGFzcyBBUy05ODMxNjMzMjcxHTAbBgNVBAMMFEJ1eXBhc3MgQ2xhc3MgMyBDQSAxMB4XDTA1
+MDUwOTE0MTMwM1oXDTE1MDUwOTE0MTMwM1owSzELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBh
+c3MgQVMtOTgzMTYzMzI3MR0wGwYDVQQDDBRCdXlwYXNzIENsYXNzIDMgQ0EgMTCCASIwDQYJKoZI
+hvcNAQEBBQADggEPADCCAQoCggEBAKSO13TZKWTeXx+HgJHqTjnmGcZEC4DVC69TB4sSveZn8AKx
+ifZgisRbsELRwCGoy+Gb72RRtqfPFfV0gGgEkKBYouZ0plNTVUhjP5JW3SROjvi6K//zNIqeKNc0
+n6wv1g/xpC+9UrJJhW05NfBEMJNGJPO251P7vGGvqaMU+8IXF4Rs4HyI+MkcVyzwPX6UvCWThOia
+AJpFBUJXgPROztmuOfbIUxAMZTpHe2DC1vqRycZxbL2RhzyRhkmr8w+gbCZ2Xhysm3HljbybIR6c
+1jh+JIAVMYKWsUnTYjdbiAwKYjT+p0h+mbEwi5A3lRyoH6UsjfRVyNvdWQrCrXig9IsCAwEAAaNC
+MEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUOBTmyPCppAP0Tj4io1vy1uCtQHQwDgYDVR0P
+AQH/BAQDAgEGMA0GCSqGSIb3DQEBBQUAA4IBAQABZ6OMySU9E2NdFm/soT4JXJEVKirZgCFPBdy7
+pYmrEzMqnji3jG8CcmPHc3ceCQa6Oyh7pEfJYWsICCD8igWKH7y6xsL+z27sEzNxZy5p+qksP2bA
+EllNC1QCkoS72xLvg3BweMhT+t/Gxv/ciC8HwEmdMldg0/L2mSlf56oBzKwzqBwKu5HEA6BvtjT5
+htOzdlSY9EqBs1OdTUDs5XcTRa9bqh/YL0yCe/4qxFi7T/ye/QNlGioOw6UgFpRreaaiErS7GqQj
+el/wroQk5PMr+4okoyeYZdowdXb8GZHo2+ubPzK/QJcHJrrM85SFSnonk8+QQtS4Wxam58tAA915
+-----END CERTIFICATE-----
+
+EBG Elektronik Sertifika Hizmet Sa\xC4\x9Flay\xc4\xb1\x63\xc4\xb1s\xc4\xb1
+==========================================================================
+-----BEGIN CERTIFICATE-----
+MIIF5zCCA8+gAwIBAgIITK9zQhyOdAIwDQYJKoZIhvcNAQEFBQAwgYAxODA2BgNVBAMML0VCRyBF
+bGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxMTcwNQYDVQQKDC5FQkcg
+QmlsacWfaW0gVGVrbm9sb2ppbGVyaSB2ZSBIaXptZXRsZXJpIEEuxZ4uMQswCQYDVQQGEwJUUjAe
+Fw0wNjA4MTcwMDIxMDlaFw0xNjA4MTQwMDMxMDlaMIGAMTgwNgYDVQQDDC9FQkcgRWxla3Ryb25p
+ayBTZXJ0aWZpa2EgSGl6bWV0IFNhxJ9sYXnEsWPEsXPEsTE3MDUGA1UECgwuRUJHIEJpbGnFn2lt
+IFRla25vbG9qaWxlcmkgdmUgSGl6bWV0bGVyaSBBLsWeLjELMAkGA1UEBhMCVFIwggIiMA0GCSqG
+SIb3DQEBAQUAA4ICDwAwggIKAoICAQDuoIRh0DpqZhAy2DE4f6en5f2h4fuXd7hxlugTlkaDT7by
+X3JWbhNgpQGR4lvFzVcfd2NR/y8927k/qqk153nQ9dAktiHq6yOU/im/+4mRDGSaBUorzAzu8T2b
+gmmkTPiab+ci2hC6X5L8GCcKqKpE+i4stPtGmggDg3KriORqcsnlZR9uKg+ds+g75AxuetpX/dfr
+eYteIAbTdgtsApWjluTLdlHRKJ2hGvxEok3MenaoDT2/F08iiFD9rrbskFBKW5+VQarKD7JK/oCZ
+TqNGFav4c0JqwmZ2sQomFd2TkuzbqV9UIlKRcF0T6kjsbgNs2d1s/OsNA/+mgxKb8amTD8UmTDGy
+Y5lhcucqZJnSuOl14nypqZoaqsNW2xCaPINStnuWt6yHd6i58mcLlEOzrz5z+kI2sSXFCjEmN1Zn
+uqMLfdb3ic1nobc6HmZP9qBVFCVMLDMNpkGMvQQxahByCp0OLna9XvNRiYuoP1Vzv9s6xiQFlpJI
+qkuNKgPlV5EQ9GooFW5Hd4RcUXSfGenmHmMWOeMRFeNYGkS9y8RsZteEBt8w9DeiQyJ50hBs37vm
+ExH8nYQKE3vwO9D8owrXieqWfo1IhR5kX9tUoqzVegJ5a9KK8GfaZXINFHDk6Y54jzJ0fFfy1tb0
+Nokb+Clsi7n2l9GkLqq+CxnCRelwXQIDAJ3Zo2MwYTAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB
+/wQEAwIBBjAdBgNVHQ4EFgQU587GT/wWZ5b6SqMHwQSny2re2kcwHwYDVR0jBBgwFoAU587GT/wW
+Z5b6SqMHwQSny2re2kcwDQYJKoZIhvcNAQEFBQADggIBAJuYml2+8ygjdsZs93/mQJ7ANtyVDR2t
+FcU22NU57/IeIl6zgrRdu0waypIN30ckHrMk2pGI6YNw3ZPX6bqz3xZaPt7gyPvT/Wwp+BVGoGgm
+zJNSroIBk5DKd8pNSe/iWtkqvTDOTLKBtjDOWU/aWR1qeqRFsIImgYZ29fUQALjuswnoT4cCB64k
+XPBfrAowzIpAoHMEwfuJJPaaHFy3PApnNgUIMbOv2AFoKuB4j3TeuFGkjGwgPaL7s9QJ/XvCgKqT
+bCmYIai7FvOpEl90tYeY8pUm3zTvilORiF0alKM/fCL414i6poyWqD1SNGKfAB5UVUJnxk1Gj7sU
+RT0KlhaOEKGXmdXTMIXM3rRyt7yKPBgpaP3ccQfuJDlq+u2lrDgv+R4QDgZxGhBM/nV+/x5XOULK
+1+EVoVZVWRvRo68R2E7DpSvvkL/A7IITW43WciyTTo9qKd+FPNMN4KIYEsxVL0e3p5sC/kH2iExt
+2qkBR4NkJ2IQgtYSe14DHzSpyZH+r11thie3I6p1GMog57AP14kOpmciY/SDQSsGS7tY1dHXt7kQ
+Y9iJSrSq3RZj9W6+YKH47ejWkE8axsWgKdOnIaj1Wjz3x0miIZpKlVIglnKaZsv30oZDfCK+lvm9
+AahH3eU7QPl1K5srRmSGjR70j/sHd9DqSaIcjVIUpgqT
+-----END CERTIFICATE-----
+
+certSIGN ROOT CA
+================
+-----BEGIN CERTIFICATE-----
+MIIDODCCAiCgAwIBAgIGIAYFFnACMA0GCSqGSIb3DQEBBQUAMDsxCzAJBgNVBAYTAlJPMREwDwYD
+VQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBDQTAeFw0wNjA3MDQxNzIwMDRa
+Fw0zMTA3MDQxNzIwMDRaMDsxCzAJBgNVBAYTAlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UE
+CxMQY2VydFNJR04gUk9PVCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALczuX7I
+JUqOtdu0KBuqV5Do0SLTZLrTk+jUrIZhQGpgV2hUhE28alQCBf/fm5oqrl0Hj0rDKH/v+yv6efHH
+rfAQUySQi2bJqIirr1qjAOm+ukbuW3N7LBeCgV5iLKECZbO9xSsAfsT8AzNXDe3i+s5dRdY4zTW2
+ssHQnIFKquSyAVwdj1+ZxLGt24gh65AIgoDzMKND5pCCrlUoSe1b16kQOA7+j0xbm0bqQfWwCHTD
+0IgztnzXdN/chNFDDnU5oSVAKOp4yw4sLjmdjItuFhwvJoIQ4uNllAoEwF73XVv4EOLQunpL+943
+AAAaWyjj0pxzPjKHmKHJUS/X3qwzs08CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8B
+Af8EBAMCAcYwHQYDVR0OBBYEFOCMm9slSbPxfIbWskKHC9BroNnkMA0GCSqGSIb3DQEBBQUAA4IB
+AQA+0hyJLjX8+HXd5n9liPRyTMks1zJO890ZeUe9jjtbkw9QSSQTaxQGcu8J06Gh40CEyecYMnQ8
+SG4Pn0vU9x7Tk4ZkVJdjclDVVc/6IJMCopvDI5NOFlV2oHB5bc0hH88vLbwZ44gx+FkagQnIl6Z0
+x2DEW8xXjrJ1/RsCCdtZb3KTafcxQdaIOL+Hsr0Wefmq5L6IJd1hJyMctTEHBDa0GpC9oHRxUIlt
+vBTjD4au8as+x6AJzKNI0eDbZOeStc+vckNwi/nDhDwTqn6Sm1dTk/pwwpEOMfmbZ13pljheX7Nz
+TogVZ96edhBiIL5VaZVDADlN9u6wWk5JRFRYX0KD
+-----END CERTIFICATE-----
+
+CNNIC ROOT
+==========
+-----BEGIN CERTIFICATE-----
+MIIDVTCCAj2gAwIBAgIESTMAATANBgkqhkiG9w0BAQUFADAyMQswCQYDVQQGEwJDTjEOMAwGA1UE
+ChMFQ05OSUMxEzARBgNVBAMTCkNOTklDIFJPT1QwHhcNMDcwNDE2MDcwOTE0WhcNMjcwNDE2MDcw
+OTE0WjAyMQswCQYDVQQGEwJDTjEOMAwGA1UEChMFQ05OSUMxEzARBgNVBAMTCkNOTklDIFJPT1Qw
+ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDTNfc/c3et6FtzF8LRb+1VvG7q6KR5smzD
+o+/hn7E7SIX1mlwhIhAsxYLO2uOabjfhhyzcuQxauohV3/2q2x8x6gHx3zkBwRP9SFIhxFXf2tiz
+VHa6dLG3fdfA6PZZxU3Iva0fFNrfWEQlMhkqx35+jq44sDB7R3IJMfAw28Mbdim7aXZOV/kbZKKT
+VrdvmW7bCgScEeOAH8tjlBAKqeFkgjH5jCftppkA9nCTGPihNIaj3XrCGHn2emU1z5DrvTOTn1Or
+czvmmzQgLx3vqR1jGqCA2wMv+SYahtKNu6m+UjqHZ0gNv7Sg2Ca+I19zN38m5pIEo3/PIKe38zrK
+y5nLAgMBAAGjczBxMBEGCWCGSAGG+EIBAQQEAwIABzAfBgNVHSMEGDAWgBRl8jGtKvf33VKWCscC
+wQ7vptU7ETAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQEAwIB/jAdBgNVHQ4EFgQUZfIxrSr3991S
+lgrHAsEO76bVOxEwDQYJKoZIhvcNAQEFBQADggEBAEs17szkrr/Dbq2flTtLP1se31cpolnKOOK5
+Gv+e5m4y3R6u6jW39ZORTtpC4cMXYFDy0VwmuYK36m3knITnA3kXr5g9lNvHugDnuL8BV8F3RTIM
+O/G0HAiw/VGgod2aHRM2mm23xzy54cXZF/qD1T0VoDy7HgviyJA/qIYM/PmLXoXLT1tLYhFHxUV8
+BS9BsZ4QaRuZluBVeftOhpm4lNqGOGqTo+fLbuXf6iFViZx9fX+Y9QCJ7uOEwFyWtcVG6kbghVW2
+G8kS1sHNzYDzAgE8yGnLRUhj2JTQ7IUOO04RZfSCjKY9ri4ilAnIXOo8gV0WKgOXFlUJ24pBgp5m
+mxE=
+-----END CERTIFICATE-----
+
+ApplicationCA - Japanese Government
+===================================
+-----BEGIN CERTIFICATE-----
+MIIDoDCCAoigAwIBAgIBMTANBgkqhkiG9w0BAQUFADBDMQswCQYDVQQGEwJKUDEcMBoGA1UEChMT
+SmFwYW5lc2UgR292ZXJubWVudDEWMBQGA1UECxMNQXBwbGljYXRpb25DQTAeFw0wNzEyMTIxNTAw
+MDBaFw0xNzEyMTIxNTAwMDBaMEMxCzAJBgNVBAYTAkpQMRwwGgYDVQQKExNKYXBhbmVzZSBHb3Zl
+cm5tZW50MRYwFAYDVQQLEw1BcHBsaWNhdGlvbkNBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB
+CgKCAQEAp23gdE6Hj6UG3mii24aZS2QNcfAKBZuOquHMLtJqO8F6tJdhjYq+xpqcBrSGUeQ3DnR4
+fl+Kf5Sk10cI/VBaVuRorChzoHvpfxiSQE8tnfWuREhzNgaeZCw7NCPbXCbkcXmP1G55IrmTwcrN
+wVbtiGrXoDkhBFcsovW8R0FPXjQilbUfKW1eSvNNcr5BViCH/OlQR9cwFO5cjFW6WY2H/CPek9AE
+jP3vbb3QesmlOmpyM8ZKDQUXKi17safY1vC+9D/qDihtQWEjdnjDuGWk81quzMKq2edY3rZ+nYVu
+nyoKb58DKTCXKB28t89UKU5RMfkntigm/qJj5kEW8DOYRwIDAQABo4GeMIGbMB0GA1UdDgQWBBRU
+WssmP3HMlEYNllPqa0jQk/5CdTAOBgNVHQ8BAf8EBAMCAQYwWQYDVR0RBFIwUKROMEwxCzAJBgNV
+BAYTAkpQMRgwFgYDVQQKDA/ml6XmnKzlm73mlL/lupwxIzAhBgNVBAsMGuOCouODl+ODquOCseOD
+vOOCt+ODp+ODs0NBMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBADlqRHZ3ODrs
+o2dGD/mLBqj7apAxzn7s2tGJfHrrLgy9mTLnsCTWw//1sogJhyzjVOGjprIIC8CFqMjSnHH2HZ9g
+/DgzE+Ge3Atf2hZQKXsvcJEPmbo0NI2VdMV+eKlmXb3KIXdCEKxmJj3ekav9FfBv7WxfEPjzFvYD
+io+nEhEMy/0/ecGc/WLuo89UDNErXxc+4z6/wCs+CZv+iKZ+tJIX/COUgb1up8WMwusRRdv4QcmW
+dupwX3kSa+SjB1oF7ydJzyGfikwJcGapJsErEU4z0g781mzSDjJkaP+tBXhfAx2o45CsJOAPQKdL
+rosot4LKGAfmt1t06SAZf7IbiVQ=
+-----END CERTIFICATE-----
+
+GeoTrust Primary Certification Authority - G3
+=============================================
+-----BEGIN CERTIFICATE-----
+MIID/jCCAuagAwIBAgIQFaxulBmyeUtB9iepwxgPHzANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UE
+BhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsTMChjKSAyMDA4IEdlb1RydXN0
+IEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTE2MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFy
+eSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEczMB4XDTA4MDQwMjAwMDAwMFoXDTM3MTIwMTIz
+NTk1OVowgZgxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAo
+YykgMjAwOCBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0BgNVBAMT
+LUdlb1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMzCCASIwDQYJKoZI
+hvcNAQEBBQADggEPADCCAQoCggEBANziXmJYHTNXOTIz+uvLh4yn1ErdBojqZI4xmKU4kB6Yzy5j
+K/BGvESyiaHAKAxJcCGVn2TAppMSAmUmhsalifD614SgcK9PGpc/BkTVyetyEH3kMSj7HGHmKAdE
+c5IiaacDiGydY8hS2pgn5whMcD60yRLBxWeDXTPzAxHsatBT4tG6NmCUgLthY2xbF37fQJQeqw3C
+IShwiP/WJmxsYAQlTlV+fe+/lEjetx3dcI0FX4ilm/LC7urRQEFtYjgdVgbFA0dRIBn8exALDmKu
+dlW/X3e+PkkBUz2YJQN2JFodtNuJ6nnltrM7P7pMKEF/BqxqjsHQ9gUdfeZChuOl1UcCAwEAAaNC
+MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFMR5yo6hTgMdHNxr
+2zFblD4/MH8tMA0GCSqGSIb3DQEBCwUAA4IBAQAtxRPPVoB7eni9n64smefv2t+UXglpp+duaIy9
+cr5HqQ6XErhK8WTTOd8lNNTBzU6B8A8ExCSzNJbGpqow32hhc9f5joWJ7w5elShKKiePEI4ufIbE
+Ap7aDHdlDkQNkv39sxY2+hENHYwOB4lqKVb3cvTdFZx3NWZXqxNT2I7BQMXXExZacse3aQHEerGD
+AWh9jUGhlBjBJVz88P6DAod8DQ3PLghcSkANPuyBYeYk28rgDi0Hsj5W3I31QYUHSJsMC8tJP33s
+t/3LjWeJGqvtux6jAAgIFyqCXDFdRootD4abdNlF+9RAsXqqaC2Gspki4cErx5z481+oghLrGREt
+-----END CERTIFICATE-----
+
+thawte Primary Root CA - G2
+===========================
+-----BEGIN CERTIFICATE-----
+MIICiDCCAg2gAwIBAgIQNfwmXNmET8k9Jj1Xm67XVjAKBggqhkjOPQQDAzCBhDELMAkGA1UEBhMC
+VVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjE4MDYGA1UECxMvKGMpIDIwMDcgdGhhd3RlLCBJbmMu
+IC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxJDAiBgNVBAMTG3RoYXd0ZSBQcmltYXJ5IFJvb3Qg
+Q0EgLSBHMjAeFw0wNzExMDUwMDAwMDBaFw0zODAxMTgyMzU5NTlaMIGEMQswCQYDVQQGEwJVUzEV
+MBMGA1UEChMMdGhhd3RlLCBJbmMuMTgwNgYDVQQLEy8oYykgMjAwNyB0aGF3dGUsIEluYy4gLSBG
+b3IgYXV0aG9yaXplZCB1c2Ugb25seTEkMCIGA1UEAxMbdGhhd3RlIFByaW1hcnkgUm9vdCBDQSAt
+IEcyMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEotWcgnuVnfFSeIf+iha/BebfowJPDQfGAFG6DAJS
+LSKkQjnE/o/qycG+1E3/n3qe4rF8mq2nhglzh9HnmuN6papu+7qzcMBniKI11KOasf2twu8x+qi5
+8/sIxpHR+ymVo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQU
+mtgAMADna3+FGO6Lts6KDPgR4bswCgYIKoZIzj0EAwMDaQAwZgIxAN344FdHW6fmCsO99YCKlzUN
+G4k8VIZ3KMqh9HneteY4sPBlcIx/AlTCv//YoT7ZzwIxAMSNlPzcU9LcnXgWHxUzI1NS41oxXZ3K
+rr0TKUQNJ1uo52icEvdYPy5yAlejj6EULg==
+-----END CERTIFICATE-----
+
+thawte Primary Root CA - G3
+===========================
+-----BEGIN CERTIFICATE-----
+MIIEKjCCAxKgAwIBAgIQYAGXt0an6rS0mtZLL/eQ+zANBgkqhkiG9w0BAQsFADCBrjELMAkGA1UE
+BhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2
+aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMvKGMpIDIwMDggdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhv
+cml6ZWQgdXNlIG9ubHkxJDAiBgNVBAMTG3RoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EgLSBHMzAeFw0w
+ODA0MDIwMDAwMDBaFw0zNzEyMDEyMzU5NTlaMIGuMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMdGhh
+d3RlLCBJbmMuMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERpdmlzaW9uMTgwNgYD
+VQQLEy8oYykgMjAwOCB0aGF3dGUsIEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTEkMCIG
+A1UEAxMbdGhhd3RlIFByaW1hcnkgUm9vdCBDQSAtIEczMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A
+MIIBCgKCAQEAsr8nLPvb2FvdeHsbnndmgcs+vHyu86YnmjSjaDFxODNi5PNxZnmxqWWjpYvVj2At
+P0LMqmsywCPLLEHd5N/8YZzic7IilRFDGF/Eth9XbAoFWCLINkw6fKXRz4aviKdEAhN0cXMKQlkC
++BsUa0Lfb1+6a4KinVvnSr0eAXLbS3ToO39/fR8EtCab4LRarEc9VbjXsCZSKAExQGbY2SS99irY
+7CFJXJv2eul/VTV+lmuNk5Mny5K76qxAwJ/C+IDPXfRa3M50hqY+bAtTyr2SzhkGcuYMXDhpxwTW
+vGzOW/b3aJzcJRVIiKHpqfiYnODz1TEoYRFsZ5aNOZnLwkUkOQIDAQABo0IwQDAPBgNVHRMBAf8E
+BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUrWyqlGCc7eT/+j4KdCtjA/e2Wb8wDQYJ
+KoZIhvcNAQELBQADggEBABpA2JVlrAmSicY59BDlqQ5mU1143vokkbvnRFHfxhY0Cu9qRFHqKweK
+A3rD6z8KLFIWoCtDuSWQP3CpMyVtRRooOyfPqsMpQhvfO0zAMzRbQYi/aytlryjvsvXDqmbOe1bu
+t8jLZ8HJnBoYuMTDSQPxYA5QzUbF83d597YV4Djbxy8ooAw/dyZ02SUS2jHaGh7cKUGRIjxpp7sC
+8rZcJwOJ9Abqm+RyguOhCcHpABnTPtRwa7pxpqpYrvS76Wy274fMm7v/OeZWYdMKp8RcTGB7BXcm
+er/YB1IsYvdwY9k5vG8cwnncdimvzsUsZAReiDZuMdRAGmI0Nj81Aa6sY6A=
+-----END CERTIFICATE-----
+
+GeoTrust Primary Certification Authority - G2
+=============================================
+-----BEGIN CERTIFICATE-----
+MIICrjCCAjWgAwIBAgIQPLL0SAoA4v7rJDteYD7DazAKBggqhkjOPQQDAzCBmDELMAkGA1UEBhMC
+VVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsTMChjKSAyMDA3IEdlb1RydXN0IElu
+Yy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTE2MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFyeSBD
+ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEcyMB4XDTA3MTEwNTAwMDAwMFoXDTM4MDExODIzNTk1
+OVowgZgxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAoYykg
+MjAwNyBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0BgNVBAMTLUdl
+b1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMjB2MBAGByqGSM49AgEG
+BSuBBAAiA2IABBWx6P0DFUPlrOuHNxFi79KDNlJ9RVcLSo17VDs6bl8VAsBQps8lL33KSLjHUGMc
+KiEIfJo22Av+0SbFWDEwKCXzXV2juLaltJLtbCyf691DiaI8S0iRHVDsJt/WYC69IaNCMEAwDwYD
+VR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBVfNVdRVfslsq0DafwBo/q+
+EVXVMAoGCCqGSM49BAMDA2cAMGQCMGSWWaboCd6LuvpaiIjwH5HTRqjySkwCY/tsXzjbLkGTqQ7m
+ndwxHLKgpxgceeHHNgIwOlavmnRs9vuD4DPTCF+hnMJbn0bWtsuRBmOiBuczrD6ogRLQy7rQkgu2
+npaqBA+K
+-----END CERTIFICATE-----
+
+VeriSign Universal Root Certification Authority
+===============================================
+-----BEGIN CERTIFICATE-----
+MIIEuTCCA6GgAwIBAgIQQBrEZCGzEyEDDrvkEhrFHTANBgkqhkiG9w0BAQsFADCBvTELMAkGA1UE
+BhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBO
+ZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwOCBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVk
+IHVzZSBvbmx5MTgwNgYDVQQDEy9WZXJpU2lnbiBVbml2ZXJzYWwgUm9vdCBDZXJ0aWZpY2F0aW9u
+IEF1dGhvcml0eTAeFw0wODA0MDIwMDAwMDBaFw0zNzEyMDEyMzU5NTlaMIG9MQswCQYDVQQGEwJV
+UzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdv
+cmsxOjA4BgNVBAsTMShjKSAyMDA4IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl
+IG9ubHkxODA2BgNVBAMTL1ZlcmlTaWduIFVuaXZlcnNhbCBSb290IENlcnRpZmljYXRpb24gQXV0
+aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx2E3XrEBNNti1xWb/1hajCMj
+1mCOkdeQmIN65lgZOIzF9uVkhbSicfvtvbnazU0AtMgtc6XHaXGVHzk8skQHnOgO+k1KxCHfKWGP
+MiJhgsWHH26MfF8WIFFE0XBPV+rjHOPMee5Y2A7Cs0WTwCznmhcrewA3ekEzeOEz4vMQGn+HLL72
+9fdC4uW/h2KJXwBL38Xd5HVEMkE6HnFuacsLdUYI0crSK5XQz/u5QGtkjFdN/BMReYTtXlT2NJ8I
+AfMQJQYXStrxHXpma5hgZqTZ79IugvHw7wnqRMkVauIDbjPTrJ9VAMf2CGqUuV/c4DPxhGD5WycR
+tPwW8rtWaoAljQIDAQABo4GyMIGvMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMG0G
+CCsGAQUFBwEMBGEwX6FdoFswWTBXMFUWCWltYWdlL2dpZjAhMB8wBwYFKw4DAhoEFI/l0xqGrI2O
+a8PPgGrUSBgsexkuMCUWI2h0dHA6Ly9sb2dvLnZlcmlzaWduLmNvbS92c2xvZ28uZ2lmMB0GA1Ud
+DgQWBBS2d/ppSEefUxLVwuoHMnYH0ZcHGTANBgkqhkiG9w0BAQsFAAOCAQEASvj4sAPmLGd75JR3
+Y8xuTPl9Dg3cyLk1uXBPY/ok+myDjEedO2Pzmvl2MpWRsXe8rJq+seQxIcaBlVZaDrHC1LGmWazx
+Y8u4TB1ZkErvkBYoH1quEPuBUDgMbMzxPcP1Y+Oz4yHJJDnp/RVmRvQbEdBNc6N9Rvk97ahfYtTx
+P/jgdFcrGJ2BtMQo2pSXpXDrrB2+BxHw1dvd5Yzw1TKwg+ZX4o+/vqGqvz0dtdQ46tewXDpPaj+P
+wGZsY6rp2aQW9IHRlRQOfc2VNNnSj3BzgXucfr2YYdhFh5iQxeuGMMY1v/D/w1WIg0vvBZIGcfK4
+mJO37M2CYfE45k+XmCpajQ==
+-----END CERTIFICATE-----
+
+VeriSign Class 3 Public Primary Certification Authority - G4
+============================================================
+-----BEGIN CERTIFICATE-----
+MIIDhDCCAwqgAwIBAgIQL4D+I4wOIg9IZxIokYesszAKBggqhkjOPQQDAzCByjELMAkGA1UEBhMC
+VVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3
+b3JrMTowOAYDVQQLEzEoYykgMjAwNyBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVz
+ZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmlj
+YXRpb24gQXV0aG9yaXR5IC0gRzQwHhcNMDcxMTA1MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCByjEL
+MAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBU
+cnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNyBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRo
+b3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5
+IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzQwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAASnVnp8
+Utpkmw4tXNherJI9/gHmGUo9FANL+mAnINmDiWn6VMaaGF5VKmTeBvaNSjutEDxlPZCIBIngMGGz
+rl0Bp3vefLK+ymVhAIau2o970ImtTR1ZmkGxvEeA3J5iw/mjgbIwga8wDwYDVR0TAQH/BAUwAwEB
+/zAOBgNVHQ8BAf8EBAMCAQYwbQYIKwYBBQUHAQwEYTBfoV2gWzBZMFcwVRYJaW1hZ2UvZ2lmMCEw
+HzAHBgUrDgMCGgQUj+XTGoasjY5rw8+AatRIGCx7GS4wJRYjaHR0cDovL2xvZ28udmVyaXNpZ24u
+Y29tL3ZzbG9nby5naWYwHQYDVR0OBBYEFLMWkf3upm7ktS5Jj4d4gYDs5bG1MAoGCCqGSM49BAMD
+A2gAMGUCMGYhDBgmYFo4e1ZC4Kf8NoRRkSAsdk1DPcQdhCPQrNZ8NQbOzWm9kA3bbEhCHQ6qQgIx
+AJw9SDkjOVgaFRJZap7v1VmyHVIsmXHNxynfGyphe3HR3vPA5Q06Sqotp9iGKt0uEA==
+-----END CERTIFICATE-----
+
+NetLock Arany (Class Gold) FÅ‘tanúsítvány
+============================================
+-----BEGIN CERTIFICATE-----
+MIIEFTCCAv2gAwIBAgIGSUEs5AAQMA0GCSqGSIb3DQEBCwUAMIGnMQswCQYDVQQGEwJIVTERMA8G
+A1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610
+dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTE1MDMGA1UEAwwsTmV0TG9jayBB
+cmFueSAoQ2xhc3MgR29sZCkgRsWRdGFuw7pzw610dsOhbnkwHhcNMDgxMjExMTUwODIxWhcNMjgx
+MjA2MTUwODIxWjCBpzELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MRUwEwYDVQQKDAxO
+ZXRMb2NrIEtmdC4xNzA1BgNVBAsMLlRhbsO6c8OtdHbDoW55a2lhZMOzayAoQ2VydGlmaWNhdGlv
+biBTZXJ2aWNlcykxNTAzBgNVBAMMLE5ldExvY2sgQXJhbnkgKENsYXNzIEdvbGQpIEbFkXRhbsO6
+c8OtdHbDoW55MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxCRec75LbRTDofTjl5Bu
+0jBFHjzuZ9lk4BqKf8owyoPjIMHj9DrTlF8afFttvzBPhCf2nx9JvMaZCpDyD/V/Q4Q3Y1GLeqVw
+/HpYzY6b7cNGbIRwXdrzAZAj/E4wqX7hJ2Pn7WQ8oLjJM2P+FpD/sLj916jAwJRDC7bVWaaeVtAk
+H3B5r9s5VA1lddkVQZQBr17s9o3x/61k/iCa11zr/qYfCGSji3ZVrR47KGAuhyXoqq8fxmRGILdw
+fzzeSNuWU7c5d+Qa4scWhHaXWy+7GRWF+GmF9ZmnqfI0p6m2pgP8b4Y9VHx2BJtr+UBdADTHLpl1
+neWIA6pN+APSQnbAGwIDAKiLo0UwQzASBgNVHRMBAf8ECDAGAQH/AgEEMA4GA1UdDwEB/wQEAwIB
+BjAdBgNVHQ4EFgQUzPpnk/C2uNClwB7zU/2MU9+D15YwDQYJKoZIhvcNAQELBQADggEBAKt/7hwW
+qZw8UQCgwBEIBaeZ5m8BiFRhbvG5GK1Krf6BQCOUL/t1fC8oS2IkgYIL9WHxHG64YTjrgfpioTta
+YtOUZcTh5m2C+C8lcLIhJsFyUR+MLMOEkMNaj7rP9KdlpeuY0fsFskZ1FSNqb4VjMIDw1Z4fKRzC
+bLBQWV2QWzuoDTDPv31/zvGdg73JRm4gpvlhUbohL3u+pRVjodSVh/GeufOJ8z2FuLjbvrW5Kfna
+NwUASZQDhETnv0Mxz3WLJdH0pmT1kvarBes96aULNmLazAZfNou2XjG4Kvte9nHfRCaexOYNkbQu
+dZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E=
+-----END CERTIFICATE-----
+
+Staat der Nederlanden Root CA - G2
+==================================
+-----BEGIN CERTIFICATE-----
+MIIFyjCCA7KgAwIBAgIEAJiWjDANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJOTDEeMBwGA1UE
+CgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSswKQYDVQQDDCJTdGFhdCBkZXIgTmVkZXJsYW5kZW4g
+Um9vdCBDQSAtIEcyMB4XDTA4MDMyNjExMTgxN1oXDTIwMDMyNTExMDMxMFowWjELMAkGA1UEBhMC
+TkwxHjAcBgNVBAoMFVN0YWF0IGRlciBOZWRlcmxhbmRlbjErMCkGA1UEAwwiU3RhYXQgZGVyIE5l
+ZGVybGFuZGVuIFJvb3QgQ0EgLSBHMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMVZ
+5291qj5LnLW4rJ4L5PnZyqtdj7U5EILXr1HgO+EASGrP2uEGQxGZqhQlEq0i6ABtQ8SpuOUfiUtn
+vWFI7/3S4GCI5bkYYCjDdyutsDeqN95kWSpGV+RLufg3fNU254DBtvPUZ5uW6M7XxgpT0GtJlvOj
+CwV3SPcl5XCsMBQgJeN/dVrlSPhOewMHBPqCYYdu8DvEpMfQ9XQ+pV0aCPKbJdL2rAQmPlU6Yiil
+e7Iwr/g3wtG61jj99O9JMDeZJiFIhQGp5Rbn3JBV3w/oOM2ZNyFPXfUib2rFEhZgF1XyZWampzCR
+OME4HYYEhLoaJXhena/MUGDWE4dS7WMfbWV9whUYdMrhfmQpjHLYFhN9C0lK8SgbIHRrxT3dsKpI
+CT0ugpTNGmXZK4iambwYfp/ufWZ8Pr2UuIHOzZgweMFvZ9C+X+Bo7d7iscksWXiSqt8rYGPy5V65
+48r6f1CGPqI0GAwJaCgRHOThuVw+R7oyPxjMW4T182t0xHJ04eOLoEq9jWYv6q012iDTiIJh8BIi
+trzQ1aTsr1SIJSQ8p22xcik/Plemf1WvbibG/ufMQFxRRIEKeN5KzlW/HdXZt1bv8Hb/C3m1r737
+qWmRRpdogBQ2HbN/uymYNqUg+oJgYjOk7Na6B6duxc8UpufWkjTYgfX8HV2qXB72o007uPc5AgMB
+AAGjgZcwgZQwDwYDVR0TAQH/BAUwAwEB/zBSBgNVHSAESzBJMEcGBFUdIAAwPzA9BggrBgEFBQcC
+ARYxaHR0cDovL3d3dy5wa2lvdmVyaGVpZC5ubC9wb2xpY2llcy9yb290LXBvbGljeS1HMjAOBgNV
+HQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJFoMocVHYnitfGsNig0jQt8YojrMA0GCSqGSIb3DQEBCwUA
+A4ICAQCoQUpnKpKBglBu4dfYszk78wIVCVBR7y29JHuIhjv5tLySCZa59sCrI2AGeYwRTlHSeYAz
++51IvuxBQ4EffkdAHOV6CMqqi3WtFMTC6GY8ggen5ieCWxjmD27ZUD6KQhgpxrRW/FYQoAUXvQwj
+f/ST7ZwaUb7dRUG/kSS0H4zpX897IZmflZ85OkYcbPnNe5yQzSipx6lVu6xiNGI1E0sUOlWDuYaN
+kqbG9AclVMwWVxJKgnjIFNkXgiYtXSAfea7+1HAWFpWD2DU5/1JddRwWxRNVz0fMdWVSSt7wsKfk
+CpYL+63C4iWEst3kvX5ZbJvw8NjnyvLplzh+ib7M+zkXYT9y2zqR2GUBGR2tUKRXCnxLvJxxcypF
+URmFzI79R6d0lR2o0a9OF7FpJsKqeFdbxU2n5Z4FF5TKsl+gSRiNNOkmbEgeqmiSBeGCc1qb3Adb
+CG19ndeNIdn8FCCqwkXfP+cAslHkwvgFuXkajDTznlvkN1trSt8sV4pAWja63XVECDdCcAz+3F4h
+oKOKwJCcaNpQ5kUQR3i2TtJlycM33+FCY7BXN0Ute4qcvwXqZVUz9zkQxSgqIXobisQk+T8VyJoV
+IPVVYpbtbZNQvOSqeK3Zywplh6ZmwcSBo3c6WB4L7oOLnR7SUqTMHW+wmG2UMbX4cQrcufx9MmDm
+66+KAQ==
+-----END CERTIFICATE-----
+
+CA Disig
+========
+-----BEGIN CERTIFICATE-----
+MIIEDzCCAvegAwIBAgIBATANBgkqhkiG9w0BAQUFADBKMQswCQYDVQQGEwJTSzETMBEGA1UEBxMK
+QnJhdGlzbGF2YTETMBEGA1UEChMKRGlzaWcgYS5zLjERMA8GA1UEAxMIQ0EgRGlzaWcwHhcNMDYw
+MzIyMDEzOTM0WhcNMTYwMzIyMDEzOTM0WjBKMQswCQYDVQQGEwJTSzETMBEGA1UEBxMKQnJhdGlz
+bGF2YTETMBEGA1UEChMKRGlzaWcgYS5zLjERMA8GA1UEAxMIQ0EgRGlzaWcwggEiMA0GCSqGSIb3
+DQEBAQUAA4IBDwAwggEKAoIBAQCS9jHBfYj9mQGp2HvycXXxMcbzdWb6UShGhJd4NLxs/LxFWYgm
+GErENx+hSkS943EE9UQX4j/8SFhvXJ56CbpRNyIjZkMhsDxkovhqFQ4/61HhVKndBpnXmjxUizkD
+Pw/Fzsbrg3ICqB9x8y34dQjbYkzo+s7552oftms1grrijxaSfQUMbEYDXcDtab86wYqg6I7ZuUUo
+hwjstMoVvoLdtUSLLa2GDGhibYVW8qwUYzrG0ZmsNHhWS8+2rT+MitcE5eN4TPWGqvWP+j1scaMt
+ymfraHtuM6kMgiioTGohQBUgDCZbg8KpFhXAJIJdKxatymP2dACw30PEEGBWZ2NFAgMBAAGjgf8w
+gfwwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUjbJJaJ1yCCW5wCf1UJNWSEZx+Y8wDgYDVR0P
+AQH/BAQDAgEGMDYGA1UdEQQvMC2BE2Nhb3BlcmF0b3JAZGlzaWcuc2uGFmh0dHA6Ly93d3cuZGlz
+aWcuc2svY2EwZgYDVR0fBF8wXTAtoCugKYYnaHR0cDovL3d3dy5kaXNpZy5zay9jYS9jcmwvY2Ff
+ZGlzaWcuY3JsMCygKqAohiZodHRwOi8vY2EuZGlzaWcuc2svY2EvY3JsL2NhX2Rpc2lnLmNybDAa
+BgNVHSAEEzARMA8GDSuBHpGT5goAAAABAQEwDQYJKoZIhvcNAQEFBQADggEBAF00dGFMrzvY/59t
+WDYcPQuBDRIrRhCA/ec8J9B6yKm2fnQwM6M6int0wHl5QpNt/7EpFIKrIYwvF/k/Ji/1WcbvgAa3
+mkkp7M5+cTxqEEHA9tOasnxakZzArFvITV734VP/Q3f8nktnbNfzg9Gg4H8l37iYC5oyOGwwoPP/
+CBUz91BKez6jPiCp3C9WgArtQVCwyfTssuMmRAAOb54GvCKWU3BlxFAKRmukLyeBEicTXxChds6K
+ezfqwzlhA5WYOudsiCUI/HloDYd9Yvi0X/vF2Ey9WLw/Q1vUHgFNPGO+I++MzVpQuGhU+QqZMxEA
+4Z7CRneC9VkGjCFMhwnN5ag=
+-----END CERTIFICATE-----
+
+Juur-SK
+=======
+-----BEGIN CERTIFICATE-----
+MIIE5jCCA86gAwIBAgIEO45L/DANBgkqhkiG9w0BAQUFADBdMRgwFgYJKoZIhvcNAQkBFglwa2lA
+c2suZWUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRAw
+DgYDVQQDEwdKdXVyLVNLMB4XDTAxMDgzMDE0MjMwMVoXDTE2MDgyNjE0MjMwMVowXTEYMBYGCSqG
+SIb3DQEJARYJcGtpQHNrLmVlMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVy
+aW1pc2tlc2t1czEQMA4GA1UEAxMHSnV1ci1TSzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC
+ggEBAIFxNj4zB9bjMI0TfncyRsvPGbJgMUaXhvSYRqTCZUXP00B841oiqBB4M8yIsdOBSvZiF3tf
+TQou0M+LI+5PAk676w7KvRhj6IAcjeEcjT3g/1tf6mTll+g/mX8MCgkzABpTpyHhOEvWgxutr2TC
++Rx6jGZITWYfGAriPrsfB2WThbkasLnE+w0R9vXW+RvHLCu3GFH+4Hv2qEivbDtPL+/40UceJlfw
+UR0zlv/vWT3aTdEVNMfqPxZIe5EcgEMPPbgFPtGzlc3Yyg/CQ2fbt5PgIoIuvvVoKIO5wTtpeyDa
+Tpxt4brNj3pssAki14sL2xzVWiZbDcDq5WDQn/413z8CAwEAAaOCAawwggGoMA8GA1UdEwEB/wQF
+MAMBAf8wggEWBgNVHSAEggENMIIBCTCCAQUGCisGAQQBzh8BAQEwgfYwgdAGCCsGAQUFBwICMIHD
+HoHAAFMAZQBlACAAcwBlAHIAdABpAGYAaQBrAGEAYQB0ACAAbwBuACAAdgDkAGwAagBhAHMAdABh
+AHQAdQBkACAAQQBTAC0AaQBzACAAUwBlAHIAdABpAGYAaQB0AHMAZQBlAHIAaQBtAGkAcwBrAGUA
+cwBrAHUAcwAgAGEAbABhAG0ALQBTAEsAIABzAGUAcgB0AGkAZgBpAGsAYQBhAHQAaQBkAGUAIABr
+AGkAbgBuAGkAdABhAG0AaQBzAGUAawBzMCEGCCsGAQUFBwIBFhVodHRwOi8vd3d3LnNrLmVlL2Nw
+cy8wKwYDVR0fBCQwIjAgoB6gHIYaaHR0cDovL3d3dy5zay5lZS9qdXVyL2NybC8wHQYDVR0OBBYE
+FASqekej5ImvGs8KQKcYP2/v6X2+MB8GA1UdIwQYMBaAFASqekej5ImvGs8KQKcYP2/v6X2+MA4G
+A1UdDwEB/wQEAwIB5jANBgkqhkiG9w0BAQUFAAOCAQEAe8EYlFOiCfP+JmeaUOTDBS8rNXiRTHyo
+ERF5TElZrMj3hWVcRrs7EKACr81Ptcw2Kuxd/u+gkcm2k298gFTsxwhwDY77guwqYHhpNjbRxZyL
+abVAyJRld/JXIWY7zoVAtjNjGr95HvxcHdMdkxuLDF2FvZkwMhgJkVLpfKG6/2SSmuz+Ne6ML678
+IIbsSt4beDI3poHSna9aEhbKmVv8b20OxaAehsmR0FyYgl9jDIpaq9iVpszLita/ZEuOyoqysOkh
+Mp6qqIWYNIE5ITuoOlIyPfZrN4YGWhWY3PARZv40ILcD9EEQfTmEeZZyY7aWAuVrua0ZTbvGRNs2
+yyqcjg==
+-----END CERTIFICATE-----
+
+Hongkong Post Root CA 1
+=======================
+-----BEGIN CERTIFICATE-----
+MIIDMDCCAhigAwIBAgICA+gwDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UEBhMCSEsxFjAUBgNVBAoT
+DUhvbmdrb25nIFBvc3QxIDAeBgNVBAMTF0hvbmdrb25nIFBvc3QgUm9vdCBDQSAxMB4XDTAzMDUx
+NTA1MTMxNFoXDTIzMDUxNTA0NTIyOVowRzELMAkGA1UEBhMCSEsxFjAUBgNVBAoTDUhvbmdrb25n
+IFBvc3QxIDAeBgNVBAMTF0hvbmdrb25nIFBvc3QgUm9vdCBDQSAxMIIBIjANBgkqhkiG9w0BAQEF
+AAOCAQ8AMIIBCgKCAQEArP84tulmAknjorThkPlAj3n54r15/gK97iSSHSL22oVyaf7XPwnU3ZG1
+ApzQjVrhVcNQhrkpJsLj2aDxaQMoIIBFIi1WpztUlVYiWR8o3x8gPW2iNr4joLFutbEnPzlTCeqr
+auh0ssJlXI6/fMN4hM2eFvz1Lk8gKgifd/PFHsSaUmYeSF7jEAaPIpjhZY4bXSNmO7ilMlHIhqqh
+qZ5/dpTCpmy3QfDVyAY45tQM4vM7TG1QjMSDJ8EThFk9nnV0ttgCXjqQesBCNnLsak3c78QA3xMY
+V18meMjWCnl3v/evt3a5pQuEF10Q6m/hq5URX208o1xNg1vysxmKgIsLhwIDAQABoyYwJDASBgNV
+HRMBAf8ECDAGAQH/AgEDMA4GA1UdDwEB/wQEAwIBxjANBgkqhkiG9w0BAQUFAAOCAQEADkbVPK7i
+h9legYsCmEEIjEy82tvuJxuC52pF7BaLT4Wg87JwvVqWuspube5Gi27nKi6Wsxkz67SfqLI37pio
+l7Yutmcn1KZJ/RyTZXaeQi/cImyaT/JaFTmxcdcrUehtHJjA2Sr0oYJ71clBoiMBdDhViw+5Lmei
+IAQ32pwL0xch4I+XeTRvhEgCIDMb5jREn5Fw9IBehEPCKdJsEhTkYY2sEJCehFC78JZvRZ+K88ps
+T/oROhUVRsPNH4NbLUES7VBnQRM9IauUiqpOfMGx+6fWtScvl6tu4B3i0RwsH0Ti/L6RoZz71ilT
+c4afU9hDDl3WY4JxHYB0yvbiAmvZWg==
+-----END CERTIFICATE-----
+
+SecureSign RootCA11
+===================
+-----BEGIN CERTIFICATE-----
+MIIDbTCCAlWgAwIBAgIBATANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQGEwJKUDErMCkGA1UEChMi
+SmFwYW4gQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcywgSW5jLjEcMBoGA1UEAxMTU2VjdXJlU2lnbiBS
+b290Q0ExMTAeFw0wOTA0MDgwNDU2NDdaFw0yOTA0MDgwNDU2NDdaMFgxCzAJBgNVBAYTAkpQMSsw
+KQYDVQQKEyJKYXBhbiBDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzLCBJbmMuMRwwGgYDVQQDExNTZWN1
+cmVTaWduIFJvb3RDQTExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/XeqpRyQBTvL
+TJszi1oURaTnkBbR31fSIRCkF/3frNYfp+TbfPfs37gD2pRY/V1yfIw/XwFndBWW4wI8h9uuywGO
+wvNmxoVF9ALGOrVisq/6nL+k5tSAMJjzDbaTj6nU2DbysPyKyiyhFTOVMdrAG/LuYpmGYz+/3ZMq
+g6h2uRMft85OQoWPIucuGvKVCbIFtUROd6EgvanyTgp9UK31BQ1FT0Zx/Sg+U/sE2C3XZR1KG/rP
+O7AxmjVuyIsG0wCR8pQIZUyxNAYAeoni8McDWc/V1uinMrPmmECGxc0nEovMe863ETxiYAcjPitA
+bpSACW22s293bzUIUPsCh8U+iQIDAQABo0IwQDAdBgNVHQ4EFgQUW/hNT7KlhtQ60vFjmqC+CfZX
+t94wDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAKCh
+OBZmLqdWHyGcBvod7bkixTgm2E5P7KN/ed5GIaGHd48HCJqypMWvDzKYC3xmKbabfSVSSUOrTC4r
+bnpwrxYO4wJs+0LmGJ1F2FXI6Dvd5+H0LgscNFxsWEr7jIhQX5Ucv+2rIrVls4W6ng+4reV6G4pQ
+Oh29Dbx7VFALuUKvVaAYga1lme++5Jy/xIWrQbJUb9wlze144o4MjQlJ3WN7WmmWAiGovVJZ6X01
+y8hSyn+B/tlr0/cR7SXf+Of5pPpyl4RTDaXQMhhRdlkUbA/r7F+AjHVDg8OFmP9Mni0N5HeDk061
+lgeLKBObjBmNQSdJQO7e5iNEOdyhIta6A/I=
+-----END CERTIFICATE-----
+
+ACEDICOM Root
+=============
+-----BEGIN CERTIFICATE-----
+MIIFtTCCA52gAwIBAgIIYY3HhjsBggUwDQYJKoZIhvcNAQEFBQAwRDEWMBQGA1UEAwwNQUNFRElD
+T00gUm9vdDEMMAoGA1UECwwDUEtJMQ8wDQYDVQQKDAZFRElDT00xCzAJBgNVBAYTAkVTMB4XDTA4
+MDQxODE2MjQyMloXDTI4MDQxMzE2MjQyMlowRDEWMBQGA1UEAwwNQUNFRElDT00gUm9vdDEMMAoG
+A1UECwwDUEtJMQ8wDQYDVQQKDAZFRElDT00xCzAJBgNVBAYTAkVTMIICIjANBgkqhkiG9w0BAQEF
+AAOCAg8AMIICCgKCAgEA/5KV4WgGdrQsyFhIyv2AVClVYyT/kGWbEHV7w2rbYgIB8hiGtXxaOLHk
+WLn709gtn70yN78sFW2+tfQh0hOR2QetAQXW8713zl9CgQr5auODAKgrLlUTY4HKRxx7XBZXehuD
+YAQ6PmXDzQHe3qTWDLqO3tkE7hdWIpuPY/1NFgu3e3eM+SW10W2ZEi5PGrjm6gSSrj0RuVFCPYew
+MYWveVqc/udOXpJPQ/yrOq2lEiZmueIM15jO1FillUAKt0SdE3QrwqXrIhWYENiLxQSfHY9g5QYb
+m8+5eaA9oiM/Qj9r+hwDezCNzmzAv+YbX79nuIQZ1RXve8uQNjFiybwCq0Zfm/4aaJQ0PZCOrfbk
+HQl/Sog4P75n/TSW9R28MHTLOO7VbKvU/PQAtwBbhTIWdjPp2KOZnQUAqhbm84F9b32qhm2tFXTT
+xKJxqvQUfecyuB+81fFOvW8XAjnXDpVCOscAPukmYxHqC9FK/xidstd7LzrZlvvoHpKuE1XI2Sf2
+3EgbsCTBheN3nZqk8wwRHQ3ItBTutYJXCb8gWH8vIiPYcMt5bMlL8qkqyPyHK9caUPgn6C9D4zq9
+2Fdx/c6mUlv53U3t5fZvie27k5x2IXXwkkwp9y+cAS7+UEaeZAwUswdbxcJzbPEHXEUkFDWug/Fq
+TYl6+rPYLWbwNof1K1MCAwEAAaOBqjCBpzAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKaz
+4SsrSbbXc6GqlPUB53NlTKxQMA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUprPhKytJttdzoaqU
+9QHnc2VMrFAwRAYDVR0gBD0wOzA5BgRVHSAAMDEwLwYIKwYBBQUHAgEWI2h0dHA6Ly9hY2VkaWNv
+bS5lZGljb21ncm91cC5jb20vZG9jMA0GCSqGSIb3DQEBBQUAA4ICAQDOLAtSUWImfQwng4/F9tqg
+aHtPkl7qpHMyEVNEskTLnewPeUKzEKbHDZ3Ltvo/Onzqv4hTGzz3gvoFNTPhNahXwOf9jU8/kzJP
+eGYDdwdY6ZXIfj7QeQCM8htRM5u8lOk6e25SLTKeI6RF+7YuE7CLGLHdztUdp0J/Vb77W7tH1Pwk
+zQSulgUV1qzOMPPKC8W64iLgpq0i5ALudBF/TP94HTXa5gI06xgSYXcGCRZj6hitoocf8seACQl1
+ThCojz2GuHURwCRiipZ7SkXp7FnFvmuD5uHorLUwHv4FB4D54SMNUI8FmP8sX+g7tq3PgbUhh8oI
+KiMnMCArz+2UW6yyetLHKKGKC5tNSixthT8Jcjxn4tncB7rrZXtaAWPWkFtPF2Y9fwsZo5NjEFIq
+nxQWWOLcpfShFosOkYuByptZ+thrkQdlVV9SH686+5DdaaVbnG0OLLb6zqylfDJKZ0DcMDQj3dcE
+I2bw/FWAp/tmGYI1Z2JwOV5vx+qQQEQIHriy1tvuWacNGHk0vFQYXlPKNFHtRQrmjseCNj6nOGOp
+MCwXEGCSn1WHElkQwg9naRHMTh5+Spqtr0CodaxWkHS4oJyleW/c6RrIaQXpuvoDs3zk4E7Czp3o
+tkYNbn5XOmeUwssfnHdKZ05phkOTOPu220+DkdRgfks+KzgHVZhepA==
+-----END CERTIFICATE-----
+
+Microsec e-Szigno Root CA 2009
+==============================
+-----BEGIN CERTIFICATE-----
+MIIECjCCAvKgAwIBAgIJAMJ+QwRORz8ZMA0GCSqGSIb3DQEBCwUAMIGCMQswCQYDVQQGEwJIVTER
+MA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jv
+c2VjIGUtU3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5o
+dTAeFw0wOTA2MTYxMTMwMThaFw0yOTEyMzAxMTMwMThaMIGCMQswCQYDVQQGEwJIVTERMA8GA1UE
+BwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUt
+U3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odTCCASIw
+DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOn4j/NjrdqG2KfgQvvPkd6mJviZpWNwrZuuyjNA
+fW2WbqEORO7hE52UQlKavXWFdCyoDh2Tthi3jCyoz/tccbna7P7ofo/kLx2yqHWH2Leh5TvPmUpG
+0IMZfcChEhyVbUr02MelTTMuhTlAdX4UfIASmFDHQWe4oIBhVKZsTh/gnQ4H6cm6M+f+wFUoLAKA
+pxn1ntxVUwOXewdI/5n7N4okxFnMUBBjjqqpGrCEGob5X7uxUG6k0QrM1XF+H6cbfPVTbiJfyyvm
+1HxdrtbCxkzlBQHZ7Vf8wSN5/PrIJIOV87VqUQHQd9bpEqH5GoP7ghu5sJf0dgYzQ0mg/wu1+rUC
+AwEAAaOBgDB+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTLD8bf
+QkPMPcu1SCOhGnqmKrs0aDAfBgNVHSMEGDAWgBTLD8bfQkPMPcu1SCOhGnqmKrs0aDAbBgNVHREE
+FDASgRBpbmZvQGUtc3ppZ25vLmh1MA0GCSqGSIb3DQEBCwUAA4IBAQDJ0Q5eLtXMs3w+y/w9/w0o
+lZMEyL/azXm4Q5DwpL7v8u8hmLzU1F0G9u5C7DBsoKqpyvGvivo/C3NqPuouQH4frlRheesuCDfX
+I/OMn74dseGkddug4lQUsbocKaQY9hK6ohQU4zE1yED/t+AFdlfBHFny+L/k7SViXITwfn4fs775
+tyERzAMBVnCnEJIeGzSBHq2cGsMEPO0CYdYeBvNfOofyK/FFh+U9rNHHV4S9a67c2Pm2G2JwCz02
+yULyMtd6YebS2z3PyKnJm9zbWETXbzivf3jTo60adbocwTZ8jx5tHMN1Rq41Bab2XD0h7lbwyYIi
+LXpUq3DDfSJlgnCW
+-----END CERTIFICATE-----
+
+GlobalSign Root CA - R3
+=======================
+-----BEGIN CERTIFICATE-----
+MIIDXzCCAkegAwIBAgILBAAAAAABIVhTCKIwDQYJKoZIhvcNAQELBQAwTDEgMB4GA1UECxMXR2xv
+YmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2Jh
+bFNpZ24wHhcNMDkwMzE4MTAwMDAwWhcNMjkwMzE4MTAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxT
+aWduIFJvb3QgQ0EgLSBSMzETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2ln
+bjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMwldpB5BngiFvXAg7aEyiie/QV2EcWt
+iHL8RgJDx7KKnQRfJMsuS+FggkbhUqsMgUdwbN1k0ev1LKMPgj0MK66X17YUhhB5uzsTgHeMCOFJ
+0mpiLx9e+pZo34knlTifBtc+ycsmWQ1z3rDI6SYOgxXG71uL0gRgykmmKPZpO/bLyCiR5Z2KYVc3
+rHQU3HTgOu5yLy6c+9C7v/U9AOEGM+iCK65TpjoWc4zdQQ4gOsC0p6Hpsk+QLjJg6VfLuQSSaGjl
+OCZgdbKfd/+RFO+uIEn8rUAVSNECMWEZXriX7613t2Saer9fwRPvm2L7DWzgVGkWqQPabumDk3F2
+xmmFghcCAwEAAaNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYE
+FI/wS3+oLkUkrk1Q+mOai97i3Ru8MA0GCSqGSIb3DQEBCwUAA4IBAQBLQNvAUKr+yAzv95ZURUm7
+lgAJQayzE4aGKAczymvmdLm6AC2upArT9fHxD4q/c2dKg8dEe3jgr25sbwMpjjM5RcOO5LlXbKr8
+EpbsU8Yt5CRsuZRj+9xTaGdWPoO4zzUhw8lo/s7awlOqzJCK6fBdRoyV3XpYKBovHd7NADdBj+1E
+bddTKJd+82cEHhXXipa0095MJ6RMG3NzdvQXmcIfeg7jLQitChws/zyrVQ4PkX4268NXSb7hLi18
+YIvDQVETI53O9zJrlAGomecsMx86OyXShkDOOyyGeMlhLxS67ttVb9+E7gUJTb0o2HLO02JQZR7r
+kpeDMdmztcpHWD9f
+-----END CERTIFICATE-----
+
+Autoridad de Certificacion Firmaprofesional CIF A62634068
+=========================================================
+-----BEGIN CERTIFICATE-----
+MIIGFDCCA/ygAwIBAgIIU+w77vuySF8wDQYJKoZIhvcNAQEFBQAwUTELMAkGA1UEBhMCRVMxQjBA
+BgNVBAMMOUF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1hcHJvZmVzaW9uYWwgQ0lGIEE2
+MjYzNDA2ODAeFw0wOTA1MjAwODM4MTVaFw0zMDEyMzEwODM4MTVaMFExCzAJBgNVBAYTAkVTMUIw
+QAYDVQQDDDlBdXRvcmlkYWQgZGUgQ2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBB
+NjI2MzQwNjgwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKlmuO6vj78aI14H9M2uDD
+Utd9thDIAl6zQyrET2qyyhxdKJp4ERppWVevtSBC5IsP5t9bpgOSL/UR5GLXMnE42QQMcas9UX4P
+B99jBVzpv5RvwSmCwLTaUbDBPLutN0pcyvFLNg4kq7/DhHf9qFD0sefGL9ItWY16Ck6WaVICqjaY
+7Pz6FIMMNx/Jkjd/14Et5cS54D40/mf0PmbR0/RAz15iNA9wBj4gGFrO93IbJWyTdBSTo3OxDqqH
+ECNZXyAFGUftaI6SEspd/NYrspI8IM/hX68gvqB2f3bl7BqGYTM+53u0P6APjqK5am+5hyZvQWyI
+plD9amML9ZMWGxmPsu2bm8mQ9QEM3xk9Dz44I8kvjwzRAv4bVdZO0I08r0+k8/6vKtMFnXkIoctX
+MbScyJCyZ/QYFpM6/EfY0XiWMR+6KwxfXZmtY4laJCB22N/9q06mIqqdXuYnin1oKaPnirjaEbsX
+LZmdEyRG98Xi2J+Of8ePdG1asuhy9azuJBCtLxTa/y2aRnFHvkLfuwHb9H/TKI8xWVvTyQKmtFLK
+bpf7Q8UIJm+K9Lv9nyiqDdVF8xM6HdjAeI9BZzwelGSuewvF6NkBiDkal4ZkQdU7hwxu+g/GvUgU
+vzlN1J5Bto+WHWOWk9mVBngxaJ43BjuAiUVhOSPHG0SjFeUc+JIwuwIDAQABo4HvMIHsMBIGA1Ud
+EwEB/wQIMAYBAf8CAQEwDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRlzeurNR4APn7VdMActHNH
+DhpkLzCBpgYDVR0gBIGeMIGbMIGYBgRVHSAAMIGPMC8GCCsGAQUFBwIBFiNodHRwOi8vd3d3LmZp
+cm1hcHJvZmVzaW9uYWwuY29tL2NwczBcBggrBgEFBQcCAjBQHk4AUABhAHMAZQBvACAAZABlACAA
+bABhACAAQgBvAG4AYQBuAG8AdgBhACAANAA3ACAAQgBhAHIAYwBlAGwAbwBuAGEAIAAwADgAMAAx
+ADcwDQYJKoZIhvcNAQEFBQADggIBABd9oPm03cXF661LJLWhAqvdpYhKsg9VSytXjDvlMd3+xDLx
+51tkljYyGOylMnfX40S2wBEqgLk9am58m9Ot/MPWo+ZkKXzR4Tgegiv/J2Wv+xYVxC5xhOW1//qk
+R71kMrv2JYSiJ0L1ILDCExARzRAVukKQKtJE4ZYm6zFIEv0q2skGz3QeqUvVhyj5eTSSPi5E6PaP
+T481PyWzOdxjKpBrIF/EUhJOlywqrJ2X3kjyo2bbwtKDlaZmp54lD+kLM5FlClrD2VQS3a/DTg4f
+Jl4N3LON7NWBcN7STyQF82xO9UxJZo3R/9ILJUFI/lGExkKvgATP0H5kSeTy36LssUzAKh3ntLFl
+osS88Zj0qnAHY7S42jtM+kAiMFsRpvAFDsYCA0irhpuF3dvd6qJ2gHN99ZwExEWN57kci57q13XR
+crHedUTnQn3iV2t93Jm8PYMo6oCTjcVMZcFwgbg4/EMxsvYDNEeyrPsiBsse3RdHHF9mudMaotoR
+saS8I8nkvof/uZS2+F0gStRf571oe2XyFR7SOqkt6dhrJKyXWERHrVkY8SFlcN7ONGCoQPHzPKTD
+KCOM/iczQ0CgFzzr6juwcqajuUpLXhZI9LK8yIySxZ2frHI2vDSANGupi5LAuBft7HZT9SQBjLMi
+6Et8Vcad+qMUu2WFbm5PEn4KPJ2V
+-----END CERTIFICATE-----
+
+Izenpe.com
+==========
+-----BEGIN CERTIFICATE-----
+MIIF8TCCA9mgAwIBAgIQALC3WhZIX7/hy/WL1xnmfTANBgkqhkiG9w0BAQsFADA4MQswCQYDVQQG
+EwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xEzARBgNVBAMMCkl6ZW5wZS5jb20wHhcNMDcxMjEz
+MTMwODI4WhcNMzcxMjEzMDgyNzI1WjA4MQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMu
+QS4xEzARBgNVBAMMCkl6ZW5wZS5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDJ
+03rKDx6sp4boFmVqscIbRTJxldn+EFvMr+eleQGPicPK8lVx93e+d5TzcqQsRNiekpsUOqHnJJAK
+ClaOxdgmlOHZSOEtPtoKct2jmRXagaKH9HtuJneJWK3W6wyyQXpzbm3benhB6QiIEn6HLmYRY2xU
++zydcsC8Lv/Ct90NduM61/e0aL6i9eOBbsFGb12N4E3GVFWJGjMxCrFXuaOKmMPsOzTFlUFpfnXC
+PCDFYbpRR6AgkJOhkEvzTnyFRVSa0QUmQbC1TR0zvsQDyCV8wXDbO/QJLVQnSKwv4cSsPsjLkkxT
+OTcj7NMB+eAJRE1NZMDhDVqHIrytG6P+JrUV86f8hBnp7KGItERphIPzidF0BqnMC9bC3ieFUCbK
+F7jJeodWLBoBHmy+E60QrLUk9TiRodZL2vG70t5HtfG8gfZZa88ZU+mNFctKy6lvROUbQc/hhqfK
+0GqfvEyNBjNaooXlkDWgYlwWTvDjovoDGrQscbNYLN57C9saD+veIR8GdwYDsMnvmfzAuU8Lhij+
+0rnq49qlw0dpEuDb8PYZi+17cNcC1u2HGCgsBCRMd+RIihrGO5rUD8r6ddIBQFqNeb+Lz0vPqhbB
+leStTIo+F5HUsWLlguWABKQDfo2/2n+iD5dPDNMN+9fR5XJ+HMh3/1uaD7euBUbl8agW7EekFwID
+AQABo4H2MIHzMIGwBgNVHREEgagwgaWBD2luZm9AaXplbnBlLmNvbaSBkTCBjjFHMEUGA1UECgw+
+SVpFTlBFIFMuQS4gLSBDSUYgQTAxMzM3MjYwLVJNZXJjLlZpdG9yaWEtR2FzdGVpeiBUMTA1NSBG
+NjIgUzgxQzBBBgNVBAkMOkF2ZGEgZGVsIE1lZGl0ZXJyYW5lbyBFdG9yYmlkZWEgMTQgLSAwMTAx
+MCBWaXRvcmlhLUdhc3RlaXowDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0O
+BBYEFB0cZQ6o8iV7tJHP5LGx5r1VdGwFMA0GCSqGSIb3DQEBCwUAA4ICAQB4pgwWSp9MiDrAyw6l
+Fn2fuUhfGI8NYjb2zRlrrKvV9pF9rnHzP7MOeIWblaQnIUdCSnxIOvVFfLMMjlF4rJUT3sb9fbga
+kEyrkgPH7UIBzg/YsfqikuFgba56awmqxinuaElnMIAkejEWOVt+8Rwu3WwJrfIxwYJOubv5vr8q
+hT/AQKM6WfxZSzwoJNu0FXWuDYi6LnPAvViH5ULy617uHjAimcs30cQhbIHsvm0m5hzkQiCeR7Cs
+g1lwLDXWrzY0tM07+DKo7+N4ifuNRSzanLh+QBxh5z6ikixL8s36mLYp//Pye6kfLqCTVyvehQP5
+aTfLnnhqBbTFMXiJ7HqnheG5ezzevh55hM6fcA5ZwjUukCox2eRFekGkLhObNA5me0mrZJfQRsN5
+nXJQY6aYWwa9SG3YOYNw6DXwBdGqvOPbyALqfP2C2sJbUjWumDqtujWTI6cfSN01RpiyEGjkpTHC
+ClguGYEQyVB1/OpaFs4R1+7vUIgtYf8/QnMFlEPVjjxOAToZpR9GTnfQXeWBIiGH/pR9hNiTrdZo
+Q0iy2+tzJOeRf1SktoA+naM8THLCV8Sg1Mw4J87VBp6iSNnpn86CcDaTmjvfliHjWbcM2pE38P1Z
+WrOZyGlsQyYBNWNgVYkDOnXYukrZVP/u3oDYLdE41V4tC5h9Pmzb/CaIxw==
+-----END CERTIFICATE-----
+
+Chambers of Commerce Root - 2008
+================================
+-----BEGIN CERTIFICATE-----
+MIIHTzCCBTegAwIBAgIJAKPaQn6ksa7aMA0GCSqGSIb3DQEBBQUAMIGuMQswCQYDVQQGEwJFVTFD
+MEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNv
+bS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMu
+QS4xKTAnBgNVBAMTIENoYW1iZXJzIG9mIENvbW1lcmNlIFJvb3QgLSAyMDA4MB4XDTA4MDgwMTEy
+Mjk1MFoXDTM4MDczMTEyMjk1MFowga4xCzAJBgNVBAYTAkVVMUMwQQYDVQQHEzpNYWRyaWQgKHNl
+ZSBjdXJyZW50IGFkZHJlc3MgYXQgd3d3LmNhbWVyZmlybWEuY29tL2FkZHJlc3MpMRIwEAYDVQQF
+EwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENhbWVyZmlybWEgUy5BLjEpMCcGA1UEAxMgQ2hhbWJl
+cnMgb2YgQ29tbWVyY2UgUm9vdCAtIDIwMDgwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC
+AQCvAMtwNyuAWko6bHiUfaN/Gh/2NdW928sNRHI+JrKQUrpjOyhYb6WzbZSm891kDFX29ufyIiKA
+XuFixrYp4YFs8r/lfTJqVKAyGVn+H4vXPWCGhSRv4xGzdz4gljUha7MI2XAuZPeEklPWDrCQiorj
+h40G072QDuKZoRuGDtqaCrsLYVAGUvGef3bsyw/QHg3PmTA9HMRFEFis1tPo1+XqxQEHd9ZR5gN/
+ikilTWh1uem8nk4ZcfUyS5xtYBkL+8ydddy/Js2Pk3g5eXNeJQ7KXOt3EgfLZEFHcpOrUMPrCXZk
+NNI5t3YRCQ12RcSprj1qr7V9ZS+UWBDsXHyvfuK2GNnQm05aSd+pZgvMPMZ4fKecHePOjlO+Bd5g
+D2vlGts/4+EhySnB8esHnFIbAURRPHsl18TlUlRdJQfKFiC4reRB7noI/plvg6aRArBsNlVq5331
+lubKgdaX8ZSD6e2wsWsSaR6s+12pxZjptFtYer49okQ6Y1nUCyXeG0+95QGezdIp1Z8XGQpvvwyQ
+0wlf2eOKNcx5Wk0ZN5K3xMGtr/R5JJqyAQuxr1yW84Ay+1w9mPGgP0revq+ULtlVmhduYJ1jbLhj
+ya6BXBg14JC7vjxPNyK5fuvPnnchpj04gftI2jE9K+OJ9dC1vX7gUMQSibMjmhAxhduub+84Mxh2
+EQIDAQABo4IBbDCCAWgwEgYDVR0TAQH/BAgwBgEB/wIBDDAdBgNVHQ4EFgQU+SSsD7K1+HnA+mCI
+G8TZTQKeFxkwgeMGA1UdIwSB2zCB2IAU+SSsD7K1+HnA+mCIG8TZTQKeFxmhgbSkgbEwga4xCzAJ
+BgNVBAYTAkVVMUMwQQYDVQQHEzpNYWRyaWQgKHNlZSBjdXJyZW50IGFkZHJlc3MgYXQgd3d3LmNh
+bWVyZmlybWEuY29tL2FkZHJlc3MpMRIwEAYDVQQFEwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENh
+bWVyZmlybWEgUy5BLjEpMCcGA1UEAxMgQ2hhbWJlcnMgb2YgQ29tbWVyY2UgUm9vdCAtIDIwMDiC
+CQCj2kJ+pLGu2jAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUH
+AgEWHGh0dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20wDQYJKoZIhvcNAQEFBQADggIBAJASryI1
+wqM58C7e6bXpeHxIvj99RZJe6dqxGfwWPJ+0W2aeaufDuV2I6A+tzyMP3iU6XsxPpcG1Lawk0lgH
+3qLPaYRgM+gQDROpI9CF5Y57pp49chNyM/WqfcZjHwj0/gF/JM8rLFQJ3uIrbZLGOU8W6jx+ekbU
+RWpGqOt1glanq6B8aBMz9p0w8G8nOSQjKpD9kCk18pPfNKXG9/jvjA9iSnyu0/VU+I22mlaHFoI6
+M6taIgj3grrqLuBHmrS1RaMFO9ncLkVAO+rcf+g769HsJtg1pDDFOqxXnrN2pSB7+R5KBWIBpih1
+YJeSDW4+TTdDDZIVnBgizVGZoCkaPF+KMjNbMMeJL0eYD6MDxvbxrN8y8NmBGuScvfaAFPDRLLmF
+9dijscilIeUcE5fuDr3fKanvNFNb0+RqE4QGtjICxFKuItLcsiFCGtpA8CnJ7AoMXOLQusxI0zcK
+zBIKinmwPQN/aUv0NCB9szTqjktk9T79syNnFQ0EuPAtwQlRPLJsFfClI9eDdOTlLsn+mCdCxqvG
+nrDQWzilm1DefhiYtUU79nm06PcaewaD+9CL2rvHvRirCG88gGtAPxkZumWK5r7VXNM21+9AUiRg
+OGcEMeyP84LG3rlV8zsxkVrctQgVrXYlCg17LofiDKYGvCYQbTed7N14jHyAxfDZd0jQ
+-----END CERTIFICATE-----
+
+Global Chambersign Root - 2008
+==============================
+-----BEGIN CERTIFICATE-----
+MIIHSTCCBTGgAwIBAgIJAMnN0+nVfSPOMA0GCSqGSIb3DQEBBQUAMIGsMQswCQYDVQQGEwJFVTFD
+MEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNv
+bS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMu
+QS4xJzAlBgNVBAMTHkdsb2JhbCBDaGFtYmVyc2lnbiBSb290IC0gMjAwODAeFw0wODA4MDExMjMx
+NDBaFw0zODA3MzExMjMxNDBaMIGsMQswCQYDVQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUg
+Y3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAGA1UEBRMJ
+QTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xJzAlBgNVBAMTHkdsb2JhbCBD
+aGFtYmVyc2lnbiBSb290IC0gMjAwODCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMDf
+VtPkOpt2RbQT2//BthmLN0EYlVJH6xedKYiONWwGMi5HYvNJBL99RDaxccy9Wglz1dmFRP+RVyXf
+XjaOcNFccUMd2drvXNL7G706tcuto8xEpw2uIRU/uXpbknXYpBI4iRmKt4DS4jJvVpyR1ogQC7N0
+ZJJ0YPP2zxhPYLIj0Mc7zmFLmY/CDNBAspjcDahOo7kKrmCgrUVSY7pmvWjg+b4aqIG7HkF4ddPB
+/gBVsIdU6CeQNR1MM62X/JcumIS/LMmjv9GYERTtY/jKmIhYF5ntRQOXfjyGHoiMvvKRhI9lNNgA
+TH23MRdaKXoKGCQwoze1eqkBfSbW+Q6OWfH9GzO1KTsXO0G2Id3UwD2ln58fQ1DJu7xsepeY7s2M
+H/ucUa6LcL0nn3HAa6x9kGbo1106DbDVwo3VyJ2dwW3Q0L9R5OP4wzg2rtandeavhENdk5IMagfe
+Ox2YItaswTXbo6Al/3K1dh3ebeksZixShNBFks4c5eUzHdwHU1SjqoI7mjcv3N2gZOnm3b2u/GSF
+HTynyQbehP9r6GsaPMWis0L7iwk+XwhSx2LE1AVxv8Rk5Pihg+g+EpuoHtQ2TS9x9o0o9oOpE9Jh
+wZG7SMA0j0GMS0zbaRL/UJScIINZc+18ofLx/d33SdNDWKBWY8o9PeU1VlnpDsogzCtLkykPAgMB
+AAGjggFqMIIBZjASBgNVHRMBAf8ECDAGAQH/AgEMMB0GA1UdDgQWBBS5CcqcHtvTbDprru1U8VuT
+BjUuXjCB4QYDVR0jBIHZMIHWgBS5CcqcHtvTbDprru1U8VuTBjUuXqGBsqSBrzCBrDELMAkGA1UE
+BhMCRVUxQzBBBgNVBAcTOk1hZHJpZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCB3d3cuY2FtZXJm
+aXJtYS5jb20vYWRkcmVzcykxEjAQBgNVBAUTCUE4Mjc0MzI4NzEbMBkGA1UEChMSQUMgQ2FtZXJm
+aXJtYSBTLkEuMScwJQYDVQQDEx5HbG9iYWwgQ2hhbWJlcnNpZ24gUm9vdCAtIDIwMDiCCQDJzdPp
+1X0jzjAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0
+dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20wDQYJKoZIhvcNAQEFBQADggIBAICIf3DekijZBZRG
+/5BXqfEv3xoNa/p8DhxJJHkn2EaqbylZUohwEurdPfWbU1Rv4WCiqAm57OtZfMY18dwY6fFn5a+6
+ReAJ3spED8IXDneRRXozX1+WLGiLwUePmJs9wOzL9dWCkoQ10b42OFZyMVtHLaoXpGNR6woBrX/s
+dZ7LoR/xfxKxueRkf2fWIyr0uDldmOghp+G9PUIadJpwr2hsUF1Jz//7Dl3mLEfXgTpZALVza2Mg
+9jFFCDkO9HB+QHBaP9BrQql0PSgvAm11cpUJjUhjxsYjV5KTXjXBjfkK9yydYhz2rXzdpjEetrHH
+foUm+qRqtdpjMNHvkzeyZi99Bffnt0uYlDXA2TopwZ2yUDMdSqlapskD7+3056huirRXhOukP9Du
+qqqHW2Pok+JrqNS4cnhrG+055F3Lm6qH1U9OAP7Zap88MQ8oAgF9mOinsKJknnn4SPIVqczmyETr
+P3iZ8ntxPjzxmKfFGBI/5rsoM0LpRQp8bfKGeS/Fghl9CYl8slR2iK7ewfPM4W7bMdaTrpmg7yVq
+c5iJWzouE4gev8CSlDQb4ye3ix5vQv/n6TebUB0tovkC7stYWDpxvGjjqsGvHCgfotwjZT+B6q6Z
+09gwzxMNTxXJhLynSC34MCN32EZLeW32jO06f2ARePTpm67VVMB0gNELQp/B
+-----END CERTIFICATE-----
+
+Go Daddy Root Certificate Authority - G2
+========================================
+-----BEGIN CERTIFICATE-----
+MIIDxTCCAq2gAwIBAgIBADANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMxEDAOBgNVBAgT
+B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoTEUdvRGFkZHkuY29tLCBJbmMu
+MTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5
+MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgYMxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6
+b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjExMC8G
+A1UEAxMoR28gRGFkZHkgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZI
+hvcNAQEBBQADggEPADCCAQoCggEBAL9xYgjx+lk09xvJGKP3gElY6SKDE6bFIEMBO4Tx5oVJnyfq
+9oQbTqC023CYxzIBsQU+B07u9PpPL1kwIuerGVZr4oAH/PMWdYA5UXvl+TW2dE6pjYIT5LY/qQOD
++qK+ihVqf94Lw7YZFAXK6sOoBJQ7RnwyDfMAZiLIjWltNowRGLfTshxgtDj6AozO091GB94KPutd
+fMh8+7ArU6SSYmlRJQVhGkSBjCypQ5Yj36w6gZoOKcUcqeldHraenjAKOc7xiID7S13MMuyFYkMl
+NAJWJwGRtDtwKj9useiciAF9n9T521NtYJ2/LOdYq7hfRvzOxBsDPAnrSTFcaUaz4EcCAwEAAaNC
+MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFDqahQcQZyi27/a9
+BUFuIMGU2g/eMA0GCSqGSIb3DQEBCwUAA4IBAQCZ21151fmXWWcDYfF+OwYxdS2hII5PZYe096ac
+vNjpL9DbWu7PdIxztDhC2gV7+AJ1uP2lsdeu9tfeE8tTEH6KRtGX+rcuKxGrkLAngPnon1rpN5+r
+5N9ss4UXnT3ZJE95kTXWXwTrgIOrmgIttRD02JDHBHNA7XIloKmf7J6raBKZV8aPEjoJpL1E/QYV
+N8Gb5DKj7Tjo2GTzLH4U/ALqn83/B2gX2yKQOC16jdFU8WnjXzPKej17CuPKf1855eJ1usV2GDPO
+LPAvTK33sefOT6jEm0pUBsV/fdUID+Ic/n4XuKxe9tQWskMJDE32p2u0mYRlynqI4uJEvlz36hz1
+-----END CERTIFICATE-----
+
+Starfield Root Certificate Authority - G2
+=========================================
+-----BEGIN CERTIFICATE-----
+MIID3TCCAsWgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBjzELMAkGA1UEBhMCVVMxEDAOBgNVBAgT
+B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9s
+b2dpZXMsIEluYy4xMjAwBgNVBAMTKVN0YXJmaWVsZCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0
+eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgY8xCzAJBgNVBAYTAlVTMRAw
+DgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQg
+VGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQDEylTdGFyZmllbGQgUm9vdCBDZXJ0aWZpY2F0ZSBB
+dXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3twQP89o/8ArFv
+W59I2Z154qK3A2FWGMNHttfKPTUuiUP3oWmb3ooa/RMgnLRJdzIpVv257IzdIvpy3Cdhl+72WoTs
+bhm5iSzchFvVdPtrX8WJpRBSiUZV9Lh1HOZ/5FSuS/hVclcCGfgXcVnrHigHdMWdSL5stPSksPNk
+N3mSwOxGXn/hbVNMYq/NHwtjuzqd+/x5AJhhdM8mgkBj87JyahkNmcrUDnXMN/uLicFZ8WJ/X7Nf
+ZTD4p7dNdloedl40wOiWVpmKs/B/pM293DIxfJHP4F8R+GuqSVzRmZTRouNjWwl2tVZi4Ut0HZbU
+JtQIBFnQmA4O5t78w+wfkPECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC
+AQYwHQYDVR0OBBYEFHwMMh+n2TB/xH1oo2Kooc6rB1snMA0GCSqGSIb3DQEBCwUAA4IBAQARWfol
+TwNvlJk7mh+ChTnUdgWUXuEok21iXQnCoKjUsHU48TRqneSfioYmUeYs0cYtbpUgSpIB7LiKZ3sx
+4mcujJUDJi5DnUox9g61DLu34jd/IroAow57UvtruzvE03lRTs2Q9GcHGcg8RnoNAX3FWOdt5oUw
+F5okxBDgBPfg8n/Uqgr/Qh037ZTlZFkSIHc40zI+OIF1lnP6aI+xy84fxez6nH7PfrHxBy22/L/K
+pL/QlwVKvOoYKAKQvVR4CSFx09F9HdkWsKlhPdAKACL8x3vLCWRFCztAgfd9fDL1mMpYjn0q7pBZ
+c2T5NnReJaH1ZgUufzkVqSr7UIuOhWn0
+-----END CERTIFICATE-----
+
+Starfield Services Root Certificate Authority - G2
+==================================================
+-----BEGIN CERTIFICATE-----
+MIID7zCCAtegAwIBAgIBADANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMxEDAOBgNVBAgT
+B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9s
+b2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVsZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRl
+IEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgZgxCzAJBgNV
+BAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxT
+dGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2VydmljZXMg
+Um9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC
+AQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20pOsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2
+h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm28xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4Pa
+hHQUw2eeBGg6345AWh1KTs9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLP
+LJGmpufehRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk6mFB
+rMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaNCMEAwDwYDVR0TAQH/BAUw
+AwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJxfAN+qAdcwKziIorhtSpzyEZGDMA0GCSqG
+SIb3DQEBCwUAA4IBAQBLNqaEd2ndOxmfZyMIbw5hyf2E3F/YNoHN2BtBLZ9g3ccaaNnRbobhiCPP
+E95Dz+I0swSdHynVv/heyNXBve6SbzJ08pGCL72CQnqtKrcgfU28elUSwhXqvfdqlS5sdJ/PHLTy
+xQGjhdByPq1zqwubdQxtRbeOlKyWN7Wg0I8VRw7j6IPdj/3vQQF3zCepYoUz8jcI73HPdwbeyBkd
+iEDPfUYd/x7H4c7/I9vG+o1VTqkC50cRRj70/b17KSa7qWFiNyi2LSr2EIZkyXCn0q23KXB56jza
+YyWf/Wi3MOxw+3WKt21gZ7IeyLnp2KhvAotnDU0mV3HaIPzBSlCNsSi6
+-----END CERTIFICATE-----
+
+AffirmTrust Commercial
+======================
+-----BEGIN CERTIFICATE-----
+MIIDTDCCAjSgAwIBAgIId3cGJyapsXwwDQYJKoZIhvcNAQELBQAwRDELMAkGA1UEBhMCVVMxFDAS
+BgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBDb21tZXJjaWFsMB4XDTEw
+MDEyOTE0MDYwNloXDTMwMTIzMTE0MDYwNlowRDELMAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmly
+bVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBDb21tZXJjaWFsMIIBIjANBgkqhkiG9w0BAQEF
+AAOCAQ8AMIIBCgKCAQEA9htPZwcroRX1BiLLHwGy43NFBkRJLLtJJRTWzsO3qyxPxkEylFf6Eqdb
+DuKPHx6GGaeqtS25Xw2Kwq+FNXkyLbscYjfysVtKPcrNcV/pQr6U6Mje+SJIZMblq8Yrba0F8PrV
+C8+a5fBQpIs7R6UjW3p6+DM/uO+Zl+MgwdYoic+U+7lF7eNAFxHUdPALMeIrJmqbTFeurCA+ukV6
+BfO9m2kVrn1OIGPENXY6BwLJN/3HR+7o8XYdcxXyl6S1yHp52UKqK39c/s4mT6NmgTWvRLpUHhww
+MmWd5jyTXlBOeuM61G7MGvv50jeuJCqrVwMiKA1JdX+3KNp1v47j3A55MQIDAQABo0IwQDAdBgNV
+HQ4EFgQUnZPGU4teyq8/nx4P5ZmVvCT2lI8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC
+AQYwDQYJKoZIhvcNAQELBQADggEBAFis9AQOzcAN/wr91LoWXym9e2iZWEnStB03TX8nfUYGXUPG
+hi4+c7ImfU+TqbbEKpqrIZcUsd6M06uJFdhrJNTxFq7YpFzUf1GO7RgBsZNjvbz4YYCanrHOQnDi
+qX0GJX0nof5v7LMeJNrjS1UaADs1tDvZ110w/YETifLCBivtZ8SOyUOyXGsViQK8YvxO8rUzqrJv
+0wqiUOP2O+guRMLbZjipM1ZI8W0bM40NjD9gN53Tym1+NH4Nn3J2ixufcv1SNUFFApYvHLKac0kh
+sUlHRUe072o0EclNmsxZt9YCnlpOZbWUrhvfKbAW8b8Angc6F2S1BLUjIZkKlTuXfO8=
+-----END CERTIFICATE-----
+
+AffirmTrust Networking
+======================
+-----BEGIN CERTIFICATE-----
+MIIDTDCCAjSgAwIBAgIIfE8EORzUmS0wDQYJKoZIhvcNAQEFBQAwRDELMAkGA1UEBhMCVVMxFDAS
+BgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBOZXR3b3JraW5nMB4XDTEw
+MDEyOTE0MDgyNFoXDTMwMTIzMTE0MDgyNFowRDELMAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmly
+bVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBOZXR3b3JraW5nMIIBIjANBgkqhkiG9w0BAQEF
+AAOCAQ8AMIIBCgKCAQEAtITMMxcua5Rsa2FSoOujz3mUTOWUgJnLVWREZY9nZOIG41w3SfYvm4SE
+Hi3yYJ0wTsyEheIszx6e/jarM3c1RNg1lho9Nuh6DtjVR6FqaYvZ/Ls6rnla1fTWcbuakCNrmreI
+dIcMHl+5ni36q1Mr3Lt2PpNMCAiMHqIjHNRqrSK6mQEubWXLviRmVSRLQESxG9fhwoXA3hA/Pe24
+/PHxI1Pcv2WXb9n5QHGNfb2V1M6+oF4nI979ptAmDgAp6zxG8D1gvz9Q0twmQVGeFDdCBKNwV6gb
+h+0t+nvujArjqWaJGctB+d1ENmHP4ndGyH329JKBNv3bNPFyfvMMFr20FQIDAQABo0IwQDAdBgNV
+HQ4EFgQUBx/S55zawm6iQLSwelAQUHTEyL0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC
+AQYwDQYJKoZIhvcNAQEFBQADggEBAIlXshZ6qML91tmbmzTCnLQyFE2npN/svqe++EPbkTfOtDIu
+UFUaNU52Q3Eg75N3ThVwLofDwR1t3Mu1J9QsVtFSUzpE0nPIxBsFZVpikpzuQY0x2+c06lkh1QF6
+12S4ZDnNye2v7UsDSKegmQGA3GWjNq5lWUhPgkvIZfFXHeVZLgo/bNjR9eUJtGxUAArgFU2HdW23
+WJZa3W3SAKD0m0i+wzekujbgfIeFlxoVot4uolu9rxj5kFDNcFn4J2dHy8egBzp90SxdbBk6ZrV9
+/ZFvgrG+CJPbFEfxojfHRZ48x3evZKiT3/Zpg4Jg8klCNO1aAFSFHBY2kgxc+qatv9s=
+-----END CERTIFICATE-----
+
+AffirmTrust Premium
+===================
+-----BEGIN CERTIFICATE-----
+MIIFRjCCAy6gAwIBAgIIbYwURrGmCu4wDQYJKoZIhvcNAQEMBQAwQTELMAkGA1UEBhMCVVMxFDAS
+BgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVzdCBQcmVtaXVtMB4XDTEwMDEy
+OTE0MTAzNloXDTQwMTIzMTE0MTAzNlowQTELMAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRy
+dXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVzdCBQcmVtaXVtMIICIjANBgkqhkiG9w0BAQEFAAOCAg8A
+MIICCgKCAgEAxBLfqV/+Qd3d9Z+K4/as4Tx4mrzY8H96oDMq3I0gW64tb+eT2TZwamjPjlGjhVtn
+BKAQJG9dKILBl1fYSCkTtuG+kU3fhQxTGJoeJKJPj/CihQvL9Cl/0qRY7iZNyaqoe5rZ+jjeRFcV
+5fiMyNlI4g0WJx0eyIOFJbe6qlVBzAMiSy2RjYvmia9mx+n/K+k8rNrSs8PhaJyJ+HoAVt70VZVs
++7pk3WKL3wt3MutizCaam7uqYoNMtAZ6MMgpv+0GTZe5HMQxK9VfvFMSF5yZVylmd2EhMQcuJUmd
+GPLu8ytxjLW6OQdJd/zvLpKQBY0tL3d770O/Nbua2Plzpyzy0FfuKE4mX4+QaAkvuPjcBukumj5R
+p9EixAqnOEhss/n/fauGV+O61oV4d7pD6kh/9ti+I20ev9E2bFhc8e6kGVQa9QPSdubhjL08s9NI
+S+LI+H+SqHZGnEJlPqQewQcDWkYtuJfzt9WyVSHvutxMAJf7FJUnM7/oQ0dG0giZFmA7mn7S5u04
+6uwBHjxIVkkJx0w3AJ6IDsBz4W9m6XJHMD4Q5QsDyZpCAGzFlH5hxIrff4IaC1nEWTJ3s7xgaVY5
+/bQGeyzWZDbZvUjthB9+pSKPKrhC9IK31FOQeE4tGv2Bb0TXOwF0lkLgAOIua+rF7nKsu7/+6qqo
++Nz2snmKtmcCAwEAAaNCMEAwHQYDVR0OBBYEFJ3AZ6YMItkm9UWrpmVSESfYRaxjMA8GA1UdEwEB
+/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBDAUAA4ICAQCzV00QYk465KzquByv
+MiPIs0laUZx2KI15qldGF9X1Uva3ROgIRL8YhNILgM3FEv0AVQVhh0HctSSePMTYyPtwni94loMg
+Nt58D2kTiKV1NpgIpsbfrM7jWNa3Pt668+s0QNiigfV4Py/VpfzZotReBA4Xrf5B8OWycvpEgjNC
+6C1Y91aMYj+6QrCcDFx+LmUmXFNPALJ4fqENmS2NuB2OosSw/WDQMKSOyARiqcTtNd56l+0OOF6S
+L5Nwpamcb6d9Ex1+xghIsV5n61EIJenmJWtSKZGc0jlzCFfemQa0W50QBuHCAKi4HEoCChTQwUHK
++4w1IX2COPKpVJEZNZOUbWo6xbLQu4mGk+ibyQ86p3q4ofB4Rvr8Ny/lioTz3/4E2aFooC8k4gmV
+BtWVyuEklut89pMFu+1z6S3RdTnX5yTb2E5fQ4+e0BQ5v1VwSJlXMbSc7kqYA5YwH2AG7hsj/oFg
+IxpHYoWlzBk0gG+zrBrjn/B7SK3VAdlntqlyk+otZrWyuOQ9PLLvTIzq6we/qzWaVYa8GKa1qF60
+g2xraUDTn9zxw2lrueFtCfTxqlB2Cnp9ehehVZZCmTEJ3WARjQUwfuaORtGdFNrHF+QFlozEJLUb
+zxQHskD4o55BhrwE0GuWyCqANP2/7waj3VjFhT0+j/6eKeC2uAloGRwYQw==
+-----END CERTIFICATE-----
+
+AffirmTrust Premium ECC
+=======================
+-----BEGIN CERTIFICATE-----
+MIIB/jCCAYWgAwIBAgIIdJclisc/elQwCgYIKoZIzj0EAwMwRTELMAkGA1UEBhMCVVMxFDASBgNV
+BAoMC0FmZmlybVRydXN0MSAwHgYDVQQDDBdBZmZpcm1UcnVzdCBQcmVtaXVtIEVDQzAeFw0xMDAx
+MjkxNDIwMjRaFw00MDEyMzExNDIwMjRaMEUxCzAJBgNVBAYTAlVTMRQwEgYDVQQKDAtBZmZpcm1U
+cnVzdDEgMB4GA1UEAwwXQWZmaXJtVHJ1c3QgUHJlbWl1bSBFQ0MwdjAQBgcqhkjOPQIBBgUrgQQA
+IgNiAAQNMF4bFZ0D0KF5Nbc6PJJ6yhUczWLznCZcBz3lVPqj1swS6vQUX+iOGasvLkjmrBhDeKzQ
+N8O9ss0s5kfiGuZjuD0uL3jET9v0D6RoTFVya5UdThhClXjMNzyR4ptlKymjQjBAMB0GA1UdDgQW
+BBSaryl6wBE1NSZRMADDav5A1a7WPDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAK
+BggqhkjOPQQDAwNnADBkAjAXCfOHiFBar8jAQr9HX/VsaobgxCd05DhT1wV/GzTjxi+zygk8N53X
+57hG8f2h4nECMEJZh0PUUd+60wkyWs6Iflc9nF9Ca/UHLbXwgpP5WW+uZPpY5Yse42O+tYHNbwKM
+eQ==
+-----END CERTIFICATE-----
+
+Certum Trusted Network CA
+=========================
+-----BEGIN CERTIFICATE-----
+MIIDuzCCAqOgAwIBAgIDBETAMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAlBMMSIwIAYDVQQK
+ExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlv
+biBBdXRob3JpdHkxIjAgBgNVBAMTGUNlcnR1bSBUcnVzdGVkIE5ldHdvcmsgQ0EwHhcNMDgxMDIy
+MTIwNzM3WhcNMjkxMjMxMTIwNzM3WjB+MQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBU
+ZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5
+MSIwIAYDVQQDExlDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENBMIIBIjANBgkqhkiG9w0BAQEFAAOC
+AQ8AMIIBCgKCAQEA4/t9o3K6wvDJFIf1awFO4W5AB7ptJ11/91sts1rHUV+rpDKmYYe2bg+G0jAC
+l/jXaVehGDldamR5xgFZrDwxSjh80gTSSyjoIF87B6LMTXPb865Px1bVWqeWifrzq2jUI4ZZJ88J
+J7ysbnKDHDBy3+Ci6dLhdHUZvSqeexVUBBvXQzmtVSjF4hq79MDkrjhJM8x2hZ85RdKknvISjFH4
+fOQtf/WsX+sWn7Et0brMkUJ3TCXJkDhv2/DM+44el1k+1WBO5gUo7Ul5E0u6SNsv+XLTOcr+H9g0
+cvW0QM8xAcPs3hEtF10fuFDRXhmnad4HMyjKUJX5p1TLVIZQRan5SQIDAQABo0IwQDAPBgNVHRMB
+Af8EBTADAQH/MB0GA1UdDgQWBBQIds3LB/8k9sXN7buQvOKEN0Z19zAOBgNVHQ8BAf8EBAMCAQYw
+DQYJKoZIhvcNAQEFBQADggEBAKaorSLOAT2mo/9i0Eidi15ysHhE49wcrwn9I0j6vSrEuVUEtRCj
+jSfeC4Jj0O7eDDd5QVsisrCaQVymcODU0HfLI9MA4GxWL+FpDQ3Zqr8hgVDZBqWo/5U30Kr+4rP1
+mS1FhIrlQgnXdAIv94nYmem8J9RHjboNRhx3zxSkHLmkMcScKHQDNP8zGSal6Q10tz6XxnboJ5aj
+Zt3hrvJBW8qYVoNzcOSGGtIxQbovvi0TWnZvTuhOgQ4/WwMioBK+ZlgRSssDxLQqKi2WF+A5VLxI
+03YnnZotBqbJ7DnSq9ufmgsnAjUpsUCV5/nonFWIGUbWtzT1fs45mtk48VH3Tyw=
+-----END CERTIFICATE-----
+
+Certinomis - Autorité Racine
+=============================
+-----BEGIN CERTIFICATE-----
+MIIFnDCCA4SgAwIBAgIBATANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJGUjETMBEGA1UEChMK
+Q2VydGlub21pczEXMBUGA1UECxMOMDAwMiA0MzM5OTg5MDMxJjAkBgNVBAMMHUNlcnRpbm9taXMg
+LSBBdXRvcml0w6kgUmFjaW5lMB4XDTA4MDkxNzA4Mjg1OVoXDTI4MDkxNzA4Mjg1OVowYzELMAkG
+A1UEBhMCRlIxEzARBgNVBAoTCkNlcnRpbm9taXMxFzAVBgNVBAsTDjAwMDIgNDMzOTk4OTAzMSYw
+JAYDVQQDDB1DZXJ0aW5vbWlzIC0gQXV0b3JpdMOpIFJhY2luZTCCAiIwDQYJKoZIhvcNAQEBBQAD
+ggIPADCCAgoCggIBAJ2Fn4bT46/HsmtuM+Cet0I0VZ35gb5j2CN2DpdUzZlMGvE5x4jYF1AMnmHa
+wE5V3udauHpOd4cN5bjr+p5eex7Ezyh0x5P1FMYiKAT5kcOrJ3NqDi5N8y4oH3DfVS9O7cdxbwly
+Lu3VMpfQ8Vh30WC8Tl7bmoT2R2FFK/ZQpn9qcSdIhDWerP5pqZ56XjUl+rSnSTV3lqc2W+HN3yNw
+2F1MpQiD8aYkOBOo7C+ooWfHpi2GR+6K/OybDnT0K0kCe5B1jPyZOQE51kqJ5Z52qz6WKDgmi92N
+jMD2AR5vpTESOH2VwnHu7XSu5DaiQ3XV8QCb4uTXzEIDS3h65X27uK4uIJPT5GHfceF2Z5c/tt9q
+c1pkIuVC28+BA5PY9OMQ4HL2AHCs8MF6DwV/zzRpRbWT5BnbUhYjBYkOjUjkJW+zeL9i9Qf6lSTC
+lrLooyPCXQP8w9PlfMl1I9f09bze5N/NgL+RiH2nE7Q5uiy6vdFrzPOlKO1Enn1So2+WLhl+HPNb
+xxaOu2B9d2ZHVIIAEWBsMsGoOBvrbpgT1u449fCfDu/+MYHB0iSVL1N6aaLwD4ZFjliCK0wi1F6g
+530mJ0jfJUaNSih8hp75mxpZuWW/Bd22Ql095gBIgl4g9xGC3srYn+Y3RyYe63j3YcNBZFgCQfna
+4NH4+ej9Uji29YnfAgMBAAGjWzBZMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G
+A1UdDgQWBBQNjLZh2kS40RR9w759XkjwzspqsDAXBgNVHSAEEDAOMAwGCiqBegFWAgIAAQEwDQYJ
+KoZIhvcNAQEFBQADggIBACQ+YAZ+He86PtvqrxyaLAEL9MW12Ukx9F1BjYkMTv9sov3/4gbIOZ/x
+WqndIlgVqIrTseYyCYIDbNc/CMf4uboAbbnW/FIyXaR/pDGUu7ZMOH8oMDX/nyNTt7buFHAAQCva
+R6s0fl6nVjBhK4tDrP22iCj1a7Y+YEq6QpA0Z43q619FVDsXrIvkxmUP7tCMXWY5zjKn2BCXwH40
+nJ+U8/aGH88bc62UeYdocMMzpXDn2NU4lG9jeeu/Cg4I58UvD0KgKxRA/yHgBcUn4YQRE7rWhh1B
+CxMjidPJC+iKunqjo3M3NYB9Ergzd0A4wPpeMNLytqOx1qKVl4GbUu1pTP+A5FPbVFsDbVRfsbjv
+JL1vnxHDx2TCDyhihWZeGnuyt++uNckZM6i4J9szVb9o4XVIRFb7zdNIu0eJOqxp9YDG5ERQL1TE
+qkPFMTFYvZbF6nVsmnWxTfj3l/+WFvKXTej28xH5On2KOG4Ey+HTRRWqpdEdnV1j6CTmNhTih60b
+WfVEm/vXd3wfAXBioSAaosUaKPQhA+4u2cGA6rnZgtZbdsLLO7XSAPCjDuGtbkD326C00EauFddE
+wk01+dIL8hf2rGbVJLJP0RyZwG71fet0BLj5TXcJ17TPBzAJ8bgAVtkXFhYKK4bfjwEZGuW7gmP/
+vgt2Fl43N+bYdJeimUV5
+-----END CERTIFICATE-----
+
+Root CA Generalitat Valenciana
+==============================
+-----BEGIN CERTIFICATE-----
+MIIGizCCBXOgAwIBAgIEO0XlaDANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJFUzEfMB0GA1UE
+ChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0GA1UECxMGUEtJR1ZBMScwJQYDVQQDEx5Sb290
+IENBIEdlbmVyYWxpdGF0IFZhbGVuY2lhbmEwHhcNMDEwNzA2MTYyMjQ3WhcNMjEwNzAxMTUyMjQ3
+WjBoMQswCQYDVQQGEwJFUzEfMB0GA1UEChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0GA1UE
+CxMGUEtJR1ZBMScwJQYDVQQDEx5Sb290IENBIEdlbmVyYWxpdGF0IFZhbGVuY2lhbmEwggEiMA0G
+CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDGKqtXETcvIorKA3Qdyu0togu8M1JAJke+WmmmO3I2
+F0zo37i7L3bhQEZ0ZQKQUgi0/6iMweDHiVYQOTPvaLRfX9ptI6GJXiKjSgbwJ/BXufjpTjJ3Cj9B
+ZPPrZe52/lSqfR0grvPXdMIKX/UIKFIIzFVd0g/bmoGlu6GzwZTNVOAydTGRGmKy3nXiz0+J2ZGQ
+D0EbtFpKd71ng+CT516nDOeB0/RSrFOyA8dEJvt55cs0YFAQexvba9dHq198aMpunUEDEO5rmXte
+JajCq+TA81yc477OMUxkHl6AovWDfgzWyoxVjr7gvkkHD6MkQXpYHYTqWBLI4bft75PelAgxAgMB
+AAGjggM7MIIDNzAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAGGFmh0dHA6Ly9vY3NwLnBraS5n
+dmEuZXMwEgYDVR0TAQH/BAgwBgEB/wIBAjCCAjQGA1UdIASCAiswggInMIICIwYKKwYBBAG/VQIB
+ADCCAhMwggHoBggrBgEFBQcCAjCCAdoeggHWAEEAdQB0AG8AcgBpAGQAYQBkACAAZABlACAAQwBl
+AHIAdABpAGYAaQBjAGEAYwBpAPMAbgAgAFIAYQDtAHoAIABkAGUAIABsAGEAIABHAGUAbgBlAHIA
+YQBsAGkAdABhAHQAIABWAGEAbABlAG4AYwBpAGEAbgBhAC4ADQAKAEwAYQAgAEQAZQBjAGwAYQBy
+AGEAYwBpAPMAbgAgAGQAZQAgAFAAcgDhAGMAdABpAGMAYQBzACAAZABlACAAQwBlAHIAdABpAGYA
+aQBjAGEAYwBpAPMAbgAgAHEAdQBlACAAcgBpAGcAZQAgAGUAbAAgAGYAdQBuAGMAaQBvAG4AYQBt
+AGkAZQBuAHQAbwAgAGQAZQAgAGwAYQAgAHAAcgBlAHMAZQBuAHQAZQAgAEEAdQB0AG8AcgBpAGQA
+YQBkACAAZABlACAAQwBlAHIAdABpAGYAaQBjAGEAYwBpAPMAbgAgAHMAZQAgAGUAbgBjAHUAZQBu
+AHQAcgBhACAAZQBuACAAbABhACAAZABpAHIAZQBjAGMAaQDzAG4AIAB3AGUAYgAgAGgAdAB0AHAA
+OgAvAC8AdwB3AHcALgBwAGsAaQAuAGcAdgBhAC4AZQBzAC8AYwBwAHMwJQYIKwYBBQUHAgEWGWh0
+dHA6Ly93d3cucGtpLmd2YS5lcy9jcHMwHQYDVR0OBBYEFHs100DSHHgZZu90ECjcPk+yeAT8MIGV
+BgNVHSMEgY0wgYqAFHs100DSHHgZZu90ECjcPk+yeAT8oWykajBoMQswCQYDVQQGEwJFUzEfMB0G
+A1UEChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0GA1UECxMGUEtJR1ZBMScwJQYDVQQDEx5S
+b290IENBIEdlbmVyYWxpdGF0IFZhbGVuY2lhbmGCBDtF5WgwDQYJKoZIhvcNAQEFBQADggEBACRh
+TvW1yEICKrNcda3FbcrnlD+laJWIwVTAEGmiEi8YPyVQqHxK6sYJ2fR1xkDar1CdPaUWu20xxsdz
+Ckj+IHLtb8zog2EWRpABlUt9jppSCS/2bxzkoXHPjCpaF3ODR00PNvsETUlR4hTJZGH71BTg9J63
+NI8KJr2XXPR5OkowGcytT6CYirQxlyric21+eLj4iIlPsSKRZEv1UN4D2+XFducTZnV+ZfsBn5OH
+iJ35Rld8TWCvmHMTI6QgkYH60GFmuH3Rr9ZvHmw96RH9qfmCIoaZM3Fa6hlXPZHNqcCjbgcTpsnt
++GijnsNacgmHKNHEc8RzGF9QdRYxn7fofMM=
+-----END CERTIFICATE-----
+
+A-Trust-nQual-03
+================
+-----BEGIN CERTIFICATE-----
+MIIDzzCCAregAwIBAgIDAWweMA0GCSqGSIb3DQEBBQUAMIGNMQswCQYDVQQGEwJBVDFIMEYGA1UE
+Cgw/QS1UcnVzdCBHZXMuIGYuIFNpY2hlcmhlaXRzc3lzdGVtZSBpbSBlbGVrdHIuIERhdGVudmVy
+a2VociBHbWJIMRkwFwYDVQQLDBBBLVRydXN0LW5RdWFsLTAzMRkwFwYDVQQDDBBBLVRydXN0LW5R
+dWFsLTAzMB4XDTA1MDgxNzIyMDAwMFoXDTE1MDgxNzIyMDAwMFowgY0xCzAJBgNVBAYTAkFUMUgw
+RgYDVQQKDD9BLVRydXN0IEdlcy4gZi4gU2ljaGVyaGVpdHNzeXN0ZW1lIGltIGVsZWt0ci4gRGF0
+ZW52ZXJrZWhyIEdtYkgxGTAXBgNVBAsMEEEtVHJ1c3QtblF1YWwtMDMxGTAXBgNVBAMMEEEtVHJ1
+c3QtblF1YWwtMDMwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtPWFuA/OQO8BBC4SA
+zewqo51ru27CQoT3URThoKgtUaNR8t4j8DRE/5TrzAUjlUC5B3ilJfYKvUWG6Nm9wASOhURh73+n
+yfrBJcyFLGM/BWBzSQXgYHiVEEvc+RFZznF/QJuKqiTfC0Li21a8StKlDJu3Qz7dg9MmEALP6iPE
+SU7l0+m0iKsMrmKS1GWH2WrX9IWf5DMiJaXlyDO6w8dB3F/GaswADm0yqLaHNgBid5seHzTLkDx4
+iHQF63n1k3Flyp3HaxgtPVxO59X4PzF9j4fsCiIvI+n+u33J4PTs63zEsMMtYrWacdaxaujs2e3V
+cuy+VwHOBVWf3tFgiBCzAgMBAAGjNjA0MA8GA1UdEwEB/wQFMAMBAf8wEQYDVR0OBAoECERqlWdV
+eRFPMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOCAQEAVdRU0VlIXLOThaq/Yy/kgM40
+ozRiPvbY7meIMQQDbwvUB/tOdQ/TLtPAF8fGKOwGDREkDg6lXb+MshOWcdzUzg4NCmgybLlBMRmr
+sQd7TZjTXLDR8KdCoLXEjq/+8T/0709GAHbrAvv5ndJAlseIOrifEXnzgGWovR/TeIGgUUw3tKZd
+JXDRZslo+S4RFGjxVJgIrCaSD96JntT6s3kr0qN51OyLrIdTaEJMUVF0HhsnLuP1Hyl0Te2v9+GS
+mYHovjrHF1D2t8b8m7CKa9aIA5GPBnc6hQLdmNVDeD/GMBWsm2vLV7eJUYs66MmEDNuxUCAKGkq6
+ahq97BvIxYSazQ==
+-----END CERTIFICATE-----
+
+TWCA Root Certification Authority
+=================================
+-----BEGIN CERTIFICATE-----
+MIIDezCCAmOgAwIBAgIBATANBgkqhkiG9w0BAQUFADBfMQswCQYDVQQGEwJUVzESMBAGA1UECgwJ
+VEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NBIFJvb3QgQ2VydGlmaWNh
+dGlvbiBBdXRob3JpdHkwHhcNMDgwODI4MDcyNDMzWhcNMzAxMjMxMTU1OTU5WjBfMQswCQYDVQQG
+EwJUVzESMBAGA1UECgwJVEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NB
+IFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK
+AoIBAQCwfnK4pAOU5qfeCTiRShFAh6d8WWQUe7UREN3+v9XAu1bihSX0NXIP+FPQQeFEAcK0HMMx
+QhZHhTMidrIKbw/lJVBPhYa+v5guEGcevhEFhgWQxFnQfHgQsIBct+HHK3XLfJ+utdGdIzdjp9xC
+oi2SBBtQwXu4PhvJVgSLL1KbralW6cH/ralYhzC2gfeXRfwZVzsrb+RH9JlF/h3x+JejiB03HFyP
+4HYlmlD4oFT/RJB2I9IyxsOrBr/8+7/zrX2SYgJbKdM1o5OaQ2RgXbL6Mv87BK9NQGr5x+PvI/1r
+y+UPizgN7gr8/g+YnzAx3WxSZfmLgb4i4RxYA7qRG4kHAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIB
+BjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqOFsmjd6LWvJPelSDGRjjCDWmujANBgkqhkiG
+9w0BAQUFAAOCAQEAPNV3PdrfibqHDAhUaiBQkr6wQT25JmSDCi/oQMCXKCeCMErJk/9q56YAf4lC
+mtYR5VPOL8zy2gXE/uJQxDqGfczafhAJO5I1KlOy/usrBdlsXebQ79NqZp4VKIV66IIArB6nCWlW
+QtNoURi+VJq/REG6Sb4gumlc7rh3zc5sH62Dlhh9DrUUOYTxKOkto557HnpyWoOzeW/vtPzQCqVY
+T0bf+215WfKEIlKuD8z7fDvnaspHYcN6+NOSBB+4IIThNlQWx0DeO4pz3N/GCUzf7Nr/1FNCocny
+Yh0igzyXxfkZYiesZSLX0zzG5Y6yU8xJzrww/nsOM5D77dIUkR8Hrw==
+-----END CERTIFICATE-----
+
+Security Communication RootCA2
+==============================
+-----BEGIN CERTIFICATE-----
+MIIDdzCCAl+gAwIBAgIBADANBgkqhkiG9w0BAQsFADBdMQswCQYDVQQGEwJKUDElMCMGA1UEChMc
+U0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UECxMeU2VjdXJpdHkgQ29tbXVuaWNh
+dGlvbiBSb290Q0EyMB4XDTA5MDUyOTA1MDAzOVoXDTI5MDUyOTA1MDAzOVowXTELMAkGA1UEBhMC
+SlAxJTAjBgNVBAoTHFNFQ09NIFRydXN0IFN5c3RlbXMgQ08uLExURC4xJzAlBgNVBAsTHlNlY3Vy
+aXR5IENvbW11bmljYXRpb24gUm9vdENBMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB
+ANAVOVKxUrO6xVmCxF1SrjpDZYBLx/KWvNs2l9amZIyoXvDjChz335c9S672XewhtUGrzbl+dp++
++T42NKA7wfYxEUV0kz1XgMX5iZnK5atq1LXaQZAQwdbWQonCv/Q4EpVMVAX3NuRFg3sUZdbcDE3R
+3n4MqzvEFb46VqZab3ZpUql6ucjrappdUtAtCms1FgkQhNBqyjoGADdH5H5XTz+L62e4iKrFvlNV
+spHEfbmwhRkGeC7bYRr6hfVKkaHnFtWOojnflLhwHyg/i/xAXmODPIMqGplrz95Zajv8bxbXH/1K
+EOtOghY6rCcMU/Gt1SSwawNQwS08Ft1ENCcadfsCAwEAAaNCMEAwHQYDVR0OBBYEFAqFqXdlBZh8
+QIH4D5csOPEK7DzPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEB
+CwUAA4IBAQBMOqNErLlFsceTfsgLCkLfZOoc7llsCLqJX2rKSpWeeo8HxdpFcoJxDjrSzG+ntKEj
+u/Ykn8sX/oymzsLS28yN/HH8AynBbF0zX2S2ZTuJbxh2ePXcokgfGT+Ok+vx+hfuzU7jBBJV1uXk
+3fs+BXziHV7Gp7yXT2g69ekuCkO2r1dcYmh8t/2jioSgrGK+KwmHNPBqAbubKVY8/gA3zyNs8U6q
+tnRGEmyR7jTV7JqR50S+kDFy1UkC9gLl9B/rfNmWVan/7Ir5mUf/NVoCqgTLiluHcSmRvaS0eg29
+mvVXIwAHIRc/SjnRBUkLp7Y3gaVdjKozXoEofKd9J+sAro03
+-----END CERTIFICATE-----
+
+EC-ACC
+======
+-----BEGIN CERTIFICATE-----
+MIIFVjCCBD6gAwIBAgIQ7is969Qh3hSoYqwE893EATANBgkqhkiG9w0BAQUFADCB8zELMAkGA1UE
+BhMCRVMxOzA5BgNVBAoTMkFnZW5jaWEgQ2F0YWxhbmEgZGUgQ2VydGlmaWNhY2lvIChOSUYgUS0w
+ODAxMTc2LUkpMSgwJgYDVQQLEx9TZXJ2ZWlzIFB1YmxpY3MgZGUgQ2VydGlmaWNhY2lvMTUwMwYD
+VQQLEyxWZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbCAoYykwMzE1MDMGA1UE
+CxMsSmVyYXJxdWlhIEVudGl0YXRzIGRlIENlcnRpZmljYWNpbyBDYXRhbGFuZXMxDzANBgNVBAMT
+BkVDLUFDQzAeFw0wMzAxMDcyMzAwMDBaFw0zMTAxMDcyMjU5NTlaMIHzMQswCQYDVQQGEwJFUzE7
+MDkGA1UEChMyQWdlbmNpYSBDYXRhbGFuYSBkZSBDZXJ0aWZpY2FjaW8gKE5JRiBRLTA4MDExNzYt
+SSkxKDAmBgNVBAsTH1NlcnZlaXMgUHVibGljcyBkZSBDZXJ0aWZpY2FjaW8xNTAzBgNVBAsTLFZl
+Z2V1IGh0dHBzOi8vd3d3LmNhdGNlcnQubmV0L3ZlcmFycmVsIChjKTAzMTUwMwYDVQQLEyxKZXJh
+cnF1aWEgRW50aXRhdHMgZGUgQ2VydGlmaWNhY2lvIENhdGFsYW5lczEPMA0GA1UEAxMGRUMtQUND
+MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsyLHT+KXQpWIR4NA9h0X84NzJB5R85iK
+w5K4/0CQBXCHYMkAqbWUZRkiFRfCQ2xmRJoNBD45b6VLeqpjt4pEndljkYRm4CgPukLjbo73FCeT
+ae6RDqNfDrHrZqJyTxIThmV6PttPB/SnCWDaOkKZx7J/sxaVHMf5NLWUhdWZXqBIoH7nF2W4onW4
+HvPlQn2v7fOKSGRdghST2MDk/7NQcvJ29rNdQlB50JQ+awwAvthrDk4q7D7SzIKiGGUzE3eeml0a
+E9jD2z3Il3rucO2n5nzbcc8tlGLfbdb1OL4/pYUKGbio2Al1QnDE6u/LDsg0qBIimAy4E5S2S+zw
+0JDnJwIDAQABo4HjMIHgMB0GA1UdEQQWMBSBEmVjX2FjY0BjYXRjZXJ0Lm5ldDAPBgNVHRMBAf8E
+BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUoMOLRKo3pUW/l4Ba0fF4opvpXY0wfwYD
+VR0gBHgwdjB0BgsrBgEEAfV4AQMBCjBlMCwGCCsGAQUFBwIBFiBodHRwczovL3d3dy5jYXRjZXJ0
+Lm5ldC92ZXJhcnJlbDA1BggrBgEFBQcCAjApGidWZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5l
+dC92ZXJhcnJlbCAwDQYJKoZIhvcNAQEFBQADggEBAKBIW4IB9k1IuDlVNZyAelOZ1Vr/sXE7zDkJ
+lF7W2u++AVtd0x7Y/X1PzaBB4DSTv8vihpw3kpBWHNzrKQXlxJ7HNd+KDM3FIUPpqojlNcAZQmNa
+Al6kSBg6hW/cnbw/nZzBh7h6YQjpdwt/cKt63dmXLGQehb+8dJahw3oS7AwaboMMPOhyRp/7SNVe
+l+axofjk70YllJyJ22k4vuxcDlbHZVHlUIiIv0LVKz3l+bqeLrPK9HOSAgu+TGbrIP65y7WZf+a2
+E/rKS03Z7lNGBjvGTq2TWoF+bCpLagVFjPIhpDGQh2xlnJ2lYJU6Un/10asIbvPuW/mIPX64b24D
+5EI=
+-----END CERTIFICATE-----
+
+Hellenic Academic and Research Institutions RootCA 2011
+=======================================================
+-----BEGIN CERTIFICATE-----
+MIIEMTCCAxmgAwIBAgIBADANBgkqhkiG9w0BAQUFADCBlTELMAkGA1UEBhMCR1IxRDBCBgNVBAoT
+O0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ2VydC4gQXV0aG9y
+aXR5MUAwPgYDVQQDEzdIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25z
+IFJvb3RDQSAyMDExMB4XDTExMTIwNjEzNDk1MloXDTMxMTIwMTEzNDk1MlowgZUxCzAJBgNVBAYT
+AkdSMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25z
+IENlcnQuIEF1dGhvcml0eTFAMD4GA1UEAxM3SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNo
+IEluc3RpdHV0aW9ucyBSb290Q0EgMjAxMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB
+AKlTAOMupvaO+mDYLZU++CwqVE7NuYRhlFhPjz2L5EPzdYmNUeTDN9KKiE15HrcS3UN4SoqS5tdI
+1Q+kOilENbgH9mgdVc04UfCMJDGFr4PJfel3r+0ae50X+bOdOFAPplp5kYCvN66m0zH7tSYJnTxa
+71HFK9+WXesyHgLacEnsbgzImjeN9/E2YEsmLIKe0HjzDQ9jpFEw4fkrJxIH2Oq9GGKYsFk3fb7u
+8yBRQlqD75O6aRXxYp2fmTmCobd0LovUxQt7L/DICto9eQqakxylKHJzkUOap9FNhYS5qXSPFEDH
+3N6sQWRstBmbAmNtJGSPRLIl6s5ddAxjMlyNh+UCAwEAAaOBiTCBhjAPBgNVHRMBAf8EBTADAQH/
+MAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQUppFC/RNhSiOeCKQp5dgTBCPuQSUwRwYDVR0eBEAwPqA8
+MAWCAy5ncjAFggMuZXUwBoIELmVkdTAGggQub3JnMAWBAy5ncjAFgQMuZXUwBoEELmVkdTAGgQQu
+b3JnMA0GCSqGSIb3DQEBBQUAA4IBAQAf73lB4XtuP7KMhjdCSk4cNx6NZrokgclPEg8hwAOXhiVt
+XdMiKahsog2p6z0GW5k6x8zDmjR/qw7IThzh+uTczQ2+vyT+bOdrwg3IBp5OjWEopmr95fZi6hg8
+TqBTnbI6nOulnJEWtk2C4AwFSKls9cz4y51JtPACpf1wA+2KIaWuE4ZJwzNzvoc7dIsXRSZMFpGD
+/md9zU1jZ/rzAxKWeAaNsWftjj++n08C9bMJL/NMh98qy5V8AcysNnq/onN694/BtZqhFLKPM58N
+7yLcZnuEvUUXBj08yrl3NI/K6s8/MT7jiOOASSXIl7WdmplNsDz4SgCbZN2fOUvRJ9e4
+-----END CERTIFICATE-----
+
+Actalis Authentication Root CA
+==============================
+-----BEGIN CERTIFICATE-----
+MIIFuzCCA6OgAwIBAgIIVwoRl0LE48wwDQYJKoZIhvcNAQELBQAwazELMAkGA1UEBhMCSVQxDjAM
+BgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8wMzM1ODUyMDk2NzEnMCUGA1UE
+AwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290IENBMB4XDTExMDkyMjExMjIwMloXDTMwMDky
+MjExMjIwMlowazELMAkGA1UEBhMCSVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlz
+IFMucC5BLi8wMzM1ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290
+IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAp8bEpSmkLO/lGMWwUKNvUTufClrJ
+wkg4CsIcoBh/kbWHuUA/3R1oHwiD1S0eiKD4j1aPbZkCkpAW1V8IbInX4ay8IMKx4INRimlNAJZa
+by/ARH6jDuSRzVju3PvHHkVH3Se5CAGfpiEd9UEtL0z9KK3giq0itFZljoZUj5NDKd45RnijMCO6
+zfB9E1fAXdKDa0hMxKufgFpbOr3JpyI/gCczWw63igxdBzcIy2zSekciRDXFzMwujt0q7bd9Zg1f
+YVEiVRvjRuPjPdA1YprbrxTIW6HMiRvhMCb8oJsfgadHHwTrozmSBp+Z07/T6k9QnBn+locePGX2
+oxgkg4YQ51Q+qDp2JE+BIcXjDwL4k5RHILv+1A7TaLndxHqEguNTVHnd25zS8gebLra8Pu2Fbe8l
+EfKXGkJh90qX6IuxEAf6ZYGyojnP9zz/GPvG8VqLWeICrHuS0E4UT1lF9gxeKF+w6D9Fz8+vm2/7
+hNN3WpVvrJSEnu68wEqPSpP4RCHiMUVhUE4Q2OM1fEwZtN4Fv6MGn8i1zeQf1xcGDXqVdFUNaBr8
+EBtiZJ1t4JWgw5QHVw0U5r0F+7if5t+L4sbnfpb2U8WANFAoWPASUHEXMLrmeGO89LKtmyuy/uE5
+jF66CyCU3nuDuP/jVo23Eek7jPKxwV2dpAtMK9myGPW1n0sCAwEAAaNjMGEwHQYDVR0OBBYEFFLY
+iDrIn3hm7YnzezhwlMkCAjbQMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUUtiIOsifeGbt
+ifN7OHCUyQICNtAwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQALe3KHwGCmSUyI
+WOYdiPcUZEim2FgKDk8TNd81HdTtBjHIgT5q1d07GjLukD0R0i70jsNjLiNmsGe+b7bAEzlgqqI0
+JZN1Ut6nna0Oh4lScWoWPBkdg/iaKWW+9D+a2fDzWochcYBNy+A4mz+7+uAwTc+G02UQGRjRlwKx
+K3JCaKygvU5a2hi/a5iB0P2avl4VSM0RFbnAKVy06Ij3Pjaut2L9HmLecHgQHEhb2rykOLpn7VU+
+Xlff1ANATIGk0k9jpwlCCRT8AKnCgHNPLsBA2RF7SOp6AsDT6ygBJlh0wcBzIm2Tlf05fbsq4/aC
+4yyXX04fkZT6/iyj2HYauE2yOE+b+h1IYHkm4vP9qdCa6HCPSXrW5b0KDtst842/6+OkfcvHlXHo
+2qN8xcL4dJIEG4aspCJTQLas/kx2z/uUMsA1n3Y/buWQbqCmJqK4LL7RK4X9p2jIugErsWx0Hbhz
+lefut8cl8ABMALJ+tguLHPPAUJ4lueAI3jZm/zel0btUZCzJJ7VLkn5l/9Mt4blOvH+kQSGQQXem
+OR/qnuOf0GZvBeyqdn6/axag67XH/JJULysRJyU3eExRarDzzFhdFPFqSBX/wge2sY0PjlxQRrM9
+vwGYT7JZVEc+NHt4bVaTLnPqZih4zR0Uv6CPLy64Lo7yFIrM6bV8+2ydDKXhlg==
+-----END CERTIFICATE-----
+
+Trustis FPS Root CA
+===================
+-----BEGIN CERTIFICATE-----
+MIIDZzCCAk+gAwIBAgIQGx+ttiD5JNM2a/fH8YygWTANBgkqhkiG9w0BAQUFADBFMQswCQYDVQQG
+EwJHQjEYMBYGA1UEChMPVHJ1c3RpcyBMaW1pdGVkMRwwGgYDVQQLExNUcnVzdGlzIEZQUyBSb290
+IENBMB4XDTAzMTIyMzEyMTQwNloXDTI0MDEyMTExMzY1NFowRTELMAkGA1UEBhMCR0IxGDAWBgNV
+BAoTD1RydXN0aXMgTGltaXRlZDEcMBoGA1UECxMTVHJ1c3RpcyBGUFMgUm9vdCBDQTCCASIwDQYJ
+KoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVQe547NdDfxIzNjpvto8A2mfRC6qc+gIMPpqdZh8mQ
+RUN+AOqGeSoDvT03mYlmt+WKVoaTnGhLaASMk5MCPjDSNzoiYYkchU59j9WvezX2fihHiTHcDnlk
+H5nSW7r+f2C/revnPDgpai/lkQtV/+xvWNUtyd5MZnGPDNcE2gfmHhjjvSkCqPoc4Vu5g6hBSLwa
+cY3nYuUtsuvffM/bq1rKMfFMIvMFE/eC+XN5DL7XSxzA0RU8k0Fk0ea+IxciAIleH2ulrG6nS4zt
+o3Lmr2NNL4XSFDWaLk6M6jKYKIahkQlBOrTh4/L68MkKokHdqeMDx4gVOxzUGpTXn2RZEm0CAwEA
+AaNTMFEwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBS6+nEleYtXQSUhhgtx67JkDoshZzAd
+BgNVHQ4EFgQUuvpxJXmLV0ElIYYLceuyZA6LIWcwDQYJKoZIhvcNAQEFBQADggEBAH5Y//01GX2c
+GE+esCu8jowU/yyg2kdbw++BLa8F6nRIW/M+TgfHbcWzk88iNVy2P3UnXwmWzaD+vkAMXBJV+JOC
+yinpXj9WV4s4NvdFGkwozZ5BuO1WTISkQMi4sKUraXAEasP41BIy+Q7DsdwyhEQsb8tGD+pmQQ9P
+8Vilpg0ND2HepZ5dfWWhPBfnqFVO76DH7cZEf1T1o+CP8HxVIo8ptoGj4W1OLBuAZ+ytIJ8MYmHV
+l/9D7S3B2l0pKoU/rGXuhg8FjZBf3+6f9L/uHfuY5H+QK4R4EA5sSVPvFVtlRkpdr7r7OnIdzfYl
+iB6XzCGcKQENZetX2fNXlrtIzYE=
+-----END CERTIFICATE-----
+
+StartCom Certification Authority
+================================
+-----BEGIN CERTIFICATE-----
+MIIHhzCCBW+gAwIBAgIBLTANBgkqhkiG9w0BAQsFADB9MQswCQYDVQQGEwJJTDEWMBQGA1UEChMN
+U3RhcnRDb20gTHRkLjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmlu
+ZzEpMCcGA1UEAxMgU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDYwOTE3MTk0
+NjM3WhcNMzYwOTE3MTk0NjM2WjB9MQswCQYDVQQGEwJJTDEWMBQGA1UEChMNU3RhcnRDb20gTHRk
+LjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmluZzEpMCcGA1UEAxMg
+U3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw
+ggIKAoICAQDBiNsJvGxGfHiflXu1M5DycmLWwTYgIiRezul38kMKogZkpMyONvg45iPwbm2xPN1y
+o4UcodM9tDMr0y+v/uqwQVlntsQGfQqedIXWeUyAN3rfOQVSWff0G0ZDpNKFhdLDcfN1YjS6LIp/
+Ho/u7TTQEceWzVI9ujPW3U3eCztKS5/CJi/6tRYccjV3yjxd5srhJosaNnZcAdt0FCX+7bWgiA/d
+eMotHweXMAEtcnn6RtYTKqi5pquDSR3l8u/d5AGOGAqPY1MWhWKpDhk6zLVmpsJrdAfkK+F2PrRt
+2PZE4XNiHzvEvqBTViVsUQn3qqvKv3b9bZvzndu/PWa8DFaqr5hIlTpL36dYUNk4dalb6kMMAv+Z
+6+hsTXBbKWWc3apdzK8BMewM69KN6Oqce+Zu9ydmDBpI125C4z/eIT574Q1w+2OqqGwaVLRcJXrJ
+osmLFqa7LH4XXgVNWG4SHQHuEhANxjJ/GP/89PrNbpHoNkm+Gkhpi8KWTRoSsmkXwQqQ1vp5Iki/
+untp+HDH+no32NgN0nZPV/+Qt+OR0t3vwmC3Zzrd/qqc8NSLf3Iizsafl7b4r4qgEKjZ+xjGtrVc
+UjyJthkqcwEKDwOzEmDyei+B26Nu/yYwl/WL3YlXtq09s68rxbd2AvCl1iuahhQqcvbjM4xdCUsT
+37uMdBNSSwIDAQABo4ICEDCCAgwwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYD
+VR0OBBYEFE4L7xqkQFulF2mHMMo0aEPQQa7yMB8GA1UdIwQYMBaAFE4L7xqkQFulF2mHMMo0aEPQ
+Qa7yMIIBWgYDVR0gBIIBUTCCAU0wggFJBgsrBgEEAYG1NwEBATCCATgwLgYIKwYBBQUHAgEWImh0
+dHA6Ly93d3cuc3RhcnRzc2wuY29tL3BvbGljeS5wZGYwNAYIKwYBBQUHAgEWKGh0dHA6Ly93d3cu
+c3RhcnRzc2wuY29tL2ludGVybWVkaWF0ZS5wZGYwgc8GCCsGAQUFBwICMIHCMCcWIFN0YXJ0IENv
+bW1lcmNpYWwgKFN0YXJ0Q29tKSBMdGQuMAMCAQEagZZMaW1pdGVkIExpYWJpbGl0eSwgcmVhZCB0
+aGUgc2VjdGlvbiAqTGVnYWwgTGltaXRhdGlvbnMqIG9mIHRoZSBTdGFydENvbSBDZXJ0aWZpY2F0
+aW9uIEF1dGhvcml0eSBQb2xpY3kgYXZhaWxhYmxlIGF0IGh0dHA6Ly93d3cuc3RhcnRzc2wuY29t
+L3BvbGljeS5wZGYwEQYJYIZIAYb4QgEBBAQDAgAHMDgGCWCGSAGG+EIBDQQrFilTdGFydENvbSBG
+cmVlIFNTTCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTANBgkqhkiG9w0BAQsFAAOCAgEAjo/n3JR5
+fPGFf59Jb2vKXfuM/gTFwWLRfUKKvFO3lANmMD+x5wqnUCBVJX92ehQN6wQOQOY+2IirByeDqXWm
+N3PH/UvSTa0XQMhGvjt/UfzDtgUx3M2FIk5xt/JxXrAaxrqTi3iSSoX4eA+D/i+tLPfkpLst0OcN
+Org+zvZ49q5HJMqjNTbOx8aHmNrs++myziebiMMEofYLWWivydsQD032ZGNcpRJvkrKTlMeIFw6T
+tn5ii5B/q06f/ON1FE8qMt9bDeD1e5MNq6HPh+GlBEXoPBKlCcWw0bdT82AUuoVpaiF8H3VhFyAX
+e2w7QSlc4axa0c2Mm+tgHRns9+Ww2vl5GKVFP0lDV9LdJNUso/2RjSe15esUBppMeyG7Oq0wBhjA
+2MFrLH9ZXF2RsXAiV+uKa0hK1Q8p7MZAwC+ITGgBF3f0JBlPvfrhsiAhS90a2Cl9qrjeVOwhVYBs
+HvUwyKMQ5bLmKhQxw4UtjJixhlpPiVktucf3HMiKf8CdBUrmQk9io20ppB+Fq9vlgcitKj1MXVuE
+JnHEhV5xJMqlG2zYYdMa4FTbzrqpMrUi9nNBCV24F10OD5mQ1kfabwo6YigUZ4LZ8dCAWZvLMdib
+D4x3TrVoivJs9iQOLWxwxXPR3hTQcY+203sC9uO41Alua551hDnmfyWl8kgAwKQB2j8=
+-----END CERTIFICATE-----
+
+StartCom Certification Authority G2
+===================================
+-----BEGIN CERTIFICATE-----
+MIIFYzCCA0ugAwIBAgIBOzANBgkqhkiG9w0BAQsFADBTMQswCQYDVQQGEwJJTDEWMBQGA1UEChMN
+U3RhcnRDb20gTHRkLjEsMCoGA1UEAxMjU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkg
+RzIwHhcNMTAwMTAxMDEwMDAxWhcNMzkxMjMxMjM1OTAxWjBTMQswCQYDVQQGEwJJTDEWMBQGA1UE
+ChMNU3RhcnRDb20gTHRkLjEsMCoGA1UEAxMjU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3Jp
+dHkgRzIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2iTZbB7cgNr2Cu+EWIAOVeq8O
+o1XJJZlKxdBWQYeQTSFgpBSHO839sj60ZwNq7eEPS8CRhXBF4EKe3ikj1AENoBB5uNsDvfOpL9HG
+4A/LnooUCri99lZi8cVytjIl2bLzvWXFDSxu1ZJvGIsAQRSCb0AgJnooD/Uefyf3lLE3PbfHkffi
+Aez9lInhzG7TNtYKGXmu1zSCZf98Qru23QumNK9LYP5/Q0kGi4xDuFby2X8hQxfqp0iVAXV16iul
+Q5XqFYSdCI0mblWbq9zSOdIxHWDirMxWRST1HFSr7obdljKF+ExP6JV2tgXdNiNnvP8V4so75qbs
+O+wmETRIjfaAKxojAuuKHDp2KntWFhxyKrOq42ClAJ8Em+JvHhRYW6Vsi1g8w7pOOlz34ZYrPu8H
+vKTlXcxNnw3h3Kq74W4a7I/htkxNeXJdFzULHdfBR9qWJODQcqhaX2YtENwvKhOuJv4KHBnM0D4L
+nMgJLvlblnpHnOl68wVQdJVznjAJ85eCXuaPOQgeWeU1FEIT/wCc976qUM/iUUjXuG+v+E5+M5iS
+FGI6dWPPe/regjupuznixL0sAA7IF6wT700ljtizkC+p2il9Ha90OrInwMEePnWjFqmveiJdnxMa
+z6eg6+OGCtP95paV1yPIN93EfKo2rJgaErHgTuixO/XWb/Ew1wIDAQABo0IwQDAPBgNVHRMBAf8E
+BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUS8W0QGutHLOlHGVuRjaJhwUMDrYwDQYJ
+KoZIhvcNAQELBQADggIBAHNXPyzVlTJ+N9uWkusZXn5T50HsEbZH77Xe7XRcxfGOSeD8bpkTzZ+K
+2s06Ctg6Wgk/XzTQLwPSZh0avZyQN8gMjgdalEVGKua+etqhqaRpEpKwfTbURIfXUfEpY9Z1zRbk
+J4kd+MIySP3bmdCPX1R0zKxnNBFi2QwKN4fRoxdIjtIXHfbX/dtl6/2o1PXWT6RbdejF0mCy2wl+
+JYt7ulKSnj7oxXehPOBKc2thz4bcQ///If4jXSRK9dNtD2IEBVeC2m6kMyV5Sy5UGYvMLD0w6dEG
+/+gyRr61M3Z3qAFdlsHB1b6uJcDJHgoJIIihDsnzb02CVAAgp9KP5DlUFy6NHrgbuxu9mk47EDTc
+nIhT76IxW1hPkWLIwpqazRVdOKnWvvgTtZ8SafJQYqz7Fzf07rh1Z2AQ+4NQ+US1dZxAF7L+/Xld
+blhYXzD8AK6vM8EOTmy6p6ahfzLbOOCxchcKK5HsamMm7YnUeMx0HgX4a/6ManY5Ka5lIxKVCCIc
+l85bBu4M4ru8H0ST9tg4RQUh7eStqxK2A6RCLi3ECToDZ2mEmuFZkIoohdVddLHRDiBYmxOlsGOm
+7XtH/UVVMKTumtTm4ofvmMkyghEpIrwACjFeLQ/Ajulrso8uBtjRkcfGEvRM/TAXw8HaOFvjqerm
+obp573PYtlNXLfbQ4ddI
+-----END CERTIFICATE-----
+
+Buypass Class 2 Root CA
+=======================
+-----BEGIN CERTIFICATE-----
+MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEdMBsGA1UECgwU
+QnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3MgQ2xhc3MgMiBSb290IENBMB4X
+DTEwMTAyNjA4MzgwM1oXDTQwMTAyNjA4MzgwM1owTjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1
+eXBhc3MgQVMtOTgzMTYzMzI3MSAwHgYDVQQDDBdCdXlwYXNzIENsYXNzIDIgUm9vdCBDQTCCAiIw
+DQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANfHXvfBB9R3+0Mh9PT1aeTuMgHbo4Yf5FkNuud1
+g1Lr6hxhFUi7HQfKjK6w3Jad6sNgkoaCKHOcVgb/S2TwDCo3SbXlzwx87vFKu3MwZfPVL4O2fuPn
+9Z6rYPnT8Z2SdIrkHJasW4DptfQxh6NR/Md+oW+OU3fUl8FVM5I+GC911K2GScuVr1QGbNgGE41b
+/+EmGVnAJLqBcXmQRFBoJJRfuLMR8SlBYaNByyM21cHxMlAQTn/0hpPshNOOvEu/XAFOBz3cFIqU
+CqTqc/sLUegTBxj6DvEr0VQVfTzh97QZQmdiXnfgolXsttlpF9U6r0TtSsWe5HonfOV116rLJeff
+awrbD02TTqigzXsu8lkBarcNuAeBfos4GzjmCleZPe4h6KP1DBbdi+w0jpwqHAAVF41og9JwnxgI
+zRFo1clrUs3ERo/ctfPYV3Me6ZQ5BL/T3jjetFPsaRyifsSP5BtwrfKi+fv3FmRmaZ9JUaLiFRhn
+Bkp/1Wy1TbMz4GHrXb7pmA8y1x1LPC5aAVKRCfLf6o3YBkBjqhHk/sM3nhRSP/TizPJhk9H9Z2vX
+Uq6/aKtAQ6BXNVN48FP4YUIHZMbXb5tMOA1jrGKvNouicwoN9SG9dKpN6nIDSdvHXx1iY8f93ZHs
+M+71bbRuMGjeyNYmsHVee7QHIJihdjK4TWxPAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYD
+VR0OBBYEFMmAd+BikoL1RpzzuvdMw964o605MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsF
+AAOCAgEAU18h9bqwOlI5LJKwbADJ784g7wbylp7ppHR/ehb8t/W2+xUbP6umwHJdELFx7rxP462s
+A20ucS6vxOOto70MEae0/0qyexAQH6dXQbLArvQsWdZHEIjzIVEpMMpghq9Gqx3tOluwlN5E40EI
+osHsHdb9T7bWR9AUC8rmyrV7d35BH16Dx7aMOZawP5aBQW9gkOLo+fsicdl9sz1Gv7SEr5AcD48S
+aq/v7h56rgJKihcrdv6sVIkkLE8/trKnToyokZf7KcZ7XC25y2a2t6hbElGFtQl+Ynhw/qlqYLYd
+DnkM/crqJIByw5c/8nerQyIKx+u2DISCLIBrQYoIwOula9+ZEsuK1V6ADJHgJgg2SMX6OBE1/yWD
+LfJ6v9r9jv6ly0UsH8SIU653DtmadsWOLB2jutXsMq7Aqqz30XpN69QH4kj3Io6wpJ9qzo6ysmD0
+oyLQI+uUWnpp3Q+/QFesa1lQ2aOZ4W7+jQF5JyMV3pKdewlNWudLSDBaGOYKbeaP4NK75t98biGC
+wWg5TbSYWGZizEqQXsP6JwSxeRV0mcy+rSDeJmAc61ZRpqPq5KM/p/9h3PFaTWwyI0PurKju7koS
+CTxdccK+efrCh2gdC/1cacwG0Jp9VJkqyTkaGa9LKkPzY11aWOIv4x3kqdbQCtCev9eBCfHJxyYN
+rJgWVqA=
+-----END CERTIFICATE-----
+
+Buypass Class 3 Root CA
+=======================
+-----BEGIN CERTIFICATE-----
+MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEdMBsGA1UECgwU
+QnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3MgQ2xhc3MgMyBSb290IENBMB4X
+DTEwMTAyNjA4Mjg1OFoXDTQwMTAyNjA4Mjg1OFowTjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1
+eXBhc3MgQVMtOTgzMTYzMzI3MSAwHgYDVQQDDBdCdXlwYXNzIENsYXNzIDMgUm9vdCBDQTCCAiIw
+DQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKXaCpUWUOOV8l6ddjEGMnqb8RB2uACatVI2zSRH
+sJ8YZLya9vrVediQYkwiL944PdbgqOkcLNt4EemOaFEVcsfzM4fkoF0LXOBXByow9c3EN3coTRiR
+5r/VUv1xLXA+58bEiuPwKAv0dpihi4dVsjoT/Lc+JzeOIuOoTyrvYLs9tznDDgFHmV0ST9tD+leh
+7fmdvhFHJlsTmKtdFoqwNxxXnUX/iJY2v7vKB3tvh2PX0DJq1l1sDPGzbjniazEuOQAnFN44wOwZ
+ZoYS6J1yFhNkUsepNxz9gjDthBgd9K5c/3ATAOux9TN6S9ZV+AWNS2mw9bMoNlwUxFFzTWsL8TQH
+2xc519woe2v1n/MuwU8XKhDzzMro6/1rqy6any2CbgTUUgGTLT2G/H783+9CHaZr77kgxve9oKeV
+/afmiSTYzIw0bOIjL9kSGiG5VZFvC5F5GQytQIgLcOJ60g7YaEi7ghM5EFjp2CoHxhLbWNvSO1UQ
+RwUVZ2J+GGOmRj8JDlQyXr8NYnon74Do29lLBlo3WiXQCBJ31G8JUJc9yB3D34xFMFbG02SrZvPA
+Xpacw8Tvw3xrizp5f7NJzz3iiZ+gMEuFuZyUJHmPfWupRWgPK9Dx2hzLabjKSWJtyNBjYt1gD1iq
+j6G8BaVmos8bdrKEZLFMOVLAMLrwjEsCsLa3AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYD
+VR0OBBYEFEe4zf/lb+74suwvTg75JbCOPGvDMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsF
+AAOCAgEAACAjQTUEkMJAYmDv4jVM1z+s4jSQuKFvdvoWFqRINyzpkMLyPPgKn9iB5btb2iUspKdV
+cSQy9sgL8rxq+JOssgfCX5/bzMiKqr5qb+FJEMwx14C7u8jYog5kV+qi9cKpMRXSIGrs/CIBKM+G
+uIAeqcwRpTzyFrNHnfzSgCHEy9BHcEGhyoMZCCxt8l13nIoUE9Q2HJLw5QY33KbmkJs4j1xrG0aG
+Q0JfPgEHU1RdZX33inOhmlRaHylDFCfChQ+1iHsaO5S3HWCntZznKWlXWpuTekMwGwPXYshApqr8
+ZORK15FTAaggiG6cX0S5y2CBNOxv033aSF/rtJC8LakcC6wc1aJoIIAE1vyxjy+7SjENSoYc6+I2
+KSb12tjE8nVhz36udmNKekBlk4f4HoCMhuWG1o8O/FMsYOgWYRqiPkN7zTlgVGr18okmAWiDSKIz
+6MkEkbIRNBE+6tBDGR8Dk5AM/1E9V/RBbuHLoL7ryWPNbczk+DaqaJ3tvV2XcEQNtg413OEMXbug
+UZTLfhbrES+jkkXITHHZvMmZUldGL1DPvTVp9D0VzgalLA8+9oG6lLvDu79leNKGef9JOxqDDPDe
+eOzI8k1MGt6CKfjBWtrt7uYnXuhF0J0cUahoq0Tj0Itq4/g7u9xN12TyUb7mqqta6THuBrxzvxNi
+Cp/HuZc=
+-----END CERTIFICATE-----
+
+T-TeleSec GlobalRoot Class 3
+============================
+-----BEGIN CERTIFICATE-----
+MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoM
+IlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBU
+cnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwHhcNMDgx
+MDAxMTAyOTU2WhcNMzMxMDAxMjM1OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lz
+dGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBD
+ZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwggEiMA0GCSqGSIb3
+DQEBAQUAA4IBDwAwggEKAoIBAQC9dZPwYiJvJK7genasfb3ZJNW4t/zN8ELg63iIVl6bmlQdTQyK
+9tPPcPRStdiTBONGhnFBSivwKixVA9ZIw+A5OO3yXDw/RLyTPWGrTs0NvvAgJ1gORH8EGoel15YU
+NpDQSXuhdfsaa3Ox+M6pCSzyU9XDFES4hqX2iys52qMzVNn6chr3IhUciJFrf2blw2qAsCTz34ZF
+iP0Zf3WHHx+xGwpzJFu5ZeAsVMhg02YXP+HMVDNzkQI6pn97djmiH5a2OK61yJN0HZ65tOVgnS9W
+0eDrXltMEnAMbEQgqxHY9Bn20pxSN+f6tsIxO0rUFJmtxxr1XV/6B7h8DR/Wgx6zAgMBAAGjQjBA
+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS1A/d2O2GCahKqGFPr
+AyGUv/7OyjANBgkqhkiG9w0BAQsFAAOCAQEAVj3vlNW92nOyWL6ukK2YJ5f+AbGwUgC4TeQbIXQb
+fsDuXmkqJa9c1h3a0nnJ85cp4IaH3gRZD/FZ1GSFS5mvJQQeyUapl96Cshtwn5z2r3Ex3XsFpSzT
+ucpH9sry9uetuUg/vBa3wW306gmv7PO15wWeph6KU1HWk4HMdJP2udqmJQV0eVp+QD6CSyYRMG7h
+P0HHRwA11fXT91Q+gT3aSWqas+8QPebrb9HIIkfLzM8BMZLZGOMivgkeGj5asuRrDFR6fUNOuIml
+e9eiPZaGzPImNC1qkp2aGtAw4l1OBLBfiyB+d8E9lYLRRpo7PHi4b6HQDWSieB4pTpPDpFQUWw==
+-----END CERTIFICATE-----
+
+EE Certification Centre Root CA
+===============================
+-----BEGIN CERTIFICATE-----
+MIIEAzCCAuugAwIBAgIQVID5oHPtPwBMyonY43HmSjANBgkqhkiG9w0BAQUFADB1MQswCQYDVQQG
+EwJFRTEiMCAGA1UECgwZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEoMCYGA1UEAwwfRUUgQ2Vy
+dGlmaWNhdGlvbiBDZW50cmUgUm9vdCBDQTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMCIYDzIw
+MTAxMDMwMTAxMDMwWhgPMjAzMDEyMTcyMzU5NTlaMHUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKDBlB
+UyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMSgwJgYDVQQDDB9FRSBDZXJ0aWZpY2F0aW9uIENlbnRy
+ZSBSb290IENBMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUwggEiMA0GCSqGSIb3DQEBAQUAA4IB
+DwAwggEKAoIBAQDIIMDs4MVLqwd4lfNE7vsLDP90jmG7sWLqI9iroWUyeuuOF0+W2Ap7kaJjbMeM
+TC55v6kF/GlclY1i+blw7cNRfdCT5mzrMEvhvH2/UpvObntl8jixwKIy72KyaOBhU8E2lf/slLo2
+rpwcpzIP5Xy0xm90/XsY6KxX7QYgSzIwWFv9zajmofxwvI6Sc9uXp3whrj3B9UiHbCe9nyV0gVWw
+93X2PaRka9ZP585ArQ/dMtO8ihJTmMmJ+xAdTX7Nfh9WDSFwhfYggx/2uh8Ej+p3iDXE/+pOoYtN
+P2MbRMNE1CV2yreN1x5KZmTNXMWcg+HCCIia7E6j8T4cLNlsHaFLAgMBAAGjgYowgYcwDwYDVR0T
+AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBLyWj7qVhy/zQas8fElyalL1BSZ
+MEUGA1UdJQQ+MDwGCCsGAQUFBwMCBggrBgEFBQcDAQYIKwYBBQUHAwMGCCsGAQUFBwMEBggrBgEF
+BQcDCAYIKwYBBQUHAwkwDQYJKoZIhvcNAQEFBQADggEBAHv25MANqhlHt01Xo/6tu7Fq1Q+e2+Rj
+xY6hUFaTlrg4wCQiZrxTFGGVv9DHKpY5P30osxBAIWrEr7BSdxjhlthWXePdNl4dp1BUoMUq5KqM
+lIpPnTX/dqQGE5Gion0ARD9V04I8GtVbvFZMIi5GQ4okQC3zErg7cBqklrkar4dBGmoYDQZPxz5u
+uSlNDUmJEYcyW+ZLBMjkXOZ0c5RdFpgTlf7727FE5TpwrDdr5rMzcijJs1eg9gIWiAYLtqZLICjU
+3j2LrTcFU3T+bsy8QxdxXvnFzBqpYe73dgzzcvRyrc9yAjYHR8/vGVCJYMzpJJUPwssd8m92kMfM
+dcGWxZ0=
+-----END CERTIFICATE-----
+
+TURKTRUST Certificate Services Provider Root 2007
+=================================================
+-----BEGIN CERTIFICATE-----
+MIIEPTCCAyWgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBvzE/MD0GA1UEAww2VMOcUktUUlVTVCBF
+bGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxMQswCQYDVQQGEwJUUjEP
+MA0GA1UEBwwGQW5rYXJhMV4wXAYDVQQKDFVUw5xSS1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUg
+QmlsacWfaW0gR8O8dmVubGnEn2kgSGl6bWV0bGVyaSBBLsWeLiAoYykgQXJhbMSxayAyMDA3MB4X
+DTA3MTIyNTE4MzcxOVoXDTE3MTIyMjE4MzcxOVowgb8xPzA9BgNVBAMMNlTDnFJLVFJVU1QgRWxl
+a3Ryb25payBTZXJ0aWZpa2EgSGl6bWV0IFNhxJ9sYXnEsWPEsXPEsTELMAkGA1UEBhMCVFIxDzAN
+BgNVBAcMBkFua2FyYTFeMFwGA1UECgxVVMOcUktUUlVTVCBCaWxnaSDEsGxldGnFn2ltIHZlIEJp
+bGnFn2ltIEfDvHZlbmxpxJ9pIEhpem1ldGxlcmkgQS7Fni4gKGMpIEFyYWzEsWsgMjAwNzCCASIw
+DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKu3PgqMyKVYFeaK7yc9SrToJdPNM8Ig3BnuiD9N
+YvDdE3ePYakqtdTyuTFYKTsvP2qcb3N2Je40IIDu6rfwxArNK4aUyeNgsURSsloptJGXg9i3phQv
+KUmi8wUG+7RP2qFsmmaf8EMJyupyj+sA1zU511YXRxcw9L6/P8JorzZAwan0qafoEGsIiveGHtya
+KhUG9qPw9ODHFNRRf8+0222vR5YXm3dx2KdxnSQM9pQ/hTEST7ruToK4uT6PIzdezKKqdfcYbwnT
+rqdUKDT74eA7YH2gvnmJhsifLfkKS8RQouf9eRbHegsYz85M733WB2+Y8a+xwXrXgTW4qhe04MsC
+AwEAAaNCMEAwHQYDVR0OBBYEFCnFkKslrxHkYb+j/4hhkeYO/pyBMA4GA1UdDwEB/wQEAwIBBjAP
+BgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQAQDdr4Ouwo0RSVgrESLFF6QSU2TJ/s
+Px+EnWVUXKgWAkD6bho3hO9ynYYKVZ1WKKxmLNA6VpM0ByWtCLCPyA8JWcqdmBzlVPi5RX9ql2+I
+aE1KBiY3iAIOtsbWcpnOa3faYjGkVh+uX4132l32iPwa2Z61gfAyuOOI0JzzaqC5mxRZNTZPz/OO
+Xl0XrRWV2N2y1RVuAE6zS89mlOTgzbUF2mNXi+WzqtvALhyQRNsaXRik7r4EW5nVcV9VZWRi1aKb
+BFmGyGJ353yCRWo9F7/snXUMrqNvWtMvmDb08PUZqxFdyKbjKlhqQgnDvZImZjINXQhVdP+MmNAK
+poRq0Tl9
+-----END CERTIFICATE-----
+
+D-TRUST Root Class 3 CA 2 2009
+==============================
+-----BEGIN CERTIFICATE-----
+MIIEMzCCAxugAwIBAgIDCYPzMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQK
+DAxELVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTAe
+Fw0wOTExMDUwODM1NThaFw0yOTExMDUwODM1NThaME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxE
+LVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTCCASIw
+DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOySs96R+91myP6Oi/WUEWJNTrGa9v+2wBoqOAD
+ER03UAifTUpolDWzU9GUY6cgVq/eUXjsKj3zSEhQPgrfRlWLJ23DEE0NkVJD2IfgXU42tSHKXzlA
+BF9bfsyjxiupQB7ZNoTWSPOSHjRGICTBpFGOShrvUD9pXRl/RcPHAY9RySPocq60vFYJfxLLHLGv
+KZAKyVXMD9O0Gu1HNVpK7ZxzBCHQqr0ME7UAyiZsxGsMlFqVlNpQmvH/pStmMaTJOKDfHR+4CS7z
+p+hnUquVH+BGPtikw8paxTGA6Eian5Rp/hnd2HN8gcqW3o7tszIFZYQ05ub9VxC1X3a/L7AQDcUC
+AwEAAaOCARowggEWMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFP3aFMSfMN4hvR5COfyrYyNJ
+4PGEMA4GA1UdDwEB/wQEAwIBBjCB0wYDVR0fBIHLMIHIMIGAoH6gfIZ6bGRhcDovL2RpcmVjdG9y
+eS5kLXRydXN0Lm5ldC9DTj1ELVRSVVNUJTIwUm9vdCUyMENsYXNzJTIwMyUyMENBJTIwMiUyMDIw
+MDksTz1ELVRydXN0JTIwR21iSCxDPURFP2NlcnRpZmljYXRlcmV2b2NhdGlvbmxpc3QwQ6BBoD+G
+PWh0dHA6Ly93d3cuZC10cnVzdC5uZXQvY3JsL2QtdHJ1c3Rfcm9vdF9jbGFzc18zX2NhXzJfMjAw
+OS5jcmwwDQYJKoZIhvcNAQELBQADggEBAH+X2zDI36ScfSF6gHDOFBJpiBSVYEQBrLLpME+bUMJm
+2H6NMLVwMeniacfzcNsgFYbQDfC+rAF1hM5+n02/t2A7nPPKHeJeaNijnZflQGDSNiH+0LS4F9p0
+o3/U37CYAqxva2ssJSRyoWXuJVrl5jLn8t+rSfrzkGkj2wTZ51xY/GXUl77M/C4KzCUqNQT4YJEV
+dT1B/yMfGchs64JTBKbkTCJNjYy6zltz7GRUUG3RnFX7acM2w4y8PIWmawomDeCTmGCufsYkl4ph
+X5GOZpIJhzbNi5stPvZR1FDUWSi9g/LMKHtThm3YJohw1+qRzT65ysCQblrGXnRl11z+o+I=
+-----END CERTIFICATE-----
+
+D-TRUST Root Class 3 CA 2 EV 2009
+=================================
+-----BEGIN CERTIFICATE-----
+MIIEQzCCAyugAwIBAgIDCYP0MA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQK
+DAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAw
+OTAeFw0wOTExMDUwODUwNDZaFw0yOTExMDUwODUwNDZaMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQK
+DAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAw
+OTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJnxhDRwui+3MKCOvXwEz75ivJn9gpfS
+egpnljgJ9hBOlSJzmY3aFS3nBfwZcyK3jpgAvDw9rKFs+9Z5JUut8Mxk2og+KbgPCdM03TP1YtHh
+zRnp7hhPTFiu4h7WDFsVWtg6uMQYZB7jM7K1iXdODL/ZlGsTl28So/6ZqQTMFexgaDbtCHu39b+T
+7WYxg4zGcTSHThfqr4uRjRxWQa4iN1438h3Z0S0NL2lRp75mpoo6Kr3HGrHhFPC+Oh25z1uxav60
+sUYgovseO3Dvk5h9jHOW8sXvhXCtKSb8HgQ+HKDYD8tSg2J87otTlZCpV6LqYQXY+U3EJ/pure35
+11H3a6UCAwEAAaOCASQwggEgMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNOUikxiEyoZLsyv
+cop9NteaHNxnMA4GA1UdDwEB/wQEAwIBBjCB3QYDVR0fBIHVMIHSMIGHoIGEoIGBhn9sZGFwOi8v
+ZGlyZWN0b3J5LmQtdHJ1c3QubmV0L0NOPUQtVFJVU1QlMjBSb290JTIwQ2xhc3MlMjAzJTIwQ0El
+MjAyJTIwRVYlMjAyMDA5LE89RC1UcnVzdCUyMEdtYkgsQz1ERT9jZXJ0aWZpY2F0ZXJldm9jYXRp
+b25saXN0MEagRKBChkBodHRwOi8vd3d3LmQtdHJ1c3QubmV0L2NybC9kLXRydXN0X3Jvb3RfY2xh
+c3NfM19jYV8yX2V2XzIwMDkuY3JsMA0GCSqGSIb3DQEBCwUAA4IBAQA07XtaPKSUiO8aEXUHL7P+
+PPoeUSbrh/Yp3uDx1MYkCenBz1UbtDDZzhr+BlGmFaQt77JLvyAoJUnRpjZ3NOhk31KxEcdzes05
+nsKtjHEh8lprr988TlWvsoRlFIm5d8sqMb7Po23Pb0iUMkZv53GMoKaEGTcH8gNFCSuGdXzfX2lX
+ANtu2KZyIktQ1HWYVt+3GP9DQ1CuekR78HlR10M9p9OB0/DJT7naxpeG0ILD5EJt/rDiZE4OJudA
+NCa1CInXCGNjOCd1HjPqbqjdn5lPdE2BiYBL3ZqXKVwvvoFBuYz/6n1gBp7N1z3TLqMVvKjmJuVv
+w9y4AyHqnxbxLFS1
+-----END CERTIFICATE-----
+
+PSCProcert
+==========
+-----BEGIN CERTIFICATE-----
+MIIJhjCCB26gAwIBAgIBCzANBgkqhkiG9w0BAQsFADCCAR4xPjA8BgNVBAMTNUF1dG9yaWRhZCBk
+ZSBDZXJ0aWZpY2FjaW9uIFJhaXogZGVsIEVzdGFkbyBWZW5lem9sYW5vMQswCQYDVQQGEwJWRTEQ
+MA4GA1UEBxMHQ2FyYWNhczEZMBcGA1UECBMQRGlzdHJpdG8gQ2FwaXRhbDE2MDQGA1UEChMtU2lz
+dGVtYSBOYWNpb25hbCBkZSBDZXJ0aWZpY2FjaW9uIEVsZWN0cm9uaWNhMUMwQQYDVQQLEzpTdXBl
+cmludGVuZGVuY2lhIGRlIFNlcnZpY2lvcyBkZSBDZXJ0aWZpY2FjaW9uIEVsZWN0cm9uaWNhMSUw
+IwYJKoZIhvcNAQkBFhZhY3JhaXpAc3VzY2VydGUuZ29iLnZlMB4XDTEwMTIyODE2NTEwMFoXDTIw
+MTIyNTIzNTk1OVowgdExJjAkBgkqhkiG9w0BCQEWF2NvbnRhY3RvQHByb2NlcnQubmV0LnZlMQ8w
+DQYDVQQHEwZDaGFjYW8xEDAOBgNVBAgTB01pcmFuZGExKjAoBgNVBAsTIVByb3ZlZWRvciBkZSBD
+ZXJ0aWZpY2Fkb3MgUFJPQ0VSVDE2MDQGA1UEChMtU2lzdGVtYSBOYWNpb25hbCBkZSBDZXJ0aWZp
+Y2FjaW9uIEVsZWN0cm9uaWNhMQswCQYDVQQGEwJWRTETMBEGA1UEAxMKUFNDUHJvY2VydDCCAiIw
+DQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANW39KOUM6FGqVVhSQ2oh3NekS1wwQYalNo97BVC
+wfWMrmoX8Yqt/ICV6oNEolt6Vc5Pp6XVurgfoCfAUFM+jbnADrgV3NZs+J74BCXfgI8Qhd19L3uA
+3VcAZCP4bsm+lU/hdezgfl6VzbHvvnpC2Mks0+saGiKLt38GieU89RLAu9MLmV+QfI4tL3czkkoh
+RqipCKzx9hEC2ZUWno0vluYC3XXCFCpa1sl9JcLB/KpnheLsvtF8PPqv1W7/U0HU9TI4seJfxPmO
+EO8GqQKJ/+MMbpfg353bIdD0PghpbNjU5Db4g7ayNo+c7zo3Fn2/omnXO1ty0K+qP1xmk6wKImG2
+0qCZyFSTXai20b1dCl53lKItwIKOvMoDKjSuc/HUtQy9vmebVOvh+qBa7Dh+PsHMosdEMXXqP+UH
+0quhJZb25uSgXTcYOWEAM11G1ADEtMo88aKjPvM6/2kwLkDd9p+cJsmWN63nOaK/6mnbVSKVUyqU
+td+tFjiBdWbjxywbk5yqjKPK2Ww8F22c3HxT4CAnQzb5EuE8XL1mv6JpIzi4mWCZDlZTOpx+FIyw
+Bm/xhnaQr/2v/pDGj59/i5IjnOcVdo/Vi5QTcmn7K2FjiO/mpF7moxdqWEfLcU8UC17IAggmosvp
+r2uKGcfLFFb14dq12fy/czja+eevbqQ34gcnAgMBAAGjggMXMIIDEzASBgNVHRMBAf8ECDAGAQH/
+AgEBMDcGA1UdEgQwMC6CD3N1c2NlcnRlLmdvYi52ZaAbBgVghl4CAqASDBBSSUYtRy0yMDAwNDAz
+Ni0wMB0GA1UdDgQWBBRBDxk4qpl/Qguk1yeYVKIXTC1RVDCCAVAGA1UdIwSCAUcwggFDgBStuyId
+xuDSAaj9dlBSk+2YwU2u06GCASakggEiMIIBHjE+MDwGA1UEAxM1QXV0b3JpZGFkIGRlIENlcnRp
+ZmljYWNpb24gUmFpeiBkZWwgRXN0YWRvIFZlbmV6b2xhbm8xCzAJBgNVBAYTAlZFMRAwDgYDVQQH
+EwdDYXJhY2FzMRkwFwYDVQQIExBEaXN0cml0byBDYXBpdGFsMTYwNAYDVQQKEy1TaXN0ZW1hIE5h
+Y2lvbmFsIGRlIENlcnRpZmljYWNpb24gRWxlY3Ryb25pY2ExQzBBBgNVBAsTOlN1cGVyaW50ZW5k
+ZW5jaWEgZGUgU2VydmljaW9zIGRlIENlcnRpZmljYWNpb24gRWxlY3Ryb25pY2ExJTAjBgkqhkiG
+9w0BCQEWFmFjcmFpekBzdXNjZXJ0ZS5nb2IudmWCAQowDgYDVR0PAQH/BAQDAgEGME0GA1UdEQRG
+MESCDnByb2NlcnQubmV0LnZloBUGBWCGXgIBoAwMClBTQy0wMDAwMDKgGwYFYIZeAgKgEgwQUklG
+LUotMzE2MzUzNzMtNzB2BgNVHR8EbzBtMEagRKBChkBodHRwOi8vd3d3LnN1c2NlcnRlLmdvYi52
+ZS9sY3IvQ0VSVElGSUNBRE8tUkFJWi1TSEEzODRDUkxERVIuY3JsMCOgIaAfhh1sZGFwOi8vYWNy
+YWl6LnN1c2NlcnRlLmdvYi52ZTA3BggrBgEFBQcBAQQrMCkwJwYIKwYBBQUHMAGGG2h0dHA6Ly9v
+Y3NwLnN1c2NlcnRlLmdvYi52ZTBBBgNVHSAEOjA4MDYGBmCGXgMBAjAsMCoGCCsGAQUFBwIBFh5o
+dHRwOi8vd3d3LnN1c2NlcnRlLmdvYi52ZS9kcGMwDQYJKoZIhvcNAQELBQADggIBACtZ6yKZu4Sq
+T96QxtGGcSOeSwORR3C7wJJg7ODU523G0+1ng3dS1fLld6c2suNUvtm7CpsR72H0xpkzmfWvADmN
+g7+mvTV+LFwxNG9s2/NkAZiqlCxB3RWGymspThbASfzXg0gTB1GEMVKIu4YXx2sviiCtxQuPcD4q
+uxtxj7mkoP3YldmvWb8lK5jpY5MvYB7Eqvh39YtsL+1+LrVPQA3uvFd359m21D+VJzog1eWuq2w1
+n8GhHVnchIHuTQfiSLaeS5UtQbHh6N5+LwUeaO6/u5BlOsju6rEYNxxik6SgMexxbJHmpHmJWhSn
+FFAFTKQAVzAswbVhltw+HoSvOULP5dAssSS830DD7X9jSr3hTxJkhpXzsOfIt+FTvZLm8wyWuevo
+5pLtp4EJFAv8lXrPj9Y0TzYS3F7RNHXGRoAvlQSMx4bEqCaJqD8Zm4G7UaRKhqsLEQ+xrmNTbSjq
+3TNWOByyrYDT13K9mmyZY+gAu0F2BbdbmRiKw7gSXFbPVgx96OLP7bx0R/vu0xdOIk9W/1DzLuY5
+poLWccret9W6aAjtmcz9opLLabid+Qqkpj5PkygqYWwHJgD/ll9ohri4zspV4KuxPX+Y1zMOWj3Y
+eMLEYC/HYvBhkdI4sPaeVdtAgAUSM84dkpvRabP/v/GSCmE1P93+hvS84Bpxs2Km
+-----END CERTIFICATE-----
+
+China Internet Network Information Center EV Certificates Root
+==============================================================
+-----BEGIN CERTIFICATE-----
+MIID9zCCAt+gAwIBAgIESJ8AATANBgkqhkiG9w0BAQUFADCBijELMAkGA1UEBhMCQ04xMjAwBgNV
+BAoMKUNoaW5hIEludGVybmV0IE5ldHdvcmsgSW5mb3JtYXRpb24gQ2VudGVyMUcwRQYDVQQDDD5D
+aGluYSBJbnRlcm5ldCBOZXR3b3JrIEluZm9ybWF0aW9uIENlbnRlciBFViBDZXJ0aWZpY2F0ZXMg
+Um9vdDAeFw0xMDA4MzEwNzExMjVaFw0zMDA4MzEwNzExMjVaMIGKMQswCQYDVQQGEwJDTjEyMDAG
+A1UECgwpQ2hpbmEgSW50ZXJuZXQgTmV0d29yayBJbmZvcm1hdGlvbiBDZW50ZXIxRzBFBgNVBAMM
+PkNoaW5hIEludGVybmV0IE5ldHdvcmsgSW5mb3JtYXRpb24gQ2VudGVyIEVWIENlcnRpZmljYXRl
+cyBSb290MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAm35z7r07eKpkQ0H1UN+U8i6y
+jUqORlTSIRLIOTJCBumD1Z9S7eVnAztUwYyZmczpwA//DdmEEbK40ctb3B75aDFk4Zv6dOtouSCV
+98YPjUesWgbdYavi7NifFy2cyjw1l1VxzUOFsUcW9SxTgHbP0wBkvUCZ3czY28Sf1hNfQYOL+Q2H
+klY0bBoQCxfVWhyXWIQ8hBouXJE0bhlffxdpxWXvayHG1VA6v2G5BY3vbzQ6sm8UY78WO5upKv23
+KzhmBsUs4qpnHkWnjQRmQvaPK++IIGmPMowUc9orhpFjIpryp9vOiYurXccUwVswah+xt54ugQEC
+7c+WXmPbqOY4twIDAQABo2MwYTAfBgNVHSMEGDAWgBR8cks5x8DbYqVPm6oYNJKiyoOCWTAPBgNV
+HRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUfHJLOcfA22KlT5uqGDSSosqD
+glkwDQYJKoZIhvcNAQEFBQADggEBACrDx0M3j92tpLIM7twUbY8opJhJywyA6vPtI2Z1fcXTIWd5
+0XPFtQO3WKwMVC/GVhMPMdoG52U7HW8228gd+f2ABsqjPWYWqJ1MFn3AlUa1UeTiH9fqBk1jjZaM
+7+czV0I664zBechNdn3e9rG3geCg+aF4RhcaVpjwTj2rHO3sOdwHSPdj/gauwqRcalsyiMXHM4Ws
+ZkJHwlgkmeHlPuV1LI5D1l08eB6olYIpUNHRFrrvwb562bTYzB5MRuF3sTGrvSrIzo9uoV1/A3U0
+5K2JRVRevq4opbs/eHnrc7MKDf2+yfdWrPa37S+bISnHOLaVxATywy39FCqQmbkHzJ8=
+-----END CERTIFICATE-----
+
+Swisscom Root CA 2
+==================
+-----BEGIN CERTIFICATE-----
+MIIF2TCCA8GgAwIBAgIQHp4o6Ejy5e/DfEoeWhhntjANBgkqhkiG9w0BAQsFADBkMQswCQYDVQQG
+EwJjaDERMA8GA1UEChMIU3dpc3Njb20xJTAjBgNVBAsTHERpZ2l0YWwgQ2VydGlmaWNhdGUgU2Vy
+dmljZXMxGzAZBgNVBAMTElN3aXNzY29tIFJvb3QgQ0EgMjAeFw0xMTA2MjQwODM4MTRaFw0zMTA2
+MjUwNzM4MTRaMGQxCzAJBgNVBAYTAmNoMREwDwYDVQQKEwhTd2lzc2NvbTElMCMGA1UECxMcRGln
+aXRhbCBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEbMBkGA1UEAxMSU3dpc3Njb20gUm9vdCBDQSAyMIIC
+IjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAlUJOhJ1R5tMJ6HJaI2nbeHCOFvErjw0DzpPM
+LgAIe6szjPTpQOYXTKueuEcUMncy3SgM3hhLX3af+Dk7/E6J2HzFZ++r0rk0X2s682Q2zsKwzxNo
+ysjL67XiPS4h3+os1OD5cJZM/2pYmLcX5BtS5X4HAB1f2uY+lQS3aYg5oUFgJWFLlTloYhyxCwWJ
+wDaCFCE/rtuh/bxvHGCGtlOUSbkrRsVPACu/obvLP+DHVxxX6NZp+MEkUp2IVd3Chy50I9AU/SpH
+Wrumnf2U5NGKpV+GY3aFy6//SSj8gO1MedK75MDvAe5QQQg1I3ArqRa0jG6F6bYRzzHdUyYb3y1a
+SgJA/MTAtukxGggo5WDDH8SQjhBiYEQN7Aq+VRhxLKX0srwVYv8c474d2h5Xszx+zYIdkeNL6yxS
+NLCK/RJOlrDrcH+eOfdmQrGrrFLadkBXeyq96G4DsguAhYidDMfCd7Camlf0uPoTXGiTOmekl9Ab
+mbeGMktg2M7v0Ax/lZ9vh0+Hio5fCHyqW/xavqGRn1V9TrALacywlKinh/LTSlDcX3KwFnUey7QY
+Ypqwpzmqm59m2I2mbJYV4+by+PGDYmy7Velhk6M99bFXi08jsJvllGov34zflVEpYKELKeRcVVi3
+qPyZ7iVNTA6z00yPhOgpD/0QVAKFyPnlw4vP5w8CAwEAAaOBhjCBgzAOBgNVHQ8BAf8EBAMCAYYw
+HQYDVR0hBBYwFDASBgdghXQBUwIBBgdghXQBUwIBMBIGA1UdEwEB/wQIMAYBAf8CAQcwHQYDVR0O
+BBYEFE0mICKJS9PVpAqhb97iEoHF8TwuMB8GA1UdIwQYMBaAFE0mICKJS9PVpAqhb97iEoHF8Twu
+MA0GCSqGSIb3DQEBCwUAA4ICAQAyCrKkG8t9voJXiblqf/P0wS4RfbgZPnm3qKhyN2abGu2sEzsO
+v2LwnN+ee6FTSA5BesogpxcbtnjsQJHzQq0Qw1zv/2BZf82Fo4s9SBwlAjxnffUy6S8w5X2lejjQ
+82YqZh6NM4OKb3xuqFp1mrjX2lhIREeoTPpMSQpKwhI3qEAMw8jh0FcNlzKVxzqfl9NX+Ave5XLz
+o9v/tdhZsnPdTSpxsrpJ9csc1fV5yJmz/MFMdOO0vSk3FQQoHt5FRnDsr7p4DooqzgB53MBfGWcs
+a0vvaGgLQ+OswWIJ76bdZWGgr4RVSJFSHMYlkSrQwSIjYVmvRRGFHQEkNI/Ps/8XciATwoCqISxx
+OQ7Qj1zB09GOInJGTB2Wrk9xseEFKZZZ9LuedT3PDTcNYtsmjGOpI99nBjx8Oto0QuFmtEYE3saW
+mA9LSHokMnWRn6z3aOkquVVlzl1h0ydw2Df+n7mvoC5Wt6NlUe07qxS/TFED6F+KBZvuim6c779o
++sjaC+NCydAXFJy3SuCvkychVSa1ZC+N8f+mQAWFBVzKBxlcCxMoTFh/wqXvRdpg065lYZ1Tg3TC
+rvJcwhbtkj6EPnNgiLx29CzP0H1907he0ZESEOnN3col49XtmS++dYFLJPlFRpTJKSFTnCZFqhMX
+5OfNeOI5wSsSnqaeG8XmDtkx2Q==
+-----END CERTIFICATE-----
+
+Swisscom Root EV CA 2
+=====================
+-----BEGIN CERTIFICATE-----
+MIIF4DCCA8igAwIBAgIRAPL6ZOJ0Y9ON/RAdBB92ylgwDQYJKoZIhvcNAQELBQAwZzELMAkGA1UE
+BhMCY2gxETAPBgNVBAoTCFN3aXNzY29tMSUwIwYDVQQLExxEaWdpdGFsIENlcnRpZmljYXRlIFNl
+cnZpY2VzMR4wHAYDVQQDExVTd2lzc2NvbSBSb290IEVWIENBIDIwHhcNMTEwNjI0MDk0NTA4WhcN
+MzEwNjI1MDg0NTA4WjBnMQswCQYDVQQGEwJjaDERMA8GA1UEChMIU3dpc3Njb20xJTAjBgNVBAsT
+HERpZ2l0YWwgQ2VydGlmaWNhdGUgU2VydmljZXMxHjAcBgNVBAMTFVN3aXNzY29tIFJvb3QgRVYg
+Q0EgMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMT3HS9X6lds93BdY7BxUglgRCgz
+o3pOCvrY6myLURYaVa5UJsTMRQdBTxB5f3HSek4/OE6zAMaVylvNwSqD1ycfMQ4jFrclyxy0uYAy
+Xhqdk/HoPGAsp15XGVhRXrwsVgu42O+LgrQ8uMIkqBPHoCE2G3pXKSinLr9xJZDzRINpUKTk4Rti
+GZQJo/PDvO/0vezbE53PnUgJUmfANykRHvvSEaeFGHR55E+FFOtSN+KxRdjMDUN/rhPSays/p8Li
+qG12W0OfvrSdsyaGOx9/5fLoZigWJdBLlzin5M8J0TbDC77aO0RYjb7xnglrPvMyxyuHxuxenPaH
+Za0zKcQvidm5y8kDnftslFGXEBuGCxobP/YCfnvUxVFkKJ3106yDgYjTdLRZncHrYTNaRdHLOdAG
+alNgHa/2+2m8atwBz735j9m9W8E6X47aD0upm50qKGsaCnw8qyIL5XctcfaCNYGu+HuB5ur+rPQa
+m3Rc6I8k9l2dRsQs0h4rIWqDJ2dVSqTjyDKXZpBy2uPUZC5f46Fq9mDU5zXNysRojddxyNMkM3Ox
+bPlq4SjbX8Y96L5V5jcb7STZDxmPX2MYWFCBUWVv8p9+agTnNCRxunZLWB4ZvRVgRaoMEkABnRDi
+xzgHcgplwLa7JSnaFp6LNYth7eVxV4O1PHGf40+/fh6Bn0GXAgMBAAGjgYYwgYMwDgYDVR0PAQH/
+BAQDAgGGMB0GA1UdIQQWMBQwEgYHYIV0AVMCAgYHYIV0AVMCAjASBgNVHRMBAf8ECDAGAQH/AgED
+MB0GA1UdDgQWBBRF2aWBbj2ITY1x0kbBbkUe88SAnTAfBgNVHSMEGDAWgBRF2aWBbj2ITY1x0kbB
+bkUe88SAnTANBgkqhkiG9w0BAQsFAAOCAgEAlDpzBp9SSzBc1P6xXCX5145v9Ydkn+0UjrgEjihL
+j6p7jjm02Vj2e6E1CqGdivdj5eu9OYLU43otb98TPLr+flaYC/NUn81ETm484T4VvwYmneTwkLbU
+wp4wLh/vx3rEUMfqe9pQy3omywC0Wqu1kx+AiYQElY2NfwmTv9SoqORjbdlk5LgpWgi/UOGED1V7
+XwgiG/W9mR4U9s70WBCCswo9GcG/W6uqmdjyMb3lOGbcWAXH7WMaLgqXfIeTK7KK4/HsGOV1timH
+59yLGn602MnTihdsfSlEvoqq9X46Lmgxk7lq2prg2+kupYTNHAq4Sgj5nPFhJpiTt3tm7JFe3VE/
+23MPrQRYCd0EApUKPtN236YQHoA96M2kZNEzx5LH4k5E4wnJTsJdhw4Snr8PyQUQ3nqjsTzyP6Wq
+J3mtMX0f/fwZacXduT98zca0wjAefm6S139hdlqP65VNvBFuIXxZN5nQBrz5Bm0yFqXZaajh3DyA
+HmBR3NdUIR7KYndP+tiPsys6DXhyyWhBWkdKwqPrGtcKqzwyVcgKEZzfdNbwQBUdyLmPtTbFr/gi
+uMod89a2GQ+fYWVq6nTIfI/DT11lgh/ZDYnadXL77/FHZxOzyNEZiCcmmpl5fx7kLD977vHeTYuW
+l8PVP3wbI+2ksx0WckNLIOFZfsLorSa/ovc=
+-----END CERTIFICATE-----
+
+CA Disig Root R1
+================
+-----BEGIN CERTIFICATE-----
+MIIFaTCCA1GgAwIBAgIJAMMDmu5QkG4oMA0GCSqGSIb3DQEBBQUAMFIxCzAJBgNVBAYTAlNLMRMw
+EQYDVQQHEwpCcmF0aXNsYXZhMRMwEQYDVQQKEwpEaXNpZyBhLnMuMRkwFwYDVQQDExBDQSBEaXNp
+ZyBSb290IFIxMB4XDTEyMDcxOTA5MDY1NloXDTQyMDcxOTA5MDY1NlowUjELMAkGA1UEBhMCU0sx
+EzARBgNVBAcTCkJyYXRpc2xhdmExEzARBgNVBAoTCkRpc2lnIGEucy4xGTAXBgNVBAMTEENBIERp
+c2lnIFJvb3QgUjEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCqw3j33Jijp1pedxiy
+3QRkD2P9m5YJgNXoqqXinCaUOuiZc4yd39ffg/N4T0Dhf9Kn0uXKE5Pn7cZ3Xza1lK/oOI7bm+V8
+u8yN63Vz4STN5qctGS7Y1oprFOsIYgrY3LMATcMjfF9DCCMyEtztDK3AfQ+lekLZWnDZv6fXARz2
+m6uOt0qGeKAeVjGu74IKgEH3G8muqzIm1Cxr7X1r5OJeIgpFy4QxTaz+29FHuvlglzmxZcfe+5nk
+CiKxLU3lSCZpq+Kq8/v8kiky6bM+TR8noc2OuRf7JT7JbvN32g0S9l3HuzYQ1VTW8+DiR0jm3hTa
+YVKvJrT1cU/J19IG32PK/yHoWQbgCNWEFVP3Q+V8xaCJmGtzxmjOZd69fwX3se72V6FglcXM6pM6
+vpmumwKjrckWtc7dXpl4fho5frLABaTAgqWjR56M6ly2vGfb5ipN0gTco65F97yLnByn1tUD3AjL
+LhbKXEAz6GfDLuemROoRRRw1ZS0eRWEkG4IupZ0zXWX4Qfkuy5Q/H6MMMSRE7cderVC6xkGbrPAX
+ZcD4XW9boAo0PO7X6oifmPmvTiT6l7Jkdtqr9O3jw2Dv1fkCyC2fg69naQanMVXVz0tv/wQFx1is
+XxYb5dKj6zHbHzMVTdDypVP1y+E9Tmgt2BLdqvLmTZtJ5cUoobqwWsagtQIDAQABo0IwQDAPBgNV
+HRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUiQq0OJMa5qvum5EY+fU8PjXQ
+04IwDQYJKoZIhvcNAQEFBQADggIBADKL9p1Kyb4U5YysOMo6CdQbzoaz3evUuii+Eq5FLAR0rBNR
+xVgYZk2C2tXck8An4b58n1KeElb21Zyp9HWc+jcSjxyT7Ff+Bw+r1RL3D65hXlaASfX8MPWbTx9B
+LxyE04nH4toCdu0Jz2zBuByDHBb6lM19oMgY0sidbvW9adRtPTXoHqJPYNcHKfyyo6SdbhWSVhlM
+CrDpfNIZTUJG7L399ldb3Zh+pE3McgODWF3vkzpBemOqfDqo9ayk0d2iLbYq/J8BjuIQscTK5Gfb
+VSUZP/3oNn6z4eGBrxEWi1CXYBmCAMBrTXO40RMHPuq2MU/wQppt4hF05ZSsjYSVPCGvxdpHyN85
+YmLLW1AL14FABZyb7bq2ix4Eb5YgOe2kfSnbSM6C3NQCjR0EMVrHS/BsYVLXtFHCgWzN4funodKS
+ds+xDzdYpPJScWc/DIh4gInByLUfkmO+p3qKViwaqKactV2zY9ATIKHrkWzQjX2v3wvkF7mGnjix
+lAxYjOBVqjtjbZqJYLhkKpLGN/R+Q0O3c+gB53+XD9fyexn9GtePyfqFa3qdnom2piiZk4hA9z7N
+UaPK6u95RyG1/jLix8NRb76AdPCkwzryT+lf3xkK8jsTQ6wxpLPn6/wY1gGp8yqPNg7rtLG8t0zJ
+a7+h89n07eLw4+1knj0vllJPgFOL
+-----END CERTIFICATE-----
+
+CA Disig Root R2
+================
+-----BEGIN CERTIFICATE-----
+MIIFaTCCA1GgAwIBAgIJAJK4iNuwisFjMA0GCSqGSIb3DQEBCwUAMFIxCzAJBgNVBAYTAlNLMRMw
+EQYDVQQHEwpCcmF0aXNsYXZhMRMwEQYDVQQKEwpEaXNpZyBhLnMuMRkwFwYDVQQDExBDQSBEaXNp
+ZyBSb290IFIyMB4XDTEyMDcxOTA5MTUzMFoXDTQyMDcxOTA5MTUzMFowUjELMAkGA1UEBhMCU0sx
+EzARBgNVBAcTCkJyYXRpc2xhdmExEzARBgNVBAoTCkRpc2lnIGEucy4xGTAXBgNVBAMTEENBIERp
+c2lnIFJvb3QgUjIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCio8QACdaFXS1tFPbC
+w3OeNcJxVX6B+6tGUODBfEl45qt5WDza/3wcn9iXAng+a0EE6UG9vgMsRfYvZNSrXaNHPWSb6Wia
+xswbP7q+sos0Ai6YVRn8jG+qX9pMzk0DIaPY0jSTVpbLTAwAFjxfGs3Ix2ymrdMxp7zo5eFm1tL7
+A7RBZckQrg4FY8aAamkw/dLukO8NJ9+flXP04SXabBbeQTg06ov80egEFGEtQX6sx3dOy1FU+16S
+GBsEWmjGycT6txOgmLcRK7fWV8x8nhfRyyX+hk4kLlYMeE2eARKmK6cBZW58Yh2EhN/qwGu1pSqV
+g8NTEQxzHQuyRpDRQjrOQG6Vrf/GlK1ul4SOfW+eioANSW1z4nuSHsPzwfPrLgVv2RvPN3YEyLRa
+5Beny912H9AZdugsBbPWnDTYltxhh5EF5EQIM8HauQhl1K6yNg3ruji6DOWbnuuNZt2Zz9aJQfYE
+koopKW1rOhzndX0CcQ7zwOe9yxndnWCywmZgtrEE7snmhrmaZkCo5xHtgUUDi/ZnWejBBhG93c+A
+Ak9lQHhcR1DIm+YfgXvkRKhbhZri3lrVx/k6RGZL5DJUfORsnLMOPReisjQS1n6yqEm70XooQL6i
+Fh/f5DcfEXP7kAplQ6INfPgGAVUzfbANuPT1rqVCV3w2EYx7XsQDnYx5nQIDAQABo0IwQDAPBgNV
+HRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUtZn4r7CU9eMg1gqtzk5WpC5u
+Qu0wDQYJKoZIhvcNAQELBQADggIBACYGXnDnZTPIgm7ZnBc6G3pmsgH2eDtpXi/q/075KMOYKmFM
+tCQSin1tERT3nLXK5ryeJ45MGcipvXrA1zYObYVybqjGom32+nNjf7xueQgcnYqfGopTpti72TVV
+sRHFqQOzVju5hJMiXn7B9hJSi+osZ7z+Nkz1uM/Rs0mSO9MpDpkblvdhuDvEK7Z4bLQjb/D907Je
+dR+Zlais9trhxTF7+9FGs9K8Z7RiVLoJ92Owk6Ka+elSLotgEqv89WBW7xBci8QaQtyDW2QOy7W8
+1k/BfDxujRNt+3vrMNDcTa/F1balTFtxyegxvug4BkihGuLq0t4SOVga/4AOgnXmt8kHbA7v/zjx
+mHHEt38OFdAlab0inSvtBfZGR6ztwPDUO+Ls7pZbkBNOHlY667DvlruWIxG68kOGdGSVyCh13x01
+utI3gzhTODY7z2zp+WsO0PsE6E9312UBeIYMej4hYvF/Y3EMyZ9E26gnonW+boE+18DrG5gPcFw0
+sorMwIUY6256s/daoQe/qUKS82Ail+QUoQebTnbAjn39pCXHR+3/H3OszMOl6W8KjptlwlCFtaOg
+UxLMVYdh84GuEEZhvUQhuMI9dM9+JDX6HAcOmz0iyu8xL4ysEr3vQCj8KWefshNPZiTEUxnpHikV
+7+ZtsH8tZ/3zbBt1RqPlShfppNcL
+-----END CERTIFICATE-----
+
+ACCVRAIZ1
+=========
+-----BEGIN CERTIFICATE-----
+MIIH0zCCBbugAwIBAgIIXsO3pkN/pOAwDQYJKoZIhvcNAQEFBQAwQjESMBAGA1UEAwwJQUNDVlJB
+SVoxMRAwDgYDVQQLDAdQS0lBQ0NWMQ0wCwYDVQQKDARBQ0NWMQswCQYDVQQGEwJFUzAeFw0xMTA1
+MDUwOTM3MzdaFw0zMDEyMzEwOTM3MzdaMEIxEjAQBgNVBAMMCUFDQ1ZSQUlaMTEQMA4GA1UECwwH
+UEtJQUNDVjENMAsGA1UECgwEQUNDVjELMAkGA1UEBhMCRVMwggIiMA0GCSqGSIb3DQEBAQUAA4IC
+DwAwggIKAoICAQCbqau/YUqXry+XZpp0X9DZlv3P4uRm7x8fRzPCRKPfmt4ftVTdFXxpNRFvu8gM
+jmoYHtiP2Ra8EEg2XPBjs5BaXCQ316PWywlxufEBcoSwfdtNgM3802/J+Nq2DoLSRYWoG2ioPej0
+RGy9ocLLA76MPhMAhN9KSMDjIgro6TenGEyxCQ0jVn8ETdkXhBilyNpAlHPrzg5XPAOBOp0KoVdD
+aaxXbXmQeOW1tDvYvEyNKKGno6e6Ak4l0Squ7a4DIrhrIA8wKFSVf+DuzgpmndFALW4ir50awQUZ
+0m/A8p/4e7MCQvtQqR0tkw8jq8bBD5L/0KIV9VMJcRz/RROE5iZe+OCIHAr8Fraocwa48GOEAqDG
+WuzndN9wrqODJerWx5eHk6fGioozl2A3ED6XPm4pFdahD9GILBKfb6qkxkLrQaLjlUPTAYVtjrs7
+8yM2x/474KElB0iryYl0/wiPgL/AlmXz7uxLaL2diMMxs0Dx6M/2OLuc5NF/1OVYm3z61PMOm3WR
+5LpSLhl+0fXNWhn8ugb2+1KoS5kE3fj5tItQo05iifCHJPqDQsGH+tUtKSpacXpkatcnYGMN285J
+9Y0fkIkyF/hzQ7jSWpOGYdbhdQrqeWZ2iE9x6wQl1gpaepPluUsXQA+xtrn13k/c4LOsOxFwYIRK
+Q26ZIMApcQrAZQIDAQABo4ICyzCCAscwfQYIKwYBBQUHAQEEcTBvMEwGCCsGAQUFBzAChkBodHRw
+Oi8vd3d3LmFjY3YuZXMvZmlsZWFkbWluL0FyY2hpdm9zL2NlcnRpZmljYWRvcy9yYWl6YWNjdjEu
+Y3J0MB8GCCsGAQUFBzABhhNodHRwOi8vb2NzcC5hY2N2LmVzMB0GA1UdDgQWBBTSh7Tj3zcnk1X2
+VuqB5TbMjB4/vTAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNKHtOPfNyeTVfZW6oHlNsyM
+Hj+9MIIBcwYDVR0gBIIBajCCAWYwggFiBgRVHSAAMIIBWDCCASIGCCsGAQUFBwICMIIBFB6CARAA
+QQB1AHQAbwByAGkAZABhAGQAIABkAGUAIABDAGUAcgB0AGkAZgBpAGMAYQBjAGkA8wBuACAAUgBh
+AO0AegAgAGQAZQAgAGwAYQAgAEEAQwBDAFYAIAAoAEEAZwBlAG4AYwBpAGEAIABkAGUAIABUAGUA
+YwBuAG8AbABvAGcA7QBhACAAeQAgAEMAZQByAHQAaQBmAGkAYwBhAGMAaQDzAG4AIABFAGwAZQBj
+AHQAcgDzAG4AaQBjAGEALAAgAEMASQBGACAAUQA0ADYAMAAxADEANQA2AEUAKQAuACAAQwBQAFMA
+IABlAG4AIABoAHQAdABwADoALwAvAHcAdwB3AC4AYQBjAGMAdgAuAGUAczAwBggrBgEFBQcCARYk
+aHR0cDovL3d3dy5hY2N2LmVzL2xlZ2lzbGFjaW9uX2MuaHRtMFUGA1UdHwROMEwwSqBIoEaGRGh0
+dHA6Ly93d3cuYWNjdi5lcy9maWxlYWRtaW4vQXJjaGl2b3MvY2VydGlmaWNhZG9zL3JhaXphY2N2
+MV9kZXIuY3JsMA4GA1UdDwEB/wQEAwIBBjAXBgNVHREEEDAOgQxhY2N2QGFjY3YuZXMwDQYJKoZI
+hvcNAQEFBQADggIBAJcxAp/n/UNnSEQU5CmH7UwoZtCPNdpNYbdKl02125DgBS4OxnnQ8pdpD70E
+R9m+27Up2pvZrqmZ1dM8MJP1jaGo/AaNRPTKFpV8M9xii6g3+CfYCS0b78gUJyCpZET/LtZ1qmxN
+YEAZSUNUY9rizLpm5U9EelvZaoErQNV/+QEnWCzI7UiRfD+mAM/EKXMRNt6GGT6d7hmKG9Ww7Y49
+nCrADdg9ZuM8Db3VlFzi4qc1GwQA9j9ajepDvV+JHanBsMyZ4k0ACtrJJ1vnE5Bc5PUzolVt3OAJ
+TS+xJlsndQAJxGJ3KQhfnlmstn6tn1QwIgPBHnFk/vk4CpYY3QIUrCPLBhwepH2NDd4nQeit2hW3
+sCPdK6jT2iWH7ehVRE2I9DZ+hJp4rPcOVkkO1jMl1oRQQmwgEh0q1b688nCBpHBgvgW1m54ERL5h
+I6zppSSMEYCUWqKiuUnSwdzRp+0xESyeGabu4VXhwOrPDYTkF7eifKXeVSUG7szAh1xA2syVP1Xg
+Nce4hL60Xc16gwFy7ofmXx2utYXGJt/mwZrpHgJHnyqobalbz+xFd3+YJ5oyXSrjhO7FmGYvliAd
+3djDJ9ew+f7Zfc3Qn48LFFhRny+Lwzgt3uiP1o2HpPVWQxaZLPSkVrQ0uGE3ycJYgBugl6H8WY3p
+EfbRD0tVNEYqi4Y7
+-----END CERTIFICATE-----
+
+TWCA Global Root CA
+===================
+-----BEGIN CERTIFICATE-----
+MIIFQTCCAymgAwIBAgICDL4wDQYJKoZIhvcNAQELBQAwUTELMAkGA1UEBhMCVFcxEjAQBgNVBAoT
+CVRBSVdBTi1DQTEQMA4GA1UECxMHUm9vdCBDQTEcMBoGA1UEAxMTVFdDQSBHbG9iYWwgUm9vdCBD
+QTAeFw0xMjA2MjcwNjI4MzNaFw0zMDEyMzExNTU5NTlaMFExCzAJBgNVBAYTAlRXMRIwEAYDVQQK
+EwlUQUlXQU4tQ0ExEDAOBgNVBAsTB1Jvb3QgQ0ExHDAaBgNVBAMTE1RXQ0EgR2xvYmFsIFJvb3Qg
+Q0EwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCwBdvI64zEbooh745NnHEKH1Jw7W2C
+nJfF10xORUnLQEK1EjRsGcJ0pDFfhQKX7EMzClPSnIyOt7h52yvVavKOZsTuKwEHktSz0ALfUPZV
+r2YOy+BHYC8rMjk1Ujoog/h7FsYYuGLWRyWRzvAZEk2tY/XTP3VfKfChMBwqoJimFb3u/Rk28OKR
+Q4/6ytYQJ0lM793B8YVwm8rqqFpD/G2Gb3PpN0Wp8DbHzIh1HrtsBv+baz4X7GGqcXzGHaL3SekV
+tTzWoWH1EfcFbx39Eb7QMAfCKbAJTibc46KokWofwpFFiFzlmLhxpRUZyXx1EcxwdE8tmx2RRP1W
+KKD+u4ZqyPpcC1jcxkt2yKsi2XMPpfRaAok/T54igu6idFMqPVMnaR1sjjIsZAAmY2E2TqNGtz99
+sy2sbZCilaLOz9qC5wc0GZbpuCGqKX6mOL6OKUohZnkfs8O1CWfe1tQHRvMq2uYiN2DLgbYPoA/p
+yJV/v1WRBXrPPRXAb94JlAGD1zQbzECl8LibZ9WYkTunhHiVJqRaCPgrdLQABDzfuBSO6N+pjWxn
+kjMdwLfS7JLIvgm/LCkFbwJrnu+8vyq8W8BQj0FwcYeyTbcEqYSjMq+u7msXi7Kx/mzhkIyIqJdI
+zshNy/MGz19qCkKxHh53L46g5pIOBvwFItIm4TFRfTLcDwIDAQABoyMwITAOBgNVHQ8BAf8EBAMC
+AQYwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAgEAXzSBdu+WHdXltdkCY4QWwa6g
+cFGn90xHNcgL1yg9iXHZqjNB6hQbbCEAwGxCGX6faVsgQt+i0trEfJdLjbDorMjupWkEmQqSpqsn
+LhpNgb+E1HAerUf+/UqdM+DyucRFCCEK2mlpc3INvjT+lIutwx4116KD7+U4x6WFH6vPNOw/KP4M
+8VeGTslV9xzU2KV9Bnpv1d8Q34FOIWWxtuEXeZVFBs5fzNxGiWNoRI2T9GRwoD2dKAXDOXC4Ynsg
+/eTb6QihuJ49CcdP+yz4k3ZB3lLg4VfSnQO8d57+nile98FRYB/e2guyLXW3Q0iT5/Z5xoRdgFlg
+lPx4mI88k1HtQJAH32RjJMtOcQWh15QaiDLxInQirqWm2BJpTGCjAu4r7NRjkgtevi92a6O2JryP
+A9gK8kxkRr05YuWW6zRjESjMlfGt7+/cgFhI6Uu46mWs6fyAtbXIRfmswZ/ZuepiiI7E8UuDEq3m
+i4TWnsLrgxifarsbJGAzcMzs9zLzXNl5fe+epP7JI8Mk7hWSsT2RTyaGvWZzJBPqpK5jwa19hAM8
+EHiGG3njxPPyBJUgriOCxLM6AGK/5jYk4Ve6xx6QddVfP5VhK8E7zeWzaGHQRiapIVJpLesux+t3
+zqY6tQMzT3bR51xUAV3LePTJDL/PEo4XLSNolOer/qmyKwbQBM0=
+-----END CERTIFICATE-----
+
+TeliaSonera Root CA v1
+======================
+-----BEGIN CERTIFICATE-----
+MIIFODCCAyCgAwIBAgIRAJW+FqD3LkbxezmCcvqLzZYwDQYJKoZIhvcNAQEFBQAwNzEUMBIGA1UE
+CgwLVGVsaWFTb25lcmExHzAdBgNVBAMMFlRlbGlhU29uZXJhIFJvb3QgQ0EgdjEwHhcNMDcxMDE4
+MTIwMDUwWhcNMzIxMDE4MTIwMDUwWjA3MRQwEgYDVQQKDAtUZWxpYVNvbmVyYTEfMB0GA1UEAwwW
+VGVsaWFTb25lcmEgUm9vdCBDQSB2MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMK+
+6yfwIaPzaSZVfp3FVRaRXP3vIb9TgHot0pGMYzHw7CTww6XScnwQbfQ3t+XmfHnqjLWCi65ItqwA
+3GV17CpNX8GH9SBlK4GoRz6JI5UwFpB/6FcHSOcZrr9FZ7E3GwYq/t75rH2D+1665I+XZ75Ljo1k
+B1c4VWk0Nj0TSO9P4tNmHqTPGrdeNjPUtAa9GAH9d4RQAEX1jF3oI7x+/jXh7VB7qTCNGdMJjmhn
+Xb88lxhTuylixcpecsHHltTbLaC0H2kD7OriUPEMPPCs81Mt8Bz17Ww5OXOAFshSsCPN4D7c3TxH
+oLs1iuKYaIu+5b9y7tL6pe0S7fyYGKkmdtwoSxAgHNN/Fnct7W+A90m7UwW7XWjH1Mh1Fj+JWov3
+F0fUTPHSiXk+TT2YqGHeOh7S+F4D4MHJHIzTjU3TlTazN19jY5szFPAtJmtTfImMMsJu7D0hADnJ
+oWjiUIMusDor8zagrC/kb2HCUQk5PotTubtn2txTuXZZNp1D5SDgPTJghSJRt8czu90VL6R4pgd7
+gUY2BIbdeTXHlSw7sKMXNeVzH7RcWe/a6hBle3rQf5+ztCo3O3CLm1u5K7fsslESl1MpWtTwEhDc
+TwK7EpIvYtQ/aUN8Ddb8WHUBiJ1YFkveupD/RwGJBmr2X7KQarMCpgKIv7NHfirZ1fpoeDVNAgMB
+AAGjPzA9MA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1UdDgQWBBTwj1k4ALP1j5qW
+DNXr+nuqF+gTEjANBgkqhkiG9w0BAQUFAAOCAgEAvuRcYk4k9AwI//DTDGjkk0kiP0Qnb7tt3oNm
+zqjMDfz1mgbldxSR651Be5kqhOX//CHBXfDkH1e3damhXwIm/9fH907eT/j3HEbAek9ALCI18Bmx
+0GtnLLCo4MBANzX2hFxc469CeP6nyQ1Q6g2EdvZR74NTxnr/DlZJLo961gzmJ1TjTQpgcmLNkQfW
+pb/ImWvtxBnmq0wROMVvMeJuScg/doAmAyYp4Db29iBT4xdwNBedY2gea+zDTYa4EzAvXUYNR0PV
+G6pZDrlcjQZIrXSHX8f8MVRBE+LHIQ6e4B4N4cB7Q4WQxYpYxmUKeFfyxiMPAdkgS94P+5KFdSpc
+c41teyWRyu5FrgZLAMzTsVlQ2jqIOylDRl6XK1TOU2+NSueW+r9xDkKLfP0ooNBIytrEgUy7onOT
+JsjrDNYmiLbAJM+7vVvrdX3pCI6GMyx5dwlppYn8s3CQh3aP0yK7Qs69cwsgJirQmz1wHiRszYd2
+qReWt88NkvuOGKmYSdGe/mBEciG5Ge3C9THxOUiIkCR1VBatzvT4aRRkOfujuLpwQMcnHL/EVlP6
+Y2XQ8xwOFvVrhlhNGNTkDY6lnVuR3HYkUD/GKvvZt5y11ubQ2egZixVxSK236thZiNSQvxaz2ems
+WWFUyBy6ysHK4bkgTI86k4mloMy/0/Z1pHWWbVY=
+-----END CERTIFICATE-----
+
+E-Tugra Certification Authority
+===============================
+-----BEGIN CERTIFICATE-----
+MIIGSzCCBDOgAwIBAgIIamg+nFGby1MwDQYJKoZIhvcNAQELBQAwgbIxCzAJBgNVBAYTAlRSMQ8w
+DQYDVQQHDAZBbmthcmExQDA+BgNVBAoMN0UtVHXEn3JhIEVCRyBCaWxpxZ9pbSBUZWtub2xvamls
+ZXJpIHZlIEhpem1ldGxlcmkgQS7Fni4xJjAkBgNVBAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBN
+ZXJrZXppMSgwJgYDVQQDDB9FLVR1Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTEzMDMw
+NTEyMDk0OFoXDTIzMDMwMzEyMDk0OFowgbIxCzAJBgNVBAYTAlRSMQ8wDQYDVQQHDAZBbmthcmEx
+QDA+BgNVBAoMN0UtVHXEn3JhIEVCRyBCaWxpxZ9pbSBUZWtub2xvamlsZXJpIHZlIEhpem1ldGxl
+cmkgQS7Fni4xJjAkBgNVBAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBNZXJrZXppMSgwJgYDVQQD
+DB9FLVR1Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0BAQEFAAOCAg8A
+MIICCgKCAgEA4vU/kwVRHoViVF56C/UYB4Oufq9899SKa6VjQzm5S/fDxmSJPZQuVIBSOTkHS0vd
+hQd2h8y/L5VMzH2nPbxHD5hw+IyFHnSOkm0bQNGZDbt1bsipa5rAhDGvykPL6ys06I+XawGb1Q5K
+CKpbknSFQ9OArqGIW66z6l7LFpp3RMih9lRozt6Plyu6W0ACDGQXwLWTzeHxE2bODHnv0ZEoq1+g
+ElIwcxmOj+GMB6LDu0rw6h8VqO4lzKRG+Bsi77MOQ7osJLjFLFzUHPhdZL3Dk14opz8n8Y4e0ypQ
+BaNV2cvnOVPAmJ6MVGKLJrD3fY185MaeZkJVgkfnsliNZvcHfC425lAcP9tDJMW/hkd5s3kc91r0
+E+xs+D/iWR+V7kI+ua2oMoVJl0b+SzGPWsutdEcf6ZG33ygEIqDUD13ieU/qbIWGvaimzuT6w+Gz
+rt48Ue7LE3wBf4QOXVGUnhMMti6lTPk5cDZvlsouDERVxcr6XQKj39ZkjFqzAQqptQpHF//vkUAq
+jqFGOjGY5RH8zLtJVor8udBhmm9lbObDyz51Sf6Pp+KJxWfXnUYTTjF2OySznhFlhqt/7x3U+Lzn
+rFpct1pHXFXOVbQicVtbC/DP3KBhZOqp12gKY6fgDT+gr9Oq0n7vUaDmUStVkhUXU8u3Zg5mTPj5
+dUyQ5xJwx0UCAwEAAaNjMGEwHQYDVR0OBBYEFC7j27JJ0JxUeVz6Jyr+zE7S6E5UMA8GA1UdEwEB
+/wQFMAMBAf8wHwYDVR0jBBgwFoAULuPbsknQnFR5XPonKv7MTtLoTlQwDgYDVR0PAQH/BAQDAgEG
+MA0GCSqGSIb3DQEBCwUAA4ICAQAFNzr0TbdF4kV1JI+2d1LoHNgQk2Xz8lkGpD4eKexd0dCrfOAK
+kEh47U6YA5n+KGCRHTAduGN8qOY1tfrTYXbm1gdLymmasoR6d5NFFxWfJNCYExL/u6Au/U5Mh/jO
+XKqYGwXgAEZKgoClM4so3O0409/lPun++1ndYYRP0lSWE2ETPo+Aab6TR7U1Q9Jauz1c77NCR807
+VRMGsAnb/WP2OogKmW9+4c4bU2pEZiNRCHu8W1Ki/QY3OEBhj0qWuJA3+GbHeJAAFS6LrVE1Uweo
+a2iu+U48BybNCAVwzDk/dr2l02cmAYamU9JgO3xDf1WKvJUawSg5TB9D0pH0clmKuVb8P7Sd2nCc
+dlqMQ1DujjByTd//SffGqWfZbawCEeI6FiWnWAjLb1NBnEg4R2gz0dfHj9R0IdTDBZB6/86WiLEV
+KV0jq9BgoRJP3vQXzTLlyb/IQ639Lo7xr+L0mPoSHyDYwKcMhcWQ9DstliaxLL5Mq+ux0orJ23gT
+Dx4JnW2PAJ8C2sH6H3p6CcRK5ogql5+Ji/03X186zjhZhkuvcQu02PJwT58yE+Owp1fl2tpDy4Q0
+8ijE6m30Ku/Ba3ba+367hTzSU8JNvnHhRdH9I2cNE3X7z2VnIp2usAnRCf8dNL/+I5c30jn6PQ0G
+C7TbO6Orb1wdtn7os4I07QZcJA==
+-----END CERTIFICATE-----
+
+T-TeleSec GlobalRoot Class 2
+============================
+-----BEGIN CERTIFICATE-----
+MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoM
+IlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBU
+cnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwHhcNMDgx
+MDAxMTA0MDE0WhcNMzMxMDAxMjM1OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lz
+dGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBD
+ZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwggEiMA0GCSqGSIb3
+DQEBAQUAA4IBDwAwggEKAoIBAQCqX9obX+hzkeXaXPSi5kfl82hVYAUdAqSzm1nzHoqvNK38DcLZ
+SBnuaY/JIPwhqgcZ7bBcrGXHX+0CfHt8LRvWurmAwhiCFoT6ZrAIxlQjgeTNuUk/9k9uN0goOA/F
+vudocP05l03Sx5iRUKrERLMjfTlH6VJi1hKTXrcxlkIF+3anHqP1wvzpesVsqXFP6st4vGCvx970
+2cu+fjOlbpSD8DT6IavqjnKgP6TeMFvvhk1qlVtDRKgQFRzlAVfFmPHmBiiRqiDFt1MmUUOyCxGV
+WOHAD3bZwI18gfNycJ5v/hqO2V81xrJvNHy+SE/iWjnX2J14np+GPgNeGYtEotXHAgMBAAGjQjBA
+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS/WSA2AHmgoCJrjNXy
+YdK4LMuCSjANBgkqhkiG9w0BAQsFAAOCAQEAMQOiYQsfdOhyNsZt+U2e+iKo4YFWz827n+qrkRk4
+r6p8FU3ztqONpfSO9kSpp+ghla0+AGIWiPACuvxhI+YzmzB6azZie60EI4RYZeLbK4rnJVM3YlNf
+vNoBYimipidx5joifsFvHZVwIEoHNN/q/xWA5brXethbdXwFeilHfkCoMRN3zUA7tFFHei4R40cR
+3p1m0IvVVGb6g1XqfMIpiRvpb7PO4gWEyS8+eIVibslfwXhjdFjASBgMmTnrpMwatXlajRWc2BQN
+9noHV8cigwUtPJslJj0Ys6lDfMjIq2SPDqO/nBudMNva0Bkuqjzx+zOAduTNrRlPBSeOE6Fuwg==
+-----END CERTIFICATE-----
+
+Atos TrustedRoot 2011
+=====================
+-----BEGIN CERTIFICATE-----
+MIIDdzCCAl+gAwIBAgIIXDPLYixfszIwDQYJKoZIhvcNAQELBQAwPDEeMBwGA1UEAwwVQXRvcyBU
+cnVzdGVkUm9vdCAyMDExMQ0wCwYDVQQKDARBdG9zMQswCQYDVQQGEwJERTAeFw0xMTA3MDcxNDU4
+MzBaFw0zMDEyMzEyMzU5NTlaMDwxHjAcBgNVBAMMFUF0b3MgVHJ1c3RlZFJvb3QgMjAxMTENMAsG
+A1UECgwEQXRvczELMAkGA1UEBhMCREUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCV
+hTuXbyo7LjvPpvMpNb7PGKw+qtn4TaA+Gke5vJrf8v7MPkfoepbCJI419KkM/IL9bcFyYie96mvr
+54rMVD6QUM+A1JX76LWC1BTFtqlVJVfbsVD2sGBkWXppzwO3bw2+yj5vdHLqqjAqc2K+SZFhyBH+
+DgMq92og3AIVDV4VavzjgsG1xZ1kCWyjWZgHJ8cblithdHFsQ/H3NYkQ4J7sVaE3IqKHBAUsR320
+HLliKWYoyrfhk/WklAOZuXCFteZI6o1Q/NnezG8HDt0Lcp2AMBYHlT8oDv3FdU9T1nSatCQujgKR
+z3bFmx5VdJx4IbHwLfELn8LVlhgf8FQieowHAgMBAAGjfTB7MB0GA1UdDgQWBBSnpQaxLKYJYO7R
+l+lwrrw7GWzbITAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKelBrEspglg7tGX6XCuvDsZ
+bNshMBgGA1UdIAQRMA8wDQYLKwYBBAGwLQMEAQEwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEB
+CwUAA4IBAQAmdzTblEiGKkGdLD4GkGDEjKwLVLgfuXvTBznk+j57sj1O7Z8jvZfza1zv7v1Apt+h
+k6EKhqzvINB5Ab149xnYJDE0BAGmuhWawyfc2E8PzBhj/5kPDpFrdRbhIfzYJsdHt6bPWHJxfrrh
+TZVHO8mvbaG0weyJ9rQPOLXiZNwlz6bb65pcmaHFCN795trV1lpFDMS3wrUU77QR/w4VtfX128a9
+61qn8FYiqTxlVMYVqL2Gns2Dlmh6cYGJ4Qvh6hEbaAjMaZ7snkGeRDImeuKHCnE96+RapNLbxc3G
+3mB/ufNPRJLvKrcYPqcZ2Qt9sTdBQrC6YB3y/gkRsPCHe6ed
+-----END CERTIFICATE-----
+
+QuoVadis Root CA 1 G3
+=====================
+-----BEGIN CERTIFICATE-----
+MIIFYDCCA0igAwIBAgIUeFhfLq0sGUvjNwc1NBMotZbUZZMwDQYJKoZIhvcNAQELBQAwSDELMAkG
+A1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAcBgNVBAMTFVF1b1ZhZGlzIFJv
+b3QgQ0EgMSBHMzAeFw0xMjAxMTIxNzI3NDRaFw00MjAxMTIxNzI3NDRaMEgxCzAJBgNVBAYTAkJN
+MRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDEg
+RzMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCgvlAQjunybEC0BJyFuTHK3C3kEakE
+PBtVwedYMB0ktMPvhd6MLOHBPd+C5k+tR4ds7FtJwUrVu4/sh6x/gpqG7D0DmVIB0jWerNrwU8lm
+PNSsAgHaJNM7qAJGr6Qc4/hzWHa39g6QDbXwz8z6+cZM5cOGMAqNF34168Xfuw6cwI2H44g4hWf6
+Pser4BOcBRiYz5P1sZK0/CPTz9XEJ0ngnjybCKOLXSoh4Pw5qlPafX7PGglTvF0FBM+hSo+LdoIN
+ofjSxxR3W5A2B4GbPgb6Ul5jxaYA/qXpUhtStZI5cgMJYr2wYBZupt0lwgNm3fME0UDiTouG9G/l
+g6AnhF4EwfWQvTA9xO+oabw4m6SkltFi2mnAAZauy8RRNOoMqv8hjlmPSlzkYZqn0ukqeI1RPToV
+7qJZjqlc3sX5kCLliEVx3ZGZbHqfPT2YfF72vhZooF6uCyP8Wg+qInYtyaEQHeTTRCOQiJ/GKubX
+9ZqzWB4vMIkIG1SitZgj7Ah3HJVdYdHLiZxfokqRmu8hqkkWCKi9YSgxyXSthfbZxbGL0eUQMk1f
+iyA6PEkfM4VZDdvLCXVDaXP7a3F98N/ETH3Goy7IlXnLc6KOTk0k+17kBL5yG6YnLUlamXrXXAkg
+t3+UuU/xDRxeiEIbEbfnkduebPRq34wGmAOtzCjvpUfzUwIDAQABo0IwQDAPBgNVHRMBAf8EBTAD
+AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUo5fW816iEOGrRZ88F2Q87gFwnMwwDQYJKoZI
+hvcNAQELBQADggIBABj6W3X8PnrHX3fHyt/PX8MSxEBd1DKquGrX1RUVRpgjpeaQWxiZTOOtQqOC
+MTaIzen7xASWSIsBx40Bz1szBpZGZnQdT+3Btrm0DWHMY37XLneMlhwqI2hrhVd2cDMT/uFPpiN3
+GPoajOi9ZcnPP/TJF9zrx7zABC4tRi9pZsMbj/7sPtPKlL92CiUNqXsCHKnQO18LwIE6PWThv6ct
+Tr1NxNgpxiIY0MWscgKCP6o6ojoilzHdCGPDdRS5YCgtW2jgFqlmgiNR9etT2DGbe+m3nUvriBbP
++V04ikkwj+3x6xn0dxoxGE1nVGwvb2X52z3sIexe9PSLymBlVNFxZPT5pqOBMzYzcfCkeF9OrYMh
+3jRJjehZrJ3ydlo28hP0r+AJx2EqbPfgna67hkooby7utHnNkDPDs3b69fBsnQGQ+p6Q9pxyz0fa
+wx/kNSBT8lTR32GDpgLiJTjehTItXnOQUl1CxM49S+H5GYQd1aJQzEH7QRTDvdbJWqNjZgKAvQU6
+O0ec7AAmTPWIUb+oI38YB7AL7YsmoWTTYUrrXJ/es69nA7Mf3W1daWhpq1467HxpvMc7hU6eFbm0
+FU/DlXpY18ls6Wy58yljXrQs8C097Vpl4KlbQMJImYFtnh8GKjwStIsPm6Ik8KaN1nrgS7ZklmOV
+hMJKzRwuJIczYOXD
+-----END CERTIFICATE-----
+
+QuoVadis Root CA 2 G3
+=====================
+-----BEGIN CERTIFICATE-----
+MIIFYDCCA0igAwIBAgIURFc0JFuBiZs18s64KztbpybwdSgwDQYJKoZIhvcNAQELBQAwSDELMAkG
+A1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAcBgNVBAMTFVF1b1ZhZGlzIFJv
+b3QgQ0EgMiBHMzAeFw0xMjAxMTIxODU5MzJaFw00MjAxMTIxODU5MzJaMEgxCzAJBgNVBAYTAkJN
+MRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDIg
+RzMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQChriWyARjcV4g/Ruv5r+LrI3HimtFh
+ZiFfqq8nUeVuGxbULX1QsFN3vXg6YOJkApt8hpvWGo6t/x8Vf9WVHhLL5hSEBMHfNrMWn4rjyduY
+NM7YMxcoRvynyfDStNVNCXJJ+fKH46nafaF9a7I6JaltUkSs+L5u+9ymc5GQYaYDFCDy54ejiK2t
+oIz/pgslUiXnFgHVy7g1gQyjO/Dh4fxaXc6AcW34Sas+O7q414AB+6XrW7PFXmAqMaCvN+ggOp+o
+MiwMzAkd056OXbxMmO7FGmh77FOm6RQ1o9/NgJ8MSPsc9PG/Srj61YxxSscfrf5BmrODXfKEVu+l
+V0POKa2Mq1W/xPtbAd0jIaFYAI7D0GoT7RPjEiuA3GfmlbLNHiJuKvhB1PLKFAeNilUSxmn1uIZo
+L1NesNKqIcGY5jDjZ1XHm26sGahVpkUG0CM62+tlXSoREfA7T8pt9DTEceT/AFr2XK4jYIVz8eQQ
+sSWu1ZK7E8EM4DnatDlXtas1qnIhO4M15zHfeiFuuDIIfR0ykRVKYnLP43ehvNURG3YBZwjgQQvD
+6xVu+KQZ2aKrr+InUlYrAoosFCT5v0ICvybIxo/gbjh9Uy3l7ZizlWNof/k19N+IxWA1ksB8aRxh
+lRbQ694Lrz4EEEVlWFA4r0jyWbYW8jwNkALGcC4BrTwV1wIDAQABo0IwQDAPBgNVHRMBAf8EBTAD
+AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQU7edvdlq/YOxJW8ald7tyFnGbxD0wDQYJKoZI
+hvcNAQELBQADggIBAJHfgD9DCX5xwvfrs4iP4VGyvD11+ShdyLyZm3tdquXK4Qr36LLTn91nMX66
+AarHakE7kNQIXLJgapDwyM4DYvmL7ftuKtwGTTwpD4kWilhMSA/ohGHqPHKmd+RCroijQ1h5fq7K
+pVMNqT1wvSAZYaRsOPxDMuHBR//47PERIjKWnML2W2mWeyAMQ0GaW/ZZGYjeVYg3UQt4XAoeo0L9
+x52ID8DyeAIkVJOviYeIyUqAHerQbj5hLja7NQ4nlv1mNDthcnPxFlxHBlRJAHpYErAK74X9sbgz
+dWqTHBLmYF5vHX/JHyPLhGGfHoJE+V+tYlUkmlKY7VHnoX6XOuYvHxHaU4AshZ6rNRDbIl9qxV6X
+U/IyAgkwo1jwDQHVcsaxfGl7w/U2Rcxhbl5MlMVerugOXou/983g7aEOGzPuVBj+D77vfoRrQ+Nw
+mNtddbINWQeFFSM51vHfqSYP1kjHs6Yi9TM3WpVHn3u6GBVv/9YUZINJ0gpnIdsPNWNgKCLjsZWD
+zYWm3S8P52dSbrsvhXz1SnPnxT7AvSESBT/8twNJAlvIJebiVDj1eYeMHVOyToV7BjjHLPj4sHKN
+JeV3UvQDHEimUF+IIDBu8oJDqz2XhOdT+yHBTw8imoa4WSr2Rz0ZiC3oheGe7IUIarFsNMkd7Egr
+O3jtZsSOeWmD3n+M
+-----END CERTIFICATE-----
+
+QuoVadis Root CA 3 G3
+=====================
+-----BEGIN CERTIFICATE-----
+MIIFYDCCA0igAwIBAgIULvWbAiin23r/1aOp7r0DoM8Sah0wDQYJKoZIhvcNAQELBQAwSDELMAkG
+A1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAcBgNVBAMTFVF1b1ZhZGlzIFJv
+b3QgQ0EgMyBHMzAeFw0xMjAxMTIyMDI2MzJaFw00MjAxMTIyMDI2MzJaMEgxCzAJBgNVBAYTAkJN
+MRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDMg
+RzMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCzyw4QZ47qFJenMioKVjZ/aEzHs286
+IxSR/xl/pcqs7rN2nXrpixurazHb+gtTTK/FpRp5PIpM/6zfJd5O2YIyC0TeytuMrKNuFoM7pmRL
+Mon7FhY4futD4tN0SsJiCnMK3UmzV9KwCoWdcTzeo8vAMvMBOSBDGzXRU7Ox7sWTaYI+FrUoRqHe
+6okJ7UO4BUaKhvVZR74bbwEhELn9qdIoyhA5CcoTNs+cra1AdHkrAj80//ogaX3T7mH1urPnMNA3
+I4ZyYUUpSFlob3emLoG+B01vr87ERRORFHAGjx+f+IdpsQ7vw4kZ6+ocYfx6bIrc1gMLnia6Et3U
+VDmrJqMz6nWB2i3ND0/kA9HvFZcba5DFApCTZgIhsUfei5pKgLlVj7WiL8DWM2fafsSntARE60f7
+5li59wzweyuxwHApw0BiLTtIadwjPEjrewl5qW3aqDCYz4ByA4imW0aucnl8CAMhZa634RylsSqi
+Md5mBPfAdOhx3v89WcyWJhKLhZVXGqtrdQtEPREoPHtht+KPZ0/l7DxMYIBpVzgeAVuNVejH38DM
+dyM0SXV89pgR6y3e7UEuFAUCf+D+IOs15xGsIs5XPd7JMG0QA4XN8f+MFrXBsj6IbGB/kE+V9/Yt
+rQE5BwT6dYB9v0lQ7e/JxHwc64B+27bQ3RP+ydOc17KXqQIDAQABo0IwQDAPBgNVHRMBAf8EBTAD
+AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUxhfQvKjqAkPyGwaZXSuQILnXnOQwDQYJKoZI
+hvcNAQELBQADggIBADRh2Va1EodVTd2jNTFGu6QHcrxfYWLopfsLN7E8trP6KZ1/AvWkyaiTt3px
+KGmPc+FSkNrVvjrlt3ZqVoAh313m6Tqe5T72omnHKgqwGEfcIHB9UqM+WXzBusnIFUBhynLWcKzS
+t/Ac5IYp8M7vaGPQtSCKFWGafoaYtMnCdvvMujAWzKNhxnQT5WvvoxXqA/4Ti2Tk08HS6IT7SdEQ
+TXlm66r99I0xHnAUrdzeZxNMgRVhvLfZkXdxGYFgu/BYpbWcC/ePIlUnwEsBbTuZDdQdm2NnL9Du
+DcpmvJRPpq3t/O5jrFc/ZSXPsoaP0Aj/uHYUbt7lJ+yreLVTubY/6CD50qi+YUbKh4yE8/nxoGib
+Ih6BJpsQBJFxwAYf3KDTuVan45gtf4Od34wrnDKOMpTwATwiKp9Dwi7DmDkHOHv8XgBCH/MyJnmD
+hPbl8MFREsALHgQjDFSlTC9JxUrRtm5gDWv8a4uFJGS3iQ6rJUdbPM9+Sb3H6QrG2vd+DhcI00iX
+0HGS8A85PjRqHH3Y8iKuu2n0M7SmSFXRDw4m6Oy2Cy2nhTXN/VnIn9HNPlopNLk9hM6xZdRZkZFW
+dSHBd575euFgndOtBBj0fOtek49TSiIp+EgrPk2GrFt/ywaZWWDYWGWVjUTR939+J399roD1B0y2
+PpxxVJkES/1Y+Zj0
+-----END CERTIFICATE-----
+
+DigiCert Assured ID Root G2
+===========================
+-----BEGIN CERTIFICATE-----
+MIIDljCCAn6gAwIBAgIQC5McOtY5Z+pnI7/Dr5r0SzANBgkqhkiG9w0BAQsFADBlMQswCQYDVQQG
+EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQw
+IgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIwHhcNMTMwODAxMTIwMDAwWhcNMzgw
+MTE1MTIwMDAwWjBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQL
+ExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIw
+ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ5ygvUj82ckmIkzTz+GoeMVSAn61UQbVH
+35ao1K+ALbkKz3X9iaV9JPrjIgwrvJUXCzO/GU1BBpAAvQxNEP4HteccbiJVMWWXvdMX0h5i89vq
+bFCMP4QMls+3ywPgym2hFEwbid3tALBSfK+RbLE4E9HpEgjAALAcKxHad3A2m67OeYfcgnDmCXRw
+VWmvo2ifv922ebPynXApVfSr/5Vh88lAbx3RvpO704gqu52/clpWcTs/1PPRCv4o76Pu2ZmvA9OP
+YLfykqGxvYmJHzDNw6YuYjOuFgJ3RFrngQo8p0Quebg/BLxcoIfhG69Rjs3sLPr4/m3wOnyqi+Rn
+lTGNAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBTO
+w0q5mVXyuNtgv6l+vVa1lzan1jANBgkqhkiG9w0BAQsFAAOCAQEAyqVVjOPIQW5pJ6d1Ee88hjZv
+0p3GeDgdaZaikmkuOGybfQTUiaWxMTeKySHMq2zNixya1r9I0jJmwYrA8y8678Dj1JGG0VDjA9tz
+d29KOVPt3ibHtX2vK0LRdWLjSisCx1BL4GnilmwORGYQRI+tBev4eaymG+g3NJ1TyWGqolKvSnAW
+hsI6yLETcDbYz+70CjTVW0z9B5yiutkBclzzTcHdDrEcDcRjvq30FPuJ7KJBDkzMyFdA0G4Dqs0M
+jomZmWzwPDCvON9vvKO+KSAnq3T/EyJ43pdSVR6DtVQgA+6uwE9W3jfMw3+qBCe703e4YtsXfJwo
+IhNzbM8m9Yop5w==
+-----END CERTIFICATE-----
+
+DigiCert Assured ID Root G3
+===========================
+-----BEGIN CERTIFICATE-----
+MIICRjCCAc2gAwIBAgIQC6Fa+h3foLVJRK/NJKBs7DAKBggqhkjOPQQDAzBlMQswCQYDVQQGEwJV
+UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQwIgYD
+VQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1
+MTIwMDAwWjBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
+d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwdjAQ
+BgcqhkjOPQIBBgUrgQQAIgNiAAQZ57ysRGXtzbg/WPuNsVepRC0FFfLvC/8QdJ+1YlJfZn4f5dwb
+RXkLzMZTCp2NXQLZqVneAlr2lSoOjThKiknGvMYDOAdfVdp+CW7if17QRSAPWXYQ1qAk8C3eNvJs
+KTmjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBTL0L2p4ZgF
+UaFNN6KDec6NHSrkhDAKBggqhkjOPQQDAwNnADBkAjAlpIFFAmsSS3V0T8gj43DydXLefInwz5Fy
+YZ5eEJJZVrmDxxDnOOlYJjZ91eQ0hjkCMHw2U/Aw5WJjOpnitqM7mzT6HtoQknFekROn3aRukswy
+1vUhZscv6pZjamVFkpUBtA==
+-----END CERTIFICATE-----
+
+DigiCert Global Root G2
+=======================
+-----BEGIN CERTIFICATE-----
+MIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG
+EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw
+HgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUx
+MjAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3
+dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkq
+hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI2/Ou8jqJ
+kTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx1x7e/dfgy5SDN67sH0NO
+3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQq2EGnI/yuum06ZIya7XzV+hdG82MHauV
+BJVJ8zUtluNJbd134/tJS7SsVQepj5WztCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyM
+UNGPHgm+F6HmIcr9g+UQvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQAB
+o0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV5uNu
+5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY1Yl9PMWLSn/pvtsr
+F9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4NeF22d+mQrvHRAiGfzZ0JFrabA0U
+WTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NGFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBH
+QRFXGU7Aj64GxJUTFy8bJZ918rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/
+iyK5S9kJRaTepLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl
+MrY=
+-----END CERTIFICATE-----
+
+DigiCert Global Root G3
+=======================
+-----BEGIN CERTIFICATE-----
+MIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV
+UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD
+VQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAw
+MDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5k
+aWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0C
+AQYFK4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FGfp4tn+6O
+YwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPOZ9wj/wMco+I+o0IwQDAP
+BgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNp
+Yim8S8YwCgYIKoZIzj0EAwMDaAAwZQIxAK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y
+3maTD/HMsQmP3Wyr+mt/oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34
+VOKa5Vt8sycX
+-----END CERTIFICATE-----
+
+DigiCert Trusted Root G4
+========================
+-----BEGIN CERTIFICATE-----
+MIIFkDCCA3igAwIBAgIQBZsbV56OITLiOQe9p3d1XDANBgkqhkiG9w0BAQwFADBiMQswCQYDVQQG
+EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSEw
+HwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1
+MTIwMDAwWjBiMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
+d3cuZGlnaWNlcnQuY29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwggIiMA0G
+CSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC/5pBzaN675F1KPDAiMGkz7MKnJS7JIT3yithZwuEp
+pz1Yq3aaza57G4QNxDAf8xukOBbrVsaXbR2rsnnyyhHS5F/WBTxSD1Ifxp4VpX6+n6lXFllVcq9o
+k3DCsrp1mWpzMpTREEQQLt+C8weE5nQ7bXHiLQwb7iDVySAdYyktzuxeTsiT+CFhmzTrBcZe7Fsa
+vOvJz82sNEBfsXpm7nfISKhmV1efVFiODCu3T6cw2Vbuyntd463JT17lNecxy9qTXtyOj4DatpGY
+QJB5w3jHtrHEtWoYOAMQjdjUN6QuBX2I9YI+EJFwq1WCQTLX2wRzKm6RAXwhTNS8rhsDdV14Ztk6
+MUSaM0C/CNdaSaTC5qmgZ92kJ7yhTzm1EVgX9yRcRo9k98FpiHaYdj1ZXUJ2h4mXaXpI8OCiEhtm
+mnTK3kse5w5jrubU75KSOp493ADkRSWJtppEGSt+wJS00mFt6zPZxd9LBADMfRyVw4/3IbKyEbe7
+f/LVjHAsQWCqsWMYRJUadmJ+9oCw++hkpjPRiQfhvbfmQ6QYuKZ3AeEPlAwhHbJUKSWJbOUOUlFH
+dL4mrLZBdd56rF+NP8m800ERElvlEFDrMcXKchYiCd98THU/Y+whX8QgUWtvsauGi0/C1kVfnSD8
+oR7FwI+isX4KJpn15GkvmB0t9dmpsh3lGwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1Ud
+DwEB/wQEAwIBhjAdBgNVHQ4EFgQU7NfjgtJxXWRM3y5nP+e6mK4cD08wDQYJKoZIhvcNAQEMBQAD
+ggIBALth2X2pbL4XxJEbw6GiAI3jZGgPVs93rnD5/ZpKmbnJeFwMDF/k5hQpVgs2SV1EY+CtnJYY
+ZhsjDT156W1r1lT40jzBQ0CuHVD1UvyQO7uYmWlrx8GnqGikJ9yd+SeuMIW59mdNOj6PWTkiU0Tr
+yF0Dyu1Qen1iIQqAyHNm0aAFYF/opbSnr6j3bTWcfFqK1qI4mfN4i/RN0iAL3gTujJtHgXINwBQy
+7zBZLq7gcfJW5GqXb5JQbZaNaHqasjYUegbyJLkJEVDXCLG4iXqEI2FCKeWjzaIgQdfRnGTZ6iah
+ixTXTBmyUEFxPT9NcCOGDErcgdLMMpSEDQgJlxxPwO5rIHQw0uA5NBCFIRUBCOhVMt5xSdkoF1BN
+5r5N0XWs0Mr7QbhDparTwwVETyw2m+L64kW4I1NsBm9nVX9GtUw/bihaeSbSpKhil9Ie4u1Ki7wb
+/UdKDd9nZn6yW0HQO+T0O/QEY+nvwlQAUaCKKsnOeMzV6ocEGLPOr0mIr/OSmbaz5mEP0oUA51Aa
+5BuVnRmhuZyxm7EAHu/QD09CbMkKvO5D+jpxpchNJqU1/YldvIViHTLSoCtU7ZpXwdv6EM8Zt4tK
+G48BtieVU+i2iW1bvGjUI+iLUaJW+fCmgKDWHrO8Dw9TdSmq6hN35N6MgSGtBxBHEa2HPQfRdbzP
+82Z+
+-----END CERTIFICATE-----
+
+WoSign
+======
+-----BEGIN CERTIFICATE-----
+MIIFdjCCA16gAwIBAgIQXmjWEXGUY1BWAGjzPsnFkTANBgkqhkiG9w0BAQUFADBVMQswCQYDVQQG
+EwJDTjEaMBgGA1UEChMRV29TaWduIENBIExpbWl0ZWQxKjAoBgNVBAMTIUNlcnRpZmljYXRpb24g
+QXV0aG9yaXR5IG9mIFdvU2lnbjAeFw0wOTA4MDgwMTAwMDFaFw0zOTA4MDgwMTAwMDFaMFUxCzAJ
+BgNVBAYTAkNOMRowGAYDVQQKExFXb1NpZ24gQ0EgTGltaXRlZDEqMCgGA1UEAxMhQ2VydGlmaWNh
+dGlvbiBBdXRob3JpdHkgb2YgV29TaWduMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA
+vcqNrLiRFVaXe2tcesLea9mhsMMQI/qnobLMMfo+2aYpbxY94Gv4uEBf2zmoAHqLoE1UfcIiePyO
+CbiohdfMlZdLdNiefvAA5A6JrkkoRBoQmTIPJYhTpA2zDxIIFgsDcSccf+Hb0v1naMQFXQoOXXDX
+2JegvFNBmpGN9J42Znp+VsGQX+axaCA2pIwkLCxHC1l2ZjC1vt7tj/id07sBMOby8w7gLJKA84X5
+KIq0VC6a7fd2/BVoFutKbOsuEo/Uz/4Mx1wdC34FMr5esAkqQtXJTpCzWQ27en7N1QhatH/YHGkR
++ScPewavVIMYe+HdVHpRaG53/Ma/UkpmRqGyZxq7o093oL5d//xWC0Nyd5DKnvnyOfUNqfTq1+ez
+EC8wQjchzDBwyYaYD8xYTYO7feUapTeNtqwylwA6Y3EkHp43xP901DfA4v6IRmAR3Qg/UDaruHqk
+lWJqbrDKaiFaafPz+x1wOZXzp26mgYmhiMU7ccqjUu6Du/2gd/Tkb+dC221KmYo0SLwX3OSACCK2
+8jHAPwQ+658geda4BmRkAjHXqc1S+4RFaQkAKtxVi8QGRkvASh0JWzko/amrzgD5LkhLJuYwTKVY
+yrREgk/nkR4zw7CT/xH8gdLKH3Ep3XZPkiWvHYG3Dy+MwwbMLyejSuQOmbp8HkUff6oZRZb9/D0C
+AwEAAaNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFOFmzw7R
+8bNLtwYgFP6HEtX2/vs+MA0GCSqGSIb3DQEBBQUAA4ICAQCoy3JAsnbBfnv8rWTjMnvMPLZdRtP1
+LOJwXcgu2AZ9mNELIaCJWSQBnfmvCX0KI4I01fx8cpm5o9dU9OpScA7F9dY74ToJMuYhOZO9sxXq
+T2r09Ys/L3yNWC7F4TmgPsc9SnOeQHrAK2GpZ8nzJLmzbVUsWh2eJXLOC62qx1ViC777Y7NhRCOj
+y+EaDveaBk3e1CNOIZZbOVtXHS9dCF4Jef98l7VNg64N1uajeeAz0JmWAjCnPv/So0M/BVoG6kQC
+2nz4SNAzqfkHx5Xh9T71XXG68pWpdIhhWeO/yloTunK0jF02h+mmxTwTv97QRCbut+wucPrXnbes
+5cVAWubXbHssw1abR80LzvobtCHXt2a49CUwi1wNuepnsvRtrtWhnk/Yn+knArAdBtaP4/tIEp9/
+EaEQPkxROpaw0RPxx9gmrjrKkcRpnd8BKWRRb2jaFOwIQZeQjdCygPLPwj2/kWjFgGcexGATVdVh
+mVd8upUPYUk6ynW8yQqTP2cOEvIo4jEbwFcW3wh8GcF+Dx+FHgo2fFt+J7x6v+Db9NpSvd4MVHAx
+kUOVyLzwPt0JfjBkUO1/AaQzZ01oT74V77D2AhGiGxMlOtzCWfHjXEa7ZywCRuoeSKbmW9m1vFGi
+kpbbqsY3Iqb+zCB0oy2pLmvLwIIRIbWTee5Ehr7XHuQe+w==
+-----END CERTIFICATE-----
+
+WoSign China
+============
+-----BEGIN CERTIFICATE-----
+MIIFWDCCA0CgAwIBAgIQUHBrzdgT/BtOOzNy0hFIjTANBgkqhkiG9w0BAQsFADBGMQswCQYDVQQG
+EwJDTjEaMBgGA1UEChMRV29TaWduIENBIExpbWl0ZWQxGzAZBgNVBAMMEkNBIOayg+mAmuagueiv
+geS5pjAeFw0wOTA4MDgwMTAwMDFaFw0zOTA4MDgwMTAwMDFaMEYxCzAJBgNVBAYTAkNOMRowGAYD
+VQQKExFXb1NpZ24gQ0EgTGltaXRlZDEbMBkGA1UEAwwSQ0Eg5rKD6YCa5qC56K+B5LmmMIICIjAN
+BgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0EkhHiX8h8EqwqzbdoYGTufQdDTc7WU1/FDWiD+k
+8H/rD195L4mx/bxjWDeTmzj4t1up+thxx7S8gJeNbEvxUNUqKaqoGXqW5pWOdO2XCld19AXbbQs5
+uQF/qvbW2mzmBeCkTVL829B0txGMe41P/4eDrv8FAxNXUDf+jJZSEExfv5RxadmWPgxDT74wwJ85
+dE8GRV2j1lY5aAfMh09Qd5Nx2UQIsYo06Yms25tO4dnkUkWMLhQfkWsZHWgpLFbE4h4TV2TwYeO5
+Ed+w4VegG63XX9Gv2ystP9Bojg/qnw+LNVgbExz03jWhCl3W6t8Sb8D7aQdGctyB9gQjF+BNdeFy
+b7Ao65vh4YOhn0pdr8yb+gIgthhid5E7o9Vlrdx8kHccREGkSovrlXLp9glk3Kgtn3R46MGiCWOc
+76DbT52VqyBPt7D3h1ymoOQ3OMdc4zUPLK2jgKLsLl3Az+2LBcLmc272idX10kaO6m1jGx6KyX2m
++Jzr5dVjhU1zZmkR/sgO9MHHZklTfuQZa/HpelmjbX7FF+Ynxu8b22/8DU0GAbQOXDBGVWCvOGU6
+yke6rCzMRh+yRpY/8+0mBe53oWprfi1tWFxK1I5nuPHa1UaKJ/kR8slC/k7e3x9cxKSGhxYzoacX
+GKUN5AXlK8IrC6KVkLn9YDxOiT7nnO4fuwECAwEAAaNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1Ud
+EwEB/wQFMAMBAf8wHQYDVR0OBBYEFOBNv9ybQV0T6GTwp+kVpOGBwboxMA0GCSqGSIb3DQEBCwUA
+A4ICAQBqinA4WbbaixjIvirTthnVZil6Xc1bL3McJk6jfW+rtylNpumlEYOnOXOvEESS5iVdT2H6
+yAa+Tkvv/vMx/sZ8cApBWNromUuWyXi8mHwCKe0JgOYKOoICKuLJL8hWGSbueBwj/feTZU7n85iY
+r83d2Z5AiDEoOqsuC7CsDCT6eiaY8xJhEPRdF/d+4niXVOKM6Cm6jBAyvd0zaziGfjk9DgNyp115
+j0WKWa5bIW4xRtVZjc8VX90xJc/bYNaBRHIpAlf2ltTW/+op2znFuCyKGo3Oy+dCMYYFaA6eFN0A
+kLppRQjbbpCBhqcqBT/mhDn4t/lXX0ykeVoQDF7Va/81XwVRHmyjdanPUIPTfPRm94KNPQx96N97
+qA4bLJyuQHCH2u2nFoJavjVsIE4iYdm8UXrNemHcSxH5/mc0zy4EZmFcV5cjjPOGG0jfKq+nwf/Y
+jj4Du9gqsPoUJbJRa4ZDhS4HIxaAjUz7tGM7zMN07RujHv41D198HRaG9Q7DlfEvr10lO1Hm13ZB
+ONFLAzkopR6RctR9q5czxNM+4Gm2KHmgCY0c0f9BckgG/Jou5yD5m6Leie2uPAmvylezkolwQOQv
+T8Jwg0DXJCxr5wkf09XHwQj02w47HAcLQxGEIYbpgNR12KvxAmLBsX5VYc8T1yaw15zLKYs4SgsO
+kI26oQ==
+-----END CERTIFICATE-----
+
+COMODO RSA Certification Authority
+==================================
+-----BEGIN CERTIFICATE-----
+MIIF2DCCA8CgAwIBAgIQTKr5yttjb+Af907YWwOGnTANBgkqhkiG9w0BAQwFADCBhTELMAkGA1UE
+BhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgG
+A1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlv
+biBBdXRob3JpdHkwHhcNMTAwMTE5MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMC
+R0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UE
+ChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBB
+dXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCR6FSS0gpWsawNJN3Fz0Rn
+dJkrN6N9I3AAcbxT38T6KhKPS38QVr2fcHK3YX/JSw8Xpz3jsARh7v8Rl8f0hj4K+j5c+ZPmNHrZ
+FGvnnLOFoIJ6dq9xkNfs/Q36nGz637CC9BR++b7Epi9Pf5l/tfxnQ3K9DADWietrLNPtj5gcFKt+
+5eNu/Nio5JIk2kNrYrhV/erBvGy2i/MOjZrkm2xpmfh4SDBF1a3hDTxFYPwyllEnvGfDyi62a+pG
+x8cgoLEfZd5ICLqkTqnyg0Y3hOvozIFIQ2dOciqbXL1MGyiKXCJ7tKuY2e7gUYPDCUZObT6Z+pUX
+2nwzV0E8jVHtC7ZcryxjGt9XyD+86V3Em69FmeKjWiS0uqlWPc9vqv9JWL7wqP/0uK3pN/u6uPQL
+OvnoQ0IeidiEyxPx2bvhiWC4jChWrBQdnArncevPDt09qZahSL0896+1DSJMwBGB7FY79tOi4lu3
+sgQiUpWAk2nojkxl8ZEDLXB0AuqLZxUpaVICu9ffUGpVRr+goyhhf3DQw6KqLCGqR84onAZFdr+C
+GCe01a60y1Dma/RMhnEw6abfFobg2P9A3fvQQoh/ozM6LlweQRGBY84YcWsr7KaKtzFcOmpH4MN5
+WdYgGq/yapiqcrxXStJLnbsQ/LBMQeXtHT1eKJ2czL+zUdqnR+WEUwIDAQABo0IwQDAdBgNVHQ4E
+FgQUu69+Aj36pvE8hI6t7jiY7NkyMtQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8w
+DQYJKoZIhvcNAQEMBQADggIBAArx1UaEt65Ru2yyTUEUAJNMnMvlwFTPoCWOAvn9sKIN9SCYPBMt
+rFaisNZ+EZLpLrqeLppysb0ZRGxhNaKatBYSaVqM4dc+pBroLwP0rmEdEBsqpIt6xf4FpuHA1sj+
+nq6PK7o9mfjYcwlYRm6mnPTXJ9OV2jeDchzTc+CiR5kDOF3VSXkAKRzH7JsgHAckaVd4sjn8OoSg
+tZx8jb8uk2IntznaFxiuvTwJaP+EmzzV1gsD41eeFPfR60/IvYcjt7ZJQ3mFXLrrkguhxuhoqEwW
+sRqZCuhTLJK7oQkYdQxlqHvLI7cawiiFwxv/0Cti76R7CZGYZ4wUAc1oBmpjIXUDgIiKboHGhfKp
+pC3n9KUkEEeDys30jXlYsQab5xoq2Z0B15R97QNKyvDb6KkBPvVWmckejkk9u+UJueBPSZI9FoJA
+zMxZxuY67RIuaTxslbH9qh17f4a+Hg4yRvv7E491f0yLS0Zj/gA0QHDBw7mh3aZw4gSzQbzpgJHq
+ZJx64SIDqZxubw5lT2yHh17zbqD5daWbQOhTsiedSrnAdyGN/4fy3ryM7xfft0kL0fJuMAsaDk52
+7RH89elWsn2/x20Kk4yl0MC2Hb46TpSi125sC8KKfPog88Tk5c0NqMuRkrF8hey1FGlmDoLnzc7I
+LaZRfyHBNVOFBkpdn627G190
+-----END CERTIFICATE-----
+
+USERTrust RSA Certification Authority
+=====================================
+-----BEGIN CERTIFICATE-----
+MIIF3jCCA8agAwIBAgIQAf1tMPyjylGoG7xkDjUDLTANBgkqhkiG9w0BAQwFADCBiDELMAkGA1UE
+BhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQK
+ExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNh
+dGlvbiBBdXRob3JpdHkwHhcNMTAwMjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UE
+BhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQK
+ExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNh
+dGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCAEmUXNg7D2wiz
+0KxXDXbtzSfTTK1Qg2HiqiBNCS1kCdzOiZ/MPans9s/B3PHTsdZ7NygRK0faOca8Ohm0X6a9fZ2j
+Y0K2dvKpOyuR+OJv0OwWIJAJPuLodMkYtJHUYmTbf6MG8YgYapAiPLz+E/CHFHv25B+O1ORRxhFn
+RghRy4YUVD+8M/5+bJz/Fp0YvVGONaanZshyZ9shZrHUm3gDwFA66Mzw3LyeTP6vBZY1H1dat//O
++T23LLb2VN3I5xI6Ta5MirdcmrS3ID3KfyI0rn47aGYBROcBTkZTmzNg95S+UzeQc0PzMsNT79uq
+/nROacdrjGCT3sTHDN/hMq7MkztReJVni+49Vv4M0GkPGw/zJSZrM233bkf6c0Plfg6lZrEpfDKE
+Y1WJxA3Bk1QwGROs0303p+tdOmw1XNtB1xLaqUkL39iAigmTYo61Zs8liM2EuLE/pDkP2QKe6xJM
+lXzzawWpXhaDzLhn4ugTncxbgtNMs+1b/97lc6wjOy0AvzVVdAlJ2ElYGn+SNuZRkg7zJn0cTRe8
+yexDJtC/QV9AqURE9JnnV4eeUB9XVKg+/XRjL7FQZQnmWEIuQxpMtPAlR1n6BB6T1CZGSlCBst6+
+eLf8ZxXhyVeEHg9j1uliutZfVS7qXMYoCAQlObgOK6nyTJccBz8NUvXt7y+CDwIDAQABo0IwQDAd
+BgNVHQ4EFgQUU3m/WqorSs9UgOHYm8Cd8rIDZsswDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF
+MAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAFzUfA3P9wF9QZllDHPFUp/L+M+ZBn8b2kMVn54CVVeW
+FPFSPCeHlCjtHzoBN6J2/FNQwISbxmtOuowhT6KOVWKR82kV2LyI48SqC/3vqOlLVSoGIG1VeCkZ
+7l8wXEskEVX/JJpuXior7gtNn3/3ATiUFJVDBwn7YKnuHKsSjKCaXqeYalltiz8I+8jRRa8YFWSQ
+Eg9zKC7F4iRO/Fjs8PRF/iKz6y+O0tlFYQXBl2+odnKPi4w2r78NBc5xjeambx9spnFixdjQg3IM
+8WcRiQycE0xyNN+81XHfqnHd4blsjDwSXWXavVcStkNr/+XeTWYRUc+ZruwXtuhxkYzeSf7dNXGi
+FSeUHM9h4ya7b6NnJSFd5t0dCy5oGzuCr+yDZ4XUmFF0sbmZgIn/f3gZXHlKYC6SQK5MNyosycdi
+yA5d9zZbyuAlJQG03RoHnHcAP9Dc1ew91Pq7P8yF1m9/qS3fuQL39ZeatTXaw2ewh0qpKJ4jjv9c
+J2vhsE/zB+4ALtRZh8tSQZXq9EfX7mRBVXyNWQKV3WKdwrnuWih0hKWbt5DHDAff9Yk2dDLWKMGw
+sAvgnEzDHNb842m1R0aBL6KCq9NjRHDEjf8tM7qtj3u1cIiuPhnPQCjY/MiQu12ZIvVS5ljFH4gx
+Q+6IHdfGjjxDah2nGN59PRbxYvnKkKj9
+-----END CERTIFICATE-----
+
+USERTrust ECC Certification Authority
+=====================================
+-----BEGIN CERTIFICATE-----
+MIICjzCCAhWgAwIBAgIQXIuZxVqUxdJxVt7NiYDMJjAKBggqhkjOPQQDAzCBiDELMAkGA1UEBhMC
+VVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU
+aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlv
+biBBdXRob3JpdHkwHhcNMTAwMjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMC
+VVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU
+aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlv
+biBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQarFRaqfloI+d61SRvU8Za2EurxtW2
+0eZzca7dnNYMYf3boIkDuAUU7FfO7l0/4iGzzvfUinngo4N+LZfQYcTxmdwlkWOrfzCjtHDix6Ez
+nPO/LlxTsV+zfTJ/ijTjeXmjQjBAMB0GA1UdDgQWBBQ64QmG1M8ZwpZ2dEl23OA1xmNjmjAOBgNV
+HQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjA2Z6EWCNzklwBB
+HU6+4WMBzzuqQhFkoJ2UOQIReVx7Hfpkue4WQrO/isIJxOzksU0CMQDpKmFHjFJKS04YcPbWRNZu
+9YO6bVi9JNlWSOrvxKJGgYhqOkbRqZtNyWHa0V1Xahg=
+-----END CERTIFICATE-----
+
+GlobalSign ECC Root CA - R4
+===========================
+-----BEGIN CERTIFICATE-----
+MIIB4TCCAYegAwIBAgIRKjikHJYKBN5CsiilC+g0mAIwCgYIKoZIzj0EAwIwUDEkMCIGA1UECxMb
+R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI0MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD
+EwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoXDTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMb
+R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI0MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD
+EwpHbG9iYWxTaWduMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEuMZ5049sJQ6fLjkZHAOkrprl
+OQcJFspjsbmG+IpXwVfOQvpzofdlQv8ewQCybnMO/8ch5RikqtlxP6jUuc6MHaNCMEAwDgYDVR0P
+AQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFFSwe61FuOJAf/sKbvu+M8k8o4TV
+MAoGCCqGSM49BAMCA0gAMEUCIQDckqGgE6bPA7DmxCGXkPoUVy0D7O48027KqGx2vKLeuwIgJ6iF
+JzWbVsaj8kfSt24bAgAXqmemFZHe+pTsewv4n4Q=
+-----END CERTIFICATE-----
+
+GlobalSign ECC Root CA - R5
+===========================
+-----BEGIN CERTIFICATE-----
+MIICHjCCAaSgAwIBAgIRYFlJ4CYuu1X5CneKcflK2GwwCgYIKoZIzj0EAwMwUDEkMCIGA1UECxMb
+R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD
+EwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoXDTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMb
+R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD
+EwpHbG9iYWxTaWduMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAER0UOlvt9Xb/pOdEh+J8LttV7HpI6
+SFkc8GIxLcB6KP4ap1yztsyX50XUWPrRd21DosCHZTQKH3rd6zwzocWdTaRvQZU4f8kehOvRnkmS
+h5SHDDqFSmafnVmTTZdhBoZKo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAd
+BgNVHQ4EFgQUPeYpSJvqB8ohREom3m7e0oPQn1kwCgYIKoZIzj0EAwMDaAAwZQIxAOVpEslu28Yx
+uglB4Zf4+/2a4n0Sye18ZNPLBSWLVtmg515dTguDnFt2KaAJJiFqYgIwcdK1j1zqO+F4CYWodZI7
+yFz9SO8NdCKoCOJuxUnOxwy8p2Fp8fc74SrL+SvzZpA3
+-----END CERTIFICATE-----
+
+Staat der Nederlanden Root CA - G3
+==================================
+-----BEGIN CERTIFICATE-----
+MIIFdDCCA1ygAwIBAgIEAJiiOTANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJOTDEeMBwGA1UE
+CgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSswKQYDVQQDDCJTdGFhdCBkZXIgTmVkZXJsYW5kZW4g
+Um9vdCBDQSAtIEczMB4XDTEzMTExNDExMjg0MloXDTI4MTExMzIzMDAwMFowWjELMAkGA1UEBhMC
+TkwxHjAcBgNVBAoMFVN0YWF0IGRlciBOZWRlcmxhbmRlbjErMCkGA1UEAwwiU3RhYXQgZGVyIE5l
+ZGVybGFuZGVuIFJvb3QgQ0EgLSBHMzCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL4y
+olQPcPssXFnrbMSkUeiFKrPMSjTysF/zDsccPVMeiAho2G89rcKezIJnByeHaHE6n3WWIkYFsO2t
+x1ueKt6c/DrGlaf1F2cY5y9JCAxcz+bMNO14+1Cx3Gsy8KL+tjzk7FqXxz8ecAgwoNzFs21v0IJy
+EavSgWhZghe3eJJg+szeP4TrjTgzkApyI/o1zCZxMdFyKJLZWyNtZrVtB0LrpjPOktvA9mxjeM3K
+Tj215VKb8b475lRgsGYeCasH/lSJEULR9yS6YHgamPfJEf0WwTUaVHXvQ9Plrk7O53vDxk5hUUur
+mkVLoR9BvUhTFXFkC4az5S6+zqQbwSmEorXLCCN2QyIkHxcE1G6cxvx/K2Ya7Irl1s9N9WMJtxU5
+1nus6+N86U78dULI7ViVDAZCopz35HCz33JvWjdAidiFpNfxC95DGdRKWCyMijmev4SH8RY7Ngzp
+07TKbBlBUgmhHbBqv4LvcFEhMtwFdozL92TkA1CvjJFnq8Xy7ljY3r735zHPbMk7ccHViLVlvMDo
+FxcHErVc0qsgk7TmgoNwNsXNo42ti+yjwUOH5kPiNL6VizXtBznaqB16nzaeErAMZRKQFWDZJkBE
+41ZgpRDUajz9QdwOWke275dhdU/Z/seyHdTtXUmzqWrLZoQT1Vyg3N9udwbRcXXIV2+vD3dbAgMB
+AAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRUrfrHkleu
+yjWcLhL75LpdINyUVzANBgkqhkiG9w0BAQsFAAOCAgEAMJmdBTLIXg47mAE6iqTnB/d6+Oea31BD
+U5cqPco8R5gu4RV78ZLzYdqQJRZlwJ9UXQ4DO1t3ApyEtg2YXzTdO2PCwyiBwpwpLiniyMMB8jPq
+KqrMCQj3ZWfGzd/TtiunvczRDnBfuCPRy5FOCvTIeuXZYzbB1N/8Ipf3YF3qKS9Ysr1YvY2WTxB1
+v0h7PVGHoTx0IsL8B3+A3MSs/mrBcDCw6Y5p4ixpgZQJut3+TcCDjJRYwEYgr5wfAvg1VUkvRtTA
+8KCWAg8zxXHzniN9lLf9OtMJgwYh/WA9rjLA0u6NpvDntIJ8CsxwyXmA+P5M9zWEGYox+wrZ13+b
+8KKaa8MFSu1BYBQw0aoRQm7TIwIEC8Zl3d1Sd9qBa7Ko+gE4uZbqKmxnl4mUnrzhVNXkanjvSr0r
+mj1AfsbAddJu+2gw7OyLnflJNZoaLNmzlTnVHpL3prllL+U9bTpITAjc5CgSKL59NVzq4BZ+Extq
+1z7XnvwtdbLBFNUjA9tbbws+eC8N3jONFrdI54OagQ97wUNNVQQXOEpR1VmiiXTTn74eS9fGbbeI
+JG9gkaSChVtWQbzQRKtqE77RLFi3EjNYsjdj3BP1lB0/QFH1T/U67cjF68IeHRaVesd+QnGTbksV
+tzDfqu1XhUisHWrdOWnk4Xl4vs4Fv6EM94B7IWcnMFk=
+-----END CERTIFICATE-----
+
+Staat der Nederlanden EV Root CA
+================================
+-----BEGIN CERTIFICATE-----
+MIIFcDCCA1igAwIBAgIEAJiWjTANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJOTDEeMBwGA1UE
+CgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSkwJwYDVQQDDCBTdGFhdCBkZXIgTmVkZXJsYW5kZW4g
+RVYgUm9vdCBDQTAeFw0xMDEyMDgxMTE5MjlaFw0yMjEyMDgxMTEwMjhaMFgxCzAJBgNVBAYTAk5M
+MR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xKTAnBgNVBAMMIFN0YWF0IGRlciBOZWRl
+cmxhbmRlbiBFViBSb290IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA48d+ifkk
+SzrSM4M1LGns3Amk41GoJSt5uAg94JG6hIXGhaTK5skuU6TJJB79VWZxXSzFYGgEt9nCUiY4iKTW
+O0Cmws0/zZiTs1QUWJZV1VD+hq2kY39ch/aO5ieSZxeSAgMs3NZmdO3dZ//BYY1jTw+bbRcwJu+r
+0h8QoPnFfxZpgQNH7R5ojXKhTbImxrpsX23Wr9GxE46prfNeaXUmGD5BKyF/7otdBwadQ8QpCiv8
+Kj6GyzyDOvnJDdrFmeK8eEEzduG/L13lpJhQDBXd4Pqcfzho0LKmeqfRMb1+ilgnQ7O6M5HTp5gV
+XJrm0w912fxBmJc+qiXbj5IusHsMX/FjqTf5m3VpTCgmJdrV8hJwRVXj33NeN/UhbJCONVrJ0yPr
+08C+eKxCKFhmpUZtcALXEPlLVPxdhkqHz3/KRawRWrUgUY0viEeXOcDPusBCAUCZSCELa6fS/ZbV
+0b5GnUngC6agIk440ME8MLxwjyx1zNDFjFE7PZQIZCZhfbnDZY8UnCHQqv0XcgOPvZuM5l5Tnrmd
+74K74bzickFbIZTTRTeU0d8JOV3nI6qaHcptqAqGhYqCvkIH1vI4gnPah1vlPNOePqc7nvQDs/nx
+fRN0Av+7oeX6AHkcpmZBiFxgV6YuCcS6/ZrPpx9Aw7vMWgpVSzs4dlG4Y4uElBbmVvMCAwEAAaNC
+MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFP6rAJCYniT8qcwa
+ivsnuL8wbqg7MA0GCSqGSIb3DQEBCwUAA4ICAQDPdyxuVr5Os7aEAJSrR8kN0nbHhp8dB9O2tLsI
+eK9p0gtJ3jPFrK3CiAJ9Brc1AsFgyb/E6JTe1NOpEyVa/m6irn0F3H3zbPB+po3u2dfOWBfoqSmu
+c0iH55vKbimhZF8ZE/euBhD/UcabTVUlT5OZEAFTdfETzsemQUHSv4ilf0X8rLiltTMMgsT7B/Zq
+5SWEXwbKwYY5EdtYzXc7LMJMD16a4/CrPmEbUCTCwPTxGfARKbalGAKb12NMcIxHowNDXLldRqAN
+b/9Zjr7dn3LDWyvfjFvO5QxGbJKyCqNMVEIYFRIYvdr8unRu/8G2oGTYqV9Vrp9canaW2HNnh/tN
+f1zuacpzEPuKqf2evTY4SUmH9A4U8OmHuD+nT3pajnnUk+S7aFKErGzp85hwVXIy+TSrK0m1zSBi
+5Dp6Z2Orltxtrpfs/J92VoguZs9btsmksNcFuuEnL5O7Jiqik7Ab846+HUCjuTaPPoIaGl6I6lD4
+WeKDRikL40Rc4ZW2aZCaFG+XroHPaO+Zmr615+F/+PoTRxZMzG0IQOeLeG9QgkRQP2YGiqtDhFZK
+DyAthg710tvSeopLzaXoTvFeJiUBWSOgftL2fiFX1ye8FVdMpEbB4IMeDExNH08GGeL5qPQ6gqGy
+eUN51q1veieQA6TqJIc/2b3Z6fJfUEkc7uzXLg==
+-----END CERTIFICATE-----
+
+IdenTrust Commercial Root CA 1
+==============================
+-----BEGIN CERTIFICATE-----
+MIIFYDCCA0igAwIBAgIQCgFCgAAAAUUjyES1AAAAAjANBgkqhkiG9w0BAQsFADBKMQswCQYDVQQG
+EwJVUzESMBAGA1UEChMJSWRlblRydXN0MScwJQYDVQQDEx5JZGVuVHJ1c3QgQ29tbWVyY2lhbCBS
+b290IENBIDEwHhcNMTQwMTE2MTgxMjIzWhcNMzQwMTE2MTgxMjIzWjBKMQswCQYDVQQGEwJVUzES
+MBAGA1UEChMJSWRlblRydXN0MScwJQYDVQQDEx5JZGVuVHJ1c3QgQ29tbWVyY2lhbCBSb290IENB
+IDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCnUBneP5k91DNG8W9RYYKyqU+PZ4ld
+hNlT3Qwo2dfw/66VQ3KZ+bVdfIrBQuExUHTRgQ18zZshq0PirK1ehm7zCYofWjK9ouuU+ehcCuz/
+mNKvcbO0U59Oh++SvL3sTzIwiEsXXlfEU8L2ApeN2WIrvyQfYo3fw7gpS0l4PJNgiCL8mdo2yMKi
+1CxUAGc1bnO/AljwpN3lsKImesrgNqUZFvX9t++uP0D1bVoE/c40yiTcdCMbXTMTEl3EASX2MN0C
+XZ/g1Ue9tOsbobtJSdifWwLziuQkkORiT0/Br4sOdBeo0XKIanoBScy0RnnGF7HamB4HWfp1IYVl
+3ZBWzvurpWCdxJ35UrCLvYf5jysjCiN2O/cz4ckA82n5S6LgTrx+kzmEB/dEcH7+B1rlsazRGMzy
+NeVJSQjKVsk9+w8YfYs7wRPCTY/JTw436R+hDmrfYi7LNQZReSzIJTj0+kuniVyc0uMNOYZKdHzV
+WYfCP04MXFL0PfdSgvHqo6z9STQaKPNBiDoT7uje/5kdX7rL6B7yuVBgwDHTc+XvvqDtMwt0viAg
+xGds8AgDelWAf0ZOlqf0Hj7h9tgJ4TNkK2PXMl6f+cB7D3hvl7yTmvmcEpB4eoCHFddydJxVdHix
+uuFucAS6T6C6aMN7/zHwcz09lCqxC0EOoP5NiGVreTO01wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMC
+AQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU7UQZwNPwBovupHu+QucmVMiONnYwDQYJKoZI
+hvcNAQELBQADggIBAA2ukDL2pkt8RHYZYR4nKM1eVO8lvOMIkPkp165oCOGUAFjvLi5+U1KMtlwH
+6oi6mYtQlNeCgN9hCQCTrQ0U5s7B8jeUeLBfnLOic7iPBZM4zY0+sLj7wM+x8uwtLRvM7Kqas6pg
+ghstO8OEPVeKlh6cdbjTMM1gCIOQ045U8U1mwF10A0Cj7oV+wh93nAbowacYXVKV7cndJZ5t+qnt
+ozo00Fl72u1Q8zW/7esUTTHHYPTa8Yec4kjixsU3+wYQ+nVZZjFHKdp2mhzpgq7vmrlR94gjmmmV
+YjzlVYA211QC//G5Xc7UI2/YRYRKW2XviQzdFKcgyxilJbQN+QHwotL0AMh0jqEqSI5l2xPE4iUX
+feu+h1sXIFRRk0pTAwvsXcoz7WL9RccvW9xYoIA55vrX/hMUpu09lEpCdNTDd1lzzY9GvlU47/ro
+kTLql1gEIt44w8y8bckzOmoKaT+gyOpyj4xjhiO9bTyWnpXgSUyqorkqG5w2gXjtw+hG4iZZRHUe
+2XWJUc0QhJ1hYMtd+ZciTY6Y5uN/9lu7rs3KSoFrXgvzUeF0K+l+J6fZmUlO+KWA2yUPHGNiiskz
+Z2s8EIPGrd6ozRaOjfAHN3Gf8qv8QfXBi+wAN10J5U6A7/qxXDgGpRtK4dw4LTzcqx+QGtVKnO7R
+cGzM7vRX+Bi6hG6H
+-----END CERTIFICATE-----
+
+IdenTrust Public Sector Root CA 1
+=================================
+-----BEGIN CERTIFICATE-----
+MIIFZjCCA06gAwIBAgIQCgFCgAAAAUUjz0Z8AAAAAjANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQG
+EwJVUzESMBAGA1UEChMJSWRlblRydXN0MSowKAYDVQQDEyFJZGVuVHJ1c3QgUHVibGljIFNlY3Rv
+ciBSb290IENBIDEwHhcNMTQwMTE2MTc1MzMyWhcNMzQwMTE2MTc1MzMyWjBNMQswCQYDVQQGEwJV
+UzESMBAGA1UEChMJSWRlblRydXN0MSowKAYDVQQDEyFJZGVuVHJ1c3QgUHVibGljIFNlY3RvciBS
+b290IENBIDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2IpT8pEiv6EdrCvsnduTy
+P4o7ekosMSqMjbCpwzFrqHd2hCa2rIFCDQjrVVi7evi8ZX3yoG2LqEfpYnYeEe4IFNGyRBb06tD6
+Hi9e28tzQa68ALBKK0CyrOE7S8ItneShm+waOh7wCLPQ5CQ1B5+ctMlSbdsHyo+1W/CD80/HLaXI
+rcuVIKQxKFdYWuSNG5qrng0M8gozOSI5Cpcu81N3uURF/YTLNiCBWS2ab21ISGHKTN9T0a9SvESf
+qy9rg3LvdYDaBjMbXcjaY8ZNzaxmMc3R3j6HEDbhuaR672BQssvKplbgN6+rNBM5Jeg5ZuSYeqoS
+mJxZZoY+rfGwyj4GD3vwEUs3oERte8uojHH01bWRNszwFcYr3lEXsZdMUD2xlVl8BX0tIdUAvwFn
+ol57plzy9yLxkA2T26pEUWbMfXYD62qoKjgZl3YNa4ph+bz27nb9cCvdKTz4Ch5bQhyLVi9VGxyh
+LrXHFub4qjySjmm2AcG1hp2JDws4lFTo6tyePSW8Uybt1as5qsVATFSrsrTZ2fjXctscvG29ZV/v
+iDUqZi/u9rNl8DONfJhBaUYPQxxp+pu10GFqzcpL2UyQRqsVWaFHVCkugyhfHMKiq3IXAAaOReyL
+4jM9f9oZRORicsPfIsbyVtTdX5Vy7W1f90gDW/3FKqD2cyOEEBsB5wIDAQABo0IwQDAOBgNVHQ8B
+Af8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU43HgntinQtnbcZFrlJPrw6PRFKMw
+DQYJKoZIhvcNAQELBQADggIBAEf63QqwEZE4rU1d9+UOl1QZgkiHVIyqZJnYWv6IAcVYpZmxI1Qj
+t2odIFflAWJBF9MJ23XLblSQdf4an4EKwt3X9wnQW3IV5B4Jaj0z8yGa5hV+rVHVDRDtfULAj+7A
+mgjVQdZcDiFpboBhDhXAuM/FSRJSzL46zNQuOAXeNf0fb7iAaJg9TaDKQGXSc3z1i9kKlT/YPyNt
+GtEqJBnZhbMX73huqVjRI9PHE+1yJX9dsXNw0H8GlwmEKYBhHfpe/3OsoOOJuBxxFcbeMX8S3OFt
+m6/n6J91eEyrRjuazr8FGF1NFTwWmhlQBJqymm9li1JfPFgEKCXAZmExfrngdbkaqIHWchezxQMx
+NRF4eKLg6TCMf4DfWN88uieW4oA0beOY02QnrEh+KHdcxiVhJfiFDGX6xDIvpZgF5PgLZxYWxoK4
+Mhn5+bl53B/N66+rDt0b20XkeucC4pVd/GnwU2lhlXV5C15V5jgclKlZM57IcXR5f1GJtshquDDI
+ajjDbp7hNxbqBWJMWxJH7ae0s1hWx0nzfxJoCTFx8G34Tkf71oXuxVhAGaQdp/lLQzfcaFpPz+vC
+ZHTetBXZ9FRUGi8c15dxVJCO2SCdUyt/q4/i6jC8UDfv8Ue1fXwsBOxonbRJRBD0ckscZOf85muQ
+3Wl9af0AVqW3rLatt8o+Ae+c
+-----END CERTIFICATE-----
+
+Entrust Root Certification Authority - G2
+=========================================
+-----BEGIN CERTIFICATE-----
+MIIEPjCCAyagAwIBAgIESlOMKDANBgkqhkiG9w0BAQsFADCBvjELMAkGA1UEBhMCVVMxFjAUBgNV
+BAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVy
+bXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ug
+b25seTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIw
+HhcNMDkwNzA3MTcyNTU0WhcNMzAxMjA3MTc1NTU0WjCBvjELMAkGA1UEBhMCVVMxFjAUBgNVBAoT
+DUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVybXMx
+OTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25s
+eTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIwggEi
+MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6hLZy254Ma+KZ6TABp3bqMriVQRrJ2mFOWHLP
+/vaCeb9zYQYKpSfYs1/TRU4cctZOMvJyig/3gxnQaoCAAEUesMfnmr8SVycco2gvCoe9amsOXmXz
+HHfV1IWNcCG0szLni6LVhjkCsbjSR87kyUnEO6fe+1R9V77w6G7CebI6C1XiUJgWMhNcL3hWwcKU
+s/Ja5CeanyTXxuzQmyWC48zCxEXFjJd6BmsqEZ+pCm5IO2/b1BEZQvePB7/1U1+cPvQXLOZprE4y
+TGJ36rfo5bs0vBmLrpxR57d+tVOxMyLlbc9wPBr64ptntoP0jaWvYkxN4FisZDQSA/i2jZRjJKRx
+AgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqciZ6
+0B7vfec7aVHUbI2fkBJmqzANBgkqhkiG9w0BAQsFAAOCAQEAeZ8dlsa2eT8ijYfThwMEYGprmi5Z
+iXMRrEPR9RP/jTkrwPK9T3CMqS/qF8QLVJ7UG5aYMzyorWKiAHarWWluBh1+xLlEjZivEtRh2woZ
+Rkfz6/djwUAFQKXSt/S1mja/qYh2iARVBCuch38aNzx+LaUa2NSJXsq9rD1s2G2v1fN2D807iDgi
+nWyTmsQ9v4IbZT+mD12q/OWyFcq1rca8PdCE6OoGcrBNOTJ4vz4RnAuknZoh8/CbCzB428Hch0P+
+vGOaysXCHMnHjf87ElgI5rY97HosTvuDls4MPGmHVHOkc8KT/1EQrBVUAdj8BbGJoX90g5pJ19xO
+e4pIb4tF9g==
+-----END CERTIFICATE-----
+
+Entrust Root Certification Authority - EC1
+==========================================
+-----BEGIN CERTIFICATE-----
+MIIC+TCCAoCgAwIBAgINAKaLeSkAAAAAUNCR+TAKBggqhkjOPQQDAzCBvzELMAkGA1UEBhMCVVMx
+FjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVn
+YWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDEyIEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXpl
+ZCB1c2Ugb25seTEzMDEGA1UEAxMqRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5
+IC0gRUMxMB4XDTEyMTIxODE1MjUzNloXDTM3MTIxODE1NTUzNlowgb8xCzAJBgNVBAYTAlVTMRYw
+FAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3QubmV0L2xlZ2Fs
+LXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxMiBFbnRydXN0LCBJbmMuIC0gZm9yIGF1dGhvcml6ZWQg
+dXNlIG9ubHkxMzAxBgNVBAMTKkVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAt
+IEVDMTB2MBAGByqGSM49AgEGBSuBBAAiA2IABIQTydC6bUF74mzQ61VfZgIaJPRbiWlH47jCffHy
+AsWfoPZb1YsGGYZPUxBtByQnoaD41UcZYUx9ypMn6nQM72+WCf5j7HBdNq1nd67JnXxVRDqiY1Ef
+9eNi1KlHBz7MIKNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYE
+FLdj5xrdjekIplWDpOBqUEFlEUJJMAoGCCqGSM49BAMDA2cAMGQCMGF52OVCR98crlOZF7ZvHH3h
+vxGU0QOIdeSNiaSKd0bebWHvAvX7td/M/k7//qnmpwIwW5nXhTcGtXsI/esni0qU+eH6p44mCOh8
+kmhtc9hvJqwhAriZtyZBWyVgrtBIGu4G
+-----END CERTIFICATE-----
+
+CFCA EV ROOT
+============
+-----BEGIN CERTIFICATE-----
+MIIFjTCCA3WgAwIBAgIEGErM1jANBgkqhkiG9w0BAQsFADBWMQswCQYDVQQGEwJDTjEwMC4GA1UE
+CgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRUwEwYDVQQDDAxDRkNB
+IEVWIFJPT1QwHhcNMTIwODA4MDMwNzAxWhcNMjkxMjMxMDMwNzAxWjBWMQswCQYDVQQGEwJDTjEw
+MC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRUwEwYDVQQD
+DAxDRkNBIEVWIFJPT1QwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDXXWvNED8fBVnV
+BU03sQ7smCuOFR36k0sXgiFxEFLXUWRwFsJVaU2OFW2fvwwbwuCjZ9YMrM8irq93VCpLTIpTUnrD
+7i7es3ElweldPe6hL6P3KjzJIx1qqx2hp/Hz7KDVRM8Vz3IvHWOX6Jn5/ZOkVIBMUtRSqy5J35DN
+uF++P96hyk0g1CXohClTt7GIH//62pCfCqktQT+x8Rgp7hZZLDRJGqgG16iI0gNyejLi6mhNbiyW
+ZXvKWfry4t3uMCz7zEasxGPrb382KzRzEpR/38wmnvFyXVBlWY9ps4deMm/DGIq1lY+wejfeWkU7
+xzbh72fROdOXW3NiGUgthxwG+3SYIElz8AXSG7Ggo7cbcNOIabla1jj0Ytwli3i/+Oh+uFzJlU9f
+py25IGvPa931DfSCt/SyZi4QKPaXWnuWFo8BGS1sbn85WAZkgwGDg8NNkt0yxoekN+kWzqotaK8K
+gWU6cMGbrU1tVMoqLUuFG7OA5nBFDWteNfB/O7ic5ARwiRIlk9oKmSJgamNgTnYGmE69g60dWIol
+hdLHZR4tjsbftsbhf4oEIRUpdPA+nJCdDC7xij5aqgwJHsfVPKPtl8MeNPo4+QgO48BdK4PRVmrJ
+tqhUUy54Mmc9gn900PvhtgVguXDbjgv5E1hvcWAQUhC5wUEJ73IfZzF4/5YFjQIDAQABo2MwYTAf
+BgNVHSMEGDAWgBTj/i39KNALtbq2osS/BqoFjJP7LzAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB
+/wQEAwIBBjAdBgNVHQ4EFgQU4/4t/SjQC7W6tqLEvwaqBYyT+y8wDQYJKoZIhvcNAQELBQADggIB
+ACXGumvrh8vegjmWPfBEp2uEcwPenStPuiB/vHiyz5ewG5zz13ku9Ui20vsXiObTej/tUxPQ4i9q
+ecsAIyjmHjdXNYmEwnZPNDatZ8POQQaIxffu2Bq41gt/UP+TqhdLjOztUmCypAbqTuv0axn96/Ua
+4CUqmtzHQTb3yHQFhDmVOdYLO6Qn+gjYXB74BGBSESgoA//vU2YApUo0FmZ8/Qmkrp5nGm9BC2sG
+E5uPhnEFtC+NiWYzKXZUmhH4J/qyP5Hgzg0b8zAarb8iXRvTvyUFTeGSGn+ZnzxEk8rUQElsgIfX
+BDrDMlI1Dlb4pd19xIsNER9Tyx6yF7Zod1rg1MvIB671Oi6ON7fQAUtDKXeMOZePglr4UeWJoBjn
+aH9dCi77o0cOPaYjesYBx4/IXr9tgFa+iiS6M+qf4TIRnvHST4D2G0CvOJ4RUHlzEhLN5mydLIhy
+PDCBBpEi6lmt2hkuIsKNuYyH4Ga8cyNfIWRjgEj1oDwYPZTISEEdQLpe/v5WOaHIz16eGWRGENoX
+kbcFgKyLmZJ956LYBws2J+dIeWCKw9cTXPhyQN9Ky8+ZAAoACxGV2lZFA4gKn2fQ1XmxqI1AbQ3C
+ekD6819kR5LLU7m7Wc5P/dAVUwHY3+vZ5nbv0CO7O6l5s9UCKc2Jo5YPSjXnTkLAdc0Hz+Ys63su
+-----END CERTIFICATE-----
diff --git a/lib/chimpchat.jar b/lib/chimpchat.jar
new file mode 100644
index 0000000..39a1ebe
--- /dev/null
+++ b/lib/chimpchat.jar
Binary files differ
diff --git a/lib/common-25.3.0-dev.jar b/lib/common-25.3.0-dev.jar
new file mode 100644
index 0000000..18f436d
--- /dev/null
+++ b/lib/common-25.3.0-dev.jar
Binary files differ
diff --git a/lib/common.jar b/lib/common.jar
new file mode 100644
index 0000000..316537f
--- /dev/null
+++ b/lib/common.jar
Binary files differ
diff --git a/lib/commons-codec-1.4.jar b/lib/commons-codec-1.4.jar
new file mode 100644
index 0000000..458d432
--- /dev/null
+++ b/lib/commons-codec-1.4.jar
Binary files differ
diff --git a/lib/commons-compress-1.8.1.jar b/lib/commons-compress-1.8.1.jar
new file mode 100644
index 0000000..66b0a56
--- /dev/null
+++ b/lib/commons-compress-1.8.1.jar
Binary files differ
diff --git a/lib/commons-logging-1.1.1.jar b/lib/commons-logging-1.1.1.jar
new file mode 100644
index 0000000..1deef14
--- /dev/null
+++ b/lib/commons-logging-1.1.1.jar
Binary files differ
diff --git a/lib/ddmlib.jar b/lib/ddmlib.jar
new file mode 100644
index 0000000..c6520e5
--- /dev/null
+++ b/lib/ddmlib.jar
Binary files differ
diff --git a/lib/ddms.jar b/lib/ddms.jar
new file mode 100644
index 0000000..eb12b1d
--- /dev/null
+++ b/lib/ddms.jar
Binary files differ
diff --git a/lib/ddmuilib.jar b/lib/ddmuilib.jar
new file mode 100644
index 0000000..71faa42
--- /dev/null
+++ b/lib/ddmuilib.jar
Binary files differ
diff --git a/lib/devices.xml b/lib/devices.xml
new file mode 100644
index 0000000..0c7cb96
--- /dev/null
+++ b/lib/devices.xml
@@ -0,0 +1,595 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<d:devices xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+           xmlns:d="http://schemas.android.com/sdk/devices/1">
+
+    <d:device>
+        <d:name>Nexus One</d:name>
+        <d:manufacturer>Google</d:manufacturer>
+        <d:hardware>
+            <d:screen>
+                <d:screen-size>normal</d:screen-size>
+                <d:diagonal-length>3.7</d:diagonal-length>
+                <d:pixel-density>hdpi</d:pixel-density>
+                <d:screen-ratio>long</d:screen-ratio>
+                <d:dimensions>
+                    <d:x-dimension>480</d:x-dimension>
+                    <d:y-dimension>800</d:y-dimension>
+                </d:dimensions>
+                <d:xdpi>254</d:xdpi>
+                <d:ydpi>254</d:ydpi>
+                <d:touch>
+                    <d:multitouch>basic</d:multitouch>
+                    <d:mechanism>finger</d:mechanism>
+                    <d:screen-type>capacitive</d:screen-type>
+                </d:touch>
+            </d:screen>
+            <d:networking>
+                Wifi
+                Bluetooth
+            </d:networking>
+            <d:sensors>
+                Accelerometer
+                Compass
+                GPS
+                LightSensor
+                ProximitySensor
+            </d:sensors>
+            <d:mic>true</d:mic>
+            <d:camera>
+                <d:location>back</d:location>
+                <d:autofocus>true</d:autofocus>
+                <d:flash>true</d:flash>
+            </d:camera>
+            <d:keyboard>nokeys</d:keyboard>
+            <d:nav>trackball</d:nav>
+            <d:ram unit="MiB">512</d:ram>
+            <d:buttons>hard</d:buttons>
+            <d:internal-storage unit="MiB">503</d:internal-storage>
+            <d:removable-storage unit="MiB">0</d:removable-storage>
+            <d:cpu>Qualcomm Scorpion</d:cpu>
+            <d:gpu>Qualcomm Adreno 200</d:gpu>
+            <d:abi>
+                armeabi-v7a
+                armeabi
+            </d:abi>
+            <d:dock> </d:dock>
+            <d:power-type>battery</d:power-type>
+        </d:hardware>
+        <d:software>
+            <d:api-level>7-10</d:api-level>
+            <d:live-wallpaper-support>true</d:live-wallpaper-support>
+            <d:bluetooth-profiles> </d:bluetooth-profiles>
+            <d:gl-version>2.0</d:gl-version>
+            <d:gl-extensions>
+            </d:gl-extensions>
+            <d:status-bar>true</d:status-bar>
+        </d:software>
+        <d:state name="Portrait" default="true">
+            <d:description>The phone in portrait view</d:description>
+            <d:screen-orientation>port</d:screen-orientation>
+            <d:keyboard-state>keyssoft</d:keyboard-state>
+            <d:nav-state>nonav</d:nav-state>
+        </d:state>
+        <d:state name="Landscape">
+            <d:description>The phone in landscape view</d:description>
+            <d:screen-orientation>land</d:screen-orientation>
+            <d:keyboard-state>keyssoft</d:keyboard-state>
+            <d:nav-state>nonav</d:nav-state>
+        </d:state>
+    </d:device>
+    <d:device>
+        <d:name>Nexus S</d:name>
+        <d:manufacturer>Google</d:manufacturer>
+        <d:hardware>
+            <d:screen>
+                <d:screen-size>normal</d:screen-size>
+                <d:diagonal-length>4</d:diagonal-length>
+                <d:pixel-density>hdpi</d:pixel-density>
+                <d:screen-ratio>long</d:screen-ratio>
+                <d:dimensions>
+                    <d:x-dimension>480</d:x-dimension>
+                    <d:y-dimension>800</d:y-dimension>
+                </d:dimensions>
+                <d:xdpi>235</d:xdpi>
+                <d:ydpi>235</d:ydpi>
+                <d:touch>
+                    <d:multitouch>jazz-hands</d:multitouch>
+                    <d:mechanism>finger</d:mechanism>
+                    <d:screen-type>capacitive</d:screen-type>
+                </d:touch>
+            </d:screen>
+            <d:networking>
+                Wifi
+                Bluetooth
+                NFC
+            </d:networking>
+            <d:sensors>
+                Accelerometer
+                Compass
+                GPS
+                Gyroscope
+                LightSensor
+                ProximitySensor
+            </d:sensors>
+            <d:mic>true</d:mic>
+            <d:camera>
+                <d:location>back</d:location>
+                <d:autofocus>true</d:autofocus>
+                <d:flash>true</d:flash>
+            </d:camera>
+            <d:camera>
+                <d:location>front</d:location>
+                <d:autofocus>false</d:autofocus>
+                <d:flash>false</d:flash>
+            </d:camera>
+            <d:keyboard>nokeys</d:keyboard>
+            <d:nav>nonav</d:nav>
+            <d:ram unit="KiB">351428</d:ram>
+            <d:buttons>hard</d:buttons>
+            <d:internal-storage unit="MiB">503</d:internal-storage>
+            <d:removable-storage unit="MiB">0</d:removable-storage>
+            <d:cpu>Samsung Exynos 3110</d:cpu>
+            <d:gpu>PowerVR SGX 540</d:gpu>
+            <d:abi>
+                armeabi-v7a
+                armeabi
+            </d:abi>
+            <d:dock> </d:dock>
+            <d:power-type>battery</d:power-type>
+        </d:hardware>
+        <d:software>
+            <d:api-level>9-16</d:api-level>
+            <d:live-wallpaper-support>true</d:live-wallpaper-support>
+            <d:bluetooth-profiles> </d:bluetooth-profiles>
+            <d:gl-version>2.0</d:gl-version>
+            <d:gl-extensions>
+                GL_EXT_debug_marker
+                GL_OES_rgb8_rgba8
+                GL_OES_depth24
+                GL_OES_vertex_half_float
+                GL_OES_texture_float
+                GL_OES_texture_half_float
+                GL_OES_element_index_uint
+                GL_OES_mapbuffer
+                GL_OES_fragment_precision_high
+                GL_OES_compressed_ETC1_RGB8_texture
+                GL_OES_EGL_image
+                GL_OES_EGL_image_external
+                GL_OES_required_internalformat
+                GL_OES_depth_texture
+                GL_OES_get_program_binary
+                GL_OES_packed_depth_stencil
+                GL_OES_standard_derivatives
+                GL_OES_vertex_array_object
+                GL_OES_egl_sync
+                GL_EXT_multi_draw_arrays
+                GL_EXT_texture_format_BGRA8888
+                GL_EXT_discard_framebuffer
+                GL_EXT_shader_texture_lod
+                GL_IMG_shader_binary
+                GL_IMG_texture_compression_pvrtc
+                GL_IMG_texture_npot
+                GL_IMG_texture_format_BGRA8888
+                GL_IMG_read_format
+                GL_IMG_program_binary
+                GL_IMG_multisampled_render_to_texture
+            </d:gl-extensions>
+            <d:status-bar>true</d:status-bar>
+        </d:software>
+        <d:state name="Portrait" default="true">
+            <d:description>The phone in portrait view</d:description>
+            <d:screen-orientation>port</d:screen-orientation>
+            <d:keyboard-state>keyssoft</d:keyboard-state>
+            <d:nav-state>nonav</d:nav-state>
+        </d:state>
+        <d:state name="Landscape">
+            <d:description>The phone in landscape view</d:description>
+            <d:screen-orientation>land</d:screen-orientation>
+            <d:keyboard-state>keyssoft</d:keyboard-state>
+            <d:nav-state>nonav</d:nav-state>
+        </d:state>
+    </d:device>
+
+    <d:device>
+        <d:name>Galaxy Nexus</d:name>
+        <d:manufacturer>Google</d:manufacturer>
+        <d:hardware>
+            <d:screen>
+                <d:screen-size>normal</d:screen-size>
+                <d:diagonal-length>4.65</d:diagonal-length> <!-- In inches -->
+                <d:pixel-density>xhdpi</d:pixel-density>
+                <d:screen-ratio>long</d:screen-ratio>
+                <d:dimensions>
+                    <d:x-dimension>720</d:x-dimension>
+                    <d:y-dimension>1280</d:y-dimension>
+                </d:dimensions>
+                <d:xdpi>316</d:xdpi>
+                <d:ydpi>316</d:ydpi>
+                <d:touch>
+                    <d:multitouch>jazz-hands</d:multitouch>
+                    <d:mechanism>finger</d:mechanism>
+                    <d:screen-type>capacitive</d:screen-type>
+                </d:touch>
+            </d:screen>
+            <d:networking>
+                Bluetooth
+                Wifi
+                NFC
+            </d:networking>
+            <d:sensors>
+                Accelerometer
+                Barometer
+                Gyroscope
+                Compass
+                GPS
+                ProximitySensor
+            </d:sensors>
+            <d:mic>true</d:mic>
+            <d:camera>
+                <d:location>front</d:location>
+                <d:autofocus>true</d:autofocus>
+                <d:flash>false</d:flash>
+            </d:camera>
+            <d:camera>
+                <d:location>back</d:location>
+                <d:autofocus>true</d:autofocus>
+                <d:flash>true</d:flash>
+            </d:camera>
+            <d:keyboard>nokeys</d:keyboard>
+            <d:nav>nonav</d:nav>
+            <d:ram unit="GiB">1</d:ram>
+            <d:buttons>soft</d:buttons>
+            <d:internal-storage unit="GiB">16</d:internal-storage>
+            <d:removable-storage unit="KiB"></d:removable-storage>
+            <d:cpu>OMAP 4460</d:cpu> <!-- cpu type (Tegra3) freeform -->
+            <d:gpu>PowerVR SGX540</d:gpu>
+            <d:abi>
+                armeabi
+                armeabi-v7a
+            </d:abi>
+            <!--dock (car, desk, tv, none)-->
+            <d:dock>
+            </d:dock>
+            <!-- power-type (battery, plugged-in) -->
+            <d:power-type>battery</d:power-type>
+        </d:hardware>
+        <d:software>
+            <d:api-level>14-</d:api-level>
+            <d:live-wallpaper-support>true</d:live-wallpaper-support>
+            <d:bluetooth-profiles>
+                HSP
+                HFP
+                SPP
+                A2DP
+                AVRCP
+                OPP
+                PBAP
+                GAVDP
+                AVDTP
+                HID
+                HDP
+                PAN
+            </d:bluetooth-profiles>
+            <d:gl-version>2.0</d:gl-version>
+            <!--
+             These can be gotten via
+             javax.microedition.khronos.opengles.GL10.glGetString(GL10.GL_EXTENSIONS);
+            -->
+            <d:gl-extensions>
+                GL_EXT_discard_framebuffer
+                GL_EXT_multi_draw_arrays
+                GL_EXT_shader_texture_lod
+                GL_EXT_texture_format_BGRA8888
+                GL_IMG_multisampled_render_to_texture
+                GL_IMG_program_binary
+                GL_IMG_read_format
+                GL_IMG_shader_binary
+                GL_IMG_texture_compression_pvrtc
+                GL_IMG_texture_format_BGRA8888
+                GL_IMG_texture_npot
+                GL_OES_compressed_ETC1_RGB8_texture
+                GL_OES_depth_texture
+                GL_OES_depth24
+                GL_OES_EGL_image
+                GL_OES_EGL_image_external
+                GL_OES_egl_sync
+                GL_OES_element_index_uint
+                GL_OES_fragment_precision_high
+                GL_OES_get_program_binary
+                GL_OES_mapbuffer
+                GL_OES_packed_depth_stencil
+                GL_OES_required_internalformat
+                GL_OES_rgb8_rgba8
+                GL_OES_standard_derivatives
+                GL_OES_texture_float
+                GL_OES_texture_half_float
+                GL_OES_vertex_array_object
+                GL_OES_vertex_half_float
+            </d:gl-extensions>
+            <d:status-bar>true</d:status-bar>
+        </d:software>
+        <d:state name="Portrait" default="true">
+            <d:description>The phone in portrait view</d:description>
+            <d:screen-orientation>port</d:screen-orientation>
+            <d:keyboard-state>keyssoft</d:keyboard-state>
+            <d:nav-state>nonav</d:nav-state>
+        </d:state>
+        <d:state name="Landscape">
+            <d:description>The phone in landscape view</d:description>
+            <d:screen-orientation>land</d:screen-orientation>
+            <d:keyboard-state>keyssoft</d:keyboard-state>
+            <d:nav-state>nonav</d:nav-state>
+        </d:state>
+    </d:device>
+    <d:device>
+        <d:name>Nexus 7</d:name>
+        <d:manufacturer>Google</d:manufacturer>
+        <d:hardware>
+            <d:screen>
+                <d:screen-size>large</d:screen-size>
+                <d:diagonal-length>7.27</d:diagonal-length>
+                <d:pixel-density>tvdpi</d:pixel-density>
+                <d:screen-ratio>notlong</d:screen-ratio>
+                <d:dimensions>
+                    <d:x-dimension>800</d:x-dimension>
+                    <d:y-dimension>1280</d:y-dimension>
+                </d:dimensions>
+                <d:xdpi>195</d:xdpi>
+                <d:ydpi>200</d:ydpi>
+                <d:touch>
+                    <d:multitouch>jazz-hands</d:multitouch>
+                    <d:mechanism>finger</d:mechanism>
+                    <d:screen-type>capacitive</d:screen-type>
+                </d:touch>
+            </d:screen>
+            <d:networking>
+                Wifi
+                Bluetooth
+                NFC
+            </d:networking>
+            <d:sensors>
+                Accelerometer
+                Compass
+                GPS
+                Gyroscope
+                LightSensor
+            </d:sensors>
+            <d:mic>true</d:mic>
+            <d:camera>
+                <d:location>front</d:location>
+                <d:autofocus>false</d:autofocus>
+                <d:flash>false</d:flash>
+            </d:camera>
+            <d:keyboard>nokeys</d:keyboard>
+            <d:nav>nonav</d:nav>
+            <d:ram unit="GiB">1</d:ram>
+            <d:buttons>soft</d:buttons>
+            <d:internal-storage unit="GiB">8</d:internal-storage>
+            <d:removable-storage unit="MiB"> </d:removable-storage>
+            <d:cpu> Tegra3 </d:cpu>
+            <d:gpu> Tegra3 </d:gpu>
+            <d:abi>
+                armeabi-v7a
+                armeabi
+            </d:abi>
+            <d:dock> </d:dock>
+            <d:power-type>battery</d:power-type>
+        </d:hardware>
+
+        <d:software>
+            <d:api-level>16</d:api-level>
+            <d:live-wallpaper-support>true</d:live-wallpaper-support>
+            <d:bluetooth-profiles> </d:bluetooth-profiles>
+            <d:gl-version>2.0</d:gl-version>
+            <d:gl-extensions> </d:gl-extensions>
+            <d:status-bar>true</d:status-bar>
+        </d:software>
+
+        <d:state name="Portrait" default="true">
+            <d:description>The phone in portrait view</d:description>
+            <d:screen-orientation>port</d:screen-orientation>
+            <d:keyboard-state>keyssoft</d:keyboard-state>
+            <d:nav-state>nonav</d:nav-state>
+        </d:state>
+        <d:state name="Landscape">
+            <d:description>The phone in landscape view</d:description>
+            <d:screen-orientation>land</d:screen-orientation>
+            <d:keyboard-state>keyssoft</d:keyboard-state>
+            <d:nav-state>nonav</d:nav-state>
+        </d:state>
+
+    </d:device>
+
+    <d:device>
+        <d:name>Nexus 4</d:name>
+        <d:manufacturer>Google</d:manufacturer>
+        <d:hardware>
+            <d:screen>
+                <d:screen-size>normal</d:screen-size>
+                <d:diagonal-length>4.7</d:diagonal-length>
+                <d:pixel-density>xhdpi</d:pixel-density>
+                <d:screen-ratio>notlong</d:screen-ratio>
+                <d:dimensions>
+                    <d:x-dimension>768</d:x-dimension>
+                    <d:y-dimension>1280</d:y-dimension>
+                </d:dimensions>
+                <d:xdpi>320</d:xdpi>
+                <d:ydpi>320</d:ydpi>
+                <d:touch>
+                    <d:multitouch>jazz-hands</d:multitouch>
+                    <d:mechanism>finger</d:mechanism>
+                    <d:screen-type>capacitive</d:screen-type>
+                </d:touch>
+            </d:screen>
+            <d:networking>
+                Wifi
+                Bluetooth
+                NFC
+            </d:networking>
+            <d:sensors>
+                Accelerometer
+                Barometer
+                Compass
+                GPS
+                Gyroscope
+                LightSensor
+                ProximitySensor
+            </d:sensors>
+            <d:mic>true</d:mic>
+            <d:camera>
+                <d:location>back</d:location>
+                <d:autofocus>true</d:autofocus>
+                <d:flash>true</d:flash>
+            </d:camera>
+            <d:camera>
+                <d:location>front</d:location>
+                <d:autofocus>false</d:autofocus>
+                <d:flash>false</d:flash>
+            </d:camera>
+            <d:keyboard>nokeys</d:keyboard>
+            <d:nav>nonav</d:nav>
+            <d:ram unit="KiB">1953125</d:ram>
+            <d:buttons>soft</d:buttons>
+            <d:internal-storage unit="KiB">7811891</d:internal-storage>
+            <d:removable-storage unit="MiB"></d:removable-storage>
+            <d:cpu>Qualcomm Snapdragon S4 Pro</d:cpu>
+            <d:gpu>Adreno 320</d:gpu>
+            <d:abi>
+                armeabi-v7a
+                armeabi
+            </d:abi>
+            <d:dock></d:dock>
+            <d:power-type>battery</d:power-type>
+        </d:hardware>
+        <d:software>
+            <d:api-level>16</d:api-level>
+            <d:live-wallpaper-support>true</d:live-wallpaper-support>
+            <d:bluetooth-profiles></d:bluetooth-profiles>
+            <d:gl-version>2.0</d:gl-version>
+            <d:gl-extensions>GL_EXT_debug_marker GL_AMD_compressed_ATC_texture
+                GL_AMD_performance_monitor GL_AMD_program_binary_Z400 GL_EXT_robustness
+                GL_EXT_texture_format_BGRA8888 GL_EXT_texture_type_2_10_10_10_REV GL_NV_fence
+                GL_OES_compressed_ETC1_RGB8_texture GL_OES_depth_texture GL_OES_depth24
+                GL_OES_EGL_image GL_OES_EGL_image_external GL_OES_element_index_uint
+                GL_OES_fbo_render_mipmap GL_OES_fragment_precision_high GL_OES_get_program_binary
+                GL_OES_packed_depth_stencil GL_OES_rgb8_rgba8 GL_OES_standard_derivatives
+                GL_OES_texture_3D GL_OES_texture_float GL_OES_texture_half_float
+                GL_OES_texture_half_float_linear GL_OES_texture_npot GL_OES_vertex_half_float
+                GL_OES_vertex_type_10_10_10_2 GL_OES_vertex_array_object GL_QCOM_alpha_test
+                GL_QCOM_binning_control GL_QCOM_driver_control GL_QCOM_perfmon_global_mode
+                GL_QCOM_extended_get GL_QCOM_extended_get2 GL_QCOM_tiled_rendering
+                GL_QCOM_writeonly_rendering GL_EXT_sRGB
+            </d:gl-extensions>
+            <d:status-bar>true</d:status-bar>
+        </d:software>
+        <d:state name="Portrait" default="true">
+            <d:description>The phone in portrait view</d:description>
+            <d:screen-orientation>port</d:screen-orientation>
+            <d:keyboard-state>keyssoft</d:keyboard-state>
+            <d:nav-state>nonav</d:nav-state>
+        </d:state>
+        <d:state name="Landscape">
+            <d:description>The phone in landscape view</d:description>
+            <d:screen-orientation>land</d:screen-orientation>
+            <d:keyboard-state>keyssoft</d:keyboard-state>
+            <d:nav-state>nonav</d:nav-state>
+        </d:state>
+    </d:device>
+
+    <d:device>
+        <d:name>Nexus 10</d:name>
+        <d:manufacturer>Google</d:manufacturer>
+        <d:hardware>
+            <d:screen>
+                <d:screen-size>xlarge</d:screen-size>
+                <d:diagonal-length>10.055</d:diagonal-length>
+                <d:pixel-density>xhdpi</d:pixel-density>
+                <d:screen-ratio>notlong</d:screen-ratio>
+                <d:dimensions>
+                    <d:x-dimension>2560</d:x-dimension>
+                    <d:y-dimension>1600</d:y-dimension>
+                </d:dimensions>
+                <d:xdpi>300</d:xdpi>
+                <d:ydpi>300</d:ydpi>
+                <d:touch>
+                    <d:multitouch>jazz-hands</d:multitouch>
+                    <d:mechanism>finger</d:mechanism>
+                    <d:screen-type>capacitive</d:screen-type>
+                </d:touch>
+            </d:screen>
+            <d:networking>
+                Wifi
+                Bluetooth
+                NFC
+            </d:networking>
+            <d:sensors>
+                Accelerometer
+                Barometer
+                Compass
+                GPS
+                Gyroscope
+                LightSensor
+            </d:sensors>
+            <d:mic>true</d:mic>
+            <d:camera>
+                <d:location>back</d:location>
+                <d:autofocus>true</d:autofocus>
+                <d:flash>true</d:flash>
+            </d:camera>
+            <d:camera>
+                <d:location>front</d:location>
+                <d:autofocus>false</d:autofocus>
+                <d:flash>false</d:flash>
+            </d:camera>
+            <d:keyboard>nokeys</d:keyboard>
+            <d:nav>nonav</d:nav>
+            <d:ram unit="KiB">1953125</d:ram>
+            <d:buttons>soft</d:buttons>
+            <d:internal-storage unit="KiB">15623782</d:internal-storage>
+            <d:removable-storage unit="MiB"></d:removable-storage>
+            <d:cpu>Dual-core A15</d:cpu>
+            <d:gpu>Quad-core Mali T604</d:gpu>
+            <d:abi>
+                armeabi-v7a
+                armeabi
+            </d:abi>
+            <d:dock></d:dock>
+            <d:power-type>battery</d:power-type>
+        </d:hardware>
+        <d:software>
+            <d:api-level>16</d:api-level>
+            <d:live-wallpaper-support>true</d:live-wallpaper-support>
+            <d:bluetooth-profiles></d:bluetooth-profiles>
+            <d:gl-version>2.0</d:gl-version>
+            <d:gl-extensions>GL_EXT_debug_marker GL_ARM_rgba8 GL_ARM_mali_shader_binary
+                GL_OES_depth24 GL_OES_depth_texture GL_OES_depth_texture_cube_map
+                GL_OES_packed_depth_stencil GL_OES_rgb8_rgba8 GL_EXT_read_format_bgra
+                GL_OES_compressed_paletted_texture GL_OES_compressed_ETC1_RGB8_texture
+                GL_OES_standard_derivatives GL_OES_EGL_image GL_OES_EGL_image_external
+                GL_OES_EGL_sync GL_OES_texture_npot GL_OES_vertex_half_float
+                GL_OES_required_internalformat GL_OES_vertex_array_object GL_OES_mapbuffer
+                GL_EXT_texture_format_BGRA8888 GL_EXT_texture_rg GL_EXT_texture_type_2_10_10_10_REV
+                GL_OES_fbo_render_mipmap GL_OES_element_index_uint GL_EXT_shadow_samplers
+                GL_EXT_occlusion_query_boolean GL_EXT_blend_minmax GL_EXT_discard_framebuffer
+                GL_OES_get_program_binary GL_OES_texture_3D GL_EXT_texture_storage
+                GL_EXT_multisampled_render_to_texture GL_OES_surfaceless_context
+                GL_ARM_mali_program_binary
+            </d:gl-extensions>
+            <d:status-bar>true</d:status-bar>
+        </d:software>
+        <d:state name="Portrait">
+            <d:description>The phone in portrait view</d:description>
+            <d:screen-orientation>port</d:screen-orientation>
+            <d:keyboard-state>keyssoft</d:keyboard-state>
+            <d:nav-state>nonav</d:nav-state>
+        </d:state>
+        <d:state name="Landscape" default="true">
+            <d:description>The phone in landscape view</d:description>
+            <d:screen-orientation>land</d:screen-orientation>
+            <d:keyboard-state>keyssoft</d:keyboard-state>
+            <d:nav-state>nonav</d:nav-state>
+        </d:state>
+    </d:device>
+
+</d:devices>
diff --git a/lib/draw9patch.jar b/lib/draw9patch.jar
new file mode 100644
index 0000000..2c43b00
--- /dev/null
+++ b/lib/draw9patch.jar
Binary files differ
diff --git a/lib/dvlib-25.3.0-dev.jar b/lib/dvlib-25.3.0-dev.jar
new file mode 100644
index 0000000..df5cf44
--- /dev/null
+++ b/lib/dvlib-25.3.0-dev.jar
Binary files differ
diff --git a/lib/dvlib.jar b/lib/dvlib.jar
new file mode 100644
index 0000000..bece031
--- /dev/null
+++ b/lib/dvlib.jar
Binary files differ
diff --git a/lib/ecj-4.4.2.jar b/lib/ecj-4.4.2.jar
new file mode 100644
index 0000000..d9411b3
--- /dev/null
+++ b/lib/ecj-4.4.2.jar
Binary files differ
diff --git a/lib/emma.jar b/lib/emma.jar
new file mode 100644
index 0000000..27629de
--- /dev/null
+++ b/lib/emma.jar
Binary files differ
diff --git a/lib/emma_ant.jar b/lib/emma_ant.jar
new file mode 100644
index 0000000..3f28c2c
--- /dev/null
+++ b/lib/emma_ant.jar
Binary files differ
diff --git a/lib/emma_device.jar b/lib/emma_device.jar
new file mode 100644
index 0000000..b68806d
--- /dev/null
+++ b/lib/emma_device.jar
Binary files differ
diff --git a/lib/emulator/snapshots.img b/lib/emulator/snapshots.img
new file mode 100644
index 0000000..c05bbda
--- /dev/null
+++ b/lib/emulator/snapshots.img
Binary files differ
diff --git a/lib/fat32lib.jar b/lib/fat32lib.jar
new file mode 100644
index 0000000..ad6601c
--- /dev/null
+++ b/lib/fat32lib.jar
Binary files differ
diff --git a/lib/gson-2.2.4.jar b/lib/gson-2.2.4.jar
new file mode 100644
index 0000000..75fe27c
--- /dev/null
+++ b/lib/gson-2.2.4.jar
Binary files differ
diff --git a/lib/guava-17.0.jar b/lib/guava-17.0.jar
new file mode 100644
index 0000000..661fc74
--- /dev/null
+++ b/lib/guava-17.0.jar
Binary files differ
diff --git a/lib/guava-18.0.jar b/lib/guava-18.0.jar
new file mode 100644
index 0000000..8f89e49
--- /dev/null
+++ b/lib/guava-18.0.jar
Binary files differ
diff --git a/lib/hardware-properties.ini b/lib/hardware-properties.ini
new file mode 100644
index 0000000..1d212ff
--- /dev/null
+++ b/lib/hardware-properties.ini
@@ -0,0 +1,438 @@
+# This file describes the properties of a given virtual device configuration file.
+#
+# Note: Most top-level properties are boolean that control whether a feature is
+#       present or not. Sub-features that depend on it are ignored if their
+#       parent is set to 'false' or 'no'
+#
+# This file is parsed by 'android/tools/gen-hw-config.py' to generate
+# 'android/avd/hw-config-defs.h'. The latter is a special header containing
+# macro statements that is used several times:
+#
+#  - once to define the fields of the AndroidHwConfig structure
+#    (see android/avd/hw-config.h)
+#
+#  - once to implement the hardware configuration loader
+#    (see android/avd/hw-config.h)
+#
+# It is also packaged by the SDK and parsed by tools to let the developers
+# create AVDs.
+#
+# NOTE: if you remove items from this file, be sure that you do not break
+#       the emulator build.
+#
+
+# CPU Architecture
+name        = hw.cpu.arch
+type        = string
+default     = arm
+abstract    = CPU Architecture
+description = The CPU Architecture to emulator
+
+# CPU Model
+# Leave it empty, and the default value will be computed from
+# hw.cpu.arch. This is only useful for experimentation for now.
+name        = hw.cpu.model
+type        = string
+default     =
+abstract    = CPU model
+description = The CPU model (QEMU-specific string)
+
+# SMP count: Number of processors to emulate when SMP is supported.
+# Must be > 0.
+name        = hw.cpu.ncore
+type        = integer
+default     = 2
+abstract    = SMP CPU core count
+description = Number of cores in a simulated SMP CPU.
+
+# Ram size
+# Default value will be computed based on screen pixels
+# or skin version
+name        = hw.ramSize
+type        = integer
+default     = 0
+abstract    = Device ram size
+description = The amount of physical RAM on the device, in megabytes.
+
+# Touch screen type
+name        = hw.screen
+type        = string
+enum        = touch, multi-touch, no-touch
+default     = multi-touch
+abstract    = Touch screen type
+description = Defines type of the screen.
+
+# Hardware main keys (back/home)
+name        = hw.mainKeys
+type        = boolean
+default     = yes
+abstract    = Hardware Back/Home keys
+description = Whether there are hardware back/home keys on the device.
+
+# Trackball support
+name        = hw.trackBall
+type        = boolean
+default     = yes
+abstract    = Track-ball support
+description = Whether there is a trackball on the device.
+
+# Keyboard support (qwerty/azerty)
+name        = hw.keyboard
+type        = boolean
+default     = no
+abstract    = Keyboard support
+description = Whether the device has a QWERTY keyboard.
+
+# Keyboard lid support
+# (I.e. can the qwerty keyboard be closed/hidden or opened/visible)
+# this will be ignored if hw.keyboard is false
+#
+# NOTE: As a special case, the default value will be 'false' if the
+#       AVD targets API level 12 or higher. See hwConfig_init()
+#       in external/qemu/android/avd/hw-config.c for more details.
+#
+name        = hw.keyboard.lid
+type        = boolean
+default     = yes
+abstract    = Keyboard lid support
+description = Whether the QWERTY keyboard can be opened/closed.
+
+# The name of the hardware charmap for this device.
+#
+# NOTE: This should always be the default 'qwerty2' unless you have
+#        modified the system image accordingly. This name is sent to
+#        the kernel at boot time. Using an incorrect name will result
+#        in an unusable machine.
+name        = hw.keyboard.charmap
+type        = string
+default     = qwerty2
+abstract    = Keyboard charmap name
+description = Name of the system keyboard charmap file.
+
+# DPad keys
+name        = hw.dPad
+type        = boolean
+default     = yes
+abstract    = DPad support
+description = Whether the device has DPad keys
+
+# GSM Modem support
+name        = hw.gsmModem
+type        = boolean
+default     = yes
+abstract    = GSM modem support
+description = Whether there is a GSM modem in the device.
+
+# GPS support
+name        = hw.gps
+type        = boolean
+default     = yes
+abstract    = GPS support
+description = Whether there is a GPS in the device.
+
+# Battery
+name        = hw.battery
+type        = boolean
+default     = yes
+abstract    = Battery support
+description = Whether the device can run on a battery.
+
+# Accelerometer (used for auto-rotation)
+name        = hw.accelerometer
+type        = boolean
+default     = yes
+abstract    = Accelerometer
+description = Whether there is an accelerometer in the device.
+
+# Audio input
+name        = hw.audioInput
+type        = boolean
+default     = yes
+abstract    = Audio recording support
+description = Whether the device can record audio
+
+# Audio output
+name        = hw.audioOutput
+type        = boolean
+default     = yes
+abstract    = Audio playback support
+description = Whether the device can play audio
+
+# SDCard support
+name        = hw.sdCard
+type        = boolean
+default     = yes
+abstract    = SD Card support
+description = Whether the device supports insertion/removal of virtual SD Cards.
+
+name        = hw.sdCard.path
+type        = string
+default     =
+abstract    = SD Card image path
+
+# Cache partition
+name        = disk.cachePartition
+type        = boolean
+default     = yes
+abstract    = Cache partition support
+description = Whether we use a /cache partition on the device.
+
+name        = disk.cachePartition.path
+type        = string
+default     =
+abstract    = Cache partition
+description = Cache partition to use on the device. Ignored if disk.cachePartition is not 'yes'.
+
+name        = disk.cachePartition.size
+type        = diskSize
+abstract    = Cache partition size
+default     = 66MB
+
+# LCD width
+name        = hw.lcd.width
+type        = integer
+default     = 320
+abstract    = LCD pixel width
+
+name        = hw.lcd.height
+type        = integer
+default     = 640
+abstract    = LCD pixel height
+
+name        = hw.lcd.depth
+type        = integer
+enum        = 16, 32
+default     = 16
+abstract    = LCD color depth
+description = Color bit depth of emulated framebuffer.
+
+# LCD density
+name        = hw.lcd.density
+type        = integer
+enum        = 120, 160, 240, 213, 320
+default     = 160
+abstract    = Abstracted LCD density
+description = A value used to roughly describe the density of the LCD screen for automatic resource/asset selection.
+
+# LCD backlight - Enable/Disable LCD backlight simulation
+# default = no  : Disabled
+# default = yes : Enabled
+name        = hw.lcd.backlight
+type        = boolean
+default     = yes
+abstract    = LCD backlight
+description = Enable/Disable LCD backlight simulation,yes-enabled,no-disabled.
+
+# Hardware OpenGLES emulation support
+#
+name        = hw.gpu.enabled
+type        = boolean
+default     = no
+abstract    = GPU emulation
+description = Enable/Disable emulated OpenGLES GPU
+
+name        = hw.gpu.mode
+type        = string
+default     = auto
+enum        = auto, host, mesa
+abstract    = GPU emulation mode
+description = This value determines how GPU emulation is implemented.
+
+name        = hw.gpu.blacklisted
+type        = string
+default     = no
+enum        = no, yes
+abstract    = GPU on-blacklist mode
+description = This value determines if the GPU is considered blacklisted. Testing purposes only.
+
+# Configures the initial orientation: portrait or landscape
+#
+name        = hw.initialOrientation
+type        = string
+enum        = portrait, landscape
+default     = portrait
+abstract    = Initial screen orientation
+description = Setup initial screen orientation, can be rotated later on.
+
+# Configures camera facing back
+#
+name        = hw.camera.back
+type        = string
+enum        = emulated, none, webcam0, ...
+default     = emulated
+abstract    = Configures camera facing back
+description = Must be 'emulated' for a fake camera, 'webcam<N>' for a web camera, or 'none' if back camera is disabled.
+
+# Configures camera facing front
+#
+name        = hw.camera.front
+type        = string
+enum        = emulated, none, webcam0, ...
+default     = none
+abstract    = Configures camera facing front
+description = Must be 'emulated' for a fake camera, 'webcam<N>' for a web camera, or 'none' if front camera is disabled.
+
+# Maximum VM heap size
+# Higher values are required for high-dpi devices
+# Default will depend on RAM size.
+name        = vm.heapSize
+type        = integer
+default     = 0
+abstract    = Max VM application heap size
+description = The maximum heap size a Dalvik application might allocate before being killed by the system. Value is in megabytes.
+
+# Light sensor
+name        = hw.sensors.light
+type        = boolean
+default     = yes
+abstract    = Light support
+description = Whether there is a light sensor in the device
+
+# Pressure sensor
+name        = hw.sensors.pressure
+type        = boolean
+default     = yes
+abstract    = Pressure support
+description = Whether there is a pressure sensor in the device
+
+# Humidity sensor
+name        = hw.sensors.humidity
+type        = boolean
+default     = yes
+abstract    = Humidity support
+description = Whether there is a relative humidity sensor in the device
+
+# Proximity sensor
+name        = hw.sensors.proximity
+type        = boolean
+default     = yes
+abstract    = Proximity support
+description = Whether there is an proximity in the device.
+
+# Magnetic field sensor
+name        = hw.sensors.magnetic_field
+type        = boolean
+default     = yes
+abstract    = Magnetic field support
+description = Provides magnetic field sensor values.
+
+# Orientation sensor
+name        = hw.sensors.orientation
+type        = boolean
+default     = yes
+abstract    = Orientation support
+description = Provides orientation sensor values.
+
+# Temperature sensor
+name        = hw.sensors.temperature
+type        = boolean
+default     = yes
+abstract    = Temperature support
+description = Provides temperature sensor values.
+
+# File system
+name        = hw.useext4
+type        = boolean
+default     = yes
+abstract    = Deprecated option. Ignored.
+description = Used to specify the Ext4 partition image type. This is now autodetected.
+
+# Kernel image.
+#
+# kernel.path        specified the path to the kernel image
+# kernel.parameters  specifies the string of kernel boot parameters.
+#
+name        = kernel.path
+type        = string
+default     =
+abstract    = Path to the kernel image
+description = Path to the kernel image.
+
+name        = kernel.parameters
+type        = string
+default     =
+abstract    = kernel boot parameters string.
+
+name        = kernel.newDeviceNaming
+type        = string
+enum        = autodetect, yes, no
+default     = autodetect
+abstract    = Does the kernel require a new device naming scheme?
+description = Used to specify whether the kernel requires a new device naming scheme. Typically for Linux 3.10 and above.
+
+name        = kernel.supportsYaffs2
+type        = string
+enum        = autodetect, yes, no
+default     = autodetect
+abstract    = Does the kernel supports YAFFS2 partitions?
+description = Used to specify whether the kernel supports YAFFS2 partition images. Typically before 3.10 only.
+
+# Path to the ramdisk image.
+name        = disk.ramdisk.path
+type        = string
+default     =
+abstract    = Path to the ramdisk image
+description = Path to the ramdisk image.
+
+# System partition image(s).
+#
+# disk.systemPartition.path points to the read/write system partition image.
+#   if empty, a temporary file will be created, initialized with the content
+#   of .initPath
+#
+# disk.systemPartition.initPath is only used when .path is empty. It must
+# then point to a read-only initialization system image file.
+#
+# disk.systemPartition.size is the ideal size of the system partition. The
+# size is ignored if the actual system partition image is larger. Otherwise,
+# it indicates the maximum size the disk image file can grow to.
+#
+name        = disk.systemPartition.path
+type        = string
+default     =
+abstract    = Path to runtime system partition image
+
+name        = disk.systemPartition.initPath
+type        = string
+default     =
+abstract    = Initial system partition image
+
+name        = disk.systemPartition.size
+type        = diskSize
+default     = 0
+abstract    = Ideal size of system partition
+
+# Path to the data partition.
+name        = disk.dataPartition.path
+type        = string
+default     = <temp>
+abstract    = Path to data partition file
+description = Path to data partition file. Cannot be empty. Special value <temp> means using a temporary file. If disk.dataPartition.initPath is not empty, its content will be copied to the disk.dataPartition.path file at boot-time.
+
+# Initial path to the data partition.
+name        = disk.dataPartition.initPath
+type        = string
+default     =
+abstract    = Initial data partition
+description = If not empty, its content will be copied to the disk.dataPartition.path file at boot-time.
+
+# Data partition size.
+name        = disk.dataPartition.size
+type        = diskSize
+default     = 0
+abstract    = Ideal size of data partition
+
+# Path to the snapshots storage file.
+name        = disk.snapStorage.path
+type        = string
+default     =
+abstract    = Path to snapshot storage
+description = Path to a 'snapshot storage' file, where all snapshots are stored.
+
+# Android AVD name
+# This is set automatically before launching a core.
+#
+name        = avd.name
+type        = string
+default     = <build>
+abstract    = Name of the AVD being run
diff --git a/lib/hierarchyviewer2.jar b/lib/hierarchyviewer2.jar
new file mode 100644
index 0000000..d71e2a5
--- /dev/null
+++ b/lib/hierarchyviewer2.jar
Binary files differ
diff --git a/lib/hierarchyviewer2lib.jar b/lib/hierarchyviewer2lib.jar
new file mode 100644
index 0000000..a10bd6e
--- /dev/null
+++ b/lib/hierarchyviewer2lib.jar
Binary files differ
diff --git a/lib/httpclient-4.1.1.jar b/lib/httpclient-4.1.1.jar
new file mode 100644
index 0000000..74121b7
--- /dev/null
+++ b/lib/httpclient-4.1.1.jar
Binary files differ
diff --git a/lib/httpcore-4.1.jar b/lib/httpcore-4.1.jar
new file mode 100644
index 0000000..a357c07
--- /dev/null
+++ b/lib/httpcore-4.1.jar
Binary files differ
diff --git a/lib/httpmime-4.1.jar b/lib/httpmime-4.1.jar
new file mode 100644
index 0000000..68f6158
--- /dev/null
+++ b/lib/httpmime-4.1.jar
Binary files differ
diff --git a/lib/jcommon-1.0.12.jar b/lib/jcommon-1.0.12.jar
new file mode 100644
index 0000000..ca4f04a
--- /dev/null
+++ b/lib/jcommon-1.0.12.jar
Binary files differ
diff --git a/lib/jfreechart-1.0.9.jar b/lib/jfreechart-1.0.9.jar
new file mode 100644
index 0000000..d1e2b74
--- /dev/null
+++ b/lib/jfreechart-1.0.9.jar
Binary files differ
diff --git a/lib/jfreechart-swt-1.0.9.jar b/lib/jfreechart-swt-1.0.9.jar
new file mode 100644
index 0000000..e4e7ec0
--- /dev/null
+++ b/lib/jfreechart-swt-1.0.9.jar
Binary files differ
diff --git a/lib/jimfs-1.1.jar b/lib/jimfs-1.1.jar
new file mode 100644
index 0000000..e0b16a5
--- /dev/null
+++ b/lib/jimfs-1.1.jar
Binary files differ
diff --git a/lib/jobb.jar b/lib/jobb.jar
new file mode 100644
index 0000000..c270ab6
--- /dev/null
+++ b/lib/jobb.jar
Binary files differ
diff --git a/lib/jsilver-1.0.0.jar b/lib/jsilver-1.0.0.jar
new file mode 100644
index 0000000..02d55de
--- /dev/null
+++ b/lib/jsilver-1.0.0.jar
Binary files differ
diff --git a/lib/jython-standalone-2.5.3.jar b/lib/jython-standalone-2.5.3.jar
new file mode 100644
index 0000000..9e01e5c
--- /dev/null
+++ b/lib/jython-standalone-2.5.3.jar
Binary files differ
diff --git a/lib/kxml2-2.3.0.jar b/lib/kxml2-2.3.0.jar
new file mode 100644
index 0000000..6470952
--- /dev/null
+++ b/lib/kxml2-2.3.0.jar
Binary files differ
diff --git a/lib/layoutlib-api-25.3.0-dev.jar b/lib/layoutlib-api-25.3.0-dev.jar
new file mode 100644
index 0000000..b0ea321
--- /dev/null
+++ b/lib/layoutlib-api-25.3.0-dev.jar
Binary files differ
diff --git a/lib/layoutlib-api.jar b/lib/layoutlib-api.jar
new file mode 100644
index 0000000..8865e72
--- /dev/null
+++ b/lib/layoutlib-api.jar
Binary files differ
diff --git a/lib/libstdc++/libstdc++.so.6 b/lib/libstdc++/libstdc++.so.6
new file mode 100755
index 0000000..80b418a
--- /dev/null
+++ b/lib/libstdc++/libstdc++.so.6
Binary files differ
diff --git a/lib/libstdc++/libstdc++.so.6.0.18 b/lib/libstdc++/libstdc++.so.6.0.18
new file mode 100755
index 0000000..80b418a
--- /dev/null
+++ b/lib/libstdc++/libstdc++.so.6.0.18
Binary files differ
diff --git a/lib/lint-api.jar b/lib/lint-api.jar
new file mode 100644
index 0000000..d8e4caa
--- /dev/null
+++ b/lib/lint-api.jar
Binary files differ
diff --git a/lib/lint-checks.jar b/lib/lint-checks.jar
new file mode 100644
index 0000000..7fc3ae4
--- /dev/null
+++ b/lib/lint-checks.jar
Binary files differ
diff --git a/lib/lint.jar b/lib/lint.jar
new file mode 100644
index 0000000..6cb1de5
--- /dev/null
+++ b/lib/lint.jar
Binary files differ
diff --git a/lib/lombok-ast-0.2.3.jar b/lib/lombok-ast-0.2.3.jar
new file mode 100644
index 0000000..4b76285
--- /dev/null
+++ b/lib/lombok-ast-0.2.3.jar
Binary files differ
diff --git a/lib/manifest-merger.jar b/lib/manifest-merger.jar
new file mode 100644
index 0000000..cd821b5
--- /dev/null
+++ b/lib/manifest-merger.jar
Binary files differ
diff --git a/lib/monitor-x86/.eclipseproduct b/lib/monitor-x86/.eclipseproduct
new file mode 100644
index 0000000..2bbf3ac
--- /dev/null
+++ b/lib/monitor-x86/.eclipseproduct
@@ -0,0 +1,3 @@
+name=Eclipse Platform
+id=org.eclipse.platform
+version=4.2.0
diff --git a/lib/monitor-x86/artifacts.xml b/lib/monitor-x86/artifacts.xml
new file mode 100644
index 0000000..b23861e
--- /dev/null
+++ b/lib/monitor-x86/artifacts.xml
@@ -0,0 +1,1085 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<?artifactRepository version='1.1.0'?>
+<repository name='Bundle pool' type='org.eclipse.equinox.p2.artifact.repository.simpleRepository' version='1'>
+  <properties size='2'>
+    <property name='p2.system' value='true'/>
+    <property name='p2.timestamp' value='1478881405505'/>
+  </properties>
+  <mappings size='3'>
+    <rule filter='(&amp; (classifier=osgi.bundle))' output='${repoUrl}/plugins/${id}_${version}.jar'/>
+    <rule filter='(&amp; (classifier=binary))' output='${repoUrl}/binary/${id}_${version}'/>
+    <rule filter='(&amp; (classifier=org.eclipse.update.feature))' output='${repoUrl}/features/${id}_${version}.jar'/>
+  </mappings>
+  <artifacts size='202'>
+    <artifact classifier='osgi.bundle' id='org.eclipse.team.ui' version='3.6.201.v20130125-135424'>
+      <properties size='1'>
+        <property name='download.size' value='1445067'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.ui.sdk.scheduler' version='1.1.0.v20110815-1744'>
+      <properties size='1'>
+        <property name='download.size' value='60466'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.app' version='1.3.100.v20120522-1841'>
+      <properties size='1'>
+        <property name='download.size' value='86390'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='com.ibm.icu' version='4.4.2.v20110823'>
+      <properties size='1'>
+        <property name='download.size' value='6701200'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.util' version='1.0.400.v20120917-192807'>
+      <properties size='1'>
+        <property name='download.size' value='78026'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='com.android.ide.eclipse.gldebugger.feature' version='25.2.3.3470232'>
+      <properties size='1'>
+        <property name='download.size' value='4751'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.frameworkadmin' version='2.0.100.v20120913-155515'>
+      <properties size='1'>
+        <property name='download.size' value='36187'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.databinding.observable' version='1.4.1.v20120521-2329'>
+      <properties size='1'>
+        <property name='download.size' value='297401'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.updatesite' version='1.0.400.v20120412-1615'>
+      <properties size='1'>
+        <property name='download.size' value='83983'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.compare.core' version='3.5.200.v20120522-1148'>
+      <properties size='1'>
+        <property name='download.size' value='63243'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ecf.filetransfer' version='5.0.0.v20120610-1946'>
+      <properties size='1'>
+        <property name='download.size' value='51713'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.core.di.extensions' version='0.11.100.v20121024-182359'>
+      <properties size='1'>
+        <property name='download.size' value='23505'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='javax.servlet' version='3.0.0.v201112011016'>
+      <properties size='1'>
+        <property name='download.size' value='201594'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.felix.gogo.command' version='0.8.0.v201108120515'>
+      <properties size='1'>
+        <property name='download.size' value='57580'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.commons.httpclient' version='3.1.0.v201012070820'>
+      <properties size='1'>
+        <property name='download.size' value='321633'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.jsch.ui' version='1.1.400.v20120522-1148'>
+      <properties size='1'>
+        <property name='download.size' value='90633'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.swt' version='3.100.1.v4236b'>
+      <properties size='1'>
+        <property name='download.size' value='18539'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.w3c.dom.smil' version='1.0.0.v200806040011'>
+      <properties size='1'>
+        <property name='download.size' value='15995'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ecf.identity' version='3.1.200.v20120610-1946'>
+      <properties size='1'>
+        <property name='download.size' value='54408'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.debug.core' version='3.7.100.v20120521-2012'>
+      <properties size='1'>
+        <property name='download.size' value='346425'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.ui.bindings' version='0.10.3.v20130123-162658'>
+      <properties size='1'>
+        <property name='download.size' value='47645'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.ui.services' version='0.10.3.v20130123-162658'>
+      <properties size='1'>
+        <property name='download.size' value='24829'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.editors' version='3.8.0.v20120523-1540'>
+      <properties size='1'>
+        <property name='download.size' value='573589'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.repository.tools' version='2.0.100.v20120501-1314'>
+      <properties size='1'>
+        <property name='download.size' value='235502'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.http.jetty' version='3.0.1.v20121109-203239'>
+      <properties size='1'>
+        <property name='download.size' value='25360'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.help.webapp' version='3.6.101.v20130116-182509'>
+      <properties size='1'>
+        <property name='download.size' value='609968'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.repository' version='2.2.0.v20120524-1945'>
+      <properties size='1'>
+        <property name='download.size' value='131861'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.jface' version='3.8.102.v20130123-162658'>
+      <properties size='1'>
+        <property name='download.size' value='1092496'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='com.android.ide.eclipse.monitor.feature' version='25.2.3.3470232'>
+      <properties size='1'>
+        <property name='download.size' value='4868'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.compare' version='3.5.301.v20130125-135424'>
+      <properties size='1'>
+        <property name='download.size' value='738455'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.filebuffers' version='3.5.200.v20120523-1310'>
+      <properties size='1'>
+        <property name='download.size' value='114686'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='com.android.ide.eclipse.ddms' version='25.2.3.3470232'>
+      <properties size='1'>
+        <property name='download.size' value='2619804'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.ui.css.core' version='0.10.2.v20120912-132817'>
+      <properties size='1'>
+        <property name='download.size' value='199732'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.jsp.jasper' version='1.0.400.v20120912-130548'>
+      <properties size='1'>
+        <property name='download.size' value='28284'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.sat4j.pb' version='2.3.0.v20110329'>
+      <properties size='1'>
+        <property name='download.size' value='140725'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.commands' version='3.6.2.v20130123-162658'>
+      <properties size='1'>
+        <property name='download.size' value='108906'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='org.eclipse.emf.ecore' version='2.8.3.v20130125-0546'>
+      <properties size='1'>
+        <property name='download.size' value='18411'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.jface.databinding' version='1.6.0.v20120912-132807'>
+      <properties size='1'>
+        <property name='download.size' value='278376'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.team.core' version='3.6.100.v20120524-0627'>
+      <properties size='1'>
+        <property name='download.size' value='398409'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.rcp' version='4.2.1.v201302041200'>
+      <properties size='1'>
+        <property name='download.size' value='13390'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.emf.ecore.xmi' version='2.8.1.v20130125-0546'>
+      <properties size='1'>
+        <property name='download.size' value='222823'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.workbench' version='3.104.0.v20130204-164612'>
+      <properties size='1'>
+        <property name='download.size' value='3808742'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.filesystem' version='1.3.200.v20130115-145044'>
+      <properties size='1'>
+        <property name='download.size' value='57995'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.ide' version='3.8.2.v20121106-165923'>
+      <properties size='1'>
+        <property name='download.size' value='2361813'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.lucene' version='2.9.1.v201101211721'>
+      <properties size='1'>
+        <property name='download.size' value='71018'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.platform' version='4.2.2.v201302041200'>
+      <properties size='1'>
+        <property name='download.size' value='406571'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.core' version='2.2.0.v20120430-0525'>
+      <properties size='1'>
+        <property name='download.size' value='72597'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='com.android.ide.eclipse.traceview.feature' version='25.2.3.3470232'>
+      <properties size='1'>
+        <property name='download.size' value='4829'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='org.eclipse.rcp' version='4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h'>
+      <properties size='1'>
+        <property name='download.size' value='30865'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.core.services' version='1.0.0.v20120521-2346'>
+      <properties size='1'>
+        <property name='download.size' value='32030'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.simpleconfigurator.manipulator' version='2.0.0.v20110808-1657'>
+      <properties size='1'>
+        <property name='download.size' value='24057'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.ui.workbench.swt' version='0.10.3.v20130124-133900'>
+      <properties size='1'>
+        <property name='download.size' value='170113'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.security' version='1.1.100.v20120522-1841'>
+      <properties size='1'>
+        <property name='download.size' value='107463'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.publisher' version='1.2.0.v20121002-080415'>
+      <properties size='1'>
+        <property name='download.size' value='105939'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.jface.text' version='3.8.2.v20121126-164145'>
+      <properties size='1'>
+        <property name='download.size' value='992924'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='com.jcraft.jsch' version='0.1.46.v201205102330'>
+      <properties size='1'>
+        <property name='download.size' value='241154'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.commons.codec' version='1.3.0.v201101211617'>
+      <properties size='1'>
+        <property name='download.size' value='55011'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.core.contexts' version='1.2.0.v20121221-192508'>
+      <properties size='1'>
+        <property name='download.size' value='48057'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='org.eclipse.e4.rcp' version='1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS'>
+      <properties size='1'>
+        <property name='download.size' value='32073'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.lucene.core' version='2.9.1.v201101211721'>
+      <properties size='1'>
+        <property name='download.size' value='1168475'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ecf.provider.filetransfer' version='3.2.0.v20120610-1946'>
+      <properties size='1'>
+        <property name='download.size' value='127603'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.ui.importexport' version='1.0.1.v20120913-155635'>
+      <properties size='1'>
+        <property name='download.size' value='117510'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.http.servlet' version='1.1.300.v20120912-130548'>
+      <properties size='1'>
+        <property name='download.size' value='45071'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.console' version='3.5.100.v20120521-2012'>
+      <properties size='1'>
+        <property name='download.size' value='161184'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.intro' version='3.4.200.v20120521-2344'>
+      <properties size='1'>
+        <property name='download.size' value='309395'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.felix.gogo.runtime' version='0.8.0.v201108120515'>
+      <properties size='1'>
+        <property name='download.size' value='80002'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.launcher' version='1.3.0.v20120522-1813'>
+      <properties size='1'>
+        <property name='download.size' value='49282'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.jarprocessor' version='1.0.200.v20110808-1657'>
+      <properties size='1'>
+        <property name='download.size' value='69414'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.touchpoint.eclipse' version='2.1.100.v20120428-0117'>
+      <properties size='1'>
+        <property name='download.size' value='125382'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='org.eclipse.equinox.p2.core.feature' version='1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0'>
+      <properties size='1'>
+        <property name='download.size' value='31326'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.ui.workbench.renderers.swt' version='0.10.3.v20130124-170312'>
+      <properties size='1'>
+        <property name='download.size' value='328372'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='org.eclipse.equinox.p2.extras.feature' version='1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w'>
+      <properties size='1'>
+        <property name='download.size' value='30946'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.ui.sdk' version='1.0.200.v20120515-1650'>
+      <properties size='1'>
+        <property name='download.size' value='42692'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.externaltools' version='1.0.100.v20120521-2012'>
+      <properties size='1'>
+        <property name='download.size' value='41085'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.ui.workbench3' version='0.12.0.v20120521-2329'>
+      <properties size='1'>
+        <property name='download.size' value='10070'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='javax.servlet.jsp' version='2.2.0.v201112011158'>
+      <properties size='1'>
+        <property name='download.size' value='107235'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.engine' version='2.2.0.v20130121-021919'>
+      <properties size='1'>
+        <property name='download.size' value='197480'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.osgi' version='3.8.2.v20130124-134944'>
+      <properties size='1'>
+        <property name='download.size' value='1397587'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.text' version='3.5.200.v20120523-1310'>
+      <properties size='1'>
+        <property name='download.size' value='249363'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.emf.ecore' version='2.8.3.v20130125-0546'>
+      <properties size='1'>
+        <property name='download.size' value='1139504'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.ui.css.swt' version='0.10.3.v20130123-162658'>
+      <properties size='1'>
+        <property name='download.size' value='151122'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.runtime' version='3.8.0.v20120912-155025'>
+      <properties size='1'>
+        <property name='download.size' value='75324'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.search' version='3.8.0.v20120523-1540'>
+      <properties size='1'>
+        <property name='download.size' value='470071'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.garbagecollector' version='1.0.200.v20110808-1657'>
+      <properties size='1'>
+        <property name='download.size' value='26238'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.databinding' version='1.4.1.v20120912-132807'>
+      <properties size='1'>
+        <property name='download.size' value='202256'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.runtime.compatibility' version='3.2.200.v20120521-2346'>
+      <properties size='1'>
+        <property name='download.size' value='94013'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.touchpoint.natives' version='1.1.0.v20130121-021919'>
+      <properties size='1'>
+        <property name='download.size' value='52974'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='org.eclipse.equinox.p2.rcp.feature' version='1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd'>
+      <properties size='1'>
+        <property name='download.size' value='30864'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.ui.css.swt.theme' version='0.9.4.v20130123-162658'>
+      <properties size='1'>
+        <property name='download.size' value='25344'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ecf.ssl' version='1.0.100.v20120610-1946'>
+      <properties size='1'>
+        <property name='download.size' value='12773'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='org.eclipse.help' version='1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4'>
+      <properties size='1'>
+        <property name='download.size' value='31053'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.variables' version='3.2.600.v20120521-2012'>
+      <properties size='1'>
+        <property name='download.size' value='34354'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='com.android.ide.eclipse.traceview' version='25.2.3.3470232'>
+      <properties size='1'>
+        <property name='download.size' value='141206'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui' version='3.104.0.v20121024-145224'>
+      <properties size='1'>
+        <property name='download.size' value='154424'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='com.android.ide.eclipse.gldebugger' version='25.2.3.3470232'>
+      <properties size='1'>
+        <property name='download.size' value='520656'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.http.registry' version='1.1.200.v20120912-130548'>
+      <properties size='1'>
+        <property name='download.size' value='45229'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ecf.provider.filetransfer.ssl' version='1.0.0.v20120610-1946'>
+      <properties size='1'>
+        <property name='download.size' value='9672'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.browser' version='3.4.2.v20130123-162658'>
+      <properties size='1'>
+        <property name='download.size' value='192739'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.console' version='1.0.0.v20120522-1841'>
+      <properties size='1'>
+        <property name='download.size' value='111188'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.swt.gtk.linux.x86' version='3.100.1.v4236b'>
+      <properties size='1'>
+        <property name='download.size' value='2393127'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.w3c.css.sac' version='1.3.1.v200903091627'>
+      <properties size='1'>
+        <property name='download.size' value='32952'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ecf' version='3.1.300.v20120610-1946'>
+      <properties size='1'>
+        <property name='download.size' value='94181'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.views' version='3.6.100.v20120705-114010'>
+      <properties size='1'>
+        <property name='download.size' value='91388'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.views.properties.tabbed' version='3.5.300.v20120912-132807'>
+      <properties size='1'>
+        <property name='download.size' value='105407'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='com.android.ide.eclipse.hierarchyviewer.feature' version='25.2.3.3470232'>
+      <properties size='1'>
+        <property name='download.size' value='4844'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.jetty.continuation' version='8.1.3.v20120522'>
+      <properties size='1'>
+        <property name='download.size' value='27328'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.felix.gogo.shell' version='0.8.0.v201110170705'>
+      <properties size='1'>
+        <property name='download.size' value='60824'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.databinding.beans' version='1.2.200.v20120523-1955'>
+      <properties size='1'>
+        <property name='download.size' value='76647'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.lucene.analysis' version='2.9.1.v201101211721'>
+      <properties size='1'>
+        <property name='download.size' value='216089'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.help.base' version='3.6.101.v201302041200'>
+      <properties size='1'>
+        <property name='download.size' value='421642'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.emf.common' version='2.8.0.v20130125-0546'>
+      <properties size='1'>
+        <property name='download.size' value='214222'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.operations' version='2.2.0.v20130119-010614'>
+      <properties size='1'>
+        <property name='download.size' value='60066'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.ant' version='1.8.3.v201301120609'>
+      <properties size='1'>
+        <property name='download.size' value='2359356'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.jetty.http' version='8.1.3.v20120522'>
+      <properties size='1'>
+        <property name='download.size' value='101528'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='com.android.ide.eclipse.ddms.feature' version='25.2.3.3470232'>
+      <properties size='1'>
+        <property name='download.size' value='5051'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.launcher.gtk.linux.x86' version='1.1.200.v20120913-144807'>
+      <properties size='1'>
+        <property name='download.size' value='75252'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ltk.core.refactoring' version='3.6.0.v20120523-1543'>
+      <properties size='1'>
+        <property name='download.size' value='325764'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ecf.provider.filetransfer.httpclient.ssl' version='1.0.0.v20120610-1946'>
+      <properties size='1'>
+        <property name='download.size' value='17935'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ecf.provider.filetransfer.httpclient' version='4.0.200.v20120610-1946'>
+      <properties size='1'>
+        <property name='download.size' value='74130'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='org.eclipse.emf.common' version='2.8.0.v20130125-0546'>
+      <properties size='1'>
+        <property name='download.size' value='18372'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.ql' version='2.0.100.v20110808-1657'>
+      <properties size='1'>
+        <property name='download.size' value='9256'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='org.eclipse.equinox.p2.user.ui' version='2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H'>
+      <properties size='1'>
+        <property name='download.size' value='30887'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.osgi.util' version='3.2.300.v20120913-144807'>
+      <properties size='1'>
+        <property name='download.size' value='24979'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.extensionlocation' version='1.2.100.v20110808-1657'>
+      <properties size='1'>
+        <property name='download.size' value='35833'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.commons.logging' version='1.0.4.v201101211617'>
+      <properties size='1'>
+        <property name='download.size' value='45405'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.jasper.glassfish' version='2.2.2.v201205150955'>
+      <properties size='1'>
+        <property name='download.size' value='2383691'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='javax.inject' version='1.0.0.v20091030'>
+      <properties size='1'>
+        <property name='download.size' value='12288'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.resources' version='3.8.1.v20121114-124432'>
+      <properties size='1'>
+        <property name='download.size' value='810227'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.bidi' version='0.9.100.v20121107-021609'>
+      <properties size='1'>
+        <property name='download.size' value='49578'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='com.android.ide.eclipse.monitor' version='25.2.3.3470232'>
+      <properties size='1'>
+        <property name='download.size' value='622614'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.databinding.property' version='1.4.100.v20120523-1955'>
+      <properties size='1'>
+        <property name='download.size' value='169204'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.navigator.resources' version='3.4.400.v20120705-114010'>
+      <properties size='1'>
+        <property name='download.size' value='120312'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.directorywatcher' version='1.0.300.v20110808-1657'>
+      <properties size='1'>
+        <property name='download.size' value='33783'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.jetty.io' version='8.1.3.v20120522'>
+      <properties size='1'>
+        <property name='download.size' value='111094'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.jetty.security' version='8.1.3.v20120522'>
+      <properties size='1'>
+        <property name='download.size' value='95308'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.ui' version='2.2.0.v20130119-010614'>
+      <properties size='1'>
+        <property name='download.size' value='521522'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.event' version='1.2.200.v20120522-2049'>
+      <properties size='1'>
+        <property name='download.size' value='33750'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ant.core' version='3.2.401.v20121204-162022'>
+      <properties size='1'>
+        <property name='download.size' value='99275'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='com.android.ide.eclipse.base' version='25.2.3.3470232'>
+      <properties size='1'>
+        <property name='download.size' value='4326913'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.jsch.core' version='1.1.400.v20120522-1148'>
+      <properties size='1'>
+        <property name='download.size' value='37557'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.net' version='1.2.200.v20120914-093638'>
+      <properties size='1'>
+        <property name='download.size' value='70472'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.frameworkadmin.equinox' version='1.0.400.v20120913-155709'>
+      <properties size='1'>
+        <property name='download.size' value='62580'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.ui.model.workbench' version='0.10.1.v20120523-1955'>
+      <properties size='1'>
+        <property name='download.size' value='354872'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.jsp.jasper.registry' version='1.0.300.v20120912-130548'>
+      <properties size='1'>
+        <property name='download.size' value='12358'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='com.sun.el' version='2.2.0.v201108011116'>
+      <properties size='1'>
+        <property name='download.size' value='130602'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.ui.di' version='0.10.1.v20120523-1955'>
+      <properties size='1'>
+        <property name='download.size' value='14581'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.workbench.texteditor' version='3.8.0.v20120523-1310'>
+      <properties size='1'>
+        <property name='download.size' value='584027'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.batik.util' version='1.6.0.v201011041432'>
+      <properties size='1'>
+        <property name='download.size' value='101159'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.core.commands' version='0.10.1.v20120523-1955'>
+      <properties size='1'>
+        <property name='download.size' value='18234'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='com.android.ide.eclipse.hierarchyviewer' version='25.2.3.3470232'>
+      <properties size='1'>
+        <property name='download.size' value='409124'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.w3c.dom.svg' version='1.1.0.v201011041433'>
+      <properties size='1'>
+        <property name='download.size' value='87897'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.artifact.repository' version='1.1.200.v20120430-1959'>
+      <properties size='1'>
+        <property name='download.size' value='137108'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.metadata' version='2.1.0.v20120430-2001'>
+      <properties size='1'>
+        <property name='download.size' value='340683'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='javax.annotation' version='1.0.0.v20101115-0725'>
+      <properties size='1'>
+        <property name='download.size' value='17480'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.common' version='3.6.100.v20120522-1841'>
+      <properties size='1'>
+        <property name='download.size' value='106765'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ltk.ui.refactoring' version='3.7.0.v20120523-1543'>
+      <properties size='1'>
+        <property name='download.size' value='458248'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.intro.universal' version='3.2.600.v20120912-155524'>
+      <properties size='1'>
+        <property name='download.size' value='1637407'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.ui.workbench' version='0.11.0.v20130125-100758'>
+      <properties size='1'>
+        <property name='download.size' value='236292'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.net.linux.x86' version='1.1.200.v20120522-1148'>
+      <properties size='1'>
+        <property name='download.size' value='38041'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.ds' version='1.4.1.v20120926-201320'>
+      <properties size='1'>
+        <property name='download.size' value='194017'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.sat4j.core' version='2.3.0.v20110329'>
+      <properties size='1'>
+        <property name='download.size' value='210700'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.updatechecker' version='1.1.200.v20110808-1657'>
+      <properties size='1'>
+        <property name='download.size' value='18001'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.osgi.services' version='3.3.100.v20120522-1822'>
+      <properties size='1'>
+        <property name='download.size' value='83084'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.director.app' version='1.0.300.v20120428-0517'>
+      <properties size='1'>
+        <property name='download.size' value='50374'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.filesystem.linux.x86' version='1.4.0.v20120522-1137'>
+      <properties size='1'>
+        <property name='download.size' value='10492'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.director' version='2.2.0.v20120524-0542'>
+      <properties size='1'>
+        <property name='download.size' value='96468'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.preferences' version='3.5.1.v20121031-182809'>
+      <properties size='1'>
+        <property name='download.size' value='126754'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='javax.xml' version='1.3.4.v201005080400'>
+      <properties size='1'>
+        <property name='download.size' value='237996'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.jobs' version='3.5.300.v20120912-155018'>
+      <properties size='1'>
+        <property name='download.size' value='92510'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.contenttype' version='3.4.200.v20120523-2004'>
+      <properties size='1'>
+        <property name='download.size' value='93175'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.help' version='3.6.0.v20120912-134126'>
+      <properties size='1'>
+        <property name='download.size' value='258851'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.console' version='1.0.300.v20120429-0125'>
+      <properties size='1'>
+        <property name='download.size' value='28273'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='javax.el' version='2.2.0.v201108011116'>
+      <properties size='1'>
+        <property name='download.size' value='52319'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.forms' version='3.5.200.v20120705-114351'>
+      <properties size='1'>
+        <property name='download.size' value='302121'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.ui.widgets' version='0.12.3.v20130123-162658'>
+      <properties size='1'>
+        <property name='download.size' value='14022'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.publisher.eclipse' version='1.1.0.v20120913-155635'>
+      <properties size='1'>
+        <property name='download.size' value='215200'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.ui.workbench.addons.swt' version='0.10.3.v20130124-185622'>
+      <properties size='1'>
+        <property name='download.size' value='132003'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.batik.util.gui' version='1.6.0.v201011041432'>
+      <properties size='1'>
+        <property name='download.size' value='164253'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.transport.ecf' version='1.0.100.v20120913-155635'>
+      <properties size='1'>
+        <property name='download.size' value='42017'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.jetty.util' version='8.1.3.v20120522'>
+      <properties size='1'>
+        <property name='download.size' value='282738'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.help.ui' version='3.5.201.v20130108-092756'>
+      <properties size='1'>
+        <property name='download.size' value='499655'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='org.eclipse.platform' version='4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7'>
+      <properties size='1'>
+        <property name='download.size' value='32030'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.update.configurator' version='3.3.200.v20120912-144026'>
+      <properties size='1'>
+        <property name='download.size' value='101125'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.batik.css' version='1.6.0.v201011041432'>
+      <properties size='1'>
+        <property name='download.size' value='265409'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.cheatsheets' version='3.4.200.v20120521-2344'>
+      <properties size='1'>
+        <property name='download.size' value='330211'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.net' version='1.2.101.v20120914-093638'>
+      <properties size='1'>
+        <property name='download.size' value='48975'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.security.ui' version='1.1.100.v20120522-2049'>
+      <properties size='1'>
+        <property name='download.size' value='215477'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.core.di' version='1.2.0.v20121024-173149'>
+      <properties size='1'>
+        <property name='download.size' value='51874'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.runtime.compatibility.registry' version='3.5.101.v20130108-163257'>
+      <properties size='1'>
+        <property name='download.size' value='19341'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.jetty.servlet' version='8.1.3.v20120522'>
+      <properties size='1'>
+        <property name='download.size' value='102989'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.externaltools' version='3.2.100.v20120530-1753'>
+      <properties size='1'>
+        <property name='download.size' value='137310'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.debug.ui' version='3.8.2.v20130130-171415'>
+      <properties size='1'>
+        <property name='download.size' value='2614072'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.reconciler.dropins' version='1.1.200.v20120301-2145'>
+      <properties size='1'>
+        <property name='download.size' value='48731'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.metadata.repository' version='1.2.100.v20120524-1717'>
+      <properties size='1'>
+        <property name='download.size' value='118133'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.navigator' version='3.5.200.v20120705-114103'>
+      <properties size='1'>
+        <property name='download.size' value='406144'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.registry' version='3.5.200.v20120522-1841'>
+      <properties size='1'>
+        <property name='download.size' value='184235'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.simpleconfigurator' version='1.0.301.v20120914-163612'>
+      <properties size='1'>
+        <property name='download.size' value='40706'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.jetty.server' version='8.1.3.v20120522'>
+      <properties size='1'>
+        <property name='download.size' value='344666'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.platform.doc.user' version='4.2.2.v20130121-200410'>
+      <properties size='1'>
+        <property name='download.size' value='8719019'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.expressions' version='3.4.401.v20120912-155018'>
+      <properties size='1'>
+        <property name='download.size' value='88231'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.ide.application' version='1.0.400.v20120523-1955'>
+      <properties size='1'>
+        <property name='download.size' value='66382'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.emf.ecore.change' version='2.8.0.v20130125-0546'>
+      <properties size='1'>
+        <property name='download.size' value='83050'/>
+      </properties>
+    </artifact>
+  </artifacts>
+</repository>
diff --git a/lib/monitor-x86/configuration/config.ini b/lib/monitor-x86/configuration/config.ini
new file mode 100644
index 0000000..710fb33
--- /dev/null
+++ b/lib/monitor-x86/configuration/config.ini
@@ -0,0 +1,12 @@
+#This configuration file was written by: org.eclipse.equinox.internal.frameworkadmin.equinox.EquinoxFwConfigFileParser
+#Fri Nov 11 16:23:26 UTC 2016
+eclipse.p2.profile=DefaultProfile
+osgi.framework=file\:plugins/org.eclipse.osgi_3.8.2.v20130124-134944.jar
+equinox.use.ds=true
+osgi.bundles=reference\:file\:com.android.ide.eclipse.base_25.2.3.3470232.jar@4,reference\:file\:com.android.ide.eclipse.ddms_25.2.3.3470232.jar@4,reference\:file\:com.android.ide.eclipse.gldebugger_25.2.3.3470232.jar@4,reference\:file\:com.android.ide.eclipse.hierarchyviewer_25.2.3.3470232.jar@4,reference\:file\:com.android.ide.eclipse.monitor_25.2.3.3470232.jar@4,reference\:file\:com.android.ide.eclipse.traceview_25.2.3.3470232.jar@4,reference\:file\:com.ibm.icu_4.4.2.v20110823.jar@4,reference\:file\:com.jcraft.jsch_0.1.46.v201205102330.jar@4,reference\:file\:com.sun.el_2.2.0.v201108011116.jar@4,reference\:file\:javax.annotation_1.0.0.v20101115-0725.jar@4,reference\:file\:javax.el_2.2.0.v201108011116.jar@4,reference\:file\:javax.inject_1.0.0.v20091030.jar@4,reference\:file\:javax.servlet_3.0.0.v201112011016.jar@4,reference\:file\:javax.servlet.jsp_2.2.0.v201112011158.jar@4,reference\:file\:javax.xml_1.3.4.v201005080400.jar@4,reference\:file\:org.apache.ant_1.8.3.v201301120609/@4,reference\:file\:org.apache.batik.css_1.6.0.v201011041432.jar@4,reference\:file\:org.apache.batik.util_1.6.0.v201011041432.jar@4,reference\:file\:org.apache.batik.util.gui_1.6.0.v201011041432.jar@4,reference\:file\:org.apache.commons.codec_1.3.0.v201101211617.jar@4,reference\:file\:org.apache.commons.httpclient_3.1.0.v201012070820.jar@4,reference\:file\:org.apache.commons.logging_1.0.4.v201101211617.jar@4,reference\:file\:org.apache.felix.gogo.command_0.8.0.v201108120515.jar@4,reference\:file\:org.apache.felix.gogo.runtime_0.8.0.v201108120515.jar@4,reference\:file\:org.apache.felix.gogo.shell_0.8.0.v201110170705.jar@4,reference\:file\:org.apache.jasper.glassfish_2.2.2.v201205150955.jar@4,reference\:file\:org.apache.lucene_2.9.1.v201101211721.jar@4,reference\:file\:org.apache.lucene.analysis_2.9.1.v201101211721.jar@4,reference\:file\:org.apache.lucene.core_2.9.1.v201101211721.jar@4,reference\:file\:org.eclipse.ant.core_3.2.401.v20121204-162022.jar@4,reference\:file\:org.eclipse.compare_3.5.301.v20130125-135424.jar@4,reference\:file\:org.eclipse.compare.core_3.5.200.v20120522-1148.jar@4,reference\:file\:org.eclipse.core.commands_3.6.2.v20130123-162658.jar@4,reference\:file\:org.eclipse.core.contenttype_3.4.200.v20120523-2004.jar@4,reference\:file\:org.eclipse.core.databinding_1.4.1.v20120912-132807.jar@4,reference\:file\:org.eclipse.core.databinding.beans_1.2.200.v20120523-1955.jar@4,reference\:file\:org.eclipse.core.databinding.observable_1.4.1.v20120521-2329.jar@4,reference\:file\:org.eclipse.core.databinding.property_1.4.100.v20120523-1955.jar@4,reference\:file\:org.eclipse.core.expressions_3.4.401.v20120912-155018.jar@4,reference\:file\:org.eclipse.core.externaltools_1.0.100.v20120521-2012.jar@4,reference\:file\:org.eclipse.core.filebuffers_3.5.200.v20120523-1310.jar@4,reference\:file\:org.eclipse.core.filesystem_1.3.200.v20130115-145044.jar@4,reference\:file\:org.eclipse.core.filesystem.linux.x86_1.4.0.v20120522-1137.jar@4,reference\:file\:org.eclipse.core.jobs_3.5.300.v20120912-155018.jar@4,reference\:file\:org.eclipse.core.net_1.2.200.v20120914-093638.jar@4,reference\:file\:org.eclipse.core.net.linux.x86_1.1.200.v20120522-1148.jar@4,reference\:file\:org.eclipse.core.resources_3.8.1.v20121114-124432.jar@4,reference\:file\:org.eclipse.core.runtime_3.8.0.v20120912-155025.jar@2\:start,reference\:file\:org.eclipse.core.runtime.compatibility_3.2.200.v20120521-2346.jar@4,reference\:file\:org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/@4,reference\:file\:org.eclipse.core.variables_3.2.600.v20120521-2012.jar@4,reference\:file\:org.eclipse.debug.core_3.7.100.v20120521-2012.jar@4,reference\:file\:org.eclipse.debug.ui_3.8.2.v20130130-171415.jar@4,reference\:file\:org.eclipse.e4.core.commands_0.10.1.v20120523-1955.jar@4,reference\:file\:org.eclipse.e4.core.contexts_1.2.0.v20121221-192508.jar@4,reference\:file\:org.eclipse.e4.core.di_1.2.0.v20121024-173149.jar@4,reference\:file\:org.eclipse.e4.core.di.extensions_0.11.100.v20121024-182359.jar@4,reference\:file\:org.eclipse.e4.core.services_1.0.0.v20120521-2346.jar@4,reference\:file\:org.eclipse.e4.ui.bindings_0.10.3.v20130123-162658.jar@4,reference\:file\:org.eclipse.e4.ui.css.core_0.10.2.v20120912-132817.jar@4,reference\:file\:org.eclipse.e4.ui.css.swt_0.10.3.v20130123-162658.jar@4,reference\:file\:org.eclipse.e4.ui.css.swt.theme_0.9.4.v20130123-162658.jar@4,reference\:file\:org.eclipse.e4.ui.di_0.10.1.v20120523-1955.jar@4,reference\:file\:org.eclipse.e4.ui.model.workbench_0.10.1.v20120523-1955.jar@4,reference\:file\:org.eclipse.e4.ui.services_0.10.3.v20130123-162658.jar@4,reference\:file\:org.eclipse.e4.ui.widgets_0.12.3.v20130123-162658.jar@4,reference\:file\:org.eclipse.e4.ui.workbench_0.11.0.v20130125-100758.jar@4,reference\:file\:org.eclipse.e4.ui.workbench.addons.swt_0.10.3.v20130124-185622.jar@4,reference\:file\:org.eclipse.e4.ui.workbench.renderers.swt_0.10.3.v20130124-170312.jar@4,reference\:file\:org.eclipse.e4.ui.workbench.swt_0.10.3.v20130124-133900.jar@4,reference\:file\:org.eclipse.e4.ui.workbench3_0.12.0.v20120521-2329.jar@4,reference\:file\:org.eclipse.ecf_3.1.300.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.filetransfer_5.0.0.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.identity_3.1.200.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.provider.filetransfer_3.2.0.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.provider.filetransfer.httpclient_4.0.200.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.provider.filetransfer.httpclient.ssl_1.0.0.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.provider.filetransfer.ssl_1.0.0.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.ssl_1.0.100.v20120610-1946.jar@4,reference\:file\:org.eclipse.emf.common_2.8.0.v20130125-0546.jar@4,reference\:file\:org.eclipse.emf.ecore_2.8.3.v20130125-0546.jar@4,reference\:file\:org.eclipse.emf.ecore.change_2.8.0.v20130125-0546.jar@4,reference\:file\:org.eclipse.emf.ecore.xmi_2.8.1.v20130125-0546.jar@4,reference\:file\:org.eclipse.equinox.app_1.3.100.v20120522-1841.jar@4,reference\:file\:org.eclipse.equinox.bidi_0.9.100.v20121107-021609.jar@4,reference\:file\:org.eclipse.equinox.common_3.6.100.v20120522-1841.jar@2\:start,reference\:file\:org.eclipse.equinox.console_1.0.0.v20120522-1841.jar@4,reference\:file\:org.eclipse.equinox.ds_1.4.1.v20120926-201320.jar@2\:start,reference\:file\:org.eclipse.equinox.event_1.2.200.v20120522-2049.jar@4,reference\:file\:org.eclipse.equinox.frameworkadmin_2.0.100.v20120913-155515.jar@4,reference\:file\:org.eclipse.equinox.frameworkadmin.equinox_1.0.400.v20120913-155709.jar@4,reference\:file\:org.eclipse.equinox.http.jetty_3.0.1.v20121109-203239.jar@4,reference\:file\:org.eclipse.equinox.http.registry_1.1.200.v20120912-130548.jar@4,reference\:file\:org.eclipse.equinox.http.servlet_1.1.300.v20120912-130548.jar@4,reference\:file\:org.eclipse.equinox.jsp.jasper_1.0.400.v20120912-130548.jar@4,reference\:file\:org.eclipse.equinox.jsp.jasper.registry_1.0.300.v20120912-130548.jar@4,reference\:file\:org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar@4,reference\:file\:org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/@4,reference\:file\:org.eclipse.equinox.p2.artifact.repository_1.1.200.v20120430-1959.jar@4,reference\:file\:org.eclipse.equinox.p2.console_1.0.300.v20120429-0125.jar@4,reference\:file\:org.eclipse.equinox.p2.core_2.2.0.v20120430-0525.jar@4,reference\:file\:org.eclipse.equinox.p2.director_2.2.0.v20120524-0542.jar@4,reference\:file\:org.eclipse.equinox.p2.director.app_1.0.300.v20120428-0517.jar@4,reference\:file\:org.eclipse.equinox.p2.directorywatcher_1.0.300.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.p2.engine_2.2.0.v20130121-021919.jar@4,reference\:file\:org.eclipse.equinox.p2.extensionlocation_1.2.100.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.p2.garbagecollector_1.0.200.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.p2.jarprocessor_1.0.200.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.p2.metadata_2.1.0.v20120430-2001.jar@4,reference\:file\:org.eclipse.equinox.p2.metadata.repository_1.2.100.v20120524-1717.jar@4,reference\:file\:org.eclipse.equinox.p2.operations_2.2.0.v20130119-010614.jar@4,reference\:file\:org.eclipse.equinox.p2.publisher_1.2.0.v20121002-080415.jar@4,reference\:file\:org.eclipse.equinox.p2.publisher.eclipse_1.1.0.v20120913-155635.jar@4,reference\:file\:org.eclipse.equinox.p2.ql_2.0.100.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.p2.reconciler.dropins_1.1.200.v20120301-2145.jar@4,reference\:file\:org.eclipse.equinox.p2.repository_2.2.0.v20120524-1945.jar@4,reference\:file\:org.eclipse.equinox.p2.repository.tools_2.0.100.v20120501-1314.jar@4,reference\:file\:org.eclipse.equinox.p2.touchpoint.eclipse_2.1.100.v20120428-0117.jar@4,reference\:file\:org.eclipse.equinox.p2.touchpoint.natives_1.1.0.v20130121-021919.jar@4,reference\:file\:org.eclipse.equinox.p2.transport.ecf_1.0.100.v20120913-155635.jar@4,reference\:file\:org.eclipse.equinox.p2.ui_2.2.0.v20130119-010614.jar@4,reference\:file\:org.eclipse.equinox.p2.ui.importexport_1.0.1.v20120913-155635.jar@4,reference\:file\:org.eclipse.equinox.p2.ui.sdk_1.0.200.v20120515-1650.jar@4,reference\:file\:org.eclipse.equinox.p2.ui.sdk.scheduler_1.1.0.v20110815-1744.jar@4,reference\:file\:org.eclipse.equinox.p2.updatechecker_1.1.200.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.p2.updatesite_1.0.400.v20120412-1615.jar@4,reference\:file\:org.eclipse.equinox.preferences_3.5.1.v20121031-182809.jar@4,reference\:file\:org.eclipse.equinox.registry_3.5.200.v20120522-1841.jar@4,reference\:file\:org.eclipse.equinox.security_1.1.100.v20120522-1841.jar@4,reference\:file\:org.eclipse.equinox.security.ui_1.1.100.v20120522-2049.jar@4,reference\:file\:org.eclipse.equinox.simpleconfigurator_1.0.301.v20120914-163612.jar@4,reference\:file\:org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.util_1.0.400.v20120917-192807.jar@4,reference\:file\:org.eclipse.help_3.6.0.v20120912-134126.jar@4,reference\:file\:org.eclipse.help.base_3.6.101.v201302041200.jar@4,reference\:file\:org.eclipse.help.ui_3.5.201.v20130108-092756.jar@4,reference\:file\:org.eclipse.help.webapp_3.6.101.v20130116-182509.jar@4,reference\:file\:org.eclipse.jetty.continuation_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jetty.http_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jetty.io_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jetty.security_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jetty.server_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jetty.servlet_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jetty.util_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jface_3.8.102.v20130123-162658.jar@4,reference\:file\:org.eclipse.jface.databinding_1.6.0.v20120912-132807.jar@4,reference\:file\:org.eclipse.jface.text_3.8.2.v20121126-164145.jar@4,reference\:file\:org.eclipse.jsch.core_1.1.400.v20120522-1148.jar@4,reference\:file\:org.eclipse.jsch.ui_1.1.400.v20120522-1148.jar@4,reference\:file\:org.eclipse.ltk.core.refactoring_3.6.0.v20120523-1543.jar@4,reference\:file\:org.eclipse.ltk.ui.refactoring_3.7.0.v20120523-1543.jar@4,reference\:file\:org.eclipse.osgi.services_3.3.100.v20120522-1822.jar@4,reference\:file\:org.eclipse.osgi.util_3.2.300.v20120913-144807.jar@4,reference\:file\:org.eclipse.platform_4.2.2.v201302041200/@4,reference\:file\:org.eclipse.platform.doc.user_4.2.2.v20130121-200410.jar@4,reference\:file\:org.eclipse.rcp_4.2.1.v201302041200.jar@4,reference\:file\:org.eclipse.search_3.8.0.v20120523-1540.jar@4,reference\:file\:org.eclipse.swt_3.100.1.v4236b.jar@4,reference\:file\:org.eclipse.swt.gtk.linux.x86_3.100.1.v4236b.jar@4,reference\:file\:org.eclipse.team.core_3.6.100.v20120524-0627.jar@4,reference\:file\:org.eclipse.team.ui_3.6.201.v20130125-135424.jar@4,reference\:file\:org.eclipse.text_3.5.200.v20120523-1310.jar@4,reference\:file\:org.eclipse.ui_3.104.0.v20121024-145224.jar@4,reference\:file\:org.eclipse.ui.browser_3.4.2.v20130123-162658.jar@4,reference\:file\:org.eclipse.ui.cheatsheets_3.4.200.v20120521-2344.jar@4,reference\:file\:org.eclipse.ui.console_3.5.100.v20120521-2012.jar@4,reference\:file\:org.eclipse.ui.editors_3.8.0.v20120523-1540.jar@4,reference\:file\:org.eclipse.ui.externaltools_3.2.100.v20120530-1753.jar@4,reference\:file\:org.eclipse.ui.forms_3.5.200.v20120705-114351.jar@4,reference\:file\:org.eclipse.ui.ide_3.8.2.v20121106-165923.jar@4,reference\:file\:org.eclipse.ui.ide.application_1.0.400.v20120523-1955.jar@4,reference\:file\:org.eclipse.ui.intro_3.4.200.v20120521-2344.jar@4,reference\:file\:org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/@4,reference\:file\:org.eclipse.ui.navigator_3.5.200.v20120705-114103.jar@4,reference\:file\:org.eclipse.ui.navigator.resources_3.4.400.v20120705-114010.jar@4,reference\:file\:org.eclipse.ui.net_1.2.101.v20120914-093638.jar@4,reference\:file\:org.eclipse.ui.views_3.6.100.v20120705-114010.jar@4,reference\:file\:org.eclipse.ui.views.properties.tabbed_3.5.300.v20120912-132807.jar@4,reference\:file\:org.eclipse.ui.workbench_3.104.0.v20130204-164612.jar@4,reference\:file\:org.eclipse.ui.workbench.texteditor_3.8.0.v20120523-1310.jar@4,reference\:file\:org.eclipse.update.configurator_3.3.200.v20120912-144026.jar@4,reference\:file\:org.sat4j.core_2.3.0.v20110329.jar@4,reference\:file\:org.sat4j.pb_2.3.0.v20110329.jar@4,reference\:file\:org.w3c.css.sac_1.3.1.v200903091627.jar@4,reference\:file\:org.w3c.dom.smil_1.0.0.v200806040011.jar@4,reference\:file\:org.w3c.dom.svg_1.1.0.v201011041433.jar@4
+eclipse.product=com.android.ide.eclipse.monitor.product
+osgi.splashPath=platform\:/base/plugins/com.android.ide.eclipse.monitor
+osgi.framework.extensions=
[email protected]/../p2
+osgi.bundles.defaultStartLevel=4
+eclipse.application=com.android.ide.eclipse.monitor.Application
diff --git a/lib/monitor-x86/configuration/org.eclipse.update/platform.xml b/lib/monitor-x86/configuration/org.eclipse.update/platform.xml
new file mode 100644
index 0000000..7925127
--- /dev/null
+++ b/lib/monitor-x86/configuration/org.eclipse.update/platform.xml
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<config transient="false" date="1478881406581">
+	<site enabled="true" updateable="true" policy="USER-EXCLUDE" url="platform:/base/">
+		<feature id="org.eclipse.emf.common" url="features/org.eclipse.emf.common_2.8.0.v20130125-0546/" version="2.8.0.v20130125-0546">
+		</feature>
+		<feature id="org.eclipse.equinox.p2.user.ui" url="features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/" version="2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H">
+		</feature>
+		<feature id="org.eclipse.rcp" url="features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/" version="4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h">
+		</feature>
+		<feature id="org.eclipse.emf.ecore" url="features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/" version="2.8.3.v20130125-0546">
+		</feature>
+		<feature id="com.android.ide.eclipse.gldebugger.feature" url="features/com.android.ide.eclipse.gldebugger.feature_25.2.3.3470232/" version="25.2.3.3470232">
+		</feature>
+		<feature id="com.android.ide.eclipse.ddms.feature" plugin-identifier="com.android.ide.eclipse.ddms" url="features/com.android.ide.eclipse.ddms.feature_25.2.3.3470232/" version="25.2.3.3470232">
+		</feature>
+		<feature id="org.eclipse.equinox.p2.extras.feature" url="features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/" version="1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w">
+		</feature>
+		<feature id="org.eclipse.equinox.p2.rcp.feature" url="features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/" version="1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd">
+		</feature>
+		<feature id="org.eclipse.e4.rcp" url="features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/" version="1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS">
+		</feature>
+		<feature id="com.android.ide.eclipse.hierarchyviewer.feature" plugin-identifier="com.android.ide.eclipse.hierarchyviewer" url="features/com.android.ide.eclipse.hierarchyviewer.feature_25.2.3.3470232/" version="25.2.3.3470232">
+		</feature>
+		<feature id="org.eclipse.platform" url="features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/" version="4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7">
+		</feature>
+		<feature id="com.android.ide.eclipse.monitor.feature" plugin-identifier="com.android.ide.eclipse.monitor" url="features/com.android.ide.eclipse.monitor.feature_25.2.3.3470232/" version="25.2.3.3470232">
+		</feature>
+		<feature id="org.eclipse.help" plugin-identifier="org.eclipse.help.base" url="features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/" version="1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4">
+		</feature>
+		<feature id="org.eclipse.equinox.p2.core.feature" url="features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/" version="1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0">
+		</feature>
+		<feature id="com.android.ide.eclipse.traceview.feature" plugin-identifier="com.android.ide.eclipse.traceview" url="features/com.android.ide.eclipse.traceview.feature_25.2.3.3470232/" version="25.2.3.3470232">
+		</feature>
+	</site>
+</config>
diff --git a/lib/monitor-x86/epl-v10.html b/lib/monitor-x86/epl-v10.html
new file mode 100644
index 0000000..ed4b196
--- /dev/null
+++ b/lib/monitor-x86/epl-v10.html
@@ -0,0 +1,328 @@
+<html xmlns:o="urn:schemas-microsoft-com:office:office"
+xmlns:w="urn:schemas-microsoft-com:office:word"
+xmlns="http://www.w3.org/TR/REC-html40">
+
+<head>
+<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
+<meta name=ProgId content=Word.Document>
+<meta name=Generator content="Microsoft Word 9">
+<meta name=Originator content="Microsoft Word 9">
+<link rel=File-List
+href="./Eclipse%20EPL%202003_11_10%20Final_files/filelist.xml">
+<title>Eclipse Public License - Version 1.0</title>
+<!--[if gte mso 9]><xml>
+ <o:DocumentProperties>
+  <o:Revision>2</o:Revision>
+  <o:TotalTime>3</o:TotalTime>
+  <o:Created>2004-03-05T23:03:00Z</o:Created>
+  <o:LastSaved>2004-03-05T23:03:00Z</o:LastSaved>
+  <o:Pages>4</o:Pages>
+  <o:Words>1626</o:Words>
+  <o:Characters>9270</o:Characters>
+   <o:Lines>77</o:Lines>
+  <o:Paragraphs>18</o:Paragraphs>
+  <o:CharactersWithSpaces>11384</o:CharactersWithSpaces>
+  <o:Version>9.4402</o:Version>
+ </o:DocumentProperties>
+</xml><![endif]--><!--[if gte mso 9]><xml>
+ <w:WordDocument>
+  <w:TrackRevisions/>
+ </w:WordDocument>
+</xml><![endif]-->
+<style>
+<!--
+ /* Font Definitions */
+@font-face
+	{font-family:Tahoma;
+	panose-1:2 11 6 4 3 5 4 4 2 4;
+	mso-font-charset:0;
+	mso-generic-font-family:swiss;
+	mso-font-pitch:variable;
+	mso-font-signature:553679495 -2147483648 8 0 66047 0;}
+ /* Style Definitions */
+p.MsoNormal, li.MsoNormal, div.MsoNormal
+	{mso-style-parent:"";
+	margin:0in;
+	margin-bottom:.0001pt;
+	mso-pagination:widow-orphan;
+	font-size:12.0pt;
+	font-family:"Times New Roman";
+	mso-fareast-font-family:"Times New Roman";}
+p
+	{margin-right:0in;
+	mso-margin-top-alt:auto;
+	mso-margin-bottom-alt:auto;
+	margin-left:0in;
+	mso-pagination:widow-orphan;
+	font-size:12.0pt;
+	font-family:"Times New Roman";
+	mso-fareast-font-family:"Times New Roman";}
+p.BalloonText, li.BalloonText, div.BalloonText
+	{mso-style-name:"Balloon Text";
+	margin:0in;
+	margin-bottom:.0001pt;
+	mso-pagination:widow-orphan;
+	font-size:8.0pt;
+	font-family:Tahoma;
+	mso-fareast-font-family:"Times New Roman";}
+@page Section1
+	{size:8.5in 11.0in;
+	margin:1.0in 1.25in 1.0in 1.25in;
+	mso-header-margin:.5in;
+	mso-footer-margin:.5in;
+	mso-paper-source:0;}
+div.Section1
+	{page:Section1;}
+-->
+</style>
+</head>
+
+<body lang=EN-US style='tab-interval:.5in'>
+
+<div class=Section1>
+
+<p align=center style='text-align:center'><b>Eclipse Public License - v 1.0</b>
+</p>
+
+<p><span style='font-size:10.0pt'>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER
+THE TERMS OF THIS ECLIPSE PUBLIC LICENSE (&quot;AGREEMENT&quot;). ANY USE,
+REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE
+OF THIS AGREEMENT.</span> </p>
+
+<p><b><span style='font-size:10.0pt'>1. DEFINITIONS</span></b> </p>
+
+<p><span style='font-size:10.0pt'>&quot;Contribution&quot; means:</span> </p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>a)
+in the case of the initial Contributor, the initial code and documentation
+distributed under this Agreement, and<br clear=left>
+b) in the case of each subsequent Contributor:</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>i)
+changes to the Program, and</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>ii)
+additions to the Program;</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>where
+such changes and/or additions to the Program originate from and are distributed
+by that particular Contributor. A Contribution 'originates' from a Contributor
+if it was added to the Program by such Contributor itself or anyone acting on
+such Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in conjunction
+with the Program under their own license agreement, and (ii) are not derivative
+works of the Program. </span></p>
+
+<p><span style='font-size:10.0pt'>&quot;Contributor&quot; means any person or
+entity that distributes the Program.</span> </p>
+
+<p><span style='font-size:10.0pt'>&quot;Licensed Patents &quot; mean patent
+claims licensable by a Contributor which are necessarily infringed by the use
+or sale of its Contribution alone or when combined with the Program. </span></p>
+
+<p><span style='font-size:10.0pt'>&quot;Program&quot; means the Contributions
+distributed in accordance with this Agreement.</span> </p>
+
+<p><span style='font-size:10.0pt'>&quot;Recipient&quot; means anyone who
+receives the Program under this Agreement, including all Contributors.</span> </p>
+
+<p><b><span style='font-size:10.0pt'>2. GRANT OF RIGHTS</span></b> </p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>a)
+Subject to the terms of this Agreement, each Contributor hereby grants Recipient
+a non-exclusive, worldwide, royalty-free copyright license to<span
+style='color:red'> </span>reproduce, prepare derivative works of, publicly
+display, publicly perform, distribute and sublicense the Contribution of such
+Contributor, if any, and such derivative works, in source code and object code
+form.</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>b)
+Subject to the terms of this Agreement, each Contributor hereby grants
+Recipient a non-exclusive, worldwide,<span style='color:green'> </span>royalty-free
+patent license under Licensed Patents to make, use, sell, offer to sell, import
+and otherwise transfer the Contribution of such Contributor, if any, in source
+code and object code form. This patent license shall apply to the combination
+of the Contribution and the Program if, at the time the Contribution is added
+by the Contributor, such addition of the Contribution causes such combination
+to be covered by the Licensed Patents. The patent license shall not apply to
+any other combinations which include the Contribution. No hardware per se is
+licensed hereunder. </span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>c)
+Recipient understands that although each Contributor grants the licenses to its
+Contributions set forth herein, no assurances are provided by any Contributor
+that the Program does not infringe the patent or other intellectual property
+rights of any other entity. Each Contributor disclaims any liability to Recipient
+for claims brought by any other entity based on infringement of intellectual
+property rights or otherwise. As a condition to exercising the rights and
+licenses granted hereunder, each Recipient hereby assumes sole responsibility
+to secure any other intellectual property rights needed, if any. For example,
+if a third party patent license is required to allow Recipient to distribute
+the Program, it is Recipient's responsibility to acquire that license before
+distributing the Program.</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>d)
+Each Contributor represents that to its knowledge it has sufficient copyright
+rights in its Contribution, if any, to grant the copyright license set forth in
+this Agreement. </span></p>
+
+<p><b><span style='font-size:10.0pt'>3. REQUIREMENTS</span></b> </p>
+
+<p><span style='font-size:10.0pt'>A Contributor may choose to distribute the
+Program in object code form under its own license agreement, provided that:</span>
+</p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>a)
+it complies with the terms and conditions of this Agreement; and</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>b)
+its license agreement:</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>i)
+effectively disclaims on behalf of all Contributors all warranties and
+conditions, express and implied, including warranties or conditions of title
+and non-infringement, and implied warranties or conditions of merchantability
+and fitness for a particular purpose; </span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>ii)
+effectively excludes on behalf of all Contributors all liability for damages,
+including direct, indirect, special, incidental and consequential damages, such
+as lost profits; </span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>iii)
+states that any provisions which differ from this Agreement are offered by that
+Contributor alone and not by any other party; and</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>iv)
+states that source code for the Program is available from such Contributor, and
+informs licensees how to obtain it in a reasonable manner on or through a
+medium customarily used for software exchange.<span style='color:blue'> </span></span></p>
+
+<p><span style='font-size:10.0pt'>When the Program is made available in source
+code form:</span> </p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>a)
+it must be made available under this Agreement; and </span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>b) a
+copy of this Agreement must be included with each copy of the Program. </span></p>
+
+<p><span style='font-size:10.0pt'>Contributors may not remove or alter any
+copyright notices contained within the Program. </span></p>
+
+<p><span style='font-size:10.0pt'>Each Contributor must identify itself as the
+originator of its Contribution, if any, in a manner that reasonably allows
+subsequent Recipients to identify the originator of the Contribution. </span></p>
+
+<p><b><span style='font-size:10.0pt'>4. COMMERCIAL DISTRIBUTION</span></b> </p>
+
+<p><span style='font-size:10.0pt'>Commercial distributors of software may
+accept certain responsibilities with respect to end users, business partners
+and the like. While this license is intended to facilitate the commercial use
+of the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create potential
+liability for other Contributors. Therefore, if a Contributor includes the
+Program in a commercial product offering, such Contributor (&quot;Commercial
+Contributor&quot;) hereby agrees to defend and indemnify every other
+Contributor (&quot;Indemnified Contributor&quot;) against any losses, damages and
+costs (collectively &quot;Losses&quot;) arising from claims, lawsuits and other
+legal actions brought by a third party against the Indemnified Contributor to
+the extent caused by the acts or omissions of such Commercial Contributor in
+connection with its distribution of the Program in a commercial product
+offering. The obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In order
+to qualify, an Indemnified Contributor must: a) promptly notify the Commercial
+Contributor in writing of such claim, and b) allow the Commercial Contributor
+to control, and cooperate with the Commercial Contributor in, the defense and
+any related settlement negotiations. The Indemnified Contributor may participate
+in any such claim at its own expense.</span> </p>
+
+<p><span style='font-size:10.0pt'>For example, a Contributor might include the
+Program in a commercial product offering, Product X. That Contributor is then a
+Commercial Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance claims and
+warranties are such Commercial Contributor's responsibility alone. Under this
+section, the Commercial Contributor would have to defend claims against the
+other Contributors related to those performance claims and warranties, and if a
+court requires any other Contributor to pay any damages as a result, the
+Commercial Contributor must pay those damages.</span> </p>
+
+<p><b><span style='font-size:10.0pt'>5. NO WARRANTY</span></b> </p>
+
+<p><span style='font-size:10.0pt'>EXCEPT AS EXPRESSLY SET FORTH IN THIS
+AGREEMENT, THE PROGRAM IS PROVIDED ON AN &quot;AS IS&quot; BASIS, WITHOUT
+WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,
+WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
+MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and distributing the
+Program and assumes all risks associated with its exercise of rights under this
+Agreement , including but not limited to the risks and costs of program errors,
+compliance with applicable laws, damage to or loss of data, programs or
+equipment, and unavailability or interruption of operations. </span></p>
+
+<p><b><span style='font-size:10.0pt'>6. DISCLAIMER OF LIABILITY</span></b> </p>
+
+<p><span style='font-size:10.0pt'>EXCEPT AS EXPRESSLY SET FORTH IN THIS
+AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF
+THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF
+THE POSSIBILITY OF SUCH DAMAGES.</span> </p>
+
+<p><b><span style='font-size:10.0pt'>7. GENERAL</span></b> </p>
+
+<p><span style='font-size:10.0pt'>If any provision of this Agreement is invalid
+or unenforceable under applicable law, it shall not affect the validity or
+enforceability of the remainder of the terms of this Agreement, and without
+further action by the parties hereto, such provision shall be reformed to the
+minimum extent necessary to make such provision valid and enforceable.</span> </p>
+
+<p><span style='font-size:10.0pt'>If Recipient institutes patent litigation
+against any entity (including a cross-claim or counterclaim in a lawsuit)
+alleging that the Program itself (excluding combinations of the Program with
+other software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the date
+such litigation is filed. </span></p>
+
+<p><span style='font-size:10.0pt'>All Recipient's rights under this Agreement
+shall terminate if it fails to comply with any of the material terms or
+conditions of this Agreement and does not cure such failure in a reasonable
+period of time after becoming aware of such noncompliance. If all Recipient's
+rights under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive. </span></p>
+
+<p><span style='font-size:10.0pt'>Everyone is permitted to copy and distribute
+copies of this Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The Agreement
+Steward reserves the right to publish new versions (including revisions) of
+this Agreement from time to time. No one other than the Agreement Steward has
+the right to modify this Agreement. The Eclipse Foundation is the initial
+Agreement Steward. The Eclipse Foundation may assign the responsibility to
+serve as the Agreement Steward to a suitable separate entity. Each new version
+of the Agreement will be given a distinguishing version number. The Program
+(including Contributions) may always be distributed subject to the version of
+the Agreement under which it was received. In addition, after a new version of
+the Agreement is published, Contributor may elect to distribute the Program
+(including its Contributions) under the new version. Except as expressly stated
+in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to
+the intellectual property of any Contributor under this Agreement, whether
+expressly, by implication, estoppel or otherwise. All rights in the Program not
+expressly granted under this Agreement are reserved.</span> </p>
+
+<p><span style='font-size:10.0pt'>This Agreement is governed by the laws of the
+State of New York and the intellectual property laws of the United States of
+America. No party to this Agreement will bring a legal action under this
+Agreement more than one year after the cause of action arose. Each party waives
+its rights to a jury trial in any resulting litigation.</span> </p>
+
+<p class=MsoNormal><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p>
+
+</div>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/monitor-x86/features/com.android.ide.eclipse.ddms.feature_25.2.3.3470232/META-INF/MANIFEST.MF b/lib/monitor-x86/features/com.android.ide.eclipse.ddms.feature_25.2.3.3470232/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..474951c
--- /dev/null
+++ b/lib/monitor-x86/features/com.android.ide.eclipse.ddms.feature_25.2.3.3470232/META-INF/MANIFEST.MF
@@ -0,0 +1,6 @@
+Manifest-Version: 1.0

+Built-By: android-build

+Build-Jdk: 1.6.0_45

+Created-By: Apache Maven

+Archiver-Version: Plexus Archiver

+

diff --git a/lib/monitor-x86/features/com.android.ide.eclipse.ddms.feature_25.2.3.3470232/feature.xml b/lib/monitor-x86/features/com.android.ide.eclipse.ddms.feature_25.2.3.3470232/feature.xml
new file mode 100644
index 0000000..e0e73a0
--- /dev/null
+++ b/lib/monitor-x86/features/com.android.ide.eclipse.ddms.feature_25.2.3.3470232/feature.xml
@@ -0,0 +1,253 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="com.android.ide.eclipse.ddms.feature"
+      label="Android DDMS"
+      version="25.2.3.3470232"
+      provider-name="The Android Open Source Project"
+      plugin="com.android.ide.eclipse.ddms">
+
+   <description>
+      Android Dalvik Debug Monitor Service
+   </description>
+
+   <copyright>
+      Copyright (C) 2007-2011 The Android Open Source Project
+   </copyright>
+
+   <license url="http://www.apache.org/licenses/LICENSE-2.0">
+      Note:  jcommon-1.0.12.jar is under the BSD license rather than the APL.  You can find a copy of the BSD License at http://www.opensource.org/licenses/bsd-license.php
+
+   jfreechart-1.0.9.jar and jfreechart-1.0.9-swt.jar are under the LGPL rather than the APL.  You can find a copy of the LGPL at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt.  You can get the source code for these two components at http://android.git.kernel.org/pub/jfreechart-1.0.9.zip
+
+
+      Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      &quot;License&quot; shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      &quot;Licensor&quot; shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      &quot;Legal Entity&quot; shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      &quot;control&quot; means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      &quot;Source&quot; form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      &quot;Object&quot; form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      &quot;Work&quot; shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      &quot;Derivative Works&quot; shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      &quot;Contribution&quot; shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, &quot;submitted&quot;
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as &quot;Not a Contribution.&quot;
+
+      &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;
+      replaced with your own identifying information. (Don&apos;t include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same &quot;printed page&quot; as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+   </license>
+
+   <url>
+      <update label="Android Update Site" url="https://dl-ssl.google.com/android/eclipse/"/>
+   </url>
+
+   <requires>
+      <import plugin="org.eclipse.ui" version="3.7.0" match="greaterOrEqual"/>
+      <import plugin="org.eclipse.core.runtime" version="3.7.0" match="greaterOrEqual"/>
+      <import plugin="org.eclipse.ui.console"/>
+      <import plugin="org.eclipse.core.resources"/>
+      <import plugin="org.eclipse.ui.ide"/>
+      <import plugin="org.eclipse.core.filesystem"/>
+   </requires>
+
+   <plugin
+         id="com.android.ide.eclipse.base"
+         download-size="4225"
+         install-size="4694"
+         version="25.2.3.3470232"
+         unpack="false"/>
+
+   <plugin
+         id="com.android.ide.eclipse.ddms"
+         download-size="2558"
+         install-size="2896"
+         version="25.2.3.3470232"
+         unpack="false"/>
+
+</feature>
diff --git a/lib/monitor-x86/features/com.android.ide.eclipse.gldebugger.feature_25.2.3.3470232/META-INF/MANIFEST.MF b/lib/monitor-x86/features/com.android.ide.eclipse.gldebugger.feature_25.2.3.3470232/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..474951c
--- /dev/null
+++ b/lib/monitor-x86/features/com.android.ide.eclipse.gldebugger.feature_25.2.3.3470232/META-INF/MANIFEST.MF
@@ -0,0 +1,6 @@
+Manifest-Version: 1.0

+Built-By: android-build

+Build-Jdk: 1.6.0_45

+Created-By: Apache Maven

+Archiver-Version: Plexus Archiver

+

diff --git a/lib/monitor-x86/features/com.android.ide.eclipse.gldebugger.feature_25.2.3.3470232/feature.xml b/lib/monitor-x86/features/com.android.ide.eclipse.gldebugger.feature_25.2.3.3470232/feature.xml
new file mode 100644
index 0000000..8c4ff3c
--- /dev/null
+++ b/lib/monitor-x86/features/com.android.ide.eclipse.gldebugger.feature_25.2.3.3470232/feature.xml
@@ -0,0 +1,232 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="com.android.ide.eclipse.gldebugger.feature"
+      label="Tracer for OpenGL ES"
+      version="25.2.3.3470232"
+      provider-name="The Android Open Source Project">
+
+   <description>
+      GLESv2 Debugger Client (Alpha status).
+   </description>
+
+   <copyright>
+      Copyright (C) 2011 The Android Open Source Project
+   </copyright>
+
+   <license url="http://www.apache.org/licenses/LICENSE-2.0">
+      Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      &quot;License&quot; shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      &quot;Licensor&quot; shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      &quot;Legal Entity&quot; shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      &quot;control&quot; means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      &quot;Source&quot; form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      &quot;Object&quot; form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      &quot;Work&quot; shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      &quot;Derivative Works&quot; shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      &quot;Contribution&quot; shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, &quot;submitted&quot;
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as &quot;Not a Contribution.&quot;
+
+      &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;
+      replaced with your own identifying information. (Don&apos;t include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same &quot;printed page&quot; as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+   </license>
+
+   <requires>
+      <import plugin="org.eclipse.ui"/>
+      <import plugin="org.eclipse.core.runtime"/>
+   </requires>
+
+   <plugin
+         id="com.android.ide.eclipse.gldebugger"
+         download-size="508"
+         install-size="1077"
+         version="25.2.3.3470232"
+         unpack="false"/>
+
+</feature>
diff --git a/lib/monitor-x86/features/com.android.ide.eclipse.hierarchyviewer.feature_25.2.3.3470232/META-INF/MANIFEST.MF b/lib/monitor-x86/features/com.android.ide.eclipse.hierarchyviewer.feature_25.2.3.3470232/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..474951c
--- /dev/null
+++ b/lib/monitor-x86/features/com.android.ide.eclipse.hierarchyviewer.feature_25.2.3.3470232/META-INF/MANIFEST.MF
@@ -0,0 +1,6 @@
+Manifest-Version: 1.0

+Built-By: android-build

+Build-Jdk: 1.6.0_45

+Created-By: Apache Maven

+Archiver-Version: Plexus Archiver

+

diff --git a/lib/monitor-x86/features/com.android.ide.eclipse.hierarchyviewer.feature_25.2.3.3470232/feature.xml b/lib/monitor-x86/features/com.android.ide.eclipse.hierarchyviewer.feature_25.2.3.3470232/feature.xml
new file mode 100644
index 0000000..e315def
--- /dev/null
+++ b/lib/monitor-x86/features/com.android.ide.eclipse.hierarchyviewer.feature_25.2.3.3470232/feature.xml
@@ -0,0 +1,239 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="com.android.ide.eclipse.hierarchyviewer.feature"
+      label="Android Hierarchy Viewer"
+      version="25.2.3.3470232"
+      provider-name="The Android Open Source Project"
+      plugin="com.android.ide.eclipse.hierarchyviewer">
+
+   <description>
+      Android Hierarchy Viewer.
+   </description>
+
+   <copyright>
+      Copyright (C) 2010-2011 The Android Open Source Project
+   </copyright>
+
+   <license url="http://www.apache.org/licenses/LICENSE-2.0.txt">
+      Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      &quot;License&quot; shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      &quot;Licensor&quot; shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      &quot;Legal Entity&quot; shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      &quot;control&quot; means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      &quot;Source&quot; form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      &quot;Object&quot; form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      &quot;Work&quot; shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      &quot;Derivative Works&quot; shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      &quot;Contribution&quot; shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, &quot;submitted&quot;
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as &quot;Not a Contribution.&quot;
+
+      &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;
+      replaced with your own identifying information. (Don&apos;t include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same &quot;printed page&quot; as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+   </license>
+
+   <url>
+      <update label="Android Update Site" url="https://dl-ssl.google.com/android/eclipse/"/>
+   </url>
+
+   <requires>
+      <import plugin="org.eclipse.ui" version="3.7.0" match="greaterOrEqual"/>
+      <import plugin="org.eclipse.core.runtime" version="3.7.0" match="greaterOrEqual"/>
+      <import plugin="org.eclipse.ui.console"/>
+      <import plugin="com.android.ide.eclipse.ddms" match="perfect"/>
+   </requires>
+
+   <plugin
+         id="com.android.ide.eclipse.hierarchyviewer"
+         download-size="399"
+         install-size="478"
+         version="25.2.3.3470232"
+         unpack="false"/>
+
+</feature>
diff --git a/lib/monitor-x86/features/com.android.ide.eclipse.monitor.feature_25.2.3.3470232/META-INF/MANIFEST.MF b/lib/monitor-x86/features/com.android.ide.eclipse.monitor.feature_25.2.3.3470232/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..474951c
--- /dev/null
+++ b/lib/monitor-x86/features/com.android.ide.eclipse.monitor.feature_25.2.3.3470232/META-INF/MANIFEST.MF
@@ -0,0 +1,6 @@
+Manifest-Version: 1.0

+Built-By: android-build

+Build-Jdk: 1.6.0_45

+Created-By: Apache Maven

+Archiver-Version: Plexus Archiver

+

diff --git a/lib/monitor-x86/features/com.android.ide.eclipse.monitor.feature_25.2.3.3470232/feature.xml b/lib/monitor-x86/features/com.android.ide.eclipse.monitor.feature_25.2.3.3470232/feature.xml
new file mode 100644
index 0000000..9610078
--- /dev/null
+++ b/lib/monitor-x86/features/com.android.ide.eclipse.monitor.feature_25.2.3.3470232/feature.xml
@@ -0,0 +1,233 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="com.android.ide.eclipse.monitor.feature"
+      label="Android Monitor"
+      version="25.2.3.3470232"
+      provider-name="The Android Open Source Project"
+      plugin="com.android.ide.eclipse.monitor">
+
+   <description>
+      Android Debug Monitor
+   </description>
+
+   <copyright>
+      Copyright (C) 2007-2014 The Android Open Source Project
+   </copyright>
+
+   <license url="http://www.apache.org/licenses/LICENSE-2.0">
+      Note:  jcommon-1.0.12.jar is under the BSD license rather than the APL.  You can find a copy of the BSD License at http://www.opensource.org/licenses/bsd-license.php
+
+   jfreechart-1.0.9.jar and jfreechart-1.0.9-swt.jar are under the LGPL rather than the APL.  You can find a copy of the LGPL at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt.  You can get the source code for these two components at http://android.git.kernel.org/pub/jfreechart-1.0.9.zip
+
+
+      Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      &quot;License&quot; shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      &quot;Licensor&quot; shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      &quot;Legal Entity&quot; shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      &quot;control&quot; means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      &quot;Source&quot; form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      &quot;Object&quot; form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      &quot;Work&quot; shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      &quot;Derivative Works&quot; shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      &quot;Contribution&quot; shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, &quot;submitted&quot;
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as &quot;Not a Contribution.&quot;
+
+      &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;
+      replaced with your own identifying information. (Don&apos;t include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same &quot;printed page&quot; as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+   </license>
+
+   <plugin
+         id="com.android.ide.eclipse.monitor"
+         download-size="608"
+         install-size="757"
+         version="25.2.3.3470232"
+         unpack="false"/>
+
+</feature>
diff --git a/lib/monitor-x86/features/com.android.ide.eclipse.traceview.feature_25.2.3.3470232/META-INF/MANIFEST.MF b/lib/monitor-x86/features/com.android.ide.eclipse.traceview.feature_25.2.3.3470232/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..474951c
--- /dev/null
+++ b/lib/monitor-x86/features/com.android.ide.eclipse.traceview.feature_25.2.3.3470232/META-INF/MANIFEST.MF
@@ -0,0 +1,6 @@
+Manifest-Version: 1.0

+Built-By: android-build

+Build-Jdk: 1.6.0_45

+Created-By: Apache Maven

+Archiver-Version: Plexus Archiver

+

diff --git a/lib/monitor-x86/features/com.android.ide.eclipse.traceview.feature_25.2.3.3470232/feature.xml b/lib/monitor-x86/features/com.android.ide.eclipse.traceview.feature_25.2.3.3470232/feature.xml
new file mode 100644
index 0000000..10beb94
--- /dev/null
+++ b/lib/monitor-x86/features/com.android.ide.eclipse.traceview.feature_25.2.3.3470232/feature.xml
@@ -0,0 +1,239 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="com.android.ide.eclipse.traceview.feature"
+      label="Android Traceview"
+      version="25.2.3.3470232"
+      provider-name="The Android Open Source Project"
+      plugin="com.android.ide.eclipse.traceview">
+
+   <description>
+      Android Traceview
+   </description>
+
+   <copyright>
+      Copyright (C) 2011 The Android Open Source Project
+   </copyright>
+
+   <license url="http://www.apache.org/licenses/LICENSE-2.0">
+      Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      &quot;License&quot; shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      &quot;Licensor&quot; shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      &quot;Legal Entity&quot; shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      &quot;control&quot; means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      &quot;Source&quot; form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      &quot;Object&quot; form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      &quot;Work&quot; shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      &quot;Derivative Works&quot; shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      &quot;Contribution&quot; shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, &quot;submitted&quot;
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as &quot;Not a Contribution.&quot;
+
+      &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;
+      replaced with your own identifying information. (Don&apos;t include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same &quot;printed page&quot; as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+   </license>
+
+   <url>
+      <update label="Android Update Site" url="https://dl-ssl.google.com/android/eclipse/"/>
+   </url>
+
+   <requires>
+      <import plugin="org.eclipse.core.runtime" version="3.7.0" match="greaterOrEqual"/>
+      <import plugin="com.android.ide.eclipse.ddms" version="10.0.0" match="greaterOrEqual"/>
+      <import plugin="org.eclipse.core.filesystem"/>
+      <import plugin="org.eclipse.core.resources"/>
+   </requires>
+
+   <plugin
+         id="com.android.ide.eclipse.traceview"
+         download-size="137"
+         install-size="154"
+         version="25.2.3.3470232"
+         unpack="false"/>
+
+</feature>
diff --git a/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/ECLIPSE_.RSA b/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..e5ed7f4
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/ECLIPSE_.SF b/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..0c11cbf
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/ECLIPSE_.SF
@@ -0,0 +1,23 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: aj3K+VfVL+O/zAucK68OY7bP01Y=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: 4gIfTP5y3EzwI5ecyebQLugBMgo=

+

+Name: epl-v10.html

+SHA1-Digest: /iY8aEvT0IMpNnSjB0FpTUhvUGc=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: RyXo3knk5T635eCpQEPXyFBrCyA=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=

+

+Name: license.html

+SHA1-Digest: Rp9AnRyeUIxNWe10fjaMDkQB8rU=

+

+Name: feature.properties

+SHA1-Digest: 9JE/KpVMKgJVCtwr9TedfPzDZx0=

+

+Name: feature.xml

+SHA1-Digest: WmrjBlVvFXQFWshXEEhLD51nkTA=

+

diff --git a/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/MANIFEST.MF b/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..418b23e
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/MANIFEST.MF
@@ -0,0 +1,21 @@
+Manifest-Version: 1.0

+Created-By: 1.6.0 (IBM Corporation)

+

+Name: epl-v10.html

+SHA1-Digest: jYDaDJLBJpthCwPMgGFVYASJjIU=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: xstAqMgs/a5AsQXQZSdDQ79veOA=

+

+Name: license.html

+SHA1-Digest: /vLZjlHkZSXMSfPrWwNqOUDqqbM=

+

+Name: feature.properties

+SHA1-Digest: NXFVr95HoF5vEzy9CBTLtpJiBJE=

+

+Name: feature.xml

+SHA1-Digest: 9NC7t93zlxasuZw/nuWdD1fpCd0=

+

diff --git a/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/eclipse.inf b/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/eclipse_update_120.jpg b/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/eclipse_update_120.jpg
new file mode 100644
index 0000000..bfdf708
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/eclipse_update_120.jpg
Binary files differ
diff --git a/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/epl-v10.html b/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/epl-v10.html
new file mode 100644
index 0000000..fd39122
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/epl-v10.html
@@ -0,0 +1,261 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Public License - Version 1.0</title>
+<style type="text/css">
+  body {
+    size: 8.5in 11.0in;
+    margin: 0.25in 0.5in 0.25in 0.5in;
+    tab-interval: 0.5in;
+    }
+  p {  	
+    margin-left: auto;
+    margin-top:  0.5em;
+    margin-bottom: 0.5em;
+    }
+  p.list {
+  	margin-left: 0.5in;
+    margin-top:  0.05em;
+    margin-bottom: 0.05em;
+    }
+  </style>
+
+</head>
+
+<body lang="EN-US">
+
+<h2>Eclipse Public License - v 1.0</h2>
+
+<p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE (&quot;AGREEMENT&quot;). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.</p>
+
+<p><b>1. DEFINITIONS</b></p>
+
+<p>&quot;Contribution&quot; means:</p>
+
+<p class="list">a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and</p>
+<p class="list">b) in the case of each subsequent Contributor:</p>
+<p class="list">i) changes to the Program, and</p>
+<p class="list">ii) additions to the Program;</p>
+<p class="list">where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.</p>
+
+<p>&quot;Contributor&quot; means any person or entity that distributes
+the Program.</p>
+
+<p>&quot;Licensed Patents&quot; mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.</p>
+
+<p>&quot;Program&quot; means the Contributions distributed in accordance
+with this Agreement.</p>
+
+<p>&quot;Recipient&quot; means anyone who receives the Program under
+this Agreement, including all Contributors.</p>
+
+<p><b>2. GRANT OF RIGHTS</b></p>
+
+<p class="list">a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.</p>
+
+<p class="list">b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.</p>
+
+<p class="list">c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.</p>
+
+<p class="list">d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.</p>
+
+<p><b>3. REQUIREMENTS</b></p>
+
+<p>A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:</p>
+
+<p class="list">a) it complies with the terms and conditions of this
+Agreement; and</p>
+
+<p class="list">b) its license agreement:</p>
+
+<p class="list">i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;</p>
+
+<p class="list">ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;</p>
+
+<p class="list">iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and</p>
+
+<p class="list">iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.</p>
+
+<p>When the Program is made available in source code form:</p>
+
+<p class="list">a) it must be made available under this Agreement; and</p>
+
+<p class="list">b) a copy of this Agreement must be included with each
+copy of the Program.</p>
+
+<p>Contributors may not remove or alter any copyright notices contained
+within the Program.</p>
+
+<p>Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.</p>
+
+<p><b>4. COMMERCIAL DISTRIBUTION</b></p>
+
+<p>Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+(&quot;Commercial Contributor&quot;) hereby agrees to defend and
+indemnify every other Contributor (&quot;Indemnified Contributor&quot;)
+against any losses, damages and costs (collectively &quot;Losses&quot;)
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.</p>
+
+<p>For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.</p>
+
+<p><b>5. NO WARRANTY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.</p>
+
+<p><b>6. DISCLAIMER OF LIABILITY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), 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 OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.</p>
+
+<p><b>7. GENERAL</b></p>
+
+<p>If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.</p>
+
+<p>If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.</p>
+
+<p>All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.</p>
+
+<p>Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.</p>
+
+<p>This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.</p>
+
+</body>
+
+</html>
diff --git a/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/feature.properties b/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/feature.properties
new file mode 100644
index 0000000..57a7531
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/feature.properties
@@ -0,0 +1,197 @@
+###############################################################################
+# Copyright (c) 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Eclipse e4 Rich Client Platform
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org
+
+# "description" property - description of the feature
+description=The bundles required by org.eclipse.rcp version 4.0
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2010 IBM Corporation and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+    IBM Corporation - initial API and implementation\n
+################ end of copyright property ####################################
+
+
+########### end of license property #########################################################################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+       - Content may be structured and packaged into modules to facilitate delivering,\n\
+         extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+         plug-in fragments ("Fragments"), and features ("Features").\n\
+       - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+         in a directory named "plugins".\n\
+       - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+         Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+         Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+         numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+       - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+         named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+       - The top-level (root) directory\n\
+       - Plug-in and Fragment directories\n\
+       - Inside Plug-ins and Fragments packaged as JARs\n\
+       - Sub-directories of the directory named "src" of certain Plug-ins\n\
+       - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+       - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+       - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+       - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+       - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+       - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+       - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+       1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+          the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+          extending or updating the functionality of an Eclipse-based product.\n\
+       2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+          Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+       3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+          govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+          Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+          with the Specification. Such Installable Software Agreement must inform the user of the\n\
+          terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+          the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+          indication of agreement by the user, the provisioning Technology will complete installation\n\
+          of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/feature.xml b/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/feature.xml
new file mode 100644
index 0000000..00cf3bf
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/feature.xml
@@ -0,0 +1,764 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="org.eclipse.e4.rcp"
+      label="%featureName"
+      version="1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS"
+      provider-name="%providerName"
+      image="eclipse_update_120.jpg"
+      
+      >
+
+   <description>
+      %description
+   </description>
+
+   <copyright>
+      %copyright
+   </copyright>
+
+   <license url="%licenseURL">
+      %license
+   </license>
+
+   <requires>
+      <import feature="org.eclipse.emf.common" version="2.7.0" match="compatible"/>
+      <import feature="org.eclipse.emf.ecore" version="2.7.0" match="compatible"/>
+   </requires>
+
+   <plugin
+         id="org.eclipse.e4.core.services"
+         download-size="0"
+         install-size="0"
+         version="1.0.0.v20120521-2346"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.workbench.swt"
+         download-size="0"
+         install-size="0"
+         version="0.10.3.v20130124-133900"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.core.commands"
+         download-size="0"
+         install-size="0"
+         version="0.10.1.v20120523-1955"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.bindings"
+         download-size="0"
+         install-size="0"
+         version="0.10.3.v20130123-162658"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.model.workbench"
+         download-size="0"
+         install-size="0"
+         version="0.10.1.v20120523-1955"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.services"
+         download-size="0"
+         install-size="0"
+         version="0.10.3.v20130123-162658"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.workbench.renderers.swt"
+         download-size="0"
+         install-size="0"
+         version="0.10.3.v20130124-170312"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.workbench"
+         download-size="0"
+         install-size="0"
+         version="0.11.0.v20130125-100758"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.css.core"
+         download-size="0"
+         install-size="0"
+         version="0.10.2.v20120912-132817"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.css.swt"
+         download-size="0"
+         install-size="0"
+         version="0.10.3.v20130123-162658"
+         unpack="false"/>
+
+   <plugin
+         id="org.apache.batik.css"
+         download-size="0"
+         install-size="0"
+         version="1.6.0.v201011041432"
+         unpack="false"/>
+
+   <plugin
+         id="org.w3c.css.sac"
+         download-size="0"
+         install-size="0"
+         version="1.3.1.v200903091627"
+         unpack="false"/>
+
+   <plugin
+         id="org.apache.batik.util"
+         download-size="0"
+         install-size="0"
+         version="1.6.0.v201011041432"
+         unpack="false"/>
+
+   <plugin
+         id="org.w3c.dom.svg"
+         download-size="0"
+         install-size="0"
+         version="1.1.0.v201011041433"
+         unpack="false"/>
+
+   <plugin
+         id="org.w3c.dom.smil"
+         download-size="0"
+         install-size="0"
+         version="1.0.0.v200806040011"
+         unpack="false"/>
+
+   <plugin
+         id="javax.inject"
+         download-size="0"
+         install-size="0"
+         version="1.0.0.v20091030"
+         unpack="false"/>
+
+   <plugin
+         id="javax.annotation"
+         download-size="0"
+         install-size="0"
+         version="1.0.0.v20101115-0725"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.core.di"
+         download-size="0"
+         install-size="0"
+         version="1.2.0.v20121024-173149"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.core.contexts"
+         download-size="0"
+         install-size="0"
+         version="1.2.0.v20121221-192508"
+         unpack="false"/>
+
+   <plugin
+         id="org.apache.batik.util.gui"
+         download-size="0"
+         install-size="0"
+         version="1.6.0.v201011041432"
+         unpack="false"/>
+
+   <plugin
+         id="javax.xml"
+         download-size="0"
+         install-size="0"
+         version="1.3.4.v201005080400"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.core.di.extensions"
+         download-size="0"
+         install-size="0"
+         version="0.11.100.v20121024-182359"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.css.swt.theme"
+         download-size="0"
+         install-size="0"
+         version="0.9.4.v20130123-162658"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.di"
+         download-size="0"
+         install-size="0"
+         version="0.10.1.v20120523-1955"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.widgets"
+         download-size="0"
+         install-size="0"
+         version="0.12.3.v20130123-162658"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.workbench.renderers.swt.cocoa"
+         os="macosx"
+         ws="cocoa"
+         download-size="0"
+         install-size="0"
+         version="0.11.2.v20130123-162658"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.common"
+         download-size="0"
+         install-size="0"
+         version="3.6.100.v20120522-1841"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.ds"
+         download-size="0"
+         install-size="0"
+         version="1.4.1.v20120926-201320"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.event"
+         download-size="0"
+         install-size="0"
+         version="1.2.200.v20120522-2049"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.commands"
+         download-size="0"
+         install-size="0"
+         version="3.6.2.v20130123-162658"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.contenttype"
+         download-size="0"
+         install-size="0"
+         version="3.4.200.v20120523-2004"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.databinding"
+         download-size="0"
+         install-size="0"
+         version="1.4.1.v20120912-132807"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.databinding.beans"
+         download-size="0"
+         install-size="0"
+         version="1.2.200.v20120523-1955"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.databinding.observable"
+         download-size="0"
+         install-size="0"
+         version="1.4.1.v20120521-2329"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.databinding.property"
+         download-size="0"
+         install-size="0"
+         version="1.4.100.v20120523-1955"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.expressions"
+         download-size="0"
+         install-size="0"
+         version="3.4.401.v20120912-155018"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.jobs"
+         download-size="0"
+         install-size="0"
+         version="3.5.300.v20120912-155018"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.runtime"
+         download-size="0"
+         install-size="0"
+         version="3.8.0.v20120912-155025"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.app"
+         download-size="0"
+         install-size="0"
+         version="1.3.100.v20120522-1841"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher"
+         download-size="0"
+         install-size="0"
+         version="1.3.0.v20120522-1813"
+         unpack="false"/>
+
+   <plugin
+         id="com.ibm.icu"
+         download-size="0"
+         install-size="0"
+         version="4.4.2.v20110823"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.preferences"
+         download-size="0"
+         install-size="0"
+         version="3.5.1.v20121031-182809"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.registry"
+         download-size="0"
+         install-size="0"
+         version="3.5.200.v20120522-1841"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.simpleconfigurator"
+         download-size="0"
+         install-size="0"
+         version="1.0.301.v20120914-163612"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.osgi"
+         download-size="0"
+         install-size="0"
+         version="3.8.2.v20130124-134944"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.osgi.services"
+         download-size="0"
+         install-size="0"
+         version="3.3.100.v20120522-1822"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher"
+         download-size="0"
+         install-size="0"
+         version="1.3.0.v20120522-1813"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.gtk.solaris.sparc"
+         os="solaris"
+         ws="gtk"
+         arch="sparc"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120913-144808"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.gtk.solaris.x86"
+         os="solaris"
+         ws="gtk"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120913-144808"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.cocoa.macosx"
+         os="macosx"
+         ws="cocoa"
+         arch="ppc"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120522-1813"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.cocoa.macosx"
+         os="macosx"
+         ws="cocoa"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120522-1813"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.cocoa.macosx.x86_64"
+         os="macosx"
+         ws="cocoa"
+         arch="x86_64"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120913-144807"
+         fragment="true"/>
+
+
+   <plugin
+         id="org.eclipse.equinox.launcher.gtk.linux.ppc"
+         os="linux"
+         ws="gtk"
+         arch="ppc"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120913-144808"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.gtk.linux.ppc64"
+         os="linux"
+         ws="gtk"
+         arch="ppc64"
+         download-size="0"
+         install-size="0"
+         version="1.0.200.v20120913-144808"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.gtk.linux.x86"
+         os="linux"
+         ws="gtk"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120913-144807"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.gtk.linux.s390x"
+         os="linux"
+         ws="gtk"
+         arch="s390x"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120913-144808"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.gtk.linux.s390"
+         os="linux"
+         ws="gtk"
+         arch="s390"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120913-144808"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.gtk.linux.x86_64"
+         os="linux"
+         ws="gtk"
+         arch="x86_64"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120913-144807"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.gtk.aix.ppc"
+         os="aix"
+         ws="gtk"
+         arch="ppc"
+         download-size="0"
+         install-size="0"
+         version="1.1.100.v20120913-144808"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.gtk.aix.ppc64"
+         os="aix"
+         ws="gtk"
+         arch="ppc64"
+         download-size="0"
+         install-size="0"
+         version="1.1.100.v20120913-144808"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.win32.win32.x86"
+         os="win32"
+         ws="win32"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120913-144807"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.win32.win32.x86_64"
+         os="win32"
+         ws="win32"
+         arch="x86_64"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120913-144807"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.swt"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.win32.win32.x86"
+         os="win32"
+         ws="win32"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.win32.win32.x86_64"
+         os="win32"
+         ws="win32"
+         arch="x86_64"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.gtk.linux.x86"
+         os="linux"
+         ws="gtk"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.gtk.linux.s390x"
+         os="linux"
+         ws="gtk"
+         arch="s390x"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.gtk.linux.s390"
+         os="linux"
+         ws="gtk"
+         arch="s390"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.gtk.solaris.sparc"
+         os="solaris"
+         ws="gtk"
+         arch="sparc"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.gtk.solaris.x86"
+         os="solaris"
+         ws="gtk"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.gtk.linux.ppc"
+         os="linux"
+         ws="gtk"
+         arch="ppc"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.gtk.linux.ppc64"
+         os="linux"
+         ws="gtk"
+         arch="ppc64"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.gtk.linux.x86_64"
+         os="linux"
+         ws="gtk"
+         arch="x86_64"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.cocoa.macosx"
+         os="macosx"
+         ws="cocoa"
+         arch="ppc"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.cocoa.macosx"
+         os="macosx"
+         ws="cocoa"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.cocoa.macosx.x86_64"
+         os="macosx"
+         ws="cocoa"
+         arch="x86_64"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.gtk.aix.ppc"
+         os="aix"
+         ws="gtk"
+         arch="ppc"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.gtk.aix.ppc64"
+         os="aix"
+         ws="gtk"
+         arch="ppc64"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.gtk.hpux.ia64_32"
+         os="hpux"
+         ws="gtk"
+         arch="ia64_32"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.util"
+         download-size="0"
+         install-size="0"
+         version="1.0.400.v20120917-192807"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.jface"
+         download-size="0"
+         install-size="0"
+         version="3.8.102.v20130123-162658"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.jface.databinding"
+         download-size="0"
+         install-size="0"
+         version="1.6.0.v20120912-132807"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.workbench3"
+         download-size="0"
+         install-size="0"
+         version="0.12.0.v20120521-2329"
+         unpack="false"/>
+
+   <plugin
+         id="org.apache.felix.gogo.command"
+         download-size="0"
+         install-size="0"
+         version="0.8.0.v201108120515"
+         unpack="false"/>
+
+   <plugin
+         id="org.apache.felix.gogo.runtime"
+         download-size="0"
+         install-size="0"
+         version="0.8.0.v201108120515"
+         unpack="false"/>
+
+   <plugin
+         id="org.apache.felix.gogo.shell"
+         download-size="0"
+         install-size="0"
+         version="0.8.0.v201110170705"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.console"
+         download-size="0"
+         install-size="0"
+         version="1.0.0.v20120522-1841"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.workbench.addons.swt"
+         download-size="0"
+         install-size="0"
+         version="0.10.3.v20130124-185622"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.bidi"
+         download-size="0"
+         install-size="0"
+         version="0.9.100.v20121107-021609"
+         unpack="false"/>
+
+</feature>
diff --git a/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/license.html b/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/license.html
@@ -0,0 +1,108 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Foundation Software User Agreement</title>
+</head>
+
+<body lang="EN-US">
+<h2>Eclipse Foundation Software User Agreement</h2>
+<p>February 1, 2011</p>
+
+<h3>Usage Of Content</h3>
+
+<p>THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+   (COLLECTIVELY &quot;CONTENT&quot;).  USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+   CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+   OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+   NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+   CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.</p>
+
+<h3>Applicable Licenses</h3>
+
+<p>Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+   (&quot;EPL&quot;).  A copy of the EPL is provided with this Content and is also available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+   For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+   repository (&quot;Repository&quot;) in software modules (&quot;Modules&quot;) and made available as downloadable archives (&quot;Downloads&quot;).</p>
+
+<ul>
+       <li>Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content.  Typical modules may include plug-ins (&quot;Plug-ins&quot;), plug-in fragments (&quot;Fragments&quot;), and features (&quot;Features&quot;).</li>
+       <li>Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java&trade; ARchive) in a directory named &quot;plugins&quot;.</li>
+       <li>A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.  Each Feature may be packaged as a sub-directory in a directory named &quot;features&quot;.  Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of the Plug-ins
+      and/or Fragments associated with that Feature.</li>
+       <li>Features may also include other Features (&quot;Included Features&quot;). Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of Included Features.</li>
+</ul>
+
+<p>The terms and conditions governing Plug-ins and Fragments should be contained in files named &quot;about.html&quot; (&quot;Abouts&quot;). The terms and conditions governing Features and
+Included Features should be contained in files named &quot;license.html&quot; (&quot;Feature Licenses&quot;).  Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:</p>
+
+<ul>
+       <li>The top-level (root) directory</li>
+       <li>Plug-in and Fragment directories</li>
+       <li>Inside Plug-ins and Fragments packaged as JARs</li>
+       <li>Sub-directories of the directory named &quot;src&quot; of certain Plug-ins</li>
+       <li>Feature directories</li>
+</ul>
+
+<p>Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (&quot;Feature Update License&quot;) during the
+installation process.  If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them.  Feature Update Licenses may be found in the &quot;license&quot; property of files named &quot;feature.properties&quot; found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.</p>
+
+<p>THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.  SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):</p>
+
+<ul>
+       <li>Eclipse Distribution License Version 1.0 (available at <a href="http://www.eclipse.org/licenses/edl-v10.html">http://www.eclipse.org/licenses/edl-v1.0.html</a>)</li>
+       <li>Common Public License Version 1.0 (available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>)</li>
+       <li>Apache Software License 1.1 (available at <a href="http://www.apache.org/licenses/LICENSE">http://www.apache.org/licenses/LICENSE</a>)</li>
+       <li>Apache Software License 2.0 (available at <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>)</li>
+       <li>Metro Link Public License 1.00 (available at <a href="http://www.opengroup.org/openmotif/supporters/metrolink/license.html">http://www.opengroup.org/openmotif/supporters/metrolink/license.html</a>)</li>
+       <li>Mozilla Public License Version 1.1 (available at <a href="http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html</a>)</li>
+</ul>
+
+<p>IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT.  If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.</p>
+
+
+<h3>Use of Provisioning Technology</h3>
+
+<p>The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+   Update Manager (&quot;Provisioning Technology&quot;) for the purpose of allowing users to install software, documentation, information and/or
+   other materials (collectively &quot;Installable Software&quot;). This capability is provided with the intent of allowing such users to
+   install, extend and update Eclipse-based products. Information about packaging Installable Software is available at <a
+       href="http://eclipse.org/equinox/p2/repository_packaging.html">http://eclipse.org/equinox/p2/repository_packaging.html</a>
+   (&quot;Specification&quot;).</p>
+
+<p>You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+   applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+   in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+   Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:</p>
+
+<ol>
+       <li>A series of actions may occur (&quot;Provisioning Process&quot;) in which a user may execute the Provisioning Technology
+       on a machine (&quot;Target Machine&quot;) with the intent of installing, extending or updating the functionality of an Eclipse-based
+       product.</li>
+       <li>During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+       accessed and copied to the Target Machine.</li>
+       <li>Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+       Software (&quot;Installable Software Agreement&quot;) and such Installable Software Agreement shall be accessed from the Target
+       Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+       the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+       indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.</li>
+</ol>
+
+<h3>Cryptography</h3>
+
+<p>Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+   another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+   possession, or use, and re-export of encryption software, to see if this is permitted.</p>
+
+<p><small>Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.</small></p>
+</body>
+</html>
diff --git a/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/META-INF/ECLIPSE_.RSA b/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..786455f
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/META-INF/ECLIPSE_.SF b/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..78f3527
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/META-INF/ECLIPSE_.SF
@@ -0,0 +1,20 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: AZiZSX9cdptNfbwWXnaFsp1mIqo=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: 4gIfTP5y3EzwI5ecyebQLugBMgo=

+

+Name: epl-v10.html

+SHA1-Digest: 8gfeI4bHtcOQXC3dYfggxvsAyWc=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: QdryQvJlVywlE0MGLuwYCkmkyWk=

+

+Name: license.html

+SHA1-Digest: Rp9AnRyeUIxNWe10fjaMDkQB8rU=

+

+Name: feature.properties

+SHA1-Digest: PSUNP/Qfu2JvzTCSu/16RbvtrUA=

+

+Name: feature.xml

+SHA1-Digest: sj/JRirJsawqyWf0JB+BBMQGf1k=

+

diff --git a/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/META-INF/MANIFEST.MF b/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..af801fd
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/META-INF/MANIFEST.MF
@@ -0,0 +1,18 @@
+Manifest-Version: 1.0

+Created-By: 1.6.0 (IBM Corporation)

+

+Name: epl-v10.html

+SHA1-Digest: hNPRR3joO5UV8+u/L0qjKV/Y2EE=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: 09gN05tobgS/MdtqyTNQhOhB73M=

+

+Name: license.html

+SHA1-Digest: /vLZjlHkZSXMSfPrWwNqOUDqqbM=

+

+Name: feature.properties

+SHA1-Digest: aOYH6X1kiS1J7dIY4BTS8xFter4=

+

+Name: feature.xml

+SHA1-Digest: WNbY2/oi1XymJ3vzJBgqLTJc2OY=

+

diff --git a/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/META-INF/eclipse.inf b/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/META-INF/eclipse.inf
new file mode 100644
index 0000000..92ffed2
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/META-INF/eclipse.inf
@@ -0,0 +1,2 @@
+#Processed using Jarprocessor
+pack200.conditioned = true
diff --git a/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/epl-v10.html b/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/epl-v10.html
new file mode 100644
index 0000000..cb1073a
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/epl-v10.html
@@ -0,0 +1,304 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
+<html xmlns:o="urn:schemas-microsoft-com:office:office"
+xmlns:w="urn:schemas-microsoft-com:office:word"
+xmlns="http://www.w3.org/TR/REC-html40">
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
+<link rel=File-List
+href="./Eclipse%20EPL%202003_11_10%20Final_files/filelist.xml">
+<title>Eclipse Public License - Version 1.0</title>
+<style>
+<!--
+ /* Font Definitions */
+@font-face
+	{
+	panose-1:2 11 6 4 3 5 4 4 2 4;
+	mso-font-charset:0;
+	mso-font-pitch:variable;
+	mso-font-signature:553679495 -2147483648 8 0 66047 0;}
+ /* Style Definitions */
+p.MsoNormal, li.MsoNormal, div.MsoNormal
+	{mso-style-parent:"";
+	margin:0in;
+	margin-bottom:.0001pt;
+	mso-pagination:widow-orphan;
+	font-size:12.0pt;
+	}
+p
+	{margin-right:0in;
+	mso-margin-top-alt:auto;
+	mso-margin-bottom-alt:auto;
+	margin-left:0in;
+	mso-pagination:widow-orphan;
+	font-size:12.0pt;
+	}
+p.BalloonText, li.BalloonText, div.BalloonText
+	{mso-style-name:"Balloon Text";
+	margin:0in;
+	margin-bottom:.0001pt;
+	mso-pagination:widow-orphan;
+	font-size:8.0pt;
+	
+	}
+@page Section1
+	{size:8.5in 11.0in;
+	margin:1.0in 1.25in 1.0in 1.25in;
+	mso-header-margin:.5in;
+	mso-footer-margin:.5in;
+	mso-paper-source:0;}
+div.Section1
+	{page:Section1;}
+-->
+</style>
+</head>
+
+<body lang="EN-US" style='tab-interval:.5in'>
+
+<div class=Section1>
+
+<p align=center style='text-align:center'><b>Eclipse Public License - v 1.0</b>
+</p>
+
+<p><span style='font-size:10.0pt'>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER
+THE TERMS OF THIS ECLIPSE PUBLIC LICENSE (&quot;AGREEMENT&quot;). ANY USE,
+REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE
+OF THIS AGREEMENT.</span> </p>
+
+<p><b><span style='font-size:10.0pt'>1. DEFINITIONS</span></b> </p>
+
+<p><span style='font-size:10.0pt'>&quot;Contribution&quot; means:</span> </p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>a)
+in the case of the initial Contributor, the initial code and documentation
+distributed under this Agreement, and<br clear=left>
+b) in the case of each subsequent Contributor:</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>i)
+changes to the Program, and</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>ii)
+additions to the Program;</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>where
+such changes and/or additions to the Program originate from and are distributed
+by that particular Contributor. A Contribution 'originates' from a Contributor
+if it was added to the Program by such Contributor itself or anyone acting on
+such Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in conjunction
+with the Program under their own license agreement, and (ii) are not derivative
+works of the Program. </span></p>
+
+<p><span style='font-size:10.0pt'>&quot;Contributor&quot; means any person or
+entity that distributes the Program.</span> </p>
+
+<p><span style='font-size:10.0pt'>&quot;Licensed Patents &quot; mean patent
+claims licensable by a Contributor which are necessarily infringed by the use
+or sale of its Contribution alone or when combined with the Program. </span></p>
+
+<p><span style='font-size:10.0pt'>&quot;Program&quot; means the Contributions
+distributed in accordance with this Agreement.</span> </p>
+
+<p><span style='font-size:10.0pt'>&quot;Recipient&quot; means anyone who
+receives the Program under this Agreement, including all Contributors.</span> </p>
+
+<p><b><span style='font-size:10.0pt'>2. GRANT OF RIGHTS</span></b> </p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>a)
+Subject to the terms of this Agreement, each Contributor hereby grants Recipient
+a non-exclusive, worldwide, royalty-free copyright license to<span
+style='color:red'> </span>reproduce, prepare derivative works of, publicly
+display, publicly perform, distribute and sublicense the Contribution of such
+Contributor, if any, and such derivative works, in source code and object code
+form.</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>b)
+Subject to the terms of this Agreement, each Contributor hereby grants
+Recipient a non-exclusive, worldwide,<span style='color:green'> </span>royalty-free
+patent license under Licensed Patents to make, use, sell, offer to sell, import
+and otherwise transfer the Contribution of such Contributor, if any, in source
+code and object code form. This patent license shall apply to the combination
+of the Contribution and the Program if, at the time the Contribution is added
+by the Contributor, such addition of the Contribution causes such combination
+to be covered by the Licensed Patents. The patent license shall not apply to
+any other combinations which include the Contribution. No hardware per se is
+licensed hereunder. </span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>c)
+Recipient understands that although each Contributor grants the licenses to its
+Contributions set forth herein, no assurances are provided by any Contributor
+that the Program does not infringe the patent or other intellectual property
+rights of any other entity. Each Contributor disclaims any liability to Recipient
+for claims brought by any other entity based on infringement of intellectual
+property rights or otherwise. As a condition to exercising the rights and
+licenses granted hereunder, each Recipient hereby assumes sole responsibility
+to secure any other intellectual property rights needed, if any. For example,
+if a third party patent license is required to allow Recipient to distribute
+the Program, it is Recipient's responsibility to acquire that license before
+distributing the Program.</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>d)
+Each Contributor represents that to its knowledge it has sufficient copyright
+rights in its Contribution, if any, to grant the copyright license set forth in
+this Agreement. </span></p>
+
+<p><b><span style='font-size:10.0pt'>3. REQUIREMENTS</span></b> </p>
+
+<p><span style='font-size:10.0pt'>A Contributor may choose to distribute the
+Program in object code form under its own license agreement, provided that:</span>
+</p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>a)
+it complies with the terms and conditions of this Agreement; and</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>b)
+its license agreement:</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>i)
+effectively disclaims on behalf of all Contributors all warranties and
+conditions, express and implied, including warranties or conditions of title
+and non-infringement, and implied warranties or conditions of merchantability
+and fitness for a particular purpose; </span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>ii)
+effectively excludes on behalf of all Contributors all liability for damages,
+including direct, indirect, special, incidental and consequential damages, such
+as lost profits; </span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>iii)
+states that any provisions which differ from this Agreement are offered by that
+Contributor alone and not by any other party; and</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>iv)
+states that source code for the Program is available from such Contributor, and
+informs licensees how to obtain it in a reasonable manner on or through a
+medium customarily used for software exchange.<span style='color:blue'> </span></span></p>
+
+<p><span style='font-size:10.0pt'>When the Program is made available in source
+code form:</span> </p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>a)
+it must be made available under this Agreement; and </span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>b) a
+copy of this Agreement must be included with each copy of the Program. </span></p>
+
+<p><span style='font-size:10.0pt'>Contributors may not remove or alter any
+copyright notices contained within the Program. </span></p>
+
+<p><span style='font-size:10.0pt'>Each Contributor must identify itself as the
+originator of its Contribution, if any, in a manner that reasonably allows
+subsequent Recipients to identify the originator of the Contribution. </span></p>
+
+<p><b><span style='font-size:10.0pt'>4. COMMERCIAL DISTRIBUTION</span></b> </p>
+
+<p><span style='font-size:10.0pt'>Commercial distributors of software may
+accept certain responsibilities with respect to end users, business partners
+and the like. While this license is intended to facilitate the commercial use
+of the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create potential
+liability for other Contributors. Therefore, if a Contributor includes the
+Program in a commercial product offering, such Contributor (&quot;Commercial
+Contributor&quot;) hereby agrees to defend and indemnify every other
+Contributor (&quot;Indemnified Contributor&quot;) against any losses, damages and
+costs (collectively &quot;Losses&quot;) arising from claims, lawsuits and other
+legal actions brought by a third party against the Indemnified Contributor to
+the extent caused by the acts or omissions of such Commercial Contributor in
+connection with its distribution of the Program in a commercial product
+offering. The obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In order
+to qualify, an Indemnified Contributor must: a) promptly notify the Commercial
+Contributor in writing of such claim, and b) allow the Commercial Contributor
+to control, and cooperate with the Commercial Contributor in, the defense and
+any related settlement negotiations. The Indemnified Contributor may participate
+in any such claim at its own expense.</span> </p>
+
+<p><span style='font-size:10.0pt'>For example, a Contributor might include the
+Program in a commercial product offering, Product X. That Contributor is then a
+Commercial Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance claims and
+warranties are such Commercial Contributor's responsibility alone. Under this
+section, the Commercial Contributor would have to defend claims against the
+other Contributors related to those performance claims and warranties, and if a
+court requires any other Contributor to pay any damages as a result, the
+Commercial Contributor must pay those damages.</span> </p>
+
+<p><b><span style='font-size:10.0pt'>5. NO WARRANTY</span></b> </p>
+
+<p><span style='font-size:10.0pt'>EXCEPT AS EXPRESSLY SET FORTH IN THIS
+AGREEMENT, THE PROGRAM IS PROVIDED ON AN &quot;AS IS&quot; BASIS, WITHOUT
+WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,
+WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
+MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and distributing the
+Program and assumes all risks associated with its exercise of rights under this
+Agreement , including but not limited to the risks and costs of program errors,
+compliance with applicable laws, damage to or loss of data, programs or
+equipment, and unavailability or interruption of operations. </span></p>
+
+<p><b><span style='font-size:10.0pt'>6. DISCLAIMER OF LIABILITY</span></b> </p>
+
+<p><span style='font-size:10.0pt'>EXCEPT AS EXPRESSLY SET FORTH IN THIS
+AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF
+THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF
+THE POSSIBILITY OF SUCH DAMAGES.</span> </p>
+
+<p><b><span style='font-size:10.0pt'>7. GENERAL</span></b> </p>
+
+<p><span style='font-size:10.0pt'>If any provision of this Agreement is invalid
+or unenforceable under applicable law, it shall not affect the validity or
+enforceability of the remainder of the terms of this Agreement, and without
+further action by the parties hereto, such provision shall be reformed to the
+minimum extent necessary to make such provision valid and enforceable.</span> </p>
+
+<p><span style='font-size:10.0pt'>If Recipient institutes patent litigation
+against any entity (including a cross-claim or counterclaim in a lawsuit)
+alleging that the Program itself (excluding combinations of the Program with
+other software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the date
+such litigation is filed. </span></p>
+
+<p><span style='font-size:10.0pt'>All Recipient's rights under this Agreement
+shall terminate if it fails to comply with any of the material terms or
+conditions of this Agreement and does not cure such failure in a reasonable
+period of time after becoming aware of such noncompliance. If all Recipient's
+rights under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive. </span></p>
+
+<p><span style='font-size:10.0pt'>Everyone is permitted to copy and distribute
+copies of this Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The Agreement
+Steward reserves the right to publish new versions (including revisions) of
+this Agreement from time to time. No one other than the Agreement Steward has
+the right to modify this Agreement. The Eclipse Foundation is the initial
+Agreement Steward. The Eclipse Foundation may assign the responsibility to
+serve as the Agreement Steward to a suitable separate entity. Each new version
+of the Agreement will be given a distinguishing version number. The Program
+(including Contributions) may always be distributed subject to the version of
+the Agreement under which it was received. In addition, after a new version of
+the Agreement is published, Contributor may elect to distribute the Program
+(including its Contributions) under the new version. Except as expressly stated
+in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to
+the intellectual property of any Contributor under this Agreement, whether
+expressly, by implication, estoppel or otherwise. All rights in the Program not
+expressly granted under this Agreement are reserved.</span> </p>
+
+<p><span style='font-size:10.0pt'>This Agreement is governed by the laws of the
+State of New York and the intellectual property laws of the United States of
+America. No party to this Agreement will bring a legal action under this
+Agreement more than one year after the cause of action arose. Each party waives
+its rights to a jury trial in any resulting litigation.</span> </p>
+
+<p class=MsoNormal></p>
+
+</div>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/feature.properties b/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/feature.properties
new file mode 100644
index 0000000..ad5ccaf
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/feature.properties
@@ -0,0 +1,155 @@
+# /**
+#  * Copyright (c) 2002-2011 IBM Corporation and others.
+#  * All rights reserved.   This program and the accompanying materials
+#  * are made available under the terms of the Eclipse Public License v1.0
+#  * which accompanies this distribution, and is available at
+#  * http://www.eclipse.org/legal/epl-v10.html
+#  * 
+#  * Contributors: 
+#  *   IBM - Initial API and implementation
+#  */
+
+# NLS_MESSAGEFORMAT_VAR
+
+# "featureName" property - name of the feature
+featureName=EMF Common
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse Modeling Project
+
+# "description" property - description of the feature
+description=Common platform-independent utilities used throughout EMF, including collection classes, notifiers, adapters, and commands.
+
+ModelingUpdateSiteName=Eclipse Modeling Project Updates
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+       - Content may be structured and packaged into modules to facilitate delivering,\n\
+         extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+         plug-in fragments ("Fragments"), and features ("Features").\n\
+       - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+         in a directory named "plugins".\n\
+       - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+         Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+         Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+         numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+       - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+         named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+       - The top-level (root) directory\n\
+       - Plug-in and Fragment directories\n\
+       - Inside Plug-ins and Fragments packaged as JARs\n\
+       - Sub-directories of the directory named "src" of certain Plug-ins\n\
+       - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+       - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+       - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+       - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+       - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+       - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+       - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+       1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+          the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+          extending or updating the functionality of an Eclipse-based product.\n\
+       2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+          Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+       3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+          govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+          Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+          with the Specification. Such Installable Software Agreement must inform the user of the\n\
+          terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+          the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+          indication of agreement by the user, the provisioning Technology will complete installation\n\
+          of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/feature.xml b/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/feature.xml
new file mode 100644
index 0000000..7b6a919
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/feature.xml
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- contextQualifierLength=14 -->
+<!-- contextQualifierLength=14 -->
+<feature
+      id="org.eclipse.emf.common"
+      label="%featureName"
+      version="2.8.0.v20130125-0546"
+      provider-name="%providerName">
+
+   <description>
+      %description
+   </description>
+
+   <copyright url="http://www.eclipse.org/legal/epl-v10.html">
+      Copyright (c) 2002-2011 IBM Corporation and others.
+All rights reserved.   This program and the accompanying materials
+are made available under the terms of the Eclipse Public License v1.0
+which accompanies this distribution, and is available at
+http://www.eclipse.org/legal/epl-v10.html
+   </copyright>
+
+   <license url="%licenseURL">
+      %license
+   </license>
+
+   <url>
+      <update label="%ModelingUpdateSiteName" url="http://www.eclipse.org/modeling/updates/"/>
+      <discovery label="%ModelingUpdateSiteName" url="http://www.eclipse.org/modeling/updates/"/>
+   </url>
+
+   <requires>
+      <import plugin="org.eclipse.core.runtime"/>
+   </requires>
+
+   <plugin
+         id="org.eclipse.emf.common"
+         download-size="0"
+         install-size="0"
+         version="2.8.0.v20130125-0546"
+         unpack="false"/>
+
+</feature>
diff --git a/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/license.html b/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/license.html
@@ -0,0 +1,108 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Foundation Software User Agreement</title>
+</head>
+
+<body lang="EN-US">
+<h2>Eclipse Foundation Software User Agreement</h2>
+<p>February 1, 2011</p>
+
+<h3>Usage Of Content</h3>
+
+<p>THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+   (COLLECTIVELY &quot;CONTENT&quot;).  USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+   CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+   OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+   NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+   CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.</p>
+
+<h3>Applicable Licenses</h3>
+
+<p>Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+   (&quot;EPL&quot;).  A copy of the EPL is provided with this Content and is also available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+   For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+   repository (&quot;Repository&quot;) in software modules (&quot;Modules&quot;) and made available as downloadable archives (&quot;Downloads&quot;).</p>
+
+<ul>
+       <li>Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content.  Typical modules may include plug-ins (&quot;Plug-ins&quot;), plug-in fragments (&quot;Fragments&quot;), and features (&quot;Features&quot;).</li>
+       <li>Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java&trade; ARchive) in a directory named &quot;plugins&quot;.</li>
+       <li>A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.  Each Feature may be packaged as a sub-directory in a directory named &quot;features&quot;.  Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of the Plug-ins
+      and/or Fragments associated with that Feature.</li>
+       <li>Features may also include other Features (&quot;Included Features&quot;). Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of Included Features.</li>
+</ul>
+
+<p>The terms and conditions governing Plug-ins and Fragments should be contained in files named &quot;about.html&quot; (&quot;Abouts&quot;). The terms and conditions governing Features and
+Included Features should be contained in files named &quot;license.html&quot; (&quot;Feature Licenses&quot;).  Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:</p>
+
+<ul>
+       <li>The top-level (root) directory</li>
+       <li>Plug-in and Fragment directories</li>
+       <li>Inside Plug-ins and Fragments packaged as JARs</li>
+       <li>Sub-directories of the directory named &quot;src&quot; of certain Plug-ins</li>
+       <li>Feature directories</li>
+</ul>
+
+<p>Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (&quot;Feature Update License&quot;) during the
+installation process.  If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them.  Feature Update Licenses may be found in the &quot;license&quot; property of files named &quot;feature.properties&quot; found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.</p>
+
+<p>THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.  SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):</p>
+
+<ul>
+       <li>Eclipse Distribution License Version 1.0 (available at <a href="http://www.eclipse.org/licenses/edl-v10.html">http://www.eclipse.org/licenses/edl-v1.0.html</a>)</li>
+       <li>Common Public License Version 1.0 (available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>)</li>
+       <li>Apache Software License 1.1 (available at <a href="http://www.apache.org/licenses/LICENSE">http://www.apache.org/licenses/LICENSE</a>)</li>
+       <li>Apache Software License 2.0 (available at <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>)</li>
+       <li>Metro Link Public License 1.00 (available at <a href="http://www.opengroup.org/openmotif/supporters/metrolink/license.html">http://www.opengroup.org/openmotif/supporters/metrolink/license.html</a>)</li>
+       <li>Mozilla Public License Version 1.1 (available at <a href="http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html</a>)</li>
+</ul>
+
+<p>IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT.  If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.</p>
+
+
+<h3>Use of Provisioning Technology</h3>
+
+<p>The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+   Update Manager (&quot;Provisioning Technology&quot;) for the purpose of allowing users to install software, documentation, information and/or
+   other materials (collectively &quot;Installable Software&quot;). This capability is provided with the intent of allowing such users to
+   install, extend and update Eclipse-based products. Information about packaging Installable Software is available at <a
+       href="http://eclipse.org/equinox/p2/repository_packaging.html">http://eclipse.org/equinox/p2/repository_packaging.html</a>
+   (&quot;Specification&quot;).</p>
+
+<p>You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+   applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+   in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+   Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:</p>
+
+<ol>
+       <li>A series of actions may occur (&quot;Provisioning Process&quot;) in which a user may execute the Provisioning Technology
+       on a machine (&quot;Target Machine&quot;) with the intent of installing, extending or updating the functionality of an Eclipse-based
+       product.</li>
+       <li>During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+       accessed and copied to the Target Machine.</li>
+       <li>Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+       Software (&quot;Installable Software Agreement&quot;) and such Installable Software Agreement shall be accessed from the Target
+       Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+       the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+       indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.</li>
+</ol>
+
+<h3>Cryptography</h3>
+
+<p>Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+   another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+   possession, or use, and re-export of encryption software, to see if this is permitted.</p>
+
+<p><small>Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.</small></p>
+</body>
+</html>
diff --git a/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/META-INF/ECLIPSE_.RSA b/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..4e14cee
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/META-INF/ECLIPSE_.SF b/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..8a51517
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/META-INF/ECLIPSE_.SF
@@ -0,0 +1,20 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: Sl5P7pq/ioAzXW7+ZbmyH1YpuOo=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: 4gIfTP5y3EzwI5ecyebQLugBMgo=

+

+Name: epl-v10.html

+SHA1-Digest: 8gfeI4bHtcOQXC3dYfggxvsAyWc=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: QdryQvJlVywlE0MGLuwYCkmkyWk=

+

+Name: license.html

+SHA1-Digest: Rp9AnRyeUIxNWe10fjaMDkQB8rU=

+

+Name: feature.properties

+SHA1-Digest: rr3BdukFIJYvoSau89SLAcV3dM0=

+

+Name: feature.xml

+SHA1-Digest: L4Z38s+pIR6fZBvlgIxKgWRizuU=

+

diff --git a/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/META-INF/MANIFEST.MF b/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..dbbf123
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/META-INF/MANIFEST.MF
@@ -0,0 +1,18 @@
+Manifest-Version: 1.0

+Created-By: 1.6.0 (IBM Corporation)

+

+Name: epl-v10.html

+SHA1-Digest: hNPRR3joO5UV8+u/L0qjKV/Y2EE=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: 09gN05tobgS/MdtqyTNQhOhB73M=

+

+Name: license.html

+SHA1-Digest: /vLZjlHkZSXMSfPrWwNqOUDqqbM=

+

+Name: feature.properties

+SHA1-Digest: jCt791aAyAvjBFA/dPN+2Y2OhYU=

+

+Name: feature.xml

+SHA1-Digest: T5QeW5nKa1V+/olntMcn56Zo+F4=

+

diff --git a/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/META-INF/eclipse.inf b/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/META-INF/eclipse.inf
new file mode 100644
index 0000000..92ffed2
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/META-INF/eclipse.inf
@@ -0,0 +1,2 @@
+#Processed using Jarprocessor
+pack200.conditioned = true
diff --git a/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/epl-v10.html b/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/epl-v10.html
new file mode 100644
index 0000000..cb1073a
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/epl-v10.html
@@ -0,0 +1,304 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
+<html xmlns:o="urn:schemas-microsoft-com:office:office"
+xmlns:w="urn:schemas-microsoft-com:office:word"
+xmlns="http://www.w3.org/TR/REC-html40">
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
+<link rel=File-List
+href="./Eclipse%20EPL%202003_11_10%20Final_files/filelist.xml">
+<title>Eclipse Public License - Version 1.0</title>
+<style>
+<!--
+ /* Font Definitions */
+@font-face
+	{
+	panose-1:2 11 6 4 3 5 4 4 2 4;
+	mso-font-charset:0;
+	mso-font-pitch:variable;
+	mso-font-signature:553679495 -2147483648 8 0 66047 0;}
+ /* Style Definitions */
+p.MsoNormal, li.MsoNormal, div.MsoNormal
+	{mso-style-parent:"";
+	margin:0in;
+	margin-bottom:.0001pt;
+	mso-pagination:widow-orphan;
+	font-size:12.0pt;
+	}
+p
+	{margin-right:0in;
+	mso-margin-top-alt:auto;
+	mso-margin-bottom-alt:auto;
+	margin-left:0in;
+	mso-pagination:widow-orphan;
+	font-size:12.0pt;
+	}
+p.BalloonText, li.BalloonText, div.BalloonText
+	{mso-style-name:"Balloon Text";
+	margin:0in;
+	margin-bottom:.0001pt;
+	mso-pagination:widow-orphan;
+	font-size:8.0pt;
+	
+	}
+@page Section1
+	{size:8.5in 11.0in;
+	margin:1.0in 1.25in 1.0in 1.25in;
+	mso-header-margin:.5in;
+	mso-footer-margin:.5in;
+	mso-paper-source:0;}
+div.Section1
+	{page:Section1;}
+-->
+</style>
+</head>
+
+<body lang="EN-US" style='tab-interval:.5in'>
+
+<div class=Section1>
+
+<p align=center style='text-align:center'><b>Eclipse Public License - v 1.0</b>
+</p>
+
+<p><span style='font-size:10.0pt'>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER
+THE TERMS OF THIS ECLIPSE PUBLIC LICENSE (&quot;AGREEMENT&quot;). ANY USE,
+REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE
+OF THIS AGREEMENT.</span> </p>
+
+<p><b><span style='font-size:10.0pt'>1. DEFINITIONS</span></b> </p>
+
+<p><span style='font-size:10.0pt'>&quot;Contribution&quot; means:</span> </p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>a)
+in the case of the initial Contributor, the initial code and documentation
+distributed under this Agreement, and<br clear=left>
+b) in the case of each subsequent Contributor:</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>i)
+changes to the Program, and</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>ii)
+additions to the Program;</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>where
+such changes and/or additions to the Program originate from and are distributed
+by that particular Contributor. A Contribution 'originates' from a Contributor
+if it was added to the Program by such Contributor itself or anyone acting on
+such Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in conjunction
+with the Program under their own license agreement, and (ii) are not derivative
+works of the Program. </span></p>
+
+<p><span style='font-size:10.0pt'>&quot;Contributor&quot; means any person or
+entity that distributes the Program.</span> </p>
+
+<p><span style='font-size:10.0pt'>&quot;Licensed Patents &quot; mean patent
+claims licensable by a Contributor which are necessarily infringed by the use
+or sale of its Contribution alone or when combined with the Program. </span></p>
+
+<p><span style='font-size:10.0pt'>&quot;Program&quot; means the Contributions
+distributed in accordance with this Agreement.</span> </p>
+
+<p><span style='font-size:10.0pt'>&quot;Recipient&quot; means anyone who
+receives the Program under this Agreement, including all Contributors.</span> </p>
+
+<p><b><span style='font-size:10.0pt'>2. GRANT OF RIGHTS</span></b> </p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>a)
+Subject to the terms of this Agreement, each Contributor hereby grants Recipient
+a non-exclusive, worldwide, royalty-free copyright license to<span
+style='color:red'> </span>reproduce, prepare derivative works of, publicly
+display, publicly perform, distribute and sublicense the Contribution of such
+Contributor, if any, and such derivative works, in source code and object code
+form.</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>b)
+Subject to the terms of this Agreement, each Contributor hereby grants
+Recipient a non-exclusive, worldwide,<span style='color:green'> </span>royalty-free
+patent license under Licensed Patents to make, use, sell, offer to sell, import
+and otherwise transfer the Contribution of such Contributor, if any, in source
+code and object code form. This patent license shall apply to the combination
+of the Contribution and the Program if, at the time the Contribution is added
+by the Contributor, such addition of the Contribution causes such combination
+to be covered by the Licensed Patents. The patent license shall not apply to
+any other combinations which include the Contribution. No hardware per se is
+licensed hereunder. </span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>c)
+Recipient understands that although each Contributor grants the licenses to its
+Contributions set forth herein, no assurances are provided by any Contributor
+that the Program does not infringe the patent or other intellectual property
+rights of any other entity. Each Contributor disclaims any liability to Recipient
+for claims brought by any other entity based on infringement of intellectual
+property rights or otherwise. As a condition to exercising the rights and
+licenses granted hereunder, each Recipient hereby assumes sole responsibility
+to secure any other intellectual property rights needed, if any. For example,
+if a third party patent license is required to allow Recipient to distribute
+the Program, it is Recipient's responsibility to acquire that license before
+distributing the Program.</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>d)
+Each Contributor represents that to its knowledge it has sufficient copyright
+rights in its Contribution, if any, to grant the copyright license set forth in
+this Agreement. </span></p>
+
+<p><b><span style='font-size:10.0pt'>3. REQUIREMENTS</span></b> </p>
+
+<p><span style='font-size:10.0pt'>A Contributor may choose to distribute the
+Program in object code form under its own license agreement, provided that:</span>
+</p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>a)
+it complies with the terms and conditions of this Agreement; and</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>b)
+its license agreement:</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>i)
+effectively disclaims on behalf of all Contributors all warranties and
+conditions, express and implied, including warranties or conditions of title
+and non-infringement, and implied warranties or conditions of merchantability
+and fitness for a particular purpose; </span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>ii)
+effectively excludes on behalf of all Contributors all liability for damages,
+including direct, indirect, special, incidental and consequential damages, such
+as lost profits; </span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>iii)
+states that any provisions which differ from this Agreement are offered by that
+Contributor alone and not by any other party; and</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>iv)
+states that source code for the Program is available from such Contributor, and
+informs licensees how to obtain it in a reasonable manner on or through a
+medium customarily used for software exchange.<span style='color:blue'> </span></span></p>
+
+<p><span style='font-size:10.0pt'>When the Program is made available in source
+code form:</span> </p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>a)
+it must be made available under this Agreement; and </span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>b) a
+copy of this Agreement must be included with each copy of the Program. </span></p>
+
+<p><span style='font-size:10.0pt'>Contributors may not remove or alter any
+copyright notices contained within the Program. </span></p>
+
+<p><span style='font-size:10.0pt'>Each Contributor must identify itself as the
+originator of its Contribution, if any, in a manner that reasonably allows
+subsequent Recipients to identify the originator of the Contribution. </span></p>
+
+<p><b><span style='font-size:10.0pt'>4. COMMERCIAL DISTRIBUTION</span></b> </p>
+
+<p><span style='font-size:10.0pt'>Commercial distributors of software may
+accept certain responsibilities with respect to end users, business partners
+and the like. While this license is intended to facilitate the commercial use
+of the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create potential
+liability for other Contributors. Therefore, if a Contributor includes the
+Program in a commercial product offering, such Contributor (&quot;Commercial
+Contributor&quot;) hereby agrees to defend and indemnify every other
+Contributor (&quot;Indemnified Contributor&quot;) against any losses, damages and
+costs (collectively &quot;Losses&quot;) arising from claims, lawsuits and other
+legal actions brought by a third party against the Indemnified Contributor to
+the extent caused by the acts or omissions of such Commercial Contributor in
+connection with its distribution of the Program in a commercial product
+offering. The obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In order
+to qualify, an Indemnified Contributor must: a) promptly notify the Commercial
+Contributor in writing of such claim, and b) allow the Commercial Contributor
+to control, and cooperate with the Commercial Contributor in, the defense and
+any related settlement negotiations. The Indemnified Contributor may participate
+in any such claim at its own expense.</span> </p>
+
+<p><span style='font-size:10.0pt'>For example, a Contributor might include the
+Program in a commercial product offering, Product X. That Contributor is then a
+Commercial Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance claims and
+warranties are such Commercial Contributor's responsibility alone. Under this
+section, the Commercial Contributor would have to defend claims against the
+other Contributors related to those performance claims and warranties, and if a
+court requires any other Contributor to pay any damages as a result, the
+Commercial Contributor must pay those damages.</span> </p>
+
+<p><b><span style='font-size:10.0pt'>5. NO WARRANTY</span></b> </p>
+
+<p><span style='font-size:10.0pt'>EXCEPT AS EXPRESSLY SET FORTH IN THIS
+AGREEMENT, THE PROGRAM IS PROVIDED ON AN &quot;AS IS&quot; BASIS, WITHOUT
+WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,
+WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
+MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and distributing the
+Program and assumes all risks associated with its exercise of rights under this
+Agreement , including but not limited to the risks and costs of program errors,
+compliance with applicable laws, damage to or loss of data, programs or
+equipment, and unavailability or interruption of operations. </span></p>
+
+<p><b><span style='font-size:10.0pt'>6. DISCLAIMER OF LIABILITY</span></b> </p>
+
+<p><span style='font-size:10.0pt'>EXCEPT AS EXPRESSLY SET FORTH IN THIS
+AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF
+THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF
+THE POSSIBILITY OF SUCH DAMAGES.</span> </p>
+
+<p><b><span style='font-size:10.0pt'>7. GENERAL</span></b> </p>
+
+<p><span style='font-size:10.0pt'>If any provision of this Agreement is invalid
+or unenforceable under applicable law, it shall not affect the validity or
+enforceability of the remainder of the terms of this Agreement, and without
+further action by the parties hereto, such provision shall be reformed to the
+minimum extent necessary to make such provision valid and enforceable.</span> </p>
+
+<p><span style='font-size:10.0pt'>If Recipient institutes patent litigation
+against any entity (including a cross-claim or counterclaim in a lawsuit)
+alleging that the Program itself (excluding combinations of the Program with
+other software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the date
+such litigation is filed. </span></p>
+
+<p><span style='font-size:10.0pt'>All Recipient's rights under this Agreement
+shall terminate if it fails to comply with any of the material terms or
+conditions of this Agreement and does not cure such failure in a reasonable
+period of time after becoming aware of such noncompliance. If all Recipient's
+rights under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive. </span></p>
+
+<p><span style='font-size:10.0pt'>Everyone is permitted to copy and distribute
+copies of this Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The Agreement
+Steward reserves the right to publish new versions (including revisions) of
+this Agreement from time to time. No one other than the Agreement Steward has
+the right to modify this Agreement. The Eclipse Foundation is the initial
+Agreement Steward. The Eclipse Foundation may assign the responsibility to
+serve as the Agreement Steward to a suitable separate entity. Each new version
+of the Agreement will be given a distinguishing version number. The Program
+(including Contributions) may always be distributed subject to the version of
+the Agreement under which it was received. In addition, after a new version of
+the Agreement is published, Contributor may elect to distribute the Program
+(including its Contributions) under the new version. Except as expressly stated
+in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to
+the intellectual property of any Contributor under this Agreement, whether
+expressly, by implication, estoppel or otherwise. All rights in the Program not
+expressly granted under this Agreement are reserved.</span> </p>
+
+<p><span style='font-size:10.0pt'>This Agreement is governed by the laws of the
+State of New York and the intellectual property laws of the United States of
+America. No party to this Agreement will bring a legal action under this
+Agreement more than one year after the cause of action arose. Each party waives
+its rights to a jury trial in any resulting litigation.</span> </p>
+
+<p class=MsoNormal></p>
+
+</div>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/feature.properties b/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/feature.properties
new file mode 100644
index 0000000..249c276
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/feature.properties
@@ -0,0 +1,155 @@
+# /**
+#  * Copyright (c) 2002-2011 IBM Corporation and others.
+#  * All rights reserved.   This program and the accompanying materials
+#  * are made available under the terms of the Eclipse Public License v1.0
+#  * which accompanies this distribution, and is available at
+#  * http://www.eclipse.org/legal/epl-v10.html
+#  * 
+#  * Contributors: 
+#  *   IBM - Initial API and implementation
+#  */
+
+# NLS_MESSAGEFORMAT_VAR
+
+# "featureName" property - name of the feature
+featureName=EMF - Eclipse Modeling Framework Core Runtime
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse Modeling Project
+
+# "description" property - description of the feature
+description=The core runtime for EMF, including EMF's common utilities, Ecore, XML/XMI persistence, and the change model.
+
+ModelingUpdateSiteName=Eclipse Modeling Project Updates
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+       - Content may be structured and packaged into modules to facilitate delivering,\n\
+         extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+         plug-in fragments ("Fragments"), and features ("Features").\n\
+       - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+         in a directory named "plugins".\n\
+       - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+         Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+         Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+         numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+       - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+         named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+       - The top-level (root) directory\n\
+       - Plug-in and Fragment directories\n\
+       - Inside Plug-ins and Fragments packaged as JARs\n\
+       - Sub-directories of the directory named "src" of certain Plug-ins\n\
+       - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+       - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+       - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+       - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+       - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+       - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+       - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+       1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+          the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+          extending or updating the functionality of an Eclipse-based product.\n\
+       2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+          Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+       3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+          govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+          Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+          with the Specification. Such Installable Software Agreement must inform the user of the\n\
+          terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+          the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+          indication of agreement by the user, the provisioning Technology will complete installation\n\
+          of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/feature.xml b/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/feature.xml
new file mode 100644
index 0000000..9655608
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/feature.xml
@@ -0,0 +1,57 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- contextQualifierLength=14 -->
+<!-- contextQualifierLength=14 -->
+<feature
+      id="org.eclipse.emf.ecore"
+      label="%featureName"
+      version="2.8.3.v20130125-0546"
+      provider-name="%providerName">
+
+   <description>
+      %description
+   </description>
+
+   <copyright url="http://www.eclipse.org/legal/epl-v10.html">
+      Copyright (c) 2002-2011 IBM Corporation and others.
+All rights reserved.   This program and the accompanying materials
+are made available under the terms of the Eclipse Public License v1.0
+which accompanies this distribution, and is available at
+http://www.eclipse.org/legal/epl-v10.html
+   </copyright>
+
+   <license url="%licenseURL">
+      %license
+   </license>
+
+   <url>
+      <update label="%ModelingUpdateSiteName" url="http://www.eclipse.org/modeling/updates/"/>
+      <discovery label="%ModelingUpdateSiteName" url="http://www.eclipse.org/modeling/updates/"/>
+   </url>
+
+   <requires>
+      <import plugin="org.eclipse.core.runtime"/>
+      <import plugin="org.eclipse.emf.common"/>
+   </requires>
+
+   <plugin
+         id="org.eclipse.emf.ecore"
+         download-size="0"
+         install-size="0"
+         version="2.8.3.v20130125-0546"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.emf.ecore.change"
+         download-size="0"
+         install-size="0"
+         version="2.8.0.v20130125-0546"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.emf.ecore.xmi"
+         download-size="0"
+         install-size="0"
+         version="2.8.1.v20130125-0546"
+         unpack="false"/>
+
+</feature>
diff --git a/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/license.html b/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/license.html
@@ -0,0 +1,108 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Foundation Software User Agreement</title>
+</head>
+
+<body lang="EN-US">
+<h2>Eclipse Foundation Software User Agreement</h2>
+<p>February 1, 2011</p>
+
+<h3>Usage Of Content</h3>
+
+<p>THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+   (COLLECTIVELY &quot;CONTENT&quot;).  USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+   CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+   OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+   NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+   CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.</p>
+
+<h3>Applicable Licenses</h3>
+
+<p>Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+   (&quot;EPL&quot;).  A copy of the EPL is provided with this Content and is also available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+   For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+   repository (&quot;Repository&quot;) in software modules (&quot;Modules&quot;) and made available as downloadable archives (&quot;Downloads&quot;).</p>
+
+<ul>
+       <li>Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content.  Typical modules may include plug-ins (&quot;Plug-ins&quot;), plug-in fragments (&quot;Fragments&quot;), and features (&quot;Features&quot;).</li>
+       <li>Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java&trade; ARchive) in a directory named &quot;plugins&quot;.</li>
+       <li>A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.  Each Feature may be packaged as a sub-directory in a directory named &quot;features&quot;.  Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of the Plug-ins
+      and/or Fragments associated with that Feature.</li>
+       <li>Features may also include other Features (&quot;Included Features&quot;). Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of Included Features.</li>
+</ul>
+
+<p>The terms and conditions governing Plug-ins and Fragments should be contained in files named &quot;about.html&quot; (&quot;Abouts&quot;). The terms and conditions governing Features and
+Included Features should be contained in files named &quot;license.html&quot; (&quot;Feature Licenses&quot;).  Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:</p>
+
+<ul>
+       <li>The top-level (root) directory</li>
+       <li>Plug-in and Fragment directories</li>
+       <li>Inside Plug-ins and Fragments packaged as JARs</li>
+       <li>Sub-directories of the directory named &quot;src&quot; of certain Plug-ins</li>
+       <li>Feature directories</li>
+</ul>
+
+<p>Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (&quot;Feature Update License&quot;) during the
+installation process.  If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them.  Feature Update Licenses may be found in the &quot;license&quot; property of files named &quot;feature.properties&quot; found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.</p>
+
+<p>THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.  SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):</p>
+
+<ul>
+       <li>Eclipse Distribution License Version 1.0 (available at <a href="http://www.eclipse.org/licenses/edl-v10.html">http://www.eclipse.org/licenses/edl-v1.0.html</a>)</li>
+       <li>Common Public License Version 1.0 (available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>)</li>
+       <li>Apache Software License 1.1 (available at <a href="http://www.apache.org/licenses/LICENSE">http://www.apache.org/licenses/LICENSE</a>)</li>
+       <li>Apache Software License 2.0 (available at <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>)</li>
+       <li>Metro Link Public License 1.00 (available at <a href="http://www.opengroup.org/openmotif/supporters/metrolink/license.html">http://www.opengroup.org/openmotif/supporters/metrolink/license.html</a>)</li>
+       <li>Mozilla Public License Version 1.1 (available at <a href="http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html</a>)</li>
+</ul>
+
+<p>IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT.  If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.</p>
+
+
+<h3>Use of Provisioning Technology</h3>
+
+<p>The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+   Update Manager (&quot;Provisioning Technology&quot;) for the purpose of allowing users to install software, documentation, information and/or
+   other materials (collectively &quot;Installable Software&quot;). This capability is provided with the intent of allowing such users to
+   install, extend and update Eclipse-based products. Information about packaging Installable Software is available at <a
+       href="http://eclipse.org/equinox/p2/repository_packaging.html">http://eclipse.org/equinox/p2/repository_packaging.html</a>
+   (&quot;Specification&quot;).</p>
+
+<p>You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+   applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+   in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+   Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:</p>
+
+<ol>
+       <li>A series of actions may occur (&quot;Provisioning Process&quot;) in which a user may execute the Provisioning Technology
+       on a machine (&quot;Target Machine&quot;) with the intent of installing, extending or updating the functionality of an Eclipse-based
+       product.</li>
+       <li>During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+       accessed and copied to the Target Machine.</li>
+       <li>Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+       Software (&quot;Installable Software Agreement&quot;) and such Installable Software Agreement shall be accessed from the Target
+       Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+       the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+       indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.</li>
+</ol>
+
+<h3>Cryptography</h3>
+
+<p>Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+   another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+   possession, or use, and re-export of encryption software, to see if this is permitted.</p>
+
+<p><small>Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.</small></p>
+</body>
+</html>
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/META-INF/ECLIPSE_.RSA b/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..307e685
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/META-INF/ECLIPSE_.SF b/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..21400e2
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/META-INF/ECLIPSE_.SF
@@ -0,0 +1,23 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: uKtBj3fooZ75P5tR8ylBfUrMQ+s=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: 4gIfTP5y3EzwI5ecyebQLugBMgo=

+

+Name: epl-v10.html

+SHA1-Digest: /iY8aEvT0IMpNnSjB0FpTUhvUGc=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: RyXo3knk5T635eCpQEPXyFBrCyA=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=

+

+Name: license.html

+SHA1-Digest: Rp9AnRyeUIxNWe10fjaMDkQB8rU=

+

+Name: feature.properties

+SHA1-Digest: siYmD/FGVu1PgapA9a1Ry/kJbAw=

+

+Name: feature.xml

+SHA1-Digest: 0bVz6o3tZdYa0c6gXrlzPEaxeBs=

+

diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/META-INF/MANIFEST.MF b/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..7ba2dcd
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/META-INF/MANIFEST.MF
@@ -0,0 +1,21 @@
+Manifest-Version: 1.0

+Created-By: 1.6.0 (IBM Corporation)

+

+Name: epl-v10.html

+SHA1-Digest: jYDaDJLBJpthCwPMgGFVYASJjIU=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: xstAqMgs/a5AsQXQZSdDQ79veOA=

+

+Name: license.html

+SHA1-Digest: /vLZjlHkZSXMSfPrWwNqOUDqqbM=

+

+Name: feature.properties

+SHA1-Digest: x/LIFEtPEANQfOvb2FjDfHiuum4=

+

+Name: feature.xml

+SHA1-Digest: ZDzcJSrAUz903eDn8JxXsmBLcG4=

+

diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/META-INF/eclipse.inf b/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/eclipse_update_120.jpg b/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/eclipse_update_120.jpg
new file mode 100644
index 0000000..bfdf708
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/eclipse_update_120.jpg
Binary files differ
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/epl-v10.html b/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/epl-v10.html
new file mode 100644
index 0000000..fd39122
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/epl-v10.html
@@ -0,0 +1,261 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Public License - Version 1.0</title>
+<style type="text/css">
+  body {
+    size: 8.5in 11.0in;
+    margin: 0.25in 0.5in 0.25in 0.5in;
+    tab-interval: 0.5in;
+    }
+  p {  	
+    margin-left: auto;
+    margin-top:  0.5em;
+    margin-bottom: 0.5em;
+    }
+  p.list {
+  	margin-left: 0.5in;
+    margin-top:  0.05em;
+    margin-bottom: 0.05em;
+    }
+  </style>
+
+</head>
+
+<body lang="EN-US">
+
+<h2>Eclipse Public License - v 1.0</h2>
+
+<p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE (&quot;AGREEMENT&quot;). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.</p>
+
+<p><b>1. DEFINITIONS</b></p>
+
+<p>&quot;Contribution&quot; means:</p>
+
+<p class="list">a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and</p>
+<p class="list">b) in the case of each subsequent Contributor:</p>
+<p class="list">i) changes to the Program, and</p>
+<p class="list">ii) additions to the Program;</p>
+<p class="list">where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.</p>
+
+<p>&quot;Contributor&quot; means any person or entity that distributes
+the Program.</p>
+
+<p>&quot;Licensed Patents&quot; mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.</p>
+
+<p>&quot;Program&quot; means the Contributions distributed in accordance
+with this Agreement.</p>
+
+<p>&quot;Recipient&quot; means anyone who receives the Program under
+this Agreement, including all Contributors.</p>
+
+<p><b>2. GRANT OF RIGHTS</b></p>
+
+<p class="list">a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.</p>
+
+<p class="list">b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.</p>
+
+<p class="list">c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.</p>
+
+<p class="list">d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.</p>
+
+<p><b>3. REQUIREMENTS</b></p>
+
+<p>A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:</p>
+
+<p class="list">a) it complies with the terms and conditions of this
+Agreement; and</p>
+
+<p class="list">b) its license agreement:</p>
+
+<p class="list">i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;</p>
+
+<p class="list">ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;</p>
+
+<p class="list">iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and</p>
+
+<p class="list">iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.</p>
+
+<p>When the Program is made available in source code form:</p>
+
+<p class="list">a) it must be made available under this Agreement; and</p>
+
+<p class="list">b) a copy of this Agreement must be included with each
+copy of the Program.</p>
+
+<p>Contributors may not remove or alter any copyright notices contained
+within the Program.</p>
+
+<p>Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.</p>
+
+<p><b>4. COMMERCIAL DISTRIBUTION</b></p>
+
+<p>Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+(&quot;Commercial Contributor&quot;) hereby agrees to defend and
+indemnify every other Contributor (&quot;Indemnified Contributor&quot;)
+against any losses, damages and costs (collectively &quot;Losses&quot;)
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.</p>
+
+<p>For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.</p>
+
+<p><b>5. NO WARRANTY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.</p>
+
+<p><b>6. DISCLAIMER OF LIABILITY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), 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 OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.</p>
+
+<p><b>7. GENERAL</b></p>
+
+<p>If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.</p>
+
+<p>If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.</p>
+
+<p>All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.</p>
+
+<p>Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.</p>
+
+<p>This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.</p>
+
+</body>
+
+</html>
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/feature.properties b/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/feature.properties
new file mode 100644
index 0000000..35a39f0
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/feature.properties
@@ -0,0 +1,194 @@
+###############################################################################
+# Copyright (c) 2010, 2011 EclipseSource Inc. and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     EclipseSource - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Equinox p2 Core Function
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org - Equinox
+
+description=Provides a minimal headless provisioning system.
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2010 EclipseSource Inc. and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+    EclipseSource - initial API and implementation\n
+################ end of copyright property ####################################
+###############################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+       - Content may be structured and packaged into modules to facilitate delivering,\n\
+         extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+         plug-in fragments ("Fragments"), and features ("Features").\n\
+       - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+         in a directory named "plugins".\n\
+       - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+         Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+         Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+         numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+       - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+         named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+       - The top-level (root) directory\n\
+       - Plug-in and Fragment directories\n\
+       - Inside Plug-ins and Fragments packaged as JARs\n\
+       - Sub-directories of the directory named "src" of certain Plug-ins\n\
+       - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+       - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+       - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+       - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+       - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+       - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+       - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+       1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+          the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+          extending or updating the functionality of an Eclipse-based product.\n\
+       2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+          Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+       3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+          govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+          Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+          with the Specification. Such Installable Software Agreement must inform the user of the\n\
+          terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+          the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+          indication of agreement by the user, the provisioning Technology will complete installation\n\
+          of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/feature.xml b/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/feature.xml
new file mode 100644
index 0000000..164ec80
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/feature.xml
@@ -0,0 +1,286 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="org.eclipse.equinox.p2.core.feature"
+      label="%featureName"
+      version="1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0"
+      provider-name="%providerName"
+      image="eclipse_update_120.jpg"
+      
+      >
+
+   <description>
+      %description
+   </description>
+
+   <copyright>
+      %copyright
+   </copyright>
+
+   <license url="%licenseURL">
+      %license
+   </license>
+
+   <plugin
+         id="org.eclipse.equinox.p2.artifact.repository"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120430-1959"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.console"
+         download-size="0"
+         install-size="0"
+         version="1.0.300.v20120429-0125"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.core"
+         download-size="0"
+         install-size="0"
+         version="2.2.0.v20120430-0525"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.director"
+         download-size="0"
+         install-size="0"
+         version="2.2.0.v20120524-0542"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.engine"
+         download-size="0"
+         install-size="0"
+         version="2.2.0.v20130121-021919"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.garbagecollector"
+         download-size="0"
+         install-size="0"
+         version="1.0.200.v20110808-1657"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.metadata"
+         download-size="0"
+         install-size="0"
+         version="2.1.0.v20120430-2001"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.metadata.repository"
+         download-size="0"
+         install-size="0"
+         version="1.2.100.v20120524-1717"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.repository"
+         download-size="0"
+         install-size="0"
+         version="2.2.0.v20120524-1945"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.touchpoint.eclipse"
+         download-size="0"
+         install-size="0"
+         version="2.1.100.v20120428-0117"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.touchpoint.natives"
+         download-size="0"
+         install-size="0"
+         version="1.1.0.v20130121-021919"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.simpleconfigurator.manipulator"
+         download-size="0"
+         install-size="0"
+         version="2.0.0.v20110808-1657"
+         unpack="false"/>
+
+   <plugin
+         id="org.sat4j.core"
+         download-size="0"
+         install-size="0"
+         version="2.3.0.v20110329"
+         unpack="false"/>
+
+   <plugin
+         id="org.sat4j.pb"
+         download-size="0"
+         install-size="0"
+         version="2.3.0.v20110329"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ecf"
+         download-size="0"
+         install-size="0"
+         version="3.1.300.v20120610-1946"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ecf.filetransfer"
+         download-size="0"
+         install-size="0"
+         version="5.0.0.v20120610-1946"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ecf.identity"
+         download-size="0"
+         install-size="0"
+         version="3.1.200.v20120610-1946"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ecf.provider.filetransfer"
+         download-size="0"
+         install-size="0"
+         version="3.2.0.v20120610-1946"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ecf.provider.filetransfer.httpclient"
+         download-size="0"
+         install-size="0"
+         version="4.0.200.v20120610-1946"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ecf.provider.filetransfer.httpclient.ssl"
+         download-size="0"
+         install-size="0"
+         version="1.0.0.v20120610-1946"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ecf.provider.filetransfer.ssl"
+         download-size="0"
+         install-size="0"
+         version="1.0.0.v20120610-1946"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ecf.ssl"
+         download-size="0"
+         install-size="0"
+         version="1.0.100.v20120610-1946"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.apache.commons.codec"
+         download-size="0"
+         install-size="0"
+         version="1.3.0.v201101211617"
+         unpack="false"/>
+
+   <plugin
+         id="org.apache.commons.httpclient"
+         download-size="0"
+         install-size="0"
+         version="3.1.0.v201012070820"
+         unpack="false"/>
+
+   <plugin
+         id="org.apache.commons.logging"
+         download-size="0"
+         install-size="0"
+         version="1.0.4.v201101211617"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.frameworkadmin"
+         download-size="0"
+         install-size="0"
+         version="2.0.100.v20120913-155515"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.frameworkadmin.equinox"
+         download-size="0"
+         install-size="0"
+         version="1.0.400.v20120913-155709"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.preferences"
+         download-size="0"
+         install-size="0"
+         version="3.5.1.v20121031-182809"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.security"
+         download-size="0"
+         install-size="0"
+         version="1.1.100.v20120522-1841"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.jarprocessor"
+         download-size="0"
+         install-size="0"
+         version="1.0.200.v20110808-1657"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.ql"
+         download-size="0"
+         install-size="0"
+         version="2.0.100.v20110808-1657"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.transport.ecf"
+         download-size="0"
+         install-size="0"
+         version="1.0.100.v20120913-155635"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.operations"
+         download-size="0"
+         install-size="0"
+         version="2.2.0.v20130119-010614"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.security.macosx"
+         os="macosx"
+         download-size="0"
+         install-size="0"
+         version="1.100.200.v20120522-2049"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.security.win32.x86"
+         os="win32"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="1.0.300.v20120522-2049"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.security.win32.x86_64"
+         os="win32"
+         arch="x86_64"
+         download-size="0"
+         install-size="0"
+         version="1.0.100.v20120522-2049"
+         fragment="true"
+         unpack="false"/>
+
+</feature>
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/license.html b/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/license.html
@@ -0,0 +1,108 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Foundation Software User Agreement</title>
+</head>
+
+<body lang="EN-US">
+<h2>Eclipse Foundation Software User Agreement</h2>
+<p>February 1, 2011</p>
+
+<h3>Usage Of Content</h3>
+
+<p>THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+   (COLLECTIVELY &quot;CONTENT&quot;).  USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+   CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+   OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+   NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+   CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.</p>
+
+<h3>Applicable Licenses</h3>
+
+<p>Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+   (&quot;EPL&quot;).  A copy of the EPL is provided with this Content and is also available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+   For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+   repository (&quot;Repository&quot;) in software modules (&quot;Modules&quot;) and made available as downloadable archives (&quot;Downloads&quot;).</p>
+
+<ul>
+       <li>Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content.  Typical modules may include plug-ins (&quot;Plug-ins&quot;), plug-in fragments (&quot;Fragments&quot;), and features (&quot;Features&quot;).</li>
+       <li>Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java&trade; ARchive) in a directory named &quot;plugins&quot;.</li>
+       <li>A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.  Each Feature may be packaged as a sub-directory in a directory named &quot;features&quot;.  Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of the Plug-ins
+      and/or Fragments associated with that Feature.</li>
+       <li>Features may also include other Features (&quot;Included Features&quot;). Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of Included Features.</li>
+</ul>
+
+<p>The terms and conditions governing Plug-ins and Fragments should be contained in files named &quot;about.html&quot; (&quot;Abouts&quot;). The terms and conditions governing Features and
+Included Features should be contained in files named &quot;license.html&quot; (&quot;Feature Licenses&quot;).  Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:</p>
+
+<ul>
+       <li>The top-level (root) directory</li>
+       <li>Plug-in and Fragment directories</li>
+       <li>Inside Plug-ins and Fragments packaged as JARs</li>
+       <li>Sub-directories of the directory named &quot;src&quot; of certain Plug-ins</li>
+       <li>Feature directories</li>
+</ul>
+
+<p>Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (&quot;Feature Update License&quot;) during the
+installation process.  If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them.  Feature Update Licenses may be found in the &quot;license&quot; property of files named &quot;feature.properties&quot; found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.</p>
+
+<p>THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.  SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):</p>
+
+<ul>
+       <li>Eclipse Distribution License Version 1.0 (available at <a href="http://www.eclipse.org/licenses/edl-v10.html">http://www.eclipse.org/licenses/edl-v1.0.html</a>)</li>
+       <li>Common Public License Version 1.0 (available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>)</li>
+       <li>Apache Software License 1.1 (available at <a href="http://www.apache.org/licenses/LICENSE">http://www.apache.org/licenses/LICENSE</a>)</li>
+       <li>Apache Software License 2.0 (available at <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>)</li>
+       <li>Metro Link Public License 1.00 (available at <a href="http://www.opengroup.org/openmotif/supporters/metrolink/license.html">http://www.opengroup.org/openmotif/supporters/metrolink/license.html</a>)</li>
+       <li>Mozilla Public License Version 1.1 (available at <a href="http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html</a>)</li>
+</ul>
+
+<p>IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT.  If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.</p>
+
+
+<h3>Use of Provisioning Technology</h3>
+
+<p>The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+   Update Manager (&quot;Provisioning Technology&quot;) for the purpose of allowing users to install software, documentation, information and/or
+   other materials (collectively &quot;Installable Software&quot;). This capability is provided with the intent of allowing such users to
+   install, extend and update Eclipse-based products. Information about packaging Installable Software is available at <a
+       href="http://eclipse.org/equinox/p2/repository_packaging.html">http://eclipse.org/equinox/p2/repository_packaging.html</a>
+   (&quot;Specification&quot;).</p>
+
+<p>You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+   applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+   in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+   Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:</p>
+
+<ol>
+       <li>A series of actions may occur (&quot;Provisioning Process&quot;) in which a user may execute the Provisioning Technology
+       on a machine (&quot;Target Machine&quot;) with the intent of installing, extending or updating the functionality of an Eclipse-based
+       product.</li>
+       <li>During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+       accessed and copied to the Target Machine.</li>
+       <li>Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+       Software (&quot;Installable Software Agreement&quot;) and such Installable Software Agreement shall be accessed from the Target
+       Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+       the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+       indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.</li>
+</ol>
+
+<h3>Cryptography</h3>
+
+<p>Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+   another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+   possession, or use, and re-export of encryption software, to see if this is permitted.</p>
+
+<p><small>Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.</small></p>
+</body>
+</html>
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/META-INF/ECLIPSE_.RSA b/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..694f05f
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/META-INF/ECLIPSE_.SF b/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..e45a0a5
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/META-INF/ECLIPSE_.SF
@@ -0,0 +1,23 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: Dd1zdnKdtbSrhHCw7AOE/JDEosg=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: 4gIfTP5y3EzwI5ecyebQLugBMgo=

+

+Name: epl-v10.html

+SHA1-Digest: /iY8aEvT0IMpNnSjB0FpTUhvUGc=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: RyXo3knk5T635eCpQEPXyFBrCyA=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=

+

+Name: license.html

+SHA1-Digest: Rp9AnRyeUIxNWe10fjaMDkQB8rU=

+

+Name: feature.properties

+SHA1-Digest: QXjasCGfhFr8ViQeCp146SYtHQs=

+

+Name: feature.xml

+SHA1-Digest: JLDcqrSt8fjQDFCx29l+2ZWwLTU=

+

diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/META-INF/MANIFEST.MF b/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..e0e4b0a
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/META-INF/MANIFEST.MF
@@ -0,0 +1,21 @@
+Manifest-Version: 1.0

+Created-By: 1.6.0 (IBM Corporation)

+

+Name: epl-v10.html

+SHA1-Digest: jYDaDJLBJpthCwPMgGFVYASJjIU=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: xstAqMgs/a5AsQXQZSdDQ79veOA=

+

+Name: license.html

+SHA1-Digest: /vLZjlHkZSXMSfPrWwNqOUDqqbM=

+

+Name: feature.properties

+SHA1-Digest: pZxe2mLOtxiDmbpSVandTmRyHfM=

+

+Name: feature.xml

+SHA1-Digest: wHKvem/XOngw0qCVpHwWTDVkc6I=

+

diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/META-INF/eclipse.inf b/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/eclipse_update_120.jpg b/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/eclipse_update_120.jpg
new file mode 100644
index 0000000..bfdf708
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/eclipse_update_120.jpg
Binary files differ
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/epl-v10.html b/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/epl-v10.html
new file mode 100644
index 0000000..fd39122
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/epl-v10.html
@@ -0,0 +1,261 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Public License - Version 1.0</title>
+<style type="text/css">
+  body {
+    size: 8.5in 11.0in;
+    margin: 0.25in 0.5in 0.25in 0.5in;
+    tab-interval: 0.5in;
+    }
+  p {  	
+    margin-left: auto;
+    margin-top:  0.5em;
+    margin-bottom: 0.5em;
+    }
+  p.list {
+  	margin-left: 0.5in;
+    margin-top:  0.05em;
+    margin-bottom: 0.05em;
+    }
+  </style>
+
+</head>
+
+<body lang="EN-US">
+
+<h2>Eclipse Public License - v 1.0</h2>
+
+<p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE (&quot;AGREEMENT&quot;). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.</p>
+
+<p><b>1. DEFINITIONS</b></p>
+
+<p>&quot;Contribution&quot; means:</p>
+
+<p class="list">a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and</p>
+<p class="list">b) in the case of each subsequent Contributor:</p>
+<p class="list">i) changes to the Program, and</p>
+<p class="list">ii) additions to the Program;</p>
+<p class="list">where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.</p>
+
+<p>&quot;Contributor&quot; means any person or entity that distributes
+the Program.</p>
+
+<p>&quot;Licensed Patents&quot; mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.</p>
+
+<p>&quot;Program&quot; means the Contributions distributed in accordance
+with this Agreement.</p>
+
+<p>&quot;Recipient&quot; means anyone who receives the Program under
+this Agreement, including all Contributors.</p>
+
+<p><b>2. GRANT OF RIGHTS</b></p>
+
+<p class="list">a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.</p>
+
+<p class="list">b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.</p>
+
+<p class="list">c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.</p>
+
+<p class="list">d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.</p>
+
+<p><b>3. REQUIREMENTS</b></p>
+
+<p>A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:</p>
+
+<p class="list">a) it complies with the terms and conditions of this
+Agreement; and</p>
+
+<p class="list">b) its license agreement:</p>
+
+<p class="list">i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;</p>
+
+<p class="list">ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;</p>
+
+<p class="list">iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and</p>
+
+<p class="list">iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.</p>
+
+<p>When the Program is made available in source code form:</p>
+
+<p class="list">a) it must be made available under this Agreement; and</p>
+
+<p class="list">b) a copy of this Agreement must be included with each
+copy of the Program.</p>
+
+<p>Contributors may not remove or alter any copyright notices contained
+within the Program.</p>
+
+<p>Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.</p>
+
+<p><b>4. COMMERCIAL DISTRIBUTION</b></p>
+
+<p>Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+(&quot;Commercial Contributor&quot;) hereby agrees to defend and
+indemnify every other Contributor (&quot;Indemnified Contributor&quot;)
+against any losses, damages and costs (collectively &quot;Losses&quot;)
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.</p>
+
+<p>For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.</p>
+
+<p><b>5. NO WARRANTY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.</p>
+
+<p><b>6. DISCLAIMER OF LIABILITY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), 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 OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.</p>
+
+<p><b>7. GENERAL</b></p>
+
+<p>If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.</p>
+
+<p>If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.</p>
+
+<p>All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.</p>
+
+<p>Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.</p>
+
+<p>This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.</p>
+
+</body>
+
+</html>
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/feature.properties b/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/feature.properties
new file mode 100644
index 0000000..a612ea1
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/feature.properties
@@ -0,0 +1,193 @@
+###############################################################################
+# Copyright (c) 2010, 2011 EclipseSource Inc. and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     EclipseSource - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Add-on Function for p2
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org - Equinox
+
+description=Provides some backward compatibility support (e.g. drop-ins, legacy update site) and the metadata generation facility.
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2010 EclipseSource Inc. and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+    EclipseSource - initial API and implementation\n
+################ end of copyright property ###################################################################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+       - Content may be structured and packaged into modules to facilitate delivering,\n\
+         extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+         plug-in fragments ("Fragments"), and features ("Features").\n\
+       - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+         in a directory named "plugins".\n\
+       - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+         Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+         Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+         numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+       - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+         named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+       - The top-level (root) directory\n\
+       - Plug-in and Fragment directories\n\
+       - Inside Plug-ins and Fragments packaged as JARs\n\
+       - Sub-directories of the directory named "src" of certain Plug-ins\n\
+       - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+       - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+       - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+       - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+       - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+       - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+       - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+       1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+          the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+          extending or updating the functionality of an Eclipse-based product.\n\
+       2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+          Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+       3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+          govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+          Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+          with the Specification. Such Installable Software Agreement must inform the user of the\n\
+          terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+          the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+          indication of agreement by the user, the provisioning Technology will complete installation\n\
+          of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/feature.xml b/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/feature.xml
new file mode 100644
index 0000000..0ef45b9
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/feature.xml
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="org.eclipse.equinox.p2.extras.feature"
+      label="%featureName"
+      version="1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w"
+      provider-name="%providerName"
+      image="eclipse_update_120.jpg"
+      
+      >
+
+   <description>
+      %description
+   </description>
+
+   <copyright>
+      %copyright
+   </copyright>
+
+   <license url="%licenseURL">
+      %license
+   </license>
+
+   <includes
+         id="org.eclipse.equinox.p2.core.feature"
+         version="1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.director.app"
+         download-size="0"
+         install-size="0"
+         version="1.0.300.v20120428-0517"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.directorywatcher"
+         download-size="0"
+         install-size="0"
+         version="1.0.300.v20110808-1657"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.reconciler.dropins"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120301-2145"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.publisher"
+         download-size="0"
+         install-size="0"
+         version="1.2.0.v20121002-080415"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.extensionlocation"
+         download-size="0"
+         install-size="0"
+         version="1.2.100.v20110808-1657"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.repository.tools"
+         download-size="0"
+         install-size="0"
+         version="2.0.100.v20120501-1314"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.publisher.eclipse"
+         download-size="0"
+         install-size="0"
+         version="1.1.0.v20120913-155635"
+         unpack="false"/>
+
+</feature>
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/license.html b/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/license.html
@@ -0,0 +1,108 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Foundation Software User Agreement</title>
+</head>
+
+<body lang="EN-US">
+<h2>Eclipse Foundation Software User Agreement</h2>
+<p>February 1, 2011</p>
+
+<h3>Usage Of Content</h3>
+
+<p>THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+   (COLLECTIVELY &quot;CONTENT&quot;).  USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+   CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+   OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+   NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+   CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.</p>
+
+<h3>Applicable Licenses</h3>
+
+<p>Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+   (&quot;EPL&quot;).  A copy of the EPL is provided with this Content and is also available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+   For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+   repository (&quot;Repository&quot;) in software modules (&quot;Modules&quot;) and made available as downloadable archives (&quot;Downloads&quot;).</p>
+
+<ul>
+       <li>Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content.  Typical modules may include plug-ins (&quot;Plug-ins&quot;), plug-in fragments (&quot;Fragments&quot;), and features (&quot;Features&quot;).</li>
+       <li>Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java&trade; ARchive) in a directory named &quot;plugins&quot;.</li>
+       <li>A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.  Each Feature may be packaged as a sub-directory in a directory named &quot;features&quot;.  Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of the Plug-ins
+      and/or Fragments associated with that Feature.</li>
+       <li>Features may also include other Features (&quot;Included Features&quot;). Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of Included Features.</li>
+</ul>
+
+<p>The terms and conditions governing Plug-ins and Fragments should be contained in files named &quot;about.html&quot; (&quot;Abouts&quot;). The terms and conditions governing Features and
+Included Features should be contained in files named &quot;license.html&quot; (&quot;Feature Licenses&quot;).  Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:</p>
+
+<ul>
+       <li>The top-level (root) directory</li>
+       <li>Plug-in and Fragment directories</li>
+       <li>Inside Plug-ins and Fragments packaged as JARs</li>
+       <li>Sub-directories of the directory named &quot;src&quot; of certain Plug-ins</li>
+       <li>Feature directories</li>
+</ul>
+
+<p>Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (&quot;Feature Update License&quot;) during the
+installation process.  If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them.  Feature Update Licenses may be found in the &quot;license&quot; property of files named &quot;feature.properties&quot; found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.</p>
+
+<p>THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.  SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):</p>
+
+<ul>
+       <li>Eclipse Distribution License Version 1.0 (available at <a href="http://www.eclipse.org/licenses/edl-v10.html">http://www.eclipse.org/licenses/edl-v1.0.html</a>)</li>
+       <li>Common Public License Version 1.0 (available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>)</li>
+       <li>Apache Software License 1.1 (available at <a href="http://www.apache.org/licenses/LICENSE">http://www.apache.org/licenses/LICENSE</a>)</li>
+       <li>Apache Software License 2.0 (available at <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>)</li>
+       <li>Metro Link Public License 1.00 (available at <a href="http://www.opengroup.org/openmotif/supporters/metrolink/license.html">http://www.opengroup.org/openmotif/supporters/metrolink/license.html</a>)</li>
+       <li>Mozilla Public License Version 1.1 (available at <a href="http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html</a>)</li>
+</ul>
+
+<p>IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT.  If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.</p>
+
+
+<h3>Use of Provisioning Technology</h3>
+
+<p>The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+   Update Manager (&quot;Provisioning Technology&quot;) for the purpose of allowing users to install software, documentation, information and/or
+   other materials (collectively &quot;Installable Software&quot;). This capability is provided with the intent of allowing such users to
+   install, extend and update Eclipse-based products. Information about packaging Installable Software is available at <a
+       href="http://eclipse.org/equinox/p2/repository_packaging.html">http://eclipse.org/equinox/p2/repository_packaging.html</a>
+   (&quot;Specification&quot;).</p>
+
+<p>You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+   applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+   in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+   Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:</p>
+
+<ol>
+       <li>A series of actions may occur (&quot;Provisioning Process&quot;) in which a user may execute the Provisioning Technology
+       on a machine (&quot;Target Machine&quot;) with the intent of installing, extending or updating the functionality of an Eclipse-based
+       product.</li>
+       <li>During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+       accessed and copied to the Target Machine.</li>
+       <li>Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+       Software (&quot;Installable Software Agreement&quot;) and such Installable Software Agreement shall be accessed from the Target
+       Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+       the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+       indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.</li>
+</ol>
+
+<h3>Cryptography</h3>
+
+<p>Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+   another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+   possession, or use, and re-export of encryption software, to see if this is permitted.</p>
+
+<p><small>Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.</small></p>
+</body>
+</html>
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/META-INF/ECLIPSE_.RSA b/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..699485f
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/META-INF/ECLIPSE_.SF b/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..9bcd2cb
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/META-INF/ECLIPSE_.SF
@@ -0,0 +1,23 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: p9SHwwob+S6EvlVwb8ugYOGjkIg=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: 4gIfTP5y3EzwI5ecyebQLugBMgo=

+

+Name: epl-v10.html

+SHA1-Digest: /iY8aEvT0IMpNnSjB0FpTUhvUGc=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: RyXo3knk5T635eCpQEPXyFBrCyA=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=

+

+Name: license.html

+SHA1-Digest: Rp9AnRyeUIxNWe10fjaMDkQB8rU=

+

+Name: feature.properties

+SHA1-Digest: JqJjvsRVoyRRGp1D7TcODCcYA+k=

+

+Name: feature.xml

+SHA1-Digest: Bw6lWUZmi5wuUDGrXwKJYQQPFOw=

+

diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/META-INF/MANIFEST.MF b/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..8e53cf5
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/META-INF/MANIFEST.MF
@@ -0,0 +1,21 @@
+Manifest-Version: 1.0

+Created-By: 1.6.0 (IBM Corporation)

+

+Name: epl-v10.html

+SHA1-Digest: jYDaDJLBJpthCwPMgGFVYASJjIU=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: xstAqMgs/a5AsQXQZSdDQ79veOA=

+

+Name: license.html

+SHA1-Digest: /vLZjlHkZSXMSfPrWwNqOUDqqbM=

+

+Name: feature.properties

+SHA1-Digest: gdm77vxq4WgtPiRX7+vVOf4OWUU=

+

+Name: feature.xml

+SHA1-Digest: 2oeR9Aik2O1LBSJJMuIv5U/ClHg=

+

diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/META-INF/eclipse.inf b/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/eclipse_update_120.jpg b/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/eclipse_update_120.jpg
new file mode 100644
index 0000000..bfdf708
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/eclipse_update_120.jpg
Binary files differ
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/epl-v10.html b/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/epl-v10.html
new file mode 100644
index 0000000..fd39122
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/epl-v10.html
@@ -0,0 +1,261 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Public License - Version 1.0</title>
+<style type="text/css">
+  body {
+    size: 8.5in 11.0in;
+    margin: 0.25in 0.5in 0.25in 0.5in;
+    tab-interval: 0.5in;
+    }
+  p {  	
+    margin-left: auto;
+    margin-top:  0.5em;
+    margin-bottom: 0.5em;
+    }
+  p.list {
+  	margin-left: 0.5in;
+    margin-top:  0.05em;
+    margin-bottom: 0.05em;
+    }
+  </style>
+
+</head>
+
+<body lang="EN-US">
+
+<h2>Eclipse Public License - v 1.0</h2>
+
+<p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE (&quot;AGREEMENT&quot;). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.</p>
+
+<p><b>1. DEFINITIONS</b></p>
+
+<p>&quot;Contribution&quot; means:</p>
+
+<p class="list">a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and</p>
+<p class="list">b) in the case of each subsequent Contributor:</p>
+<p class="list">i) changes to the Program, and</p>
+<p class="list">ii) additions to the Program;</p>
+<p class="list">where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.</p>
+
+<p>&quot;Contributor&quot; means any person or entity that distributes
+the Program.</p>
+
+<p>&quot;Licensed Patents&quot; mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.</p>
+
+<p>&quot;Program&quot; means the Contributions distributed in accordance
+with this Agreement.</p>
+
+<p>&quot;Recipient&quot; means anyone who receives the Program under
+this Agreement, including all Contributors.</p>
+
+<p><b>2. GRANT OF RIGHTS</b></p>
+
+<p class="list">a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.</p>
+
+<p class="list">b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.</p>
+
+<p class="list">c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.</p>
+
+<p class="list">d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.</p>
+
+<p><b>3. REQUIREMENTS</b></p>
+
+<p>A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:</p>
+
+<p class="list">a) it complies with the terms and conditions of this
+Agreement; and</p>
+
+<p class="list">b) its license agreement:</p>
+
+<p class="list">i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;</p>
+
+<p class="list">ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;</p>
+
+<p class="list">iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and</p>
+
+<p class="list">iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.</p>
+
+<p>When the Program is made available in source code form:</p>
+
+<p class="list">a) it must be made available under this Agreement; and</p>
+
+<p class="list">b) a copy of this Agreement must be included with each
+copy of the Program.</p>
+
+<p>Contributors may not remove or alter any copyright notices contained
+within the Program.</p>
+
+<p>Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.</p>
+
+<p><b>4. COMMERCIAL DISTRIBUTION</b></p>
+
+<p>Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+(&quot;Commercial Contributor&quot;) hereby agrees to defend and
+indemnify every other Contributor (&quot;Indemnified Contributor&quot;)
+against any losses, damages and costs (collectively &quot;Losses&quot;)
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.</p>
+
+<p>For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.</p>
+
+<p><b>5. NO WARRANTY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.</p>
+
+<p><b>6. DISCLAIMER OF LIABILITY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), 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 OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.</p>
+
+<p><b>7. GENERAL</b></p>
+
+<p>If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.</p>
+
+<p>If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.</p>
+
+<p>All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.</p>
+
+<p>Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.</p>
+
+<p>This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.</p>
+
+</body>
+
+</html>
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/feature.properties b/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/feature.properties
new file mode 100644
index 0000000..5d06bc4
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/feature.properties
@@ -0,0 +1,194 @@
+###############################################################################
+# Copyright (c) 2011 EclipseSource Inc. and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     EclipseSource - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Equinox p2 RCP Management Facilities
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org - Equinox
+
+description=Provides SWT based UI component for p2.
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2011 EclipseSource Inc. and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+    EclipseSource - initial API and implementation\n
+################ end of copyright property ####################################
+###############################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+       - Content may be structured and packaged into modules to facilitate delivering,\n\
+         extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+         plug-in fragments ("Fragments"), and features ("Features").\n\
+       - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+         in a directory named "plugins".\n\
+       - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+         Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+         Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+         numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+       - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+         named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+       - The top-level (root) directory\n\
+       - Plug-in and Fragment directories\n\
+       - Inside Plug-ins and Fragments packaged as JARs\n\
+       - Sub-directories of the directory named "src" of certain Plug-ins\n\
+       - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+       - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+       - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+       - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+       - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+       - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+       - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+       1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+          the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+          extending or updating the functionality of an Eclipse-based product.\n\
+       2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+          Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+       3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+          govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+          Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+          with the Specification. Such Installable Software Agreement must inform the user of the\n\
+          terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+          the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+          indication of agreement by the user, the provisioning Technology will complete installation\n\
+          of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/feature.xml b/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/feature.xml
new file mode 100644
index 0000000..af7bd48
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/feature.xml
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="org.eclipse.equinox.p2.rcp.feature"
+      label="%featureName"
+      version="1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd"
+      provider-name="%providerName"
+      image="eclipse_update_120.jpg"
+      
+      >
+
+   <description>
+      %description
+   </description>
+
+   <copyright>
+      %copyright
+   </copyright>
+
+   <license url="%licenseURL">
+      %license
+   </license>
+
+   <includes
+         id="org.eclipse.equinox.p2.core.feature"
+         version="1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.ui"
+         download-size="0"
+         install-size="0"
+         version="2.2.0.v20130119-010614"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.ui.sdk.scheduler"
+         download-size="0"
+         install-size="0"
+         version="1.1.0.v20110815-1744"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.updatechecker"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20110808-1657"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.security.ui"
+         download-size="0"
+         install-size="0"
+         version="1.1.100.v20120522-2049"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.ui.sdk"
+         download-size="0"
+         install-size="0"
+         version="1.0.200.v20120515-1650"
+         unpack="false"/>
+
+</feature>
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/license.html b/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/license.html
@@ -0,0 +1,108 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Foundation Software User Agreement</title>
+</head>
+
+<body lang="EN-US">
+<h2>Eclipse Foundation Software User Agreement</h2>
+<p>February 1, 2011</p>
+
+<h3>Usage Of Content</h3>
+
+<p>THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+   (COLLECTIVELY &quot;CONTENT&quot;).  USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+   CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+   OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+   NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+   CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.</p>
+
+<h3>Applicable Licenses</h3>
+
+<p>Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+   (&quot;EPL&quot;).  A copy of the EPL is provided with this Content and is also available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+   For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+   repository (&quot;Repository&quot;) in software modules (&quot;Modules&quot;) and made available as downloadable archives (&quot;Downloads&quot;).</p>
+
+<ul>
+       <li>Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content.  Typical modules may include plug-ins (&quot;Plug-ins&quot;), plug-in fragments (&quot;Fragments&quot;), and features (&quot;Features&quot;).</li>
+       <li>Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java&trade; ARchive) in a directory named &quot;plugins&quot;.</li>
+       <li>A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.  Each Feature may be packaged as a sub-directory in a directory named &quot;features&quot;.  Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of the Plug-ins
+      and/or Fragments associated with that Feature.</li>
+       <li>Features may also include other Features (&quot;Included Features&quot;). Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of Included Features.</li>
+</ul>
+
+<p>The terms and conditions governing Plug-ins and Fragments should be contained in files named &quot;about.html&quot; (&quot;Abouts&quot;). The terms and conditions governing Features and
+Included Features should be contained in files named &quot;license.html&quot; (&quot;Feature Licenses&quot;).  Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:</p>
+
+<ul>
+       <li>The top-level (root) directory</li>
+       <li>Plug-in and Fragment directories</li>
+       <li>Inside Plug-ins and Fragments packaged as JARs</li>
+       <li>Sub-directories of the directory named &quot;src&quot; of certain Plug-ins</li>
+       <li>Feature directories</li>
+</ul>
+
+<p>Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (&quot;Feature Update License&quot;) during the
+installation process.  If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them.  Feature Update Licenses may be found in the &quot;license&quot; property of files named &quot;feature.properties&quot; found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.</p>
+
+<p>THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.  SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):</p>
+
+<ul>
+       <li>Eclipse Distribution License Version 1.0 (available at <a href="http://www.eclipse.org/licenses/edl-v10.html">http://www.eclipse.org/licenses/edl-v1.0.html</a>)</li>
+       <li>Common Public License Version 1.0 (available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>)</li>
+       <li>Apache Software License 1.1 (available at <a href="http://www.apache.org/licenses/LICENSE">http://www.apache.org/licenses/LICENSE</a>)</li>
+       <li>Apache Software License 2.0 (available at <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>)</li>
+       <li>Metro Link Public License 1.00 (available at <a href="http://www.opengroup.org/openmotif/supporters/metrolink/license.html">http://www.opengroup.org/openmotif/supporters/metrolink/license.html</a>)</li>
+       <li>Mozilla Public License Version 1.1 (available at <a href="http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html</a>)</li>
+</ul>
+
+<p>IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT.  If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.</p>
+
+
+<h3>Use of Provisioning Technology</h3>
+
+<p>The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+   Update Manager (&quot;Provisioning Technology&quot;) for the purpose of allowing users to install software, documentation, information and/or
+   other materials (collectively &quot;Installable Software&quot;). This capability is provided with the intent of allowing such users to
+   install, extend and update Eclipse-based products. Information about packaging Installable Software is available at <a
+       href="http://eclipse.org/equinox/p2/repository_packaging.html">http://eclipse.org/equinox/p2/repository_packaging.html</a>
+   (&quot;Specification&quot;).</p>
+
+<p>You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+   applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+   in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+   Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:</p>
+
+<ol>
+       <li>A series of actions may occur (&quot;Provisioning Process&quot;) in which a user may execute the Provisioning Technology
+       on a machine (&quot;Target Machine&quot;) with the intent of installing, extending or updating the functionality of an Eclipse-based
+       product.</li>
+       <li>During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+       accessed and copied to the Target Machine.</li>
+       <li>Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+       Software (&quot;Installable Software Agreement&quot;) and such Installable Software Agreement shall be accessed from the Target
+       Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+       the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+       indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.</li>
+</ol>
+
+<h3>Cryptography</h3>
+
+<p>Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+   another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+   possession, or use, and re-export of encryption software, to see if this is permitted.</p>
+
+<p><small>Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.</small></p>
+</body>
+</html>
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/META-INF/ECLIPSE_.RSA b/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..2ced572
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/META-INF/ECLIPSE_.SF b/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..6f3068e
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/META-INF/ECLIPSE_.SF
@@ -0,0 +1,23 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: RxWVwNpQQ+O1xMnMD8QTEHamxpc=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: 4gIfTP5y3EzwI5ecyebQLugBMgo=

+

+Name: epl-v10.html

+SHA1-Digest: /iY8aEvT0IMpNnSjB0FpTUhvUGc=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: RyXo3knk5T635eCpQEPXyFBrCyA=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=

+

+Name: license.html

+SHA1-Digest: Rp9AnRyeUIxNWe10fjaMDkQB8rU=

+

+Name: feature.properties

+SHA1-Digest: PArBWP+cmsu1doF4teQmSSe/vmQ=

+

+Name: feature.xml

+SHA1-Digest: 8HPHnIzv0eNj8sohw4o168tMRSM=

+

diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/META-INF/MANIFEST.MF b/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..c65fa76
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/META-INF/MANIFEST.MF
@@ -0,0 +1,21 @@
+Manifest-Version: 1.0

+Created-By: 1.6.0 (IBM Corporation)

+

+Name: epl-v10.html

+SHA1-Digest: jYDaDJLBJpthCwPMgGFVYASJjIU=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: xstAqMgs/a5AsQXQZSdDQ79veOA=

+

+Name: license.html

+SHA1-Digest: /vLZjlHkZSXMSfPrWwNqOUDqqbM=

+

+Name: feature.properties

+SHA1-Digest: PUqzpThlpQxcAdDN2y6aKcfGM/0=

+

+Name: feature.xml

+SHA1-Digest: qsLpaKW0Ofomu/RhfXLeltvyi5c=

+

diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/META-INF/eclipse.inf b/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/eclipse_update_120.jpg b/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/eclipse_update_120.jpg
new file mode 100644
index 0000000..bfdf708
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/eclipse_update_120.jpg
Binary files differ
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/epl-v10.html b/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/epl-v10.html
new file mode 100644
index 0000000..fd39122
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/epl-v10.html
@@ -0,0 +1,261 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Public License - Version 1.0</title>
+<style type="text/css">
+  body {
+    size: 8.5in 11.0in;
+    margin: 0.25in 0.5in 0.25in 0.5in;
+    tab-interval: 0.5in;
+    }
+  p {  	
+    margin-left: auto;
+    margin-top:  0.5em;
+    margin-bottom: 0.5em;
+    }
+  p.list {
+  	margin-left: 0.5in;
+    margin-top:  0.05em;
+    margin-bottom: 0.05em;
+    }
+  </style>
+
+</head>
+
+<body lang="EN-US">
+
+<h2>Eclipse Public License - v 1.0</h2>
+
+<p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE (&quot;AGREEMENT&quot;). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.</p>
+
+<p><b>1. DEFINITIONS</b></p>
+
+<p>&quot;Contribution&quot; means:</p>
+
+<p class="list">a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and</p>
+<p class="list">b) in the case of each subsequent Contributor:</p>
+<p class="list">i) changes to the Program, and</p>
+<p class="list">ii) additions to the Program;</p>
+<p class="list">where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.</p>
+
+<p>&quot;Contributor&quot; means any person or entity that distributes
+the Program.</p>
+
+<p>&quot;Licensed Patents&quot; mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.</p>
+
+<p>&quot;Program&quot; means the Contributions distributed in accordance
+with this Agreement.</p>
+
+<p>&quot;Recipient&quot; means anyone who receives the Program under
+this Agreement, including all Contributors.</p>
+
+<p><b>2. GRANT OF RIGHTS</b></p>
+
+<p class="list">a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.</p>
+
+<p class="list">b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.</p>
+
+<p class="list">c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.</p>
+
+<p class="list">d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.</p>
+
+<p><b>3. REQUIREMENTS</b></p>
+
+<p>A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:</p>
+
+<p class="list">a) it complies with the terms and conditions of this
+Agreement; and</p>
+
+<p class="list">b) its license agreement:</p>
+
+<p class="list">i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;</p>
+
+<p class="list">ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;</p>
+
+<p class="list">iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and</p>
+
+<p class="list">iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.</p>
+
+<p>When the Program is made available in source code form:</p>
+
+<p class="list">a) it must be made available under this Agreement; and</p>
+
+<p class="list">b) a copy of this Agreement must be included with each
+copy of the Program.</p>
+
+<p>Contributors may not remove or alter any copyright notices contained
+within the Program.</p>
+
+<p>Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.</p>
+
+<p><b>4. COMMERCIAL DISTRIBUTION</b></p>
+
+<p>Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+(&quot;Commercial Contributor&quot;) hereby agrees to defend and
+indemnify every other Contributor (&quot;Indemnified Contributor&quot;)
+against any losses, damages and costs (collectively &quot;Losses&quot;)
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.</p>
+
+<p>For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.</p>
+
+<p><b>5. NO WARRANTY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.</p>
+
+<p><b>6. DISCLAIMER OF LIABILITY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), 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 OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.</p>
+
+<p><b>7. GENERAL</b></p>
+
+<p>If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.</p>
+
+<p>If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.</p>
+
+<p>All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.</p>
+
+<p>Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.</p>
+
+<p>This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.</p>
+
+</body>
+
+</html>
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/feature.properties b/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/feature.properties
new file mode 100644
index 0000000..e346b87
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/feature.properties
@@ -0,0 +1,191 @@
+###############################################################################
+# Copyright (c) 2011 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# "featureName" property - name of the feature
+featureName=Equinox p2 Provisioning for IDEs.
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org - Equinox
+
+# "updateSiteName" property - label for the update site
+updateSiteName=The Eclipse Project Updates
+
+# "description" property - description of the feature
+description=Eclipse p2 Provisioning Platform for use in IDE related scenarios
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2008, 2010 IBM Corporation and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+    IBM Corporation - initial API and implementation\n
+################ end of copyright property ###################################################################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+       - Content may be structured and packaged into modules to facilitate delivering,\n\
+         extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+         plug-in fragments ("Fragments"), and features ("Features").\n\
+       - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+         in a directory named "plugins".\n\
+       - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+         Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+         Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+         numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+       - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+         named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+       - The top-level (root) directory\n\
+       - Plug-in and Fragment directories\n\
+       - Inside Plug-ins and Fragments packaged as JARs\n\
+       - Sub-directories of the directory named "src" of certain Plug-ins\n\
+       - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+       - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+       - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+       - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+       - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+       - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+       - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+       1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+          the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+          extending or updating the functionality of an Eclipse-based product.\n\
+       2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+          Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+       3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+          govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+          Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+          with the Specification. Such Installable Software Agreement must inform the user of the\n\
+          terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+          the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+          indication of agreement by the user, the provisioning Technology will complete installation\n\
+          of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/feature.xml b/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/feature.xml
new file mode 100644
index 0000000..cde099c
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/feature.xml
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="org.eclipse.equinox.p2.user.ui"
+      label="%featureName"
+      version="2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H"
+      provider-name="%providerName"
+      image="eclipse_update_120.jpg"
+      
+      >
+
+   <description>
+      %description
+   </description>
+
+   <copyright>
+      %copyright
+   </copyright>
+
+   <license url="%licenseURL">
+      %license
+   </license>
+
+   <includes
+         id="org.eclipse.equinox.p2.core.feature"
+         version="1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0"/>
+
+   <includes
+         id="org.eclipse.equinox.p2.extras.feature"
+         version="1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w"/>
+
+   <includes
+         id="org.eclipse.equinox.p2.rcp.feature"
+         version="1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.updatesite"
+         download-size="0"
+         install-size="0"
+         version="1.0.400.v20120412-1615"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.ui.importexport"
+         download-size="0"
+         install-size="0"
+         version="1.0.1.v20120913-155635"
+         unpack="false"/>
+
+</feature>
diff --git a/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/license.html b/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/license.html
@@ -0,0 +1,108 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Foundation Software User Agreement</title>
+</head>
+
+<body lang="EN-US">
+<h2>Eclipse Foundation Software User Agreement</h2>
+<p>February 1, 2011</p>
+
+<h3>Usage Of Content</h3>
+
+<p>THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+   (COLLECTIVELY &quot;CONTENT&quot;).  USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+   CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+   OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+   NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+   CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.</p>
+
+<h3>Applicable Licenses</h3>
+
+<p>Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+   (&quot;EPL&quot;).  A copy of the EPL is provided with this Content and is also available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+   For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+   repository (&quot;Repository&quot;) in software modules (&quot;Modules&quot;) and made available as downloadable archives (&quot;Downloads&quot;).</p>
+
+<ul>
+       <li>Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content.  Typical modules may include plug-ins (&quot;Plug-ins&quot;), plug-in fragments (&quot;Fragments&quot;), and features (&quot;Features&quot;).</li>
+       <li>Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java&trade; ARchive) in a directory named &quot;plugins&quot;.</li>
+       <li>A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.  Each Feature may be packaged as a sub-directory in a directory named &quot;features&quot;.  Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of the Plug-ins
+      and/or Fragments associated with that Feature.</li>
+       <li>Features may also include other Features (&quot;Included Features&quot;). Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of Included Features.</li>
+</ul>
+
+<p>The terms and conditions governing Plug-ins and Fragments should be contained in files named &quot;about.html&quot; (&quot;Abouts&quot;). The terms and conditions governing Features and
+Included Features should be contained in files named &quot;license.html&quot; (&quot;Feature Licenses&quot;).  Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:</p>
+
+<ul>
+       <li>The top-level (root) directory</li>
+       <li>Plug-in and Fragment directories</li>
+       <li>Inside Plug-ins and Fragments packaged as JARs</li>
+       <li>Sub-directories of the directory named &quot;src&quot; of certain Plug-ins</li>
+       <li>Feature directories</li>
+</ul>
+
+<p>Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (&quot;Feature Update License&quot;) during the
+installation process.  If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them.  Feature Update Licenses may be found in the &quot;license&quot; property of files named &quot;feature.properties&quot; found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.</p>
+
+<p>THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.  SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):</p>
+
+<ul>
+       <li>Eclipse Distribution License Version 1.0 (available at <a href="http://www.eclipse.org/licenses/edl-v10.html">http://www.eclipse.org/licenses/edl-v1.0.html</a>)</li>
+       <li>Common Public License Version 1.0 (available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>)</li>
+       <li>Apache Software License 1.1 (available at <a href="http://www.apache.org/licenses/LICENSE">http://www.apache.org/licenses/LICENSE</a>)</li>
+       <li>Apache Software License 2.0 (available at <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>)</li>
+       <li>Metro Link Public License 1.00 (available at <a href="http://www.opengroup.org/openmotif/supporters/metrolink/license.html">http://www.opengroup.org/openmotif/supporters/metrolink/license.html</a>)</li>
+       <li>Mozilla Public License Version 1.1 (available at <a href="http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html</a>)</li>
+</ul>
+
+<p>IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT.  If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.</p>
+
+
+<h3>Use of Provisioning Technology</h3>
+
+<p>The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+   Update Manager (&quot;Provisioning Technology&quot;) for the purpose of allowing users to install software, documentation, information and/or
+   other materials (collectively &quot;Installable Software&quot;). This capability is provided with the intent of allowing such users to
+   install, extend and update Eclipse-based products. Information about packaging Installable Software is available at <a
+       href="http://eclipse.org/equinox/p2/repository_packaging.html">http://eclipse.org/equinox/p2/repository_packaging.html</a>
+   (&quot;Specification&quot;).</p>
+
+<p>You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+   applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+   in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+   Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:</p>
+
+<ol>
+       <li>A series of actions may occur (&quot;Provisioning Process&quot;) in which a user may execute the Provisioning Technology
+       on a machine (&quot;Target Machine&quot;) with the intent of installing, extending or updating the functionality of an Eclipse-based
+       product.</li>
+       <li>During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+       accessed and copied to the Target Machine.</li>
+       <li>Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+       Software (&quot;Installable Software Agreement&quot;) and such Installable Software Agreement shall be accessed from the Target
+       Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+       the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+       indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.</li>
+</ol>
+
+<h3>Cryptography</h3>
+
+<p>Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+   another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+   possession, or use, and re-export of encryption software, to see if this is permitted.</p>
+
+<p><small>Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.</small></p>
+</body>
+</html>
diff --git a/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/META-INF/ECLIPSE_.RSA b/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..a5b7694
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/META-INF/ECLIPSE_.SF b/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..9cd2b67
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/META-INF/ECLIPSE_.SF
@@ -0,0 +1,23 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: LvkHbF4kvXfiP9NXT/dRt0wBBvk=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: 4gIfTP5y3EzwI5ecyebQLugBMgo=

+

+Name: epl-v10.html

+SHA1-Digest: /iY8aEvT0IMpNnSjB0FpTUhvUGc=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: RyXo3knk5T635eCpQEPXyFBrCyA=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=

+

+Name: license.html

+SHA1-Digest: Rp9AnRyeUIxNWe10fjaMDkQB8rU=

+

+Name: feature.properties

+SHA1-Digest: WNCFbqw3rL0uKch+jHCBlFMqhZk=

+

+Name: feature.xml

+SHA1-Digest: fQXQ+xLOs5rBUbSgO+RVjsRp4mU=

+

diff --git a/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/META-INF/MANIFEST.MF b/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..e7e8cb9
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/META-INF/MANIFEST.MF
@@ -0,0 +1,21 @@
+Manifest-Version: 1.0

+Created-By: 1.6.0 (IBM Corporation)

+

+Name: epl-v10.html

+SHA1-Digest: jYDaDJLBJpthCwPMgGFVYASJjIU=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: xstAqMgs/a5AsQXQZSdDQ79veOA=

+

+Name: license.html

+SHA1-Digest: /vLZjlHkZSXMSfPrWwNqOUDqqbM=

+

+Name: feature.properties

+SHA1-Digest: BjNA+6yN4W23dRE5VOvfhiPA9b8=

+

+Name: feature.xml

+SHA1-Digest: mdi2fVPqzvPwCltXBHMkSKejuDw=

+

diff --git a/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/META-INF/eclipse.inf b/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/eclipse_update_120.jpg b/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/eclipse_update_120.jpg
new file mode 100644
index 0000000..bfdf708
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/eclipse_update_120.jpg
Binary files differ
diff --git a/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/epl-v10.html b/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/epl-v10.html
new file mode 100644
index 0000000..fd39122
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/epl-v10.html
@@ -0,0 +1,261 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Public License - Version 1.0</title>
+<style type="text/css">
+  body {
+    size: 8.5in 11.0in;
+    margin: 0.25in 0.5in 0.25in 0.5in;
+    tab-interval: 0.5in;
+    }
+  p {  	
+    margin-left: auto;
+    margin-top:  0.5em;
+    margin-bottom: 0.5em;
+    }
+  p.list {
+  	margin-left: 0.5in;
+    margin-top:  0.05em;
+    margin-bottom: 0.05em;
+    }
+  </style>
+
+</head>
+
+<body lang="EN-US">
+
+<h2>Eclipse Public License - v 1.0</h2>
+
+<p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE (&quot;AGREEMENT&quot;). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.</p>
+
+<p><b>1. DEFINITIONS</b></p>
+
+<p>&quot;Contribution&quot; means:</p>
+
+<p class="list">a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and</p>
+<p class="list">b) in the case of each subsequent Contributor:</p>
+<p class="list">i) changes to the Program, and</p>
+<p class="list">ii) additions to the Program;</p>
+<p class="list">where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.</p>
+
+<p>&quot;Contributor&quot; means any person or entity that distributes
+the Program.</p>
+
+<p>&quot;Licensed Patents&quot; mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.</p>
+
+<p>&quot;Program&quot; means the Contributions distributed in accordance
+with this Agreement.</p>
+
+<p>&quot;Recipient&quot; means anyone who receives the Program under
+this Agreement, including all Contributors.</p>
+
+<p><b>2. GRANT OF RIGHTS</b></p>
+
+<p class="list">a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.</p>
+
+<p class="list">b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.</p>
+
+<p class="list">c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.</p>
+
+<p class="list">d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.</p>
+
+<p><b>3. REQUIREMENTS</b></p>
+
+<p>A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:</p>
+
+<p class="list">a) it complies with the terms and conditions of this
+Agreement; and</p>
+
+<p class="list">b) its license agreement:</p>
+
+<p class="list">i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;</p>
+
+<p class="list">ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;</p>
+
+<p class="list">iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and</p>
+
+<p class="list">iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.</p>
+
+<p>When the Program is made available in source code form:</p>
+
+<p class="list">a) it must be made available under this Agreement; and</p>
+
+<p class="list">b) a copy of this Agreement must be included with each
+copy of the Program.</p>
+
+<p>Contributors may not remove or alter any copyright notices contained
+within the Program.</p>
+
+<p>Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.</p>
+
+<p><b>4. COMMERCIAL DISTRIBUTION</b></p>
+
+<p>Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+(&quot;Commercial Contributor&quot;) hereby agrees to defend and
+indemnify every other Contributor (&quot;Indemnified Contributor&quot;)
+against any losses, damages and costs (collectively &quot;Losses&quot;)
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.</p>
+
+<p>For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.</p>
+
+<p><b>5. NO WARRANTY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.</p>
+
+<p><b>6. DISCLAIMER OF LIABILITY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), 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 OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.</p>
+
+<p><b>7. GENERAL</b></p>
+
+<p>If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.</p>
+
+<p>If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.</p>
+
+<p>All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.</p>
+
+<p>Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.</p>
+
+<p>This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.</p>
+
+</body>
+
+</html>
diff --git a/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/feature.properties b/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/feature.properties
new file mode 100644
index 0000000..b9291ae
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/feature.properties
@@ -0,0 +1,194 @@
+###############################################################################
+# Copyright (c) 2008, 2012 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Eclipse Help System
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org
+
+# "description" property - description of the feature
+description=Eclipse help system.
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2008, 2012 IBM Corporation and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+    IBM Corporation - initial API and implementation\n
+################ end of copyright property ###################################################################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+       - Content may be structured and packaged into modules to facilitate delivering,\n\
+         extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+         plug-in fragments ("Fragments"), and features ("Features").\n\
+       - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+         in a directory named "plugins".\n\
+       - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+         Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+         Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+         numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+       - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+         named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+       - The top-level (root) directory\n\
+       - Plug-in and Fragment directories\n\
+       - Inside Plug-ins and Fragments packaged as JARs\n\
+       - Sub-directories of the directory named "src" of certain Plug-ins\n\
+       - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+       - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+       - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+       - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+       - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+       - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+       - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+       1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+          the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+          extending or updating the functionality of an Eclipse-based product.\n\
+       2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+          Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+       3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+          govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+          Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+          with the Specification. Such Installable Software Agreement must inform the user of the\n\
+          terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+          the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+          indication of agreement by the user, the provisioning Technology will complete installation\n\
+          of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/feature.xml b/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/feature.xml
new file mode 100644
index 0000000..e5d7ccd
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/feature.xml
@@ -0,0 +1,192 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="org.eclipse.help"
+      label="%featureName"
+      version="1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4"
+      provider-name="%providerName"
+      plugin="org.eclipse.help.base"
+      
+      >    
+      
+   <description>
+      %description
+   </description>
+
+   <copyright>
+      %copyright
+   </copyright>
+
+   <license url="%licenseURL">
+      %license
+   </license>
+
+   <plugin
+         id="javax.el"
+         download-size="0"
+         install-size="0"
+         version="2.2.0.v201108011116"
+         unpack="false"/>
+   
+   <plugin
+         id="javax.servlet"
+         download-size="0"
+         install-size="0"
+         version="3.0.0.v201112011016"
+         unpack="false"/>
+
+   <plugin
+         id="javax.servlet.jsp"
+         download-size="0"
+         install-size="0"
+         version="2.2.0.v201112011158"
+         unpack="false"/>
+  
+   <plugin
+         id="com.sun.el"
+         download-size="0"
+         install-size="0"
+         version="2.2.0.v201108011116"
+         unpack="false"/>
+
+   <plugin
+         id="org.apache.commons.logging"
+         download-size="0"
+         install-size="0"
+         version="1.0.4.v201101211617"
+         unpack="false"/>
+
+   <plugin
+         id="org.apache.jasper.glassfish"
+         download-size="0"
+         install-size="0"
+         version="2.2.2.v201205150955"
+         unpack="false"/>
+
+   <plugin
+         id="org.apache.lucene"
+         download-size="0"
+         install-size="0"
+         version="2.9.1.v201101211721"
+         unpack="false"/>
+
+   <plugin
+         id="org.apache.lucene.analysis"
+         download-size="0"
+         install-size="0"
+         version="2.9.1.v201101211721"
+         unpack="false"/>
+         
+    <plugin
+         id="org.apache.lucene.core"
+         download-size="0"
+         install-size="0"
+         version="2.9.1.v201101211721"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.http.jetty"
+         download-size="0"
+         install-size="0"
+         version="3.0.1.v20121109-203239"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.http.registry"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120912-130548"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.http.servlet"
+         download-size="0"
+         install-size="0"
+         version="1.1.300.v20120912-130548"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.jsp.jasper"
+         download-size="0"
+         install-size="0"
+         version="1.0.400.v20120912-130548"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.jsp.jasper.registry"
+         download-size="0"
+         install-size="0"
+         version="1.0.300.v20120912-130548"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.help.base"
+         download-size="0"
+         install-size="0"
+         version="3.6.101.v201302041200"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.help.ui"
+         download-size="0"
+         install-size="0"
+         version="3.5.201.v20130108-092756"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.help.webapp"
+         download-size="0"
+         install-size="0"
+         version="3.6.101.v20130116-182509"
+         unpack="false"/>
+   
+         
+   <plugin
+         id="org.eclipse.jetty.continuation"
+         download-size="0"
+         install-size="0"
+         version="8.1.3.v20120522"
+         unpack="false"/>   
+    
+     <plugin
+         id="org.eclipse.jetty.http"
+         download-size="0"
+         install-size="0"
+         version="8.1.3.v20120522"
+         unpack="false"/>   
+    
+     <plugin
+         id="org.eclipse.jetty.io"
+         download-size="0"
+         install-size="0"
+         version="8.1.3.v20120522"
+         unpack="false"/>
+    
+    <plugin
+         id="org.eclipse.jetty.security"
+         download-size="0"
+         install-size="0"
+         version="8.1.3.v20120522"
+         unpack="false"/>
+
+    <plugin
+         id="org.eclipse.jetty.server"
+         download-size="0"
+         install-size="0"
+         version="8.1.3.v20120522"
+         unpack="false"/>
+
+<plugin
+         id="org.eclipse.jetty.servlet"
+         download-size="0"
+         install-size="0"
+         version="8.1.3.v20120522"
+         unpack="false"/>
+
+<plugin
+         id="org.eclipse.jetty.util"
+         download-size="0"
+         install-size="0"
+         version="8.1.3.v20120522"
+         unpack="false"/>
+  
+</feature>
diff --git a/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/license.html b/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/license.html
@@ -0,0 +1,108 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Foundation Software User Agreement</title>
+</head>
+
+<body lang="EN-US">
+<h2>Eclipse Foundation Software User Agreement</h2>
+<p>February 1, 2011</p>
+
+<h3>Usage Of Content</h3>
+
+<p>THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+   (COLLECTIVELY &quot;CONTENT&quot;).  USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+   CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+   OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+   NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+   CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.</p>
+
+<h3>Applicable Licenses</h3>
+
+<p>Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+   (&quot;EPL&quot;).  A copy of the EPL is provided with this Content and is also available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+   For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+   repository (&quot;Repository&quot;) in software modules (&quot;Modules&quot;) and made available as downloadable archives (&quot;Downloads&quot;).</p>
+
+<ul>
+       <li>Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content.  Typical modules may include plug-ins (&quot;Plug-ins&quot;), plug-in fragments (&quot;Fragments&quot;), and features (&quot;Features&quot;).</li>
+       <li>Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java&trade; ARchive) in a directory named &quot;plugins&quot;.</li>
+       <li>A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.  Each Feature may be packaged as a sub-directory in a directory named &quot;features&quot;.  Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of the Plug-ins
+      and/or Fragments associated with that Feature.</li>
+       <li>Features may also include other Features (&quot;Included Features&quot;). Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of Included Features.</li>
+</ul>
+
+<p>The terms and conditions governing Plug-ins and Fragments should be contained in files named &quot;about.html&quot; (&quot;Abouts&quot;). The terms and conditions governing Features and
+Included Features should be contained in files named &quot;license.html&quot; (&quot;Feature Licenses&quot;).  Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:</p>
+
+<ul>
+       <li>The top-level (root) directory</li>
+       <li>Plug-in and Fragment directories</li>
+       <li>Inside Plug-ins and Fragments packaged as JARs</li>
+       <li>Sub-directories of the directory named &quot;src&quot; of certain Plug-ins</li>
+       <li>Feature directories</li>
+</ul>
+
+<p>Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (&quot;Feature Update License&quot;) during the
+installation process.  If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them.  Feature Update Licenses may be found in the &quot;license&quot; property of files named &quot;feature.properties&quot; found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.</p>
+
+<p>THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.  SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):</p>
+
+<ul>
+       <li>Eclipse Distribution License Version 1.0 (available at <a href="http://www.eclipse.org/licenses/edl-v10.html">http://www.eclipse.org/licenses/edl-v1.0.html</a>)</li>
+       <li>Common Public License Version 1.0 (available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>)</li>
+       <li>Apache Software License 1.1 (available at <a href="http://www.apache.org/licenses/LICENSE">http://www.apache.org/licenses/LICENSE</a>)</li>
+       <li>Apache Software License 2.0 (available at <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>)</li>
+       <li>Metro Link Public License 1.00 (available at <a href="http://www.opengroup.org/openmotif/supporters/metrolink/license.html">http://www.opengroup.org/openmotif/supporters/metrolink/license.html</a>)</li>
+       <li>Mozilla Public License Version 1.1 (available at <a href="http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html</a>)</li>
+</ul>
+
+<p>IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT.  If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.</p>
+
+
+<h3>Use of Provisioning Technology</h3>
+
+<p>The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+   Update Manager (&quot;Provisioning Technology&quot;) for the purpose of allowing users to install software, documentation, information and/or
+   other materials (collectively &quot;Installable Software&quot;). This capability is provided with the intent of allowing such users to
+   install, extend and update Eclipse-based products. Information about packaging Installable Software is available at <a
+       href="http://eclipse.org/equinox/p2/repository_packaging.html">http://eclipse.org/equinox/p2/repository_packaging.html</a>
+   (&quot;Specification&quot;).</p>
+
+<p>You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+   applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+   in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+   Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:</p>
+
+<ol>
+       <li>A series of actions may occur (&quot;Provisioning Process&quot;) in which a user may execute the Provisioning Technology
+       on a machine (&quot;Target Machine&quot;) with the intent of installing, extending or updating the functionality of an Eclipse-based
+       product.</li>
+       <li>During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+       accessed and copied to the Target Machine.</li>
+       <li>Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+       Software (&quot;Installable Software Agreement&quot;) and such Installable Software Agreement shall be accessed from the Target
+       Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+       the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+       indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.</li>
+</ol>
+
+<h3>Cryptography</h3>
+
+<p>Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+   another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+   possession, or use, and re-export of encryption software, to see if this is permitted.</p>
+
+<p><small>Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.</small></p>
+</body>
+</html>
diff --git a/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/META-INF/ECLIPSE_.RSA b/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..e548b07
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/META-INF/ECLIPSE_.SF b/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..c1e87cc
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/META-INF/ECLIPSE_.SF
@@ -0,0 +1,23 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: swWjsbx6qviZmoTysbyc/o9JVzI=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: 4gIfTP5y3EzwI5ecyebQLugBMgo=

+

+Name: epl-v10.html

+SHA1-Digest: /iY8aEvT0IMpNnSjB0FpTUhvUGc=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: RyXo3knk5T635eCpQEPXyFBrCyA=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=

+

+Name: license.html

+SHA1-Digest: Rp9AnRyeUIxNWe10fjaMDkQB8rU=

+

+Name: feature.properties

+SHA1-Digest: rYGVpR0fhWnopqo2z02srk2sq28=

+

+Name: feature.xml

+SHA1-Digest: u5bPuZfWbpijiRXslYqubcxbmsw=

+

diff --git a/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/META-INF/MANIFEST.MF b/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..1f6dbe2
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/META-INF/MANIFEST.MF
@@ -0,0 +1,21 @@
+Manifest-Version: 1.0

+Created-By: 1.6.0 (IBM Corporation)

+

+Name: epl-v10.html

+SHA1-Digest: jYDaDJLBJpthCwPMgGFVYASJjIU=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: xstAqMgs/a5AsQXQZSdDQ79veOA=

+

+Name: license.html

+SHA1-Digest: /vLZjlHkZSXMSfPrWwNqOUDqqbM=

+

+Name: feature.properties

+SHA1-Digest: x9z1kZ42kWFfe6SSSwlhOkf4kQo=

+

+Name: feature.xml

+SHA1-Digest: JeM7qjxE4A9AJNTtJ1D6GcnWnK8=

+

diff --git a/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/META-INF/eclipse.inf b/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/eclipse_update_120.jpg b/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/eclipse_update_120.jpg
new file mode 100644
index 0000000..bfdf708
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/eclipse_update_120.jpg
Binary files differ
diff --git a/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/epl-v10.html b/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/epl-v10.html
new file mode 100644
index 0000000..fd39122
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/epl-v10.html
@@ -0,0 +1,261 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Public License - Version 1.0</title>
+<style type="text/css">
+  body {
+    size: 8.5in 11.0in;
+    margin: 0.25in 0.5in 0.25in 0.5in;
+    tab-interval: 0.5in;
+    }
+  p {  	
+    margin-left: auto;
+    margin-top:  0.5em;
+    margin-bottom: 0.5em;
+    }
+  p.list {
+  	margin-left: 0.5in;
+    margin-top:  0.05em;
+    margin-bottom: 0.05em;
+    }
+  </style>
+
+</head>
+
+<body lang="EN-US">
+
+<h2>Eclipse Public License - v 1.0</h2>
+
+<p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE (&quot;AGREEMENT&quot;). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.</p>
+
+<p><b>1. DEFINITIONS</b></p>
+
+<p>&quot;Contribution&quot; means:</p>
+
+<p class="list">a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and</p>
+<p class="list">b) in the case of each subsequent Contributor:</p>
+<p class="list">i) changes to the Program, and</p>
+<p class="list">ii) additions to the Program;</p>
+<p class="list">where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.</p>
+
+<p>&quot;Contributor&quot; means any person or entity that distributes
+the Program.</p>
+
+<p>&quot;Licensed Patents&quot; mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.</p>
+
+<p>&quot;Program&quot; means the Contributions distributed in accordance
+with this Agreement.</p>
+
+<p>&quot;Recipient&quot; means anyone who receives the Program under
+this Agreement, including all Contributors.</p>
+
+<p><b>2. GRANT OF RIGHTS</b></p>
+
+<p class="list">a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.</p>
+
+<p class="list">b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.</p>
+
+<p class="list">c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.</p>
+
+<p class="list">d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.</p>
+
+<p><b>3. REQUIREMENTS</b></p>
+
+<p>A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:</p>
+
+<p class="list">a) it complies with the terms and conditions of this
+Agreement; and</p>
+
+<p class="list">b) its license agreement:</p>
+
+<p class="list">i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;</p>
+
+<p class="list">ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;</p>
+
+<p class="list">iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and</p>
+
+<p class="list">iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.</p>
+
+<p>When the Program is made available in source code form:</p>
+
+<p class="list">a) it must be made available under this Agreement; and</p>
+
+<p class="list">b) a copy of this Agreement must be included with each
+copy of the Program.</p>
+
+<p>Contributors may not remove or alter any copyright notices contained
+within the Program.</p>
+
+<p>Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.</p>
+
+<p><b>4. COMMERCIAL DISTRIBUTION</b></p>
+
+<p>Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+(&quot;Commercial Contributor&quot;) hereby agrees to defend and
+indemnify every other Contributor (&quot;Indemnified Contributor&quot;)
+against any losses, damages and costs (collectively &quot;Losses&quot;)
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.</p>
+
+<p>For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.</p>
+
+<p><b>5. NO WARRANTY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.</p>
+
+<p><b>6. DISCLAIMER OF LIABILITY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), 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 OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.</p>
+
+<p><b>7. GENERAL</b></p>
+
+<p>If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.</p>
+
+<p>If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.</p>
+
+<p>All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.</p>
+
+<p>Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.</p>
+
+<p>This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.</p>
+
+</body>
+
+</html>
diff --git a/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/feature.properties b/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/feature.properties
new file mode 100644
index 0000000..eb50333
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/feature.properties
@@ -0,0 +1,191 @@
+###############################################################################
+# Copyright (c) 2000, 2011 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Eclipse Platform
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org
+
+# "description" property - description of the feature
+description=Common OS-independent base of the Eclipse platform. (Binary runtime and user documentation.)
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2000, 2011 IBM Corporation and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+################ end of copyright property ###################################################################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+       - Content may be structured and packaged into modules to facilitate delivering,\n\
+         extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+         plug-in fragments ("Fragments"), and features ("Features").\n\
+       - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+         in a directory named "plugins".\n\
+       - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+         Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+         Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+         numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+       - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+         named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+       - The top-level (root) directory\n\
+       - Plug-in and Fragment directories\n\
+       - Inside Plug-ins and Fragments packaged as JARs\n\
+       - Sub-directories of the directory named "src" of certain Plug-ins\n\
+       - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+       - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+       - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+       - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+       - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+       - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+       - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+       1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+          the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+          extending or updating the functionality of an Eclipse-based product.\n\
+       2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+          Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+       3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+          govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+          Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+          with the Specification. Such Installable Software Agreement must inform the user of the\n\
+          terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+          the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+          indication of agreement by the user, the provisioning Technology will complete installation\n\
+          of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/feature.xml b/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/feature.xml
new file mode 100644
index 0000000..d6fc539
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/feature.xml
@@ -0,0 +1,581 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="org.eclipse.platform"
+      label="%featureName"
+      version="4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7"
+      provider-name="%providerName"
+      image="eclipse_update_120.jpg"
+      
+      >
+
+   <description>
+      %description
+   </description>
+
+   <copyright>
+      %copyright
+   </copyright>
+
+   <license url="%licenseURL">
+      %license
+   </license>
+
+   <includes
+         id="org.eclipse.rcp"
+         version="4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h"/>
+
+   <includes
+         id="org.eclipse.equinox.p2.user.ui"
+         version="2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H"
+         optional="true"/>
+
+   <includes
+         id="org.eclipse.help"
+         version="1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4"/>
+
+   <plugin
+         id="org.apache.ant"
+         download-size="0"
+         install-size="0"
+         version="1.8.3.v201301120609"/>
+
+   <plugin
+         id="org.eclipse.ant.core"
+         download-size="0"
+         install-size="0"
+         version="3.2.401.v20121204-162022"
+         unpack="false"/>
+
+   <plugin
+         id="com.jcraft.jsch"
+         download-size="0"
+         install-size="0"
+         version="0.1.46.v201205102330"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.compare.core"
+         download-size="0"
+         install-size="0"
+         version="3.5.200.v20120522-1148"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.compare"
+         download-size="0"
+         install-size="0"
+         version="3.5.301.v20130125-135424"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.compare.win32"
+         os="win32"
+         download-size="0"
+         install-size="0"
+         version="1.0.200.v20120914-154749"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.filebuffers"
+         download-size="0"
+         install-size="0"
+         version="3.5.200.v20120523-1310"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.filesystem"
+         download-size="0"
+         install-size="0"
+         version="1.3.200.v20130115-145044"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.net"
+         download-size="0"
+         install-size="0"
+         version="1.2.200.v20120914-093638"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.net.win32.x86"
+         os="win32"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="1.0.100.v20120522-1148"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.net.linux.x86_64"
+         os="linux"
+         arch="x86_64"
+         download-size="0"
+         install-size="0"
+         version="1.1.0.v20120522-1148"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.net.win32.x86_64"
+         os="win32"
+         arch="x86_64"
+         download-size="0"
+         install-size="0"
+         version="1.0.100.v20120522-1148"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.net.linux.x86"
+         os="linux"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120522-1148"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.resources"
+         download-size="0"
+         install-size="0"
+         version="3.8.1.v20121114-124432"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.runtime.compatibility"
+         download-size="0"
+         install-size="0"
+         version="3.2.200.v20120521-2346"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.runtime.compatibility.registry"
+         download-size="0"
+         install-size="0"
+         version="3.5.101.v20130108-163257"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.osgi.util"
+         download-size="0"
+         install-size="0"
+         version="3.2.300.v20120913-144807"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.debug.core"
+         download-size="0"
+         install-size="0"
+         version="3.7.100.v20120521-2012"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.debug.ui"
+         download-size="0"
+         install-size="0"
+         version="3.8.2.v20130130-171415"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.event"
+         download-size="0"
+         install-size="0"
+         version="1.2.200.v20120522-2049"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ltk.core.refactoring"
+         download-size="0"
+         install-size="0"
+         version="3.6.0.v20120523-1543"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ltk.ui.refactoring"
+         download-size="0"
+         install-size="0"
+         version="3.7.0.v20120523-1543"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.platform"
+         download-size="0"
+         install-size="0"
+         version="4.2.2.v201302041200"/>
+
+   <plugin
+         id="org.eclipse.platform.doc.user"
+         download-size="0"
+         install-size="0"
+         version="4.2.2.v20130121-200410"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.search"
+         download-size="0"
+         install-size="0"
+         version="3.8.0.v20120523-1540"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.team.core"
+         download-size="0"
+         install-size="0"
+         version="3.6.100.v20120524-0627"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.team.ui"
+         download-size="0"
+         install-size="0"
+         version="3.6.201.v20130125-135424"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.text"
+         download-size="0"
+         install-size="0"
+         version="3.5.200.v20120523-1310"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.jface.text"
+         download-size="0"
+         install-size="0"
+         version="3.8.2.v20121126-164145"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.jsch.core"
+         download-size="0"
+         install-size="0"
+         version="1.1.400.v20120522-1148"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.jsch.ui"
+         download-size="0"
+         install-size="0"
+         version="1.1.400.v20120522-1148"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.console"
+         download-size="0"
+         install-size="0"
+         version="3.5.100.v20120521-2012"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.intro"
+         download-size="0"
+         install-size="0"
+         version="3.4.200.v20120521-2344"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.intro.universal"
+         download-size="0"
+         install-size="0"
+         version="3.2.600.v20120912-155524"/>
+
+   <plugin
+         id="org.eclipse.ui.cheatsheets"
+         download-size="0"
+         install-size="0"
+         version="3.4.200.v20120521-2344"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.browser"
+         download-size="0"
+         install-size="0"
+         version="3.4.2.v20130123-162658"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.navigator"
+         download-size="0"
+         install-size="0"
+         version="3.5.200.v20120705-114103"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.navigator.resources"
+         download-size="0"
+         install-size="0"
+         version="3.4.400.v20120705-114010"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.net"
+         download-size="0"
+         install-size="0"
+         version="1.2.101.v20120914-093638"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.workbench.texteditor"
+         download-size="0"
+         install-size="0"
+         version="3.8.0.v20120523-1310"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.views"
+         download-size="0"
+         install-size="0"
+         version="3.6.100.v20120705-114010"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.editors"
+         download-size="0"
+         install-size="0"
+         version="3.8.0.v20120523-1540"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.externaltools"
+         download-size="0"
+         install-size="0"
+         version="3.2.100.v20120530-1753"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.ide"
+         download-size="0"
+         install-size="0"
+         version="3.8.2.v20121106-165923"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.ide.application"
+         download-size="0"
+         install-size="0"
+         version="1.0.400.v20120523-1955"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.win32"
+         ws="win32"
+         download-size="0"
+         install-size="0"
+         version="3.2.302.v20130123-162658"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.filesystem.aix.ppc"
+         os="aix"
+         arch="ppc"
+         download-size="0"
+         install-size="0"
+         version="1.1.0.v20120913-135826"
+         fragment="true"
+         unpack="false"/>
+
+<plugin
+         id="org.eclipse.core.filesystem.aix.ppc64"
+         os="aix"
+         arch="ppc64"
+         download-size="0"
+         install-size="0"
+         version="1.1.0.v20120913-135826"
+         fragment="true"
+         unpack="false"/>
+         
+   <plugin
+         id="org.eclipse.core.filesystem.hpux.ia64_32"
+         os="hpux"
+         arch="ia64_32"
+         download-size="0"
+         install-size="0"
+         version="1.0.101.v20121109-194007"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.filesystem.linux.x86"
+         os="linux"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="1.4.0.v20120522-1137"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.filesystem.linux.x86_64"
+         os="linux"
+         arch="x86_64"
+         download-size="0"
+         install-size="0"
+         version="1.2.0.v20120522-1137"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.filesystem.solaris.sparc"
+         os="solaris"
+         arch="sparc"
+         download-size="0"
+         install-size="0"
+         version="1.2.0.v20120913-135826"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.filesystem.macosx"
+         os="macosx"
+         download-size="0"
+         install-size="0"
+         version="1.3.0.v20120522-1137"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.filesystem.win32.x86"
+         os="win32"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="1.1.300.v20120522-1137"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.resources.win32.x86"
+         os="win32"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="3.5.100.v20120522-1137"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.filesystem.win32.x86_64"
+         os="win32"
+         arch="x86_64"
+         download-size="0"
+         install-size="0"
+         version="1.1.300.v20120522-1137"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.filesystem.linux.ppc"
+         os="linux"
+         arch="ppc"
+         download-size="0"
+         install-size="0"
+         version="1.0.200.v20120913-135826"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.filesystem.linux.ppc64"
+         os="linux"
+         arch="ppc64"
+         download-size="0"
+         install-size="0"
+         version="1.4.0.v20130108-094530"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.variables"
+         download-size="0"
+         install-size="0"
+         version="3.2.600.v20120521-2012"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.forms"
+         download-size="0"
+         install-size="0"
+         version="3.5.200.v20120705-114351"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.views.properties.tabbed"
+         download-size="0"
+         install-size="0"
+         version="3.5.300.v20120912-132807"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.security"
+         download-size="0"
+         install-size="0"
+         version="1.1.100.v20120522-1841"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.security.ui"
+         download-size="0"
+         install-size="0"
+         version="1.1.100.v20120522-2049"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.security.win32.x86"
+         os="win32"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="1.0.300.v20120522-2049"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.security.win32.x86_64"
+         os="win32"
+         arch="x86_64"
+         download-size="0"
+         install-size="0"
+         version="1.0.100.v20120522-2049"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.security.macosx"
+         os="macosx"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="1.100.200.v20120522-2049"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.security.macosx"
+         os="macosx"
+         arch="x86_64"
+         download-size="0"
+         install-size="0"
+         version="1.100.200.v20120522-2049"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.security.macosx"
+         os="macosx"
+         arch="ppc"
+         download-size="0"
+         install-size="0"
+         version="1.100.200.v20120522-2049"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.externaltools"
+         download-size="0"
+         install-size="0"
+         version="1.0.100.v20120521-2012"
+         unpack="false"/>
+
+</feature>
\ No newline at end of file
diff --git a/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/license.html b/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/license.html
@@ -0,0 +1,108 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Foundation Software User Agreement</title>
+</head>
+
+<body lang="EN-US">
+<h2>Eclipse Foundation Software User Agreement</h2>
+<p>February 1, 2011</p>
+
+<h3>Usage Of Content</h3>
+
+<p>THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+   (COLLECTIVELY &quot;CONTENT&quot;).  USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+   CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+   OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+   NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+   CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.</p>
+
+<h3>Applicable Licenses</h3>
+
+<p>Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+   (&quot;EPL&quot;).  A copy of the EPL is provided with this Content and is also available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+   For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+   repository (&quot;Repository&quot;) in software modules (&quot;Modules&quot;) and made available as downloadable archives (&quot;Downloads&quot;).</p>
+
+<ul>
+       <li>Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content.  Typical modules may include plug-ins (&quot;Plug-ins&quot;), plug-in fragments (&quot;Fragments&quot;), and features (&quot;Features&quot;).</li>
+       <li>Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java&trade; ARchive) in a directory named &quot;plugins&quot;.</li>
+       <li>A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.  Each Feature may be packaged as a sub-directory in a directory named &quot;features&quot;.  Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of the Plug-ins
+      and/or Fragments associated with that Feature.</li>
+       <li>Features may also include other Features (&quot;Included Features&quot;). Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of Included Features.</li>
+</ul>
+
+<p>The terms and conditions governing Plug-ins and Fragments should be contained in files named &quot;about.html&quot; (&quot;Abouts&quot;). The terms and conditions governing Features and
+Included Features should be contained in files named &quot;license.html&quot; (&quot;Feature Licenses&quot;).  Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:</p>
+
+<ul>
+       <li>The top-level (root) directory</li>
+       <li>Plug-in and Fragment directories</li>
+       <li>Inside Plug-ins and Fragments packaged as JARs</li>
+       <li>Sub-directories of the directory named &quot;src&quot; of certain Plug-ins</li>
+       <li>Feature directories</li>
+</ul>
+
+<p>Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (&quot;Feature Update License&quot;) during the
+installation process.  If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them.  Feature Update Licenses may be found in the &quot;license&quot; property of files named &quot;feature.properties&quot; found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.</p>
+
+<p>THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.  SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):</p>
+
+<ul>
+       <li>Eclipse Distribution License Version 1.0 (available at <a href="http://www.eclipse.org/licenses/edl-v10.html">http://www.eclipse.org/licenses/edl-v1.0.html</a>)</li>
+       <li>Common Public License Version 1.0 (available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>)</li>
+       <li>Apache Software License 1.1 (available at <a href="http://www.apache.org/licenses/LICENSE">http://www.apache.org/licenses/LICENSE</a>)</li>
+       <li>Apache Software License 2.0 (available at <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>)</li>
+       <li>Metro Link Public License 1.00 (available at <a href="http://www.opengroup.org/openmotif/supporters/metrolink/license.html">http://www.opengroup.org/openmotif/supporters/metrolink/license.html</a>)</li>
+       <li>Mozilla Public License Version 1.1 (available at <a href="http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html</a>)</li>
+</ul>
+
+<p>IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT.  If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.</p>
+
+
+<h3>Use of Provisioning Technology</h3>
+
+<p>The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+   Update Manager (&quot;Provisioning Technology&quot;) for the purpose of allowing users to install software, documentation, information and/or
+   other materials (collectively &quot;Installable Software&quot;). This capability is provided with the intent of allowing such users to
+   install, extend and update Eclipse-based products. Information about packaging Installable Software is available at <a
+       href="http://eclipse.org/equinox/p2/repository_packaging.html">http://eclipse.org/equinox/p2/repository_packaging.html</a>
+   (&quot;Specification&quot;).</p>
+
+<p>You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+   applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+   in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+   Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:</p>
+
+<ol>
+       <li>A series of actions may occur (&quot;Provisioning Process&quot;) in which a user may execute the Provisioning Technology
+       on a machine (&quot;Target Machine&quot;) with the intent of installing, extending or updating the functionality of an Eclipse-based
+       product.</li>
+       <li>During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+       accessed and copied to the Target Machine.</li>
+       <li>Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+       Software (&quot;Installable Software Agreement&quot;) and such Installable Software Agreement shall be accessed from the Target
+       Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+       the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+       indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.</li>
+</ol>
+
+<h3>Cryptography</h3>
+
+<p>Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+   another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+   possession, or use, and re-export of encryption software, to see if this is permitted.</p>
+
+<p><small>Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.</small></p>
+</body>
+</html>
diff --git a/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/META-INF/ECLIPSE_.RSA b/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..4633d32
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/META-INF/ECLIPSE_.SF b/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..c07c11f
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/META-INF/ECLIPSE_.SF
@@ -0,0 +1,23 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: 5lDpuR5O+y4L0ws4H0apDaRlxZE=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: 4gIfTP5y3EzwI5ecyebQLugBMgo=

+

+Name: epl-v10.html

+SHA1-Digest: /iY8aEvT0IMpNnSjB0FpTUhvUGc=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: RyXo3knk5T635eCpQEPXyFBrCyA=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=

+

+Name: license.html

+SHA1-Digest: Rp9AnRyeUIxNWe10fjaMDkQB8rU=

+

+Name: feature.properties

+SHA1-Digest: k8Cjei7nwx8AzOsCo2n8mN36CKw=

+

+Name: feature.xml

+SHA1-Digest: ICMYIXh/s3FGfyfqERouG+Q8bXw=

+

diff --git a/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/META-INF/MANIFEST.MF b/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..08419f0
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/META-INF/MANIFEST.MF
@@ -0,0 +1,21 @@
+Manifest-Version: 1.0

+Created-By: 1.6.0 (IBM Corporation)

+

+Name: epl-v10.html

+SHA1-Digest: jYDaDJLBJpthCwPMgGFVYASJjIU=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: xstAqMgs/a5AsQXQZSdDQ79veOA=

+

+Name: license.html

+SHA1-Digest: /vLZjlHkZSXMSfPrWwNqOUDqqbM=

+

+Name: feature.properties

+SHA1-Digest: 5zYiPfVaLWUbjiruPwB44dpum5Q=

+

+Name: feature.xml

+SHA1-Digest: MZnAI0Y87qOcYSowrFFhp5yn3sk=

+

diff --git a/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/META-INF/eclipse.inf b/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/eclipse_update_120.jpg b/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/eclipse_update_120.jpg
new file mode 100644
index 0000000..bfdf708
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/eclipse_update_120.jpg
Binary files differ
diff --git a/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/epl-v10.html b/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/epl-v10.html
new file mode 100644
index 0000000..fd39122
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/epl-v10.html
@@ -0,0 +1,261 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Public License - Version 1.0</title>
+<style type="text/css">
+  body {
+    size: 8.5in 11.0in;
+    margin: 0.25in 0.5in 0.25in 0.5in;
+    tab-interval: 0.5in;
+    }
+  p {  	
+    margin-left: auto;
+    margin-top:  0.5em;
+    margin-bottom: 0.5em;
+    }
+  p.list {
+  	margin-left: 0.5in;
+    margin-top:  0.05em;
+    margin-bottom: 0.05em;
+    }
+  </style>
+
+</head>
+
+<body lang="EN-US">
+
+<h2>Eclipse Public License - v 1.0</h2>
+
+<p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE (&quot;AGREEMENT&quot;). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.</p>
+
+<p><b>1. DEFINITIONS</b></p>
+
+<p>&quot;Contribution&quot; means:</p>
+
+<p class="list">a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and</p>
+<p class="list">b) in the case of each subsequent Contributor:</p>
+<p class="list">i) changes to the Program, and</p>
+<p class="list">ii) additions to the Program;</p>
+<p class="list">where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.</p>
+
+<p>&quot;Contributor&quot; means any person or entity that distributes
+the Program.</p>
+
+<p>&quot;Licensed Patents&quot; mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.</p>
+
+<p>&quot;Program&quot; means the Contributions distributed in accordance
+with this Agreement.</p>
+
+<p>&quot;Recipient&quot; means anyone who receives the Program under
+this Agreement, including all Contributors.</p>
+
+<p><b>2. GRANT OF RIGHTS</b></p>
+
+<p class="list">a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.</p>
+
+<p class="list">b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.</p>
+
+<p class="list">c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.</p>
+
+<p class="list">d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.</p>
+
+<p><b>3. REQUIREMENTS</b></p>
+
+<p>A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:</p>
+
+<p class="list">a) it complies with the terms and conditions of this
+Agreement; and</p>
+
+<p class="list">b) its license agreement:</p>
+
+<p class="list">i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;</p>
+
+<p class="list">ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;</p>
+
+<p class="list">iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and</p>
+
+<p class="list">iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.</p>
+
+<p>When the Program is made available in source code form:</p>
+
+<p class="list">a) it must be made available under this Agreement; and</p>
+
+<p class="list">b) a copy of this Agreement must be included with each
+copy of the Program.</p>
+
+<p>Contributors may not remove or alter any copyright notices contained
+within the Program.</p>
+
+<p>Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.</p>
+
+<p><b>4. COMMERCIAL DISTRIBUTION</b></p>
+
+<p>Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+(&quot;Commercial Contributor&quot;) hereby agrees to defend and
+indemnify every other Contributor (&quot;Indemnified Contributor&quot;)
+against any losses, damages and costs (collectively &quot;Losses&quot;)
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.</p>
+
+<p>For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.</p>
+
+<p><b>5. NO WARRANTY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.</p>
+
+<p><b>6. DISCLAIMER OF LIABILITY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), 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 OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.</p>
+
+<p><b>7. GENERAL</b></p>
+
+<p>If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.</p>
+
+<p>If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.</p>
+
+<p>All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.</p>
+
+<p>Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.</p>
+
+<p>This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.</p>
+
+</body>
+
+</html>
diff --git a/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/feature.properties b/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/feature.properties
new file mode 100644
index 0000000..f9a5f02
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/feature.properties
@@ -0,0 +1,197 @@
+###############################################################################
+# Copyright (c) 2000, 2013 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Eclipse RCP
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org
+
+# "updateSiteName" property - label for the update site
+updateSiteName=The Eclipse Project Updates
+
+# "description" property - description of the feature
+description=Rich Client Platform
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2000, 2013 Eclipse contributors and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+    IBM Corporation - initial API and implementation\n
+################ end of copyright property ###################################################################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+       - Content may be structured and packaged into modules to facilitate delivering,\n\
+         extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+         plug-in fragments ("Fragments"), and features ("Features").\n\
+       - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+         in a directory named "plugins".\n\
+       - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+         Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+         Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+         numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+       - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+         named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+       - The top-level (root) directory\n\
+       - Plug-in and Fragment directories\n\
+       - Inside Plug-ins and Fragments packaged as JARs\n\
+       - Sub-directories of the directory named "src" of certain Plug-ins\n\
+       - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+       - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+       - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+       - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+       - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+       - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+       - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+       1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+          the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+          extending or updating the functionality of an Eclipse-based product.\n\
+       2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+          Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+       3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+          govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+          Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+          with the Specification. Such Installable Software Agreement must inform the user of the\n\
+          terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+          the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+          indication of agreement by the user, the provisioning Technology will complete installation\n\
+          of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/feature.xml b/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/feature.xml
new file mode 100644
index 0000000..f245b99
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/feature.xml
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="UTF-8"?>

+<feature

+      id="org.eclipse.rcp"

+      label="%featureName"

+      version="4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h"

+      provider-name="%providerName"

+      plugin="org.eclipse.rcp"

+      image="eclipse_update_120.jpg"

+      

+      >

+

+   <description>

+      %description

+   </description>

+

+   <copyright>

+      %copyright

+   </copyright>

+

+   <license url="%licenseURL">
+      %license
+   </license>

+

+   <includes

+         id="org.eclipse.e4.rcp"

+         version="1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS"/>

+

+   <plugin

+         id="org.eclipse.help"

+         download-size="0"

+         install-size="0"

+         version="3.6.0.v20120912-134126"

+         unpack="false"/>

+

+   <plugin

+         id="org.eclipse.ui"

+         download-size="0"

+         install-size="0"

+         version="3.104.0.v20121024-145224"

+         unpack="false"/>

+

+   <plugin

+         id="org.eclipse.ui.workbench"

+         download-size="0"

+         install-size="0"

+         version="3.104.0.v20130204-164612"

+         unpack="false"/>

+

+   <plugin

+         id="org.eclipse.update.configurator"

+         download-size="0"

+         install-size="0"

+         version="3.3.200.v20120912-144026"

+         unpack="false"/>

+

+   <plugin

+         id="org.eclipse.rcp"

+         download-size="0"

+         install-size="0"

+         version="4.2.1.v201302041200"

+         unpack="false"/>

+

+</feature>

diff --git a/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/license.html b/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/license.html
@@ -0,0 +1,108 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Foundation Software User Agreement</title>
+</head>
+
+<body lang="EN-US">
+<h2>Eclipse Foundation Software User Agreement</h2>
+<p>February 1, 2011</p>
+
+<h3>Usage Of Content</h3>
+
+<p>THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+   (COLLECTIVELY &quot;CONTENT&quot;).  USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+   CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+   OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+   NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+   CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.</p>
+
+<h3>Applicable Licenses</h3>
+
+<p>Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+   (&quot;EPL&quot;).  A copy of the EPL is provided with this Content and is also available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+   For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+   repository (&quot;Repository&quot;) in software modules (&quot;Modules&quot;) and made available as downloadable archives (&quot;Downloads&quot;).</p>
+
+<ul>
+       <li>Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content.  Typical modules may include plug-ins (&quot;Plug-ins&quot;), plug-in fragments (&quot;Fragments&quot;), and features (&quot;Features&quot;).</li>
+       <li>Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java&trade; ARchive) in a directory named &quot;plugins&quot;.</li>
+       <li>A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.  Each Feature may be packaged as a sub-directory in a directory named &quot;features&quot;.  Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of the Plug-ins
+      and/or Fragments associated with that Feature.</li>
+       <li>Features may also include other Features (&quot;Included Features&quot;). Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of Included Features.</li>
+</ul>
+
+<p>The terms and conditions governing Plug-ins and Fragments should be contained in files named &quot;about.html&quot; (&quot;Abouts&quot;). The terms and conditions governing Features and
+Included Features should be contained in files named &quot;license.html&quot; (&quot;Feature Licenses&quot;).  Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:</p>
+
+<ul>
+       <li>The top-level (root) directory</li>
+       <li>Plug-in and Fragment directories</li>
+       <li>Inside Plug-ins and Fragments packaged as JARs</li>
+       <li>Sub-directories of the directory named &quot;src&quot; of certain Plug-ins</li>
+       <li>Feature directories</li>
+</ul>
+
+<p>Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (&quot;Feature Update License&quot;) during the
+installation process.  If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them.  Feature Update Licenses may be found in the &quot;license&quot; property of files named &quot;feature.properties&quot; found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.</p>
+
+<p>THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.  SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):</p>
+
+<ul>
+       <li>Eclipse Distribution License Version 1.0 (available at <a href="http://www.eclipse.org/licenses/edl-v10.html">http://www.eclipse.org/licenses/edl-v1.0.html</a>)</li>
+       <li>Common Public License Version 1.0 (available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>)</li>
+       <li>Apache Software License 1.1 (available at <a href="http://www.apache.org/licenses/LICENSE">http://www.apache.org/licenses/LICENSE</a>)</li>
+       <li>Apache Software License 2.0 (available at <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>)</li>
+       <li>Metro Link Public License 1.00 (available at <a href="http://www.opengroup.org/openmotif/supporters/metrolink/license.html">http://www.opengroup.org/openmotif/supporters/metrolink/license.html</a>)</li>
+       <li>Mozilla Public License Version 1.1 (available at <a href="http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html</a>)</li>
+</ul>
+
+<p>IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT.  If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.</p>
+
+
+<h3>Use of Provisioning Technology</h3>
+
+<p>The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+   Update Manager (&quot;Provisioning Technology&quot;) for the purpose of allowing users to install software, documentation, information and/or
+   other materials (collectively &quot;Installable Software&quot;). This capability is provided with the intent of allowing such users to
+   install, extend and update Eclipse-based products. Information about packaging Installable Software is available at <a
+       href="http://eclipse.org/equinox/p2/repository_packaging.html">http://eclipse.org/equinox/p2/repository_packaging.html</a>
+   (&quot;Specification&quot;).</p>
+
+<p>You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+   applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+   in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+   Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:</p>
+
+<ol>
+       <li>A series of actions may occur (&quot;Provisioning Process&quot;) in which a user may execute the Provisioning Technology
+       on a machine (&quot;Target Machine&quot;) with the intent of installing, extending or updating the functionality of an Eclipse-based
+       product.</li>
+       <li>During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+       accessed and copied to the Target Machine.</li>
+       <li>Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+       Software (&quot;Installable Software Agreement&quot;) and such Installable Software Agreement shall be accessed from the Target
+       Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+       the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+       indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.</li>
+</ol>
+
+<h3>Cryptography</h3>
+
+<p>Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+   another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+   possession, or use, and re-export of encryption software, to see if this is permitted.</p>
+
+<p><small>Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.</small></p>
+</body>
+</html>
diff --git a/lib/monitor-x86/libcairo-swt.so b/lib/monitor-x86/libcairo-swt.so
new file mode 100755
index 0000000..b66f958
--- /dev/null
+++ b/lib/monitor-x86/libcairo-swt.so
Binary files differ
diff --git a/lib/monitor-x86/monitor b/lib/monitor-x86/monitor
new file mode 100755
index 0000000..b284b3d
--- /dev/null
+++ b/lib/monitor-x86/monitor
Binary files differ
diff --git a/lib/monitor-x86/monitor.ini b/lib/monitor-x86/monitor.ini
new file mode 100644
index 0000000..cc58094
--- /dev/null
+++ b/lib/monitor-x86/monitor.ini
@@ -0,0 +1,10 @@
+-startup
+plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar
+--launcher.library
+plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807
+-data
+@noDefault
+-vmargs
+-XX:MaxPermSize=256m
+-Xms512m
+-Xmx1024m
diff --git a/lib/monitor-x86/notice.html b/lib/monitor-x86/notice.html
new file mode 100644
index 0000000..c184ca3
--- /dev/null
+++ b/lib/monitor-x86/notice.html
@@ -0,0 +1,107 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Foundation Software User Agreement</title>
+</head>
+
+<body lang="EN-US">
+<h2>Eclipse Foundation Software User Agreement</h2>
+<p>April 14, 2010</p>
+
+<h3>Usage Of Content</h3>
+
+<p>THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+   (COLLECTIVELY &quot;CONTENT&quot;).  USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+   CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+   OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+   NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+   CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.</p>
+
+<h3>Applicable Licenses</h3>
+
+<p>Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+   (&quot;EPL&quot;).  A copy of the EPL is provided with this Content and is also available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+   For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+   repository (&quot;Repository&quot;) in software modules (&quot;Modules&quot;) and made available as downloadable archives (&quot;Downloads&quot;).</p>
+
+<ul>
+       <li>Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content.  Typical modules may include plug-ins (&quot;Plug-ins&quot;), plug-in fragments (&quot;Fragments&quot;), and features (&quot;Features&quot;).</li>
+       <li>Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java&trade; ARchive) in a directory named &quot;plugins&quot;.</li>
+       <li>A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.  Each Feature may be packaged as a sub-directory in a directory named &quot;features&quot;.  Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of the Plug-ins
+      and/or Fragments associated with that Feature.</li>
+       <li>Features may also include other Features (&quot;Included Features&quot;). Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of Included Features.</li>
+</ul>
+
+<p>The terms and conditions governing Plug-ins and Fragments should be contained in files named &quot;about.html&quot; (&quot;Abouts&quot;). The terms and conditions governing Features and
+Included Features should be contained in files named &quot;license.html&quot; (&quot;Feature Licenses&quot;).  Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:</p>
+
+<ul>
+       <li>The top-level (root) directory</li>
+       <li>Plug-in and Fragment directories</li>
+       <li>Inside Plug-ins and Fragments packaged as JARs</li>
+       <li>Sub-directories of the directory named &quot;src&quot; of certain Plug-ins</li>
+       <li>Feature directories</li>
+</ul>
+
+<p>Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (&quot;Feature Update License&quot;) during the
+installation process.  If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them.  Feature Update Licenses may be found in the &quot;license&quot; property of files named &quot;feature.properties&quot; found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.</p>
+
+<p>THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.  SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):</p>
+
+<ul>
+       <li>Common Public License Version 1.0 (available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>)</li>
+       <li>Apache Software License 1.1 (available at <a href="http://www.apache.org/licenses/LICENSE">http://www.apache.org/licenses/LICENSE</a>)</li>
+       <li>Apache Software License 2.0 (available at <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>)</li>
+       <li>Metro Link Public License 1.00 (available at <a href="http://www.opengroup.org/openmotif/supporters/metrolink/license.html">http://www.opengroup.org/openmotif/supporters/metrolink/license.html</a>)</li>
+       <li>Mozilla Public License Version 1.1 (available at <a href="http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html</a>)</li>
+</ul>
+
+<p>IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT.  If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.</p>
+
+
+<h3>Use of Provisioning Technology</h3>
+
+<p>The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+   Update Manager (&quot;Provisioning Technology&quot;) for the purpose of allowing users to install software, documentation, information and/or
+   other materials (collectively &quot;Installable Software&quot;). This capability is provided with the intent of allowing such users to
+   install, extend and update Eclipse-based products. Information about packaging Installable Software is available at <a
+       href="http://eclipse.org/equinox/p2/repository_packaging.html">http://eclipse.org/equinox/p2/repository_packaging.html</a>
+   (&quot;Specification&quot;).</p>
+
+<p>You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+   applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+   in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+   Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:</p>
+
+<ol>
+       <li>A series of actions may occur (&quot;Provisioning Process&quot;) in which a user may execute the Provisioning Technology
+       on a machine (&quot;Target Machine&quot;) with the intent of installing, extending or updating the functionality of an Eclipse-based
+       product.</li>
+       <li>During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+       accessed and copied to the Target Machine.</li>
+       <li>Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+       Software (&quot;Installable Software Agreement&quot;) and such Installable Software Agreement shall be accessed from the Target
+       Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+       the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+       indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.</li>
+</ol>
+
+<h3>Cryptography</h3>
+
+<p>Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+   another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+   possession, or use, and re-export of encryption software, to see if this is permitted.</p>
+
+<p><small>Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.</small></p>
+</body>
+</html>
diff --git a/lib/monitor-x86/p2/org.eclipse.equinox.p2.core/cache/artifacts.xml b/lib/monitor-x86/p2/org.eclipse.equinox.p2.core/cache/artifacts.xml
new file mode 100644
index 0000000..af320e0
--- /dev/null
+++ b/lib/monitor-x86/p2/org.eclipse.equinox.p2.core/cache/artifacts.xml
@@ -0,0 +1,30 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<?artifactRepository version='1.1.0'?>
+<repository name='download cache' type='org.eclipse.equinox.p2.artifact.repository.simpleRepository' version='1.0.0'>
+  <properties size='2'>
+    <property name='p2.system' value='true'/>
+    <property name='p2.timestamp' value='1478881405344'/>
+  </properties>
+  <mappings size='3'>
+    <rule filter='(&amp; (classifier=osgi.bundle))' output='${repoUrl}/plugins/${id}_${version}.jar'/>
+    <rule filter='(&amp; (classifier=binary))' output='${repoUrl}/binary/${id}_${version}'/>
+    <rule filter='(&amp; (classifier=org.eclipse.update.feature))' output='${repoUrl}/features/${id}_${version}.jar'/>
+  </mappings>
+  <artifacts size='3'>
+    <artifact classifier='binary' id='monitorproduct.executable.gtk.linux.x86' version='25.2.3.3470232'>
+      <properties size='1'>
+        <property name='download.size' value='149957'/>
+      </properties>
+    </artifact>
+    <artifact classifier='binary' id='org.eclipse.rcp_root' version='4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h'>
+      <properties size='1'>
+        <property name='download.size' value='37952'/>
+      </properties>
+    </artifact>
+    <artifact classifier='binary' id='org.eclipse.platform_root' version='4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7'>
+      <properties size='1'>
+        <property name='download.size' value='38125'/>
+      </properties>
+    </artifact>
+  </artifacts>
+</repository>
diff --git a/lib/monitor-x86/p2/org.eclipse.equinox.p2.core/cache/binary/monitorproduct.executable.gtk.linux.x86_25.2.3.3470232 b/lib/monitor-x86/p2/org.eclipse.equinox.p2.core/cache/binary/monitorproduct.executable.gtk.linux.x86_25.2.3.3470232
new file mode 100644
index 0000000..27b2e9b
--- /dev/null
+++ b/lib/monitor-x86/p2/org.eclipse.equinox.p2.core/cache/binary/monitorproduct.executable.gtk.linux.x86_25.2.3.3470232
Binary files differ
diff --git a/lib/monitor-x86/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.platform_root_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7 b/lib/monitor-x86/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.platform_root_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7
new file mode 100644
index 0000000..7840a17
--- /dev/null
+++ b/lib/monitor-x86/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.platform_root_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7
Binary files differ
diff --git a/lib/monitor-x86/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.rcp_root_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h b/lib/monitor-x86/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.rcp_root_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h
new file mode 100644
index 0000000..3eeaca8
--- /dev/null
+++ b/lib/monitor-x86/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.rcp_root_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h
Binary files differ
diff --git a/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.artifact.repository.prefs b/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.artifact.repository.prefs
new file mode 100644
index 0000000..f5b30c2
--- /dev/null
+++ b/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.artifact.repository.prefs
@@ -0,0 +1,104 @@
+eclipse.preferences.version=1
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_artifacts_bundles/description=Read-only repository adapter for org.eclipse.tycho.p2.target.TargetPlatformBundlePublisher$PublishedBundlesArtifactRepository@ae300ca6
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_artifacts_bundles/enabled=true
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_artifacts_bundles/isSystem=false
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_artifacts_bundles/provider=
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_artifacts_bundles/suffix=@memory
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_artifacts_bundles/type=ProviderOnlyArtifactRepository
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_artifacts_bundles/uri=file\:/resolution-context-artifacts@/usr/local/google/buildbot/src/android/emu-2.2-release/sdk/eclipse/artifacts/bundles
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_artifacts_bundles/version=1.0
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/bundles-25.2.3-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor/isSystem=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor/name=Bundle pool
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/bundles-25.2.3-SNAPSHOT/products/monitorproduct/linux/gtk/x86/monitor/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor/version=1
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor_p2_org.eclipse.equinox.p2.core_cache/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor_p2_org.eclipse.equinox.p2.core_cache/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor_p2_org.eclipse.equinox.p2.core_cache/isSystem=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor_p2_org.eclipse.equinox.p2.core_cache/name=download cache
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor_p2_org.eclipse.equinox.p2.core_cache/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor_p2_org.eclipse.equinox.p2.core_cache/suffix=artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor_p2_org.eclipse.equinox.p2.core_cache/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor_p2_org.eclipse.equinox.p2.core_cache/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/bundles-25.2.3-SNAPSHOT/products/monitorproduct/linux/gtk/x86/monitor/p2/org.eclipse.equinox.p2.core/cache/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor_p2_org.eclipse.equinox.p2.core_cache/version=1.0.0
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.base-25.2.3-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.base-25.2.3-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.base-25.2.3-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.base-25.2.3-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.base-25.2.3-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.base-25.2.3-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/com.android.ide.eclipse.base-25.2.3-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.ddms-25.2.3-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.ddms-25.2.3-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.ddms-25.2.3-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.ddms-25.2.3-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.ddms-25.2.3-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.ddms-25.2.3-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/com.android.ide.eclipse.ddms-25.2.3-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.ddms.feature-25.2.3-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.ddms.feature-25.2.3-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.ddms.feature-25.2.3-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.ddms.feature-25.2.3-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.ddms.feature-25.2.3-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.ddms.feature-25.2.3-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/com.android.ide.eclipse.ddms.feature-25.2.3-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.gldebugger-25.2.3-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.gldebugger-25.2.3-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.gldebugger-25.2.3-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.gldebugger-25.2.3-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.gldebugger-25.2.3-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.gldebugger-25.2.3-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/com.android.ide.eclipse.gldebugger-25.2.3-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.gldebugger.feature-25.2.3-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.gldebugger.feature-25.2.3-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.gldebugger.feature-25.2.3-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.gldebugger.feature-25.2.3-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.gldebugger.feature-25.2.3-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.gldebugger.feature-25.2.3-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/com.android.ide.eclipse.gldebugger.feature-25.2.3-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer-25.2.3-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer-25.2.3-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer-25.2.3-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer-25.2.3-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer-25.2.3-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer-25.2.3-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/com.android.ide.eclipse.hierarchyviewer-25.2.3-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer.feature-25.2.3-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer.feature-25.2.3-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer.feature-25.2.3-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer.feature-25.2.3-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer.feature-25.2.3-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer.feature-25.2.3-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/com.android.ide.eclipse.hierarchyviewer.feature-25.2.3-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.monitor-25.2.3-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.monitor-25.2.3-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.monitor-25.2.3-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.monitor-25.2.3-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.monitor-25.2.3-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.monitor-25.2.3-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/com.android.ide.eclipse.monitor-25.2.3-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.monitor.feature-25.2.3-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.monitor.feature-25.2.3-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.monitor.feature-25.2.3-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.monitor.feature-25.2.3-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.monitor.feature-25.2.3-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.monitor.feature-25.2.3-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/com.android.ide.eclipse.monitor.feature-25.2.3-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.traceview-25.2.3-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.traceview-25.2.3-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.traceview-25.2.3-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.traceview-25.2.3-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.traceview-25.2.3-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.traceview-25.2.3-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/com.android.ide.eclipse.traceview-25.2.3-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.traceview.feature-25.2.3-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.traceview.feature-25.2.3-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.traceview.feature-25.2.3-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.traceview.feature-25.2.3-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.traceview.feature-25.2.3-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.traceview.feature-25.2.3-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/com.android.ide.eclipse.traceview.feature-25.2.3-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_.._.._prebuilts_eclipse_mavenplugins_tycho_tycho-dependencies-m2repo/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_.._.._prebuilts_eclipse_mavenplugins_tycho_tycho-dependencies-m2repo/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_.._.._prebuilts_eclipse_mavenplugins_tycho_tycho-dependencies-m2repo/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_.._.._prebuilts_eclipse_mavenplugins_tycho_tycho-dependencies-m2repo/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_.._.._prebuilts_eclipse_mavenplugins_tycho_tycho-dependencies-m2repo/suffix=.meta/p2-artifacts.properties
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_.._.._prebuilts_eclipse_mavenplugins_tycho_tycho-dependencies-m2repo/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/sdk/eclipse/../../prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/
diff --git a/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.metadata.repository.prefs b/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.metadata.repository.prefs
new file mode 100644
index 0000000..3140558
--- /dev/null
+++ b/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.metadata.repository.prefs
@@ -0,0 +1,17 @@
+eclipse.preferences.version=1
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/name=module-metadata-repository@/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/bundles-25.2.3-SNAPSHOT
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/suffix=p2content.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/type=org.eclipse.tycho.repository.module.ModuleMetadataRepository
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/bundles-25.2.3-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/version=1.0.0
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_targetPlatformRepository/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_targetPlatformRepository/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_targetPlatformRepository/name=TychoTargetPlatform
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_targetPlatformRepository/suffix=content.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_targetPlatformRepository/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_targetPlatformRepository/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/bundles-25.2.3-SNAPSHOT/targetPlatformRepository/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_targetPlatformRepository/version=0.0.1
diff --git a/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.data/org.eclipse.equinox.internal.p2.touchpoint.eclipse.actions/jvmargs b/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.data/org.eclipse.equinox.internal.p2.touchpoint.eclipse.actions/jvmargs
new file mode 100644
index 0000000..1c9891f
--- /dev/null
+++ b/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.data/org.eclipse.equinox.internal.p2.touchpoint.eclipse.actions/jvmargs
@@ -0,0 +1,4 @@
+#Fri Nov 11 16:23:26 UTC 2016
+-Xms=512m
+-XX\:MaxPermSize\==256m
+-Xmx=1024m
diff --git a/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.lock b/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.lock
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.lock
diff --git a/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1478881404848.profile.gz b/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1478881404848.profile.gz
new file mode 100644
index 0000000..bcf4b79
--- /dev/null
+++ b/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1478881404848.profile.gz
Binary files differ
diff --git a/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1478881404851.profile.gz b/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1478881404851.profile.gz
new file mode 100644
index 0000000..51d3a4a
--- /dev/null
+++ b/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1478881404851.profile.gz
Binary files differ
diff --git a/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1478881406329.profile.gz b/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1478881406329.profile.gz
new file mode 100644
index 0000000..6ac28f5
--- /dev/null
+++ b/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1478881406329.profile.gz
Binary files differ
diff --git a/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1478881406642.profile.gz b/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1478881406642.profile.gz
new file mode 100644
index 0000000..c3946d3
--- /dev/null
+++ b/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1478881406642.profile.gz
Binary files differ
diff --git a/lib/monitor-x86/plugins/com.android.ide.eclipse.base_25.2.3.3470232.jar b/lib/monitor-x86/plugins/com.android.ide.eclipse.base_25.2.3.3470232.jar
new file mode 100644
index 0000000..49c8f1a
--- /dev/null
+++ b/lib/monitor-x86/plugins/com.android.ide.eclipse.base_25.2.3.3470232.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/com.android.ide.eclipse.ddms_25.2.3.3470232.jar b/lib/monitor-x86/plugins/com.android.ide.eclipse.ddms_25.2.3.3470232.jar
new file mode 100644
index 0000000..2b6f0d0
--- /dev/null
+++ b/lib/monitor-x86/plugins/com.android.ide.eclipse.ddms_25.2.3.3470232.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/com.android.ide.eclipse.gldebugger_25.2.3.3470232.jar b/lib/monitor-x86/plugins/com.android.ide.eclipse.gldebugger_25.2.3.3470232.jar
new file mode 100644
index 0000000..af149dd
--- /dev/null
+++ b/lib/monitor-x86/plugins/com.android.ide.eclipse.gldebugger_25.2.3.3470232.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/com.android.ide.eclipse.hierarchyviewer_25.2.3.3470232.jar b/lib/monitor-x86/plugins/com.android.ide.eclipse.hierarchyviewer_25.2.3.3470232.jar
new file mode 100644
index 0000000..2fd666c
--- /dev/null
+++ b/lib/monitor-x86/plugins/com.android.ide.eclipse.hierarchyviewer_25.2.3.3470232.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/com.android.ide.eclipse.monitor_25.2.3.3470232.jar b/lib/monitor-x86/plugins/com.android.ide.eclipse.monitor_25.2.3.3470232.jar
new file mode 100644
index 0000000..a67d162
--- /dev/null
+++ b/lib/monitor-x86/plugins/com.android.ide.eclipse.monitor_25.2.3.3470232.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/com.android.ide.eclipse.traceview_25.2.3.3470232.jar b/lib/monitor-x86/plugins/com.android.ide.eclipse.traceview_25.2.3.3470232.jar
new file mode 100644
index 0000000..5d9ba76
--- /dev/null
+++ b/lib/monitor-x86/plugins/com.android.ide.eclipse.traceview_25.2.3.3470232.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/com.ibm.icu_4.4.2.v20110823.jar b/lib/monitor-x86/plugins/com.ibm.icu_4.4.2.v20110823.jar
new file mode 100644
index 0000000..18a293e
--- /dev/null
+++ b/lib/monitor-x86/plugins/com.ibm.icu_4.4.2.v20110823.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/com.jcraft.jsch_0.1.46.v201205102330.jar b/lib/monitor-x86/plugins/com.jcraft.jsch_0.1.46.v201205102330.jar
new file mode 100644
index 0000000..8800048
--- /dev/null
+++ b/lib/monitor-x86/plugins/com.jcraft.jsch_0.1.46.v201205102330.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/com.sun.el_2.2.0.v201108011116.jar b/lib/monitor-x86/plugins/com.sun.el_2.2.0.v201108011116.jar
new file mode 100644
index 0000000..29c050a
--- /dev/null
+++ b/lib/monitor-x86/plugins/com.sun.el_2.2.0.v201108011116.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/javax.annotation_1.0.0.v20101115-0725.jar b/lib/monitor-x86/plugins/javax.annotation_1.0.0.v20101115-0725.jar
new file mode 100644
index 0000000..fd9c2c1
--- /dev/null
+++ b/lib/monitor-x86/plugins/javax.annotation_1.0.0.v20101115-0725.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/javax.el_2.2.0.v201108011116.jar b/lib/monitor-x86/plugins/javax.el_2.2.0.v201108011116.jar
new file mode 100644
index 0000000..b777c09
--- /dev/null
+++ b/lib/monitor-x86/plugins/javax.el_2.2.0.v201108011116.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/javax.inject_1.0.0.v20091030.jar b/lib/monitor-x86/plugins/javax.inject_1.0.0.v20091030.jar
new file mode 100644
index 0000000..cb95087
--- /dev/null
+++ b/lib/monitor-x86/plugins/javax.inject_1.0.0.v20091030.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/javax.servlet.jsp_2.2.0.v201112011158.jar b/lib/monitor-x86/plugins/javax.servlet.jsp_2.2.0.v201112011158.jar
new file mode 100644
index 0000000..b8ece88
--- /dev/null
+++ b/lib/monitor-x86/plugins/javax.servlet.jsp_2.2.0.v201112011158.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/javax.servlet_3.0.0.v201112011016.jar b/lib/monitor-x86/plugins/javax.servlet_3.0.0.v201112011016.jar
new file mode 100644
index 0000000..4904343
--- /dev/null
+++ b/lib/monitor-x86/plugins/javax.servlet_3.0.0.v201112011016.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/javax.xml_1.3.4.v201005080400.jar b/lib/monitor-x86/plugins/javax.xml_1.3.4.v201005080400.jar
new file mode 100644
index 0000000..81a6ab8
--- /dev/null
+++ b/lib/monitor-x86/plugins/javax.xml_1.3.4.v201005080400.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.apache.batik.css_1.6.0.v201011041432.jar b/lib/monitor-x86/plugins/org.apache.batik.css_1.6.0.v201011041432.jar
new file mode 100644
index 0000000..6007ca0
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.apache.batik.css_1.6.0.v201011041432.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.apache.batik.util.gui_1.6.0.v201011041432.jar b/lib/monitor-x86/plugins/org.apache.batik.util.gui_1.6.0.v201011041432.jar
new file mode 100644
index 0000000..262b1d9
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.apache.batik.util.gui_1.6.0.v201011041432.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.apache.batik.util_1.6.0.v201011041432.jar b/lib/monitor-x86/plugins/org.apache.batik.util_1.6.0.v201011041432.jar
new file mode 100644
index 0000000..0715d84
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.apache.batik.util_1.6.0.v201011041432.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.apache.commons.codec_1.3.0.v201101211617.jar b/lib/monitor-x86/plugins/org.apache.commons.codec_1.3.0.v201101211617.jar
new file mode 100644
index 0000000..7f80e75
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.apache.commons.codec_1.3.0.v201101211617.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.apache.commons.httpclient_3.1.0.v201012070820.jar b/lib/monitor-x86/plugins/org.apache.commons.httpclient_3.1.0.v201012070820.jar
new file mode 100644
index 0000000..2ccaca5
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.apache.commons.httpclient_3.1.0.v201012070820.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.apache.commons.logging_1.0.4.v201101211617.jar b/lib/monitor-x86/plugins/org.apache.commons.logging_1.0.4.v201101211617.jar
new file mode 100644
index 0000000..5103619
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.apache.commons.logging_1.0.4.v201101211617.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.apache.felix.gogo.command_0.8.0.v201108120515.jar b/lib/monitor-x86/plugins/org.apache.felix.gogo.command_0.8.0.v201108120515.jar
new file mode 100644
index 0000000..19b11e5
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.apache.felix.gogo.command_0.8.0.v201108120515.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.apache.felix.gogo.runtime_0.8.0.v201108120515.jar b/lib/monitor-x86/plugins/org.apache.felix.gogo.runtime_0.8.0.v201108120515.jar
new file mode 100644
index 0000000..5e5b5f0
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.apache.felix.gogo.runtime_0.8.0.v201108120515.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.apache.felix.gogo.shell_0.8.0.v201110170705.jar b/lib/monitor-x86/plugins/org.apache.felix.gogo.shell_0.8.0.v201110170705.jar
new file mode 100644
index 0000000..da6f338
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.apache.felix.gogo.shell_0.8.0.v201110170705.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.apache.lucene.analysis_2.9.1.v201101211721.jar b/lib/monitor-x86/plugins/org.apache.lucene.analysis_2.9.1.v201101211721.jar
new file mode 100644
index 0000000..3a2f4da
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.apache.lucene.analysis_2.9.1.v201101211721.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.apache.lucene_2.9.1.v201101211721.jar b/lib/monitor-x86/plugins/org.apache.lucene_2.9.1.v201101211721.jar
new file mode 100644
index 0000000..3558e7d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.apache.lucene_2.9.1.v201101211721.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ant.core_3.2.401.v20121204-162022.jar b/lib/monitor-x86/plugins/org.eclipse.ant.core_3.2.401.v20121204-162022.jar
new file mode 100644
index 0000000..addb6d9
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ant.core_3.2.401.v20121204-162022.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.compare.core_3.5.200.v20120522-1148.jar b/lib/monitor-x86/plugins/org.eclipse.compare.core_3.5.200.v20120522-1148.jar
new file mode 100644
index 0000000..82c6651
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.compare.core_3.5.200.v20120522-1148.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.compare_3.5.301.v20130125-135424.jar b/lib/monitor-x86/plugins/org.eclipse.compare_3.5.301.v20130125-135424.jar
new file mode 100644
index 0000000..479dda3
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.compare_3.5.301.v20130125-135424.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.core.commands_3.6.2.v20130123-162658.jar b/lib/monitor-x86/plugins/org.eclipse.core.commands_3.6.2.v20130123-162658.jar
new file mode 100644
index 0000000..8cd85d4
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.core.commands_3.6.2.v20130123-162658.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.core.contenttype_3.4.200.v20120523-2004.jar b/lib/monitor-x86/plugins/org.eclipse.core.contenttype_3.4.200.v20120523-2004.jar
new file mode 100644
index 0000000..a254949
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.core.contenttype_3.4.200.v20120523-2004.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.core.databinding.beans_1.2.200.v20120523-1955.jar b/lib/monitor-x86/plugins/org.eclipse.core.databinding.beans_1.2.200.v20120523-1955.jar
new file mode 100644
index 0000000..345dbe8
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.core.databinding.beans_1.2.200.v20120523-1955.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.core.databinding.observable_1.4.1.v20120521-2329.jar b/lib/monitor-x86/plugins/org.eclipse.core.databinding.observable_1.4.1.v20120521-2329.jar
new file mode 100644
index 0000000..93855ed
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.core.databinding.observable_1.4.1.v20120521-2329.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.core.databinding.property_1.4.100.v20120523-1955.jar b/lib/monitor-x86/plugins/org.eclipse.core.databinding.property_1.4.100.v20120523-1955.jar
new file mode 100644
index 0000000..caabe0d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.core.databinding.property_1.4.100.v20120523-1955.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.core.databinding_1.4.1.v20120912-132807.jar b/lib/monitor-x86/plugins/org.eclipse.core.databinding_1.4.1.v20120912-132807.jar
new file mode 100644
index 0000000..5e0ed13
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.core.databinding_1.4.1.v20120912-132807.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.core.expressions_3.4.401.v20120912-155018.jar b/lib/monitor-x86/plugins/org.eclipse.core.expressions_3.4.401.v20120912-155018.jar
new file mode 100644
index 0000000..4cf5bea
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.core.expressions_3.4.401.v20120912-155018.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.core.externaltools_1.0.100.v20120521-2012.jar b/lib/monitor-x86/plugins/org.eclipse.core.externaltools_1.0.100.v20120521-2012.jar
new file mode 100644
index 0000000..1990dc9
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.core.externaltools_1.0.100.v20120521-2012.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.core.filebuffers_3.5.200.v20120523-1310.jar b/lib/monitor-x86/plugins/org.eclipse.core.filebuffers_3.5.200.v20120523-1310.jar
new file mode 100644
index 0000000..593e37c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.core.filebuffers_3.5.200.v20120523-1310.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.core.filesystem.linux.x86_1.4.0.v20120522-1137.jar b/lib/monitor-x86/plugins/org.eclipse.core.filesystem.linux.x86_1.4.0.v20120522-1137.jar
new file mode 100644
index 0000000..ae8e081
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.core.filesystem.linux.x86_1.4.0.v20120522-1137.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.core.filesystem_1.3.200.v20130115-145044.jar b/lib/monitor-x86/plugins/org.eclipse.core.filesystem_1.3.200.v20130115-145044.jar
new file mode 100644
index 0000000..88cd379
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.core.filesystem_1.3.200.v20130115-145044.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.core.jobs_3.5.300.v20120912-155018.jar b/lib/monitor-x86/plugins/org.eclipse.core.jobs_3.5.300.v20120912-155018.jar
new file mode 100644
index 0000000..b941801
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.core.jobs_3.5.300.v20120912-155018.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.core.net.linux.x86_1.1.200.v20120522-1148.jar b/lib/monitor-x86/plugins/org.eclipse.core.net.linux.x86_1.1.200.v20120522-1148.jar
new file mode 100644
index 0000000..710d8da
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.core.net.linux.x86_1.1.200.v20120522-1148.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.core.net_1.2.200.v20120914-093638.jar b/lib/monitor-x86/plugins/org.eclipse.core.net_1.2.200.v20120914-093638.jar
new file mode 100644
index 0000000..ddb364f
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.core.net_1.2.200.v20120914-093638.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.core.resources_3.8.1.v20121114-124432.jar b/lib/monitor-x86/plugins/org.eclipse.core.resources_3.8.1.v20121114-124432.jar
new file mode 100644
index 0000000..be7f22b
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.core.resources_3.8.1.v20121114-124432.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/.api_description b/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/.api_description
new file mode 100644
index 0000000..bbffdc8
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/.api_description
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<component name="org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257" version="1.2">
+    <plugin id="org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257"/>
+    <package name="org.eclipse.core.runtime" visibility="1">
+        <type name="IExtension" restrictions="1"/>
+        <type name="IExtensionPoint" restrictions="1"/>
+    </package>
+</component>
diff --git a/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/ECLIPSE_.RSA b/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..a08e8dc
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/ECLIPSE_.SF b/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..c9494f9
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/ECLIPSE_.SF
@@ -0,0 +1,20 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: oV7fBC9t+XvU9FslXBvnCceZx54=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: Vs9w/djYnis+NAZKtDc7eSwXfaM=

+

+Name: fragment.properties

+SHA1-Digest: Gi/SEQV8Vl9A/8928AtuhnVkrKQ=

+

+Name: runtime_registry_compatibility.jar

+SHA1-Digest: 4qgXVah1KyMBh8pfeG5jsjgbfDM=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=

+

+Name: .api_description

+SHA1-Digest: rxDId4BLjpSH7RMzgU7yEspOo2Q=

+

+Name: about.html

+SHA1-Digest: M+fykt9heyWoEv1LNiIEeBhi/2Q=

+

diff --git a/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/MANIFEST.MF b/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..7645a9d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/MANIFEST.MF
@@ -0,0 +1,32 @@
+Manifest-Version: 1.0

+Bundle-Localization: fragment

+Bundle-RequiredExecutionEnvironment: CDC-1.0/Foundation-1.0,J2SE-1.3

+Fragment-Host: org.eclipse.equinox.registry;bundle-version="[3.5.0,3.6

+ .0)"

+Bundle-SymbolicName: org.eclipse.core.runtime.compatibility.registry

+Eclipse-SourceReferences: scm:git:git://git.eclipse.org/gitroot/platfo

+ rm/eclipse.platform.runtime.git;path="bundles/org.eclipse.core.runtim

+ e.compatibility.registry";tag=v20130108-163257

+Bundle-Version: 3.5.101.v20130108-163257

+Bundle-ClassPath: runtime_registry_compatibility.jar

+Eclipse-PatchFragment: true

+Bundle-Vendor: %providerName

+Bundle-Name: %fragmentName

+Eclipse-BundleShape: dir

+Bundle-ManifestVersion: 2

+

+Name: fragment.properties

+SHA1-Digest: 4yjHkU5Z/6ej6ZFYT+PE9sMOJPY=

+

+Name: runtime_registry_compatibility.jar

+SHA1-Digest: YHpfVseR3k1Wy424nVF5+04W0Lk=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=

+

+Name: .api_description

+SHA1-Digest: LJ87Sy009gYMDOfP+FFkugiMkVM=

+

+Name: about.html

+SHA1-Digest: ejOZra0kypGLQQ2bJtGTX+LI8tU=

+

diff --git a/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/eclipse.inf b/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/about.html b/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/about.html
new file mode 100644
index 0000000..4602330
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/about.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
+<title>About</title>
+</head>
+<body lang="EN-US">
+<h2>About This Content</h2>
+ 
+<p>June 2, 2006</p>	
+<h3>License</h3>
+
+<p>The Eclipse Foundation makes available all content in this plug-in (&quot;Content&quot;).  Unless otherwise 
+indicated below, the Content is provided to you under the terms and conditions of the
+Eclipse Public License Version 1.0 (&quot;EPL&quot;).  A copy of the EPL is available 
+at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>If you did not receive this Content directly from the Eclipse Foundation, the Content is 
+being redistributed by another party (&quot;Redistributor&quot;) and different terms and conditions may
+apply to your use of any object code in the Content.  Check the Redistributor's license that was 
+provided with the Content.  If no such license exists, contact the Redistributor.  Unless otherwise
+indicated below, the terms and conditions of the EPL still apply to any source code in the Content
+and such source code may be obtained at <a href="http://www.eclipse.org">http://www.eclipse.org</a>.</p>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/fragment.properties b/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/fragment.properties
new file mode 100644
index 0000000..e60dbf5
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/fragment.properties
@@ -0,0 +1,12 @@
+###############################################################################
+# Copyright (c) 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+providerName=Eclipse.org
+fragmentName=Eclipse Registry Compatibility Fragment
diff --git a/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/runtime_registry_compatibility.jar b/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/runtime_registry_compatibility.jar
new file mode 100644
index 0000000..f489a32
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/runtime_registry_compatibility.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility_3.2.200.v20120521-2346.jar b/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility_3.2.200.v20120521-2346.jar
new file mode 100644
index 0000000..f044dba
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility_3.2.200.v20120521-2346.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.core.runtime_3.8.0.v20120912-155025.jar b/lib/monitor-x86/plugins/org.eclipse.core.runtime_3.8.0.v20120912-155025.jar
new file mode 100644
index 0000000..8870f27
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.core.runtime_3.8.0.v20120912-155025.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.core.variables_3.2.600.v20120521-2012.jar b/lib/monitor-x86/plugins/org.eclipse.core.variables_3.2.600.v20120521-2012.jar
new file mode 100644
index 0000000..006d932
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.core.variables_3.2.600.v20120521-2012.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.debug.core_3.7.100.v20120521-2012.jar b/lib/monitor-x86/plugins/org.eclipse.debug.core_3.7.100.v20120521-2012.jar
new file mode 100644
index 0000000..f0d0212
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.debug.core_3.7.100.v20120521-2012.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.debug.ui_3.8.2.v20130130-171415.jar b/lib/monitor-x86/plugins/org.eclipse.debug.ui_3.8.2.v20130130-171415.jar
new file mode 100644
index 0000000..95f24ba
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.debug.ui_3.8.2.v20130130-171415.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.e4.core.commands_0.10.1.v20120523-1955.jar b/lib/monitor-x86/plugins/org.eclipse.e4.core.commands_0.10.1.v20120523-1955.jar
new file mode 100644
index 0000000..2d9085a
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.e4.core.commands_0.10.1.v20120523-1955.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.e4.core.contexts_1.2.0.v20121221-192508.jar b/lib/monitor-x86/plugins/org.eclipse.e4.core.contexts_1.2.0.v20121221-192508.jar
new file mode 100644
index 0000000..d4a8dc6
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.e4.core.contexts_1.2.0.v20121221-192508.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.e4.core.di.extensions_0.11.100.v20121024-182359.jar b/lib/monitor-x86/plugins/org.eclipse.e4.core.di.extensions_0.11.100.v20121024-182359.jar
new file mode 100644
index 0000000..7febc89
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.e4.core.di.extensions_0.11.100.v20121024-182359.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.e4.core.di_1.2.0.v20121024-173149.jar b/lib/monitor-x86/plugins/org.eclipse.e4.core.di_1.2.0.v20121024-173149.jar
new file mode 100644
index 0000000..ea467de
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.e4.core.di_1.2.0.v20121024-173149.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.e4.core.services_1.0.0.v20120521-2346.jar b/lib/monitor-x86/plugins/org.eclipse.e4.core.services_1.0.0.v20120521-2346.jar
new file mode 100644
index 0000000..ed81754
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.e4.core.services_1.0.0.v20120521-2346.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.e4.ui.bindings_0.10.3.v20130123-162658.jar b/lib/monitor-x86/plugins/org.eclipse.e4.ui.bindings_0.10.3.v20130123-162658.jar
new file mode 100644
index 0000000..ae60985
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.e4.ui.bindings_0.10.3.v20130123-162658.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.e4.ui.css.core_0.10.2.v20120912-132817.jar b/lib/monitor-x86/plugins/org.eclipse.e4.ui.css.core_0.10.2.v20120912-132817.jar
new file mode 100644
index 0000000..6813066
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.e4.ui.css.core_0.10.2.v20120912-132817.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.e4.ui.css.swt.theme_0.9.4.v20130123-162658.jar b/lib/monitor-x86/plugins/org.eclipse.e4.ui.css.swt.theme_0.9.4.v20130123-162658.jar
new file mode 100644
index 0000000..92c473e
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.e4.ui.css.swt.theme_0.9.4.v20130123-162658.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.e4.ui.css.swt_0.10.3.v20130123-162658.jar b/lib/monitor-x86/plugins/org.eclipse.e4.ui.css.swt_0.10.3.v20130123-162658.jar
new file mode 100644
index 0000000..e03ca93
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.e4.ui.css.swt_0.10.3.v20130123-162658.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.e4.ui.di_0.10.1.v20120523-1955.jar b/lib/monitor-x86/plugins/org.eclipse.e4.ui.di_0.10.1.v20120523-1955.jar
new file mode 100644
index 0000000..36e32e3
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.e4.ui.di_0.10.1.v20120523-1955.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.e4.ui.model.workbench_0.10.1.v20120523-1955.jar b/lib/monitor-x86/plugins/org.eclipse.e4.ui.model.workbench_0.10.1.v20120523-1955.jar
new file mode 100644
index 0000000..b877493
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.e4.ui.model.workbench_0.10.1.v20120523-1955.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.e4.ui.services_0.10.3.v20130123-162658.jar b/lib/monitor-x86/plugins/org.eclipse.e4.ui.services_0.10.3.v20130123-162658.jar
new file mode 100644
index 0000000..b85d02f
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.e4.ui.services_0.10.3.v20130123-162658.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.e4.ui.widgets_0.12.3.v20130123-162658.jar b/lib/monitor-x86/plugins/org.eclipse.e4.ui.widgets_0.12.3.v20130123-162658.jar
new file mode 100644
index 0000000..f6eb138
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.e4.ui.widgets_0.12.3.v20130123-162658.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench.addons.swt_0.10.3.v20130124-185622.jar b/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench.addons.swt_0.10.3.v20130124-185622.jar
new file mode 100644
index 0000000..7c439b6
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench.addons.swt_0.10.3.v20130124-185622.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench.renderers.swt_0.10.3.v20130124-170312.jar b/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench.renderers.swt_0.10.3.v20130124-170312.jar
new file mode 100644
index 0000000..97a9c31
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench.renderers.swt_0.10.3.v20130124-170312.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench.swt_0.10.3.v20130124-133900.jar b/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench.swt_0.10.3.v20130124-133900.jar
new file mode 100644
index 0000000..501eabe
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench.swt_0.10.3.v20130124-133900.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench3_0.12.0.v20120521-2329.jar b/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench3_0.12.0.v20120521-2329.jar
new file mode 100644
index 0000000..54ab414
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench3_0.12.0.v20120521-2329.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench_0.11.0.v20130125-100758.jar b/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench_0.11.0.v20130125-100758.jar
new file mode 100644
index 0000000..8ef7a2d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench_0.11.0.v20130125-100758.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ecf.filetransfer_5.0.0.v20120610-1946.jar b/lib/monitor-x86/plugins/org.eclipse.ecf.filetransfer_5.0.0.v20120610-1946.jar
new file mode 100644
index 0000000..37e671c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ecf.filetransfer_5.0.0.v20120610-1946.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ecf.identity_3.1.200.v20120610-1946.jar b/lib/monitor-x86/plugins/org.eclipse.ecf.identity_3.1.200.v20120610-1946.jar
new file mode 100644
index 0000000..c4326c7
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ecf.identity_3.1.200.v20120610-1946.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ecf.provider.filetransfer.httpclient.ssl_1.0.0.v20120610-1946.jar b/lib/monitor-x86/plugins/org.eclipse.ecf.provider.filetransfer.httpclient.ssl_1.0.0.v20120610-1946.jar
new file mode 100644
index 0000000..322b505
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ecf.provider.filetransfer.httpclient.ssl_1.0.0.v20120610-1946.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ecf.provider.filetransfer.httpclient_4.0.200.v20120610-1946.jar b/lib/monitor-x86/plugins/org.eclipse.ecf.provider.filetransfer.httpclient_4.0.200.v20120610-1946.jar
new file mode 100644
index 0000000..b693989
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ecf.provider.filetransfer.httpclient_4.0.200.v20120610-1946.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ecf.provider.filetransfer.ssl_1.0.0.v20120610-1946.jar b/lib/monitor-x86/plugins/org.eclipse.ecf.provider.filetransfer.ssl_1.0.0.v20120610-1946.jar
new file mode 100644
index 0000000..e7575bb
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ecf.provider.filetransfer.ssl_1.0.0.v20120610-1946.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ecf.provider.filetransfer_3.2.0.v20120610-1946.jar b/lib/monitor-x86/plugins/org.eclipse.ecf.provider.filetransfer_3.2.0.v20120610-1946.jar
new file mode 100644
index 0000000..dc5ac52
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ecf.provider.filetransfer_3.2.0.v20120610-1946.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ecf.ssl_1.0.100.v20120610-1946.jar b/lib/monitor-x86/plugins/org.eclipse.ecf.ssl_1.0.100.v20120610-1946.jar
new file mode 100644
index 0000000..38eceec
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ecf.ssl_1.0.100.v20120610-1946.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ecf_3.1.300.v20120610-1946.jar b/lib/monitor-x86/plugins/org.eclipse.ecf_3.1.300.v20120610-1946.jar
new file mode 100644
index 0000000..727dffc
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ecf_3.1.300.v20120610-1946.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.emf.common_2.8.0.v20130125-0546.jar b/lib/monitor-x86/plugins/org.eclipse.emf.common_2.8.0.v20130125-0546.jar
new file mode 100644
index 0000000..c892801
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.emf.common_2.8.0.v20130125-0546.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.emf.ecore.change_2.8.0.v20130125-0546.jar b/lib/monitor-x86/plugins/org.eclipse.emf.ecore.change_2.8.0.v20130125-0546.jar
new file mode 100644
index 0000000..87a6ddc
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.emf.ecore.change_2.8.0.v20130125-0546.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.emf.ecore.xmi_2.8.1.v20130125-0546.jar b/lib/monitor-x86/plugins/org.eclipse.emf.ecore.xmi_2.8.1.v20130125-0546.jar
new file mode 100644
index 0000000..6b28142
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.emf.ecore.xmi_2.8.1.v20130125-0546.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.emf.ecore_2.8.3.v20130125-0546.jar b/lib/monitor-x86/plugins/org.eclipse.emf.ecore_2.8.3.v20130125-0546.jar
new file mode 100644
index 0000000..57796e1
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.emf.ecore_2.8.3.v20130125-0546.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.app_1.3.100.v20120522-1841.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.app_1.3.100.v20120522-1841.jar
new file mode 100644
index 0000000..e3cf1f1
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.app_1.3.100.v20120522-1841.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.bidi_0.9.100.v20121107-021609.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.bidi_0.9.100.v20121107-021609.jar
new file mode 100644
index 0000000..e08a821
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.bidi_0.9.100.v20121107-021609.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.common_3.6.100.v20120522-1841.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.common_3.6.100.v20120522-1841.jar
new file mode 100644
index 0000000..672f68a
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.common_3.6.100.v20120522-1841.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.console_1.0.0.v20120522-1841.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.console_1.0.0.v20120522-1841.jar
new file mode 100644
index 0000000..ff1665b
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.console_1.0.0.v20120522-1841.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.ds_1.4.1.v20120926-201320.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.ds_1.4.1.v20120926-201320.jar
new file mode 100644
index 0000000..94acfe1
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.ds_1.4.1.v20120926-201320.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.event_1.2.200.v20120522-2049.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.event_1.2.200.v20120522-2049.jar
new file mode 100644
index 0000000..a423b3b
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.event_1.2.200.v20120522-2049.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.frameworkadmin.equinox_1.0.400.v20120913-155709.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.frameworkadmin.equinox_1.0.400.v20120913-155709.jar
new file mode 100644
index 0000000..56be80c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.frameworkadmin.equinox_1.0.400.v20120913-155709.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.frameworkadmin_2.0.100.v20120913-155515.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.frameworkadmin_2.0.100.v20120913-155515.jar
new file mode 100644
index 0000000..7947fc2
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.frameworkadmin_2.0.100.v20120913-155515.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.http.jetty_3.0.1.v20121109-203239.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.http.jetty_3.0.1.v20121109-203239.jar
new file mode 100644
index 0000000..79d899e
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.http.jetty_3.0.1.v20121109-203239.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.http.registry_1.1.200.v20120912-130548.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.http.registry_1.1.200.v20120912-130548.jar
new file mode 100644
index 0000000..680ad31
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.http.registry_1.1.200.v20120912-130548.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.http.servlet_1.1.300.v20120912-130548.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.http.servlet_1.1.300.v20120912-130548.jar
new file mode 100644
index 0000000..3ad9c89
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.http.servlet_1.1.300.v20120912-130548.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.jsp.jasper.registry_1.0.300.v20120912-130548.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.jsp.jasper.registry_1.0.300.v20120912-130548.jar
new file mode 100644
index 0000000..56dd370
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.jsp.jasper.registry_1.0.300.v20120912-130548.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.jsp.jasper_1.0.400.v20120912-130548.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.jsp.jasper_1.0.400.v20120912-130548.jar
new file mode 100644
index 0000000..a07c8a8
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.jsp.jasper_1.0.400.v20120912-130548.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/META-INF/ECLIPSE_.RSA b/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..0788a60
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/META-INF/ECLIPSE_.SF b/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..f48a335
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/META-INF/ECLIPSE_.SF
@@ -0,0 +1,17 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: BK89CfUtLpfITapf9FShB4CPUKU=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: 8rkGqonbixAPXxwAojy/o49dJWU=

+

+Name: launcher.gtk.linux.x86.properties

+SHA1-Digest: 5BtD/vNtIvuyWlysuv6gC3ob3mk=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=

+

+Name: about.html

+SHA1-Digest: xGcp/Hbq/ywyvVWkPzD/2vkIzdY=

+

+Name: eclipse_1502.so

+SHA1-Digest: OahbyXoMDBQDcHP0GzrAo7HxpT8=

+

diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/META-INF/MANIFEST.MF b/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..5911ad6
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/META-INF/MANIFEST.MF
@@ -0,0 +1,29 @@
+Manifest-Version: 1.0

+Eclipse-PlatformFilter: (& (osgi.ws=gtk) (osgi.os=linux) (osgi.arch=x8

+ 6))

+Bundle-Vendor: %providerName

+Bundle-Localization: launcher.gtk.linux.x86

+Fragment-Host: org.eclipse.equinox.launcher;bundle-version="[1.0.0,1.4

+ .0)"

+Bundle-Name: %pluginName

+Bundle-SymbolicName: org.eclipse.equinox.launcher.gtk.linux.x86;single

+ ton:=true

+Eclipse-BundleShape: dir

+Eclipse-SourceReferences: scm:git:git://git.eclipse.org/gitroot/equino

+ x/rt.equinox.framework.git;path="bundles/org.eclipse.equinox.launcher

+ .gtk.linux.x86";tag=v20120913-144807

+Bundle-Version: 1.1.200.v20120913-144807

+Bundle-ManifestVersion: 2

+

+Name: launcher.gtk.linux.x86.properties

+SHA1-Digest: ZZ3wfzRZQMXrro06Qu1LmyJvyU8=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=

+

+Name: eclipse_1502.so

+SHA1-Digest: bJiB3nlIPpaPdcWiIst/tS++ous=

+

+Name: about.html

+SHA1-Digest: a9lDHrGuLPkvHBUhsqWU+V2mhPw=

+

diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/META-INF/eclipse.inf b/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/about.html b/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/about.html
new file mode 100644
index 0000000..395df3b
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/about.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
+<title>About</title>
+</head>
+<body lang="EN-US">
+<h2>About This Content</h2>
+
+<p>June 5, 2006</p>	
+<h3>License</h3>
+
+<p>The Eclipse Foundation makes available all content in this plug-in (&quot;Content&quot;).  
+Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the
+Eclipse Public License Version 1.0 (&quot;EPL&quot;).  A copy of the EPL is available 
+at <a href="http://www.eclipse.org/org/documents/epl-v10.php">http://www.eclipse.org/legal/epl-v10.html</a>.
+For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>If you did not receive this Content directly from the Eclipse Foundation, the Content is 
+being redistributed by another party (&quot;Redistributor&quot;) and different terms and conditions may
+apply to your use of any object code in the Content.  Check the Redistributor&rsquo;s license 
+that was provided with the Content.  If no such license exists, contact the Redistributor.  Unless otherwise
+indicated below, the terms and conditions of the EPL still apply to any source code in the Content
+and such source code may be obtained at <a href="http://www.eclipse.org/">http://www.eclipse.org</a>.</p>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/eclipse_1502.so b/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/eclipse_1502.so
new file mode 100644
index 0000000..d114004
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/eclipse_1502.so
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/launcher.gtk.linux.x86.properties b/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/launcher.gtk.linux.x86.properties
new file mode 100644
index 0000000..122990b
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/launcher.gtk.linux.x86.properties
@@ -0,0 +1,12 @@
+###############################################################################
+# Copyright (c) 2007, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+pluginName = Equinox Launcher Linux X86 Fragment
+providerName = Eclipse.org - Equinox
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar
new file mode 100644
index 0000000..710c3db
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.artifact.repository_1.1.200.v20120430-1959.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.artifact.repository_1.1.200.v20120430-1959.jar
new file mode 100644
index 0000000..0a59302
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.artifact.repository_1.1.200.v20120430-1959.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.console_1.0.300.v20120429-0125.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.console_1.0.300.v20120429-0125.jar
new file mode 100644
index 0000000..35eaa3a
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.console_1.0.300.v20120429-0125.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.core_2.2.0.v20120430-0525.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.core_2.2.0.v20120430-0525.jar
new file mode 100644
index 0000000..4fdada6
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.core_2.2.0.v20120430-0525.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.director.app_1.0.300.v20120428-0517.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.director.app_1.0.300.v20120428-0517.jar
new file mode 100644
index 0000000..d2f419b
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.director.app_1.0.300.v20120428-0517.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.director_2.2.0.v20120524-0542.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.director_2.2.0.v20120524-0542.jar
new file mode 100644
index 0000000..ce4323b
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.director_2.2.0.v20120524-0542.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.directorywatcher_1.0.300.v20110808-1657.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.directorywatcher_1.0.300.v20110808-1657.jar
new file mode 100644
index 0000000..fa9fcbe
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.directorywatcher_1.0.300.v20110808-1657.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.engine_2.2.0.v20130121-021919.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.engine_2.2.0.v20130121-021919.jar
new file mode 100644
index 0000000..6ca6879
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.engine_2.2.0.v20130121-021919.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.extensionlocation_1.2.100.v20110808-1657.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.extensionlocation_1.2.100.v20110808-1657.jar
new file mode 100644
index 0000000..92d07f3
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.extensionlocation_1.2.100.v20110808-1657.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.garbagecollector_1.0.200.v20110808-1657.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.garbagecollector_1.0.200.v20110808-1657.jar
new file mode 100644
index 0000000..726251e
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.garbagecollector_1.0.200.v20110808-1657.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.jarprocessor_1.0.200.v20110808-1657.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.jarprocessor_1.0.200.v20110808-1657.jar
new file mode 100644
index 0000000..1a5f3a8
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.jarprocessor_1.0.200.v20110808-1657.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.metadata.repository_1.2.100.v20120524-1717.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.metadata.repository_1.2.100.v20120524-1717.jar
new file mode 100644
index 0000000..3c79de7
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.metadata.repository_1.2.100.v20120524-1717.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.metadata_2.1.0.v20120430-2001.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.metadata_2.1.0.v20120430-2001.jar
new file mode 100644
index 0000000..7b03599
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.metadata_2.1.0.v20120430-2001.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.operations_2.2.0.v20130119-010614.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.operations_2.2.0.v20130119-010614.jar
new file mode 100644
index 0000000..0a6ca98
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.operations_2.2.0.v20130119-010614.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.publisher.eclipse_1.1.0.v20120913-155635.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.publisher.eclipse_1.1.0.v20120913-155635.jar
new file mode 100644
index 0000000..a4f52bd
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.publisher.eclipse_1.1.0.v20120913-155635.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.publisher_1.2.0.v20121002-080415.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.publisher_1.2.0.v20121002-080415.jar
new file mode 100644
index 0000000..d7fe853
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.publisher_1.2.0.v20121002-080415.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ql_2.0.100.v20110808-1657.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ql_2.0.100.v20110808-1657.jar
new file mode 100644
index 0000000..b8c2e22
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ql_2.0.100.v20110808-1657.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.reconciler.dropins_1.1.200.v20120301-2145.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.reconciler.dropins_1.1.200.v20120301-2145.jar
new file mode 100644
index 0000000..3eee98e
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.reconciler.dropins_1.1.200.v20120301-2145.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.repository.tools_2.0.100.v20120501-1314.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.repository.tools_2.0.100.v20120501-1314.jar
new file mode 100644
index 0000000..aa6dae8
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.repository.tools_2.0.100.v20120501-1314.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.repository_2.2.0.v20120524-1945.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.repository_2.2.0.v20120524-1945.jar
new file mode 100644
index 0000000..9df9864
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.repository_2.2.0.v20120524-1945.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.touchpoint.eclipse_2.1.100.v20120428-0117.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.touchpoint.eclipse_2.1.100.v20120428-0117.jar
new file mode 100644
index 0000000..9356ca5
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.touchpoint.eclipse_2.1.100.v20120428-0117.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.touchpoint.natives_1.1.0.v20130121-021919.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.touchpoint.natives_1.1.0.v20130121-021919.jar
new file mode 100644
index 0000000..6f3dab2
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.touchpoint.natives_1.1.0.v20130121-021919.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.transport.ecf_1.0.100.v20120913-155635.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.transport.ecf_1.0.100.v20120913-155635.jar
new file mode 100644
index 0000000..2d6bd8a
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.transport.ecf_1.0.100.v20120913-155635.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ui.importexport_1.0.1.v20120913-155635.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ui.importexport_1.0.1.v20120913-155635.jar
new file mode 100644
index 0000000..79468eb
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ui.importexport_1.0.1.v20120913-155635.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ui.sdk.scheduler_1.1.0.v20110815-1744.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ui.sdk.scheduler_1.1.0.v20110815-1744.jar
new file mode 100644
index 0000000..5dcabb2
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ui.sdk.scheduler_1.1.0.v20110815-1744.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ui.sdk_1.0.200.v20120515-1650.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ui.sdk_1.0.200.v20120515-1650.jar
new file mode 100644
index 0000000..29f4174
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ui.sdk_1.0.200.v20120515-1650.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ui_2.2.0.v20130119-010614.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ui_2.2.0.v20130119-010614.jar
new file mode 100644
index 0000000..ab61b30
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ui_2.2.0.v20130119-010614.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.updatechecker_1.1.200.v20110808-1657.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.updatechecker_1.1.200.v20110808-1657.jar
new file mode 100644
index 0000000..2acbd64
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.updatechecker_1.1.200.v20110808-1657.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.p2.updatesite_1.0.400.v20120412-1615.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.updatesite_1.0.400.v20120412-1615.jar
new file mode 100644
index 0000000..187af2d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.p2.updatesite_1.0.400.v20120412-1615.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.preferences_3.5.1.v20121031-182809.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.preferences_3.5.1.v20121031-182809.jar
new file mode 100644
index 0000000..fd83621
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.preferences_3.5.1.v20121031-182809.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.registry_3.5.200.v20120522-1841.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.registry_3.5.200.v20120522-1841.jar
new file mode 100644
index 0000000..755ba79
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.registry_3.5.200.v20120522-1841.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.security.ui_1.1.100.v20120522-2049.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.security.ui_1.1.100.v20120522-2049.jar
new file mode 100644
index 0000000..087e6eb
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.security.ui_1.1.100.v20120522-2049.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.security_1.1.100.v20120522-1841.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.security_1.1.100.v20120522-1841.jar
new file mode 100644
index 0000000..f09f20c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.security_1.1.100.v20120522-1841.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20110808-1657.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20110808-1657.jar
new file mode 100644
index 0000000..2b8465d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20110808-1657.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.simpleconfigurator_1.0.301.v20120914-163612.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.simpleconfigurator_1.0.301.v20120914-163612.jar
new file mode 100644
index 0000000..ef63f9d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.simpleconfigurator_1.0.301.v20120914-163612.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.equinox.util_1.0.400.v20120917-192807.jar b/lib/monitor-x86/plugins/org.eclipse.equinox.util_1.0.400.v20120917-192807.jar
new file mode 100644
index 0000000..e81bb6a
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.equinox.util_1.0.400.v20120917-192807.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.help_3.6.0.v20120912-134126.jar b/lib/monitor-x86/plugins/org.eclipse.help_3.6.0.v20120912-134126.jar
new file mode 100644
index 0000000..79c6dc3
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.help_3.6.0.v20120912-134126.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.jetty.continuation_8.1.3.v20120522.jar b/lib/monitor-x86/plugins/org.eclipse.jetty.continuation_8.1.3.v20120522.jar
new file mode 100644
index 0000000..393dcf3
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.jetty.continuation_8.1.3.v20120522.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.jetty.http_8.1.3.v20120522.jar b/lib/monitor-x86/plugins/org.eclipse.jetty.http_8.1.3.v20120522.jar
new file mode 100644
index 0000000..b57c753
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.jetty.http_8.1.3.v20120522.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.jetty.io_8.1.3.v20120522.jar b/lib/monitor-x86/plugins/org.eclipse.jetty.io_8.1.3.v20120522.jar
new file mode 100644
index 0000000..9081be5
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.jetty.io_8.1.3.v20120522.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.jetty.security_8.1.3.v20120522.jar b/lib/monitor-x86/plugins/org.eclipse.jetty.security_8.1.3.v20120522.jar
new file mode 100644
index 0000000..0c592c8
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.jetty.security_8.1.3.v20120522.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.jetty.servlet_8.1.3.v20120522.jar b/lib/monitor-x86/plugins/org.eclipse.jetty.servlet_8.1.3.v20120522.jar
new file mode 100644
index 0000000..63eefd4
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.jetty.servlet_8.1.3.v20120522.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.jetty.util_8.1.3.v20120522.jar b/lib/monitor-x86/plugins/org.eclipse.jetty.util_8.1.3.v20120522.jar
new file mode 100644
index 0000000..1bb3891
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.jetty.util_8.1.3.v20120522.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.jface.databinding_1.6.0.v20120912-132807.jar b/lib/monitor-x86/plugins/org.eclipse.jface.databinding_1.6.0.v20120912-132807.jar
new file mode 100644
index 0000000..7617f9e
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.jface.databinding_1.6.0.v20120912-132807.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.jface.text_3.8.2.v20121126-164145.jar b/lib/monitor-x86/plugins/org.eclipse.jface.text_3.8.2.v20121126-164145.jar
new file mode 100644
index 0000000..ce660a7
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.jface.text_3.8.2.v20121126-164145.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.jface_3.8.102.v20130123-162658.jar b/lib/monitor-x86/plugins/org.eclipse.jface_3.8.102.v20130123-162658.jar
new file mode 100644
index 0000000..2181fe8
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.jface_3.8.102.v20130123-162658.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.jsch.core_1.1.400.v20120522-1148.jar b/lib/monitor-x86/plugins/org.eclipse.jsch.core_1.1.400.v20120522-1148.jar
new file mode 100644
index 0000000..e4b1890
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.jsch.core_1.1.400.v20120522-1148.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.jsch.ui_1.1.400.v20120522-1148.jar b/lib/monitor-x86/plugins/org.eclipse.jsch.ui_1.1.400.v20120522-1148.jar
new file mode 100644
index 0000000..a874129
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.jsch.ui_1.1.400.v20120522-1148.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ltk.core.refactoring_3.6.0.v20120523-1543.jar b/lib/monitor-x86/plugins/org.eclipse.ltk.core.refactoring_3.6.0.v20120523-1543.jar
new file mode 100644
index 0000000..5065f89
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ltk.core.refactoring_3.6.0.v20120523-1543.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ltk.ui.refactoring_3.7.0.v20120523-1543.jar b/lib/monitor-x86/plugins/org.eclipse.ltk.ui.refactoring_3.7.0.v20120523-1543.jar
new file mode 100644
index 0000000..f9531eb
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ltk.ui.refactoring_3.7.0.v20120523-1543.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.osgi.services_3.3.100.v20120522-1822.jar b/lib/monitor-x86/plugins/org.eclipse.osgi.services_3.3.100.v20120522-1822.jar
new file mode 100644
index 0000000..1be0d15
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.osgi.services_3.3.100.v20120522-1822.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.osgi.util_3.2.300.v20120913-144807.jar b/lib/monitor-x86/plugins/org.eclipse.osgi.util_3.2.300.v20120913-144807.jar
new file mode 100644
index 0000000..7ee59d1
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.osgi.util_3.2.300.v20120913-144807.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.osgi_3.8.2.v20130124-134944.jar b/lib/monitor-x86/plugins/org.eclipse.osgi_3.8.2.v20130124-134944.jar
new file mode 100644
index 0000000..47b3653
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.osgi_3.8.2.v20130124-134944.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/.api_description b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/.api_description
new file mode 100644
index 0000000..7825afa
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/.api_description
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<component name="org.eclipse.platform_4.2.2.v201302041200" version="1.2">
+    <plugin id="org.eclipse.platform_4.2.2.v201302041200"/>
+</component>
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/LegacyIDE.e4xmi b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/LegacyIDE.e4xmi
new file mode 100644
index 0000000..be4bfed
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/LegacyIDE.e4xmi
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="ASCII"?>
+<application:Application xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:application="http://www.eclipse.org/ui/2010/UIModel/application" xmlns:basic="http://www.eclipse.org/ui/2010/UIModel/application/ui/basic" xmlns:menu="http://www.eclipse.org/ui/2010/UIModel/application/ui/menu" xsi:schemaLocation="http://www.eclipse.org/ui/2010/UIModel/application/ui/basic http://www.eclipse.org/ui/2010/UIModel/application#//ui/basic http://www.eclipse.org/ui/2010/UIModel/application/ui/menu http://www.eclipse.org/ui/2010/UIModel/application#//ui/menu" xmi:id="org.eclipse.e4.legacy.ide.application" elementId="org.eclipse.e4.legacy.ide.application" bindingContexts="_SeXUHO8EEd6BC9cDb6iV7y">
+  <children xsi:type="basic:TrimmedWindow" xmi:id="IDEWindow" elementId="IDEWindow" label="%trimmedwindow.label.eclipseSDK" width="1024" height="768">
+  </children>
+  <handlers xmi:id="_UW9TY_r3Ed6gmo7caOxU9g" elementId="_UW9TY_r3Ed6gmo7caOxU9g" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.ExitHandler" command="e4.exit"/>
+  <handlers xmi:id="_BESTZfr3Ed6gmo7caOxU04" elementId="_BESTZfr3Ed6gmo7caOxU04" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.swt/org.eclipse.e4.ui.internal.workbench.swt.handlers.ShowViewHandler" command="e4.show.view"/>
+  <handlers xmi:id="_eTBRgAFSEd-Z8rQksLwRYw" elementId="org.eclipse.e4.ui.saveHandler" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.handlers.SaveHandler" command="_jR5mUAFSEd-Z8rQksLwRYw"/>
+  <handlers xmi:id="_eTBRgAFSEd-Z8rQksLwRYx" elementId="org.eclipse.e4.ui.saveAllHandler" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.handlers.SaveAllHandler" command="_jR5mUAFSEd-Z8rQksLwRYx"/>
+  <bindingTables xmi:id="_SeXUEO8EEd6FC9cDb6iV7x" bindingContext="_SeXUHO8EEd6BC9cDb6iV7y">
+    <bindings xmi:id="_UW9TZfr3Ed6gmo7caOxU9g" keySequence="CTRL+Q" elementId="_UW9TZfr3Ed6gmo7caOxU9g" command="e4.exit"/>
+    <bindings xmi:id="_oRr6EAFSEd-Z8rQksLwRYw" keySequence="CTRL+S" elementId="_oRr6EAFSEd-Z8rQksLwRYw" command="_jR5mUAFSEd-Z8rQksLwRYw"/>
+    <bindings xmi:id="_oRr6EAFSEd-Z8rQksLwRYx" keySequence="CTRL+SHIFT+S" command="_jR5mUAFSEd-Z8rQksLwRYx"/>
+  </bindingTables>
+  <rootContext xmi:id="_SeXUHO8EEd6BC9cDb6iV7y" elementId="org.eclipse.ui.contexts.dialogAndWindow" name="%bindingcontext.name.dialogAndWindows">
+    <children xmi:id="_SeXUEO8EEd6FC9cDb6iV7w" elementId="org.eclipse.ui.contexts.window" name="%bindingcontext.name.windows">
+      <children xmi:id="_SeXUEO8EEd6FC9cDb6yV7x" elementId="org.eclipse.e4.ui.contexts.views" name="%bindingcontext.name.bindingView"/>
+    </children>
+    <children xmi:id="_SeXUEO8EEd6FC9cDb6iV7x" elementId="org.eclipse.ui.contexts.dialog" name="%bindingcontext.name.dialogs"/>
+  </rootContext>
+  <commands xmi:id="e4.exit" elementId="e4.exit" commandName="%command.name.exit" description=""/>
+  <commands xmi:id="e4.show.view" elementId="e4.show.view" commandName="%command.name.showView">
+    <parameters xmi:id="_oRr6EAFSEd-Z8rQksLwRYz" elementId="org.eclipse.ui.views.showView.viewId" name="View"/>
+  </commands>
+  <commands xmi:id="_jR5mUAFSEd-Z8rQksLwRYw" elementId="org.eclipse.e4.ui.saveCommands" commandName="%command.name.save"/>
+  <commands xmi:id="_jR5mUAFSEd-Z8rQksLwRYx" elementId="org.eclipse.e4.ui.saveAllCommands" commandName="%command.name.saveAll"/>
+  <addons xmi:id="_XGB3wPZlEd-XstlTZ6nTXg" elementId="org.eclipse.e4.core.commands.service" contributionURI="bundleclass://org.eclipse.e4.core.commands/org.eclipse.e4.core.commands.CommandServiceAddon"/>
+  <addons xmi:id="_XGB3wPZlEd-XstlTZ6nTXh" elementId="org.eclipse.e4.ui.contexts.service" contributionURI="bundleclass://org.eclipse.e4.ui.services/org.eclipse.e4.ui.services.ContextServiceAddon"/>
+  <addons xmi:id="_XGB3wPZlEd-XstlTZ6nTXi" elementId="org.eclipse.e4.ui.bindings.service" contributionURI="bundleclass://org.eclipse.e4.ui.bindings/org.eclipse.e4.ui.bindings.BindingServiceAddon"/>
+  <addons xmi:id="_LK0NgPZmEd-XstlTZ6nTXj" elementId="org.eclipse.e4.ui.workbench.commands.model" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.addons.CommandProcessingAddon"/>
+  <addons xmi:id="_LK0NgPZmEd-XstlTZ6nTXk" elementId="org.eclipse.e4.ui.workbench.contexts.model" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.addons.ContextProcessingAddon"/>
+  <addons xmi:id="_LK0NgPZmEd-XstlTZ6nTXl" elementId="org.eclipse.e4.ui.workbench.bindings.model" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.swt/org.eclipse.e4.ui.workbench.swt.util.BindingProcessingAddon"/>
+  <addons xmi:id="_XwQYkE2EEd-DfN2vYY4Lew" elementId="Cleanup Addon" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.cleanupaddon.CleanupAddon"/>
+  <addons xmi:id="_bqcWME2EEd-DfN2vYY4Lew" elementId="DnD Addon" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.dndaddon.DnDAddon"/>
+  <addons xmi:id="_7GC6sGp-Ed-QyNZjH9g15Q" elementId="MinMax Addon" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon"/>
+</application:Application>
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/ECLIPSE_.RSA b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..4e0b9d1
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/ECLIPSE_.SF b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..4243450
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/ECLIPSE_.SF
@@ -0,0 +1,263 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: ERdR6aVOcbdOCCJp6PurPZkYvG8=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: OHiruwURt2tkChZ88Ilkxg9N/n4=

+

+Name: images/topiclabel/wn_migrate48_hov.gif

+SHA1-Digest: PiwFgHazgc8SIGl/oti+P2zLKsc=

+

+Name: intro/css/whatsnew.properties

+SHA1-Digest: t99cjGj5mTzuUg2do0teAP6fzzA=

+

+Name: eclipse16.gif

+SHA1-Digest: H8kWdGDjph57Qo2qbu1tI7gP5/I=

+

+Name: images/gtkTSFrame.png

+SHA1-Digest: lNsagip705L28766XqzLBHTt+lc=

+

+Name: about.ini

+SHA1-Digest: 3tRVmcACc9ekdbjEuHD+KlN4gfU=

+

+Name: macosx_narrow_book.css

+SHA1-Digest: 8J/M6n+c7VFylsVAZdhTlZ+vXz0=

+

+Name: images/topiclabel/ov_wbbasics48.gif

+SHA1-Digest: oWojUiR1WBlGtZEsM7txIHQ3Q9E=

+

+Name: css/e4_default.css

+SHA1-Digest: I9HSkYjy353ggHaxaHM2NtQHQ0Q=

+

+Name: images/win7Handle.png

+SHA1-Digest: RBjnm1FGs3nmck1LG1k9mVapN8c=

+

+Name: images/win7TSFrame.png

+SHA1-Digest: EPju6HYRlpTQdn4ZWWaL2oQ/yrs=

+

+Name: LegacyIDE.e4xmi

+SHA1-Digest: YAF314wdYO4RZeSEVVOgzx2cFZM=

+

+Name: images/winXPOlive.png

+SHA1-Digest: /dFSDq/T8U9g4GaR09CL3lhEmsE=

+

+Name: intro/css/overview.properties

+SHA1-Digest: XTV3uTDwqp1dy5+XY/Q5I1HpnOY=

+

+Name: images/topiclabel/ov_wbbasics48_hov.gif

+SHA1-Digest: TQSe+zq4qkTGG/6fHCtrmcKnPK4=

+

+Name: platform.jar

+SHA1-Digest: D0IUtWfa5j2XMOXHMFGML/NEJAo=

+

+Name: eclipse32.png

+SHA1-Digest: AsaOXGbLLaVxPpq8N0hfgWwXxb0=

+

+Name: css/e4_default_winxp_olv.css

+SHA1-Digest: f/+LVk1MqEiaTlx16kbwn3PpS6Y=

+

+Name: intro-eclipse.png

+SHA1-Digest: CJvW3yEUeROOUEK4ZgBcmly0Z1k=

+

+Name: css/e4_default_mac.css

+SHA1-Digest: 4NINLFtDrzw/BQ/Gft++SuSM5Zw=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=

+

+Name: images/topiclabel/ov_teamsup48.gif

+SHA1-Digest: OsElRFQSFh3jJgsmon2s9QCfwe4=

+

+Name: about.mappings

+SHA1-Digest: qVqsiW/AgEHaBq8l8H286/NjB80=

+

+Name: images/topiclabel/tu_merge48.gif

+SHA1-Digest: UP3+phgtp3bSprMVq4tSiRIL0JI=

+

+Name: images/topiclabel/arrow.gif

+SHA1-Digest: nJK4gPtQBJLJcQMLOFJXJvK4gLU=

+

+Name: images/dragHandle.png

+SHA1-Digest: lNfkT2YIht+8RAKWluO7N+bk+eY=

+

+Name: images/winXPBluHandle.png

+SHA1-Digest: 1CjJYAt22MCzjzPmBh+2rmLFKMI=

+

+Name: images/macTSFrame.png

+SHA1-Digest: cFsyUNxrLdj04Kx37kiGH3KSHd8=

+

+Name: images/winXPBlue.png

+SHA1-Digest: Tc7M/fv+4ApkXg0UnqPaZ2aZ5MU=

+

+Name: about.properties

+SHA1-Digest: B2e1IuBrBzWSbHRWjjHSxm5cjfA=

+

+Name: helpData.xml

+SHA1-Digest: TZXnzPn4n3gBwQF0ydaxhmY1w3g=

+

+Name: images/topiclabel/ov_teamsup48_hov.gif

+SHA1-Digest: ZKZr1E2Xyo7hieH3Fp+q5NQMPeo=

+

+Name: images/topiclabel/tu_merge48_hov.gif

+SHA1-Digest: xtxSXRHbti1PLVmVeRXavwMzvso=

+

+Name: css/e4_classic_winxp.css

+SHA1-Digest: 2V+wxs2TCKfmuI4wK/2npJq5eWc=

+

+Name: plugin_customization.properties

+SHA1-Digest: /BU7Z7eXbbgW16mEDonqO+Dx+SI=

+

+Name: cheatsheets/cvs_merge.xml

+SHA1-Digest: FaAOvipbrJKzOgrfFooFZ5NVVPQ=

+

+Name: intro/css/tutorials.properties

+SHA1-Digest: 2ipkwKeXHjNzNqDiKumBtEItgyw=

+

+Name: images/macHandle.png

+SHA1-Digest: 9ZpeCfJRwIwzfKtcxGCvXxA/XH4=

+

+Name: images/winClassicTSFrame.png

+SHA1-Digest: bYIjigeu8yZ+v0w6G7kuOI06Su0=

+

+Name: eclipse32.gif

+SHA1-Digest: m+XqY7Ow/523wZ3Mo5NeUYIUA3Q=

+

+Name: plugin_customization.ini

+SHA1-Digest: a/GckqeeBZ+Vm25Dv7v2lBKz7HU=

+

+Name: intro/overviewExtensionContent.xml

+SHA1-Digest: DjMSj7TcD5qaDnzaWjHU2caihuA=

+

+Name: css/e4_default_mru_on_win7.css

+SHA1-Digest: oFqXDb6sSa7XRDk20i69ZezXZlg=

+

+Name: images/winXPHandle.png

+SHA1-Digest: RvBcs+E7ua8p7R6WAeihITCo7w0=

+

+Name: css/e4_classic_win7.css

+SHA1-Digest: DlvxyhZwZatTZdT2efyl0YfcXPc=

+

+Name: images/gtkGrey.png

+SHA1-Digest: Wbj2CSLIIMvC+mpCz/C3ql7pMs4=

+

+Name: images/topiclabel/wn_eclplatform48.gif

+SHA1-Digest: AooAx3UMTLzrMC+eWiCtEgpeRS8=

+

+Name: eclipse48.png

+SHA1-Digest: r7vloezLEByQSRBAUWLnrcCIuSc=

+

+Name: eclipse_lg.gif

+SHA1-Digest: qswGt1E/1bq1Xts719EUvOPBo9U=

+

+Name: images/gtkHandle.png

+SHA1-Digest: UeK2OmJZi7iTP253re8iXj0xdY4=

+

+Name: images/winXPTSFrame.png

+SHA1-Digest: 6H+w4CglVzxPtT+FhyKozWTLmr8=

+

+Name: images/win7.png

+SHA1-Digest: cbJu6wjXexyan1oki8AXgU0rb+M=

+

+Name: plugin.properties

+SHA1-Digest: 0KnPcav4HXWfHUo22AO51I0Lfmc=

+

+Name: images/topiclabel/wn_updates48.gif

+SHA1-Digest: fLSuoNPvkl9STgSftMFToeLhbYo=

+

+Name: images/winClassicHandle.png

+SHA1-Digest: YaCMKtwN879oADa1Mcv7sAo9h6Y=

+

+Name: css/e4_basestyle.css

+SHA1-Digest: un/esnYq2tMNaIA7tbHvbItLTYw=

+

+Name: css/e4_default_winxp_blu.css

+SHA1-Digest: NBxt3jR41yT0mMRACspGWkVghsw=

+

+Name: images/topiclabel/wn_eclplatform48_hov.gif

+SHA1-Digest: DGUWlU5kU62JaCxSPgKE7I5vo9E=

+

+Name: plugin.xml

+SHA1-Digest: Wpm+mXP229iRqHcIi1SOr/3VF/w=

+

+Name: intro/css/overview.css

+SHA1-Digest: QIN/myt3F8vMVNj3t2B3MKZU8uU=

+

+Name: images/topiclabel/wn_updates48_hov.gif

+SHA1-Digest: 4szF/MVsbBym+cGCzZBVaJP/pgc=

+

+Name: introData.xml

+SHA1-Digest: rbdEVtdFXLVuOdrjxm51bMKNzFk=

+

+Name: eclipse48.gif

+SHA1-Digest: Ihjs4HZguOtOUMcamr+GT8QgTiA=

+

+Name: disabled_book.css

+SHA1-Digest: bLpqfhUiGbAbtfx3E0c42hwVP9s=

+

+Name: narrow_book.css

+SHA1-Digest: RwlCfnTG+XygntK3jqGLLuWg2Nc=

+

+Name: eclipse16.png

+SHA1-Digest: hSBGQPWTnl9Je2kVmqPLqOPP12g=

+

+Name: eclipse256.png

+SHA1-Digest: zLt88QkiRs+It2iT5DT83hSwY74=

+

+Name: .api_description

+SHA1-Digest: qAabKOtIRTFbe+lLU9D4LfX7ArE=

+

+Name: images/topiclabel/wn_eclcommunity48.gif

+SHA1-Digest: sWE9Am5FXw787JocFsDVPGGhgg8=

+

+Name: images/topiclabel/tu_checkout48.gif

+SHA1-Digest: 4Mpg1tzRFQZMWH4ZjCoFz80LLWg=

+

+Name: about.html

+SHA1-Digest: xr2qKGgMP52ylX6t87VPIBmazXM=

+

+Name: intro/whatsnewExtensionContent1.xml

+SHA1-Digest: /k6tWIGpGHIMQuX0sWk/97FtgNs=

+

+Name: intro/whatsnewExtensionContent2.xml

+SHA1-Digest: ss0gzaRydrOD9IJgkZjhK3d8wq8=

+

+Name: intro/whatsnewExtensionContent3.xml

+SHA1-Digest: ksAoihbQK4Wv8cQkJtVo7h+e/AY=

+

+Name: images/topiclabel/wn_migrate48.gif

+SHA1-Digest: QRZfRxz+DNtWqcgOeBJWEXCOWcI=

+

+Name: css/e4_default_gtk.css

+SHA1-Digest: 6wm/B7hL/q2vXFg0ZYObfLWPR34=

+

+Name: images/macGrey.png

+SHA1-Digest: twwtkeX4lPiGDAUgioXSTsir9j4=

+

+Name: css/e4_default_win7.css

+SHA1-Digest: RpdtcwxnWzRkCoA3SfHyfk4D9Xk=

+

+Name: intro/css/whatsnew.css

+SHA1-Digest: AdyiXWH4xll/guFkUn+P1Y9xG9M=

+

+Name: intro/tutorialsExtensionContent.xml

+SHA1-Digest: JrYfgCanVcsvNwwdR9WJx1U6Vl4=

+

+Name: cheatsheets/cvs_checkout.xml

+SHA1-Digest: VJonjDQOuxIN4zAmj9Mqd6TO0x0=

+

+Name: images/topiclabel/wn_eclcommunity48_hov.gif

+SHA1-Digest: TChv2jPWCYEyDG6brFi9QNci/zs=

+

+Name: images/topiclabel/tu_checkout48_hov.gif

+SHA1-Digest: L2sDh0tqvIaFQJqBDjV24VFWwgo=

+

+Name: images/winXPBluTSFrame.png

+SHA1-Digest: F8trtuSgW31q6HAV2alypNMXd5A=

+

+Name: intro/css/tutorials.css

+SHA1-Digest: M+MZ4vr9RJTOAUjIC3Qz3p0u6rs=

+

+Name: book.css

+SHA1-Digest: 60Ab1JD4rBjks4ZmsmwkUzsPPC8=

+

+Name: splash.bmp

+SHA1-Digest: XXhVk7MGRKr5MlIWvyNn/hg83ac=

+

diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/MANIFEST.MF b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..b1a2243
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/MANIFEST.MF
@@ -0,0 +1,279 @@
+Manifest-Version: 1.0

+Bundle-Localization: plugin

+Bundle-RequiredExecutionEnvironment: J2SE-1.4,CDC-1.0/Foundation-1.0,J

+ 2SE-1.3

+Bundle-SymbolicName: org.eclipse.platform; singleton:=true

+Eclipse-SourceReferences: scm:git:git://git.eclipse.org/gitroot/platfo

+ rm/eclipse.platform.git;path="platform/org.eclipse.platform";tag=v201

+ 30124-124715

+Require-Bundle: org.eclipse.ui.intro;bundle-version="[3.2.0,4.0.0)",or

+ g.eclipse.ui.cheatsheets;bundle-version="[3.2.0,4.0.0)";resolution:=o

+ ptional,org.eclipse.ui.forms;bundle-version="[3.2.0,4.0.0)";resolutio

+ n:=optional,org.eclipse.ui;bundle-version="[3.2.0,4.0.0)";resolution:

+ =optional,org.eclipse.core.runtime;bundle-version="[3.2.0,4.0.0)"

+Export-Package: org.eclipse.platform.internal;x-internal:=true

+Bundle-Version: 4.2.2.v201302041200

+Bundle-ClassPath: platform.jar

+Bundle-Vendor: %providerName

+Bundle-Name: %pluginName

+Eclipse-BundleShape: dir

+Bundle-ManifestVersion: 2

+

+Name: images/topiclabel/wn_migrate48_hov.gif

+SHA1-Digest: M6zsZ6hi30Dy8VsM/Og4IE9IOkg=

+

+Name: intro/css/whatsnew.properties

+SHA1-Digest: 4nCjPHm7iTBRX2cq5vxBGBYByYU=

+

+Name: eclipse16.gif

+SHA1-Digest: zwt4gz2o7PTRfQDHJimtmymBJo8=

+

+Name: images/gtkTSFrame.png

+SHA1-Digest: 8b0hzV65v6o9x0/8mWk3A8sl4Hg=

+

+Name: about.ini

+SHA1-Digest: ZK6m/9CAhsF/6xAiV7yYXjYLbng=

+

+Name: macosx_narrow_book.css

+SHA1-Digest: jjHm301H2huNyXiXwJbHzgWn0K4=

+

+Name: images/topiclabel/ov_wbbasics48.gif

+SHA1-Digest: 0r8/nIJipGbWXTLidf/qFRtxk88=

+

+Name: css/e4_default.css

+SHA1-Digest: jFe4vzCYprBhckemfwte8nc58cY=

+

+Name: images/win7Handle.png

+SHA1-Digest: twWubAeh9bn9246qAA8F3Ug/5z0=

+

+Name: images/win7TSFrame.png

+SHA1-Digest: UEePCXeNvCU/2TLEhqrkQptOWck=

+

+Name: LegacyIDE.e4xmi

+SHA1-Digest: U16iXOnake2/VYpb1p4HM8VSY5Q=

+

+Name: intro/css/overview.properties

+SHA1-Digest: sR7rB50tGOD19+fqvJ1jGbzo8oY=

+

+Name: images/winXPOlive.png

+SHA1-Digest: LeyuFJ3TC47+y4QpooD4iJNEtmM=

+

+Name: images/topiclabel/ov_wbbasics48_hov.gif

+SHA1-Digest: WHlKtV887rTHYMMuOGAHmtibK5Y=

+

+Name: platform.jar

+SHA1-Digest: ciEsicOarhmxcwox7f6cVEpeV8M=

+

+Name: intro-eclipse.png

+SHA1-Digest: IUrE9u5RnkRx7unbvyyosuGTAOE=

+

+Name: css/e4_default_winxp_olv.css

+SHA1-Digest: 8QGnsvZMMQ1hkioJ313cY3h6huc=

+

+Name: eclipse32.png

+SHA1-Digest: Tet+jRa8Gm9JsW/hWCgO9ayE664=

+

+Name: css/e4_default_mac.css

+SHA1-Digest: cqs3fT4H9kZKj0E8ytz7xlT0ruo=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=

+

+Name: about.mappings

+SHA1-Digest: NtXd0AsBwOcPJVtBX8Pwo65gRa8=

+

+Name: images/topiclabel/ov_teamsup48.gif

+SHA1-Digest: /3k/anFwd5sId2ruDxxEdkjRMm8=

+

+Name: images/topiclabel/tu_merge48.gif

+SHA1-Digest: /3k/anFwd5sId2ruDxxEdkjRMm8=

+

+Name: images/topiclabel/arrow.gif

+SHA1-Digest: iyBS4QdZ6imHjGPw321lqh6SJSo=

+

+Name: images/dragHandle.png

+SHA1-Digest: eNrxIhwedUWxAcz/iz7UAvvgXg4=

+

+Name: images/winXPBluHandle.png

+SHA1-Digest: EP+zIEkA09le7+jTHTcJulbJQzM=

+

+Name: images/macTSFrame.png

+SHA1-Digest: PekW6CYAJ+Zq47ou84K82OV9YDs=

+

+Name: images/winXPBlue.png

+SHA1-Digest: I9bB1J5Q/n/U2CwPQ6H7ETCP9Fs=

+

+Name: about.properties

+SHA1-Digest: JGL216ww5dVm3sYp8EkidZMYe+8=

+

+Name: helpData.xml

+SHA1-Digest: ZR1pFHw9xoMSs25sZ0MO6v4/asI=

+

+Name: images/topiclabel/ov_teamsup48_hov.gif

+SHA1-Digest: tDulFBf6WoQNfzwEyv1Uck54hqk=

+

+Name: images/topiclabel/tu_merge48_hov.gif

+SHA1-Digest: tDulFBf6WoQNfzwEyv1Uck54hqk=

+

+Name: css/e4_classic_winxp.css

+SHA1-Digest: 4kF2VA+qcbkrcY0VGaqzXu42EjU=

+

+Name: plugin_customization.properties

+SHA1-Digest: YD7gZEVzYiOkYd7BfCANIgVRb/Q=

+

+Name: cheatsheets/cvs_merge.xml

+SHA1-Digest: avIFsf3vMC1U32F8qGLxSyq/lpo=

+

+Name: intro/css/tutorials.properties

+SHA1-Digest: EVPXsNdjFZM29pcX0MRbnH8+WOY=

+

+Name: images/macHandle.png

+SHA1-Digest: shGDU1oRr6BWrKxyzq5CV+g53Uw=

+

+Name: images/winClassicTSFrame.png

+SHA1-Digest: npohflUahSspMX9wVHErpcNoAQ0=

+

+Name: eclipse32.gif

+SHA1-Digest: ppkAcrq2pIoBxNI//Z3q3xJRdEY=

+

+Name: plugin_customization.ini

+SHA1-Digest: xmAx4ie434OtxymWwrIRmyqZ9ss=

+

+Name: intro/overviewExtensionContent.xml

+SHA1-Digest: SfOPkWtjJDCFigPMug4SwU76wTo=

+

+Name: css/e4_default_mru_on_win7.css

+SHA1-Digest: ytEGfJ3PX/o67RhwNtQK+O8x04k=

+

+Name: images/winXPHandle.png

+SHA1-Digest: aD5ihrxXxmvS/FbvEkaldGSNuQs=

+

+Name: css/e4_classic_win7.css

+SHA1-Digest: zp1sTNtRlNzZn7MiZ/25jwg+kcA=

+

+Name: images/gtkGrey.png

+SHA1-Digest: 4+t5VfjrQbDtwJA9FLyvnqsW5o0=

+

+Name: images/topiclabel/wn_eclplatform48.gif

+SHA1-Digest: 3nsWBOR6lpxjr+FXTIxLNviYbdQ=

+

+Name: eclipse48.png

+SHA1-Digest: wRYWPRIG/9RrNLHZh4GGFnUMGjQ=

+

+Name: eclipse_lg.gif

+SHA1-Digest: 69MjmTuX2tBydAPuHq7w4/h+T8c=

+

+Name: images/gtkHandle.png

+SHA1-Digest: 6/g5Ixb58lq+MqR+p6fgWS+LShs=

+

+Name: images/winXPTSFrame.png

+SHA1-Digest: Pcfi50OD4cRpF4EX5PwxhcM1h3c=

+

+Name: images/win7.png

+SHA1-Digest: dUay5kpUKKT/ZeY63XkHbLlxtz4=

+

+Name: plugin.properties

+SHA1-Digest: 8XsdsN//y4ahRKLpG+M6Kj/vOy4=

+

+Name: images/topiclabel/wn_updates48.gif

+SHA1-Digest: jZ7rwDl0qk2syJYLk6YYn58pmbk=

+

+Name: images/winClassicHandle.png

+SHA1-Digest: JFATcjcqyduiJVqeDeIbOoc3BY4=

+

+Name: css/e4_basestyle.css

+SHA1-Digest: GlLBw/csE2g2B5Y0p9L5p8MTfBA=

+

+Name: css/e4_default_winxp_blu.css

+SHA1-Digest: +DIieNp/xseF9tdeIVTyu/Rjf3c=

+

+Name: images/topiclabel/wn_eclplatform48_hov.gif

+SHA1-Digest: w7/OBSGFd6+YHONIDeq88ckqLJA=

+

+Name: plugin.xml

+SHA1-Digest: CSz/gQgASDI591MJJs1yMET8QKw=

+

+Name: intro/css/overview.css

+SHA1-Digest: 4vnDNPlsnseQQYHOifEYAOAU+28=

+

+Name: introData.xml

+SHA1-Digest: hRUHRieYHfLpbEmuEpkQGBDq/fU=

+

+Name: images/topiclabel/wn_updates48_hov.gif

+SHA1-Digest: aU4eMLVfJedCANwS4GLHdIfwcLg=

+

+Name: disabled_book.css

+SHA1-Digest: x3/plDo/tiH3FDASeesyGUCF4gM=

+

+Name: eclipse48.gif

+SHA1-Digest: joafzB2KmUajcypuNkoevLaG8oU=

+

+Name: narrow_book.css

+SHA1-Digest: /86jkfITUYJB4OWlA3NEx9IN6zo=

+

+Name: eclipse256.png

+SHA1-Digest: 7KiCNPEKzYy7sq8YFJSsXuQmf/s=

+

+Name: eclipse16.png

+SHA1-Digest: dMO+1jnMMGzYeRFxESUlSACxxEg=

+

+Name: .api_description

+SHA1-Digest: BvrPfAvqQY+G4Fp7iCOwIXfJZH0=

+

+Name: images/topiclabel/wn_eclcommunity48.gif

+SHA1-Digest: a7O8+deDP71UBanvoHQjCgObGqI=

+

+Name: images/topiclabel/tu_checkout48.gif

+SHA1-Digest: huJw6xHMsj2LT1Q3HgsQiEbzNFw=

+

+Name: intro/whatsnewExtensionContent1.xml

+SHA1-Digest: NUBZgy79C5bRW3u9ES+GFMtqi40=

+

+Name: about.html

+SHA1-Digest: +/ZbB4iOoCwiJmEdG+67tzzJKc4=

+

+Name: intro/whatsnewExtensionContent2.xml

+SHA1-Digest: YEikkKc+ZTBDkNSqaSvABYsmuXs=

+

+Name: intro/whatsnewExtensionContent3.xml

+SHA1-Digest: gkjZFF3rYl6EWVEwYZwk4i59j44=

+

+Name: images/topiclabel/wn_migrate48.gif

+SHA1-Digest: huJw6xHMsj2LT1Q3HgsQiEbzNFw=

+

+Name: css/e4_default_gtk.css

+SHA1-Digest: FGe3KCGdrcI+CRDuK0xrB76fTpI=

+

+Name: css/e4_default_win7.css

+SHA1-Digest: URChj9tw7IM/NWMDvZ4TdFjlxdg=

+

+Name: images/macGrey.png

+SHA1-Digest: xClAmpE1oYNRkEk8ktU5gey+jcU=

+

+Name: intro/tutorialsExtensionContent.xml

+SHA1-Digest: pzSSeJDAvRK9lDRPhRYMsfhAv9I=

+

+Name: intro/css/whatsnew.css

+SHA1-Digest: jmuWdg8Bxhr6CT2FH7xspqR8/RE=

+

+Name: cheatsheets/cvs_checkout.xml

+SHA1-Digest: pIAK2OoHSqtHD7eVdgBujxeGs2s=

+

+Name: images/topiclabel/wn_eclcommunity48_hov.gif

+SHA1-Digest: u1+mxDrTyo6yu/dvN/Bh90rSFpk=

+

+Name: intro/css/tutorials.css

+SHA1-Digest: pfL+vsuZVeqHonEoVb6FBRiugts=

+

+Name: images/winXPBluTSFrame.png

+SHA1-Digest: hEZhu5Zb6KTgLN9nmhcA/Mt4BCQ=

+

+Name: images/topiclabel/tu_checkout48_hov.gif

+SHA1-Digest: M6zsZ6hi30Dy8VsM/Og4IE9IOkg=

+

+Name: splash.bmp

+SHA1-Digest: mY5Vf2M7eh6fKVi75hvvTrNZX9s=

+

+Name: book.css

+SHA1-Digest: +jMjY3GD/AZ8AWyoyyzOCICTMJU=

+

diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/eclipse.inf b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/about.html b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/about.html
new file mode 100644
index 0000000..3989f53
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/about.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
+<title>About</title>
+</head>
+<body lang="EN-US">
+<h2>About This Content</h2>
+ 
+<p>May 11, 2006</p>	
+<h3>License</h3>
+
+<p>The Eclipse Foundation makes available all content in this plug-in (&quot;Content&quot;).  Unless otherwise 
+indicated below, the Content is provided to you under the terms and conditions of the
+Eclipse Public License Version 1.0 (&quot;EPL&quot;).  A copy of the EPL is available 
+at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>If you did not receive this Content directly from the Eclipse Foundation, the Content is 
+being redistributed by another party (&quot;Redistributor&quot;) and different terms and conditions may
+apply to your use of any object code in the Content.  Check the Redistributor's license that was 
+provided with the Content.  If no such license exists, contact the Redistributor.  Unless otherwise
+indicated below, the terms and conditions of the EPL still apply to any source code in the Content
+and such source code may be obtained at <a href="http://www.eclipse.org">http://www.eclipse.org</a>.</p>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/about.ini b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/about.ini
new file mode 100644
index 0000000..167f506
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/about.ini
@@ -0,0 +1,25 @@
+# about.ini
+# contains information about a feature
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# "%key" are externalized strings defined in about.properties
+# This file does not need to be translated.
+
+# Property "aboutText" contains blurb for feature details in the "About" 
+# dialog (translated).  Maximum 15 lines and 75 characters per line.
+aboutText=%blurb
+
+# Property "featureImage" contains path to feature image (32x32)
+featureImage=eclipse32.png
+
+# Property "welcomePage" contains path to welcome page (special XML-based format)
+# ($nl$/ prefix to permit locale-specific translations of entire file)
+welcomePage=$nl$/welcome.xml
+
+# Property "welcomePerspective" contains the id of the perspective in which the
+# welcome page is to be opened.
+# optional
+
+# Property "tipsAndTricksHref" contains the Help topic href to a tips and tricks page 
+# optional
+tipsAndTricksHref=/org.eclipse.platform.doc.user/tips/platform_tips.html
+
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/about.mappings b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/about.mappings
new file mode 100644
index 0000000..bfdb3d7
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/about.mappings
@@ -0,0 +1,6 @@
+# about.mappings
+# contains fill-ins for about.properties
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file does not need to be translated.
+
+0=M20130204-1200
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/about.properties b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/about.properties
new file mode 100644
index 0000000..656b62c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/about.properties
@@ -0,0 +1,28 @@
+###############################################################################
+# Copyright (c) 2000, 2013 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# about.properties
+# contains externalized strings for about.ini
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# fill-ins are supplied by about.mappings
+# This file should be translated.
+#
+# Do not translate any values surrounded by {}
+
+blurb=Eclipse Platform\n\
+\n\
+Version: {featureVersion}\n\
+Build id: {0}\n\
+\n\
+(c) Copyright Eclipse contributors and others 2000, 2013.  All rights reserved.\n\
+Visit http://www.eclipse.org/platform\n\
+\n\
+This product includes software developed by the\n\
+Apache Software Foundation http://www.apache.org/
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/book.css b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/book.css
new file mode 100644
index 0000000..f9822b0
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/book.css
@@ -0,0 +1,108 @@
+P.Code {

+	display: block;

+	text-align: left;

+	text-indent: 0.00pt;

+	margin-top: 0.000000pt;

+	margin-bottom: 0.000000pt;

+	margin-right: 0.000000pt;

+	margin-left: 15pt;

+	font-weight: normal;

+	font-style: normal;

+	color: #4444CC;

+	text-decoration: none;

+	vertical-align: baseline;

+	text-transform: none;

+	font-family: "Courier New", Courier, monospace;

+}

+H6.CaptionFigColumn {

+	display: block;

+	text-align: left;

+	text-indent: 0.000000pt;

+	margin-top: 3.000000pt;

+	margin-bottom: 11.000000pt;

+	margin-right: 0.000000pt;

+	margin-left: 0.000000pt;

+	font-size: 75%;

+	font-weight: bold;

+	font-style: Italic;

+	color: #000000;

+	text-decoration: none;

+	vertical-align: baseline;

+	text-transform: none;

+}

+P.Note {

+	display: block;

+	text-align: left;

+	text-indent: 0pt;

+	margin-top: 19.500000pt;

+	margin-bottom: 19.500000pt;

+	margin-right: 0.000000pt;

+	margin-left: 30pt;

+	font-size: 110%;

+	font-weight: normal;

+	font-style: Italic;

+	color: #000000;

+	text-decoration: none;

+	vertical-align: baseline;

+	text-transform: none;

+}

+EM.UILabel {

+	font-weight: Bold;

+	font-style: normal;

+	text-decoration: none;

+	vertical-align: baseline;

+	text-transform: none;

+}

+EM.CodeName {

+	font-weight: Bold;

+	font-style: normal;

+	text-decoration: none;

+	vertical-align: baseline;

+	text-transform: none;

+	font-family: "Courier New", Courier, monospace;

+}

+UL.NavList {

+	margin-left: 1.5em;

+	padding-left: 0px;

+	list-style-type: none;

+}

+

+body, html { border: 0px }

+

+

+/* following font face declarations need to be removed for DBCS */

+

+body, h1, h2, h3, h4, h5, h6, p, table, td, caption, th, ul, ol, dl, li, dd, dt {font-family: Arial, Helvetica, sans-serif; color: #000000}

+pre, code		{ font-family: "Courier New", Courier, monospace;}

+

+/* end font face declarations */

+

+@media print {

+	html { font-size: 12pt }

+}

+

+body	     { font-size: 83%; background: #FFFFFF; margin-bottom: 1em }

+h1           { font-size: 180%; margin-top: 5px; margin-bottom: 1px }	

+h2           { font-size: 140%; margin-top: 25px; margin-bottom: 3px }

+h3           { font-size: 110%; margin-top: 20px; margin-bottom: 3px }

+h4           { font-size: 100%; margin-top: 20px; margin-bottom: 3px; font-style: italic }

+p            { margin-top: 10px; margin-bottom: 10px }

+pre          { font-size: 93%; margin-left: 6; color: #4444CC }

+code         { font-size: 93%; } 

+table        { font-size: 100% } /* needed for quirks mode */

+a:link	     { color: #0000FF }

+a:hover	     { color: #000080 }

+a:visited    { text-decoration: underline }

+ul	     { margin-top: 10px; margin-bottom: 10px; }

+li	     { margin-top: 5px; margin-bottom: 5px; } 

+li p	     { margin-top: 5px; margin-bottom: 5px; }

+ol	     { margin-top: 10px; margin-bottom: 10px; }

+dl	     { margin-top: 10px; margin-bottom: 10px; }

+dt	     { margin-top: 5px; margin-bottom: 5px; font-weight: bold; }

+dd	     { margin-top: 5px; margin-bottom: 5px; }

+strong	     { font-weight: bold}

+em	     { font-style: italic}

+var	     { font-style: italic}

+div.revision { border-left-style: solid; border-left-width: thin; 

+				   border-left-color: #7B68EE; padding-left:5 }

+th	     { font-weight: bold }

diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/cheatsheets/cvs_checkout.xml b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/cheatsheets/cvs_checkout.xml
new file mode 100644
index 0000000..af369e4
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/cheatsheets/cvs_checkout.xml
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="UTF-8" ?> 
+<cheatsheet title="Check out a CVS project">
+
+  <intro 
+      href="/org.eclipse.platform.doc.user/reference/ref-cheatsheets.htm">
+    <description>
+      This cheat sheet shows you how to explore a CVS repository and check out
+      a project. If you need help at any step, click on the (?) icon to the
+      right.
+    </description>
+  </intro>
+
+  <item
+      title="Open the CVS Repository Exploring perspective"
+      href="/org.eclipse.platform.doc.user/tasks/tasks-1h.htm">
+    <description>
+      From the main menu, select Window &gt; Open Perspective &gt; Other...,
+      then select the <b>CVS Repository Exploring</b> perspective.
+    </description>
+    <command
+        serialization="org.eclipse.ui.perspectives.showPerspective(org.eclipse.ui.perspectives.showPerspective.perspectiveId=org.eclipse.team.cvs.ui.cvsPerspective)"
+        confirm="true" translate="" >
+    </command>
+  </item>
+
+  <item
+      title="Add a CVS repository"
+      href="/org.eclipse.platform.doc.user/tasks/tasks-92.htm">
+    <description>
+      In the CVS Repositories view, click on the <b>Add CVS Repository</b>
+      toolbar button. Enter the location and authentication information for
+      the repository. For example, for the <b>eclipse</b> repository, enter the
+      following:<br/>
+      <br/>
+      Host: dev.eclipse.org<br/>
+      Repository path: /cvsroot/eclipse<br/>
+      User: anonymous<br/>
+      Connection type: pserver<br/>
+      <br/>
+      Use defaults for the rest, then click Finish.
+    </description>
+  </item>
+
+  <item
+      title="Locate the project"
+      href="/org.eclipse.platform.doc.user/tasks/tasks-1i.htm">
+    <description>
+      Expand the <b>HEAD</b> node under the newly added repository, and locate
+      the project you wish to check out (e.g. to find the source code for the
+      cheat sheet view, this is in org.eclipse.ui.cheatsheets)
+    </description>
+  </item>
+
+  <item
+      title="Check out the project"
+      href="/org.eclipse.platform.doc.user/tasks/tasks-96.htm">
+    <description>
+      Right click on the project you wish to check out and select <b>Check
+      Out</b>. This will download the latest content from the repository into
+      your workspace.
+    </description>
+  </item>
+
+  <item
+      title="View the workspace"
+      href="/org.eclipse.platform.doc.isv/guide/resInt_workspace.htm">
+    <description>
+      To see the project in your workspace, switch to the <b>Resource</b>
+      perspective via Window &gt; Open Perspective &gt; Resource to see the
+      project in the <b>Project Explorer</b> view. You can now view and work with the
+      contents of the project.
+    </description>
+  </item>
+
+</cheatsheet>
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/cheatsheets/cvs_merge.xml b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/cheatsheets/cvs_merge.xml
new file mode 100644
index 0000000..a33f50b
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/cheatsheets/cvs_merge.xml
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="UTF-8" ?> 
+<cheatsheet title="Merge CVS branches">
+
+  <intro 
+      href="/org.eclipse.platform.doc.user/reference/ref-cheatsheets.htm">
+    <description>
+      This cheat sheet shows you the steps to merge changes from one CVS branch
+      into another, or into HEAD. If you need help at any step, click on the (?)
+      icon to the right.
+    </description>
+  </intro>
+
+  <item
+      href="/org.eclipse.platform.doc.user/tasks/tasks-100b.htm"
+      title="Determine branch and version information">
+    <description>
+      The first step is to decide <b>which</b> two branches will be merged, at
+      which <b>version</b> the content was branched, and what the
+      <b>destination</b> branch will be (where the result of the merge will go).
+      Once you have this information, you can move on to the next step.
+    </description>
+  </item>
+
+  <item
+      href="/org.eclipse.platform.doc.user/tasks/tasks-96.htm"
+      title="Check out the project">
+    <description>
+      Before merging, you must <b>check out</b> the project you wish to merge
+      and bring it into your workspace. You can do this either via the import
+      wizard or by adding your repository from the CVS Repository Exploring
+      perspective, or click the (?) button for help.
+    </description>
+  </item>
+
+  <item
+      href="/org.eclipse.platform.doc.user/tasks/tasks-103.htm"
+      title="Load the destination into your workspace">
+    <description>
+      In the navigator, right-click on the project and select Replace With &gt;
+      Another Branch or Version. Select the destination branch. This will load
+      the branch's latest content into your workspace.
+    </description>
+  </item>
+
+  <item
+      href="/org.eclipse.platform.doc.user/tasks/tasks-100b.htm"
+      title="Merge details">
+    <description>
+      Again in the navigator, right-click on the project and select <b>Team</b>
+      &gt; <b>Merge</b> and complete the steps in the wizard. In this wizard you
+      specify the details of the merge.
+    </description>
+  </item>
+
+  <item
+      href="/org.eclipse.platform.doc.user/tasks/tasks-100b.htm"
+      title="Work with the Merge editor">
+    <description>
+      In the Merge editor manually merge the changes. This step loads the
+      required changes into the workspace. Once you've merged all the changes
+      and are satisfied with the result, move on to the next step.
+    </description>
+  </item>
+
+  <item
+      href="/org.eclipse.platform.doc.user/tasks/tasks-114.htm"
+      title="Commit your changes">
+    <description>
+      Right-click on the project and select <b>Team</b> &gt; <b>Synchronize with
+      Repository</b> and then commit all the changes to the repository. This
+      step finalizes the transfer of the changes from the workspace to the CVS
+      repository, and finalizes the merge.
+    </description>
+  </item>
+
+</cheatsheet>
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_basestyle.css b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_basestyle.css
new file mode 100644
index 0000000..7beef61
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_basestyle.css
@@ -0,0 +1,42 @@
+
+.MTrimmedWindow.topLevel { 
+    margin-top: 5px;
+    margin-bottom: 2px;
+    margin-left: 2px;
+    margin-right: 2px;
+}
+
+.MPartStack {
+    swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+    swt-unselected-tabs-color: #FFFFFF #FFFFFF #FFFFFF 100% 100%;
+    swt-outer-keyline-color: #FFFFFF;
+	swt-inner-keyline-color: #FFFFFF;
+	padding: 0px 9px 10px;
+	swt-tab-outline: #B6BCCC;
+	swt-shadow-visible: true;
+	swt-mru-visible: false;
+}
+
+.MPartStack.active {
+	swt-inner-keyline-color: #FFFFFF;
+	swt-tab-outline: #B6BCCC;
+	swt-shadow-visible: true;
+}
+
+#PerspectiveSwitcher {
+	eclipse-perspective-keyline-color: #AAB0BF #AAB0BF;
+}
+
+.MToolControl.TrimStack {
+	frame-image:  url(./winXPTSFrame.png);
+	handle-image:  url(./winXPHandle.png);
+	frame-cuts: 5px 1px 5px 16px;
+}
+
+.MToolBar.Draggable {
+	handle-image:  url(./dragHandle.png);
+}
+
+.MToolControl.Draggable {
+	handle-image:  url(./dragHandle.png);
+}
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_classic_win7.css b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_classic_win7.css
new file mode 100644
index 0000000..9b6ff24
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_classic_win7.css
@@ -0,0 +1,36 @@
+.MTrimmedWindow {  
+    margin-top: 0px;
+    margin-bottom: 0px;
+    margin-left: 2px;
+    margin-right: 2px;
+}
+
+.MPartStack {
+  swt-tab-renderer: null;
+  swt-selected-tabs-background: #FFFFFF #F0F0F0 100%;
+  swt-simple: false;
+  swt-mru-visible: true;
+}
+
+
+.MPartStack.active {
+  swt-selected-tabs-background: #F2F5F9 #99B4D1	 100%;
+}
+
+#PerspectiveSwitcher  {
+	eclipse-perspective-keyline-color: #ECE9D8 #FFFFFF;
+}
+
+.MToolControl.TrimStack {
+	frame-image:  url(./winClassicTSFrame.png);
+	handle-image:  url(./winClassicHandle.png);
+	frame-cuts: 5px 1px 5px 16px;
+}
+
+.MToolBar.Draggable {
+	handle-image:  url(./dragHandle.png);
+}
+
+.MToolControl.Draggable {
+	handle-image:  url(./dragHandle.png);
+}
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_classic_winxp.css b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_classic_winxp.css
new file mode 100644
index 0000000..6d11bd3
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_classic_winxp.css
@@ -0,0 +1,36 @@
+.MTrimmedWindow {  
+    margin-top: 0px;
+    margin-bottom: 0px;
+    margin-left: 2px;
+    margin-right: 2px;
+}
+
+.MPartStack {
+  swt-tab-renderer: null;
+  swt-selected-tabs-background: #FFFFFF #ECE9D8 100%;
+  swt-simple: false;
+  swt-mru-visible: true;
+}
+
+
+.MPartStack.active {
+  swt-selected-tabs-background: #E5EDFC #99BAF3 100%;
+}
+
+#PerspectiveSwitcher  {
+	eclipse-perspective-keyline-color: #ECE9D8 #FFFFFF;
+}
+
+.MToolControl.TrimStack {
+	frame-image:  url(./winClassicTSFrame.png);
+	handle-image:  url(./winClassicHandle.png);
+	frame-cuts: 5px 1px 5px 16px;
+}
+
+.MToolBar.Draggable {
+	handle-image:  url(./dragHandle.png);
+}
+
+.MToolControl.Draggable {
+	handle-image:  url(./dragHandle.png);
+}
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default.css b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default.css
new file mode 100644
index 0000000..2f44bcf
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default.css
@@ -0,0 +1,41 @@
+
+.MWindow {
+    background-color:  #EEF2F7 #DEEBF3 100%;
+}
+
+.MTrimmedWindow {  
+    margin-top: 2px;
+    margin-bottom: 2px;
+    margin-left: 2px;
+    margin-right: 2px;
+}
+
+.MTrimmedWindow.topLevel { 
+    margin-top: 24px;
+    margin-bottom: 2px;
+    margin-left: 12px;
+    margin-right: 12px;
+}
+
+.MPartStack {
+    swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+    swt-unselected-tabs-color: #FFFFFF #FFFFFF #FFFFFF 100% 100%;
+    swt-outer-keyline-color: #FFFFFF;
+	swt-inner-keyline-color: #FFFFFF;
+	swt-mru-visible: false;
+}
+
+.MTrimBar {
+    background-color: #EEF2F7 #DEEBF3 100%;
+}
+
+
+.MTrimBar#org-eclipse-ui-main-toolbar  {
+    background-image:  url(./winXPBlue.png);	
+}
+
+.MPartStack.active {
+	swt-unselected-tabs-color: #CEDEF4 #D2E2F9 #FFFFFF 100% 100%;
+    swt-outer-keyline-color: #C3D0E9;
+	swt-inner-keyline-color: #FFFFFF;
+}
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_gtk.css b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_gtk.css
new file mode 100644
index 0000000..785d0f9
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_gtk.css
@@ -0,0 +1,56 @@
+
+@import url("e4_basestyle.css");
+
+.MTrimmedWindow { 
+    background-color: #E2E2E2; 
+}
+
+.MPartStack {
+	font-size: 11;
+	swt-simple: false;
+	swt-mru-visible: false;
+}
+
+.MTrimBar {
+    background-color: #E2E2E2; 
+}
+
+.MTrimBar#org-eclipse-ui-main-toolbar  {
+    background-image:  url(./gtkGrey.png);	
+}
+
+.MToolControl.TrimStack {
+	frame-image:  url(./gtkTSFrame.png);
+	handle-image:  url(./gtkHandle.png);
+}
+
+.MPartStack.active {
+	swt-unselected-tabs-color: #DCDCDC #E1E1E1 #FFFFFF 100% 100%;
+    swt-outer-keyline-color: #B4B4B4;
+    swt-tab-outline: #B4B4B4;
+}
+
+#PerspectiveSwitcher { 
+	background-color: #EBEBEB #E2E2E2 100%;
+	eclipse-perspective-keyline-color: #B4B4B4 #B4B4B4;
+}
+
+#org-eclipse-ui-editorss {
+   swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+   swt-unselected-tabs-color: #F0F0F0 #F0F0F0 #F0F0F0 100% 100%;
+   swt-outer-keyline-color: #B4B4B4;
+   swt-inner-keyline-color: #F0F0F0;
+   swt-tab-outline: #F0F0F0;
+   color: #F0F0F0;
+   swt-tab-height: 8px;
+   padding: 0px 5px 7px;
+}
+
+CTabFolder.MArea .MPartStack, CTabFolder.MArea .MPartStack.active {
+   swt-shadow-visible: false;
+}
+
+CTabFolder Canvas {
+  background-color: #F8F8F8;
+}
+
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_mac.css b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_mac.css
new file mode 100644
index 0000000..88d03e4
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_mac.css
@@ -0,0 +1,53 @@
+@import url("e4_basestyle.css");
+
+.MTrimmedWindow { 
+    background-color: #E8E8E8;
+}
+
+.MPartStack {
+	font-size: 12;
+	swt-simple: false;
+	swt-mru-visible: false;
+}
+
+.MTrimBar {
+    background-color: #E8E8E8;
+}
+
+.MTrimBar#org-eclipse-ui-main-toolbar {
+    background-color:  #CFCFCF #A8A8A8 100%;	
+}
+
+.MToolControl.TrimStack {
+	frame-image:  url(./macTSFrame.png);
+	handle-image:  url(./macHandle.png);
+}
+
+.MPartStack.active {
+	swt-unselected-tabs-color: #F6F6F6 #D3D3D3 #D1D1D1 #D1D1D1 #D6D6D6 #D6D6D6 #FFFFFF 20% 45% 60% 70% 100% 100%;
+    swt-outer-keyline-color: #C4C5C1;
+}
+
+#PerspectiveSwitcher {
+	background-color: #F0F0F0 #E8E8E8 100%;
+	eclipse-perspective-keyline-color: #515151 #515151;
+}
+
+#org-eclipse-ui-editorss {
+   swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+   swt-unselected-tabs-color: #D6DDE5 #D6DDE5 #D6DDE5 100% 100%;
+   swt-outer-keyline-color: #D6DDE5;
+   swt-inner-keyline-color: #D6DDE5;
+   swt-tab-outline: #D6DDE5;
+   color: #D6DDE5;
+   swt-tab-height: 8px;
+   padding: 0px 5px 7px;
+}
+
+CTabFolder.MArea .MPartStack, CTabFolder.MArea .MPartStack.active {
+   swt-shadow-visible: false;
+}
+
+CTabFolder Canvas {
+  background-color: #F0F0F0;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_mru_on_win7.css b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_mru_on_win7.css
new file mode 100644
index 0000000..4a93668
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_mru_on_win7.css
@@ -0,0 +1,53 @@
+@import url("e4_basestyle.css");
+
+.MTrimmedWindow { 
+    background-color: #E1E6F6; 
+}
+
+.MPartStack {
+	font-size: 9;
+	font-family: 'Segoe UI';
+	swt-simple: true;
+	swt-mru-visible: true;
+}
+
+.MTrimBar {
+    background-color: #E1E6F6; 
+}
+
+.MToolControl.TrimStack {
+	frame-image:  url(./win7TSFrame.png);
+	handle-image:  url(./win7Handle.png);
+}
+
+.MTrimBar#org-eclipse-ui-main-toolbar {
+    background-image:  url(./win7.png);	
+}
+
+.MPartStack.active {
+	swt-unselected-tabs-color: #F3F9FF #D0DFEE #CEDDED #CEDDED #D2E1F0 #D2E1F0 #FFFFFF 20% 45% 60% 70% 100% 100%;
+	swt-outer-keyline-color: #B6BCCC;
+}
+
+#PerspectiveSwitcher  {
+	background-color: #F5F7FC #E1E6F6 100%;
+}
+
+#org-eclipse-ui-editorss {
+   swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+   swt-unselected-tabs-color: #F0F0F0 #F0F0F0 #F0F0F0 100% 100%;
+   swt-outer-keyline-color: #B4B4B4;
+   swt-inner-keyline-color: #F0F0F0;
+   swt-tab-outline: #F0F0F0;
+   color: #F0F0F0;
+   swt-tab-height: 8px;
+   padding: 0px 5px 7px;
+}
+
+CTabFolder.MArea .MPartStack, CTabFolder.MArea .MPartStack.active {
+   swt-shadow-visible: false;
+}
+
+CTabFolder Canvas {
+  background-color: #F8F8F8;
+}
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_win7.css b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_win7.css
new file mode 100644
index 0000000..1a4f110
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_win7.css
@@ -0,0 +1,53 @@
+@import url("e4_basestyle.css");
+
+.MTrimmedWindow { 
+    background-color: #E1E6F6; 
+}
+
+.MPartStack {
+	font-size: 9;
+	font-family: 'Segoe UI';
+	swt-simple: true;
+	swt-mru-visible: false;
+}
+
+.MTrimBar {
+    background-color: #E1E6F6; 
+}
+
+.MTrimBar#org-eclipse-ui-main-toolbar {
+    background-image:  url(./win7.png);	
+}
+
+.MToolControl.TrimStack {
+	frame-image:  url(./win7TSFrame.png);
+	handle-image:  url(./win7Handle.png);
+}
+
+.MPartStack.active {
+	swt-unselected-tabs-color: #F3F9FF #D0DFEE #CEDDED #CEDDED #D2E1F0 #D2E1F0 #FFFFFF 20% 45% 60% 70% 100% 100%;
+	swt-outer-keyline-color: #B6BCCC;
+}
+
+#PerspectiveSwitcher  {
+	background-color: #F5F7FC #E1E6F6 100%;
+}
+
+#org-eclipse-ui-editorss {
+   swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+   swt-unselected-tabs-color: #F0F0F0 #F0F0F0 #F0F0F0 100% 100%;
+   swt-outer-keyline-color: #B4B4B4;
+   swt-inner-keyline-color: #F0F0F0;
+   swt-tab-outline: #F0F0F0;
+   color: #F0F0F0;
+   swt-tab-height: 8px;
+   padding: 0px 5px 7px;
+}
+
+CTabFolder.MArea .MPartStack, CTabFolder.MArea .MPartStack.active {
+   swt-shadow-visible: false;
+}
+
+CTabFolder Canvas {
+  background-color: #F8F8F8;
+}
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_winxp_blu.css b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_winxp_blu.css
new file mode 100644
index 0000000..c026c44
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_winxp_blu.css
@@ -0,0 +1,55 @@
+@import url("e4_basestyle.css");
+
+.MTrimmedWindow { 
+ 	background-color: #F0ECE0; 
+}
+
+.MPartStack {
+	font-size: 9;
+	swt-simple: true;
+	swt-mru-visible: false;
+}
+
+.MTrimBar {
+    background-color: #F0ECE0; 
+}
+
+
+.MTrimBar#org-eclipse-ui-main-toolbar  {
+    background-image:  url(./winXPBlue.png);	
+}
+
+.MToolControl.TrimStack {
+	frame-image:  url(./winXPBluTSFrame.png);
+	handle-image:  url(./winXPBluHandle.png);
+}
+
+.MPartStack.active {
+	swt-unselected-tabs-color: #F1F4FD #C9DAF3 #BED4F1 #BED4F1 #C9D7F2 #C9D7F2 #FFFFFF 20% 45% 60% 70% 100% 100%;
+    swt-outer-keyline-color: #B8C7E5;
+}
+
+#PerspectiveSwitcher  {
+	background-color: #F5F3ED #F0ECE0 100%;
+	eclipse-perspective-keyline-color: #7F91B5 #7F91B5;
+}
+
+#org-eclipse-ui-editorss {
+   swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+   swt-unselected-tabs-color: #F0F0F0 #F0F0F0 #F0F0F0 100% 100%;
+   swt-outer-keyline-color: #B4B4B4;
+   swt-inner-keyline-color: #F0F0F0;
+   swt-tab-outline: #F0F0F0;
+   color: #F0F0F0;
+   swt-tab-height: 8px;
+   padding: 0px 5px 7px;
+}
+
+CTabFolder.MArea .MPartStack, CTabFolder.MArea .MPartStack.active {
+   swt-shadow-visible: false;
+}
+
+CTabFolder Canvas {
+  background-color: #F8F8F8;
+}
+
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_winxp_olv.css b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_winxp_olv.css
new file mode 100644
index 0000000..6c62257
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_winxp_olv.css
@@ -0,0 +1,49 @@
+
+.MTrimmedWindow { 
+    margin-top: 2px;
+    margin-bottom: 2px;
+    margin-left: 2px;
+    margin-right: 2px;
+}
+
+.MTrimmedWindow.topLevel { 
+    margin-top: 24px;
+    margin-bottom: 2px;
+    margin-left: 12px;
+    margin-right: 12px;
+}
+
+.MPartStack {
+    swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+    swt-unselected-tabs-color: #FFFFFF #FFFFFF #FFFFFF 100% 100%;
+    swt-outer-keyline-color: #FFFFFF;
+	swt-inner-keyline-color: #FFFFFF;
+	font-size: 9;
+	swt-simple: true;
+	padding: 0px 10px 11px;
+	swt-mru-visible: false;
+}
+
+.MTrimBar#org-eclipse-ui-main-toolbar {
+    background-image:  url(./winXPOlive.png);	
+}
+
+.MPartStack.active {
+	swt-unselected-tabs-color: #E6E3C3 #EDEACA #FFFFFF 100% 100%;
+    swt-outer-keyline-color: #BFCDA4;
+	swt-inner-keyline-color: #FFFFFF;
+	swt-tab-outline: #B6BCCC;
+}
+
+#PerspectiveSwitcher  {
+	background-color: #F5F3ED #F0ECE0 100%;
+	eclipse-perspective-keyline-color: #A7B680 #A7B680;
+}
+
+.MToolBar.Draggable {
+	handle-image:  url(./dragHandle.png);
+}
+
+.MToolControl.Draggable {
+	handle-image:  url(./dragHandle.png);
+}
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/disabled_book.css b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/disabled_book.css
new file mode 100644
index 0000000..5abd004
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/disabled_book.css
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse16.gif b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse16.gif
new file mode 100644
index 0000000..abefafc
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse16.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse16.png b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse16.png
new file mode 100644
index 0000000..8bd31d1
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse16.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse256.png b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse256.png
new file mode 100644
index 0000000..941ab0b
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse256.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse32.gif b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse32.gif
new file mode 100644
index 0000000..29edaa0
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse32.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse32.png b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse32.png
new file mode 100644
index 0000000..71ea8f9
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse32.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse48.gif b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse48.gif
new file mode 100644
index 0000000..ba596ce
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse48.png b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse48.png
new file mode 100644
index 0000000..6845e67
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse48.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse_lg.gif b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse_lg.gif
new file mode 100644
index 0000000..c004bf2
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse_lg.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/helpData.xml b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/helpData.xml
new file mode 100644
index 0000000..0838605
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/helpData.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="utf-8"?>
+<extensions>
+	<tocOrder>
+		<toc id="/org.eclipse.platform.doc.user/toc.xml"/>
+		<toc id="/org.eclipse.jdt.doc.user/toc.xml"/>
+		<toc id="/org.eclipse.platform.doc.isv/toc.xml"/>
+		<toc id="/org.eclipse.jdt.doc.isv/toc.xml"/>
+		<toc id="/org.eclipse.pde.doc.user/toc.xml"/>
+	</tocOrder>
+</extensions>
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/dragHandle.png b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/dragHandle.png
new file mode 100644
index 0000000..bea1179
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/dragHandle.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkGrey.png b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkGrey.png
new file mode 100644
index 0000000..54d631d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkGrey.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkHandle.png b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkHandle.png
new file mode 100644
index 0000000..b0288cf
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkHandle.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkTSFrame.png b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkTSFrame.png
new file mode 100644
index 0000000..dd08bba
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkTSFrame.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macGrey.png b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macGrey.png
new file mode 100644
index 0000000..59075ad
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macGrey.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macHandle.png b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macHandle.png
new file mode 100644
index 0000000..98b2193
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macHandle.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macTSFrame.png b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macTSFrame.png
new file mode 100644
index 0000000..ee32cf5
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macTSFrame.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/arrow.gif b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/arrow.gif
new file mode 100644
index 0000000..7d4c3f1
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/arrow.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_teamsup48.gif b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_teamsup48.gif
new file mode 100644
index 0000000..ed93db0
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_teamsup48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_teamsup48_hov.gif b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_teamsup48_hov.gif
new file mode 100644
index 0000000..464e9af
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_teamsup48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_wbbasics48.gif b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_wbbasics48.gif
new file mode 100644
index 0000000..d0102c9
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_wbbasics48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_wbbasics48_hov.gif b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_wbbasics48_hov.gif
new file mode 100644
index 0000000..cc830b0
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_wbbasics48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_checkout48.gif b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_checkout48.gif
new file mode 100644
index 0000000..f3de4d2
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_checkout48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_checkout48_hov.gif b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_checkout48_hov.gif
new file mode 100644
index 0000000..ffa86f9
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_checkout48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_merge48.gif b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_merge48.gif
new file mode 100644
index 0000000..ed93db0
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_merge48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_merge48_hov.gif b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_merge48_hov.gif
new file mode 100644
index 0000000..464e9af
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_merge48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclcommunity48.gif b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclcommunity48.gif
new file mode 100644
index 0000000..075cfaa
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclcommunity48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclcommunity48_hov.gif b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclcommunity48_hov.gif
new file mode 100644
index 0000000..7ec2cce
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclcommunity48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclplatform48.gif b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclplatform48.gif
new file mode 100644
index 0000000..f6fa59f
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclplatform48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclplatform48_hov.gif b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclplatform48_hov.gif
new file mode 100644
index 0000000..8624fc1
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclplatform48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_migrate48.gif b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_migrate48.gif
new file mode 100644
index 0000000..f3de4d2
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_migrate48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_migrate48_hov.gif b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_migrate48_hov.gif
new file mode 100644
index 0000000..ffa86f9
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_migrate48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_updates48.gif b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_updates48.gif
new file mode 100644
index 0000000..f2f80d8
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_updates48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_updates48_hov.gif b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_updates48_hov.gif
new file mode 100644
index 0000000..08fbbed
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_updates48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7.png b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7.png
new file mode 100644
index 0000000..b9bf09d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7Handle.png b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7Handle.png
new file mode 100644
index 0000000..b73a963
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7Handle.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7TSFrame.png b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7TSFrame.png
new file mode 100644
index 0000000..eec6be6
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7TSFrame.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winClassicHandle.png b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winClassicHandle.png
new file mode 100644
index 0000000..cfeb6dd
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winClassicHandle.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winClassicTSFrame.png b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winClassicTSFrame.png
new file mode 100644
index 0000000..0b9101c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winClassicTSFrame.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBluHandle.png b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBluHandle.png
new file mode 100644
index 0000000..45441b3
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBluHandle.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBluTSFrame.png b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBluTSFrame.png
new file mode 100644
index 0000000..5880d78
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBluTSFrame.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBlue.png b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBlue.png
new file mode 100644
index 0000000..fc27964
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBlue.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPHandle.png b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPHandle.png
new file mode 100644
index 0000000..17eb69a
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPHandle.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPOlive.png b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPOlive.png
new file mode 100644
index 0000000..c745ee1
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPOlive.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPTSFrame.png b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPTSFrame.png
new file mode 100644
index 0000000..baf45b9
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPTSFrame.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro-eclipse.png b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro-eclipse.png
new file mode 100644
index 0000000..015e7fc
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro-eclipse.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/overview.css b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/overview.css
new file mode 100644
index 0000000..cc5d6ad
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/overview.css
@@ -0,0 +1,5 @@
+a#basics img { background-image : url('../../images/topiclabel/ov_wbbasics48.gif'); }
+a#basics:hover img { background-image : url('../../images/topiclabel/ov_wbbasics48_hov.gif'); }
+
+a#team img { background-image : url('../../images/topiclabel/ov_teamsup48.gif'); }
+a#team:hover img { background-image : url('../../images/topiclabel/ov_teamsup48_hov.gif'); }
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/overview.properties b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/overview.properties
new file mode 100644
index 0000000..c7e33e7
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/overview.properties
@@ -0,0 +1,20 @@
+###############################################################################
+# Copyright (c) 2005, 2007 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+overview.page-content.overview-links.layout.vspacing = 35
+
+overview.basics.link-icon = images/topiclabel/ov_wbbasics48.gif
+overview.basics.hover-icon = images/topiclabel/ov_wbbasics48_hov.gif
+
+overview.team.link-icon = images/topiclabel/ov_teamsup48.gif
+overview.team.hover-icon = images/topiclabel/ov_teamsup48_hov.gif
+
+overview.subtitle-id = overview/page-content/page-title
+overview.description-id = overview/page-content/page-description
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/tutorials.css b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/tutorials.css
new file mode 100644
index 0000000..92770e2
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/tutorials.css
@@ -0,0 +1,5 @@
+a#cvs_checkout img { background-image : url('../../images/topiclabel/tu_checkout48.gif'); }
+a#cvs_checkout:hover img { background-image : url('../../images/topiclabel/tu_checkout48_hov.gif'); }
+
+a#cvs_merge img { background-image : url('../../images/topiclabel/tu_merge48.gif'); }
+a#cvs_merge:hover img { background-image : url('../../images/topiclabel/tu_merge48_hov.gif'); }
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/tutorials.properties b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/tutorials.properties
new file mode 100644
index 0000000..d065463
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/tutorials.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2006, 2008 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+tutorials.cvs_checkout.link-icon = images/topiclabel/tu_checkout48.gif
+tutorials.cvs_checkout.hover-icon = images/topiclabel/tu_checkout48_hov.gif
+
+tutorials.cvs_merge.link-icon = images/topiclabel/tu_merge48.gif
+tutorials.cvs_merge.hover-icon = images/topiclabel/tu_merge48_hov.gif
+
+tutorials.subtitle-id = tutorials/page-content/page-title
+tutorials.description-id = tutorials/page-content/page-description
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/whatsnew.css b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/whatsnew.css
new file mode 100644
index 0000000..5515caa
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/whatsnew.css
@@ -0,0 +1,50 @@
+
+a#platform-noteworthy img { background-image : url(../../images/topiclabel/wn_eclplatform48.gif); }
+a#platform-noteworthy:hover img { background-image : url(../../images/topiclabel/wn_eclplatform48_hov.gif); }
+
+a#updates img { background-image : url(../../images/topiclabel/wn_updates48.gif); }
+a#updates:hover img { background-image : url(../../images/topiclabel/wn_updates48_hov.gif); }
+
+a#eclipse img { background-image : url(../../images/topiclabel/wn_eclcommunity48.gif); }
+a#eclipse:hover img { background-image : url(../../images/topiclabel/wn_eclcommunity48_hov.gif); }
+
+a#migration img { background-image : url(../../images/topiclabel/wn_migrate48.gif); }
+a#migration:hover img { background-image : url(../../images/topiclabel/wn_migrate48_hov.gif); }
+
+div#rss-news {
+	position: relative;
+	top: -25px;
+	margin-bottom: -25px;
+	margin-left: 52px;
+}
+
+#rss-news .div-label {
+	font-size: 9pt;
+}
+
+#rss-news .provided-content {
+}
+
+#rss-news .status-text {
+	font-weight: normal;
+	color: #909090;
+	font-size: 8pt;
+}
+
+ul#eclipse-news {
+	list-style-type: none;
+	list-style-image: url("../../images/topiclabel/arrow.gif");
+	margin-left: 10px;
+	margin-top: 5px;
+}
+
+ul#eclipse-news li {
+}
+
+ul#eclipse-news a {
+	font-weight: normal;
+}
+
+ul#eclipse-news a:hover {
+	text-decoration: underline;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/whatsnew.properties b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/whatsnew.properties
new file mode 100644
index 0000000..34b0f1c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/whatsnew.properties
@@ -0,0 +1,26 @@
+###############################################################################
+# Copyright (c) 2005, 2007 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+whatsnew.platform-noteworthy.link-icon = images/topiclabel/wn_eclplatform48.gif
+whatsnew.platform-noteworthy.hover-icon = images/topiclabel/wn_eclplatform48_hov.gif
+
+whatsnew.updates.link-icon = images/topiclabel/wn_updates48.gif
+whatsnew.updates.hover-icon = images/topiclabel/wn_updates48_hov.gif
+
+whatsnew.eclipse.link-icon = images/topiclabel/wn_eclcommunity48.gif
+whatsnew.eclipse.hover-icon = images/topiclabel/wn_eclcommunity48_hov.gif
+
+whatsnew.migration.link-icon = images/topiclabel/wn_migrate48.gif
+whatsnew.migration.hover-icon = images/topiclabel/wn_migrate48_hov.gif
+
+whatsnew.page-content.layout.vspacing = 40 
+
+whatsnew.subtitle-id = news/page-content/page-title
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/overviewExtensionContent.xml b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/overviewExtensionContent.xml
new file mode 100644
index 0000000..3f6bd32
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/overviewExtensionContent.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<introContent>
+  	<extensionContent id="org.eclipse.ui.workbench" name="Workbench" alt-style="css/overview.properties" style="css/overview.css" path="overview/@">
+  		<group style-id="content-group" id="content-group">
+			<link style-id="content-link" label="Workbench basics" url="http://org.eclipse.ui.intro/showHelpTopic?id=/org.eclipse.platform.doc.user/gettingStarted/intro/overview.htm" id="basics">
+          		<text>Learn about basic Eclipse workbench concepts</text>
+       		</link>
+       		<link style-id="content-link" label="Team support" url="http://org.eclipse.ui.intro/showHelpTopic?id=/org.eclipse.platform.doc.user/concepts/concepts-26.htm" id="team">
+          		<text>Find out how to collaborate with other developers</text>
+       		</link>
+       	</group>
+  	</extensionContent>
+</introContent>
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/tutorialsExtensionContent.xml b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/tutorialsExtensionContent.xml
new file mode 100644
index 0000000..28c6145
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/tutorialsExtensionContent.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<introContent>
+  <!-- Extension to the SDK Tutorials Page. -->
+  <extensionContent id="org.eclipse.team" name="Team/CVS" alt-style="css/tutorials.properties" style="css/tutorials.css" path="tutorials/@">
+    <group label="Team/CVS" id="team" style-id="content-group">
+      <link url="http://org.eclipse.ui.intro/showStandby?partId=org.eclipse.platform.cheatsheet&amp;input=org.eclipse.platform.cvs.checkout" label="Check out a CVS project" id="cvs_checkout" style-id="content-link">
+        <text>Learn how to connect to a CVS repository and check out a project.</text>
+      </link>
+      <link url="http://org.eclipse.ui.intro/showStandby?partId=org.eclipse.platform.cheatsheet&amp;input=org.eclipse.platform.cvs.merge" label="Merge CVS branches" id="cvs_merge" style-id="content-link">
+        <text>Follow the steps for merging changes from one CVS branch into another.</text>
+      </link>
+    </group>
+  </extensionContent>
+</introContent>
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent1.xml b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent1.xml
new file mode 100644
index 0000000..c600269
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent1.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<introContent>
+  	<extensionContent id="org.eclipse.ui.workbench.news" name="Eclipse Platform" alt-style="css/whatsnew.properties" style="css/whatsnew.css" path="whatsnew/@">
+		<group style-id="content-group" id="content-group">
+       		<link label="Eclipse Platform" url="http://org.eclipse.ui.intro/showHelpTopic?id=/org.eclipse.platform.doc.user/whatsNew/platform_whatsnew.html" id="platform-noteworthy" style-id="content-link">
+          		<text>Find out about the major new features in this release</text>
+       		</link>
+       	</group>
+  	</extensionContent>
+</introContent>
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent2.xml b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent2.xml
new file mode 100644
index 0000000..490435d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent2.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<introContent>
+  	<extensionContent id="org.eclipse.ui.workbench" name="Updates and Eclipse.org" alt-style="css/whatsnew.properties" style="css/whatsnew.css" path="whatsnew/@">
+  	   <group style-id="content-group" id="content-group">
+       		<link style-id="content-link" label="New Updates" url="http://org.eclipse.ui.intro/runAction?pluginId=org.eclipse.platform&amp;class=org.eclipse.platform.internal.LaunchUpdateIntroAction" id="updates">
+          		<text>Get the latest updates from Eclipse.org</text>
+       		</link>
+       		<link style-id="content-link" label="Eclipse community" url="http://org.eclipse.ui.intro/openBrowser?url=http://www.eclipse.org" id="eclipse">
+          		<text>Join the community, read articles and news on Eclipse.org</text>
+       		</link>
+			<group id="rss-news" label="Latest News" expandable="true" expanded="true">
+				<contentProvider id="url=http://www.eclipse.org/home/eclipsenews.rss##welcome_items=5##no_news_url=http://www.eclipse.org/community/##no_news_text=Welcome to the Eclipse Community Page" pluginId="org.eclipse.ui.intro" class="org.eclipse.ui.intro.contentproviders.EclipseRSSViewer">
+				</contentProvider>
+			</group>
+       </group>
+  	</extensionContent>
+</introContent>
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent3.xml b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent3.xml
new file mode 100644
index 0000000..28668e1
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent3.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<introContent>
+  	<extensionContent id="org.eclipse.ui.workbench.migration" name="Porting Guide" alt-style="css/whatsnew.properties" style="css/whatsnew.css" path="whatsnew/@">
+		<group filter="plugin=org.eclipse.platform.doc.isv" style-id="content-group" id="content-group">
+       		<link label="Migration from the previous release" url="http://org.eclipse.ui.intro/showHelpTopic?id=/org.eclipse.platform.doc.isv/porting/eclipse_4_2_porting_guide.html" id="migration" style-id="content-link">
+          		<text>Learn what you need to do to make your old code work in Eclipse 4.2</text>
+       		</link>
+       	</group>
+  	</extensionContent>
+</introContent>
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/introData.xml b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/introData.xml
new file mode 100644
index 0000000..2b1c002
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/introData.xml
@@ -0,0 +1,57 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<extensions>
+   <page id="tutorials">
+      <group path="page-content/bottom-left" default="true">
+      </group>
+      <group path="page-content/bottom-right" default="true">
+      </group>
+      <group path="page-content/top-left">
+         <extension id="org.eclipse.jdt" importance="low"/>
+         <extension id="org.eclipse.team" importance="low"/>
+      </group>
+      <group path="page-content/top-right">
+         <extension id="org.eclipse.pde" importance="low"/>
+      </group>
+   </page>
+   <page id="whatsnew">
+      <group path="page-content/bottom-left" default="true">
+      </group>
+      <group path="page-content/bottom-right" default="true">
+      </group>
+      <group path="page-content/top-left">
+         <extension id="org.eclipse.ui.workbench.news" importance="low"/>
+         <extension id="org.eclipse.jdt" importance="low"/>
+         <extension id="org.eclipse.pde.changes" importance="low"/>
+         <extension id="org.eclipse.ui.workbench.migration" importance="callout"/>
+      </group>
+      <group path="page-content/top-right">
+         <extension id="org.eclipse.ui.workbench" importance="low"/>
+      </group>
+   </page>
+   <page id="samples">
+      <group path="page-content/bottom-left" default="true">
+      </group>
+      <group path="page-content/bottom-right" default="true">
+      </group>
+      <group path="page-content/top-left">
+         <extension id="org.eclipse.pde.workbench" importance="low"/>
+      </group>
+      <group path="page-content/top-right">
+         <extension id="org.eclipse.jdt" importance="low"/>
+         <extension id="org.eclipse.pde.swt" importance="low"/>
+      </group>
+   </page>
+   <page id="overview">
+      <group path="page-content/bottom-left" default="true">
+      </group>
+      <group path="page-content/bottom-right" default="true">
+      </group>
+      <group path="page-content/top-left">
+         <extension id="org.eclipse.ui.workbench" importance="low"/>
+      </group>
+      <group path="page-content/top-right">
+         <extension id="org.eclipse.jdt" importance="low"/>
+         <extension id="org.eclipse.pde" importance="low"/>
+      </group>
+   </page>
+</extensions>
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/macosx_narrow_book.css b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/macosx_narrow_book.css
new file mode 100644
index 0000000..344e5e4
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/macosx_narrow_book.css
@@ -0,0 +1 @@
+h1,h2           { color: Black }
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/narrow_book.css b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/narrow_book.css
new file mode 100644
index 0000000..09a9aa1
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/narrow_book.css
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/platform.jar b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/platform.jar
new file mode 100644
index 0000000..5cc0f75
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/platform.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin.properties b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin.properties
new file mode 100644
index 0000000..97c51e6
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin.properties
@@ -0,0 +1,64 @@
+###############################################################################
+# Copyright (c) 2000, 2013 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+pluginName=Eclipse Platform
+providerName=Eclipse.org
+
+productName=Eclipse Platform
+productBlurb=Eclipse Platform\n\
+\n\
+Version: 4.2.2\n\
+Build id: {0}\n\
+\n\
+(c) Copyright Eclipse contributors and others 2000, 2013.  All rights reserved.\n\
+Visit http://www.eclipse.org/platform\n\
+\n\
+This product includes software developed by the\n\
+Apache Software Foundation http://www.apache.org/
+
+cheatsheet.actionset = Cheat Sheets
+cheatsheet.item = &Cheat Sheets...
+cheatsheet.category.team = Team/CVS
+cheatsheet.cvs.checkout.name= Check out a CVS project
+cheatsheet.cvs.checkout.desc= Learn how to connect to a CVS repository and check out a project.
+cheatsheet.cvs.merge.name= Merge CVS branches
+cheatsheet.cvs.merge.desc= Follow the steps for merging changes from one CVS branch into another.
+shortcut.overview.tooltip = Overview
+shortcut.tutorials.tooltip = Tutorials
+shortcut.samples.tooltip = Samples
+shortcut.whatsnew.tooltip = What's New
+
+productIntroTitle = Welcome to Eclipse
+productIntroBrandingText = Eclipse Project
+introDescription-overview = The Eclipse Platform is a kind of universal tool platform - an open extensible IDE for anything and nothing in particular. 
+introDescription-tutorials = Learn how to be productive using Eclipse by completing end-to-end tutorials that will guide you along the way.
+introDescription-samples = Explore Eclipse by installing prefabricated samples (may require Internet connection).
+
+theme.default = Default Theme
+theme.classic = Classic
+theme.gtk = GTK
+theme.mac = Mac
+theme.win7 = Windows 7
+theme.winxpBlue = Windows XP Blue
+theme.winxpOlive = Windows XP Olive
+theme.win7Classic = Windows 7 Classic
+theme.solaris = Solaris
+theme.aix = AIX
+theme.hpux = HPUX
+
+trimmedwindow.label.eclipseSDK = Eclipse SDK
+command.name.exit = Exit
+command.name.showView = Show View
+command.name.save = Save
+command.name.saveAll = Save All
+bindingcontext.name.dialogAndWindows = In Dialog and Windows
+bindingcontext.name.windows = In Windows
+bindingcontext.name.bindingView = In Binding View
+bindingcontext.name.dialogs = In Dialogs
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin.xml b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin.xml
new file mode 100644
index 0000000..c90fb84
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin.xml
@@ -0,0 +1,198 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.0"?>
+<plugin>
+
+     <extension id="ide" point="org.eclipse.core.runtime.products"> 
+      <product name="%productName" application="org.eclipse.ui.ide.workbench" description="%productBlurb"> 
+          <!-- For documentation on updating icons, see http://wiki.eclipse.org/Platform-releng/Updating_Branding -->
+          <property name="windowImages" value="eclipse16.gif,eclipse32.gif,eclipse48.gif,eclipse16.png,eclipse32.png,eclipse48.png,eclipse256.png"/> 
+          <property name="aboutImage" value="eclipse_lg.gif"/> 
+          <property name="aboutText" value="%productBlurb"/> 
+          <property name="appName" value="Eclipse"/> 
+          <property name="preferenceCustomization" value="plugin_customization.ini"/> 
+          <property
+                name="startupForegroundColor"
+                value="FFFFFF"/>
+          <property
+                name="startupMessageRect"
+                value="7,225,320,20"/>
+          <property
+                name="startupProgressRect"
+                value="2,290,448,10"/>
+         <property
+          		name="introTitle"
+          		value="%productIntroTitle"/>
+          <property
+          		name="introBrandingImage"
+          		value="product:intro-eclipse.png"/>
+          <property
+          		name="introBrandingImageText"
+          		value="%productIntroBrandingText"/>
+		  <property
+				name="introDescription-overview"
+				value="%introDescription-overview"/>
+		  <property
+				name="introDescription-tutorials"
+				value="%introDescription-tutorials"/>
+		  <property
+				name="introDescription-samples"
+				value="%introDescription-samples"/>                
+		  <property
+				name="applicationXMI"
+				value="org.eclipse.platform/LegacyIDE.e4xmi">
+		  </property>
+		  <property
+				name="cssTheme"
+				value="org.eclipse.e4.ui.css.theme.e4_default">
+		  </property>
+		  <property
+				name="applicationCSSResources"
+          value="platform:/plugin/org.eclipse.platform/images/">
+		  </property>
+      </product> 
+   </extension> 
+   
+   	<extension
+		point="org.eclipse.ui.intro">
+      <introProductBinding
+            introId="org.eclipse.ui.intro.universal"
+            productId="org.eclipse.platform.ide">
+      </introProductBinding>
+    </extension>
+
+   <extension
+         point="org.eclipse.ui.cheatsheets.cheatSheetContent">
+      <category
+            id="org.eclipse.platform.team"
+            name="%cheatsheet.category.team">
+      </category>
+      <cheatsheet
+            category="org.eclipse.platform.team"
+            contentFile="$nl$/cheatsheets/cvs_checkout.xml"
+            id="org.eclipse.platform.cvs.checkout"
+            name="%cheatsheet.cvs.checkout.name">
+         <description>
+            %cheatsheet.cvs.checkout.desc
+         </description>
+      </cheatsheet>
+      <cheatsheet
+            category="org.eclipse.platform.team"
+            contentFile="$nl$/cheatsheets/cvs_merge.xml"
+            id="org.eclipse.platform.cvs.merge"
+            name="%cheatsheet.cvs.merge.name">
+         <description>
+            %cheatsheet.cvs.merge.desc
+         </description>
+      </cheatsheet>
+   </extension>
+   <!-- =====================================================  -->
+   <!-- Standby Content Part contributions                     -->
+   <!-- =====================================================  -->
+   <extension point="org.eclipse.ui.intro.configExtension">
+      <standbyContentPart
+            id="org.eclipse.platform.cheatsheet"
+            class="org.eclipse.platform.internal.CheatSheetStandbyContent"
+            pluginId="org.eclipse.platform"/>
+      <configExtension
+            configId="org.eclipse.ui.intro.universalConfig"
+            content="$nl$/intro/overviewExtensionContent.xml"/>
+      <configExtension
+            configId="org.eclipse.ui.intro.universalConfig"
+            content="$nl$/intro/tutorialsExtensionContent.xml"/>
+      <configExtension
+            configId="org.eclipse.ui.intro.universalConfig"
+            content="$nl$/intro/whatsnewExtensionContent1.xml"/>
+      <configExtension
+            configId="org.eclipse.ui.intro.universalConfig"
+            content="$nl$/intro/whatsnewExtensionContent2.xml"/>
+      <configExtension
+            configId="org.eclipse.ui.intro.universalConfig"
+            content="$nl$/intro/whatsnewExtensionContent3.xml"/>
+   </extension>
+
+
+   <extension
+         point="org.eclipse.ui.actionSets">
+      <actionSet
+            label="%cheatsheet.actionset"
+            visible="true"
+            id="org.eclipse.ui.cheatsheets.actionSet">
+         <action
+               label="%cheatsheet.item"
+               class="org.eclipse.ui.cheatsheets.CheatSheetExtensionFactory:helpMenuAction"
+               menubarPath="help/group.tutorials"
+               id="org.eclipse.ui.cheatsheets.actions.CheatSheetHelpMenuAction">
+         </action>
+      </actionSet>
+   </extension>
+   <extension
+         point="org.eclipse.e4.ui.css.swt.theme">
+      <theme
+            basestylesheeturi="css/e4_default.css"
+            id="org.eclipse.e4.ui.css.theme.e4_default.noos"
+            label="%theme.default">
+      </theme>
+      <theme
+            basestylesheeturi="css/e4_classic_winxp.css"
+            id="org.eclipse.e4.ui.css.theme.e4_classic"
+            label="%theme.classic">
+      </theme>
+      <theme
+            basestylesheeturi="css/e4_default_gtk.css"
+            id="org.eclipse.e4.ui.css.theme.e4_default"
+            label="%theme.gtk"
+            os="linux">
+      </theme>
+      <theme
+            basestylesheeturi="css/e4_default_mac.css"
+            id="org.eclipse.e4.ui.css.theme.e4_default"
+            label="%theme.mac"
+            os="macosx">
+      </theme>
+      <theme
+            basestylesheeturi="css/e4_default_win7.css"
+            id="org.eclipse.e4.ui.css.theme.e4_default"
+            label="%theme.win7"
+            os="win32"
+            os_version="6.1">
+      </theme>
+            <theme
+                  basestylesheeturi="css/e4_default_winxp_blu.css"
+                  id="org.eclipse.e4.ui.css.theme.e4_default"
+                  label="%theme.winxpBlue"
+                  os="win32">
+      </theme>
+	  <theme
+            basestylesheeturi="css/e4_default_winxp_olv.css"
+            id="org.eclipse.e4.ui.css.theme.e4_default.xpolive"
+            label="%theme.winxpOlive"
+            os="win32">
+      </theme>
+   <theme
+         basestylesheeturi="css/e4_classic_win7.css"
+         id="org.eclipse.e4.ui.css.theme.e4_classic"
+         label="%theme.win7Classic"
+         os="win32"
+         os_version="6.1">
+   </theme>
+   <theme
+         basestylesheeturi="css/e4_default_gtk.css"
+         id="org.eclipse.e4.ui.css.theme.e4_default"
+         label="%theme.solaris"
+         os="solaris">
+   </theme>
+   <theme
+         basestylesheeturi="css/e4_default_gtk.css"
+         id="org.eclipse.e4.ui.css.theme.e4_default"
+         label="%theme.aix"
+         os="aix">
+   </theme>
+   <theme
+         basestylesheeturi="css/e4_classic_winxp.css"
+         id="org.eclipse.e4.ui.css.theme.e4_default"
+         label="%theme.hpux"
+         os="hpux">
+   </theme>
+      </extension>
+
+</plugin>
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin_customization.ini b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin_customization.ini
new file mode 100644
index 0000000..de51636
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin_customization.ini
@@ -0,0 +1,37 @@
+# plugin_customization.ini 
+# sets default values for plug-in-specific preferences
+# keys are qualified by plug-in id
+# e.g., com.example.acmeplugin/myproperty=myvalue
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# "%key" are externalized strings defined in plugin_customization.properties
+# This file does not need to be translated.
+
+# WARNING: This file defines the preference overrides for the Platform build 
+# (the one with no JDT or PDE), not the SDK build (aka the IDE).  
+# For the SDK build, use the plugin_customization.ini file in the 
+# org.eclipse.sdk plug-in instead.
+
+# Property "org.eclipse.ui/defaultPerspectiveId" controls the 
+# perspective that the workbench opens initially
+org.eclipse.ui/defaultPerspectiveId=org.eclipse.ui.resourcePerspective
+
+# new-style tabs by default
+org.eclipse.ui/SHOW_TRADITIONAL_STYLE_TABS=false
+
+# put the perspective switcher on the top right
+org.eclipse.ui/DOCK_PERSPECTIVE_BAR=topRight
+
+# show progress on startup
+org.eclipse.ui/SHOW_PROGRESS_ON_STARTUP=true
+
+# Welcome theme to use
+org.eclipse.ui.intro/INTRO_THEME = org.eclipse.ui.intro.universal.slate
+
+# Root page links to show in the Universal Welcome
+org.eclipse.ui.intro.universal/INTRO_ROOT_PAGES = overview,tutorials,samples,whatsnew
+
+# Initial page layout of the Universal Welcome
+org.eclipse.ui.intro.universal/INTRO_DATA = product:introData.xml
+
+# Order help books in table of contents
+org.eclipse.help/HELP_DATA = helpData.xml
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin_customization.properties b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin_customization.properties
new file mode 100644
index 0000000..f2f3517
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin_customization.properties
@@ -0,0 +1,14 @@
+###############################################################################
+# Copyright (c) 2000, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# plugin_customization.properties
+# contains externalized strings for plugin_customization.ini
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
diff --git a/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/splash.bmp b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/splash.bmp
new file mode 100644
index 0000000..a2d0101
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/splash.bmp
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.rcp_4.2.1.v201302041200.jar b/lib/monitor-x86/plugins/org.eclipse.rcp_4.2.1.v201302041200.jar
new file mode 100644
index 0000000..4f4b6e5
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.rcp_4.2.1.v201302041200.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.search_3.8.0.v20120523-1540.jar b/lib/monitor-x86/plugins/org.eclipse.search_3.8.0.v20120523-1540.jar
new file mode 100644
index 0000000..7a2fc82
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.search_3.8.0.v20120523-1540.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.swt.gtk.linux.x86_3.100.1.v4236b.jar b/lib/monitor-x86/plugins/org.eclipse.swt.gtk.linux.x86_3.100.1.v4236b.jar
new file mode 100644
index 0000000..dd0cc2a
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.swt.gtk.linux.x86_3.100.1.v4236b.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.swt_3.100.1.v4236b.jar b/lib/monitor-x86/plugins/org.eclipse.swt_3.100.1.v4236b.jar
new file mode 100644
index 0000000..9e784d4
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.swt_3.100.1.v4236b.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.text_3.5.200.v20120523-1310.jar b/lib/monitor-x86/plugins/org.eclipse.text_3.5.200.v20120523-1310.jar
new file mode 100644
index 0000000..9d77e50
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.text_3.5.200.v20120523-1310.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.browser_3.4.2.v20130123-162658.jar b/lib/monitor-x86/plugins/org.eclipse.ui.browser_3.4.2.v20130123-162658.jar
new file mode 100644
index 0000000..91c7c13
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.browser_3.4.2.v20130123-162658.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.console_3.5.100.v20120521-2012.jar b/lib/monitor-x86/plugins/org.eclipse.ui.console_3.5.100.v20120521-2012.jar
new file mode 100644
index 0000000..1415db6
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.console_3.5.100.v20120521-2012.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.editors_3.8.0.v20120523-1540.jar b/lib/monitor-x86/plugins/org.eclipse.ui.editors_3.8.0.v20120523-1540.jar
new file mode 100644
index 0000000..5d584f5
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.editors_3.8.0.v20120523-1540.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.externaltools_3.2.100.v20120530-1753.jar b/lib/monitor-x86/plugins/org.eclipse.ui.externaltools_3.2.100.v20120530-1753.jar
new file mode 100644
index 0000000..f2d23cb
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.externaltools_3.2.100.v20120530-1753.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.forms_3.5.200.v20120705-114351.jar b/lib/monitor-x86/plugins/org.eclipse.ui.forms_3.5.200.v20120705-114351.jar
new file mode 100644
index 0000000..5fda331
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.forms_3.5.200.v20120705-114351.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.ide.application_1.0.400.v20120523-1955.jar b/lib/monitor-x86/plugins/org.eclipse.ui.ide.application_1.0.400.v20120523-1955.jar
new file mode 100644
index 0000000..ceff0bf
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.ide.application_1.0.400.v20120523-1955.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.ide_3.8.2.v20121106-165923.jar b/lib/monitor-x86/plugins/org.eclipse.ui.ide_3.8.2.v20121106-165923.jar
new file mode 100644
index 0000000..0d02879
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.ide_3.8.2.v20121106-165923.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/.api_description b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/.api_description
new file mode 100644
index 0000000..8eec52a
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/.api_description
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<component name="org.eclipse.ui.intro.universal_3.2.600.v20120912-155524" version="1.2">
+    <plugin id="org.eclipse.ui.intro.universal_3.2.600.v20120912-155524"/>
+    <package name="org.eclipse.ui.intro.universal" visibility="1">
+        <type name="ExtensionFactory" restrictions="6"/>
+    </package>
+</component>
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/.options b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/.options
new file mode 100644
index 0000000..8de8a48
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/.options
@@ -0,0 +1,24 @@
+# Debugging options for the org.eclipse.ui.intro.universal.
+
+# Master flag for all org.eclipse.ui.intro.universal plugin debug options.
+org.eclipse.ui.intro.universal/debug = true
+
+# Enable logging of information messages in the plugin. By default, info
+# messages are not logged. Setting this option to true will enable logging
+# trace information messages.
+org.eclipse.ui.intro.universal/trace/logInfo = true
+
+# Enable logging of performance messages in the plugin. By default, performance
+# messages are not logged. Setting this option to true will enable logging
+# trace information messages. (note: enabling info logging does not enable
+# this flag.)
+org.eclipse.ui.intro.universal/trace/logPerformance = false
+
+# Performance flags used by the Performance framework to report failures 
+# of specific thresholds.  
+
+# Time to create and display the full Intro view.
+# org.eclipse.ui.intro/perf/createView = 1000
+
+# Time needed to switch between Intro standby states.
+# org.eclipse.ui.intro/perf/setStandbyState = 300
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/ECLIPSE_.RSA b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..aea8620
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/ECLIPSE_.SF b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..80f070b
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/ECLIPSE_.SF
@@ -0,0 +1,1208 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: +seXZ4xz3pYvyr3JMkhA8hkZJGU=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: 6kzl62q3Ft2eEp9b7AjFWAB9PcY=

+

+Name: themes/shared/graphics/contentpage/wn-fs_med.gif

+SHA1-Digest: g4D4b7wuqTNzRVube5QmKC37bZQ=

+

+Name: themes/slate/graphics/icons/ctool/webresources-select.png

+SHA1-Digest: os+7sc8e6OnYZcVvnz/yAMw64tU=

+

+Name: icons/full/obj16/inew_obj.gif

+SHA1-Digest: eRsScWLx85QUBzF7yK5EkT770CE=

+

+Name: themes/circles/swt/migrate.properties

+SHA1-Digest: RnBLNqobyqHJFvY+WbfB7MeeODU=

+

+Name: themes/circles/graphics/launchbar/migrate16.png

+SHA1-Digest: qOwRgNR0NJh2gKIrVlxWfH7Wi3w=

+

+Name: themes/circles/graphics/icons/ctool/wb_nav_32.gif

+SHA1-Digest: E0ITtJWnQdOwBI7A63vmBKYmKJk=

+

+Name: themes/circles/html/font-relative.css

+SHA1-Digest: tUx0kOFdiFK+vgId6wNuZ2ILYZ8=

+

+Name: themes/purpleMesh/swt/webresources.properties

+SHA1-Digest: QfLszx7vRd8waUr7+oxtskHNArY=

+

+Name: themes/slate/graphics/launchbar/migrate16.png

+SHA1-Digest: ayPNPwCVStgADMkH9M8u10dEbOg=

+

+Name: icons/full/obj16/icallout_obj.gif

+SHA1-Digest: Kv6Ia9Pr7KqdvrrCJXgYdMCga6A=

+

+Name: themes/circles/graphics/icons/ctool/tutorials_tophov.gif

+SHA1-Digest: KaCk6TkrNhd2OS1m32y6SFvUQjs=

+

+Name: themes/circles/swt/overview.properties

+SHA1-Digest: dxfnqH/LIpGVO5/H48/Co1vooSQ=

+

+Name: themes/circles/html/whatsnew.css

+SHA1-Digest: Pacc+BuJXkSeS/6P6vUy+/mVp0A=

+

+Name: themes/shared/html/shared.css

+SHA1-Digest: crEguiJWE7d2fyBBNVkLMurs7u0=

+

+Name: themes/purpleMesh/graphics/icons/etool/firsteps48.gif

+SHA1-Digest: pyhExq17Rqus88SE1gSeerjIk84=

+

+Name: themes/slate/graphics/icons/ctool/tu_nav_32.gif

+SHA1-Digest: XZjEi83SrkVDPJmkH0eHwBltxf8=

+

+Name: themes/slate/graphics/rootpage/samples48_hov.gif

+SHA1-Digest: 634EWkbAYNP7qS102sQltfOzxD8=

+

+Name: themes/shared/graphics/icons/ctool/widget_closed_rtl.gif

+SHA1-Digest: yKDpX4nR40C26tvbU0QUyfpTIe0=

+

+Name: themes/circles/graphics/contentpage/tu_banner.jpg

+SHA1-Digest: 9LU6Z+jPPzhwonByip7zOjz+Wew=

+

+Name: themes/circles/graphics/icons/ctool/wb_nav.png

+SHA1-Digest: Hz8erAP6PxWl6mdmALgFQZ6rHNA=

+

+Name: themes/circles/graphics/icons/ctool/fs_nav.png

+SHA1-Digest: 9ZyDPJBbgq3Qm+eAGh1zdhi9ysk=

+

+Name: icons/welcome16.gif

+SHA1-Digest: V1+WjELc7OwG7ZnrhEYLlXvbpWE=

+

+Name: themes/circles/graphics/icons/ctool/migrate.png

+SHA1-Digest: bjbqV9RpASAtwhOz7+8PcXA0NSw=

+

+Name: themes/circles/html/rtl.css

+SHA1-Digest: 8wVt0d9GAUKHlCBSi/vG90jXQUE=

+

+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew48sel.gif

+SHA1-Digest: c7bdT4i6cjAm6zcUNypiOr2OS5k=

+

+Name: themes/shared/graphics/icons/ctool/widget_closed_hov_rtl.gif

+SHA1-Digest: EuXcHObzV2612U2DjQyZlefkskQ=

+

+Name: themes/purpleMesh/graphics/icons/etool/webrsrc48sel.gif

+SHA1-Digest: x6crnl2+ZiZNMdBFeb4C94S/pow=

+

+Name: themes/circles/graphics/icons/ctool/wn_nav.png

+SHA1-Digest: rrR5bDLi89KX/xOPqmWhq3koD1U=

+

+Name: themes/circles/graphics/launchbar/tutorials16.png

+SHA1-Digest: VoPt5dok7nFgh7IHW6eK9dV7L24=

+

+Name: themes/slate/graphics/icons/ctool/migrate.png

+SHA1-Digest: zZNgvgCCkRxzER4saBd3xBWkfU0=

+

+Name: themes/slate/graphics/standby/wn_standbyhov.gif

+SHA1-Digest: qRYU61gSmQPjlS5wCfZvMhAPEp0=

+

+Name: themes/purpleMesh/graphics/icons/ctool/firsteps72.gif

+SHA1-Digest: ARVlQEp9GeLrHjDN4cZ7V/IWrd8=

+

+Name: themes/slate/graphics/icons/ctool/firststeps-select.gif

+SHA1-Digest: o1HHpOXZp6uT1nBu963GSFujPH8=

+

+Name: themes/circles/graphics/icons/ctool/wr_nav.png

+SHA1-Digest: fRVPpOb8tisIfM9YROkSBCvJ5pI=

+

+Name: themes/circles/graphics/standby/wb_standbyhov.gif

+SHA1-Digest: lobGsW2DF34dXuu4VFfcrz+dg3c=

+

+Name: themes/circles/graphics/icons/obj48/newhov_obj.gif

+SHA1-Digest: cwQdX22yDfLP5bVJE9eJF86EFF0=

+

+Name: themes/purpleMesh/graphics/icons/etool/tutorials72.gif

+SHA1-Digest: kIhjXr2y3uh6QnIxtq9XMRxDn8k=

+

+Name: themes/slate/graphics/standby/wn_standby.gif

+SHA1-Digest: e+qTVlL1+aHCcJWhh19xWZmzu5s=

+

+Name: themes/purpleMesh/graphics/contentpage/migrate_wtr.jpg

+SHA1-Digest: a/QcFu26oZ/i3g7k+yAEWo7k5hY=

+

+Name: themes/circles/graphics/icons/ctool/ov_nav_64.gif

+SHA1-Digest: xrr7IJCqmX2C5xvCQW28vhfuOcg=

+

+Name: themes/purpleMesh/graphics/contentpage/section3.gif

+SHA1-Digest: 3sus86ccku05aAqMn9VCPndrPBw=

+

+Name: themes/circles/graphics/icons/ctool/mi_nav_hover.gif

+SHA1-Digest: q/96M0kKrJeOPkrWAT2N+tGGk3s=

+

+Name: themes/purpleMesh/swt/whatsnew.properties

+SHA1-Digest: vUxMvUZmCL3YN89p33Ez9X8ICO4=

+

+Name: themes/slate/graphics/rootpage/firststeps48_hov.gif

+SHA1-Digest: P86nXECjpze8PbI3FM3eFHkm+Lk=

+

+Name: themes/circles/swt/firststeps.properties

+SHA1-Digest: 5tqsudk/R/1lCEbhDUX0rnhOkCQ=

+

+Name: themes/purpleMesh/graphics/icons/etool/overview48.gif

+SHA1-Digest: 89LuwEnmFVFcrYwOdGX+bEA7/KM=

+

+Name: themes/purpleMesh/graphics/icons/ctool/tutorials48.gif

+SHA1-Digest: cwmzAw4TBv+PQgs4YrD9gDw2Ps4=

+

+Name: themes/purpleMesh/html/font-absolute.css

+SHA1-Digest: 0wDpvhSsczlKTj9djfxQ5ENjEHw=

+

+Name: themes/purpleMesh/graphics/icons/dtool/back.gif

+SHA1-Digest: XlK7L7TiiONgpcL9uktiiGmofl8=

+

+Name: themes/slate/graphics/launchbar/whatsnew16.png

+SHA1-Digest: mQVW9+8NecwhNWgzJgNlDBcxaKs=

+

+Name: themes/purpleMesh/graphics/icons/ctool/migrate48sel.gif

+SHA1-Digest: DlIcxxNoIEYuDve+LFuFNw0KGG8=

+

+Name: themes/circles/html/migrate.css

+SHA1-Digest: Io/nl2lGQsSNtmShvxFj1sBzgMk=

+

+Name: themes/circles/html/standby.css

+SHA1-Digest: BB5vT8i6rIB580zgFNu9DHUox54=

+

+Name: themes/shared/graphics/contentpage/ov_med.gif

+SHA1-Digest: iiTKJ+/qWUGjQ6zU2+3qkI2UrKg=

+

+Name: themes/purpleMesh/graphics/icons/ctool/wb48.gif

+SHA1-Digest: rWX2aVi7U3PQ9oyJFekVUzKsQWc=

+

+Name: themes/circles/graphics/icons/ctool/tu_nav_hover.gif

+SHA1-Digest: uYgUnW0vffa7AXJDv2xR+VSo9Pg=

+

+Name: themes/purpleMesh/graphics/icons/ctool/overview72.gif

+SHA1-Digest: 60dEowqMgf4SCZMOqG/JpzLj7DY=

+

+Name: themes/slate/html/migrate.css

+SHA1-Digest: hcVhm6EOYoE4iCqs8i9Z4t3VWsI=

+

+Name: themes/slate/html/standby.css

+SHA1-Digest: mwzfJyl+pkrSjRtKQID7YBAjuB4=

+

+Name: themes/circles/graphics/icons/ctool/wn_nav_32.gif

+SHA1-Digest: lQhyX2A/+T1vu7AHgHmAdMPJL34=

+

+Name: themes/slate/graphics/rootpage/overview48_hov.png

+SHA1-Digest: Lyw9EfbA+ECmHubXo+hmlO/xDEI=

+

+Name: themes/circles/graphics/icons/ctool/migrate_tophov.gif

+SHA1-Digest: BIFpZUBo5LTGxAgwA2DjUErl7aw=

+

+Name: themes/circles/html/overview.css

+SHA1-Digest: OSQR/YVuPk6nCfCSCUftKIZJ5Es=

+

+Name: themes/slate/preview.png

+SHA1-Digest: uOalswP/Dl7ufM1Ko50b3osY7S4=

+

+Name: themes/circles/graphics/icons/ctool/firststeps.gif

+SHA1-Digest: u8hBUKje68m15K9HmhRViDGyL0Y=

+

+Name: themes/slate/graphics/rootpage/samples48.gif

+SHA1-Digest: qpzjgzvyd5KZAIeAD0+PUzJ5NEE=

+

+Name: themes/purpleMesh/html/firststeps.css

+SHA1-Digest: 9FdW5j9hkbSjH3aZXwrmWZdym2E=

+

+Name: themes/slate/swt/migrate.properties

+SHA1-Digest: hoTfgZ/Y41RoUz4y6LXKz6Yvmqw=

+

+Name: themes/slate/graphics/icons/ctool/tu_nav.png

+SHA1-Digest: QptMtQOmQDoDZ9Vq/dfKdj0pvSs=

+

+Name: themes/slate/html/font-relative.css

+SHA1-Digest: UT05tvIk2jCid+LM7t3bm4zOuIY=

+

+Name: themes/circles/graphics/icons/ctool/mi_nav_32.gif

+SHA1-Digest: IIKBdBw4ER43nMCbg2TYs9jLfM8=

+

+Name: themes/circles/graphics/icons/ctool/workbench_midhov.gif

+SHA1-Digest: KdO2URBysFpSJrlhVnUkPcqMzhs=

+

+Name: themes/purpleMesh/graphics/swt/form_banner.gif

+SHA1-Digest: agcOlycIYp6+B2Y7O27ZvGcKQwE=

+

+Name: themes/circles/graphics/icons/ctool/root_midhov.gif

+SHA1-Digest: qnMDaiSby1RH5YBolr3KVTRzWQo=

+

+Name: themes/circles/graphics/standby/ov_standby.gif

+SHA1-Digest: jeihbsxKFQ3iDSdZMTIWdrJI48M=

+

+Name: themes/slate/swt/tutorials.properties

+SHA1-Digest: siLo70LYVmiYzVqDN/k1RLWzbIs=

+

+Name: themes/circles/graphics/icons/ctool/sa_nav_32.gif

+SHA1-Digest: BcKEHJvATs4/BqfEsPgA0joJd9Y=

+

+Name: themes/slate/graphics/icons/ctool/migrate-select.gif

+SHA1-Digest: GqyboPzStqkM3UYpUv4SJqMhnmk=

+

+Name: themes/purpleMesh/graphics/icons/ctool/firsteps48sel.gif

+SHA1-Digest: ugzJxuex3RlJ7Q+UNJLbp8LNuFs=

+

+Name: themes/purpleMesh/graphics/contentpage/samples_wtr.jpg

+SHA1-Digest: PSVDSrd6C0WDUM0JbfBVw49oKuQ=

+

+Name: themes/circles/graphics/icons/ctool/sa_nav.png

+SHA1-Digest: QTuUi+brurlbvAHYvtukeo4hezY=

+

+Name: themes/slate/graphics/launchbar/webresources16.png

+SHA1-Digest: xufhpZXbOY7O2FJ0EOZKo6stdLc=

+

+Name: themes/slate/graphics/icons/ctool/mi_nav.png

+SHA1-Digest: aFmb0IpPLm9SymHNvBldaj20tQg=

+

+Name: themes/slate/graphics/rootpage/migrate48.gif

+SHA1-Digest: GyLi9+cBSQCQJ6UgLyN9rGmgxlk=

+

+Name: themes/circles/graphics/icons/ctool/cpt_midhov.gif

+SHA1-Digest: TV/CndDQVZeLlDyd+7ha5a2/YtA=

+

+Name: themes/circles/graphics/icons/obj48/new_obj.gif

+SHA1-Digest: /V7T2k6XUN4Uxwg7PFAjvoEBoas=

+

+Name: themes/purpleMesh/graphics/launchbar/whatsnew.gif

+SHA1-Digest: HZrHWXJqmb/u9EGrYxBo5mKrzvs=

+

+Name: themes/slate/graphics/icons/ctool/whatsnew.png

+SHA1-Digest: 6ggZSh719rsO/D0JhDMz9OEXFYU=

+

+Name: themes/slate/swt/root.properties

+SHA1-Digest: 6iCmd1CDStKtdo94zx1EmFAqJmA=

+

+Name: themes/slate/graphics/rootpage/firststeps48.gif

+SHA1-Digest: /Mmg9op/++UvV/A+As2xGD/8CLI=

+

+Name: themes/purpleMesh/graphics/icons/ctool/overview48sel.gif

+SHA1-Digest: uP0uCKdGXLI48c0KK3abD7YY8oo=

+

+Name: themes/circles/graphics/icons/ctool/fs_nav_32.gif

+SHA1-Digest: 03HVCDXBVZPjli1tHI8e6EpWLlU=

+

+Name: themes/slate/graphics/rootpage/root_banner.jpg

+SHA1-Digest: n7ZfrJ3GwQOyVL4MOoI/G07IC8g=

+

+Name: themes/purpleMesh/graphics/contentpage/section2.gif

+SHA1-Digest: cZ+01ZA+CK3U8UgsAGDlu5Nl/1Y=

+

+Name: themes/slate/swt/overview.properties

+SHA1-Digest: Uv1u/8X0S5qqPMJxSyZv8oUtZao=

+

+Name: themes/slate/graphics/contentpage/banner_extension.jpg

+SHA1-Digest: NekY7d51JRcroYcLP4X4RaCIQKc=

+

+Name: themes/circles/graphics/standby/mi_standby.gif

+SHA1-Digest: GZRVo3rq3uXADZMIRao9+j3abu0=

+

+Name: themes/purpleMesh/graphics/icons/etool/webrsrc48.gif

+SHA1-Digest: NxD5ybp1J3PX2YpNJHv/xAZZolo=

+

+Name: themes/slate/graphics/icons/ctool/whatsnew-select.gif

+SHA1-Digest: TW7PjuzcAS8hIMHkc00LSrIUnos=

+

+Name: themes/purpleMesh/html/ltr.css

+SHA1-Digest: nnxeF8h2Cb5AWdVJnx07Natd8ME=

+

+Name: themes/slate/html/tutorials.css

+SHA1-Digest: vWx1UG9xEdUNOlKbOcW0NKkKwQw=

+

+Name: themes/slate/html/shared.css

+SHA1-Digest: 4tqToow/qbtVb2mG3tyVpvgo1dw=

+

+Name: themes/purpleMesh/graphics/icons/ctool/firsteps16.png

+SHA1-Digest: a/0HK4wfeeh5TahwmW/DsCIg3oQ=

+

+Name: themes/circles/html/root.css

+SHA1-Digest: UAjfuJsBvCzCeoc1mbFowYSldQc=

+

+Name: themes/circles/graphics/icons/ctool/workbench_tophov.gif

+SHA1-Digest: hNK2dMZHycA5wImaVQaLg5JbbB0=

+

+Name: themes/slate/graphics/standby/tu_standby.gif

+SHA1-Digest: UOeWghDGiam8u8+KldYhPFxoXuo=

+

+Name: themes/purpleMesh/graphics/icons/etool/firsteps72.gif

+SHA1-Digest: wiQ2V1uB6QBg2/U0V6cQYlhdZTo=

+

+Name: themes/purpleMesh/swt/standby.properties

+SHA1-Digest: kz2Je1Q9V4GRIscHe/+VsoFAfC4=

+

+Name: themes/slate/graphics/icons/ctool/ov_nav_32.gif

+SHA1-Digest: R2JbRey2ODfsEZMFSiutiFvmWhk=

+

+Name: themes/purpleMesh/html/shared.css

+SHA1-Digest: wKu4ekuBsZJSLOe9WyIvV3fGhmo=

+

+Name: themes/circles/graphics/contentpage/ov_banner.jpg

+SHA1-Digest: hJ7QZAKi3i5MDSK1ATTtSJaNaVA=

+

+Name: themes/circles/graphics/icons/ctool/nav_rightedgehov.gif

+SHA1-Digest: GF04sgXI3l6A73ZJWWjek3ajBmw=

+

+Name: themes/purpleMesh/graphics/icons/etool/samples48sel.gif

+SHA1-Digest: 69k3defxrYpGh4PhEyRMO5Vi5UA=

+

+Name: themes/purpleMesh/graphics/contentpage/backgroundcurve.gif

+SHA1-Digest: nOgIqKO1hwHstcMcsM+LzixlOZg=

+

+Name: themes/circles/swt/root.properties

+SHA1-Digest: E5IAZgK2NJUP1F46LWki+enJfLk=

+

+Name: themes/purpleMesh/graphics/icons/ctool/forward.gif

+SHA1-Digest: cquFAtRx0Txit4Vm2loEoHJ+cIg=

+

+Name: themes/slate/html/webresources.css

+SHA1-Digest: TJcQVS4A6XYddwU+NQ2Zad0MtC0=

+

+Name: themes/purpleMesh/graphics/icons/etool/forward.gif

+SHA1-Digest: +q/20TWhTzDUahnEbne7nK6+OxU=

+

+Name: themes/slate/graphics/contentpage/wr_banner.jpg

+SHA1-Digest: PVmx1PDj4UgUTU0wp1GWqGtdwsE=

+

+Name: themes/purpleMesh/graphics/icons/etool/samples48.gif

+SHA1-Digest: 78H0vGlpPUIjody88fklr90khF8=

+

+Name: themes/slate/html/root.css

+SHA1-Digest: 1AONs66wkTgdw6JBcWdOAe4RtHw=

+

+Name: themes/slate/graphics/rootpage/whatsnew48.gif

+SHA1-Digest: ujvbc8lcJx3ejw+leIWtws06+cI=

+

+Name: themes/slate/graphics/icons/ctool/tutorials-select.png

+SHA1-Digest: 0idtv+CNku7484JebhoXHAiAMj0=

+

+Name: themes/purpleMesh/graphics/launchbar/overview.gif

+SHA1-Digest: VFV2qgY3AyttX3JDb78JZ3+K8dY=

+

+Name: themes/circles/graphics/icons/ctool/webresources_tophov.gif

+SHA1-Digest: 4/Ztv8w0TUF7HULsf1OUMUsI788=

+

+Name: themes/circles/graphics/icons/ctool/whatsnew.gif

+SHA1-Digest: sx0cpRs5vjaMIYssTVlTSyvQtUo=

+

+Name: themes/circles/graphics/icons/ctool/samples.gif

+SHA1-Digest: id/tsFIrrpkCbPQCPQN825ioMvc=

+

+Name: themes/purpleMesh/graphics/contentpage/webrsrc_wtr.jpg

+SHA1-Digest: Wq6LSlmt5gYzI6AXkIa6ldIIc4w=

+

+Name: themes/purpleMesh/graphics/icons/ctool/overview16.png

+SHA1-Digest: Ao5Abg5BSbKk4X0BbfQEc+OMvkM=

+

+Name: themes/slate/graphics/icons/ctool/overview.png

+SHA1-Digest: JWs02I/WMHjDq99DCVJvtyCkERQ=

+

+Name: themes/purpleMesh/graphics/contentpage/background.jpg

+SHA1-Digest: wLQFnis+GVZLMyszW3V+N/9DNdg=

+

+Name: themes/purpleMesh/graphics/icons/etool/overview72.gif

+SHA1-Digest: lUMx0uGLh63QRQwVTupF10T8Kog=

+

+Name: themes/slate/html/rtl.css

+SHA1-Digest: r3aNJ0edoWPwbwFP2upWgj93y9U=

+

+Name: themes/circles/html/font-absolute.css

+SHA1-Digest: 4eZcqJkoMPph/5ZVsn2zuo9N+EY=

+

+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew48.gif

+SHA1-Digest: F1cvqHdNJc3uAuxuDAVQ8o7sSCw=

+

+Name: themes/purpleMesh/graphics/icons/ctool/tutorials72.gif

+SHA1-Digest: kp6Keiy+ANG5Okz6MDJzeoXCMqM=

+

+Name: themes/purpleMesh/graphics/icons/etool/migrate48.gif

+SHA1-Digest: qQpYW/r5zXrgvqvwz6HONWBlBM8=

+

+Name: themes/slate/graphics/standby/fs_standby.gif

+SHA1-Digest: ysua65EOe/pPgVmtZ3NYcuboxB8=

+

+Name: themes/circles/graphics/icons/ctool/firststeps_tophov.gif

+SHA1-Digest: JohW0yL7JpgatFwbwOPeF4SHRgs=

+

+Name: themes/slate/graphics/standby/sa_standby.gif

+SHA1-Digest: QTDS8wQ5HwUz3dquK5n6a/kekOg=

+

+Name: themes/circles/graphics/icons/ctool/workbench.png

+SHA1-Digest: 1Ba08N6ckjKrE5s+K1N5OrnbNTs=

+

+Name: themes/circles/graphics/icons/ctool/root_midhov2.gif

+SHA1-Digest: bzi8X0J1ve2JhIgD9M9yGIXyLxA=

+

+Name: themes/circles/swt/webresources.properties

+SHA1-Digest: gLqZuchBV+fHESZbT9pc2c8IbK0=

+

+Name: themes/purpleMesh/graphics/launchbar/webresources16.png

+SHA1-Digest: j+oOC+m+7ezObQPYOZGBMzCo/u4=

+

+Name: themes/slate/graphics/rootpage/webresources48.png

+SHA1-Digest: tFozmyLRaLaao3q/NV1cvbch/7k=

+

+Name: themes/circles/graphics/standby/mi_standbyhov.gif

+SHA1-Digest: AFU0cRERBIat/N4jnXTr40CJCUQ=

+

+Name: themes/shared/graphics/contentpage/grey_callout.gif

+SHA1-Digest: EF+apqbjiVvAa7m2qEXKIzYUTKs=

+

+Name: themes/purpleMesh/graphics/contentpage/section1.gif

+SHA1-Digest: etN4AI95gu487mkd9aB2K6Ps3r8=

+

+Name: themes/slate/html/whatsnew.css

+SHA1-Digest: M6tNal+JVhQ/BhqmpbXnvgQYxfc=

+

+Name: themes/circles/graphics/icons/ctool/tutorials.png

+SHA1-Digest: P4Kgnz0iQ31Xj0oobcA3qUxh0ws=

+

+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc48.gif

+SHA1-Digest: zWJBswCVbgPVObJ4a12xgGt0TwE=

+

+Name: themes/slate/graphics/icons/ctool/arrow_rtl.gif

+SHA1-Digest: 7exnuqC65TE4uX8cgxlDOInIKqU=

+

+Name: themes/circles/graphics/icons/ctool/ov_nav_hover.gif

+SHA1-Digest: YzV+tZ4YSI0OBHwjdcjDK0kA+z0=

+

+Name: themes/circles/graphics/icons/ctool/wn_nav_64.gif

+SHA1-Digest: CuWl/H+lKwNLJTgQ5rx2mdwRpQ8=

+

+Name: themes/circles/graphics/icons/ctool/workbench_bottomhov.gif

+SHA1-Digest: N33Xx/CMHVLwrWGGlW6ljQoq1xo=

+

+Name: themes/slate/graphics/rootpage/workbench48.png

+SHA1-Digest: dqz3JXh1PvgGut3E9SftNpvGImY=

+

+Name: about.html

+SHA1-Digest: M+fykt9heyWoEv1LNiIEeBhi/2Q=

+

+Name: themes/slate/graphics/rootpage/webresources48_hov.gif

+SHA1-Digest: Lz/gwjqz1EiK4fEU49FwH9JmTrI=

+

+Name: themes/slate/html/firststeps.css

+SHA1-Digest: Z753GjoOP2BLMCjgq9otwGAV8q4=

+

+Name: themes/circles/graphics/icons/ctool/mi_nav_64.gif

+SHA1-Digest: /6E3GSTWkn1rSSv8nRu7ZGDI5Do=

+

+Name: themes/circles/swt/whatsnew.properties

+SHA1-Digest: CatjHspqGSpTJKIp9StlbBo5m0E=

+

+Name: themes/circles/graphics/icons/ctool/sa_nav_hover.gif

+SHA1-Digest: eo3QB+njI7IlfkmZmBXYmR5GAEY=

+

+Name: themes/purpleMesh/graphics/icons/ctool/tutorials48sel.gif

+SHA1-Digest: s//j4/vjCRXn0DDxxqa52B3pyGU=

+

+Name: themes/circles/graphics/icons/ctool/sa_nav_64.gif

+SHA1-Digest: tmmMbGmvroC4N/u4rlAcIfMkGDM=

+

+Name: themes/circles/graphics/icons/ctool/overview.gif

+SHA1-Digest: qIrkbkoNDW1ToZ7vvs0Na/s8JFk=

+

+Name: themes/slate/graphics/rootpage/tutorials48_hov.png

+SHA1-Digest: pK/hba/b+vQtcBY1i4d3kYUtDv0=

+

+Name: themes/circles/graphics/icons/ctool/overview_bottomhov.gif

+SHA1-Digest: wX9dXHV2FYWJWl6LQ63qLaHvVtI=

+

+Name: themes/circles/graphics/standby/wn_standby.gif

+SHA1-Digest: lzoFOcQTxRavIf7LR7okgyTh1MA=

+

+Name: themes/slate/graphics/icons/ctool/wb_nav_32.gif

+SHA1-Digest: Yvn/MQ+naKlAbP3IS9CBowI86cs=

+

+Name: themes/purpleMesh/graphics/icons/ctool/samples48.gif

+SHA1-Digest: lHdsyvz00Jan6waGscAzqAYwC3A=

+

+Name: themes/slate/graphics/rootpage/tutorials48.gif

+SHA1-Digest: M+4dqfI2bpZp6uDJ4BUFwLPW/yA=

+

+Name: themes/circles/graphics/launchbar/overview16.png

+SHA1-Digest: Droy5JKc8rSInbFfC0/Gq098fDQ=

+

+Name: themes/circles/graphics/standby/ov_standbyhov.gif

+SHA1-Digest: qIxHOTOCOUloOKsA/wgpkUy3dFc=

+

+Name: themes/slate/graphics/icons/ctool/webresources-select.gif

+SHA1-Digest: 8Cv1H3fsZklsZxg5TTsSQo+WlG4=

+

+Name: themes/purpleMesh/preview.png

+SHA1-Digest: Kn3AvPfDEMTopfc9ip8ySBKf5RQ=

+

+Name: themes/slate/graphics/rootpage/migrate48_hov.png

+SHA1-Digest: vOQlu+RpFEaOqQJbiZoYlY3nsCU=

+

+Name: themes/circles/graphics/icons/ctool/fs_nav_64.gif

+SHA1-Digest: s2pB28B2OgQjTQFl61uJ3kSR4js=

+

+Name: themes/circles/graphics/icons/ctool/overview_midhov.gif

+SHA1-Digest: hfeH61+W0mY1vrxZpPWOCgd2VAw=

+

+Name: themes/purpleMesh/html/webresources.css

+SHA1-Digest: OUHwKpqTA4TzUmTjt3pXG+u0Y+M=

+

+Name: themes/purpleMesh/graphics/root/background.jpg

+SHA1-Digest: uGAyBMFAulKTW35Y1on8wDqO9QU=

+

+Name: themes/purpleMesh/graphics/icons/etool/migrate48sel.gif

+SHA1-Digest: du/TWd2fH3emHpxGjKGLM5q8OAc=

+

+Name: themes/circles/html/ltr.css

+SHA1-Digest: mNUmBOD3D/E4HlyWdDs2dE91vkI=

+

+Name: themes/slate/graphics/contentpage/tu_banner.jpg

+SHA1-Digest: G0czeYWa72mjuj4WNuMoORG+XSE=

+

+Name: themes/purpleMesh/graphics/icons/etool/webrsrc72.gif

+SHA1-Digest: tmmt3wg9gaRNOsCY9/bw9IdiJUw=

+

+Name: themes/slate/html/overview.css

+SHA1-Digest: 1uUtcoJFgCnpf9PfHEQDxZna9oA=

+

+Name: icons/full/obj16/ilow_obj.gif

+SHA1-Digest: AeAIhECiTxTSrP5Fiqt5FyJBpM0=

+

+Name: themes/purpleMesh/graphics/icons/ctool/migrate48.gif

+SHA1-Digest: xDBQf0i2IB1ffnSorwgZRHw+9l4=

+

+Name: themes/slate/graphics/launchbar/tutorials16.png

+SHA1-Digest: SqseXs9r49EveUOjeNuWZz+FqRk=

+

+Name: themes/circles/html/firststeps.css

+SHA1-Digest: oYGGaUJXE0ywRATRWknRI7eDN9s=

+

+Name: themes/circles/graphics/icons/ctool/fs_nav_hover.gif

+SHA1-Digest: cF9yXz/k2USPI4wntdVH5lFplJQ=

+

+Name: themes/slate/graphics/standby/wb_standbyhov.gif

+SHA1-Digest: lND1CpaBKCbGvCmcIk1Jxr7qxI4=

+

+Name: themes/circles/graphics/standby/tu_standbyhov.gif

+SHA1-Digest: OHB7oy52x8oEaY4AU/z8PqYQotg=

+

+Name: themes/slate/html/font-absolute.css

+SHA1-Digest: 8KhGPSwQk728Jh5+mNPe9VKyEqQ=

+

+Name: themes/circles/swt/standby.properties

+SHA1-Digest: jhwOyyIkPm83m3M2smp4w68VWU0=

+

+Name: themes/circles/graphics/icons/ctool/migrate.gif

+SHA1-Digest: ojGLDLfkhAjjald8nSXaI1lnVgg=

+

+Name: themes/circles/graphics/icons/ctool/webresources.png

+SHA1-Digest: XmoXn4Ilf55ncgYDrbiEEq3O2Ts=

+

+Name: icons/full/obj16/image_obj.gif

+SHA1-Digest: lMIn95+1c+iB2gk+iiS9xyfOEFk=

+

+Name: themes/purpleMesh/swt/tutorials.properties

+SHA1-Digest: WlAQ/8/P1Fv8eW2YRvKvJPBaHZI=

+

+Name: themes/slate/graphics/icons/ctool/overview-select.png

+SHA1-Digest: JuSWTtVCUj7cezEdMC+F/tFdI7c=

+

+Name: themes/shared/graphics/contentpage/wn-fs_high.gif

+SHA1-Digest: nwj9eRAksHaGuy+NFhL4LebnK3c=

+

+Name: themes/circles/graphics/icons/ctool/tu_nav.png

+SHA1-Digest: NJg5QlgKxs60ES6wnUGWsSA5h3g=

+

+Name: themes/purpleMesh/graphics/root/brandmark.gif

+SHA1-Digest: bhWOEJCCFG3PKn2AnUITjnNDjcM=

+

+Name: themes/purpleMesh/graphics/icons/ctool/tutorials16.png

+SHA1-Digest: aYfYYzleZ+ZAE4q6zQ83rW7VQ/0=

+

+Name: themes/slate/graphics/icons/ctool/samples-select.png

+SHA1-Digest: pfUR4LuPuwkaVxgBRrlBnc+h02Q=

+

+Name: themes/slate/graphics/rootpage/overview48.png

+SHA1-Digest: ebNKFer6BfGOPcJHHBVGGqDMhsE=

+

+Name: themes/purpleMesh/graphics/icons/etool/samples72.gif

+SHA1-Digest: r2pWetW8OjMuplKYLQXw0X4yzuE=

+

+Name: themes/circles/graphics/standby/fs_standbyhov.gif

+SHA1-Digest: gaXt2pI8mmo0rEo01S51DCuKjOc=

+

+Name: themes/purpleMesh/graphics/icons/etool/whatsnew48.gif

+SHA1-Digest: lWfbzmNx6i35j8ORUDvCto1uAZc=

+

+Name: themes/purpleMesh/graphics/icons/ctool/wb16.png

+SHA1-Digest: up+uMe3sVZCJMnvxhNkgjVT2abY=

+

+Name: themes/circles/graphics/icons/ctool/mi_nav.png

+SHA1-Digest: MXII8Bz8VCao4+zS2hwe7eDh7Sk=

+

+Name: themes/slate/graphics/icons/ctool/ov_nav.png

+SHA1-Digest: kgbCTAH8WaovM3EcUI9T3rsJV+4=

+

+Name: themes/circles/graphics/icons/ctool/wr_nav_32.gif

+SHA1-Digest: ULVD9wG/rtOg/UcSUO7FEvJehO8=

+

+Name: themes/slate/graphics/rootpage/workbench48_hov.png

+SHA1-Digest: JthFEUB98W5dcI0/mU5hawyK4c8=

+

+Name: themes/circles/graphics/icons/ctool/overview_tophov.gif

+SHA1-Digest: xVRhaCgSky6qLi9BrY7DsaE2bvY=

+

+Name: icons/full/obj16/ihigh_obj.gif

+SHA1-Digest: V0EQPr7+pD7tB8JKSV3MKkrYx98=

+

+Name: themes/purpleMesh/graphics/icons/etool/home.gif

+SHA1-Digest: 6WqOV8XouOUvTUGiatZZD4sW8oE=

+

+Name: themes/purpleMesh/graphics/contentpage/whatsnew_wtr.jpg

+SHA1-Digest: dI/3dz9hXc5nHtjbBYmXqYjJyQk=

+

+Name: themes/purpleMesh/graphics/icons/etool/back.gif

+SHA1-Digest: UWSZDd5u+LAE+Q9vWxFdmsJoiGA=

+

+Name: themes/slate/graphics/icons/ctool/wn_nav_32.gif

+SHA1-Digest: a2l0lo+rs2anYZpgA7qXL9B+t+Y=

+

+Name: themes/circles/graphics/contentpage/wn_banner.jpg

+SHA1-Digest: I2SUS0kfBjo1JvwQsZMamIiAkOE=

+

+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew72.gif

+SHA1-Digest: NKAkgxq0wkJVIjKYL1CnVBTwqaM=

+

+Name: themes/purpleMesh/graphics/icons/etool/migrate72.gif

+SHA1-Digest: WRlWNj7lMDFi6IkfE68j8JgaPoE=

+

+Name: themes/shared/graphics/icons/ctool/widget_open.gif

+SHA1-Digest: OP0AXWaRapQtTZx7JNXoy0H3afM=

+

+Name: themes/circles/graphics/icons/ctool/ov_nav_midhov.gif

+SHA1-Digest: jrFgMrYLF0883/Z2o+dq418gsMc=

+

+Name: themes/slate/graphics/rootpage/whatsnew48_hov.png

+SHA1-Digest: 733NHPc1A2l7QkzNGWANyLipD+w=

+

+Name: themes/purpleMesh/swt/samples.properties

+SHA1-Digest: Maoo2vIbozk0abIdI4/9z2mv2ig=

+

+Name: themes/slate/graphics/rootpage/overview48_hov.gif

+SHA1-Digest: t8nxd/Kgl03Fb8Xpz/UBUncgCsk=

+

+Name: themes/purpleMesh/graphics/launchbar/tutorials.gif

+SHA1-Digest: V5Iq0LtZVEol+ENl+76Tv+6yMdM=

+

+Name: themes/slate/graphics/icons/ctool/mi_nav_32.gif

+SHA1-Digest: U/js7L/cMMMdBmMBMxsmSZbPqog=

+

+Name: themes/shared/graphics/contentpage/tu-sa_high.gif

+SHA1-Digest: nWP+1XPA+005Nh2oq9KqYimcNxo=

+

+Name: themes/circles/graphics/standby/wr_standbyhov.gif

+SHA1-Digest: 38woeVnp5WrwKXAvQlG3gP4BOvA=

+

+Name: themes/circles/graphics/contentpage/mi_banner.jpg

+SHA1-Digest: M8PQV2LF1OrUXGwmIq2JohVbPrU=

+

+Name: themes/purpleMesh/graphics/root/dots.gif

+SHA1-Digest: qBBkDO/9SlLM7TvUQ0N4Lj7cF08=

+

+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc72.gif

+SHA1-Digest: 0TT/v0VcJy1YJgeMUIurFP8SabA=

+

+Name: themes/circles/html/shared.css

+SHA1-Digest: 77jbLGKwQArf7QoPDL/thrxTpeE=

+

+Name: themes/slate/graphics/icons/ctool/sa_nav_32.gif

+SHA1-Digest: L/7IP5sDVKLEn2Fv3dne/Eq7XEg=

+

+Name: themes/slate/swt/whatsnew.properties

+SHA1-Digest: 6mtMGtowlTnhOai9pVDrJgB/wak=

+

+Name: themes/circles/graphics/contentpage/sa_banner.jpg

+SHA1-Digest: 8fxkt+0g07/GO8c0MwW45Zu4Cjs=

+

+Name: themes/circles/graphics/standby/tu_standby.gif

+SHA1-Digest: cwp8Xw0OLbnrlfgyDT2rdFgEkoY=

+

+Name: themes/slate/graphics/standby/wb_standby.gif

+SHA1-Digest: 0Fi8mfmP3Q49EkRt5Fs1lCWsdCo=

+

+Name: themes/circles/graphics/icons/ctool/cpt_bottomhov.gif

+SHA1-Digest: ToSku0QPBKph5ncOXI2I4UsyJfo=

+

+Name: themes/circles/graphics/icons/ctool/wn_nav_hover.gif

+SHA1-Digest: NueBDE2T3TidYfVvX0R0OOJQ/Rg=

+

+Name: themes/slate/graphics/standby/wr_standby.gif

+SHA1-Digest: zXUyjgcDhtRkpVIx51PQQ+5T3Ls=

+

+Name: themes/circles/graphics/icons/ctool/content_nav_bar.gif

+SHA1-Digest: keTbxe8+mUli7KKT7VHfw/lWKR4=

+

+Name: themes/slate/swt/standby.properties

+SHA1-Digest: LVxlOn5Dm8yNnQYiUjuyUz0t2bI=

+

+Name: themes/slate/graphics/icons/ctool/fs_nav_32.gif

+SHA1-Digest: ThcSGP5JN6xuQdfgxdRKP8HEClw=

+

+Name: themes/circles/graphics/standby/sa_standbyhov.gif

+SHA1-Digest: nW22Gdy3ikCbJD4vK2ris39MbeM=

+

+Name: themes/circles/graphics/contentpage/fs_banner.jpg

+SHA1-Digest: FpP3YQsWc0TjrDuhAPCV6en00mU=

+

+Name: themes/shared/graphics/icons/ctool/arrow_rtl.gif

+SHA1-Digest: tbSkD5AC62KAiweJ66It9WaS5UI=

+

+Name: themes/purpleMesh/graphics/launchbar/firststeps16.png

+SHA1-Digest: PLDP82s27kAjpMHYCqyuCn4qfbA=

+

+Name: themes/purpleMesh/graphics/contentpage/firsteps_wtr.jpg

+SHA1-Digest: Cvp+baekZhLBnTbnZs610VqriU0=

+

+Name: themes/purpleMesh/graphics/contentpage/overview_wtr.jpg

+SHA1-Digest: kZahFe3kXY11lo0q3qnaTqMI9So=

+

+Name: icons/full/elcl16/configure.gif

+SHA1-Digest: THfvNG6K7cQT9jhbbVHE87vHFe4=

+

+Name: themes/purpleMesh/graphics/icons/ctool/samples72.gif

+SHA1-Digest: KUqdqV64czls4uOSlRNvtr9hOg0=

+

+Name: themes/circles/graphics/launchbar/webresources16.png

+SHA1-Digest: NmF2slgfepjNh+ShDr5bVEvGlUg=

+

+Name: themes/slate/graphics/rootpage/samples48_hov.png

+SHA1-Digest: 18TB/LAyPlqBZYadL7X5+A4MqrU=

+

+Name: themes/circles/graphics/standby/fs_standby.gif

+SHA1-Digest: 5Aua6Y36U3DXOP2qyXNij+CtX9s=

+

+Name: themes/circles/graphics/standby/sa_standby.gif

+SHA1-Digest: RBhTbXp/E6+mF2sHPGNcD4W48N0=

+

+Name: themes/purpleMesh/html/tutorials.css

+SHA1-Digest: RpAVjpFqMkC0hLPq7124qIhs1Yo=

+

+Name: themes/slate/graphics/contentpage/ov_banner.jpg

+SHA1-Digest: l44eO1KYxcGeGZRz2KX+U/5YmOA=

+

+Name: themes/purpleMesh/graphics/icons/ctool/migrate72.gif

+SHA1-Digest: mlt8QusjLk7KHMZf/06EkzhoH/U=

+

+Name: themes/circles/graphics/icons/ctool/tu_nav_32.gif

+SHA1-Digest: F926c6JRQE1pg5PHJgw2jf49OME=

+

+Name: themes/slate/graphics/rootpage/background.jpg

+SHA1-Digest: h0CYLdLBJNRn4GWBy/rxgEyHL50=

+

+Name: themes/shared/graphics/contentpage/tu-sa_med.gif

+SHA1-Digest: ghx5Pe/N01SftTJBQMfAoyULWM8=

+

+Name: themes/slate/graphics/icons/ctool/firststeps-select.png

+SHA1-Digest: SpDrkbO1LEh8joakTeAcSMehUsI=

+

+Name: themes/circles/swt/tutorials.properties

+SHA1-Digest: Y+NaoEsGbgs6aI9AVhku09xvRlk=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=

+

+Name: themes/slate/graphics/icons/ctool/firststeps.png

+SHA1-Digest: o0dCb6AWcfpxTmz3pTYrr7vKMpU=

+

+Name: themes/circles/graphics/standby/wn_standbyhov.gif

+SHA1-Digest: JJnXUeuX2kqSxZ7H3EYW8nTbF2w=

+

+Name: .options

+SHA1-Digest: 7PEGPbnAeaUlhDarJXUCGyuoNjA=

+

+Name: themes/purpleMesh/graphics/icons/etool/whatsnew48sel.gif

+SHA1-Digest: Xf006mRq9AaBH9Q4fMWGUO342HQ=

+

+Name: themes/slate/html/ltr.css

+SHA1-Digest: Nx5KSB+LbNl5ySJ/emAnX+Ydz0g=

+

+Name: themes/shared/graphics/icons/ctool/arrow.gif

+SHA1-Digest: FRdS/kCA4AYt83tpyUt8G0olu68=

+

+Name: themes/slate/graphics/rootpage/firststeps48_hov.png

+SHA1-Digest: v5FRnmZV4N+t69U9GKyUFOFCMYM=

+

+Name: themes/slate/graphics/icons/ctool/tutorials-select.gif

+SHA1-Digest: vGo/EvDVxt2gWjUI8r9wXb7XHqY=

+

+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew16.png

+SHA1-Digest: EtpxHFs833fG1/S7avpbPkpCcRs=

+

+Name: themes/purpleMesh/graphics/icons/ctool/home.gif

+SHA1-Digest: JOoY9pC0dHgTQhAUL9/HfY7vBmo=

+

+Name: themes/slate/graphics/icons/ctool/workbench.png

+SHA1-Digest: DpvcWcrIZ+JpGcQjubdeFu7Mskg=

+

+Name: themes/purpleMesh/graphics/icons/ctool/back.gif

+SHA1-Digest: z+OtZDnlsMdDmcm+viMBpc9tz2k=

+

+Name: themes/purpleMesh/graphics/icons/etool/whatsnew72.gif

+SHA1-Digest: b5paP8zhysvEhuedZidjQL9HEus=

+

+Name: themes/purpleMesh/graphics/launchbar/samples.gif

+SHA1-Digest: eO6+weStxxVdFdbSR7oXUpgr7SU=

+

+Name: plugin.properties

+SHA1-Digest: FVgcQepw2LdjjA9jaP6rkbZ3cNk=

+

+Name: themes/slate/graphics/standby/mi_standbyhov.gif

+SHA1-Digest: EKMu6lK27pq/aBg/9f2YFExIt5s=

+

+Name: themes/slate/graphics/launchbar/overview16.png

+SHA1-Digest: CQKX46RHuZFbOrT3JiKPUK1/mMw=

+

+Name: themes/circles/preview.png

+SHA1-Digest: sEqN3SavR9InMcm4Np9tsFTZi38=

+

+Name: themes/circles/graphics/icons/ctool/wr_nav_64.gif

+SHA1-Digest: HWgi5cePr8R/laS2cHA1pRJFzqM=

+

+Name: themes/circles/html/webresources.css

+SHA1-Digest: xE+K3s3qfPmZWptlBouT4WUKYlw=

+

+Name: themes/circles/graphics/icons/ctool/workbench.gif

+SHA1-Digest: M9+7ZJ8Td5Vz4SgFfI1Ow9WsJGU=

+

+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc16.png

+SHA1-Digest: tg0HIeAi2M876bRApOwKnRSGcD8=

+

+Name: plugin.xml

+SHA1-Digest: AGntXfGyavfewes8K46DbzHl3PM=

+

+Name: themes/slate/graphics/icons/ctool/wb_nav.png

+SHA1-Digest: eOOC/dmxPSefDxPWFsxQy7E2b8I=

+

+Name: themes/slate/graphics/icons/ctool/fs_nav.png

+SHA1-Digest: ZHHwwi/pL6wyqvnxKLrIs1xSIv8=

+

+Name: themes/slate/graphics/icons/ctool/tutorials.png

+SHA1-Digest: Zx41VhOUb0qOWIpS3T11xSGhNZE=

+

+Name: themes/slate/graphics/rootpage/webresources48.gif

+SHA1-Digest: U3VJRQ912H+F2LovRbKXXJ96jtU=

+

+Name: themes/circles/swt/samples.properties

+SHA1-Digest: b72s5ZpdufL+u+iHt7s2M3fRKR0=

+

+Name: themes/purpleMesh/swt/overview.properties

+SHA1-Digest: mvuul3+a9PKCQbnMxeoDVo6pYSw=

+

+Name: themes/slate/graphics/icons/ctool/wn_nav.png

+SHA1-Digest: Otvz1srG7KEBziy19XaNx1QlL+Y=

+

+Name: themes/purpleMesh/html/whatsnew.css

+SHA1-Digest: fRC+M1elXUGhdy5bFG1XlaE+WUk=

+

+Name: themes/slate/graphics/icons/ctool/wr_nav.png

+SHA1-Digest: X/t10DmFigUi7SWQWKb6TlVLWUo=

+

+Name: themes/circles/graphics/icons/ctool/firststeps.png

+SHA1-Digest: RadtV1OpnwwU8YTjkRVswQ6gkrM=

+

+Name: themes/circles/graphics/icons/ctool/tutorials.gif

+SHA1-Digest: octY2R6o9h3crdH3YxcRu5HinAE=

+

+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc48sel.gif

+SHA1-Digest: Y+bL1SYCHZFL3CnkKVeUUdbqhpA=

+

+Name: themes/slate/graphics/rootpage/samples48.png

+SHA1-Digest: o91S2IouhohWh784056j+CwIPbI=

+

+Name: themes/slate/swt/webresources.properties

+SHA1-Digest: woLrtH3B00iBUZkDmqHU5XH6KPM=

+

+Name: themes/purpleMesh/html/samples.css

+SHA1-Digest: 3ZtdRRozIzL+tYNU9FhPPekIVRI=

+

+Name: themes/slate/graphics/rootpage/workbench48.gif

+SHA1-Digest: pzIWQg7A2tk7ISYqiM52y5+QHXE=

+

+Name: themes/purpleMesh/graphics/icons/obj48/newhov_obj.gif

+SHA1-Digest: pyTbLR1DRUpyozcBnlZOStz7yIA=

+

+Name: themes/slate/graphics/icons/ctool/migrate-select.png

+SHA1-Digest: dJhpMAzfZ3gXyS/WvZAhAGjvHqo=

+

+Name: themes/purpleMesh/graphics/icons/dtool/forward.gif

+SHA1-Digest: aCtO1cY0PcLRL6ryFaULIxWFIRQ=

+

+Name: themes/slate/graphics/rootpage/migrate48.png

+SHA1-Digest: 23aWLw+rpVmgwjJP0FsdVjl2snk=

+

+Name: introContent.xml

+SHA1-Digest: p86gbX8qFQho2c9eTwFxLUM2jbY=

+

+Name: themes/purpleMesh/graphics/icons/ctool/samples16.png

+SHA1-Digest: N/RpSt5Kg9cllB8ZVItf9UX+Gi4=

+

+Name: themes/shared/graphics/icons/ctool/widget_open_hov.gif

+SHA1-Digest: q6+gnr1MvGjjGrmKrs7jlSk9G3E=

+

+Name: themes/slate/graphics/standby/ov_standbyhov.gif

+SHA1-Digest: W7euvutqkpXqaZ28T0tIBgfqWBY=

+

+Name: themes/slate/graphics/rootpage/root_banner_logo.jpg

+SHA1-Digest: abI9SllIW+3XhsY6pzv4qmpCG8Q=

+

+Name: themes/purpleMesh/graphics/icons/etool/firsteps48sel.gif

+SHA1-Digest: vq4JP2YEL3U67r160BMe4c0SSMM=

+

+Name: themes/purpleMesh/swt/firststeps.properties

+SHA1-Digest: EInPG8WIRgJVAjGiy8XWr64xU2o=

+

+Name: themes/slate/graphics/rootpage/tutorials48_hov.gif

+SHA1-Digest: UNZLeDg3VnZSaoOSb/1cB4YjZRA=

+

+Name: themes/slate/graphics/rootpage/firststeps48.png

+SHA1-Digest: AZf3rs765AMlL0crSZ1ACx1ITbw=

+

+Name: themes/circles/graphics/launchbar/whatsnew16.png

+SHA1-Digest: IzjfRJtgZO/1pF6e+qNU1tsRInk=

+

+Name: themes/purpleMesh/swt/migrate.properties

+SHA1-Digest: PXl9YyFN/w2mIaeHRLdH+0+d0Iw=

+

+Name: themes/circles/graphics/icons/ctool/root_bottomhov.gif

+SHA1-Digest: Z8bzjCb+groZ7Mudi3sPT0KHduM=

+

+Name: themes/purpleMesh/graphics/launchbar/migrate16.png

+SHA1-Digest: 9dXlttKYwv7e5tKagvSXjya58VA=

+

+Name: themes/purpleMesh/html/font-relative.css

+SHA1-Digest: uztoLwYdMIMBC3VZXmPl2Qpbe7U=

+

+Name: themes/circles/graphics/icons/ctool/wb_nav_hover.gif

+SHA1-Digest: JGea0KimDZnwwiCcQ8qHPqylM+0=

+

+Name: themes/purpleMesh/graphics/icons/ctool/migrate16.png

+SHA1-Digest: Puh69rUopnG/IU/JThhHdbLh1lo=

+

+Name: themes/slate/graphics/rootpage/migrate48_hov.gif

+SHA1-Digest: 3Y6mFYmavunlKwredaGwnwXCNiE=

+

+Name: themes/purpleMesh/graphics/icons/etool/tutorials48sel.gif

+SHA1-Digest: lk2qg8u2u6oUcxFjIFCXgvGBueA=

+

+Name: themes/slate/graphics/icons/ctool/whatsnew-select.png

+SHA1-Digest: Qv9/KgDiu/UwPNMYHaBZQH6i0gI=

+

+Name: themes/circles/graphics/icons/ctool/ov_nav.png

+SHA1-Digest: YeG6eWWkQN+xSr4Zg9oqEL865ks=

+

+Name: themes/purpleMesh/graphics/icons/etool/overview48sel.gif

+SHA1-Digest: m9kn5H05+QgSBOxLlx2dxaWTGmo=

+

+Name: themes/shared/graphics/contentpage/wr-mi_med.gif

+SHA1-Digest: OIQZ/hOeBpbC0WMHReEsbFJVJLc=

+

+Name: themes/slate/graphics/standby/tu_standbyhov.gif

+SHA1-Digest: tnWwgoBPMHeWYfysLndY1HFWUPM=

+

+Name: themes/circles/graphics/icons/ctool/wr_nav_hover.gif

+SHA1-Digest: XdpoqgAH+p1EVxL9GyMzE/Hfv/c=

+

+Name: themes/slate/graphics/launchbar/firststeps16.png

+SHA1-Digest: 9hsrMpO8mZJzpwABMmAgSWU3MQc=

+

+Name: themes/purpleMesh/html/overview.css

+SHA1-Digest: ewtO0S8LN4bgkv7PzeVxcz4wzj0=

+

+Name: themes/slate/graphics/standby/ov_standby.gif

+SHA1-Digest: tQgasT5T5uccRV34rNN/eFA/j1I=

+

+Name: themes/circles/html/tutorials.css

+SHA1-Digest: xa3e4ZW7ls+gOKV7vf3sJ/bKCn4=

+

+Name: themes/circles/graphics/rootpage/welcomebckgrd.jpg

+SHA1-Digest: 1CYoWHrrrQBODT6u1XiiYAc8Ua8=

+

+Name: themes/purpleMesh/html/rtl.css

+SHA1-Digest: 6emyVT06jVF1IpGc+y1ND2z5AgE=

+

+Name: themes/purpleMesh/graphics/icons/ctool/firsteps48.gif

+SHA1-Digest: mBsb4wgGSyU8bNKCIcKAAzHfBdc=

+

+Name: themes/slate/graphics/icons/ctool/sa_nav.png

+SHA1-Digest: +fvKMIGlRhLKb75Ge8kDFcNIlig=

+

+Name: themes/circles/graphics/icons/ctool/samples_tophov.gif

+SHA1-Digest: KB0g/q6q9M8Vej0+uXtDX/4V4gQ=

+

+Name: themes/circles/graphics/icons/ctool/whatsnew_tophov.gif

+SHA1-Digest: l0/AVYCJX3mHyeIM7AVVpjrHRAE=

+

+Name: themes/circles/graphics/icons/ctool/webresources.gif

+SHA1-Digest: PzeqTnB2FYvrmgO3g1mKmko1DF0=

+

+Name: themes/circles/graphics/icons/ctool/ov_nav_rightedgehov.gif

+SHA1-Digest: f0w1YUKKxjFzxukKAiz/X7+SoEQ=

+

+Name: themes/purpleMesh/graphics/icons/etool/tutorials48.gif

+SHA1-Digest: rpkhEx725uQSS4BO8Cu6AYX/1qs=

+

+Name: .api_description

+SHA1-Digest: zVgZ4KXcjfSLvrVOAZybRVyuyD4=

+

+Name: themes/shared/graphics/contentpage/ov_high.gif

+SHA1-Digest: bPF5JPTBYJSjUtUp7l/Q+jYOtX0=

+

+Name: themes/circles/graphics/icons/ctool/ov_nav_32.gif

+SHA1-Digest: zdyV1x+iXWd1D+qvrkSFfVni9Wc=

+

+Name: themes/slate/swt/samples.properties

+SHA1-Digest: U5PKzlW/IGZhPlnupiL0t6JQkeU=

+

+Name: themes/circles/graphics/icons/ctool/tu_nav_64.gif

+SHA1-Digest: QfZiqnjcg8JgKOiaHqQcRAkU68M=

+

+Name: themes/slate/graphics/icons/ctool/overview-select.gif

+SHA1-Digest: C/thmi6ygH/DObJgLK2R6FUFKmo=

+

+Name: themes/shared/graphics/icons/ctool/widget_closed.gif

+SHA1-Digest: UCVQqypGt54bp4bPvYvnBBf3S6s=

+

+Name: themes/slate/graphics/standby/fs_standbyhov.gif

+SHA1-Digest: IFrAPRH50aUnf4lzGXBnp63KBvg=

+

+Name: themes/slate/graphics/icons/ctool/wr_nav_32.gif

+SHA1-Digest: N9FnodopAmjKrlNb/C6xGS7+ATI=

+

+Name: themes/circles/graphics/standby/wb_standby.gif

+SHA1-Digest: VSLzZLxKKBrSxMH+QlFyD/mSYUk=

+

+Name: themes/shared/graphics/icons/ctool/widget_closed_hov.gif

+SHA1-Digest: yBhmvxNDT4l1CwkG8lR3CuEZnpY=

+

+Name: themes/slate/graphics/rootpage/whatsnew48.png

+SHA1-Digest: pizLyNLkBhqTFPW4z0yhKyGxTyU=

+

+Name: themes/circles/graphics/icons/ctool/samples.png

+SHA1-Digest: vkVn8EAwdSUkAjDkBYBk3aVmaJA=

+

+Name: themes/circles/graphics/icons/ctool/whatsnew.png

+SHA1-Digest: fmc+D8Cozv2x21iUal8OcSJ2RCA=

+

+Name: themes/slate/graphics/icons/ctool/samples-select.gif

+SHA1-Digest: MMUTVQz0hk+wFo7QgkgLJIljLdo=

+

+Name: themes/slate/graphics/rootpage/overview48.gif

+SHA1-Digest: 9fQKnwYMYCxPi3Dbf7Iw+P3GCYM=

+

+Name: themes/circles/graphics/contentpage/wr_banner.jpg

+SHA1-Digest: DOJtvC1OhmR/2gE5/nMvZRA5Tzk=

+

+Name: themes/slate/graphics/standby/mi_standby.gif

+SHA1-Digest: zpzqikD2wBf/PIPCZXeEV9gwu8Q=

+

+Name: themes/slate/swt/firststeps.properties

+SHA1-Digest: 3WAuEq0g1VcYEY19Cse2R0eDoyc=

+

+Name: themes/slate/graphics/icons/ctool/samples.png

+SHA1-Digest: JbJjoAzJoy70GkKO9qIdq2Rj6KU=

+

+Name: themes/circles/graphics/standby/wr_standby.gif

+SHA1-Digest: aJpFuRco/12bQ9bNy92cX/A5UPk=

+

+Name: themes/slate/graphics/rootpage/workbench48_hov.gif

+SHA1-Digest: yhz0kRxqnoPZXoFD3TjF9Pz14ik=

+

+Name: themes/slate/graphics/contentpage/wn_banner.jpg

+SHA1-Digest: zB2XWrRELYgqRzvpOE+AQJbwc6E=

+

+Name: themes/circles/graphics/launchbar/firststeps16.png

+SHA1-Digest: fCXz9yJa0b82QZ9rhBE67nJc2E4=

+

+Name: themes/purpleMesh/html/migrate.css

+SHA1-Digest: 1+NqZ1pYXSS2bFk1Fb+6jVSPEqU=

+

+Name: themes/purpleMesh/graphics/icons/ctool/overview48.gif

+SHA1-Digest: +JxWS50R28tHzsqUgQDLpoKxJdk=

+

+Name: themes/purpleMesh/html/standby.css

+SHA1-Digest: NkRX4mALA79ZCAH8rMkPXHjx90s=

+

+Name: icons/full/obj16/extension_obj.gif

+SHA1-Digest: bMeGZKr5c16LVNWBd9bt98uUYXc=

+

+Name: themes/purpleMesh/graphics/icons/etool/wb48.gif

+SHA1-Digest: gWXkEZ45v3k7g90kCWYvfRGydNg=

+

+Name: themes/slate/graphics/rootpage/whatsnew48_hov.gif

+SHA1-Digest: vSO/nScy1F2pIu0bdtjFxGpFg2o=

+

+Name: themes/slate/graphics/standby/wr_standbyhov.gif

+SHA1-Digest: jHQHecCjhxGdDtte6xzQGzOGu3c=

+

+Name: themes/slate/graphics/contentpage/mi_banner.jpg

+SHA1-Digest: dphGVKeWcMuI8dlZDYVT0jNP+Hk=

+

+Name: themes/circles/graphics/icons/ctool/nav_midhov.gif

+SHA1-Digest: Wi2MCADeHhtdwi4Sh0W7uBznlOA=

+

+Name: themes/circles/graphics/icons/ctool/sa_onesample48.gif

+SHA1-Digest: HqfVF+3gBlrx6nGLg5v5MFaaIgc=

+

+Name: themes/purpleMesh/html/root.css

+SHA1-Digest: F8e99wJzj5JSXslAStEW8UVbHnE=

+

+Name: themes/slate/graphics/contentpage/sa_banner.jpg

+SHA1-Digest: UYbMyIlkwRCH/+2xH0qy7SYO9jc=

+

+Name: themes/circles/html/samples.css

+SHA1-Digest: Aa/3mSKEQ/bjtj9HIXMJGgm8YrY=

+

+Name: themes/circles/graphics/icons/ctool/arrow_rtl.gif

+SHA1-Digest: DCAy3+kKDhzBjcBUtFfriO0XZ/Y=

+

+Name: themes/purpleMesh/graphics/contentpage/section4.gif

+SHA1-Digest: 5uQoTC0PIVQXXzoh4GS8uljeT7Q=

+

+Name: themes/purpleMesh/graphics/icons/ctool/samples48sel.gif

+SHA1-Digest: s0SJlUspZ+VpUK59YFpSVdSF4/8=

+

+Name: themes/slate/html/samples.css

+SHA1-Digest: jJB+8DDa8HMq/Howur8Lf6FKxXU=

+

+Name: themes/slate/graphics/rootpage/webresources48_hov.png

+SHA1-Digest: lc1/FiH8g8N5XQpp8VKb84BHcw0=

+

+Name: themes/slate/graphics/standby/sa_standbyhov.gif

+SHA1-Digest: Q4Gml852TuRFm97prfvm+YUFxQQ=

+

+Name: themes/purpleMesh/swt/root.properties

+SHA1-Digest: 13ibm2LcOyuKL4exgCW1FL8omGQ=

+

+Name: themes/slate/graphics/contentpage/fs_banner.jpg

+SHA1-Digest: e1ynwkado6TTdJD+CScC/nSV23w=

+

+Name: themes/purpleMesh/graphics/icons/obj48/new_obj.gif

+SHA1-Digest: m3blOl9A6/k/zOqWSEjVwi7OsX0=

+

+Name: themes/circles/graphics/launchbar/samples16.png

+SHA1-Digest: EJy0O+e7Wn2LQKacpG+ztOKD+xU=

+

+Name: themes/shared/graphics/contentpage/wr-mi_high.gif

+SHA1-Digest: 4Y7Eni6WwPD1XF5qOlZvX7FBicQ=

+

+Name: themes/circles/graphics/icons/ctool/overview.png

+SHA1-Digest: 6Vc2O8P0tc2mBLAtqN6XRg4m6bA=

+

+Name: themes/slate/graphics/launchbar/samples16.png

+SHA1-Digest: OkSBPD+k9fPKmTLDt+KLk67bD+M=

+

+Name: themes/purpleMesh/graphics/contentpage/tutorials_wtr.jpg

+SHA1-Digest: 1DK/EYeYoAy/ecmdrcLVwCp05fs=

+

+Name: universal.jar

+SHA1-Digest: tU+brr9bmP8rYwCJCbs+x9/cUoc=

+

+Name: themes/slate/graphics/icons/ctool/webresources.png

+SHA1-Digest: dMLVSP4HDxxSfiRFrbCaOeFNbVU=

+

+Name: themes/slate/graphics/rootpage/tutorials48.png

+SHA1-Digest: YocgTR+jGu0RLtYAlrHOx5DMmrM=

+

diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/MANIFEST.MF b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..8cad9cb
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/MANIFEST.MF
@@ -0,0 +1,1232 @@
+Manifest-Version: 1.0

+Bundle-Localization: plugin

+Bundle-RequiredExecutionEnvironment: J2SE-1.4

+Bundle-SymbolicName: org.eclipse.ui.intro.universal;singleton:=true

+Eclipse-LazyStart: true; exceptions="org.eclipse.ui.internal.intro.uni

+ versal.contentdetect"

+Eclipse-SourceReferences: scm:git:git://git.eclipse.org/gitroot/platfo

+ rm/eclipse.platform.ua.git;path="org.eclipse.ui.intro.universal";tag=

+ v20120912-155524

+Bundle-Activator: org.eclipse.ui.internal.intro.universal.UniversalInt

+ roPlugin

+Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.6.0,4.0.0)

+ ",org.eclipse.help;bundle-version="[3.5.0,4.0.0)",org.eclipse.ui;bund

+ le-version="[3.6.0,4.0.0)",org.eclipse.ui.intro;bundle-version="[3.4.

+ 0,4.0.0)"

+Bundle-Version: 3.2.600.v20120912-155524

+Export-Package: org.eclipse.ui.internal.intro.universal;x-friends:="or

+ g.eclipse.ua.tests",org.eclipse.ui.internal.intro.universal.contentde

+ tect;x-friends:="org.eclipse.ua.tests",org.eclipse.ui.internal.intro.

+ universal.util;x-internal:=true,org.eclipse.ui.intro.universal

+Bundle-ClassPath: universal.jar

+Bundle-ActivationPolicy: lazy;exclude:="org.eclipse.ui.internal.intro.

+ universal.contentdetect"

+Bundle-Vendor: %provider_name

+Bundle-Name: %plugin_name

+Eclipse-BundleShape: dir

+Import-Package: javax.xml.parsers,org.w3c.dom,org.xml.sax

+Bundle-ManifestVersion: 2

+

+Name: themes/shared/graphics/contentpage/wn-fs_med.gif

+SHA1-Digest: YObD0h+yD3AoEJKcbHpgl7nSg6w=

+

+Name: themes/slate/graphics/icons/ctool/webresources-select.png

+SHA1-Digest: ttFY6mc+rmyD+wi74Uh9u2VOsEA=

+

+Name: icons/full/obj16/inew_obj.gif

+SHA1-Digest: nNCYIZNT6cAnS1piXmICuWj214k=

+

+Name: themes/circles/swt/migrate.properties

+SHA1-Digest: 5AATILQmeOE6lgPTFd7rRWmZfFE=

+

+Name: themes/circles/graphics/icons/ctool/wb_nav_32.gif

+SHA1-Digest: Cn/9w2OEDB5HruOhhsLBFFUwdTA=

+

+Name: themes/circles/graphics/launchbar/migrate16.png

+SHA1-Digest: cdjjFVkozz0y9ji+FpASYhOALwk=

+

+Name: themes/circles/html/font-relative.css

+SHA1-Digest: YNdUuhYcoSgMNnDs8zLlOICeBPg=

+

+Name: themes/purpleMesh/swt/webresources.properties

+SHA1-Digest: CF3gMwhkWGQXjfED1zPxx1nNfWs=

+

+Name: icons/full/obj16/icallout_obj.gif

+SHA1-Digest: BtNHLBdOBOrkuqR5QGDMR1yYOPU=

+

+Name: themes/slate/graphics/launchbar/migrate16.png

+SHA1-Digest: cdjjFVkozz0y9ji+FpASYhOALwk=

+

+Name: themes/circles/graphics/icons/ctool/tutorials_tophov.gif

+SHA1-Digest: l4xpK0NEVv+6HAPqe6Boky17Drs=

+

+Name: themes/circles/swt/overview.properties

+SHA1-Digest: cWbc0RdZ2YXec98Rg1kTqJpT5NY=

+

+Name: themes/circles/html/whatsnew.css

+SHA1-Digest: f/xiSK+pn47wv97YC1T89H3Yggc=

+

+Name: themes/shared/html/shared.css

+SHA1-Digest: OTh/aPQYNhJNbCRlHp4uwANCo6I=

+

+Name: themes/purpleMesh/graphics/icons/etool/firsteps48.gif

+SHA1-Digest: hvcLfSf/ImoeCex6h0I4mKJDYaM=

+

+Name: themes/slate/graphics/icons/ctool/tu_nav_32.gif

+SHA1-Digest: ERMabqNtihbmhosEh+AMC9m6SgQ=

+

+Name: themes/slate/graphics/rootpage/samples48_hov.gif

+SHA1-Digest: 2GZqEq/9FzCx8WiEgECMZDe8Bbg=

+

+Name: themes/shared/graphics/icons/ctool/widget_closed_rtl.gif

+SHA1-Digest: Hls40cTfd5UjRBwAqdmvGB4Qj5A=

+

+Name: themes/circles/graphics/contentpage/tu_banner.jpg

+SHA1-Digest: QS8UTOekR3eu1goLA3IGZbz2ACU=

+

+Name: themes/circles/graphics/icons/ctool/wb_nav.png

+SHA1-Digest: FH8HqOCtz5sLOSGSXLTuXtscYdw=

+

+Name: themes/circles/graphics/icons/ctool/fs_nav.png

+SHA1-Digest: 3F+Z798k2zAOQHXppBvRobdsVgY=

+

+Name: icons/welcome16.gif

+SHA1-Digest: lCVsqUKwrazRDOWbtiyQR6PzEio=

+

+Name: themes/circles/graphics/icons/ctool/migrate.png

+SHA1-Digest: VkjCEMXUNNjo4asomIvGP5KZteA=

+

+Name: themes/circles/html/rtl.css

+SHA1-Digest: cGk5uIu4MDkHeAx2Fx84/hsq1Nw=

+

+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew48sel.gif

+SHA1-Digest: V7JtQrx+Kgg5ssosc9X8gdGTyVs=

+

+Name: themes/purpleMesh/graphics/icons/etool/webrsrc48sel.gif

+SHA1-Digest: ViPbhh1j2zwRpZdBTVLjwaRXvWU=

+

+Name: themes/shared/graphics/icons/ctool/widget_closed_hov_rtl.gif

+SHA1-Digest: lLNX/Q+6E9ygF+QaNhAMMknKE0Q=

+

+Name: themes/circles/graphics/icons/ctool/wn_nav.png

+SHA1-Digest: d7McdCEtfxPQ+F5vlR38rVTvgXo=

+

+Name: themes/circles/graphics/launchbar/tutorials16.png

+SHA1-Digest: i2tAwI/AV2AL9+0LBrkT2facrps=

+

+Name: themes/slate/graphics/icons/ctool/migrate.png

+SHA1-Digest: VkjCEMXUNNjo4asomIvGP5KZteA=

+

+Name: themes/purpleMesh/graphics/icons/ctool/firsteps72.gif

+SHA1-Digest: SBxtT8iB/ApY0HjP6hKYkJuKUok=

+

+Name: themes/slate/graphics/standby/wn_standbyhov.gif

+SHA1-Digest: NbMYb8Ka2D8DlnjzdS2qA6E8j9I=

+

+Name: themes/circles/graphics/icons/ctool/wr_nav.png

+SHA1-Digest: RiRbJ01jNoAefHKxAe7htjgxNc8=

+

+Name: themes/slate/graphics/icons/ctool/firststeps-select.gif

+SHA1-Digest: 2omoFavbjq9B7GnstjVqw0FdtMg=

+

+Name: themes/circles/graphics/standby/wb_standbyhov.gif

+SHA1-Digest: M93nY3cEdQ0Ot7ymKz9lcr/vVgQ=

+

+Name: themes/circles/graphics/icons/obj48/newhov_obj.gif

+SHA1-Digest: bYXzhCgIi1p/aDvaAoOBGIrBuKA=

+

+Name: themes/purpleMesh/graphics/icons/etool/tutorials72.gif

+SHA1-Digest: bgSW0+TBHE6b5pybPnVxwKCeb8o=

+

+Name: themes/slate/graphics/standby/wn_standby.gif

+SHA1-Digest: 88JPC5OW2W/A8nK+jURGNllSjXc=

+

+Name: themes/purpleMesh/graphics/contentpage/migrate_wtr.jpg

+SHA1-Digest: aEzxRxDEcOgBZUkFLh+l3yrPKkc=

+

+Name: themes/circles/graphics/icons/ctool/ov_nav_64.gif

+SHA1-Digest: MiM5uNLCvrkx/ykdKqZM97Y9ZZU=

+

+Name: themes/purpleMesh/graphics/contentpage/section3.gif

+SHA1-Digest: Dti98fXWKSzLZcwWhy0ZH/xv/LQ=

+

+Name: themes/circles/graphics/icons/ctool/mi_nav_hover.gif

+SHA1-Digest: ctUOJTLxQ0tbU8MWdzTinkFSNJY=

+

+Name: themes/purpleMesh/swt/whatsnew.properties

+SHA1-Digest: oMwOlBxzxsbYGpYIiB6r5WvnCOg=

+

+Name: themes/slate/graphics/rootpage/firststeps48_hov.gif

+SHA1-Digest: V1SxrQz5nuodvxHET/Uj/DVfZnU=

+

+Name: themes/circles/swt/firststeps.properties

+SHA1-Digest: sBCpA22sGt4sMuv+F9m/qnMxVSM=

+

+Name: themes/purpleMesh/graphics/icons/etool/overview48.gif

+SHA1-Digest: iCWMhwI9UGBgr2VfDvUWRcFUkvQ=

+

+Name: themes/purpleMesh/graphics/icons/ctool/tutorials48.gif

+SHA1-Digest: g1DLV9w6145WJgolBFoQXPSHED0=

+

+Name: themes/purpleMesh/html/font-absolute.css

+SHA1-Digest: Dp/J3iJgRBHHdbUImvOo/dqS9qQ=

+

+Name: themes/purpleMesh/graphics/icons/dtool/back.gif

+SHA1-Digest: ySnsDpMG5nwH+1FeV2r27mUrMkU=

+

+Name: themes/slate/graphics/launchbar/whatsnew16.png

+SHA1-Digest: h+KhHUY6Dp0Q8Jm2f2zIe/6WTlQ=

+

+Name: themes/purpleMesh/graphics/icons/ctool/migrate48sel.gif

+SHA1-Digest: keNlqQN4S22HPmK1Di1nJy96tpE=

+

+Name: themes/circles/html/migrate.css

+SHA1-Digest: iqCK+hELmQGaI0kDAerL4zBIsH8=

+

+Name: themes/circles/html/standby.css

+SHA1-Digest: 2z23RG44ueQjzJxag9TUR5ipMg8=

+

+Name: themes/shared/graphics/contentpage/ov_med.gif

+SHA1-Digest: BLkJAi4b6F3mxZCsx/D4hbWbUO8=

+

+Name: themes/purpleMesh/graphics/icons/ctool/wb48.gif

+SHA1-Digest: TRanQY4RKQhrmQMzvoEtx9VCEuE=

+

+Name: themes/circles/graphics/icons/ctool/tu_nav_hover.gif

+SHA1-Digest: gnwxFOZ1hWJ15kAtVY9JjWHr8y0=

+

+Name: themes/purpleMesh/graphics/icons/ctool/overview72.gif

+SHA1-Digest: j8YqPAh5zhsG871Xa1oEABhvpwU=

+

+Name: themes/slate/html/migrate.css

+SHA1-Digest: o9xAwZ7xa/HM/hdVTb3tk8uOHw0=

+

+Name: themes/slate/html/standby.css

+SHA1-Digest: dcsodycy9r1Mc13iPMtPm6VaX44=

+

+Name: themes/circles/graphics/icons/ctool/wn_nav_32.gif

+SHA1-Digest: 2MmKSbuOyZVL2zJF4G8nB5PD40E=

+

+Name: themes/slate/graphics/rootpage/overview48_hov.png

+SHA1-Digest: yEu4cL82lrHSfFHqv3eoyrW9YSg=

+

+Name: themes/circles/graphics/icons/ctool/migrate_tophov.gif

+SHA1-Digest: H8SgRLyEnOi1cDZJW0fzb3lAvCo=

+

+Name: themes/circles/html/overview.css

+SHA1-Digest: G+A4n9PJ6fA3WLTPxxbOfcojjXE=

+

+Name: themes/slate/preview.png

+SHA1-Digest: whTvlmnBWZTV8IG0krm8yHohkCI=

+

+Name: themes/circles/graphics/icons/ctool/firststeps.gif

+SHA1-Digest: aw0foujzvfJwyNlhaeXJ9h+811s=

+

+Name: themes/slate/graphics/rootpage/samples48.gif

+SHA1-Digest: a7heSjTUOSoRTKVM3l7UofW0BgY=

+

+Name: themes/purpleMesh/html/firststeps.css

+SHA1-Digest: nACM/CMdpnPS98VKxacu0uWKtn4=

+

+Name: themes/slate/swt/migrate.properties

+SHA1-Digest: 2F6o5tkNwYATwSeIxAhJ4Fawrag=

+

+Name: themes/slate/graphics/icons/ctool/tu_nav.png

+SHA1-Digest: dNoyc7XQ0/y0TYmDYpA3RH2BDu8=

+

+Name: themes/slate/html/font-relative.css

+SHA1-Digest: yc7PqZE0wKy+879beIvCdX5i2As=

+

+Name: themes/circles/graphics/icons/ctool/mi_nav_32.gif

+SHA1-Digest: mATXWuXqCWzSKixiSQs+YOGKGco=

+

+Name: themes/circles/graphics/icons/ctool/workbench_midhov.gif

+SHA1-Digest: 8IcR48lhiM2cA6fVthKbkSUPpuQ=

+

+Name: themes/purpleMesh/graphics/swt/form_banner.gif

+SHA1-Digest: PQhF1iaxN2d2Pjr4NFsLS6syeIU=

+

+Name: themes/circles/graphics/icons/ctool/root_midhov.gif

+SHA1-Digest: 0wGbIZFEsbFYpUJc7aXvM2hdu9s=

+

+Name: themes/circles/graphics/standby/ov_standby.gif

+SHA1-Digest: HunoPS0cid3oVEr1sZr/zorOhSo=

+

+Name: themes/slate/swt/tutorials.properties

+SHA1-Digest: vAquZcTxRXIrBqJjPzS1CivM1DU=

+

+Name: themes/circles/graphics/icons/ctool/sa_nav_32.gif

+SHA1-Digest: zWmN8ic58PiJmRsQN6M8kkO112Y=

+

+Name: themes/slate/graphics/icons/ctool/migrate-select.gif

+SHA1-Digest: rbcMvR3DTWAZ6y8pRLJ1Aj3AR0Y=

+

+Name: themes/purpleMesh/graphics/icons/ctool/firsteps48sel.gif

+SHA1-Digest: opve/Gi8rcg8PqsApScb3gwbsjM=

+

+Name: themes/purpleMesh/graphics/contentpage/samples_wtr.jpg

+SHA1-Digest: g2JddJllH2GnARk4Nou/2R4PymU=

+

+Name: themes/circles/graphics/icons/ctool/sa_nav.png

+SHA1-Digest: uXMdf9iE7j6nm8Kb+4XilPOc3KQ=

+

+Name: themes/slate/graphics/launchbar/webresources16.png

+SHA1-Digest: MKgOo3PUit3DrNfS3CNMBEiz7j0=

+

+Name: themes/slate/graphics/icons/ctool/mi_nav.png

+SHA1-Digest: DugGCwIqDGwAjbE6lxcgfs0Wcv4=

+

+Name: themes/slate/graphics/rootpage/migrate48.gif

+SHA1-Digest: joxhUVMJ4gjNCLOVxveKazhqRQg=

+

+Name: themes/circles/graphics/icons/ctool/cpt_midhov.gif

+SHA1-Digest: RrizlkO8kDokhCsq1RS7MeMZ/8E=

+

+Name: themes/circles/graphics/icons/obj48/new_obj.gif

+SHA1-Digest: Y/Bwx578bV6kzFqO2dx3H9gJtTo=

+

+Name: themes/purpleMesh/graphics/launchbar/whatsnew.gif

+SHA1-Digest: OfLsLlxVJqmHGeWbr+FpZ7WbR5o=

+

+Name: themes/slate/graphics/icons/ctool/whatsnew.png

+SHA1-Digest: 7yax9xdOrPlNoCNBqEo0D2Wn98A=

+

+Name: themes/slate/swt/root.properties

+SHA1-Digest: trht5nL/OVGbn1M9jAAQgsEUxew=

+

+Name: themes/slate/graphics/rootpage/firststeps48.gif

+SHA1-Digest: 728dp/iHajdA6QbwpXrDcWhyr9I=

+

+Name: themes/purpleMesh/graphics/icons/ctool/overview48sel.gif

+SHA1-Digest: QvbOlzxtGauTmRVipO4/FC2ZJ2U=

+

+Name: themes/circles/graphics/icons/ctool/fs_nav_32.gif

+SHA1-Digest: BSKmmm0UjJhF46bslzBFgsMhk28=

+

+Name: themes/slate/graphics/rootpage/root_banner.jpg

+SHA1-Digest: CVENAzN0sGVJ550D3j/tRK/bGUo=

+

+Name: themes/purpleMesh/graphics/contentpage/section2.gif

+SHA1-Digest: jNYinCnDLjHR0d9YHNjblUc/OuA=

+

+Name: themes/slate/swt/overview.properties

+SHA1-Digest: 7OIn4C0e4D6ndcSGGB2rOpSg9OA=

+

+Name: themes/slate/graphics/contentpage/banner_extension.jpg

+SHA1-Digest: hduQzj5oNnCVgoASvulQULdbwPM=

+

+Name: themes/circles/graphics/standby/mi_standby.gif

+SHA1-Digest: 5hYhaXir5S3NKycOObVKVsAr09E=

+

+Name: themes/purpleMesh/graphics/icons/etool/webrsrc48.gif

+SHA1-Digest: eT48bn2xNpwaArD3Ukfr9X5Z3c0=

+

+Name: themes/purpleMesh/html/ltr.css

+SHA1-Digest: Yyu5meBpG9xZ0u7nPC5AeoUW/zw=

+

+Name: themes/slate/graphics/icons/ctool/whatsnew-select.gif

+SHA1-Digest: /Qq4XXE3i1mUaXyx9iRhQ8V/W5c=

+

+Name: themes/slate/html/tutorials.css

+SHA1-Digest: 4Odp/Gvx+GfsR1ECUTI/mKtmUTE=

+

+Name: themes/slate/html/shared.css

+SHA1-Digest: qMIxx3YJ8vHdurH/wNG2IojaQiI=

+

+Name: themes/purpleMesh/graphics/icons/ctool/firsteps16.png

+SHA1-Digest: Xi6gTgcM86DWgA6hyPn8mRMRwE0=

+

+Name: themes/circles/html/root.css

+SHA1-Digest: YX1L9+DDBz6WfuLKH+3xJrz4uN4=

+

+Name: themes/circles/graphics/icons/ctool/workbench_tophov.gif

+SHA1-Digest: +Bd0or2l4puBTP5oSz9gGyqxboc=

+

+Name: themes/slate/graphics/standby/tu_standby.gif

+SHA1-Digest: 76LqWV6eBwFimzZFB6T2Buh40Jw=

+

+Name: themes/purpleMesh/graphics/icons/etool/firsteps72.gif

+SHA1-Digest: 8bFXxASI73oOdjUe/CbahEIuja0=

+

+Name: themes/purpleMesh/swt/standby.properties

+SHA1-Digest: Et13VGQD/DUcY0mXK2+CwdtfEHM=

+

+Name: themes/slate/graphics/icons/ctool/ov_nav_32.gif

+SHA1-Digest: mK2utAnQW2MhbJurFHYi5qKZ1vE=

+

+Name: themes/circles/graphics/contentpage/ov_banner.jpg

+SHA1-Digest: 10sZ9H16pEffvVYkE+oqY7PFVXo=

+

+Name: themes/purpleMesh/html/shared.css

+SHA1-Digest: KPSVwoWza9iUjjzBkJdr5wPP1YM=

+

+Name: themes/circles/graphics/icons/ctool/nav_rightedgehov.gif

+SHA1-Digest: 5LCcU2on4MwQTTw2MBdcyieAAEM=

+

+Name: themes/purpleMesh/graphics/contentpage/backgroundcurve.gif

+SHA1-Digest: SU4SmeQDMdIE/JG9PcJmA8g/ato=

+

+Name: themes/purpleMesh/graphics/icons/etool/samples48sel.gif

+SHA1-Digest: SOwlUuN/dNPbbRGy97y2JyBenP4=

+

+Name: themes/slate/html/webresources.css

+SHA1-Digest: 1bIsUHigc64MRBrTzXlMzGZRX/Q=

+

+Name: themes/purpleMesh/graphics/icons/ctool/forward.gif

+SHA1-Digest: XmaOiMd1jEsrDB6NdyQqw+d1aAY=

+

+Name: themes/circles/swt/root.properties

+SHA1-Digest: tKcoqTuS/A6XBkZrPU/Tp2zE3W0=

+

+Name: themes/purpleMesh/graphics/icons/etool/forward.gif

+SHA1-Digest: /hIcNo6w11v+EpgTXgFX9a1bYwY=

+

+Name: themes/slate/graphics/contentpage/wr_banner.jpg

+SHA1-Digest: wINF//ANvlaP4bKX40ICJ1h4J2Y=

+

+Name: themes/purpleMesh/graphics/icons/etool/samples48.gif

+SHA1-Digest: tVSl1SZ/C1vzumYiVhIg3neCICQ=

+

+Name: themes/slate/graphics/rootpage/whatsnew48.gif

+SHA1-Digest: UvfhrKZoLquL9Mi9ZmLCo09V0Ho=

+

+Name: themes/slate/html/root.css

+SHA1-Digest: AfeYIjFUtTzAXgOxyLSaYF525yA=

+

+Name: themes/purpleMesh/graphics/launchbar/overview.gif

+SHA1-Digest: pfIpf2IyPaP9OPweaGpcIYG+TFs=

+

+Name: themes/slate/graphics/icons/ctool/tutorials-select.png

+SHA1-Digest: cCY5VvZg9hbvygMCXlNA9jbzDZs=

+

+Name: themes/circles/graphics/icons/ctool/webresources_tophov.gif

+SHA1-Digest: VaZ+AWC7rmAsl7EfAf4RMGe7Ajw=

+

+Name: themes/circles/graphics/icons/ctool/samples.gif

+SHA1-Digest: c9b5vr12KuTDgSh4XxVc3A/Yb5o=

+

+Name: themes/circles/graphics/icons/ctool/whatsnew.gif

+SHA1-Digest: R3qLK0sHbAW98RHHMq7zWy1IO5o=

+

+Name: themes/purpleMesh/graphics/icons/ctool/overview16.png

+SHA1-Digest: F9E6l5MA7FwcZoftgNIyKpPuHIs=

+

+Name: themes/purpleMesh/graphics/contentpage/webrsrc_wtr.jpg

+SHA1-Digest: Ido2Czdqp9qBtLXVuqLFKehNnG0=

+

+Name: themes/slate/graphics/icons/ctool/overview.png

+SHA1-Digest: eXxwilTaGiognsDmKoSJ3ZwT7FU=

+

+Name: themes/purpleMesh/graphics/contentpage/background.jpg

+SHA1-Digest: E2oMRaBMnHtodkZ+6dnqpMVtjYw=

+

+Name: themes/purpleMesh/graphics/icons/etool/overview72.gif

+SHA1-Digest: n74Umhh+1Csw/icpzX8BNun9DPY=

+

+Name: themes/slate/html/rtl.css

+SHA1-Digest: ka03w0wDvzu6rYhWR5cBQWwA6BA=

+

+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew48.gif

+SHA1-Digest: KNlMP7MYOWlZW4S9qu3HLv6oCX0=

+

+Name: themes/circles/html/font-absolute.css

+SHA1-Digest: UPrVP11/+ZJNI7V+e7usdgYpotU=

+

+Name: themes/purpleMesh/graphics/icons/ctool/tutorials72.gif

+SHA1-Digest: 4khSgiovoX4YtZ6eJRPyyBG1tVA=

+

+Name: themes/purpleMesh/graphics/icons/etool/migrate48.gif

+SHA1-Digest: fViGJTGmPbKdrj9R9DEEnQadiCQ=

+

+Name: themes/circles/graphics/icons/ctool/firststeps_tophov.gif

+SHA1-Digest: Oh8ahqB46KYlZOW1WUEdG8UzLeE=

+

+Name: themes/slate/graphics/standby/fs_standby.gif

+SHA1-Digest: 5yXOjWYGu9taQwSM6JmLf07j0fI=

+

+Name: themes/slate/graphics/standby/sa_standby.gif

+SHA1-Digest: MzhZk7rGOmDthzPVK6Ss5ZHDWfc=

+

+Name: themes/circles/graphics/icons/ctool/workbench.png

+SHA1-Digest: NvsOkAqCPAe7ectLZ6VMCYoWlAg=

+

+Name: themes/circles/swt/webresources.properties

+SHA1-Digest: d08aTkBCcpnmmJzT8Jsz4fmFFP8=

+

+Name: themes/circles/graphics/icons/ctool/root_midhov2.gif

+SHA1-Digest: MUXRnbm2U/5T/WKg2Fze3zGWip8=

+

+Name: themes/purpleMesh/graphics/launchbar/webresources16.png

+SHA1-Digest: MKgOo3PUit3DrNfS3CNMBEiz7j0=

+

+Name: themes/slate/graphics/rootpage/webresources48.png

+SHA1-Digest: kxjGlQiN/a/+HyqLGGpjOwltaHc=

+

+Name: themes/circles/graphics/standby/mi_standbyhov.gif

+SHA1-Digest: HnHqLAS7Dn7UNF9Lvj7vq9+KBUc=

+

+Name: themes/purpleMesh/graphics/contentpage/section1.gif

+SHA1-Digest: m5w0U3ih9X9y22rCCdBFryaLvAc=

+

+Name: themes/shared/graphics/contentpage/grey_callout.gif

+SHA1-Digest: yi4BN/3biRiO8mkotR+kIwxTG+M=

+

+Name: themes/slate/html/whatsnew.css

+SHA1-Digest: HKoqKVzXRanzKOmmOTkRgxdCtEY=

+

+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc48.gif

+SHA1-Digest: GmnkTgyukr5A180zab5zZYJ1D0g=

+

+Name: themes/circles/graphics/icons/ctool/tutorials.png

+SHA1-Digest: smC+kYLb5F/BlUJxXGb3OIkzMyA=

+

+Name: themes/slate/graphics/icons/ctool/arrow_rtl.gif

+SHA1-Digest: lbqBjzMYJPrTr2480naQFU3Ctkw=

+

+Name: themes/circles/graphics/icons/ctool/ov_nav_hover.gif

+SHA1-Digest: sX+VnILCJbj/P5cRPP65JpGvZWA=

+

+Name: themes/circles/graphics/icons/ctool/wn_nav_64.gif

+SHA1-Digest: 8dnsIP2CGs5jbXtQSdbqUTOU8Ro=

+

+Name: themes/circles/graphics/icons/ctool/workbench_bottomhov.gif

+SHA1-Digest: 6akkwg9PLd5IbNPUtt/6oTD0Fmc=

+

+Name: themes/slate/graphics/rootpage/workbench48.png

+SHA1-Digest: FgczOQ4VpSiYNbMdQ/83/dGtAvQ=

+

+Name: about.html

+SHA1-Digest: ejOZra0kypGLQQ2bJtGTX+LI8tU=

+

+Name: themes/slate/graphics/rootpage/webresources48_hov.gif

+SHA1-Digest: fLFNLYyPZO7VGdv7Y0pW8cFcGX4=

+

+Name: themes/slate/html/firststeps.css

+SHA1-Digest: 44JdqtdGfVaGtE71FyUy2GsR/rs=

+

+Name: themes/circles/graphics/icons/ctool/mi_nav_64.gif

+SHA1-Digest: Q9shp5C6uwXuvLYysv0huYQDB7g=

+

+Name: themes/circles/swt/whatsnew.properties

+SHA1-Digest: 6OFfokUGKPEnPFqOK5mnQZi4YVQ=

+

+Name: themes/circles/graphics/icons/ctool/sa_nav_hover.gif

+SHA1-Digest: 0T/hb/lLM6+4vlYmaQfabpdGLjQ=

+

+Name: themes/purpleMesh/graphics/icons/ctool/tutorials48sel.gif

+SHA1-Digest: tATI5YuOIrBfjWCFp5WnjlycjL0=

+

+Name: themes/circles/graphics/icons/ctool/sa_nav_64.gif

+SHA1-Digest: Dx4v4tsaMKt29b4G9qaOF5QCrOY=

+

+Name: themes/circles/graphics/icons/ctool/overview.gif

+SHA1-Digest: +uFvLkyNf1o3XI+/Ucf9I3zQCPs=

+

+Name: themes/slate/graphics/rootpage/tutorials48_hov.png

+SHA1-Digest: aTlhURRHXXspu8uUZRhYEbDAojc=

+

+Name: themes/circles/graphics/standby/wn_standby.gif

+SHA1-Digest: 88JPC5OW2W/A8nK+jURGNllSjXc=

+

+Name: themes/circles/graphics/icons/ctool/overview_bottomhov.gif

+SHA1-Digest: YL2P91DIXFlIEdG9NrrY+AhPRsw=

+

+Name: themes/slate/graphics/icons/ctool/wb_nav_32.gif

+SHA1-Digest: GpdTBfJKFFJkVfefZF3oVDI+k1o=

+

+Name: themes/purpleMesh/graphics/icons/ctool/samples48.gif

+SHA1-Digest: u0pYTzvBAB63GQT5RCCUbYqIR/8=

+

+Name: themes/slate/graphics/rootpage/tutorials48.gif

+SHA1-Digest: EOb2R8xvUX5bbijE1zT7PW3yi0k=

+

+Name: themes/circles/graphics/standby/ov_standbyhov.gif

+SHA1-Digest: S4jMdmDN03X8/YD+TgHYLJTrQ1k=

+

+Name: themes/circles/graphics/launchbar/overview16.png

+SHA1-Digest: F9E6l5MA7FwcZoftgNIyKpPuHIs=

+

+Name: themes/slate/graphics/icons/ctool/webresources-select.gif

+SHA1-Digest: jEHkJCqvz90c5NrTt50AG6y8R5g=

+

+Name: themes/purpleMesh/preview.png

+SHA1-Digest: CoxC3E6lWpb5CIhBsZIy51kuLSg=

+

+Name: themes/slate/graphics/rootpage/migrate48_hov.png

+SHA1-Digest: 3jv6dZo2sWUoSzG9+fUC8BNHp2A=

+

+Name: themes/circles/graphics/icons/ctool/fs_nav_64.gif

+SHA1-Digest: IZQIQMgx8FkRqKHONIJUlUwq3rk=

+

+Name: themes/circles/graphics/icons/ctool/overview_midhov.gif

+SHA1-Digest: nnLAEvfmeOC+rzaWxpv6yCe7xeQ=

+

+Name: themes/purpleMesh/html/webresources.css

+SHA1-Digest: sWnYR2Hr4y3AO3Okf8oAO2Ijb0o=

+

+Name: themes/purpleMesh/graphics/icons/etool/migrate48sel.gif

+SHA1-Digest: h+GOvx5olDLCqX/Cby35wMDDXuc=

+

+Name: themes/purpleMesh/graphics/root/background.jpg

+SHA1-Digest: 55fuk1Jgqmsw0nmR/NmsLZU/B/E=

+

+Name: themes/circles/html/ltr.css

+SHA1-Digest: Yyu5meBpG9xZ0u7nPC5AeoUW/zw=

+

+Name: themes/purpleMesh/graphics/icons/etool/webrsrc72.gif

+SHA1-Digest: BXvwP9AN31Xn2K8qtsd1gjhWIcc=

+

+Name: themes/slate/graphics/contentpage/tu_banner.jpg

+SHA1-Digest: 4Hiac9ZLmKM1nD5e+1n/PNz2zZg=

+

+Name: icons/full/obj16/ilow_obj.gif

+SHA1-Digest: wAtRYKFnL5qoURQIXumOywvQmIk=

+

+Name: themes/slate/html/overview.css

+SHA1-Digest: 1a0QMXZcM8a6o/ctVWIeWIcYsXk=

+

+Name: themes/purpleMesh/graphics/icons/ctool/migrate48.gif

+SHA1-Digest: 13w8+9/+TWNT9hGKV+Haz8Qiw6o=

+

+Name: themes/slate/graphics/launchbar/tutorials16.png

+SHA1-Digest: i2tAwI/AV2AL9+0LBrkT2facrps=

+

+Name: themes/circles/html/firststeps.css

+SHA1-Digest: EV55fIWanWb1kPj8xH09DQH48HI=

+

+Name: themes/circles/graphics/icons/ctool/fs_nav_hover.gif

+SHA1-Digest: MTOxVXUpblDdX5KvJiaJPR1tU3c=

+

+Name: themes/circles/graphics/standby/tu_standbyhov.gif

+SHA1-Digest: sWxT9jjy1CbwVqXWKiMSMRgDs8I=

+

+Name: themes/slate/graphics/standby/wb_standbyhov.gif

+SHA1-Digest: M93nY3cEdQ0Ot7ymKz9lcr/vVgQ=

+

+Name: themes/slate/html/font-absolute.css

+SHA1-Digest: xS0MRrwTLXqa5OQd1iW6iHIy3Bc=

+

+Name: themes/circles/swt/standby.properties

+SHA1-Digest: hIrIt7g/8ze49RvoZt8oujUIY3U=

+

+Name: themes/circles/graphics/icons/ctool/migrate.gif

+SHA1-Digest: kSYjWyWIS8iBRq1xaFM4xHb3Bdk=

+

+Name: themes/circles/graphics/icons/ctool/webresources.png

+SHA1-Digest: 0sKVVhl4zyGuSQxxs1pyupEqEro=

+

+Name: icons/full/obj16/image_obj.gif

+SHA1-Digest: DT00AOgk+LSxwyBDkotC5FiPYRI=

+

+Name: themes/purpleMesh/swt/tutorials.properties

+SHA1-Digest: I2RxA1+OY6LYltetui8ofyH59eo=

+

+Name: themes/slate/graphics/icons/ctool/overview-select.png

+SHA1-Digest: hVN47i7yjwEaoeO/EczGzvS0h2Q=

+

+Name: themes/shared/graphics/contentpage/wn-fs_high.gif

+SHA1-Digest: oiMP7gOeLwfgSvXA0kWFlpITY7U=

+

+Name: themes/circles/graphics/icons/ctool/tu_nav.png

+SHA1-Digest: dNoyc7XQ0/y0TYmDYpA3RH2BDu8=

+

+Name: themes/purpleMesh/graphics/root/brandmark.gif

+SHA1-Digest: PgN5Rj0TJwB5pNIjtFRXU8ztH0A=

+

+Name: themes/purpleMesh/graphics/icons/ctool/tutorials16.png

+SHA1-Digest: i2tAwI/AV2AL9+0LBrkT2facrps=

+

+Name: themes/slate/graphics/icons/ctool/samples-select.png

+SHA1-Digest: vq/g/Lw1FwHfkm6p/FOlemij/5I=

+

+Name: themes/slate/graphics/rootpage/overview48.png

+SHA1-Digest: 99XyAwX7m5mYQ4AOgObbGzd5RDw=

+

+Name: themes/purpleMesh/graphics/icons/etool/samples72.gif

+SHA1-Digest: yaI/A4O3sg62jftxAs4A5ovsDIE=

+

+Name: themes/circles/graphics/standby/fs_standbyhov.gif

+SHA1-Digest: j3OetXMY7tyEtqQChTtohOIDzgk=

+

+Name: themes/purpleMesh/graphics/icons/etool/whatsnew48.gif

+SHA1-Digest: mPoULJKT+XF9OOr07H7Zm7jItL4=

+

+Name: themes/purpleMesh/graphics/icons/ctool/wb16.png

+SHA1-Digest: rtGpm0vAJROmvKqNhIA86Oii2QU=

+

+Name: themes/circles/graphics/icons/ctool/mi_nav.png

+SHA1-Digest: DugGCwIqDGwAjbE6lxcgfs0Wcv4=

+

+Name: themes/slate/graphics/icons/ctool/ov_nav.png

+SHA1-Digest: KtxMxu+ASHojP1pS3ir3RurjNk8=

+

+Name: themes/circles/graphics/icons/ctool/wr_nav_32.gif

+SHA1-Digest: TdYmSHa2YYmdttUqBg/bnvUwPFU=

+

+Name: themes/slate/graphics/rootpage/workbench48_hov.png

+SHA1-Digest: zEzcCes6vflGY6bOsv24Rl5Gjds=

+

+Name: themes/circles/graphics/icons/ctool/overview_tophov.gif

+SHA1-Digest: wV+i4eDKNxlIgXGRM+u+vAgyE3w=

+

+Name: icons/full/obj16/ihigh_obj.gif

+SHA1-Digest: vI+PIICL5niI3cp3BIHFmKNezJM=

+

+Name: themes/purpleMesh/graphics/icons/etool/home.gif

+SHA1-Digest: /or5ve5EMGFdF2Y0L2g5nyUuIIw=

+

+Name: themes/purpleMesh/graphics/contentpage/whatsnew_wtr.jpg

+SHA1-Digest: XRef3brftgagwayG3XY716228lA=

+

+Name: themes/purpleMesh/graphics/icons/etool/back.gif

+SHA1-Digest: ySnsDpMG5nwH+1FeV2r27mUrMkU=

+

+Name: themes/slate/graphics/icons/ctool/wn_nav_32.gif

+SHA1-Digest: 2MmKSbuOyZVL2zJF4G8nB5PD40E=

+

+Name: themes/circles/graphics/contentpage/wn_banner.jpg

+SHA1-Digest: YUKNXzoHrliZGSKkB1xULdQM1pM=

+

+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew72.gif

+SHA1-Digest: 5291YmuJ2qb7ZUbxqgabvlAUXZw=

+

+Name: themes/purpleMesh/graphics/icons/etool/migrate72.gif

+SHA1-Digest: cixlyOEhHbqYFBRvcfJB++/1zA0=

+

+Name: themes/shared/graphics/icons/ctool/widget_open.gif

+SHA1-Digest: Apgb6HcsxsXMS+sHuk/qeY8n4Hg=

+

+Name: themes/circles/graphics/icons/ctool/ov_nav_midhov.gif

+SHA1-Digest: ww8UaEmFh8Ua/BIxSr1+x4ZGgjs=

+

+Name: themes/slate/graphics/rootpage/whatsnew48_hov.png

+SHA1-Digest: AtJW/I5jeOgeNN8s/05OYoPbiNI=

+

+Name: themes/purpleMesh/swt/samples.properties

+SHA1-Digest: zHgXqSHAR+13ShPdQ+v5A7zVxQ0=

+

+Name: themes/slate/graphics/rootpage/overview48_hov.gif

+SHA1-Digest: lMx3CV4GH+dLQSIaRIcoHkky8Wk=

+

+Name: themes/purpleMesh/graphics/launchbar/tutorials.gif

+SHA1-Digest: p/9KyKfeLBTEfkIq5VoXuUzv+CI=

+

+Name: themes/slate/graphics/icons/ctool/mi_nav_32.gif

+SHA1-Digest: mATXWuXqCWzSKixiSQs+YOGKGco=

+

+Name: themes/shared/graphics/contentpage/tu-sa_high.gif

+SHA1-Digest: yiKi7S7vBveH4hyEQdwg4/A2XPo=

+

+Name: themes/circles/graphics/standby/wr_standbyhov.gif

+SHA1-Digest: 1rq4e0czEMOde7HG8ZUK1yqzD88=

+

+Name: themes/circles/graphics/contentpage/mi_banner.jpg

+SHA1-Digest: 1sw4BuKCsz60H2Os3tfy525HyLo=

+

+Name: themes/purpleMesh/graphics/root/dots.gif

+SHA1-Digest: J8KQRqbJZhxVIt9FA8p0AcCnowc=

+

+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc72.gif

+SHA1-Digest: DD9I/BC6qA7bx2G7VKVRdAIpEYM=

+

+Name: themes/circles/html/shared.css

+SHA1-Digest: NJbZ3ZOvYbHm3hSIEHPQBig4eDA=

+

+Name: themes/slate/graphics/icons/ctool/sa_nav_32.gif

+SHA1-Digest: zWmN8ic58PiJmRsQN6M8kkO112Y=

+

+Name: themes/slate/swt/whatsnew.properties

+SHA1-Digest: +6rLRTIyqqFhxw9OwYjFyI9LYHU=

+

+Name: themes/circles/graphics/contentpage/sa_banner.jpg

+SHA1-Digest: 7WoYSLMwBhmg1/b/vzgmc4EEEYU=

+

+Name: themes/circles/graphics/standby/tu_standby.gif

+SHA1-Digest: 76LqWV6eBwFimzZFB6T2Buh40Jw=

+

+Name: themes/slate/graphics/standby/wb_standby.gif

+SHA1-Digest: iYWACoN3sIlFFpx6p5DfMjT8yp4=

+

+Name: themes/circles/graphics/icons/ctool/cpt_bottomhov.gif

+SHA1-Digest: kK+FVIIHjU6Om4Pa8Mf1Cb9qZ3k=

+

+Name: themes/circles/graphics/icons/ctool/wn_nav_hover.gif

+SHA1-Digest: Dhv+82YCN/981G9RTNEIB18Lpdc=

+

+Name: themes/slate/graphics/standby/wr_standby.gif

+SHA1-Digest: xduVT3RSYRMM5sYjyQAjf+Jf17I=

+

+Name: themes/circles/graphics/icons/ctool/content_nav_bar.gif

+SHA1-Digest: kr9yIeTjSkVaXNPuVOWWopYNvho=

+

+Name: themes/slate/swt/standby.properties

+SHA1-Digest: bV7foFtJyLQF3lqerXPZKET+4ew=

+

+Name: themes/slate/graphics/icons/ctool/fs_nav_32.gif

+SHA1-Digest: BSKmmm0UjJhF46bslzBFgsMhk28=

+

+Name: themes/circles/graphics/standby/sa_standbyhov.gif

+SHA1-Digest: R1KR8mlM3qFlzVMir6EJcoAJ6lE=

+

+Name: themes/circles/graphics/contentpage/fs_banner.jpg

+SHA1-Digest: vUx+zrIjtCFpyr9f3ERQ6/HpSzw=

+

+Name: themes/shared/graphics/icons/ctool/arrow_rtl.gif

+SHA1-Digest: lbqBjzMYJPrTr2480naQFU3Ctkw=

+

+Name: themes/purpleMesh/graphics/launchbar/firststeps16.png

+SHA1-Digest: Xi6gTgcM86DWgA6hyPn8mRMRwE0=

+

+Name: themes/purpleMesh/graphics/contentpage/firsteps_wtr.jpg

+SHA1-Digest: SLogcCehi5NObA2KuLZ7nA738ds=

+

+Name: themes/purpleMesh/graphics/contentpage/overview_wtr.jpg

+SHA1-Digest: koZJeO/5SBXUv2ah5lALiklDKnY=

+

+Name: icons/full/elcl16/configure.gif

+SHA1-Digest: lO5chUjiq4EA093CHoujkIE+2ro=

+

+Name: themes/purpleMesh/graphics/icons/ctool/samples72.gif

+SHA1-Digest: 8tJ5D2Qt3JGFuK3tVzR2zDvw1UA=

+

+Name: themes/circles/graphics/launchbar/webresources16.png

+SHA1-Digest: MKgOo3PUit3DrNfS3CNMBEiz7j0=

+

+Name: themes/slate/graphics/rootpage/samples48_hov.png

+SHA1-Digest: 2YRNbbxotyUjDVT/r3kFEq6poLo=

+

+Name: themes/circles/graphics/standby/fs_standby.gif

+SHA1-Digest: 5yXOjWYGu9taQwSM6JmLf07j0fI=

+

+Name: themes/circles/graphics/standby/sa_standby.gif

+SHA1-Digest: MzhZk7rGOmDthzPVK6Ss5ZHDWfc=

+

+Name: themes/purpleMesh/html/tutorials.css

+SHA1-Digest: ei1JflrAWiaDdaAr3H0KmumaF98=

+

+Name: themes/slate/graphics/contentpage/ov_banner.jpg

+SHA1-Digest: 2Wu7/rm22OIorJVynaU7zk/G8cg=

+

+Name: themes/purpleMesh/graphics/icons/ctool/migrate72.gif

+SHA1-Digest: QpVdHFygYIEYpSnJi/P3L9MHuqE=

+

+Name: themes/circles/graphics/icons/ctool/tu_nav_32.gif

+SHA1-Digest: ERMabqNtihbmhosEh+AMC9m6SgQ=

+

+Name: themes/slate/graphics/rootpage/background.jpg

+SHA1-Digest: clqgSqmczSLuMgglgV10PWWPA9g=

+

+Name: themes/shared/graphics/contentpage/tu-sa_med.gif

+SHA1-Digest: h/hEsdE7RIYhwsmZzkQG1XWxsys=

+

+Name: themes/slate/graphics/icons/ctool/firststeps-select.png

+SHA1-Digest: fe9h2ATKSpO/CQpV0CiE3Ja0Mo0=

+

+Name: themes/circles/swt/tutorials.properties

+SHA1-Digest: KzD9PkAEIUKHMB95H+XTKCwE0yQ=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=

+

+Name: themes/slate/graphics/icons/ctool/firststeps.png

+SHA1-Digest: Slw4nKX4xZvu6mCCFHsDWMjdIMw=

+

+Name: themes/circles/graphics/standby/wn_standbyhov.gif

+SHA1-Digest: NbMYb8Ka2D8DlnjzdS2qA6E8j9I=

+

+Name: .options

+SHA1-Digest: C+1XlDx3q4e5awMudzzcXc0+HR8=

+

+Name: themes/purpleMesh/graphics/icons/etool/whatsnew48sel.gif

+SHA1-Digest: 6aRXuEW+469og8tyzagdemjWMtU=

+

+Name: themes/slate/html/ltr.css

+SHA1-Digest: Yyu5meBpG9xZ0u7nPC5AeoUW/zw=

+

+Name: themes/shared/graphics/icons/ctool/arrow.gif

+SHA1-Digest: iyBS4QdZ6imHjGPw321lqh6SJSo=

+

+Name: themes/slate/graphics/rootpage/firststeps48_hov.png

+SHA1-Digest: u8839OydWVij9f/XScZyzGhsI+E=

+

+Name: themes/slate/graphics/icons/ctool/tutorials-select.gif

+SHA1-Digest: RyAwY/Ne3m1SyA/5nJImuJ3fKNg=

+

+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew16.png

+SHA1-Digest: h+KhHUY6Dp0Q8Jm2f2zIe/6WTlQ=

+

+Name: themes/purpleMesh/graphics/icons/ctool/home.gif

+SHA1-Digest: +dfHtXYrxLHjjn8I1hvSsiolVec=

+

+Name: themes/slate/graphics/icons/ctool/workbench.png

+SHA1-Digest: NvsOkAqCPAe7ectLZ6VMCYoWlAg=

+

+Name: themes/purpleMesh/graphics/icons/ctool/back.gif

+SHA1-Digest: /ee1AJtypM5HojkNnK17U+1toxw=

+

+Name: themes/purpleMesh/graphics/icons/etool/whatsnew72.gif

+SHA1-Digest: VVjmCJZSVuW19ir4QGPMhB7Npwk=

+

+Name: themes/purpleMesh/graphics/launchbar/samples.gif

+SHA1-Digest: f+tsB+8P19AEujlqYKaF47r+bRo=

+

+Name: plugin.properties

+SHA1-Digest: j9b4Qc2R4fauSPFwVkCuw/97RmY=

+

+Name: themes/slate/graphics/standby/mi_standbyhov.gif

+SHA1-Digest: HnHqLAS7Dn7UNF9Lvj7vq9+KBUc=

+

+Name: themes/slate/graphics/launchbar/overview16.png

+SHA1-Digest: F9E6l5MA7FwcZoftgNIyKpPuHIs=

+

+Name: themes/circles/preview.png

+SHA1-Digest: p2GDfi7EuI8iZYsSRdPhU6yn/tA=

+

+Name: themes/circles/graphics/icons/ctool/wr_nav_64.gif

+SHA1-Digest: yKH5q0AkPnPz33CwUnAawnSB37Y=

+

+Name: themes/circles/html/webresources.css

+SHA1-Digest: oJ2uN/Df/fQ9VVcHmmjDUenv7AM=

+

+Name: themes/circles/graphics/icons/ctool/workbench.gif

+SHA1-Digest: fXSnXQQliUHXuHkVtPEd48wAmU0=

+

+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc16.png

+SHA1-Digest: MKgOo3PUit3DrNfS3CNMBEiz7j0=

+

+Name: plugin.xml

+SHA1-Digest: HTH+0R6u0txmcBdMgUYHHxi5NA0=

+

+Name: themes/slate/graphics/icons/ctool/wb_nav.png

+SHA1-Digest: FH8HqOCtz5sLOSGSXLTuXtscYdw=

+

+Name: themes/slate/graphics/icons/ctool/fs_nav.png

+SHA1-Digest: 3F+Z798k2zAOQHXppBvRobdsVgY=

+

+Name: themes/slate/graphics/icons/ctool/tutorials.png

+SHA1-Digest: smC+kYLb5F/BlUJxXGb3OIkzMyA=

+

+Name: themes/slate/graphics/rootpage/webresources48.gif

+SHA1-Digest: Wkwu0trR5o4j216/eKGrLUXQgVQ=

+

+Name: themes/circles/swt/samples.properties

+SHA1-Digest: Ncf3sOn+P9/86/XoIn4hcq9icD4=

+

+Name: themes/purpleMesh/swt/overview.properties

+SHA1-Digest: 4XuXPT9lJyYZUd15XLQ2S2NY0Rs=

+

+Name: themes/slate/graphics/icons/ctool/wn_nav.png

+SHA1-Digest: d7McdCEtfxPQ+F5vlR38rVTvgXo=

+

+Name: themes/purpleMesh/html/whatsnew.css

+SHA1-Digest: a2kvguq57VvzsFpUWd3lNE8NhXk=

+

+Name: themes/slate/graphics/icons/ctool/wr_nav.png

+SHA1-Digest: RiRbJ01jNoAefHKxAe7htjgxNc8=

+

+Name: themes/circles/graphics/icons/ctool/firststeps.png

+SHA1-Digest: Slw4nKX4xZvu6mCCFHsDWMjdIMw=

+

+Name: themes/circles/graphics/icons/ctool/tutorials.gif

+SHA1-Digest: B3mR2l7PuKW4ohGN2+6MgQ0N4+E=

+

+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc48sel.gif

+SHA1-Digest: xolbR3GLHkwY40HpoCR7l2cvo8E=

+

+Name: themes/slate/graphics/rootpage/samples48.png

+SHA1-Digest: 0aBwYaDsSfDY9wFfyZYhgWauOts=

+

+Name: themes/slate/swt/webresources.properties

+SHA1-Digest: t5J8E7LadPCb0Nado0og3neqeP4=

+

+Name: themes/purpleMesh/html/samples.css

+SHA1-Digest: aV9FCYH/Y99OxfBo3a89dBVVb2w=

+

+Name: themes/slate/graphics/rootpage/workbench48.gif

+SHA1-Digest: bCEuWQrXaxDHRsdbV32vhZTaTAw=

+

+Name: themes/purpleMesh/graphics/icons/obj48/newhov_obj.gif

+SHA1-Digest: bYXzhCgIi1p/aDvaAoOBGIrBuKA=

+

+Name: themes/slate/graphics/icons/ctool/migrate-select.png

+SHA1-Digest: 4FsIwltnwRBT6zUU9ZhfqWqeCMg=

+

+Name: themes/purpleMesh/graphics/icons/dtool/forward.gif

+SHA1-Digest: /hIcNo6w11v+EpgTXgFX9a1bYwY=

+

+Name: themes/slate/graphics/rootpage/migrate48.png

+SHA1-Digest: fYUHrau4PFFvcGeeVKUmDXXFlzM=

+

+Name: introContent.xml

+SHA1-Digest: oBGOdDNVJDRhzWJduBCcMgybxlg=

+

+Name: themes/purpleMesh/graphics/icons/ctool/samples16.png

+SHA1-Digest: +A2GGC4SIIC5T7Tlg4U4Z0UqIVQ=

+

+Name: themes/shared/graphics/icons/ctool/widget_open_hov.gif

+SHA1-Digest: MmG5r1m7Bt3SovQedHnqx/yef6c=

+

+Name: themes/slate/graphics/standby/ov_standbyhov.gif

+SHA1-Digest: S4jMdmDN03X8/YD+TgHYLJTrQ1k=

+

+Name: themes/slate/graphics/rootpage/root_banner_logo.jpg

+SHA1-Digest: /CP6QAhd0edNjnbONqlngQnllMA=

+

+Name: themes/purpleMesh/graphics/icons/etool/firsteps48sel.gif

+SHA1-Digest: uOZ5e0VrbpuNNVW7lRzqZfCtTW4=

+

+Name: themes/purpleMesh/swt/firststeps.properties

+SHA1-Digest: aASynB9pAU45n6Ybk1G/NcO1fdI=

+

+Name: themes/slate/graphics/rootpage/tutorials48_hov.gif

+SHA1-Digest: 4SvJnMqRTwJ+zIoB8cQR38SSd24=

+

+Name: themes/slate/graphics/rootpage/firststeps48.png

+SHA1-Digest: 5Mnj5NHzv8W/LV+9YDC5mHVlj9A=

+

+Name: themes/circles/graphics/launchbar/whatsnew16.png

+SHA1-Digest: h+KhHUY6Dp0Q8Jm2f2zIe/6WTlQ=

+

+Name: themes/purpleMesh/swt/migrate.properties

+SHA1-Digest: cE6O/0BBstAtfvzhz8YejE5SX8Q=

+

+Name: themes/circles/graphics/icons/ctool/root_bottomhov.gif

+SHA1-Digest: iwXyduiJRV5Bdtz/1NQf51QxyqU=

+

+Name: themes/purpleMesh/graphics/launchbar/migrate16.png

+SHA1-Digest: cdjjFVkozz0y9ji+FpASYhOALwk=

+

+Name: themes/purpleMesh/html/font-relative.css

+SHA1-Digest: PqZAKDAg+G3+bdo7roEyD1vX+6Y=

+

+Name: themes/circles/graphics/icons/ctool/wb_nav_hover.gif

+SHA1-Digest: D42boB3rk+XDSbYZH5AZmnsKB4A=

+

+Name: themes/purpleMesh/graphics/icons/ctool/migrate16.png

+SHA1-Digest: cdjjFVkozz0y9ji+FpASYhOALwk=

+

+Name: themes/slate/graphics/rootpage/migrate48_hov.gif

+SHA1-Digest: cLdOTCmvcsdeG2+P5GWUtX33mwc=

+

+Name: themes/purpleMesh/graphics/icons/etool/tutorials48sel.gif

+SHA1-Digest: jc00LK6MGDAAaGfP4M5RyJXGuQE=

+

+Name: themes/slate/graphics/icons/ctool/whatsnew-select.png

+SHA1-Digest: h1ALltqSjS2PyFiadyhunaVj0Rc=

+

+Name: themes/circles/graphics/icons/ctool/ov_nav.png

+SHA1-Digest: KtxMxu+ASHojP1pS3ir3RurjNk8=

+

+Name: themes/purpleMesh/graphics/icons/etool/overview48sel.gif

+SHA1-Digest: OKGFb61YvHR3BUEWxZMRoOrDc0U=

+

+Name: themes/shared/graphics/contentpage/wr-mi_med.gif

+SHA1-Digest: sMBntAOuQRZ4SVT9n0EUumCXqio=

+

+Name: themes/slate/graphics/standby/tu_standbyhov.gif

+SHA1-Digest: sWxT9jjy1CbwVqXWKiMSMRgDs8I=

+

+Name: themes/circles/graphics/icons/ctool/wr_nav_hover.gif

+SHA1-Digest: PqoCgMnPYQAZ5Sh//KRwq3GiElY=

+

+Name: themes/slate/graphics/launchbar/firststeps16.png

+SHA1-Digest: Xi6gTgcM86DWgA6hyPn8mRMRwE0=

+

+Name: themes/purpleMesh/html/overview.css

+SHA1-Digest: y0DWH504MPKylYGmOgVS5qb3pB0=

+

+Name: themes/slate/graphics/standby/ov_standby.gif

+SHA1-Digest: HunoPS0cid3oVEr1sZr/zorOhSo=

+

+Name: themes/circles/html/tutorials.css

+SHA1-Digest: w/Jtk6Bi+30x/49Z8c/2RbISOTk=

+

+Name: themes/circles/graphics/rootpage/welcomebckgrd.jpg

+SHA1-Digest: RsjLJW93PHvXmiEpV1h7Z7/PmG0=

+

+Name: themes/purpleMesh/html/rtl.css

+SHA1-Digest: 2B29TxTe/FduV6aD5p0J9bAq9Vw=

+

+Name: themes/purpleMesh/graphics/icons/ctool/firsteps48.gif

+SHA1-Digest: +i2ExoEMVgv5OsKcPs/8ZqldrV4=

+

+Name: themes/slate/graphics/icons/ctool/sa_nav.png

+SHA1-Digest: uXMdf9iE7j6nm8Kb+4XilPOc3KQ=

+

+Name: themes/circles/graphics/icons/ctool/samples_tophov.gif

+SHA1-Digest: 9fSubIMcSGRm6kHstxpp/hWR2MY=

+

+Name: themes/circles/graphics/icons/ctool/whatsnew_tophov.gif

+SHA1-Digest: Dz4B6J4zj82LLZHLRDUGJ5zhaa8=

+

+Name: themes/circles/graphics/icons/ctool/webresources.gif

+SHA1-Digest: XXqmYcqNJAe+O7jDcR2IF01wCvI=

+

+Name: themes/circles/graphics/icons/ctool/ov_nav_rightedgehov.gif

+SHA1-Digest: +ldcPGuLxaDCtgM9cCVBp834H6w=

+

+Name: themes/purpleMesh/graphics/icons/etool/tutorials48.gif

+SHA1-Digest: fxo+8hPJ1SxRJQpke2wKEXdASIA=

+

+Name: .api_description

+SHA1-Digest: aEjIyLX/qavVSW+KUVFCWyFNqno=

+

+Name: themes/shared/graphics/contentpage/ov_high.gif

+SHA1-Digest: IKGW38eYO7vaBoKhdiw7GpIAKBk=

+

+Name: themes/circles/graphics/icons/ctool/ov_nav_32.gif

+SHA1-Digest: mK2utAnQW2MhbJurFHYi5qKZ1vE=

+

+Name: themes/slate/swt/samples.properties

+SHA1-Digest: Lk9VkvX9y75vbaIYZjTwpe3vlc8=

+

+Name: themes/circles/graphics/icons/ctool/tu_nav_64.gif

+SHA1-Digest: L64ZAN2mr8wKAPAY0pRqPrEZgp0=

+

+Name: themes/slate/graphics/icons/ctool/overview-select.gif

+SHA1-Digest: rDatrh5+RWGgBQOsdxqZlA4w2Zc=

+

+Name: themes/shared/graphics/icons/ctool/widget_closed.gif

+SHA1-Digest: Ce25KultCG+5fRN3Er6QposVUqQ=

+

+Name: themes/slate/graphics/standby/fs_standbyhov.gif

+SHA1-Digest: j3OetXMY7tyEtqQChTtohOIDzgk=

+

+Name: themes/slate/graphics/icons/ctool/wr_nav_32.gif

+SHA1-Digest: TdYmSHa2YYmdttUqBg/bnvUwPFU=

+

+Name: themes/circles/graphics/standby/wb_standby.gif

+SHA1-Digest: iYWACoN3sIlFFpx6p5DfMjT8yp4=

+

+Name: themes/shared/graphics/icons/ctool/widget_closed_hov.gif

+SHA1-Digest: RdXAhCz407pCYDiqC38P0Uup5Lk=

+

+Name: themes/slate/graphics/rootpage/whatsnew48.png

+SHA1-Digest: XqPtN6ePY9fMqiYf413JSqumPYM=

+

+Name: themes/circles/graphics/icons/ctool/samples.png

+SHA1-Digest: mUEIQ9eqMWNIQEiNPyGfsplQZTY=

+

+Name: themes/circles/graphics/icons/ctool/whatsnew.png

+SHA1-Digest: 7yax9xdOrPlNoCNBqEo0D2Wn98A=

+

+Name: themes/slate/graphics/icons/ctool/samples-select.gif

+SHA1-Digest: 2jcUxYNETQZSndqWOTWNrNjZr3M=

+

+Name: themes/slate/graphics/rootpage/overview48.gif

+SHA1-Digest: HJKThR/+8xlKkV/iwAnJoKIBEjc=

+

+Name: themes/circles/graphics/contentpage/wr_banner.jpg

+SHA1-Digest: lMNC8ZRpqVeAjGGom/2FCfIla0I=

+

+Name: themes/slate/graphics/standby/mi_standby.gif

+SHA1-Digest: 5hYhaXir5S3NKycOObVKVsAr09E=

+

+Name: themes/slate/swt/firststeps.properties

+SHA1-Digest: XEd5LUGfrXm+Fi2Pm2Sxabb+o2Q=

+

+Name: themes/slate/graphics/icons/ctool/samples.png

+SHA1-Digest: mUEIQ9eqMWNIQEiNPyGfsplQZTY=

+

+Name: themes/circles/graphics/standby/wr_standby.gif

+SHA1-Digest: xduVT3RSYRMM5sYjyQAjf+Jf17I=

+

+Name: themes/slate/graphics/rootpage/workbench48_hov.gif

+SHA1-Digest: Y2ot6r+86mWEmot6dSbW7qBXxrA=

+

+Name: themes/slate/graphics/contentpage/wn_banner.jpg

+SHA1-Digest: B7PqiMv+1kh2aQSblUfgzqJY+vc=

+

+Name: themes/circles/graphics/launchbar/firststeps16.png

+SHA1-Digest: Xi6gTgcM86DWgA6hyPn8mRMRwE0=

+

+Name: themes/purpleMesh/html/migrate.css

+SHA1-Digest: QWGn8isbJ0z51DThM2DY0vmiUQY=

+

+Name: themes/purpleMesh/graphics/icons/ctool/overview48.gif

+SHA1-Digest: p166YKsHvy7lDhFvTVC+MWHEPNI=

+

+Name: themes/purpleMesh/html/standby.css

+SHA1-Digest: YImivxRli186nUOikfJNfRQ9heg=

+

+Name: icons/full/obj16/extension_obj.gif

+SHA1-Digest: Z2OZk1zGHkMoKUiUg4yQs9yLbG0=

+

+Name: themes/purpleMesh/graphics/icons/etool/wb48.gif

+SHA1-Digest: hUPACtH5KYkHcJaBMckWNa6Rp0Y=

+

+Name: themes/slate/graphics/rootpage/whatsnew48_hov.gif

+SHA1-Digest: 2irx38fThjn95Bc5TeX4Nz2l1eM=

+

+Name: themes/slate/graphics/standby/wr_standbyhov.gif

+SHA1-Digest: 1rq4e0czEMOde7HG8ZUK1yqzD88=

+

+Name: themes/slate/graphics/contentpage/mi_banner.jpg

+SHA1-Digest: BmFPKdVlhpqtGVVuiBAEfsWiDJc=

+

+Name: themes/circles/graphics/icons/ctool/nav_midhov.gif

+SHA1-Digest: UzxXgA/8cTju4cty8vMKKxHvc4k=

+

+Name: themes/circles/graphics/icons/ctool/sa_onesample48.gif

+SHA1-Digest: SgTfSJwJOJRFZ/IcEX2QPiygsNc=

+

+Name: themes/purpleMesh/html/root.css

+SHA1-Digest: L5Tx+BMdeBiODngBKJUu+AAVctw=

+

+Name: themes/slate/graphics/contentpage/sa_banner.jpg

+SHA1-Digest: Ug2BpLsYYBUgSQ7NunyprrBNUl0=

+

+Name: themes/circles/html/samples.css

+SHA1-Digest: i1NavsbJM5qrz/TuG8KCHYInrGw=

+

+Name: themes/circles/graphics/icons/ctool/arrow_rtl.gif

+SHA1-Digest: lbqBjzMYJPrTr2480naQFU3Ctkw=

+

+Name: themes/purpleMesh/graphics/icons/ctool/samples48sel.gif

+SHA1-Digest: oN1vH4wGhKWwoMcHmyoj58c+wv4=

+

+Name: themes/purpleMesh/graphics/contentpage/section4.gif

+SHA1-Digest: G6k7Z/zfXfLy9LtPLbb9QOw8ocE=

+

+Name: themes/slate/graphics/rootpage/webresources48_hov.png

+SHA1-Digest: uQSI5dNR5WKXZqCPYNBXOwlAero=

+

+Name: themes/slate/html/samples.css

+SHA1-Digest: MQjp+/7X99His50rasEJD96/e7k=

+

+Name: themes/slate/graphics/standby/sa_standbyhov.gif

+SHA1-Digest: R1KR8mlM3qFlzVMir6EJcoAJ6lE=

+

+Name: themes/purpleMesh/swt/root.properties

+SHA1-Digest: kzz0orYVHgZJ1gxM+EZQxlbiK6k=

+

+Name: themes/slate/graphics/contentpage/fs_banner.jpg

+SHA1-Digest: pKMXP4ayqEGlW6vkG4+uUzK8KOY=

+

+Name: themes/purpleMesh/graphics/icons/obj48/new_obj.gif

+SHA1-Digest: Y/Bwx578bV6kzFqO2dx3H9gJtTo=

+

+Name: themes/circles/graphics/launchbar/samples16.png

+SHA1-Digest: +A2GGC4SIIC5T7Tlg4U4Z0UqIVQ=

+

+Name: themes/shared/graphics/contentpage/wr-mi_high.gif

+SHA1-Digest: 2RQtHiwrJLvAsbE+LgDUgDBAREk=

+

+Name: themes/circles/graphics/icons/ctool/overview.png

+SHA1-Digest: eXxwilTaGiognsDmKoSJ3ZwT7FU=

+

+Name: themes/slate/graphics/launchbar/samples16.png

+SHA1-Digest: +A2GGC4SIIC5T7Tlg4U4Z0UqIVQ=

+

+Name: themes/purpleMesh/graphics/contentpage/tutorials_wtr.jpg

+SHA1-Digest: crA+sbMxuv6QOQml9WDHmcSYGcE=

+

+Name: universal.jar

+SHA1-Digest: jr+MZWA89AGisRFIF165u4g8kbE=

+

+Name: themes/slate/graphics/icons/ctool/webresources.png

+SHA1-Digest: 0sKVVhl4zyGuSQxxs1pyupEqEro=

+

+Name: themes/slate/graphics/rootpage/tutorials48.png

+SHA1-Digest: yKtB0uZVtrJ+JoR2z0YAYQ5W3sA=

+

diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/eclipse.inf b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/about.html b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/about.html
new file mode 100644
index 0000000..4602330
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/about.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
+<title>About</title>
+</head>
+<body lang="EN-US">
+<h2>About This Content</h2>
+ 
+<p>June 2, 2006</p>	
+<h3>License</h3>
+
+<p>The Eclipse Foundation makes available all content in this plug-in (&quot;Content&quot;).  Unless otherwise 
+indicated below, the Content is provided to you under the terms and conditions of the
+Eclipse Public License Version 1.0 (&quot;EPL&quot;).  A copy of the EPL is available 
+at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>If you did not receive this Content directly from the Eclipse Foundation, the Content is 
+being redistributed by another party (&quot;Redistributor&quot;) and different terms and conditions may
+apply to your use of any object code in the Content.  Check the Redistributor's license that was 
+provided with the Content.  If no such license exists, contact the Redistributor.  Unless otherwise
+indicated below, the terms and conditions of the EPL still apply to any source code in the Content
+and such source code may be obtained at <a href="http://www.eclipse.org">http://www.eclipse.org</a>.</p>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/elcl16/configure.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/elcl16/configure.gif
new file mode 100644
index 0000000..13102f6
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/elcl16/configure.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/extension_obj.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/extension_obj.gif
new file mode 100644
index 0000000..7f3f595
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/extension_obj.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/icallout_obj.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/icallout_obj.gif
new file mode 100644
index 0000000..f52d86a
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/icallout_obj.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/ihigh_obj.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/ihigh_obj.gif
new file mode 100644
index 0000000..f99bdc3
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/ihigh_obj.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/ilow_obj.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/ilow_obj.gif
new file mode 100644
index 0000000..a6815bc
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/ilow_obj.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/image_obj.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/image_obj.gif
new file mode 100644
index 0000000..830be0e
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/image_obj.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/inew_obj.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/inew_obj.gif
new file mode 100644
index 0000000..b1526e9
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/inew_obj.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/welcome16.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/welcome16.gif
new file mode 100644
index 0000000..b20cc78
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/welcome16.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/introContent.xml b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/introContent.xml
new file mode 100644
index 0000000..77066b7
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/introContent.xml
@@ -0,0 +1,270 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<!--
+    Copyright (c) 2005, 2010 IBM Corporation and others.
+    All rights reserved. This program and the accompanying materials
+    are made available under the terms of the Eclipse Public License v1.0
+    which accompanies this distribution, and is available at
+    http://www.eclipse.org/legal/epl-v10.html
+   
+    Contributors:
+         IBM Corporation - initial API and implementation
+ -->
+
+<!-- 
+	A content file for the Universal Welcome
+-->
+<introContent>
+	<!-- Root page -->
+	<page id="root" alt-style="$theme$/swt/root.properties" style="$theme$/html/root.css" style-id="page">
+		<anchor id="head-anchor"/>
+        <title style-id="intro-header">$introTitle$</title>
+        <group id="links-background">
+           <group id="page-links" computed="true"/>
+        </group>
+        <group id="action-links" computed="true">
+        </group>        
+        <group id="branding">
+        	<img src="$introBrandingImage$" alt="$introBrandingImageText$"/>
+        </group>
+		<!-- General purpose groups for adding additional content -->
+		<group id="extra-group1" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group2" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group3" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group4" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group5" filteredFrom="swt"><anchor id="anchor"/></group>
+    </page>
+	
+	<!-- Standby page -->
+    <page id="standby" alt-style="$theme$/swt/standby.properties" style="$theme$/html/standby.css" style-id="page">
+   		<anchor id="head-anchor"/>
+        <title style-id="intro-header">$introTitle$</title>
+        <group id="links-background">
+            <group id="page-links" computed="true">
+            </group>
+        </group>
+        <group id="action-links" computed="true">
+        </group>        
+        <group id="branding">
+        	<img src="$introBrandingImage$" alt="$introBrandingImageText$"/>
+        </group>
+		<!-- General-purpose groups for additional content -->
+		<group id="extra-group1" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group2" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group3" filteredFrom="swt"><anchor id="anchor"/></group>		
+    </page>    
+    
+	<!-- Overview page -->
+    <page id="overview" style="$theme$/html/overview.css" alt-style="$theme$/swt/overview.properties" style-id="page">
+   		<anchor id="head-anchor"/>
+        <title style-id="intro-header">$introTitle$</title> 
+        <group id="extra-group1" filteredFrom="swt"/>
+		<!-- navigation -->
+        <group id="navigation-links" filteredFrom="swt">
+            <group id="page-links" computed="true">
+            </group>
+            <group id="action-links">
+                <link url="http://org.eclipse.ui.intro/switchToLaunchBar" label="Workbench" id="workbench" style-id="$high-contrast$">
+                    <text>Go to the workbench</text>
+                </link>
+            </group>
+        </group>
+		<!-- content -->
+        <group id="page-content">
+            <group id="content-header" label="Overview" filteredFrom="swt">
+            </group>
+            <text style-id="page-title" id="page-title" filteredFrom="html">Overview</text>
+            <text style-id="page-description" id="page-description">$introDescription-overview$</text>
+			<!-- panes -->
+ 			<group id="top-left" computed="true"/>
+			<group id="top-right" computed="true"/>
+			<group id="content-divider" filteredFrom="swt"/>		
+			<group id="bottom-left" computed="true"/>
+			<group id="bottom-right" computed="true"/>
+        </group>
+		<!-- extra groups for additional effects -->
+		<group id="extra-group2" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group3" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group4" filteredFrom="swt"><anchor id="anchor"/></group>
+    </page>
+    
+    <!-- Tutorials page -->
+	<page id="tutorials" style="$theme$/html/tutorials.css" alt-style="$theme$/swt/tutorials.properties" style-id="page">
+		<anchor id="head-anchor"/>
+        <title style-id="intro-header">$introTitle$</title>	
+        <group id="extra-group1" filteredFrom="swt"/>
+        <group id="navigation-links" filteredFrom="swt">
+            <group id="page-links" computed="true">
+            </group>
+            <group id="action-links">
+                <link url="http://org.eclipse.ui.intro/switchToLaunchBar" label="Workbench" id="workbench" style-id="$high-contrast$">
+                    <text>Go to the workbench</text>
+                </link>
+            </group>
+        </group>
+        <group id="page-content">
+            <group id="content-header" label="Tutorials" filteredFrom="swt">
+            </group>
+            <text style-id="page-title" id="page-title" filteredFrom="html">Tutorials</text>
+            <text style-id="page-description" id="page-description">$introDescription-tutorials$</text>
+ 			<group id="top-left" computed="true"/>
+			<group id="top-right" computed="true"/>
+			<group id="content-divider" filteredFrom="swt"/>		
+			<group id="bottom-left" computed="true"/>
+			<group id="bottom-right" computed="true"/>
+        </group>
+		<group id="extra-group2" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group3" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group4" filteredFrom="swt"><anchor id="anchor"/></group>
+    </page>
+    
+    <!-- Samples page -->
+	 <page id="samples" style="$theme$/html/samples.css" alt-style="$theme$/swt/samples.properties" style-id="page">
+ 		<anchor id="head-anchor"/>
+        <title style-id="intro-header">$introTitle$</title> 
+        <group id="extra-group1" filteredFrom="swt"/>
+        <group id="navigation-links" filteredFrom="swt">
+            <group id="page-links" computed="true">
+            </group>
+            <group id="action-links">
+                <link url="http://org.eclipse.ui.intro/switchToLaunchBar" label="Workbench" id="workbench" style-id="$high-contrast$">
+                    <text>Go to the workbench</text>
+                </link>
+            </group>
+        </group>
+        <group id="page-content">
+            <group id="content-header" label="Samples" filteredFrom="swt">
+            </group>
+            <text style-id="page-title" id="page-title" filteredFrom="html">Samples</text>
+            <text style-id="page-description" id="page-description">$introDescription-samples$</text>
+ 			<group id="top-left" computed="true"/>
+			<group id="top-right" computed="true"/>
+			<group id="content-divider" filteredFrom="swt"/>		
+			<group id="bottom-left" computed="true"/>
+			<group id="bottom-right" computed="true"/>
+        </group>
+		<group id="extra-group2" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group3" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group4" filteredFrom="swt"><anchor id="anchor"/></group>		 
+    </page>
+
+	<!-- What's New page -->
+    <page id="whatsnew" style="$theme$/html/whatsnew.css" alt-style="$theme$/swt/whatsnew.properties" style-id="page">
+		<anchor id="head-anchor"/>    
+        <title style-id="intro-header">$introTitle$</title> 
+        <group id="extra-group1" filteredFrom="swt"/>
+        <group id="navigation-links" filteredFrom="swt">
+            <group id="page-links" computed="true">
+            </group>
+            <group id="action-links">
+                <link url="http://org.eclipse.ui.intro/switchToLaunchBar" label="Workbench" id="workbench" style-id="$high-contrast$">
+                    <text>Go to the workbench</text>
+                </link>
+            </group>
+        </group>
+        <group id="page-content">
+            <group id="content-header" label="What's New" filteredFrom="swt">
+            </group>
+            <text style-id="page-title" id="page-title" filteredFrom="html">What's New</text>
+            <text style-id="page-description" id="page-description">$introDescription-whatsnew$</text>
+ 			<group id="top-left" computed="true"/>
+			<group id="top-right" computed="true"/>
+			<group id="content-divider" filteredFrom="swt"/>			
+			<group id="bottom-left" computed="true"/>
+			<group id="bottom-right" computed="true"/>
+        </group>
+		<group id="extra-group2" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group3" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group4" filteredFrom="swt"><anchor id="anchor"/></group>		
+    </page>
+    
+    <!-- First Steps page -->
+    <page id="firststeps" style="$theme$/html/firststeps.css" alt-style="$theme$/swt/firststeps.properties" style-id="page">
+		<anchor id="head-anchor"/>
+        <title style-id="intro-header">$introTitle$</title> 
+        <group id="extra-group1" filteredFrom="swt"/>
+        <group id="navigation-links" filteredFrom="swt">
+            <group id="page-links" computed="true">
+            </group>
+            <group id="action-links">
+                <link url="http://org.eclipse.ui.intro/switchToLaunchBar" label="Workbench" id="workbench" style-id="$high-contrast$">
+                    <text>Go to the workbench</text>
+                </link>
+            </group>
+        </group>
+        <group id="page-content">
+            <group id="content-header" label="First Steps" filteredFrom="swt">
+            </group>
+            <text style-id="page-title" id="page-title" filteredFrom="html">First Steps</text>
+            <text style-id="page-description" id="page-description">$introDescription-firststeps$</text>
+ 			<group id="top-left" computed="true"/>
+			<group id="top-right" computed="true"/>
+			<group id="content-divider" filteredFrom="swt"/>				
+			<group id="bottom-left" computed="true"/>
+			<group id="bottom-right" computed="true"/>
+        </group>
+		<group id="extra-group2" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group3" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group4" filteredFrom="swt"><anchor id="anchor"/></group>		
+    </page>
+    
+    <!-- Web resources page -->
+    <page id="webresources" style="$theme$/html/webresources.css" alt-style="$theme$/swt/webresources.properties" style-id="page">
+		<anchor id="head-anchor"/>    
+        <title style-id="intro-header">$introTitle$</title> 
+        <group id="extra-group1" filteredFrom="swt"/>
+        <group id="navigation-links" filteredFrom="swt">
+            <group id="page-links" computed="true">
+            </group>
+            <group id="action-links">
+                <link url="http://org.eclipse.ui.intro/switchToLaunchBar" label="Workbench" id="workbench" style-id="$high-contrast$">
+                    <text>Go to the workbench</text>
+                </link>
+            </group>
+        </group>
+        <group id="page-content">
+            <group id="content-header" label="Web Resources" filteredFrom="swt">
+            </group>
+            <text style-id="page-title" id="page-title" filteredFrom="html">Web Resources</text>
+            <text style-id="page-description" id="page-description">$introDescription-webresources$</text>			
+ 			<group id="top-left" computed="true"/>
+			<group id="top-right" computed="true"/>
+			<group id="content-divider" filteredFrom="swt"/>			
+			<group id="bottom-left" computed="true"/>
+			<group id="bottom-right" computed="true"/>
+        </group>
+		<group id="extra-group2" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group3" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group4" filteredFrom="swt"><anchor id="anchor"/></group>		
+    </page>
+    
+    
+    <!-- Migrate page -->
+    <page id="migrate" style="$theme$/html/migrate.css" alt-style="$theme$/swt/migrate.properties" style-id="page">
+		<anchor id="head-anchor"/>    
+        <title style-id="intro-header">$introTitle$</title> 
+        <group id="extra-group1" filteredFrom="swt"/>
+        <group id="navigation-links" filteredFrom="swt">
+            <group id="page-links" computed="true">
+            </group>
+            <group id="action-links">
+                <link url="http://org.eclipse.ui.intro/switchToLaunchBar" label="Workbench" id="workbench" style-id="$high-contrast$">
+                    <text>Go to the workbench</text>
+                </link>
+            </group>
+        </group>
+        <group id="page-content">
+            <group id="content-header" label="Migrate" filteredFrom="swt">
+            </group>
+            <text style-id="page-title" id="page-title" filteredFrom="html">Migrate</text>
+            <text style-id="page-description" id="page-description">$introDescription-migrate$</text>			
+ 			<group id="top-left" computed="true"/>
+			<group id="top-right" computed="true"/>
+			<group id="content-divider" filteredFrom="swt"/>			
+			<group id="bottom-left" computed="true"/>
+			<group id="bottom-right" computed="true"/>
+        </group>
+		<group id="extra-group2" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group3" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group4" filteredFrom="swt"><anchor id="anchor"/></group>		
+    </page>
+</introContent>
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/plugin.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/plugin.properties
new file mode 100644
index 0000000..c4efcb7
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/plugin.properties
@@ -0,0 +1,21 @@
+###############################################################################
+#  Copyright (c) 2000, 2009 IBM Corporation and others.
+#  All rights reserved. This program and the accompanying materials
+#  are made available under the terms of the Eclipse Public License v1.0
+#  which accompanies this distribution, and is available at
+#  http://www.eclipse.org/legal/epl-v10.html
+# 
+#  Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+# ==============================================
+# Universal Welcome plugin.xml properties file
+# ==============================================
+
+plugin_name = Universal Welcome
+provider_name = Eclipse.org
+
+theme.name.circles = Circles
+theme.name.purpleMesh = Purple Mesh (Classic Eclipse)
+theme.name.slate = Slate
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/plugin.xml b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/plugin.xml
new file mode 100644
index 0000000..e9f8e1d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/plugin.xml
@@ -0,0 +1,247 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.0"?>
+<!--
+    Copyright (c) 2005, 2010 IBM Corporation and others.
+    All rights reserved. This program and the accompanying materials
+    are made available under the terms of the Eclipse Public License v1.0
+    which accompanies this distribution, and is available at
+    http://www.eclipse.org/legal/epl-v10.html
+   
+    Contributors:
+         IBM Corporation - initial API and implementation
+ -->
+
+<plugin>
+
+    
+<!-- ========== Extension Points ================= -->
+<!-- =============================================================================== -->
+<!-- Extension point: org.eclipse.ui.intro.config                                    -->
+<!-- Extension-point for contributing a configuration to a Customizable Intro Part.  -->
+<!--                                                                                 -->
+<!-- =============================================================================== -->
+<!-- ================================================================================= -->
+<!-- Extension point: org.eclipse.ui.intro.configExtension                             -->
+<!-- Extension-point for contributing an extension to an existing intro configuration  -->
+<!--                                                                                   -->
+<!-- ================================================================================= -->
+   
+   <extension
+         point="org.eclipse.ui.intro">
+      <intro
+            class="org.eclipse.ui.intro.config.CustomizableIntroPart"
+            contentDetector="org.eclipse.ui.internal.intro.universal.contentdetect.ContentDetector"
+            icon="$nl$/icons/welcome16.gif"
+            id="org.eclipse.ui.intro.universal"/>
+   </extension>
+   <extension
+         point="org.eclipse.ui.intro.config">
+      <config
+            configurer="org.eclipse.ui.internal.intro.universal.UniversalIntroConfigurer"
+            content="$nl$/introContent.xml"
+            id="org.eclipse.ui.intro.universalConfig"
+            introId="org.eclipse.ui.intro.universal">
+         <presentation
+               home-page-id="root" standby-page-id="standby">
+            <implementation
+                  style="themes/shared/html/shared.css,$theme$/html/shared.css,$theme$/html/font-$fontStyle$.css,$theme$/html/$direction$.css"
+                  kind="html"
+                  os="win32,linux,macosx,solaris">
+            </implementation>
+            <implementation
+                  kind="swt">
+            </implementation>
+            <launchBar
+               	location="fastview" 
+            	bg="$launchbarBackground$"
+            	computed="true">
+            </launchBar>
+         </presentation>
+      </config>
+   </extension>
+   <extension
+         point="org.eclipse.ui.intro.configExtension">
+      <theme
+            id="org.eclipse.ui.intro.universal.circles"
+            name="%theme.name.circles"
+            path="$nl$/themes/circles"
+            previewImage="$nl$/themes/circles/preview.png"
+            scalable="true">
+            <property name="workbenchAsRootLink"
+            		value="true"/>
+            		<!--
+            <property name="launchbarBackground"
+            		value="#a1c2cb"/>
+            		-->
+            <property name="launchbarOverviewIcon"
+            		  value="$theme$graphics/launchbar/overview16.png"/>
+            <property name="launchbarFirststepsIcon"
+            		  value="$theme$graphics/launchbar/firststeps16.png"/>
+            <property name="launchbarTutorialsIcon"
+            		  value="$theme$graphics/launchbar/tutorials16.png"/>
+            <property name="launchbarSamplesIcon"
+            		  value="$theme$graphics/launchbar/samples16.png"/>
+            <property name="launchbarWhatsnewIcon"
+            		  value="$theme$graphics/launchbar/whatsnew16.png"/>
+            <property name="launchbarMigrateIcon"
+            		  value="$theme$graphics/launchbar/migrate16.png"/>
+            <property name="launchbarWebresourcesIcon"
+            		  value="$theme$graphics/launchbar/webresources16.png"/>
+
+            <property name="highContrast-overview"
+            		  value="$theme$graphics/icons/ctool/overview.png"/>
+            <property name="highContrast-firststeps"
+            		  value="$theme$graphics/icons/ctool/firststeps.png"/>
+            <property name="highContrast-tutorials"
+            		  value="$theme$graphics/icons/ctool/tutorials.png"/>
+            <property name="highContrast-samples"
+            		  value="$theme$graphics/icons/ctool/samples.png"/>
+            <property name="highContrast-whatsnew"
+            		  value="$theme$graphics/icons/ctool/whatsnew.png"/>
+            <property name="highContrast-webresources"
+            		  value="$theme$graphics/icons/ctool/webresources.png"/>
+            <property name="highContrast-migrate"
+            		  value="$theme$graphics/icons/ctool/migrate.png"/>    
+            <property name="highContrast-workbench"
+            		  value="$theme$graphics/icons/ctool/workbench.png"/>    
+            		  
+            <property name="highContrastNav-overview"
+            		  value="$theme$graphics/icons/ctool/ov_nav.png"/>
+            <property name="highContrastNav-firststeps"
+            		  value="$theme$graphics/icons/ctool/fs_nav.png"/>
+            <property name="highContrastNav-tutorials"
+            		  value="$theme$graphics/icons/ctool/tu_nav.png"/>
+            <property name="highContrastNav-samples"
+            		  value="$theme$graphics/icons/ctool/sa_nav.png"/>
+            <property name="highContrastNav-whatsnew"
+            		  value="$theme$graphics/icons/ctool/wn_nav.png"/>
+            <property name="highContrastNav-webresources"
+            		  value="$theme$graphics/icons/ctool/wr_nav.png"/>
+            <property name="highContrastNav-migrate"
+            		  value="$theme$graphics/icons/ctool/mi_nav.png"/> 
+            <property name="highContrastNav-workbench"
+            		  value="$theme$graphics/icons/ctool/wb_nav.png"/>
+      </theme>
+      <theme
+            id="org.eclipse.ui.intro.universal.purpleMesh"
+            name="%theme.name.purpleMesh"
+            path="$nl$/themes/purpleMesh"
+            previewImage="$nl$/themes/purpleMesh/preview.png"
+            scalable="true">
+            <property name="launchbarBackground"
+            		value="#c6c3e8"/>
+            <property name="capitalizeTitles"
+            		value="true"/>
+            <property name="launchbarOverviewIcon"
+            		  value="$theme$graphics/launchbar/overview.gif"/>
+            <property name="launchbarFirststepsIcon"
+            		  value="$theme$graphics/launchbar/firststeps16.png"/>
+            <property name="launchbarTutorialsIcon"
+            		  value="$theme$graphics/launchbar/tutorials.gif"/>
+            <property name="launchbarSamplesIcon"
+            		  value="$theme$graphics/launchbar/samples.gif"/>
+            <property name="launchbarWhatsnewIcon"
+            		  value="$theme$graphics/launchbar/whatsnew.gif"/>
+            <property name="launchbarMigrateIcon"
+            		  value="$theme$graphics/launchbar/migrate16.png"/>
+            <property name="launchbarWebresourcesIcon"
+            		  value="$theme$graphics/launchbar/webresources16.png"/>
+            		  
+            <property name="highContrast-overview"
+            		  value="$theme$graphics/icons/etool/overview72.gif"/>
+            <property name="highContrast-firststeps"
+            		  value="$theme$graphics/icons/etool/firsteps72.gif"/>
+            <property name="highContrast-tutorials"
+            		  value="$theme$graphics/icons/etool/tutorials72.gif"/>
+            <property name="highContrast-samples"
+            		  value="$theme$graphics/icons/etool/samples72.gif"/>
+            <property name="highContrast-whatsnew"
+            		  value="$theme$graphics/icons/etool/whatsnew72.gif"/>
+            <property name="highContrast-webresources"
+            		  value="$theme$graphics/icons/etool/webrsrc72.gif"/>
+            <property name="highContrast-migrate"
+            		  value="$theme$graphics/icons/etool/migrate72.gif"/>
+            <property name="highContrast-workbench"
+            		  value="$theme$graphics/icons/etool/wb48.gif"/> 
+            		     
+            <property name="highContrastNav-overview"
+            		  value="$theme$graphics/icons/etool/overview48.gif"/>
+            <property name="highContrastNav-firststeps"
+            		  value="$theme$graphics/icons/etool/firsteps48.gif"/>
+            <property name="highContrastNav-tutorials"
+            		  value="$theme$graphics/icons/etool/tutorials48.gif"/>
+            <property name="highContrastNav-samples"
+            		  value="$theme$graphics/icons/etool/samples48.gif"/>
+            <property name="highContrastNav-whatsnew"
+            		  value="$theme$graphics/icons/etool/whatsnew48.gif"/>
+            <property name="highContrastNav-webresources"
+            		  value="$theme$graphics/icons/etool/webrsrc48.gif"/>
+            <property name="highContrastNav-migrate"
+            		  value="$theme$graphics/icons/etool/migrate48.gif"/> 
+            <property name="highContrastNav-workbench"
+            		  value="$theme$graphics/icons/etool/wb48.gif"/>       
+      </theme> 
+      <theme
+            default="true"
+            id="org.eclipse.ui.intro.universal.slate"
+            name="%theme.name.slate"
+            path="$nl$/themes/slate"
+            previewImage="$nl$/themes/slate/preview.png"
+            scalable="true">
+            <property name="workbenchAsRootLink"
+            		value="true"/>
+            		<!--
+            <property name="launchbarBackground"
+            		value="#a1c2cb"/>
+            		-->
+            <property name="launchbarOverviewIcon"
+            		  value="$theme$graphics/launchbar/overview16.png"/>
+            <property name="launchbarFirststepsIcon"
+            		  value="$theme$graphics/launchbar/firststeps16.png"/>
+            <property name="launchbarTutorialsIcon"
+            		  value="$theme$graphics/launchbar/tutorials16.png"/>
+            <property name="launchbarSamplesIcon"
+            		  value="$theme$graphics/launchbar/samples16.png"/>
+            <property name="launchbarWhatsnewIcon"
+            		  value="$theme$graphics/launchbar/whatsnew16.png"/>
+            <property name="launchbarMigrateIcon"
+            		  value="$theme$graphics/launchbar/migrate16.png"/>
+            <property name="launchbarWebresourcesIcon"
+            		  value="$theme$graphics/launchbar/webresources16.png"/>
+
+            <property name="highContrast-overview"
+            		  value="$theme$graphics/icons/ctool/overview.png"/>
+            <property name="highContrast-firststeps"
+            		  value="$theme$graphics/icons/ctool/firststeps.png"/>
+            <property name="highContrast-tutorials"
+            		  value="$theme$graphics/icons/ctool/tutorials.png"/>
+            <property name="highContrast-samples"
+            		  value="$theme$graphics/icons/ctool/samples.png"/>
+            <property name="highContrast-whatsnew"
+            		  value="$theme$graphics/icons/ctool/whatsnew.png"/>
+            <property name="highContrast-webresources"
+            		  value="$theme$graphics/icons/ctool/webresources.png"/>
+            <property name="highContrast-migrate"
+            		  value="$theme$graphics/icons/ctool/migrate.png"/>    
+            <property name="highContrast-workbench"
+            		  value="$theme$graphics/icons/ctool/workbench.png"/>    
+            		  
+            <property name="highContrastNav-overview"
+            		  value="$theme$graphics/icons/ctool/ov_nav.png"/>
+            <property name="highContrastNav-firststeps"
+            		  value="$theme$graphics/icons/ctool/fs_nav.png"/>
+            <property name="highContrastNav-tutorials"
+            		  value="$theme$graphics/icons/ctool/tu_nav.png"/>
+            <property name="highContrastNav-samples"
+            		  value="$theme$graphics/icons/ctool/sa_nav.png"/>
+            <property name="highContrastNav-whatsnew"
+            		  value="$theme$graphics/icons/ctool/wn_nav.png"/>
+            <property name="highContrastNav-webresources"
+            		  value="$theme$graphics/icons/ctool/wr_nav.png"/>
+            <property name="highContrastNav-migrate"
+            		  value="$theme$graphics/icons/ctool/mi_nav.png"/> 
+            <property name="highContrastNav-workbench"
+            		  value="$theme$graphics/icons/ctool/wb_nav.png"/>
+      </theme>
+   </extension>
+</plugin>
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/fs_banner.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/fs_banner.jpg
new file mode 100644
index 0000000..5b6c738
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/fs_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/mi_banner.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/mi_banner.jpg
new file mode 100644
index 0000000..5fb63c5
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/mi_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/ov_banner.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/ov_banner.jpg
new file mode 100644
index 0000000..9b963cb
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/ov_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/sa_banner.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/sa_banner.jpg
new file mode 100644
index 0000000..3eff0a5
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/sa_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/tu_banner.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/tu_banner.jpg
new file mode 100644
index 0000000..cc6bae7
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/tu_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/wn_banner.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/wn_banner.jpg
new file mode 100644
index 0000000..ab13b22
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/wn_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/wr_banner.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/wr_banner.jpg
new file mode 100644
index 0000000..de17898
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/wr_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/arrow_rtl.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/arrow_rtl.gif
new file mode 100644
index 0000000..d7bb424
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/arrow_rtl.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/content_nav_bar.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/content_nav_bar.gif
new file mode 100644
index 0000000..86ebb16
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/content_nav_bar.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/cpt_bottomhov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/cpt_bottomhov.gif
new file mode 100644
index 0000000..13df2dc
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/cpt_bottomhov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/cpt_midhov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/cpt_midhov.gif
new file mode 100644
index 0000000..1467458
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/cpt_midhov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps.gif
new file mode 100644
index 0000000..f6dd773
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps.png
new file mode 100644
index 0000000..eccc757
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps_tophov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps_tophov.gif
new file mode 100644
index 0000000..9745892
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps_tophov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav.png
new file mode 100644
index 0000000..99eb592
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_32.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_32.gif
new file mode 100644
index 0000000..84885b5
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_64.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_64.gif
new file mode 100644
index 0000000..c410b0d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_64.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_hover.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_hover.gif
new file mode 100644
index 0000000..182ed76
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_hover.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav.png
new file mode 100644
index 0000000..5434708
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_32.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_32.gif
new file mode 100644
index 0000000..d49d950
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_64.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_64.gif
new file mode 100644
index 0000000..9bf4493
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_64.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_hover.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_hover.gif
new file mode 100644
index 0000000..257fd4b
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_hover.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate.gif
new file mode 100644
index 0000000..f082b35
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate.png
new file mode 100644
index 0000000..07fea1d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate_tophov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate_tophov.gif
new file mode 100644
index 0000000..5c95055
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate_tophov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/nav_midhov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/nav_midhov.gif
new file mode 100644
index 0000000..d2a082f
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/nav_midhov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/nav_rightedgehov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/nav_rightedgehov.gif
new file mode 100644
index 0000000..2f53c5c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/nav_rightedgehov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav.png
new file mode 100644
index 0000000..709f69a
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_32.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_32.gif
new file mode 100644
index 0000000..2ff3933
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_64.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_64.gif
new file mode 100644
index 0000000..7198903
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_64.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_hover.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_hover.gif
new file mode 100644
index 0000000..72dc200
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_hover.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_midhov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_midhov.gif
new file mode 100644
index 0000000..85e8183
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_midhov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_rightedgehov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_rightedgehov.gif
new file mode 100644
index 0000000..5d75a71
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_rightedgehov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview.gif
new file mode 100644
index 0000000..daed6c0
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview.png
new file mode 100644
index 0000000..a60034c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_bottomhov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_bottomhov.gif
new file mode 100644
index 0000000..255e924
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_bottomhov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_midhov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_midhov.gif
new file mode 100644
index 0000000..710d015
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_midhov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_tophov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_tophov.gif
new file mode 100644
index 0000000..af9144a
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_tophov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_bottomhov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_bottomhov.gif
new file mode 100644
index 0000000..cea4511
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_bottomhov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_midhov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_midhov.gif
new file mode 100644
index 0000000..30288f9
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_midhov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_midhov2.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_midhov2.gif
new file mode 100644
index 0000000..83f17fc
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_midhov2.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav.png
new file mode 100644
index 0000000..9871b72
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_32.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_32.gif
new file mode 100644
index 0000000..ffbe90e
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_64.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_64.gif
new file mode 100644
index 0000000..db4ffac
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_64.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_hover.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_hover.gif
new file mode 100644
index 0000000..6922f96
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_hover.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_onesample48.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_onesample48.gif
new file mode 100644
index 0000000..e65c123
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_onesample48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples.gif
new file mode 100644
index 0000000..622983c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples.png
new file mode 100644
index 0000000..cb3db1d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples_tophov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples_tophov.gif
new file mode 100644
index 0000000..ede103c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples_tophov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav.png
new file mode 100644
index 0000000..ce589ab
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_32.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_32.gif
new file mode 100644
index 0000000..77a3421
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_64.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_64.gif
new file mode 100644
index 0000000..45d2ff1
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_64.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_hover.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_hover.gif
new file mode 100644
index 0000000..c3e79ab
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_hover.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials.gif
new file mode 100644
index 0000000..aae93e5
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials.png
new file mode 100644
index 0000000..e40a823
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials_tophov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials_tophov.gif
new file mode 100644
index 0000000..dcb76e5
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials_tophov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav.png
new file mode 100644
index 0000000..0621c3c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav_32.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav_32.gif
new file mode 100644
index 0000000..8161cfc
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav_hover.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav_hover.gif
new file mode 100644
index 0000000..96afba7
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav_hover.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources.gif
new file mode 100644
index 0000000..230a502
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources.png
new file mode 100644
index 0000000..1a876dc
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources_tophov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources_tophov.gif
new file mode 100644
index 0000000..ea8713c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources_tophov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew.gif
new file mode 100644
index 0000000..29dfe28
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew.png
new file mode 100644
index 0000000..a10dd3d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew_tophov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew_tophov.gif
new file mode 100644
index 0000000..bfd58dc
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew_tophov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav.png
new file mode 100644
index 0000000..47ecb7c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_32.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_32.gif
new file mode 100644
index 0000000..ce9c743
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_64.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_64.gif
new file mode 100644
index 0000000..6a545cc
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_64.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_hover.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_hover.gif
new file mode 100644
index 0000000..a2eb9a2
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_hover.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench.gif
new file mode 100644
index 0000000..ea3d603
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench.png
new file mode 100644
index 0000000..868f3ab
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_bottomhov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_bottomhov.gif
new file mode 100644
index 0000000..d347a1d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_bottomhov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_midhov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_midhov.gif
new file mode 100644
index 0000000..ee5d6af
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_midhov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_tophov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_tophov.gif
new file mode 100644
index 0000000..443a433
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_tophov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav.png
new file mode 100644
index 0000000..00d3056
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_32.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_32.gif
new file mode 100644
index 0000000..a741e2f
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_64.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_64.gif
new file mode 100644
index 0000000..fab4a28
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_64.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_hover.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_hover.gif
new file mode 100644
index 0000000..7908508
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_hover.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/obj48/new_obj.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/obj48/new_obj.gif
new file mode 100644
index 0000000..f46b81b
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/obj48/new_obj.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/obj48/newhov_obj.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/obj48/newhov_obj.gif
new file mode 100644
index 0000000..593e63b
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/obj48/newhov_obj.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/firststeps16.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/firststeps16.png
new file mode 100644
index 0000000..4c15c82
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/firststeps16.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/migrate16.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/migrate16.png
new file mode 100644
index 0000000..3fc8414
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/migrate16.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/overview16.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/overview16.png
new file mode 100644
index 0000000..b2e977f
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/overview16.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/samples16.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/samples16.png
new file mode 100644
index 0000000..fdff5dd
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/samples16.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/tutorials16.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/tutorials16.png
new file mode 100644
index 0000000..f2d688f
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/tutorials16.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/webresources16.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/webresources16.png
new file mode 100644
index 0000000..b847caa
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/webresources16.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/whatsnew16.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/whatsnew16.png
new file mode 100644
index 0000000..5294b17
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/whatsnew16.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/rootpage/welcomebckgrd.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/rootpage/welcomebckgrd.jpg
new file mode 100644
index 0000000..12a3c94
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/rootpage/welcomebckgrd.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/fs_standby.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/fs_standby.gif
new file mode 100644
index 0000000..aac6d6b
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/fs_standby.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/fs_standbyhov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/fs_standbyhov.gif
new file mode 100644
index 0000000..eded4ff
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/fs_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/mi_standby.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/mi_standby.gif
new file mode 100644
index 0000000..34b8963
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/mi_standby.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/mi_standbyhov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/mi_standbyhov.gif
new file mode 100644
index 0000000..08c4479
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/mi_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/ov_standby.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/ov_standby.gif
new file mode 100644
index 0000000..bfcf7b2
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/ov_standby.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/ov_standbyhov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/ov_standbyhov.gif
new file mode 100644
index 0000000..11e7892
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/ov_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/sa_standby.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/sa_standby.gif
new file mode 100644
index 0000000..a18a047
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/sa_standby.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/sa_standbyhov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/sa_standbyhov.gif
new file mode 100644
index 0000000..2063d8a
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/sa_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/tu_standby.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/tu_standby.gif
new file mode 100644
index 0000000..75baabf
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/tu_standby.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/tu_standbyhov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/tu_standbyhov.gif
new file mode 100644
index 0000000..82b758f
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/tu_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wb_standby.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wb_standby.gif
new file mode 100644
index 0000000..5037784
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wb_standby.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wb_standbyhov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wb_standbyhov.gif
new file mode 100644
index 0000000..d3be575
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wb_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wn_standby.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wn_standby.gif
new file mode 100644
index 0000000..77c7912
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wn_standby.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wn_standbyhov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wn_standbyhov.gif
new file mode 100644
index 0000000..2867f15
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wn_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wr_standby.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wr_standby.gif
new file mode 100644
index 0000000..cb4fa47
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wr_standby.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wr_standbyhov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wr_standbyhov.gif
new file mode 100644
index 0000000..00b4231
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wr_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/firststeps.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/firststeps.css
new file mode 100644
index 0000000..15f2dfc
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/firststeps.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#firststeps img, 
+#navigation-links a#firststeps:hover img,
+#navigation-links a#firststeps:focus img,
+#navigation-links a#firststeps:active img {
+	background-image : url(../graphics/icons/ctool/fs_nav_64.gif); 
+	top : 2px;
+	left : -3px;
+}
+
+#navigation-links {
+	background-image: url(../graphics/contentpage/fs_banner.jpg);
+}
+
+#navigation-links a:hover#firststeps .link-label,
+#navigation-links a:focus#firststeps .link-label,
+#navigation-links a:active#firststeps .link-label {
+	display : none;
+}
+
+#navigation-links a:hover#firststeps,
+#navigation-links a:focus#firststeps,
+#navigation-links a:active#firststeps {
+	background-image : none;
+}
+
+#navigation-links a:hover#firststeps .link-extra-div,
+#navigation-links a:focus#firststeps .link-extra-div,
+#navigation-links a:active#firststeps .link-extra-div {
+	display: none;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/font-absolute.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/font-absolute.css
new file mode 100644
index 0000000..e610e26
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/font-absolute.css
@@ -0,0 +1,118 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+	font-size : 10pt;
+}
+
+/*
+ * We are not using titles in this theme.
+ */
+.intro-header {
+	display : none;
+}
+
+h2 {
+	font-size : 13pt;
+}
+
+/* For regular div labels */
+H4 .div-label {
+	font-size: 10pt; 
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+	font-size: 23pt; 
+}
+
+
+/* Page description if the page has it. */
+.page-description {
+	font-size: 10pt; 
+}
+
+/* General link labels */
+a .link-label {
+	font-size : 10pt;
+}
+
+/* Floating link labels for navigation links */
+#navigation-links a .link-label {
+	font-size : 8pt;
+}
+
+/* Text in links. */
+a .text {
+	font-size : 8pt;
+}
+
+p .group-description {
+	font-size : 10pt;
+}
+
+.content-link .link-label {
+	font-size: 11pt; 
+}
+
+.content-link .text {
+	font-size: 10pt;
+}
+
+.categoryContentnav {
+	font-size:10pt; 
+}
+
+.contentpgNavhover {
+	font-size: 8pt; 
+}
+
+.topicList {
+	font-size:8pt; 
+}
+
+/* 
+ * Root page settings
+ */
+#root .intro-header H1 {
+	font-size : 18pt;
+}
+
+/* Link label properties */
+#root #page-links a .link-label {
+	font-size : 12.5pt;
+}
+
+/* Link description properties */
+#root #page-links a p .text {
+	font-size : 11pt;
+}
+
+#root #page-links a:hover .link-extra-div {
+	font-size : 13pt;
+}
+
+/*
+ * Standby page settings
+ */
+
+#standby .intro-header H1 {
+	font-size : 15pt;
+}
+
+#standby #page-links a .link-label, #action-links a .link-label {
+	font-size : 10pt;
+}
+
+#standby #page-links a p .text, #action-links a p .text {
+	font-size : 10pt;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/font-relative.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/font-relative.css
new file mode 100644
index 0000000..af2383e
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/font-relative.css
@@ -0,0 +1,126 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * Font sizes for the circles theme
+ */
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+	font-size : 100%;
+}
+
+h2 {
+	font-size : 120%;
+}
+
+/* For regular div labels */
+H4 .div-label {
+	font-size: 120%; 
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+	font-size: 240%; 
+}
+
+
+/* Page description if the page has it. */
+.page-description {
+	font-size: 100%; 
+}
+
+/* General link labels */
+a .link-label {
+	//font-size : 10pt;
+}
+
+/* Floating link labels for navigation links */
+#navigation-links a .link-label {
+	font-size : 8pt;
+}
+
+/* Text in links. */
+a .text {
+	font-size : 90%;
+}
+
+p .group-description {
+	font-size : 100%;
+}
+
+.content-link .link-label {
+	font-size: 120%; 
+}
+
+.content-link .text {
+	font-size: 100%;
+}
+
+.categoryContentnav {
+	//font-size:10pt; 
+}
+
+.contentpgNavhover {
+	font-size: 8pt; 
+}
+
+.topicList, .rss-feed-link {
+	font-size:90%; 
+}
+
+/* Link label properties */
+#root #page-links a .link-label {
+	font-size : 110%;
+}
+
+#root #page-links a:active .link-label,
+#root #page-links a:focus .link-label,
+#root #page-links a:hover .link-label {
+	font-size : 12.5pt;
+}
+
+/* Link description properties */
+#root #page-links a p .text {
+	font-size : 11pt;
+}
+
+#root #page-links a:hover .link-extra-div {
+	font-size : 13pt;
+}
+
+#root .intro-header {
+    display : inline;
+}
+
+#root .intro-header h1  {
+    color : white;
+    //padding-top : 10px;
+    margin-top : 10px;
+    margin-left : 20px;
+    font-size : 150%;
+}
+
+/*
+ * Standby page settings
+ */
+
+#standby .intro-header H1 {
+	font-size : 150%;
+}
+
+#standby #page-links a .link-label, #standby #action-links a .link-label {
+	font-size : 100%;
+}
+
+#standby #page-links a p .text, #standby #action-links a p .text {
+	font-size : 100%;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/ltr.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/ltr.css
new file mode 100644
index 0000000..57586c8
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/ltr.css
@@ -0,0 +1,19 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* 
+ * This file contains styles that are specific to left to right display
+ */
+ 
+body {
+    direction: ltr;
+}
+ 
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/migrate.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/migrate.css
new file mode 100644
index 0000000..cd34954
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/migrate.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#migrate img, 
+#navigation-links a#migrate:hover img,
+#navigation-links a#migrate:focus img,
+#navigation-links a#migrate:active img {
+	background-image : url(../graphics/icons/ctool/mi_nav_64.gif); 
+	top : 2px;
+	left : -3px;
+}
+
+#navigation-links {
+	background-image: url(../graphics/contentpage/mi_banner.jpg);
+}
+
+#navigation-links a:hover#migrate .link-label,
+#navigation-links a:focus#migrate .link-label,
+#navigation-links a:active#migrate .link-label {
+	display : none;
+}
+
+#navigation-links a:hover#migrate,
+#navigation-links a:focus#migrate,
+#navigation-links a:active#migrate {
+	background-image : none;
+}
+
+#navigation-links a:hover#migrate .link-extra-div,
+#navigation-links a:focus#migrate .link-extra-div,
+#navigation-links a:active#migrate .link-extra-div {
+	background-image : none;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/overview.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/overview.css
new file mode 100644
index 0000000..7bc18ce
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/overview.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#overview img, 
+#navigation-links a#overview:hover img,
+#navigation-links a#overview:focus img,
+#navigation-links a#overview:active img {
+	background-image : url(../graphics/icons/ctool/ov_nav_64.gif);
+	top : 2px; 
+	left : -3px;
+}
+
+#navigation-links {
+	background-image: url(../graphics/contentpage/ov_banner.jpg);
+}
+
+#navigation-links a:hover#overview .link-label,
+#navigation-links a:focus#overview .link-label,
+#navigation-links a:active#overview .link-label {
+	display : none;
+}
+
+#navigation-links a:hover#overview,
+#navigation-links a:focus#overview,
+#navigation-links a:active#overview {
+	background-image : none;
+}
+
+#navigation-links a:hover#overview .link-extra-div,
+#navigation-links a:focus#overview .link-extra-div,
+#navigation-links a:active#overview .link-extra-div {
+	display: none;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/root.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/root.css
new file mode 100644
index 0000000..8697080
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/root.css
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/rtl.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/rtl.css
new file mode 100644
index 0000000..b444c37
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/rtl.css
@@ -0,0 +1,83 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* 
+ * This file contains styles that are specific to right to left display
+ */
+
+
+table {
+    direction: rtl;
+}
+
+#page-content p { 
+	text-align : right; 
+}
+
+#page-content #content-header H4, .page-description {
+	text-align : right;
+}
+
+#page-content table tr td a > .link-label {
+    left:0px;
+}
+
+#page-content * td a .link-label { 
+    display:block;
+    left:0px;
+    margin-right:0px;
+    position:static;
+    top:0px;
+}
+
+#page-content * td a  .text { 
+    display:block;
+    left:0px;
+    margin-right:0px;
+    position:static;
+    top:0px;
+}
+
+.content-group {
+	text-align: right;
+}
+
+.intro-header span {
+    margin-right : 45px;
+    padding-right : 45px;
+}
+
+div div#rss-news {  
+   position:static;
+   margin-left:0px;
+   margin-bottom: 0px;
+   margin-top: 10px;
+   top : 0px;
+   margin-right : 30px;
+}
+
+div ul.news-list {
+	list-style-image: url("../graphics/icons/ctool/arrow_rtl.gif");
+	margin-left: 0px;
+	padding-right: 10px;
+	margin-right: 10px;
+}
+
+/* The 'closed' toggle image part of the folding section. */
+#page-content .section-title-link .section-toggle-image-closed {
+	background-image : url(../graphics/icons/ctool/widget_closed_rtl.gif);
+}
+
+#page-content .section-title-link:hover .section-toggle-image-closed,
+#page-content .section-title-link:active .section-toggle-image-closed {
+	background-image : url(../graphics/icons/ctool/widget_closed_hov_rtl.gif);
+}
+
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/samples.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/samples.css
new file mode 100644
index 0000000..5437466
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/samples.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#samples img, 
+#navigation-links a#samples:hover img,
+#navigation-links a#samples:focus img,
+#navigation-links a#samples:active img {
+	background-image : url(../graphics/icons/ctool/sa_nav_64.gif); 
+	top : 2px; 
+	left : -3px;
+}
+
+#navigation-links {
+	background-image: url(../graphics/contentpage/sa_banner.jpg);
+}
+
+#navigation-links a:hover#samples .link-label,
+#navigation-links a:focus#samples .link-label,
+#navigation-links a:active#samples .link-label {
+	display : none;
+}
+
+#navigation-links a:hover#samples,
+#navigation-links a:focus#samples,
+#navigation-links a:active#samples {
+	background-image : none;
+}
+
+#navigation-links a:hover#samples .link-extra-div,
+#navigation-links a:focus#samples .link-extra-div,
+#navigation-links a:active#samples .link-extra-div {
+	background-image : none;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/shared.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/shared.css
new file mode 100644
index 0000000..fbaf550
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/shared.css
@@ -0,0 +1,647 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* 
+ * Set up general fonts, sizes and colors 
+ */
+body { font-family : Arial, sans-serif; }
+
+H1, H2, H3, H4, p, a { color : #4D4D4D; }
+
+/*
+ * We are not using titles in this theme.
+ */
+.intro-header {
+	display : none;
+}
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+	display : inline;
+}
+
+h2 {
+	font-weight : normal;
+	color : #7B8694;
+}
+
+/* For regular div labels */
+H4 .div-label {
+	font-family: Verdana, Arial, Helvetica; 
+	font-weight: bold; 
+	color: #4A4D4A; 
+	line-height:1.3;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+	font-family: Verdana, Arial, Helvetica;
+	color:#333333; 
+	font-weight: normal; 
+	letter-spacing:-0.03em;
+	margin-left: 68px;
+	float : none;
+	clear : both;
+}
+
+/* For separators */
+HR {
+	width: 90%;
+	align: left;
+	height : 1px;
+	color :  #dfdfe4;
+}
+
+/* Page description if the page has it. */
+.page-description {
+	display: block;
+	font-family: Verdana, Arial, Helvetica; 
+	line-height:1.3;
+	float : none;
+	clear : both;
+	margin-left: 70px;
+}
+
+a {
+	font-weight : bold;
+	text-decoration : none;
+	color : #4D4D4D;
+}
+
+/* General link labels */
+a .link-label {
+	font-weight : normal;
+}
+
+/* Floating link labels for navigation links */
+#navigation-links a .link-label {
+	font-weight : bold;
+}
+
+#navigation-links a.high-contrast .link-label {
+	display : none !important;
+}
+
+/* Text in links. */
+a .text {
+	font-weight : normal;
+}
+
+p .group-description {
+	font-family: Verdana, Arial, Helvetica; 
+	font-weight : normal;
+}
+
+/* Hide the extra div in links by default. */
+.link-extra-div {
+	display : none;
+}
+
+/* 
+ * Set up other general properties like padding/margins
+ */
+html, body { width : 100%; height : 100%; }
+
+html, body, div, h1, h4, p, a { margin : 0px; padding : 0px; }
+
+/* 
+ * Page header - adding extra padding at the bottom to compensate
+ * for navigation background/header overlap.
+ */
+#page-content #content-header {
+	padding-bottom : 22px;
+}
+
+/* For regular div labels */
+#page-content div H4 {
+	padding : 10px;
+	padding-bottom : 0px;
+}
+
+/* For the main page content's div label */
+#page-content #content-header H4 {
+	padding-bottom : 10px;
+	padding-top : 0px;
+}
+
+/* special case for Mozilla's main content-header label.
+   Mozilla 1.4 needs more room at the top */
+#page-content > #content-header H4 { padding-top : 10px; }
+
+/* Needed in IE to get shift+tab to show the active image properly */
+a:active {
+	border : solid 0px;
+}
+
+a img {
+	border-width : 0;
+	background-repeat : no-repeat;
+}
+
+/*
+ * to get scrollbars working in both IE and Mozilla
+ */
+
+/*
+ * to get scrollbars working in both IE and Mozilla
+ */
+html,body { overflow: auto; }
+html>body { overflow: visible; }
+
+/*
+ * Set up the body, decorative background, and navigation for the content 
+ * pages. 
+ * Note: the root page handles its own background and navigation; these
+ * settings primarily apply to the content pages
+ */
+body {
+	background-color : #FFFFFF;
+	background-repeat : no-repeat;
+	background-position : bottom right;
+}
+
+/*
+ * Hide the general-purpose groups - not using them in this theme.
+ */
+#extra-group1,
+#extra-group2,
+#extra-group3,
+#extra-group4,
+#extra-group5 {
+	display : none;
+}
+
+/*
+ * Dimensions.
+ */
+body, .page {
+	/* since IE doesn't support min-width, try expression */
+	height : 100%;
+}
+
+.page {
+	background-image : url(../graphics/contentpage/background.jpg);
+	background-repeat : repeat-x;
+	background-position : top left;
+	
+	min-width : 770px;
+	width:expression(document.body.clientWidth < 770? "770px": "auto" );
+    min-height : 425px;
+	height : expression(document.body.clientHeight < 425? "425px": "100%" );
+}
+
+#page-content {
+	background-repeat : no-repeat;
+	background-position : bottom right;
+	height : 65%;
+}
+
+/* 
+ * Lay out the navigation links 
+ * (Root page does something similar for its navigation)
+ */
+#navigation-links {
+	position : relative;
+	left : 0px;
+	top : 0px;
+	padding-left: 12px;
+	height : 118px;
+	width : 100%;
+}
+
+.page > #navigation-links {
+	width: 98.1%;
+}
+
+#navigation-links a {
+	text-align : left;
+	width : auto;
+	height : 64px;
+}
+
+/*
+ * Navigation links have a mixin style 'nav_link<n>' where <n> goes from
+ * 1 to N. This allows us to position these fixed link slots while
+ * not hand-coding the actual link IDs because they can be turned off
+ * by users or products via preferences.
+ */
+
+#navigation-links a.nav_link1 {
+	position: absolute;
+	left : 12px;
+}
+
+#navigation-links a.nav_link2 {
+	position : absolute;
+	left : 76px;
+}
+
+#navigation-links a.nav_link3 {
+	position : absolute;
+	left : 140px;
+}
+
+#navigation-links a.nav_link4 {
+	position : absolute;
+	left : 204px;
+}
+
+#navigation-links a.nav_link5 {
+	position : absolute;
+	left : 268px;
+}
+
+#navigation-links a.nav_link6 {
+	position : absolute;
+	left : 332px;
+}
+
+#navigation-links a.nav_link7 {
+	position: absolute;
+	left : 396px;
+}
+
+#navigation-links a img {
+	position : relative;
+	height : 64px;
+	width : 64px;
+	vertical-align : center;
+	horizontal-align : center;
+	top : 10px;
+	left : 9px;
+}
+
+#navigation-links a.high-contrast img {
+	height: 32px;
+	width: 32px;
+	top: 5px !important;
+	left: 0px !important;
+}
+
+/*
+ * Adjust image position for hover version.
+ */
+
+#navigation-links a:hover img,
+#navigation-links a:focus img,
+#navigation-links a:active img {
+	top : 2px;
+	left : 0px;
+}
+
+/*
+ * Navigation link label text is normally hidden. Workaround to produce the
+ * same effect as display: none while still allowing screenreaders to
+ * speak it.
+ */
+#navigation-links a .link-label { 
+    display : none;
+}
+
+/*
+ * Not showing description for navigation links.
+ */
+#navigation-links a .text { display : none; }
+
+#navigation-links a:hover,
+#navigation-links a:focus,
+#navigation-links a:active {
+	border-right : 0px;
+	background-image: url(../graphics/icons/ctool/nav_midhov.gif);
+	background-repeat: repeat-x;
+	background-position: 0px 2px;
+	z-index: 20;
+}
+
+#navigation-links a:hover .link-label,
+#navigation-links a:focus .link-label,
+#navigation-links a:active .link-label {
+	display : inline;
+	clear : both;
+	float : left;
+	text-align: right;
+	position : relative;
+	padding-left: 7px;
+	padding-top: 7px;
+	padding-right: 7px;
+	margin-right: auto;
+	top : -35px;
+	white-space: nowrap;
+	height : 32px;
+	left: auto;
+	width: auto;
+}
+
+/*
+ * Add the right edge by using the extra div generated for links
+ * and set the right edge image as the background.
+ */
+
+#navigation-links a:hover .link-extra-div,
+#navigation-links a:focus .link-extra-div,
+#navigation-links a:active .link-extra-div {
+	display: block;
+	position: absolute;
+	right : -2px;
+	top : 2px;
+	width : 2px;
+	height : 64px;
+	background-image: url(../graphics/icons/ctool/nav_rightedgehov.gif);
+	background-repeat: no-repeat;
+}
+
+/* properties for each of the navigation-links  */
+#navigation-links a#overview img { 
+	background-image : url(../graphics/icons/ctool/ov_nav_32.gif); 
+}
+#navigation-links a#overview:hover img,
+#navigation-links a#overview:focus img,
+#navigation-links a#overview:active img { 
+	background-image : url(../graphics/icons/ctool/ov_nav_hover.gif); 
+}
+
+#navigation-links a#firststeps img { 
+	background-image : url(../graphics/icons/ctool/fs_nav_32.gif); 
+}
+#navigation-links a#firststeps:hover img,
+#navigation-links a#firststeps:focus img,
+#navigation-links a#firststeps:active img { 
+	background-image : url(../graphics/icons/ctool/fs_nav_hover.gif); }
+
+#navigation-links a#tutorials img { 
+	background-image : url(../graphics/icons/ctool/tu_nav_32.gif); 
+}
+#navigation-links a#tutorials:hover img,
+#navigation-links a#tutorials:active img,
+#navigation-links a#tutorials:focus img { 
+	background-image : url(../graphics/icons/ctool/tu_nav_hover.gif); 
+}
+
+#navigation-links a#samples img { 
+	background-image : url(../graphics/icons/ctool/sa_nav_32.gif); 
+}
+#navigation-links a#samples:hover img,
+#navigation-links a#samples:active img,
+#navigation-links a#samples:focus img { 
+	background-image : url(../graphics/icons/ctool/sa_nav_hover.gif); 	
+	left: -1px;
+}
+
+#navigation-links a#whatsnew img { 
+	background-image : url(../graphics/icons/ctool/wn_nav_32.gif); 
+}
+#navigation-links a#whatsnew:hover img,
+#navigation-links a#whatsnew:focus img,
+#navigation-links a#whatsnew:active img { 
+	background-image : url(../graphics/icons/ctool/wn_nav_hover.gif); 
+	left: -1px;
+}
+
+#navigation-links a#migrate img { 
+	background-image : url(../graphics/icons/ctool/mi_nav_32.gif); 
+}
+#navigation-links a#migrate:hover img,
+#navigation-links a#migrate:focus img,
+#navigation-links a#migrate:active img { 
+	background-image : url(../graphics/icons/ctool/mi_nav_hover.gif); 
+	left: -1px;
+}
+
+#navigation-links a#webresources img { 
+	background-image : url(../graphics/icons/ctool/wr_nav_32.gif); 
+}
+#navigation-links a#webresources:hover img,
+#navigation-links a#webresources:focus img,
+#navigation-links a#webresources:active img { 
+	background-image : url(../graphics/icons/ctool/wr_nav_hover.gif); 
+	left: -1px;
+}
+
+#navigation-links a#workbench {
+	position : absolute;  
+	left : 494px; 
+	text-align : left;
+}
+#navigation-links a#workbench .text { display : none; }
+
+#navigation-links a.high-contrast#workbench:hover img,
+#navigation-links a.high-contrast#workbench:focus img,
+#navigation-links a.high-contrast#workbench:active img,
+#navigation-links a#workbench img { 
+	background-image : url(../graphics/icons/ctool/wb_nav_32.gif); 
+	width : 32px; 
+	height : 32px;
+}
+
+#navigation-links a#workbench:hover img,
+#navigation-links a#workbench:focus img,
+#navigation-links a#workbench:active img { 
+	background-image : url(../graphics/icons/ctool/wb_nav_hover.gif); 
+	width : 51px;
+	height : 64px;
+	left: -1px;
+}
+
+#action-links a.high-contrast img,
+#action-links a.high-contrast:hover img,
+#action-links a.high-contrast:focus img,
+#action-links a.high-contrast:active img {
+	display: none !important;
+}
+
+#action-links a.high-contrast .link-label {
+	display: none;
+}
+
+#page-links a.high-contrast:focus .link-label,
+#page-links a.high-contrast:active .link-label {
+	display: block !important;
+	text-decoration: underline;
+	top : 5px;
+}
+
+/* 
+ * Lay out the page title and description 
+ */
+h1, p { margin-left : 10px; } /* required in mozilla so the page description is properly indented */
+
+/* position the page content so that the page title overlays the bottom
+ * of the background image, but make sure the content is always on top 
+ * (using z-index) */
+
+#page-content {
+	float : none;
+	clear : both;
+	text-align : center;
+	position : relative;
+	top : -50px;
+	margin-bottom: -50px;
+	z-index : 10;
+}
+
+#page-content p { 
+	padding-bottom : 15px; 
+	text-align : left; 
+	float : none;
+	clear : both;
+}
+
+/* Page content quadrants. Page content is placed in four quadrants.
+ * Upper pair is separated from the bottom pair with a divider
+ * to ensure bottom pair is aligned even with the uneven content
+ * in the upper pair.
+ */
+
+#page-content #top-left {
+  border: none; float: left; margin: 0px; padding: 0px; width: 49%;
+  clear: left;
+}
+#page-content #top-right {
+  border: none; float: right; margin: 0px; padding: 0px; width: 49%;
+  clear: right;
+}
+/* top-bottom divider - runs the entire width to ensure
+ * bottom boxes start at the same y
+ */
+#page-content #content-divider {
+  border: none; float: none; margin: 0; padding: 0px; width: 100%;
+  clear: both;
+}
+
+#page-content #bottom-left {
+  border: none; float: left; margin: 0px; padding: 0px; width: 49%;
+  clear: left;
+}
+#page-content #bottom-right {
+  border: none; float: right; margin: 0px; padding: 0px; width: 49%;
+  clear: right;
+}
+
+#page-content #content-header H4, .page-description {
+	text-align : left;
+	margin-right : 10px;
+	float : none;
+	clear : both;
+}
+
+#page-content * > a {
+	vertical-align : middle; 
+}
+
+#page-content * a img {
+	height : 57px;
+	width : 57px;
+	vertical-align : middle;
+}	
+
+#page-content * a .link-label {
+	display : block;
+	position : relative;
+	top : -50px;
+	left : 60px;
+	margin-right: 60px;
+}
+
+#page-content * a > .link-label { left: 65px; }
+
+#page-content * a p .text {
+	display : block;
+	position : relative;
+	top : -45px;
+	margin-bottom: -25px;
+	left : 53px;
+	margin-right: 53px;
+}
+
+#page-content * a p > .text { left: 58px; }
+
+#page-content * a:hover { border-right : 5px; }
+
+/* The following rules are for extensions in all pages. Extensions should be placed in
+ * groups with the style 'content-group' and contain links with the style 'content-link'.
+ * Group is important so that importance mixin style can be applied to the group that
+ * uses block display. We need to see a solid rectangle around the extension, not 
+ * a tight polygon around the link perimeter.
+ */
+
+.content-group {
+	margin-left: 10px;
+	margin-right: 10px;
+	padding-left: 10px;
+	padding-right: 10px;
+	float : none;
+	clear : both;
+	text-align: left;
+}
+
+.content-link .link-label {
+	font-family: Verdana, Arial, Helvetica; 
+	font-weight: bold; 
+	line-height:1.5;
+	color: #00507C;
+}
+
+.content-link:hover .link-label {
+	color: #69c; 
+	text-decoration : underline;
+}
+
+.content-link .text {
+	font-family: Verdana, Arial, Helvetica; 
+	line-height: 1.3;
+}
+
+.categoryContentnav {
+	font-family: Verdana, Arial, Helvetica; 
+	font-weight: bold; 
+	color: #4A4D4A; 
+	line-height:1.3;
+}
+
+.contentpgNavhover {
+	font-family: Verdana, Arial, Helvetica; 
+	font-weight: bold; 
+	color: #000; 
+}
+
+.topicList {
+	font-family: Verdana, Arial, Helvetica; 
+	line-height:1.75;
+	color: #00507C;
+}
+
+.topicList:hover {
+	color: #69c;
+}
+
+.rss-feed-link a {
+	font-family: Verdana, Arial, Helvetica; 
+	color: #00507C;
+}
+
+/*
+ * This part is for hosting embedded document inside
+ * the content area.
+ */
+
+iframe {
+	position:relative;
+	top:16px;
+	width:100%;
+	height:100%;
+	padding-left:10px;
+}
+
+/* mozilla scrollbar appearing off page fix */
+#page-content > iframe {
+	width: 98%;
+	padding-left: 2%;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/standby.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/standby.css
new file mode 100644
index 0000000..8a7735e
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/standby.css
@@ -0,0 +1,159 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+
+/*
+ * We will not use the general-purpose group1 used in
+ * other pages for a curve image.
+ */
+
+#extra-group1 {
+	display : none;
+}
+
+
+#page-links a .link-label, #action-links a .link-label {
+	font-weight : 600;
+	color : #E5E5E5;
+}
+
+#page-links a p .text, #action-links a p .text {
+	font-weight : 500;
+	color : #E5E5E5;
+}
+
+/*
+ * Set up the content for the standby page.
+ */
+body {
+	min-width : 230px;
+	/* since IE doesn't support min-width, use expression */
+	width:expression(document.body.clientWidth < 230? "230px": "auto" );
+	background-repeat : no-repeat;
+	background-position : top left;
+	background-color : #6d7e85;
+}
+
+.page {
+	background-repeat : no-repeat;
+	background-position : bottom left;
+	min-width : 230px;
+	/* since IE doesn't support min-width, use expression */
+	width:expression(document.body.clientWidth < 230? "230px": "auto" );
+ 	min-height : 610px;
+	height : 100%;
+	height : expression(document.body.clientHeight < 450? "450px": "100%" );
+}
+
+/* 
+ * Set up the navigation bar.  It should be centered in the middle
+ * of the page
+ */
+
+#links-background { 
+	width : 100%; 
+ 	margin-top : 10%; 
+	margin-bottom : auto;
+	text-align : center;
+}
+
+#page-links a {
+	display : block;
+	width : 220px;
+	text-align : left; 
+	margin-left : auto;
+	margin-right : auto;
+	margin-top : 0px;
+	vertical-align : top;
+}
+
+#page-links a span, #page-links a p {
+	display : block;
+	width : 160px;
+	margin : 0px;
+	padding : 0px;
+}
+
+#page-links a .link-label {
+	position : relative;
+	left : 60px;
+	top : -50px;
+}
+
+#page-links a p .text {
+	position : relative;
+	left : 60px;
+	top : -50px;
+}
+
+#page-links a img {
+	height : 52px;
+	width : 52px;
+	vertical-align : middle;
+}
+
+#page-links a:hover,
+#page-links a:focus,
+#page-links a:active  { border : 0px; }
+
+#page-links a:hover p,
+#page-links a:focus p,
+#page-links a:active p  { margin : 0px; padding : 0px; }
+
+/* properties for each of the page-links  */
+
+#page-links a .background-image {
+	display: none;
+}
+
+#page-links a .link-extra-div {
+	display :none;
+}
+
+a#overview img { background-image : url(../graphics/standby/ov_standby.gif); }
+a#overview:hover img,
+a#overview:focus img,
+a#overview:active img { background-image : url(../graphics/standby/ov_standbyhov.gif); }
+
+a#firststeps img { background-image : url(../graphics/standby/fs_standby.gif); }
+a#firststeps:hover img,
+a#firststeps:focus img,
+a#firststeps:active img { background-image : url(../graphics/standby/fs_standbyhov.gif); }
+
+a#tutorials img { background-image : url(../graphics/standby/tu_standby.gif); }
+a#tutorials:hover img,
+a#tutorials:focus img,
+a#tutorials:active img { background-image : url(../graphics/standby/tu_standbyhov.gif); }
+
+a#samples img { background-image : url(../graphics/standby/sa_standby.gif); }
+a#samples:hover img,
+a#samples:focus img,
+a#samples:active img { background-image : url(../graphics/standby/sa_standbyhov.gif); }
+
+a#whatsnew img { background-image : url(../graphics/standby/wn_standby.gif); }
+a#whatsnew:hover img,
+a#whatsnew:focus img,
+a#whatsnew:active img { background-image : url(../graphics/standby/wn_standbyhov.gif); }
+
+a#webresources img { background-image : url(../graphics/standby/wr_standby.gif); }
+a#webresources:hover img,
+a#webresources:focus img,
+a#webresources:active img { background-image : url(../graphics/standby/wr_standbyhov.gif); }
+
+a#migrate img { background-image : url(../graphics/standby/mi_standby.gif); }
+a#migrate:hover img,
+a#migrate:focus img,
+a#migrate:active img { background-image : url(../graphics/standby/mi_standbyhov.gif); }
+
+a#workbench img { background-image : url(../graphics/standby/wb_standby.gif); }
+a#workbench:hover img,
+a#workbench:focus img,
+a#workbench:active img { background-image : url(../graphics/standby/wb_standbyhov.gif); }
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/tutorials.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/tutorials.css
new file mode 100644
index 0000000..ab12e64
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/tutorials.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#tutorials img, 
+#navigation-links a#tutorials:hover img,
+#navigation-links a#tutorials:focus img,
+#navigation-links a#tutorials:active img {
+	background-image : url(../graphics/icons/ctool/tu_nav_64.gif); 
+	top : 2px; 
+	left : -3px;
+}
+
+#navigation-links {
+	background-image: url(../graphics/contentpage/tu_banner.jpg);
+}
+
+#navigation-links a:hover#tutorials .link-label,
+#navigation-links a:focus#tutorials .link-label,
+#navigation-links a:active#tutorials .link-label {
+	display : none;
+}
+
+#navigation-links a:hover#tutorials,
+#navigation-links a:focus#tutorials,
+#navigation-links a:active#tutorials {
+	background-image : none;
+}
+
+#navigation-links a:hover#tutorials .link-extra-div,
+#navigation-links a:focus#tutorials .link-extra-div,
+#navigation-links a:active#tutorials .link-extra-div {
+	background-image : none;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/webresources.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/webresources.css
new file mode 100644
index 0000000..e785d0d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/webresources.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#webresources img, 
+#navigation-links a#webresources:hover img,
+#navigation-links a#webresources:focus img,
+#navigation-links a#webresources:active img {
+	background-image : url(../graphics/icons/ctool/wr_nav_64.gif); 
+	top : 2px;
+	left : -3px;
+}
+
+#navigation-links {
+	background-image: url(../graphics/contentpage/wr_banner.jpg);
+}
+
+#navigation-links a:hover#webresources .link-label,
+#navigation-links a:focus#webresources .link-label,
+#navigation-links a:active#webresources .link-label {
+	display : none;
+}
+
+#navigation-links a:hover#webresources,
+#navigation-links a:focus#webresources,
+#navigation-links a:active#webresources {
+	background-image : none;
+}
+
+#navigation-links a:hover#webresources .link-extra-div,
+#navigation-links a:focus#webresources .link-extra-div,
+#navigation-links a:active#webresources .link-extra-div {
+	background-image : none;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/whatsnew.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/whatsnew.css
new file mode 100644
index 0000000..b317c0a
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/whatsnew.css
@@ -0,0 +1,47 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#whatsnew img, 
+#navigation-links a#whatsnew:hover img,
+#navigation-links a#whatsnew:focus img,
+#navigation-links a#whatsnew:active img {
+	background-image : url(../graphics/icons/ctool/wn_nav_64.gif); 
+	top : 2px; 
+	left : -3px;
+}
+
+#navigation-links {
+	background-image: url(../graphics/contentpage/wn_banner.jpg);
+}
+
+#navigation-links a:hover#whatsnew .link-label,
+#navigation-links a:focus#whatsnew .link-label,
+#navigation-links a:active#whatsnew .link-label {
+	display : none;
+}
+
+#navigation-links a:hover#whatsnew,
+#navigation-links a:focus#whatsnew,
+#navigation-links a:active#whatsnew {
+	background-image : none;
+}
+
+#navigation-links a:hover#whatsnew .link-extra-div,
+#navigation-links a:focus#whatsnew .link-extra-div,
+#navigation-links a:active#whatsnew .link-extra-div {
+	background-image : none;
+}
+/*
+ * Default images for content links in this page.
+ */
+.content-link img { background-image : url(../graphics/icons/obj48/new_obj.gif); }
+.content-link:hover img { background-image : url(../graphics/icons/obj48/newhov_obj.gif); }
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/preview.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/preview.png
new file mode 100644
index 0000000..0e81aea
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/preview.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/firststeps.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/firststeps.properties
new file mode 100644
index 0000000..48b1b5c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/firststeps.properties
@@ -0,0 +1,18 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+firststeps.page-content.layout.vspacing = 40 
+firststeps.page-content.layout.ncolumns = 2
+firststeps.page-content.page-title.layout.colspan = 2
+firststeps.page-content.page-description.layout.colspan = 2
+firststeps.page-content.content-divider.layout.colspan = 2
+firststeps.subtitle-id = firststeps/page-content/page-title
+firststeps.description-id = firststeps/page-content/page-description
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/migrate.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/migrate.properties
new file mode 100644
index 0000000..eaaa815
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/migrate.properties
@@ -0,0 +1,18 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+migrate.page-content.layout.vspacing = 40 
+migrate.page-content.layout.ncolumns = 2
+migrate.page-content.page-title.layout.colspan = 2
+migrate.page-content.page-description.layout.colspan = 2
+migrate.page-content.content-divider.layout.colspan = 2
+
+migrate.subtitle-id = migrate/page-content/page-title
+migrate.description-id = migrate/page-content/page-description
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/overview.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/overview.properties
new file mode 100644
index 0000000..78c262f
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/overview.properties
@@ -0,0 +1,18 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+overview.page-content.layout.ncolumns = 2
+overview.page-content.page-title.layout.colspan = 2
+overview.page-content.page-description.layout.colspan = 2
+overview.page-content.content-divider.layout.colspan = 2
+
+overview.subtitle-id = overview/page-content/page-title
+overview.description-id = overview/page-content/page-description
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/root.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/root.properties
new file mode 100644
index 0000000..05ec22b
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/root.properties
@@ -0,0 +1,51 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+theme=true
+root.links-background.page-links.overview.link-icon = ../graphics/icons/ctool/overview.png
+root.links-background.page-links.tutorials.link-icon = ../graphics/icons/ctool/tutorials.png
+root.links-background.page-links.samples.link-icon= ../graphics/icons/ctool/samples.png
+root.links-background.page-links.whatsnew.link-icon = ../graphics/icons/ctool/whatsnew.png
+root.links-background.page-links.firststeps.link-icon = ../graphics/icons/ctool/firststeps.png
+root.links-background.page-links.migrate.link-icon = ../graphics/icons/ctool/migrate.png
+root.links-background.page-links.webresources.link-icon = ../graphics/icons/ctool/webresources.png
+root.action-links.workbench.link-icon = ../graphics/icons/ctool/workbench.png
+
+root.links-background.page-links.overview.hover-icon = ../graphics/icons/ctool/overview.png
+root.links-background.page-links.tutorials.hover-icon = ../graphics/icons/ctool/tutorials.png
+root.links-background.page-links.samples.hover-icon = ../graphics/icons/ctool/samples.png
+root.links-background.page-links.whatsnew.hover-icon = ../graphics/icons/ctool/whatsnew.png
+root.links-background.page-links.firststeps.hover-icon = ../graphics/icons/ctool/firststeps.png
+root.links-background.page-links.migrate.hover-icon = ../graphics/icons/ctool/migrate.png
+root.links-background.page-links.webresources.hover-icon = ../graphics/icons/ctool/webresources.png
+root.action-links.workbench.hover-icon = ../graphics/icons/ctool/workbench.png
+
+root.links-background.page-links.overview.small-link-icon = ../graphics/icons/ctool/ov_nav.png
+root.links-background.page-links.tutorials.small-link-icon = ../graphics/icons/ctool/tu_nav.png
+root.links-background.page-links.samples.small-link-icon = ../graphics/icons/ctool/sa_nav.png
+root.links-background.page-links.whatsnew.small-link-icon = ../graphics/icons/ctool/wn_nav.png
+root.links-background.page-links.firststeps.small-link-icon = ../graphics/icons/ctool/fs_nav.png
+root.links-background.page-links.migrate.small-link-icon = ../graphics/icons/ctool/mi_nav.png
+root.links-background.page-links.webresources.small-link-icon = ../graphics/icons/ctool/wr_nav.png
+root.action-links.workbench.small-link-icon = ../graphics/icons/ctool/wb_nav.png
+
+root.links-background.page-links.overview.small-hover-icon = ../graphics/icons/ctool/ov_nav.png
+root.links-background.page-links.tutorials.small-hover-icon = ../graphics/icons/ctool/tu_nav.png
+root.links-background.page-links.samples.small-hover-icon = ../graphics/icons/ctool/sa_nav.png
+root.links-background.page-links.whatsnew.small-hover-icon = ../graphics/icons/ctool/wn_nav.png
+root.links-background.page-links.firststeps.small-hover-icon = ../graphics/icons/ctool/fs_nav.png
+root.links-background.page-links.migrate.small-hover-icon = ../graphics/icons/ctool/mi_nav.png
+root.links-background.page-links.webresources.small-hover-icon = ../graphics/icons/ctool/wr_nav.png
+root.action-links.workbench.small-hover-icon = ../graphics/icons/ctool/wb_nav.png
+
+
+root.layout.ncolumns = 1
+root.links-background.page-links.layout.hspacing = 40
+root.layout.vspacing = 35
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/samples.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/samples.properties
new file mode 100644
index 0000000..c4551f8
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/samples.properties
@@ -0,0 +1,21 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+samples.page-content.layout.vspacing = 40
+samples.page-content.layout.ncolumns = 2
+samples.page-content.layout.equalWidth = true
+samples.page-content.page-title.layout.colspan = 2
+samples.page-content.page-description.layout.colspan = 2
+samples.page-content.content-divider.layout.colspan = 2
+
+description-style-id = group-description
+samples.subtitle-id = samples/page-content/page-title
+samples.description-id = samples/page-content/page-description
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/standby.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/standby.properties
new file mode 100644
index 0000000..25f6d6d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/standby.properties
@@ -0,0 +1,24 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+theme = true
+standby.links-background.page-links.overview.link-icon = ../graphics/icons/ctool/ov_nav.png
+standby.links-background.page-links.firststeps.link-icon = ../graphics/icons/ctool/fs_nav.png
+standby.links-background.page-links.tutorials.link-icon = ../graphics/icons/ctool/tu_nav.png
+standby.links-background.page-links.samples.link-icon = ../graphics/icons/ctool/sa_nav.png
+standby.links-background.page-links.whatsnew.link-icon = ../graphics/icons/ctool/wn_nav.png
+standby.links-background.page-links.migrate.link-icon = ../graphics/icons/ctool/mi_nav.png
+standby.links-background.page-links.webresources.link-icon = ../graphics/icons/ctool/wr_nav.png
+standby.links-background.page-links.workbench.link-icon = ../graphics/icons/ctool/wb_nav.png
+
+standby.links-background.page-links.layout.vspacing = 30
+standby.layout.vspacing = 35
+standby.show-link-description = false
+standby.show-home-page-navigation = false
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/tutorials.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/tutorials.properties
new file mode 100644
index 0000000..2f7eb0d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/tutorials.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+tutorials.page-content.layout.vspacing = 40
+tutorials.page-content.layout.ncolumns = 2
+tutorials.page-content.layout.equalWidth = true
+tutorials.page-content.page-title.layout.colspan = 2
+tutorials.page-content.page-description.layout.colspan = 2
+tutorials.page-content.content-divider.layout.colspan = 2
+tutorials.subtitle-id = tutorials/page-content/page-title
+tutorials.description-id = tutorials/page-content/page-description
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/webresources.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/webresources.properties
new file mode 100644
index 0000000..db164a9
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/webresources.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+webresources.page-content.layout.vspacing = 40 
+webresources.page-content.layout.ncolumns = 2
+webresources.page-content.page-title.layout.colspan = 2
+webresources.page-content.page-description.layout.colspan = 2
+webresources.page-content.content-divider.layout.colspan = 2
+
+webresources.subtitle-id = webresources/page-content/page-title
+webresources.description-id = webresources/page-content/page-description
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/whatsnew.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/whatsnew.properties
new file mode 100644
index 0000000..3d57994
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/whatsnew.properties
@@ -0,0 +1,24 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+theme = true
+whatsnew.page-content.layout.vspacing = 40
+whatsnew.page-content.layout.ncolumns = 2
+whatsnew.page-content.layout.equalWidth = true
+whatsnew.page-content.page-title.layout.colspan = 2
+whatsnew.page-content.page-description.layout.colspan = 2
+whatsnew.page-content.content-divider.layout.colspan = 2
+
+whatsnew.separator.fg =  #dfdfe4
+
+whatsnew.link-icon = ../graphics/icons/obj48/new_obj.gif
+whatsnew.hover-icon = ../graphics/icons/obj48/newhov_obj.gif
+
+whatsnew.subtitle-id = whatsnew/page-content/page-title
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/background.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/background.jpg
new file mode 100644
index 0000000..ce1cada
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/background.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/backgroundcurve.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/backgroundcurve.gif
new file mode 100644
index 0000000..8c5ec1d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/backgroundcurve.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/firsteps_wtr.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/firsteps_wtr.jpg
new file mode 100644
index 0000000..11e7725
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/firsteps_wtr.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/migrate_wtr.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/migrate_wtr.jpg
new file mode 100644
index 0000000..c45dc6f
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/migrate_wtr.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/overview_wtr.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/overview_wtr.jpg
new file mode 100644
index 0000000..733e48c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/overview_wtr.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/samples_wtr.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/samples_wtr.jpg
new file mode 100644
index 0000000..9e0fa8a
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/samples_wtr.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section1.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section1.gif
new file mode 100644
index 0000000..6147513
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section1.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section2.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section2.gif
new file mode 100644
index 0000000..0ee148b
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section2.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section3.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section3.gif
new file mode 100644
index 0000000..b5d24e6
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section3.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section4.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section4.gif
new file mode 100644
index 0000000..258d4a8
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section4.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/tutorials_wtr.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/tutorials_wtr.jpg
new file mode 100644
index 0000000..2cf26b2
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/tutorials_wtr.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/webrsrc_wtr.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/webrsrc_wtr.jpg
new file mode 100644
index 0000000..c002f2d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/webrsrc_wtr.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/whatsnew_wtr.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/whatsnew_wtr.jpg
new file mode 100644
index 0000000..c2a42da
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/whatsnew_wtr.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/back.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/back.gif
new file mode 100644
index 0000000..1c81cb6
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/back.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps16.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps16.png
new file mode 100644
index 0000000..4c15c82
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps16.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps48.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps48.gif
new file mode 100644
index 0000000..5140ad8
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps48sel.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps48sel.gif
new file mode 100644
index 0000000..954955d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps48sel.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps72.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps72.gif
new file mode 100644
index 0000000..ff92f6e
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps72.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/forward.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/forward.gif
new file mode 100644
index 0000000..3e4a4f4
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/forward.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/home.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/home.gif
new file mode 100644
index 0000000..0160f8f
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/home.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate16.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate16.png
new file mode 100644
index 0000000..3fc8414
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate16.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate48.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate48.gif
new file mode 100644
index 0000000..dc48b18
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate48sel.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate48sel.gif
new file mode 100644
index 0000000..a9d6d07
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate48sel.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate72.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate72.gif
new file mode 100644
index 0000000..25fc317
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate72.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview16.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview16.png
new file mode 100644
index 0000000..b2e977f
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview16.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview48.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview48.gif
new file mode 100644
index 0000000..3843412
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview48sel.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview48sel.gif
new file mode 100644
index 0000000..fafc1a6
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview48sel.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview72.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview72.gif
new file mode 100644
index 0000000..39d089a
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview72.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples16.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples16.png
new file mode 100644
index 0000000..fdff5dd
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples16.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples48.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples48.gif
new file mode 100644
index 0000000..e71836e
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples48sel.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples48sel.gif
new file mode 100644
index 0000000..daaa044
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples48sel.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples72.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples72.gif
new file mode 100644
index 0000000..1515906
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples72.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials16.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials16.png
new file mode 100644
index 0000000..f2d688f
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials16.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials48.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials48.gif
new file mode 100644
index 0000000..f527297
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials48sel.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials48sel.gif
new file mode 100644
index 0000000..9d41c08
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials48sel.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials72.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials72.gif
new file mode 100644
index 0000000..8fd4816
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials72.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/wb16.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/wb16.png
new file mode 100644
index 0000000..e73ca61
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/wb16.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/wb48.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/wb48.gif
new file mode 100644
index 0000000..c2fd06a
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/wb48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc16.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc16.png
new file mode 100644
index 0000000..b847caa
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc16.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc48.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc48.gif
new file mode 100644
index 0000000..b54d518
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc48sel.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc48sel.gif
new file mode 100644
index 0000000..798f415
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc48sel.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc72.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc72.gif
new file mode 100644
index 0000000..c4df0ad
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc72.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew16.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew16.png
new file mode 100644
index 0000000..5294b17
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew16.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew48.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew48.gif
new file mode 100644
index 0000000..4eeb56a
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew48sel.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew48sel.gif
new file mode 100644
index 0000000..d5ba746
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew48sel.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew72.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew72.gif
new file mode 100644
index 0000000..df3bd99
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew72.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/dtool/back.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/dtool/back.gif
new file mode 100644
index 0000000..f0d0929
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/dtool/back.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/dtool/forward.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/dtool/forward.gif
new file mode 100644
index 0000000..dbe58b2
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/dtool/forward.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/back.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/back.gif
new file mode 100644
index 0000000..f0d0929
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/back.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps48.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps48.gif
new file mode 100644
index 0000000..b277a7f
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps48sel.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps48sel.gif
new file mode 100644
index 0000000..9679b5f
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps48sel.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps72.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps72.gif
new file mode 100644
index 0000000..a68e0aa
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps72.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/forward.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/forward.gif
new file mode 100644
index 0000000..dbe58b2
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/forward.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/home.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/home.gif
new file mode 100644
index 0000000..b101d12
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/home.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate48.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate48.gif
new file mode 100644
index 0000000..313c983
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate48sel.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate48sel.gif
new file mode 100644
index 0000000..6a12231
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate48sel.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate72.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate72.gif
new file mode 100644
index 0000000..2a3fe17
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate72.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview48.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview48.gif
new file mode 100644
index 0000000..6ac4cf7
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview48sel.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview48sel.gif
new file mode 100644
index 0000000..5588700
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview48sel.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview72.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview72.gif
new file mode 100644
index 0000000..1e612b5
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview72.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples48.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples48.gif
new file mode 100644
index 0000000..eeace58
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples48sel.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples48sel.gif
new file mode 100644
index 0000000..38b965d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples48sel.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples72.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples72.gif
new file mode 100644
index 0000000..504fea0
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples72.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials48.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials48.gif
new file mode 100644
index 0000000..dfe572b
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials48sel.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials48sel.gif
new file mode 100644
index 0000000..e8a8d93
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials48sel.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials72.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials72.gif
new file mode 100644
index 0000000..12698f6
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials72.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/wb48.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/wb48.gif
new file mode 100644
index 0000000..50ca287
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/wb48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc48.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc48.gif
new file mode 100644
index 0000000..41fef5f
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc48sel.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc48sel.gif
new file mode 100644
index 0000000..5f7b9c7
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc48sel.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc72.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc72.gif
new file mode 100644
index 0000000..cdf21e4
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc72.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew48.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew48.gif
new file mode 100644
index 0000000..d73db3e
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew48sel.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew48sel.gif
new file mode 100644
index 0000000..8c9aaa2
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew48sel.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew72.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew72.gif
new file mode 100644
index 0000000..63844fd
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew72.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/obj48/new_obj.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/obj48/new_obj.gif
new file mode 100644
index 0000000..f46b81b
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/obj48/new_obj.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/obj48/newhov_obj.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/obj48/newhov_obj.gif
new file mode 100644
index 0000000..593e63b
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/obj48/newhov_obj.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/firststeps16.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/firststeps16.png
new file mode 100644
index 0000000..4c15c82
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/firststeps16.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/migrate16.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/migrate16.png
new file mode 100644
index 0000000..3fc8414
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/migrate16.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/overview.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/overview.gif
new file mode 100644
index 0000000..3fe629a
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/overview.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/samples.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/samples.gif
new file mode 100644
index 0000000..c695884
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/samples.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/tutorials.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/tutorials.gif
new file mode 100644
index 0000000..a18d7dd
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/tutorials.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/webresources16.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/webresources16.png
new file mode 100644
index 0000000..b847caa
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/webresources16.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/whatsnew.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/whatsnew.gif
new file mode 100644
index 0000000..f022324
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/whatsnew.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/background.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/background.jpg
new file mode 100644
index 0000000..969fcf3
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/background.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/brandmark.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/brandmark.gif
new file mode 100644
index 0000000..93f25f7
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/brandmark.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/dots.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/dots.gif
new file mode 100644
index 0000000..6621b7c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/dots.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/swt/form_banner.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/swt/form_banner.gif
new file mode 100644
index 0000000..aebc0b2
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/swt/form_banner.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/firststeps.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/firststeps.css
new file mode 100644
index 0000000..0904e2b
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/firststeps.css
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+	background-image : url(../graphics/contentpage/firsteps_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#firststeps img, 
+#navigation-links a#firststeps:hover img,
+#navigation-links a#firststeps:focus img,
+#navigation-links a#firststeps:active img {
+	background-image : url(../graphics/icons/ctool/firsteps48sel.gif); 
+}
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/font-absolute.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/font-absolute.css
new file mode 100644
index 0000000..a8b42e2
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/font-absolute.css
@@ -0,0 +1,88 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+.intro-header H1 {
+	font-size : 16pt;
+}
+
+h2 {
+	font-size : 13pt;
+}
+
+/* For regular div labels */
+H4 .div-label {
+	font-size : 10pt;
+}
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+	font-size : 10pt;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+	font-size : 14pt;
+}
+
+.page-description { 
+	font-size : 10pt;
+}
+
+a .link-label {
+	font-size : 10pt;
+}
+
+#navigation-links a .link-label {
+	font-size : 9pt;
+}
+
+a .text {
+	font-size : 8pt;
+}
+
+p .group-description {
+	font-size : 10pt;
+}
+
+.categoryContentnav {
+	font-size: 9pt; 
+}
+
+.topicList {
+	font-size: 8pt; 
+}
+
+/* 
+ * Set up general font colours, sizes, etc.  Some of these will override
+ * settings from the shared CSS 
+ */
+#root .intro-header H1 {
+	font-size : 18pt;
+}
+#root #page-links a .link-label, #action-links a .link-label {
+	font-size : 13pt;
+}
+
+#root #page-links a p .text, #action-links a p .text {
+	font-size : 13pt;
+}
+
+#standby .intro-header H1 {
+	font-size : 15pt;
+}
+
+#standby #page-links a .link-label, #standby #action-links a .link-label {
+	font-size : 10pt;
+}
+
+#standby #page-links a p .text, #standby #action-links a p .text {
+	font-size : 10pt;
+}
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/font-relative.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/font-relative.css
new file mode 100644
index 0000000..f3ed239
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/font-relative.css
@@ -0,0 +1,88 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+.intro-header H1 {
+	font-size : 16pt
+}
+
+h2 {
+	font-size : 120%;
+}
+
+/* For regular div labels */
+H4 .div-label {
+	font-size : 100%;
+}
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+	font-size : 100%;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+	font-size : 160%;
+}
+
+.page-description { 
+	font-size : 100%;
+}
+
+a .link-label {
+	font-size : 100%;
+}
+
+#navigation-links a .link-label {
+	font-size : 90%;
+}
+
+a .text {
+	font-size : 90%;
+}
+
+p .group-description {
+	font-size : 100%;
+}
+
+.categoryContentnav {
+	//font-size: 9pt; 
+}
+
+.topicList {
+	font-size: 90%; 
+}
+
+/* 
+ * Set up general font colours, sizes, etc.  Some of these will override
+ * settings from the shared CSS 
+ */
+#root .intro-header H1 {
+	font-size : 200%;
+}
+#root #page-links a .link-label, #root #action-links a .link-label {
+	font-size : 13pt;
+}
+
+#root #page-links a p .text, #root #action-links a p .text {
+	font-size : 13pt;
+}
+
+#standby .intro-header H1 {
+	font-size : 150%;
+}
+
+#standby #page-links a .link-label, #standby #action-links a .link-label {
+	font-size : 100%;
+}
+
+#standby #page-links a p .text, #standby #action-links a p .text {
+	font-size : 100%;
+}
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/ltr.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/ltr.css
new file mode 100644
index 0000000..57586c8
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/ltr.css
@@ -0,0 +1,19 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* 
+ * This file contains styles that are specific to left to right display
+ */
+ 
+body {
+    direction: ltr;
+}
+ 
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/migrate.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/migrate.css
new file mode 100644
index 0000000..8d23eb9
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/migrate.css
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+	background-image : url(../graphics/contentpage/migrate_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#migrate img, 
+#navigation-links a#migrate:hover img,
+#navigation-links a#migrate:focus img,
+#navigation-links a#migrate:active img {
+	background-image : url(../graphics/icons/ctool/migrate48sel.gif); 
+}
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/overview.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/overview.css
new file mode 100644
index 0000000..113c21c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/overview.css
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+	background-image : url(../graphics/contentpage/overview_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#overview img, 
+#navigation-links a#overview:hover img,
+#navigation-links a#overview:focus img,
+#navigation-links a#overview:active img {
+	background-image : url(../graphics/icons/ctool/overview48sel.gif); 
+}
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/root.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/root.css
new file mode 100644
index 0000000..4a998d9
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/root.css
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/rtl.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/rtl.css
new file mode 100644
index 0000000..8929906
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/rtl.css
@@ -0,0 +1,106 @@
+/*******************************************************************************
+ * Copyright (c) 2008, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* 
+ * This file contains styles that are specific to right to left display
+ */
+
+
+table {
+    direction: rtl;
+}
+
+#page-content p { 
+	text-align : right; 
+}
+
+#page-content #content-header H4, .page-description {
+	text-align : right;
+}
+
+#page-content table tr td a > .link-label {
+    left:0px;
+}
+
+#page-content * td a .link-label { 
+    display:block;
+    left:0px;
+    margin-right:0px;
+    position:static;
+    top:0px;
+}
+
+#page-content * td a  .text { 
+    display:block;
+    left:0px;
+    margin-right:0px;
+    position:static;
+    top:0px;
+}
+
+.content-group {
+	text-align: right;
+}
+
+.intro-header span {
+    margin-right : 45px;
+    padding-right : 45px;
+}
+
+div div#rss-news {  
+   position:static;
+   margin-left:0px;
+   margin-bottom: 0px;
+   margin-top: 10px;
+   top : 0px;
+   margin-right : 30px;
+}
+
+div ul#eclipse-news {
+	list-style-image: url("../graphics/icons/ctool/arrow_rtl.gif");
+	margin-left: 0px;
+	padding-right: 10px;
+	margin-right: 10px;
+}
+
+/* The 'closed' toggle image part of the folding section. */
+#page-content .section-title-link .section-toggle-image-closed {
+	background-image : url(../graphics/icons/ctool/widget_closed_rtl.gif);
+}
+
+#page-content .section-title-link:hover .section-toggle-image-closed,
+#page-content .section-title-link:active .section-toggle-image-closed {
+	background-image : url(../graphics/icons/ctool/widget_closed_hov_rtl.gif);
+}
+
+#standby #links-background {
+    text-align:right;
+}
+
+#standby #page-links a {
+	text-align : right; 
+}
+
+#standby #page-links a .link-label {
+    left:auto;
+    right : 60px;
+}
+
+#standby #page-links p {
+    right : 60px;
+}  
+
+#standby #page-links a p .text {
+    margin-right:auto;
+    left:auto;
+    right : 60px;
+}
+
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/samples.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/samples.css
new file mode 100644
index 0000000..b994004
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/samples.css
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+	background-image : url(../graphics/contentpage/samples_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#samples img, 
+#navigation-links a#samples:hover img,
+#navigation-links a#samples:focus img,
+#navigation-links a#samples:active img {
+	background-image : url(../graphics/icons/ctool/samples48sel.gif); 
+}
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/shared.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/shared.css
new file mode 100644
index 0000000..6e9e694
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/shared.css
@@ -0,0 +1,420 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* 
+ * Set up general fonts, sizes and colors 
+ */
+body { font-family : Arial, sans-serif; }
+
+H1, H2, H3, H4, p, a { color : #4D4D4D; }
+
+.intro-header H1 {
+	font-weight : normal;
+	color : #E5E5E5;
+}
+
+h2 {
+	font-weight : normal;
+	color : #7B8694;
+}
+/* For regular div labels */
+H4 .div-label {
+	font-weight : bold;
+}
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+	display : inline;
+}
+
+/* For separators */
+HR {
+	width: 90%;
+	align: left;
+	height : 1px;
+	color :  #dfdfe4;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+	font-weight : normal;
+	color : #8C96A2;
+	float : none;
+	clear : both;
+}
+
+.page-description { 
+	float : none;
+	clear : both;
+}
+
+a {
+	font-weight : bold;
+	text-decoration : none;
+	color : #4D4D4D;
+}
+
+a .link-label {
+	font-weight : normal;
+}
+
+/* Hide the 'special-effect' extra div in links by default. */
+.link-extra-div {
+	display : none;
+}
+
+#navigation-links a .link-label {
+	font-weight : normal;
+	color : #E5E5E5;
+}
+
+a .text {
+	font-weight : normal;
+}
+
+p .group-description {
+	font-weight : normal;
+}
+
+
+/* 
+ * Set up other general properties like padding/margins
+ */
+html, body { width : 100%; height : 100%; }
+
+html, body, div, h1, h4, p, a { margin : 0px; padding : 0px; }
+
+.intro-header H1 { padding-top : 10px; margin-left : 10px; }
+
+.section { }
+.section-body { display: none; padding : 0px; }
+
+/* For regular div labels */
+#page-content div H4 {
+	padding : 10px;
+	padding-bottom : 0px;
+}
+
+/* For the main page content's div label */
+#page-content #content-header H4 {
+	padding-bottom : 10px;
+	padding-top : 0px;
+}
+
+/* special case for Mozilla's main content-header label.
+   Mozilla 1.4 needs more room at the top */
+#page-content > #content-header H4 { padding-top : 10px; }
+
+/* Needed in IE to get shift+tab to show the active image properly */
+a:active {
+	border : solid 0px;
+}
+
+a img {
+	border-width : 0;
+	background-repeat : no-repeat;
+}
+
+/*
+ * to get scrollbars working in both IE and Mozilla
+ */
+html,body { overflow: auto; }
+html>body { overflow: visible; }
+
+/*
+ * Set up the body, decorative background, and navigation for the content 
+ * pages. 
+ * Note: the root page handles its own background and navigation; these
+ * settings primarily apply to the content pages
+ */
+body {
+	background-color : #FFFFFF;
+	background-repeat : no-repeat;
+	background-position : bottom right;
+}
+
+/*
+ * We will use one of the general purpose groups to show
+ * the curve image
+ */
+#extra-group1 { 
+	width : 100%;
+	height : 164px;
+	position : absolute;
+	top : 0px;
+	background-image : url(../graphics/contentpage/backgroundcurve.gif);
+	background-repeat : no-repeat;
+	background-position : top center;
+	margin : 0;
+	padding : 0;
+}
+
+/*
+ * Hide the other general-purpose groups
+ */
+
+#extra-group2,
+#extra-group3,
+#extra-group4,
+#extra-group5 {
+	display : none;
+}
+
+.intro-header {	background-color : transparent; z-index : 100;}
+
+body, .page{
+	min-width : 770px;
+	/* since IE doesn't support min-width, try expression */
+	width:expression(document.body.clientWidth < 770? "770px": "auto" );
+	min-height : 425px;
+	height : 100%;
+	height : expression(document.body.clientHeight < 425? "425px": "100%" );
+}
+
+.page { 
+	min-height : 475px;
+	background-image : url(../graphics/contentpage/background.jpg);
+	background-repeat : repeat-x;
+	background-position : top left;
+}
+
+#page-content {
+	background-repeat : no-repeat;
+	background-position : bottom right;
+	height : 70%;
+}
+
+/* 
+ * Lay out the navigation links 
+ * (Root page does something similar for its navigation)
+ */
+#navigation-links {
+	position : relative;
+	left : 10px;
+	top : 5px;
+	height : 60px;
+	width : 98%;
+}
+
+#navigation-links a {
+	padding-left : 5px;
+	padding-right : 5px;
+	float : left;
+	text-align : center;
+}
+
+#navigation-links #customize {
+	padding-left : 5px;
+	padding-right : 5px;
+	float : left;
+	text-align : center;
+}
+
+#navigation-links a img {
+	height : 52px;
+	width : 52px;
+	vertical-align : middle;
+}
+
+#navigation-links a .link-label { display : block; margin-top : 5px;}
+
+#navigation-links a .text { display : none; }
+
+#navigation-links a:hover, 
+#navigation-links a:focus 
+#navigation-links a:active { border-right : 0px;}
+
+/* properties for each of the navigation-links  */
+#navigation-links a#overview img { background-image : url(../graphics/icons/etool/overview48.gif); }
+#navigation-links a#overview:hover img,
+#navigation-links a#overview:focus img,
+#navigation-links a#overview:active img { background-image : url(../graphics/icons/ctool/overview48.gif); }
+
+#navigation-links a#tutorials img { background-image : url(../graphics/icons/etool/tutorials48.gif); }
+#navigation-links a#tutorials:hover img,
+#navigation-links a#tutorials:active img,
+#navigation-links a#tutorials:focus img { background-image : url(../graphics/icons/ctool/tutorials48.gif); }
+
+#navigation-links a#samples img { background-image : url(../graphics/icons/etool/samples48.gif); }
+#navigation-links a#samples:hover img,
+#navigation-links a#samples:active img,
+#navigation-links a#samples:focus img { background-image : url(../graphics/icons/ctool/samples48.gif); }
+
+#navigation-links a#whatsnew img { background-image : url(../graphics/icons/etool/whatsnew48.gif); }
+#navigation-links a#whatsnew:hover img,
+#navigation-links a#whatsnew:focus img,
+#navigation-links a#whatsnew:active img { background-image : url(../graphics/icons/ctool/whatsnew48.gif); }
+
+#navigation-links a#firststeps img { background-image : url(../graphics/icons/etool/firsteps48.gif); }
+#navigation-links a#firststeps:hover img,
+#navigation-links a#firststeps:focus img,
+#navigation-links a#firststeps:active img { background-image : url(../graphics/icons/ctool/firsteps48.gif); }
+
+#navigation-links a#webresources img { background-image : url(../graphics/icons/etool/webrsrc48.gif); }
+#navigation-links a#webresources:hover img,
+#navigation-links a#webresources:focus img,
+#navigation-links a#webresources:active img { background-image : url(../graphics/icons/ctool/webrsrc48.gif); }
+
+#navigation-links a#migrate img { background-image : url(../graphics/icons/etool/migrate48.gif); }
+#navigation-links a#migrate:hover img,
+#navigation-links a#migrate:focus img,
+#navigation-links a#migrate:active img { background-image : url(../graphics/icons/ctool/migrate48.gif); }
+
+
+#navigation-links a#workbench { position : absolute;  right : 0px; top : -35px; text-align : right;}
+#navigation-links a#workbench .text { display : none; }
+#navigation-links a#workbench img { background-image : url(../graphics/icons/etool/wb48.gif); width : 53px; height : 53px;}
+#navigation-links a#workbench:hover img,
+#navigation-links a#workbench:focus img,
+#navigation-links a#workbench:active img { background-image : url(../graphics/icons/ctool/wb48.gif); }
+
+/* 
+ * Lay out the page title and description 
+ */
+h1, p { margin-left : 10px; } /* required in mozilla so the page description is properly indented */
+
+/* position the page content so that the page title overlays the bottom
+ * of the background image, but make sure the content is always on top 
+ * (using z-index) */
+#page-content {
+	float : none;
+	clear : both;
+	text-align : center;
+	margin-top : 35px;
+}
+
+.page > #page-content { margin-top : 50px; }
+
+#page-content p { 
+	padding-bottom : 15px; 
+	text-align : left; 
+	float : none;
+	clear : both;
+}
+
+/* Page content bins */
+
+#page-content #top-left {
+  border: none; float: left; margin: 0px; padding: 0px; width: 49%;
+  clear: left;
+}
+#page-content #top-right {
+  border: none; float: right; margin: 0px; padding: 0px; width: 49%;
+  clear: right;
+}
+
+/* top-bottom divider - runs the entire width to ensure
+ * bottom boxes start at the same y
+ */
+#page-content #content-divider {
+  border: none; float: none; margin: 0; padding: 0px; width: 100%;
+  clear: both;
+}
+
+#page-content #bottom-left {
+  border: none; float: left; margin: 0px; padding: 0px; width: 49%;
+  clear: left;
+}
+#page-content #bottom-right {
+  border: none; float: right; margin: 0px; padding: 0px; width: 49%;
+  clear: right;
+}
+
+#page-content #content-header H4, .page-description {
+	text-align : left;
+	margin-right : 10px;
+	float : none;
+	clear : both;
+}
+
+#page-content #top-left > *, 
+#page-content #top-right > *,
+#page-content #bottom-left > *,
+#page-content #bottom-right > * {
+	display: block;
+}
+
+#page-content * > a {
+	vertical-align : middle; 
+}
+
+#page-content * a img {
+	height : 57px;
+	width : 57px;
+	vertical-align : middle;
+}	
+
+#page-content * a .link-label {
+	display : block;
+	position : relative;
+	top : -50px;
+	left : 60px;
+	margin-right: 60px;
+}
+
+#page-content * a > .link-label { left: 65px; }
+
+#page-content * a p .text {
+	display : block;
+	position : relative;
+	top : -45px;
+	margin-bottom: -25px;
+	left : 53px;
+	margin-right: 53px;
+}
+
+#page-content * a p > .text { left: 58px; }
+
+#page-content * a:hover { border-right : 5px; }
+
+
+/* The following rules are for extensions in all pages. Extensions should be placed in
+ * groups with the style 'content-group' and contain links with the style 'content-link'.
+ * Group is important so that importance mixin style can be applied to the group that
+ * uses block display. We need to see a solid rectangle around the extension, not 
+ * a tight polygon around the link perimeter.
+ */
+ 
+.content-group {
+	margin-left: 10px;
+	margin-right: 10px;
+	padding-left: 10px;
+	padding-right: 10px;
+	float : none;
+	clear : both;
+	text-align : left;
+}
+
+.categoryContentnav {
+	font-weight: bold; 
+	color: #4A4D4A; 
+}
+
+.topicList {
+	line-height:1.75;
+	color: #00507C;
+}
+
+.content-link:hover { border-right : 0px; }
+
+iframe {
+	position:relative;
+	top:16px;
+	width:100%;
+	height:100%;
+	padding-left:10px;
+	}
+
+/* mozilla scrollbar appearing off page fix */
+#page-content > iframe {
+	width: 98%;
+	padding-left: 2%;
+}	
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/standby.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/standby.css
new file mode 100644
index 0000000..9406e97
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/standby.css
@@ -0,0 +1,169 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* 
+ * Set up general font colours, sizes, etc.  Some of these will override
+ * settings from the shared CSS 
+ */
+
+#page-links a .link-label, #action-links a .link-label {
+	font-weight : 600;
+	color : #E5E5E5;
+}
+
+#page-links a p .text, #action-links a p .text {
+	font-weight : 500;
+	color : #E5E5E5;
+}
+
+/*
+ * We will not use the general-purpose group1 used in
+ * other pages for a curve image.
+ */
+
+#extra-group1 {
+	display : none;
+}
+
+/*
+ * Set up the content for the standby page.
+ */
+body {
+	min-width : 230px;
+	/* since IE doesn't support min-width, use expression */
+	width:expression(document.body.clientWidth < 230? "230px": "auto" );
+	background-image : url(../graphics/root/background.jpg);
+	background-repeat : no-repeat;
+	background-position : top left;
+	background-color : #7169D1;
+}
+
+.page {
+/*
+	background-image : url(../graphics/root/brandmark.gif);
+	background-repeat : no-repeat;
+	background-position : bottom left;
+*/
+	background-image: none;
+	min-width : 230px;
+	/* since IE doesn't support min-width, use expression */
+	width:expression(document.body.clientWidth < 230? "230px": "auto" );
+ 	min-height : 610px;
+	height : 100%;
+	height : expression(document.body.clientHeight < 450? "450px": "100%" );
+}
+
+#extra-group1 {
+	display: none;
+}
+
+/* 
+ * Set up the navigation bar.  It should be centered in the middle
+ * of the page
+ */
+
+#links-background { 
+	width : 100%; 
+ 	margin-top : 10%; 
+	margin-bottom : auto;
+	text-align : center;
+}
+
+#page-links a {
+	display : block;
+	width : 220px;
+	text-align : left; 
+	margin-left : auto;
+	margin-right : auto;
+	margin-top : 0px;
+	vertical-align : top;
+}
+#page-links a span, #page-links a p {
+	display : block;
+	width : 160px;
+	margin : 0px;
+	padding : 0px;
+}
+
+#page-links a .link-label {
+	position : relative;
+	left : 60px;
+	top : -50px;
+}
+
+#page-links a p .text {
+	position : relative;
+	left : 60px;
+	top : -50px;
+
+}
+
+#page-links a .content-img {
+	visibility: hidden;
+}
+
+#page-links a img {
+	height : 52px;
+	width : 52px;
+	vertical-align : middle;
+}
+
+#page-links a:hover,
+#page-links a:focus,
+#page-links a:active  { border : 0px; }
+
+#page-links a:hover p,
+#page-links a:focus p,
+#page-links a:active p  { margin : 0px; padding : 0px; }
+
+#action-links a { visibility: hidden; }
+
+/* properties for each of the page-links  */
+a#overview img { background-image : url(../graphics/icons/etool/overview48.gif); }
+a#overview:hover img,
+a#overview:focus img,
+a#overview:active img { background-image : url(../graphics/icons/ctool/overview48.gif); }
+
+a#tutorials img { background-image : url(../graphics/icons/etool/tutorials48.gif); }
+a#tutorials:hover img,
+a#tutorials:focus img,
+a#tutorials:active img { background-image : url(../graphics/icons/ctool/tutorials48.gif); }
+
+a#samples img { background-image : url(../graphics/icons/etool/samples48.gif); }
+a#samples:hover img,
+a#samples:focus img,
+a#samples:active img { background-image : url(../graphics/icons/ctool/samples48.gif); }
+
+a#whatsnew img { background-image : url(../graphics/icons/etool/whatsnew48.gif); }
+a#whatsnew:hover img,
+a#whatsnew:focus img,
+a#whatsnew:active img { background-image : url(../graphics/icons/ctool/whatsnew48.gif); }
+
+a#firststeps img { background-image : url(../graphics/icons/etool/firsteps48.gif); }
+a#firststeps:hover img,
+a#firststeps:focus img,
+a#firststeps:active img { background-image : url(../graphics/icons/ctool/firsteps48.gif); }
+
+a#webresources img { background-image : url(../graphics/icons/etool/webrsrc48.gif); }
+a#webresources:hover img,
+a#webresources:focus img,
+a#webresources:active img { background-image : url(../graphics/icons/ctool/webrsrc48.gif); }
+
+a#migrate img { background-image : url(../graphics/icons/etool/migrate48.gif); }
+a#migrate:hover img,
+a#migrate:focus img,
+a#migrate:active img { background-image : url(../graphics/icons/ctool/migrate48.gif); }
+
+a#workbench img { background-image : url(../graphics/icons/etool/wb48.gif); }
+a#workbench:hover img,
+a#workbench:focus img,
+a#workbench:active img { background-image : url(../graphics/icons/ctool/wb48.gif); }
+
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/tutorials.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/tutorials.css
new file mode 100644
index 0000000..1f35046
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/tutorials.css
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+	background-image : url(../graphics/contentpage/tutorials_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#tutorials img, 
+#navigation-links a#tutorials:hover img,
+#navigation-links a#tutorials:focus img,
+#navigation-links a#tutorials:active img {
+	background-image : url(../graphics/icons/ctool/tutorials48sel.gif); 
+}
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/webresources.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/webresources.css
new file mode 100644
index 0000000..f15c3cd
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/webresources.css
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+	background-image : url(../graphics/contentpage/webrsrc_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#webresources img, 
+#navigation-links a#webresources:hover img,
+#navigation-links a#webresources:focus img,
+#navigation-links a#webresources:active img {
+	background-image : url(../graphics/icons/ctool/webrsrc48sel.gif); 
+}
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/whatsnew.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/whatsnew.css
new file mode 100644
index 0000000..1d23ca3
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/whatsnew.css
@@ -0,0 +1,28 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+	background-image : url(../graphics/contentpage/whatsnew_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#whatsnew img, 
+#navigation-links a#whatsnew:hover img,
+#navigation-links a#whatsnew:focus img,
+#navigation-links a#whatsnew:active img {
+	background-image : url(../graphics/icons/ctool/whatsnew48sel.gif); 
+}
+
+/*
+ * Default images for content links in this page.
+ */
+.content-link img { background-image : url(../graphics/icons/obj48/new_obj.gif); }
+.content-link:hover img { background-image : url(../graphics/icons/obj48/newhov_obj.gif); }
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/preview.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/preview.png
new file mode 100644
index 0000000..e280b53
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/preview.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/firststeps.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/firststeps.properties
new file mode 100644
index 0000000..ea3ca84
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/firststeps.properties
@@ -0,0 +1,15 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+firststeps.page-content.layout.ncolumns = 2
+firststeps.page-content.page-title.layout.colspan = 2
+firststeps.page-content.page-description.layout.colspan = 2
+firststeps.page-content.content-divider.layout.colspan = 2
+firststeps.subtitle-id = firststeps/page-content/page-title
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/migrate.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/migrate.properties
new file mode 100644
index 0000000..6c2cb2b
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/migrate.properties
@@ -0,0 +1,15 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+migrate.page-content.layout.ncolumns = 2
+migrate.page-content.page-title.layout.colspan = 2
+migrate.page-content.page-description.layout.colspan = 2
+migrate.page-content.content-divider.layout.colspan = 2
+migrate.subtitle-id = migrate/page-content/page-title
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/overview.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/overview.properties
new file mode 100644
index 0000000..1576641
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/overview.properties
@@ -0,0 +1,17 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+overview.page-content.layout.ncolumns = 2
+overview.page-content.page-title.layout.colspan = 2
+overview.page-content.page-description.layout.colspan = 2
+overview.page-content.content-divider.layout.colspan = 2
+
+overview.subtitle-id = overview/page-content/page-title
+overview.description-id = overview/page-content/page-description
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/root.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/root.properties
new file mode 100644
index 0000000..71518d0
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/root.properties
@@ -0,0 +1,51 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+theme=true
+root.links-background.page-links.overview.link-icon = ../graphics/icons/etool/overview72.gif
+root.links-background.page-links.tutorials.link-icon = ../graphics/icons/etool/tutorials72.gif
+root.links-background.page-links.samples.link-icon= ../graphics/icons/etool/samples72.gif
+root.links-background.page-links.whatsnew.link-icon = ../graphics/icons/etool/whatsnew72.gif
+root.links-background.page-links.migrate.link-icon = ../graphics/icons/etool/migrate72.gif
+root.links-background.page-links.firststeps.link-icon = ../graphics/icons/etool/firsteps72.gif
+root.links-background.page-links.webresources.link-icon = ../graphics/icons/etool/webrsrc72.gif
+root.action-links.workbench.link-icon = ../graphics/icons/etool/wb48.gif
+
+root.links-background.page-links.overview.hover-icon = ../graphics/icons/ctool/overview72.gif
+root.links-background.page-links.tutorials.hover-icon = ../graphics/icons/ctool/tutorials72.gif
+root.links-background.page-links.samples.hover-icon = ../graphics/icons/ctool/samples72.gif
+root.links-background.page-links.whatsnew.hover-icon = ../graphics/icons/ctool/whatsnew72.gif
+root.links-background.page-links.migrate.hover-icon = ../graphics/icons/ctool/migrate72.gif
+root.links-background.page-links.firststeps.hover-icon = ../graphics/icons/ctool/firsteps72.gif
+root.links-background.page-links.webresources.hover-icon = ../graphics/icons/ctool/webrsrc72.gif
+root.action-links.workbench.hover-icon = ../graphics/icons/ctool/wb48.gif
+
+
+root.links-background.page-links.overview.small-link-icon = ../graphics/icons/etool/overview48.gif
+root.links-background.page-links.tutorials.small-link-icon = ../graphics/icons/etool/tutorials48.gif
+root.links-background.page-links.samples.small-link-icon = ../graphics/icons/etool/samples48.gif
+root.links-background.page-links.whatsnew.small-link-icon = ../graphics/icons/etool/whatsnew48.gif
+root.links-background.page-links.migrate.small-link-icon = ../graphics/icons/etool/migrate48.gif
+root.links-background.page-links.firststeps.small-link-icon = ../graphics/icons/etool/firsteps48.gif
+root.links-background.page-links.webresources.small-link-icon = ../graphics/icons/etool/webrsrc48.gif
+root.action-links.workbench.small-link-icon = ../graphics/icons/etool/wb48.gif
+
+root.links-background.page-links.overview.small-hover-icon = ../graphics/icons/ctool/overview48.gif
+root.links-background.page-links.tutorials.small-hover-icon = ../graphics/icons/ctool/tutorials48.gif
+root.links-background.page-links.samples.small-hover-icon = ../graphics/icons/ctool/samples48.gif
+root.links-background.page-links.whatsnew.small-hover-icon = ../graphics/icons/ctool/whatsnew48.gif
+root.links-background.page-links.migrate.small-hover-icon = ../graphics/icons/ctool/migrate48.gif
+root.links-background.page-links.firststeps.small-hover-icon = ../graphics/icons/ctool/firsteps48.gif
+root.links-background.page-links.webresources.small-hover-icon = ../graphics/icons/ctool/webrsrc48.gif
+root.action-links.workbench.small-hover-icon = ../graphics/icons/ctool/wb48.gif
+
+root.layout.ncolumns = 1
+root.links-background.page-links.layout.hspacing = 40
+root.layout.vspacing = 35
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/samples.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/samples.properties
new file mode 100644
index 0000000..c5f11f3
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/samples.properties
@@ -0,0 +1,20 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+samples.page-content.layout.vspacing = 40
+
+samples.page-content.layout.ncolumns = 2
+samples.page-content.page-title.layout.colspan = 2
+samples.page-content.page-description.layout.colspan = 2
+samples.page-content.content-divider.layout.colspan = 2
+
+description-style-id = group-description
+samples.subtitle-id = samples/page-content/page-title
+samples.description-id = samples/page-content/page-description
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/standby.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/standby.properties
new file mode 100644
index 0000000..c6e4435
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/standby.properties
@@ -0,0 +1,33 @@
+###############################################################################
+#  Copyright (c) 2005, 2009 IBM Corporation and others.
+#  All rights reserved. This program and the accompanying materials
+#  are made available under the terms of the Eclipse Public License v1.0
+#  which accompanies this distribution, and is available at
+#  http://www.eclipse.org/legal/epl-v10.html
+# 
+#  Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+theme=true
+standby.links-background.page-links.overview.link-icon = ../graphics/icons/etool/overview72.gif
+standby.links-background.page-links.tutorials.link-icon = ../graphics/icons/etool/tutorials72.gif
+standby.links-background.page-links.samples.link-icon= ../graphics/icons/etool/samples72.gif
+standby.links-background.page-links.whatsnew.link-icon = ../graphics/icons/etool/whatsnew72.gif
+standby.links-background.page-links.firststeps.link-icon = ../graphics/icons/etool/firsteps72.gif
+standby.links-background.page-links.migrate.link-icon = ../graphics/icons/etool/migrate72.gif
+standby.links-background.page-links.webresources.link-icon = ../graphics/icons/etool/webrsrc72.gif
+standby.action-links.workbench.link-icon = ../graphics/icons/etool/wb48.gif
+
+standby.links-background.page-links.overview.hover-icon = ../graphics/icons/ctool/overview72.gif
+standby.links-background.page-links.tutorials.hover-icon = ../graphics/icons/ctool/tutorials72.gif
+standby.links-background.page-links.samples.hover-icon = ../graphics/icons/ctool/samples72.gif
+standby.links-background.page-links.whatsnew.hover-icon = ../graphics/icons/ctool/whatsnew72.gif
+standby.links-background.page-links.migrate.hover-icon = ../graphics/icons/ctool/migrate72.gif
+standby.links-background.page-links.firststeps.hover-icon = ../graphics/icons/ctool/firsteps72.gif
+standby.links-background.page-links.webresources.hover-icon = ../graphics/icons/ctool/webrsrc72.gif
+standby.action-links.workbench.hover-icon = ../graphics/icons/ctool/wb48.gif
+
+standby.links-background.page-links.layout.vspacing = 30
+standby.layout.vspacing = 35
+standby.show-link-description = false
+standby.show-home-page-navigation = false
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/tutorials.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/tutorials.properties
new file mode 100644
index 0000000..b74fbc9
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/tutorials.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+tutorials.page-content.layout.vspacing = 40
+tutorials.page-content.layout.ncolumns = 2
+tutorials.page-content.page-title.layout.colspan = 2
+tutorials.page-content.page-description.layout.colspan = 2
+tutorials.page-content.content-divider.layout.colspan = 2
+
+tutorials.subtitle-id = tutorials/page-content/page-title
+tutorials.description-id = tutorials/page-content/page-description
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/webresources.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/webresources.properties
new file mode 100644
index 0000000..45cc9b2
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/webresources.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+webresources.page-content.layout.vspacing = 40 
+
+webresources.page-content.layout.ncolumns = 2
+webresources.page-content.page-title.layout.colspan = 2
+webresources.page-content.page-description.layout.colspan = 2
+webresources.page-content.content-divider.layout.colspan = 2
+
+webresources.subtitle-id = webresources/page-content/page-title
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/whatsnew.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/whatsnew.properties
new file mode 100644
index 0000000..2bba9c2
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/whatsnew.properties
@@ -0,0 +1,24 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+theme = true
+whatsnew.page-content.layout.vspacing = 40 
+
+whatsnew.page-content.layout.ncolumns = 2
+whatsnew.page-content.page-title.layout.colspan = 2
+whatsnew.page-content.page-description.layout.colspan = 2
+whatsnew.page-content.content-divider.layout.colspan = 2
+
+whatsnew.separator.fg =  #dfdfe4
+
+whatsnew.link-icon = ../graphics/icons/obj48/new_obj.gif
+whatsnew.hover-icon = ../graphics/icons/obj48/newhov_obj.gif
+
+whatsnew.subtitle-id = whatsnew/page-content/page-title
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/grey_callout.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/grey_callout.gif
new file mode 100644
index 0000000..e8877a1
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/grey_callout.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/ov_high.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/ov_high.gif
new file mode 100644
index 0000000..144af18
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/ov_high.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/ov_med.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/ov_med.gif
new file mode 100644
index 0000000..1ed93fa
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/ov_med.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/tu-sa_high.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/tu-sa_high.gif
new file mode 100644
index 0000000..4059b1c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/tu-sa_high.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/tu-sa_med.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/tu-sa_med.gif
new file mode 100644
index 0000000..a939a97
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/tu-sa_med.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wn-fs_high.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wn-fs_high.gif
new file mode 100644
index 0000000..492f2b1
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wn-fs_high.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wn-fs_med.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wn-fs_med.gif
new file mode 100644
index 0000000..fcfcac8
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wn-fs_med.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wr-mi_high.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wr-mi_high.gif
new file mode 100644
index 0000000..9d97731
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wr-mi_high.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wr-mi_med.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wr-mi_med.gif
new file mode 100644
index 0000000..551a32c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wr-mi_med.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/arrow.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/arrow.gif
new file mode 100644
index 0000000..7d4c3f1
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/arrow.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/arrow_rtl.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/arrow_rtl.gif
new file mode 100644
index 0000000..d7bb424
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/arrow_rtl.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed.gif
new file mode 100644
index 0000000..21f09b1
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_hov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_hov.gif
new file mode 100644
index 0000000..dfef2a7
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_hov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_hov_rtl.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_hov_rtl.gif
new file mode 100644
index 0000000..deadfe5
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_hov_rtl.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_rtl.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_rtl.gif
new file mode 100644
index 0000000..60283fd
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_rtl.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_open.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_open.gif
new file mode 100644
index 0000000..e96eb25
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_open.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_open_hov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_open_hov.gif
new file mode 100644
index 0000000..9fafae4
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_open_hov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/html/shared.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/html/shared.css
new file mode 100644
index 0000000..062a630
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/html/shared.css
@@ -0,0 +1,156 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2007 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* 
+ * This file contains styles that are shared between multiple themes.
+ */
+
+/* Folding section settings. */
+
+/* The foldable part of the section. It is off by default. */
+.section-body {
+	display: none;
+}
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+	display : inline;
+}
+
+.section-title-link .section-title,
+.section-title-link:focus .section-title {
+	color: #00517d;
+}
+
+.section-title-link {
+	vertical-align: bottom;
+}
+
+/* The 'open' toggle image part of the folding section. */
+#page-content .section-title-link .section-toggle-image-open {
+	display: none;
+	clear: right;
+	width : 7px;
+	height : 7px;
+	background-image : url(../graphics/icons/ctool/widget_open.gif);
+}
+
+/* The 'closed' toggle image part of the folding section. */
+#page-content .section-title-link .section-toggle-image-closed {
+	display: inline;
+	clear: right;
+	width : 7px;
+	height : 7px;
+	background-image : url(../graphics/icons/ctool/widget_closed.gif);
+}
+
+/*
+ * Section title during hover.
+ */
+.section-title-link:hover .section-title,
+.section-title-link:active .section-title {
+	color: #6699cc;
+}
+
+.section-title-link:hover .section-title {
+	text-decoration: underline;
+}
+
+/*
+ * Toggle image during hover.
+ */
+#page-content .section-title-link:hover .section-toggle-image-closed,
+#page-content .section-title-link:active .section-toggle-image-closed {
+	background-image : url(../graphics/icons/ctool/widget_closed_hov.gif);
+}
+#page-content .section-title-link:hover .section-toggle-image-open,
+#page-content .section-title-link:active .section-toggle-image-open {
+	background-image : url(../graphics/icons/ctool/widget_open_hov.gif);
+}
+
+/* 
+ * Importance highlights for page content. Gradient image is
+ * tiled vertically. In addition, background color is applied
+ * to fill in the areas not covered by the gradient image.
+ */
+.importance-high,
+.importance-low,
+.importance-callout,
+.importance-medium,
+.importance-new {
+	background-position: top left;
+	background-repeat: repeat-y;
+}
+
+body .importance-low {
+	background-color: #ffffff;
+}
+
+body .importance-new {
+	background-image: url("../graphics/contentpage/ov_high.gif");	
+	background-color: #fffacd;
+}
+
+body #overview .importance-high {
+	background-color: #fff7da;
+	background-image: url("../graphics/contentpage/ov_high.gif");
+}
+
+body #overview .importance-medium {
+	background-color: #fffbec;
+	background-image: url("../graphics/contentpage/ov_med.gif");
+}
+
+body #tutorials .importance-high,
+body #samples .importance-high {
+	background-color: #e1eaf2;
+	background-image: url("../graphics/contentpage/tu-sa_high.gif");
+}
+
+body #tutorials .importance-medium,
+body #samples .importance-medium {
+	background-color: #f0f4f8;
+	background-image: url("../graphics/contentpage/tu-sa_med.gif");
+}
+
+body #whatsnew .importance-high,
+body #firststeps .importance-high {
+	background-color: #f3ecdb;
+	background-image: url("../graphics/contentpage/wn-fs_high.gif");
+}
+
+body #whatsnew .importance-medium,
+body #firststeps .importance-medium {
+	background-color: #f7f2e7;
+	background-image: url("../graphics/contentpage/wn-fs_med.gif");
+}
+
+body #webresources .importance-high,
+body #migrate .importance-high {
+	background-color: #ecf4d7;
+	background-image: url("../graphics/contentpage/wr-mi_high.gif");
+}
+
+body #webresources .importance-medium,
+body #migrate .importance-medium {
+	background-color: #f5f9eb;
+	background-image: url("../graphics/contentpage/wr-mi_med.gif");
+}
+
+.importance-callout {
+	background-color: #eeeeee;
+	background-image: url("../graphics/contentpage/grey_callout.gif");
+}
+
+ul.news-list {
+	list-style-image: url("../graphics/icons/ctool/arrow.gif");
+}
+ 
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/banner_extension.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/banner_extension.jpg
new file mode 100644
index 0000000..4f885f5
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/banner_extension.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/fs_banner.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/fs_banner.jpg
new file mode 100644
index 0000000..bed56b4
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/fs_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/mi_banner.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/mi_banner.jpg
new file mode 100644
index 0000000..12e6e20
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/mi_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/ov_banner.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/ov_banner.jpg
new file mode 100644
index 0000000..53cfcd1
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/ov_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/sa_banner.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/sa_banner.jpg
new file mode 100644
index 0000000..61d0937
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/sa_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/tu_banner.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/tu_banner.jpg
new file mode 100644
index 0000000..276c1a8
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/tu_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/wn_banner.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/wn_banner.jpg
new file mode 100644
index 0000000..91445fe
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/wn_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/wr_banner.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/wr_banner.jpg
new file mode 100644
index 0000000..0626d13
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/wr_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/arrow_rtl.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/arrow_rtl.gif
new file mode 100644
index 0000000..d7bb424
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/arrow_rtl.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps-select.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps-select.gif
new file mode 100644
index 0000000..ce1d903
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps-select.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps-select.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps-select.png
new file mode 100644
index 0000000..846b278
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps-select.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps.png
new file mode 100644
index 0000000..eccc757
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/fs_nav.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/fs_nav.png
new file mode 100644
index 0000000..99eb592
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/fs_nav.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/fs_nav_32.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/fs_nav_32.gif
new file mode 100644
index 0000000..84885b5
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/fs_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/mi_nav.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/mi_nav.png
new file mode 100644
index 0000000..5434708
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/mi_nav.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/mi_nav_32.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/mi_nav_32.gif
new file mode 100644
index 0000000..d49d950
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/mi_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate-select.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate-select.gif
new file mode 100644
index 0000000..79ab661
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate-select.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate-select.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate-select.png
new file mode 100644
index 0000000..df8e2ff
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate-select.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate.png
new file mode 100644
index 0000000..07fea1d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/ov_nav.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/ov_nav.png
new file mode 100644
index 0000000..709f69a
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/ov_nav.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/ov_nav_32.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/ov_nav_32.gif
new file mode 100644
index 0000000..2ff3933
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/ov_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview-select.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview-select.gif
new file mode 100644
index 0000000..e1563d2
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview-select.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview-select.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview-select.png
new file mode 100644
index 0000000..c2513e9
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview-select.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview.png
new file mode 100644
index 0000000..a60034c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/sa_nav.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/sa_nav.png
new file mode 100644
index 0000000..9871b72
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/sa_nav.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/sa_nav_32.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/sa_nav_32.gif
new file mode 100644
index 0000000..ffbe90e
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/sa_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples-select.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples-select.gif
new file mode 100644
index 0000000..aa36563
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples-select.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples-select.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples-select.png
new file mode 100644
index 0000000..d2cabf1
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples-select.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples.png
new file mode 100644
index 0000000..cb3db1d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tu_nav.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tu_nav.png
new file mode 100644
index 0000000..ce589ab
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tu_nav.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tu_nav_32.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tu_nav_32.gif
new file mode 100644
index 0000000..77a3421
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tu_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials-select.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials-select.gif
new file mode 100644
index 0000000..6e36ffe
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials-select.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials-select.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials-select.png
new file mode 100644
index 0000000..4c66644
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials-select.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials.png
new file mode 100644
index 0000000..e40a823
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wb_nav.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wb_nav.png
new file mode 100644
index 0000000..0621c3c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wb_nav.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wb_nav_32.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wb_nav_32.gif
new file mode 100644
index 0000000..3db3072
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wb_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources-select.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources-select.gif
new file mode 100644
index 0000000..34a1812
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources-select.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources-select.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources-select.png
new file mode 100644
index 0000000..dc106f2
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources-select.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources.png
new file mode 100644
index 0000000..1a876dc
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew-select.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew-select.gif
new file mode 100644
index 0000000..5acbd8f
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew-select.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew-select.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew-select.png
new file mode 100644
index 0000000..cb686d2
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew-select.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew.png
new file mode 100644
index 0000000..a10dd3d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wn_nav.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wn_nav.png
new file mode 100644
index 0000000..47ecb7c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wn_nav.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wn_nav_32.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wn_nav_32.gif
new file mode 100644
index 0000000..ce9c743
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wn_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/workbench.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/workbench.png
new file mode 100644
index 0000000..868f3ab
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/workbench.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wr_nav.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wr_nav.png
new file mode 100644
index 0000000..00d3056
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wr_nav.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wr_nav_32.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wr_nav_32.gif
new file mode 100644
index 0000000..a741e2f
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wr_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/firststeps16.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/firststeps16.png
new file mode 100644
index 0000000..4c15c82
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/firststeps16.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/migrate16.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/migrate16.png
new file mode 100644
index 0000000..3fc8414
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/migrate16.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/overview16.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/overview16.png
new file mode 100644
index 0000000..b2e977f
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/overview16.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/samples16.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/samples16.png
new file mode 100644
index 0000000..fdff5dd
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/samples16.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/tutorials16.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/tutorials16.png
new file mode 100644
index 0000000..f2d688f
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/tutorials16.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/webresources16.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/webresources16.png
new file mode 100644
index 0000000..b847caa
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/webresources16.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/whatsnew16.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/whatsnew16.png
new file mode 100644
index 0000000..5294b17
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/whatsnew16.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/background.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/background.jpg
new file mode 100644
index 0000000..2595c78
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/background.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48.gif
new file mode 100644
index 0000000..7211d18
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48.png
new file mode 100644
index 0000000..a925486
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48_hov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48_hov.gif
new file mode 100644
index 0000000..82fa55f
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48_hov.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48_hov.png
new file mode 100644
index 0000000..60b1e58
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48_hov.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48.gif
new file mode 100644
index 0000000..19ecef3
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48.png
new file mode 100644
index 0000000..98e167e
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48_hov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48_hov.gif
new file mode 100644
index 0000000..f9395da
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48_hov.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48_hov.png
new file mode 100644
index 0000000..6d21e5b
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48_hov.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48.gif
new file mode 100644
index 0000000..7d7053d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48.png
new file mode 100644
index 0000000..71c5668
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48_hov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48_hov.gif
new file mode 100644
index 0000000..35690f3
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48_hov.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48_hov.png
new file mode 100644
index 0000000..334f7de
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48_hov.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/root_banner.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/root_banner.jpg
new file mode 100644
index 0000000..a6ab1b1
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/root_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/root_banner_logo.jpg b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/root_banner_logo.jpg
new file mode 100644
index 0000000..a5fd7c4
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/root_banner_logo.jpg
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48.gif
new file mode 100644
index 0000000..da714d8
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48.png
new file mode 100644
index 0000000..7104822
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48_hov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48_hov.gif
new file mode 100644
index 0000000..dd77558
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48_hov.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48_hov.png
new file mode 100644
index 0000000..2e1c9e7
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48_hov.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48.gif
new file mode 100644
index 0000000..bdc3e9e
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48.png
new file mode 100644
index 0000000..e5b8179
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48_hov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48_hov.gif
new file mode 100644
index 0000000..2aac380
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48_hov.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48_hov.png
new file mode 100644
index 0000000..1609d2e
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48_hov.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48.gif
new file mode 100644
index 0000000..4cce719
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48.png
new file mode 100644
index 0000000..bcc3528
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48_hov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48_hov.gif
new file mode 100644
index 0000000..90b3487
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48_hov.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48_hov.png
new file mode 100644
index 0000000..638b0c8
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48_hov.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48.gif
new file mode 100644
index 0000000..d80d0c4
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48.png
new file mode 100644
index 0000000..62a1e3c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48_hov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48_hov.gif
new file mode 100644
index 0000000..6fe8c73
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48_hov.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48_hov.png
new file mode 100644
index 0000000..88ae9b4
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48_hov.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48.gif
new file mode 100644
index 0000000..e8c3e26
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48.png
new file mode 100644
index 0000000..739fde5
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48_hov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48_hov.gif
new file mode 100644
index 0000000..fb807e9
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48_hov.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48_hov.png
new file mode 100644
index 0000000..860890c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48_hov.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/fs_standby.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/fs_standby.gif
new file mode 100644
index 0000000..aac6d6b
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/fs_standby.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/fs_standbyhov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/fs_standbyhov.gif
new file mode 100644
index 0000000..eded4ff
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/fs_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/mi_standby.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/mi_standby.gif
new file mode 100644
index 0000000..34b8963
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/mi_standby.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/mi_standbyhov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/mi_standbyhov.gif
new file mode 100644
index 0000000..08c4479
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/mi_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/ov_standby.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/ov_standby.gif
new file mode 100644
index 0000000..bfcf7b2
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/ov_standby.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/ov_standbyhov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/ov_standbyhov.gif
new file mode 100644
index 0000000..11e7892
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/ov_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/sa_standby.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/sa_standby.gif
new file mode 100644
index 0000000..a18a047
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/sa_standby.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/sa_standbyhov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/sa_standbyhov.gif
new file mode 100644
index 0000000..2063d8a
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/sa_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/tu_standby.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/tu_standby.gif
new file mode 100644
index 0000000..75baabf
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/tu_standby.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/tu_standbyhov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/tu_standbyhov.gif
new file mode 100644
index 0000000..82b758f
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/tu_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wb_standby.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wb_standby.gif
new file mode 100644
index 0000000..5037784
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wb_standby.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wb_standbyhov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wb_standbyhov.gif
new file mode 100644
index 0000000..d3be575
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wb_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wn_standby.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wn_standby.gif
new file mode 100644
index 0000000..77c7912
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wn_standby.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wn_standbyhov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wn_standbyhov.gif
new file mode 100644
index 0000000..2867f15
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wn_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wr_standby.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wr_standby.gif
new file mode 100644
index 0000000..cb4fa47
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wr_standby.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wr_standbyhov.gif b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wr_standbyhov.gif
new file mode 100644
index 0000000..00b4231
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wr_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/firststeps.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/firststeps.css
new file mode 100644
index 0000000..2613074
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/firststeps.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+	display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#firststeps img {
+	background-image : url(../graphics/icons/ctool/firststeps-select.png); 
+	width : 64px;
+	height: 64px;
+	margin-top : 12px;
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#firststeps img {
+	background-image : url(../graphics/icons/ctool/firststeps-select.gif); 
+}
+
+#navigation-links a#.high-contrast#firststeps img {
+	display : none;
+}
+
+.page  {
+	background-image: url(../graphics/contentpage/fs_banner.jpg);
+}
+
+#navigation-links #firststeps .link-label {
+	display : none;
+}
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/font-absolute.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/font-absolute.css
new file mode 100644
index 0000000..145a584
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/font-absolute.css
@@ -0,0 +1,102 @@
+/*******************************************************************************
+ * Copyright (c) 2008, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+	font-size : 10pt;
+}
+
+h2 {
+	font-size : 13pt;
+}
+
+/* For regular div labels */
+H4 .div-label {
+	font-size: 10pt; 
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+	font-size: 23pt; 
+}
+
+
+/* Page description if the page has it. */
+.page-description {
+	font-size: 10pt; 
+}
+
+/* General link labels */
+a .link-label {
+	font-size : 10pt;
+}
+
+/* Floating link labels for navigation links */
+#navigation-links a .link-label {
+	font-size : 8pt;
+}
+
+/* Text in links. */
+a .text {
+	font-size : 8pt;
+}
+
+p .group-description {
+	font-size : 10pt;
+}
+
+.content-link .link-label {
+	font-size: 11pt; 
+}
+
+.content-link .text {
+	font-size: 10pt;
+}
+
+.categoryContentnav {
+	font-size:10pt; 
+}
+
+.contentpgNavhover {
+	font-size: 8pt; 
+}
+
+.topicList {
+	font-size:8pt; 
+}
+
+/* 
+ * Root page settings
+ */
+#root .intro-header H1 {
+	font-size : 23pt;
+}
+
+/* Link label properties */
+#root #page-links a .link-label {
+	font-size : 14pt;
+}
+
+/*
+ * Standby page settings
+ */
+
+#standby .intro-header H1 {
+	font-size : 15pt;
+}
+
+#standby #page-links a .link-label {
+	font-size : 10pt;
+}
+
+#standby #page-links a p .text {
+	font-size : 10pt;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/font-relative.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/font-relative.css
new file mode 100644
index 0000000..240a626
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/font-relative.css
@@ -0,0 +1,110 @@
+L/*******************************************************************************
+ * Copyright (c) 2008, 2010 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * Font sizes for the circles theme
+ */
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+	font-size : 100%;
+}
+
+h2 {
+	font-size : 120%;
+}
+
+/* For regular div labels */
+H4 .div-label {
+	font-size: 120%; 
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+	font-size: 240%; 
+}
+
+
+/* Page description if the page has it. */
+.page-description {
+	font-size: 100%; 
+}
+
+#page-links, #action-links {
+    font-size : 8pt;
+}
+
+#standby #page-links {
+    font-size : 100%;
+}
+
+/* Floating link labels for navigation links */
+#navigation-links a .link-label {
+	font-size : 8pt;
+}
+
+/* Text in links. */
+a .text {
+	font-size : 90%;
+}
+
+p .group-description {
+	font-size : 100%;
+}
+
+.content-link .link-label {
+	font-size: 120%; 
+}
+
+.content-link .text {
+	font-size: 100%;
+}
+
+.categoryContentnav {
+	//font-size:10pt; 
+}
+
+.contentpgNavhover {
+	font-size: 8pt; 
+}
+
+.topicList, .rss-feed-link {
+	font-size:90%; 
+}
+
+#root #page-links, #root #action-links, #root #page-links a p .text {
+    font-size : 100%;
+}
+
+/* Link label properties */
+#root #page-links a .link-label {
+	font-size : 130%;
+}
+
+#root .intro-header span  {
+    font-size : 125%;
+}
+
+/*
+ * Standby page settings
+ */
+
+#standby .intro-header H1 {
+	font-size : 150%;
+}
+
+#standby #page-links a .link-label, #standby #action-links a .link-label {
+	font-size : 100%;
+}
+
+#standby #page-links a p .text, #standby #action-links a p .text {
+	font-size : 100%;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/ltr.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/ltr.css
new file mode 100644
index 0000000..57586c8
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/ltr.css
@@ -0,0 +1,19 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* 
+ * This file contains styles that are specific to left to right display
+ */
+ 
+body {
+    direction: ltr;
+}
+ 
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/migrate.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/migrate.css
new file mode 100644
index 0000000..be06798
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/migrate.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+	display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#migrate img {
+	background-image : url(../graphics/icons/ctool/migrate-select.png); 
+	width : 64px;
+	height: 64px;
+	margin-top : 12px
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#migrate img {
+	background-image : url(../graphics/icons/ctool/migrate-select.gif); 
+}
+
+#navigation-links a#.high-contrast#migrate img {
+	display : none;
+}
+
+.page {
+	background-image: url(../graphics/contentpage/mi_banner.jpg);
+}
+
+#navigation-links #migrate .link-label {
+	display : none;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/overview.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/overview.css
new file mode 100644
index 0000000..716bfa0
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/overview.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+	display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#overview img {
+	background-image : url(../graphics/icons/ctool/overview-select.png);
+	width : 64px;
+	height: 64px;
+	margin-top : 12px
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#overview img {
+	background-image : url(../graphics/icons/ctool/overview-select.gif);
+}
+
+#navigation-links a#.high-contrast#overview img {
+	display : none;
+}
+
+.page {
+	background-image: url(../graphics/contentpage/ov_banner.jpg);
+}
+
+#navigation-links #overview .link-label {
+	display : none;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/root.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/root.css
new file mode 100644
index 0000000..071b69f
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/root.css
@@ -0,0 +1,271 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2010 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* Hide the extra div for links in the normal state. */
+a .link-extra-div {
+	display: none;
+}
+
+/* Link label properties */
+#page-links a .link-label {
+	top: -1.2em;
+	color:#00507C;	
+    font-family:Verdana,Arial,Helvetica;
+    font-weight:bold;
+}
+
+#page-links a:hover .link-label {
+	color: #69c; 
+	text-decoration : underline;
+}
+
+#page-links a {
+    width : 45%;
+    float : left;
+    margin-left : 3%; 
+	margin-bottom : 35px;
+}
+
+/*
+ * Set up the content for the root page.
+ */
+html, body {	
+	overflow : auto;
+	overflow-clip: rect(0, auto, auto, 0);
+	background-color : none;
+	background-image : url("../graphics/rootpage/background.jpg");
+	background-position : top left;
+	background-repeat : no-repeat;
+}
+
+#root {
+    background-image : url("../graphics/rootpage/root_banner.jpg");
+	background-position : top left;
+	background-repeat : repeat-x;
+}
+
+#branding {
+	position: absolute;
+	top : 0px;
+	left : 0px;
+}
+
+/* 
+ * Set up the navigation bar.  It should be centered in the middle
+ * of the page
+*/
+
+.intro-header {
+    padding-top : 90px;
+    margin-left : 7%;
+    margin-bottom : 40px;
+}
+
+/* For the main page content's title */
+.intro-header h1 {
+	font-family: Verdana, Arial, Helvetica;
+	color:#333333; 
+	font-weight: normal; 
+	letter-spacing:-0.03em;
+}
+
+#page-links a img {
+	height : 48px;
+	width : 64px;
+	vertical-align : middle;
+}
+
+#page-links a span {
+	display : block;
+}
+
+#page-links a span.link-label {
+	position : relative;
+	top : -45px;
+	left : 60px;
+	margin-right: 60px;
+	font-family: Verdana, Arial, Helvetica; 
+	font-weight: bold; 
+	line-height:1.5;
+	color: #00507C;
+}
+
+#page-links a p .text {
+    left: 51px; 
+	display : block;
+	position : relative;
+	top : -40px;
+	margin-bottom: -25px;
+	margin-right: 53px;
+	font-family: Verdana, Arial, Helvetica; 
+	line-height: 1.3;
+}
+
+#page-links a .background-image {
+	display: none;
+}
+
+#page-links a .link-extra-div {
+	display :none;
+}
+
+.content-img {
+    padding-left: 15px;
+}
+
+/* Link images */
+#page-links a#overview .content-img { background-image : url("../graphics/rootpage/overview48.png"); }
+#page-links a#overview:hover .content-img,
+#page-links a#overview:active .content-img,
+#page-links a#overview:focus .content-img { background-image : url("../graphics/rootpage/overview48_hov.png"); }
+
+#page-links a#tutorials .content-img { background-image : url("../graphics/rootpage/tutorials48.png"); }
+#page-links a#tutorials:hover .content-img,
+#page-links a#tutorials:active .content-img,
+#page-links a#tutorials:focus .content-img { background-image : url("../graphics/rootpage/tutorials48_hov.png"); }
+
+#page-links a#samples .content-img { background-image : url("../graphics/rootpage/samples48.png"); }
+#page-links a#samples:hover .content-img,
+#page-links a#samples:active .content-img,
+#page-links a#samples:focus .content-img { background-image : url("../graphics/rootpage/samples48_hov.png"); }
+
+#page-links a#whatsnew .content-img { background-image : url("../graphics/rootpage/whatsnew48.png"); }
+#page-links a#whatsnew:hover .content-img,
+#page-links a#whatsnew:active .content-img,
+#page-links a#whatsnew:focus .content-img { background-image : url("../graphics/rootpage/whatsnew48_hov.png"); }
+
+#page-links a#firststeps .content-img { background-image : url("../graphics/rootpage/firststeps48.png"); }
+#page-links a#firststeps:hover .content-img,
+#page-links a#firststeps:active .content-img,
+#page-links a#firststeps:focus .content-img { background-image : url("../graphics/rootpage/firststeps48_hov.png"); }
+
+#page-links a#migrate .content-img { background-image : url("../graphics/rootpage/migrate48.png"); }
+#page-links a#migrate:hover .content-img,
+#page-links a#migrate:active .content-img,
+#page-links a#migrate:focus .content-img { background-image : url("../graphics/rootpage/migrate48_hov.png"); }
+
+#page-links a#webresources .content-img { background-image : url("../graphics/rootpage/webresources48.png"); }
+#page-links a#webresources:hover .content-img,
+#page-links a#webresources:active .content-img,
+#page-links a#webresources:focus .content-img { background-image : url("../graphics/rootpage/webresources48_hov.png"); }
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+
+* html #page-links a#overview .content-img { background-image : url("../graphics/rootpage/overview48.gif"); }
+* html #page-links a#overview:hover .content-img,
+* html #page-links a#overview:active .content-img,
+* html #page-links a#overview:focus .content-img { background-image : url("../graphics/rootpage/overview48_hov.gif"); }
+
+* html #page-links a#tutorials .content-img { background-image : url("../graphics/rootpage/tutorials48.gif"); }
+* html #page-links a#tutorials:hover .content-img,
+* html #page-links a#tutorials:active .content-img,
+* html #page-links a#tutorials:focus .content-img { background-image : url("../graphics/rootpage/tutorials48_hov.gif"); }
+
+* html #page-links a#samples .content-img { background-image : url("../graphics/rootpage/samples48.gif"); }
+* html #page-links a#samples:hover .content-img,
+* html #page-links a#samples:active .content-img,
+* html #page-links a#samples:focus .content-img { background-image : url("../graphics/rootpage/samples48_hov.gif"); }
+
+* html #page-links a#whatsnew .content-img { background-image : url("../graphics/rootpage/whatsnew48.gif"); }
+* html #page-links a#whatsnew:hover .content-img,
+* html #page-links a#whatsnew:active .content-img,
+* html #page-links a#whatsnew:focus .content-img { background-image : url("../graphics/rootpage/whatsnew48_hov.gif"); }
+
+* html #page-links a#firststeps .content-img { background-image : url("../graphics/rootpage/firststeps48.gif"); }
+* html #page-links a#firststeps:hover .content-img,
+* html #page-links a#firststeps:active .content-img,
+* html #page-links a#firststeps:focus .content-img { background-image : url("../graphics/rootpage/firststeps48_hov.gif"); }
+
+* html #page-links a#migrate .content-img { background-image : url("../graphics/rootpage/migrate48.gif"); }
+* html #page-links a#migrate:hover .content-img,
+* html #page-links a#migrate:active .content-img,
+* html #page-links a#migrate:focus .content-img { background-image : url("../graphics/rootpage/migrate48_hov.gif"); }
+
+* html #page-links a#webresources .content-img { background-image : url("../graphics/rootpage/webresources48.gif"); }
+* html #page-links a#webresources:hover .content-img,
+* html #page-links a#webresources:active .content-img,
+* html #page-links a#webresources:focus .content-img { background-image : url("../graphics/rootpage/webresources48_hov.gif"); }
+
+/* End hack for IE6 */
+
+/*
+ * Not using action links.
+ */
+#action-links {
+	display: none;
+}
+
+/*
+* Workbench
+*/
+
+#page-links a#workbench:hover .link-label
+{
+    color : #FFEC89;
+    text-decoration : none;
+}
+
+#workbench p span {
+    display : none;
+}
+
+* html #page-links a#workbench .content-img {
+    background-image:url(../graphics/icons/ctool/wb_nav_32.gif);
+}
+
+#page-links a#workbench .content-img {
+    background-image:url(../graphics/icons/ctool/wb_nav_32.gif);
+    display:block;
+    color : white;
+    height:32px;
+    margin:5px auto 0;
+    width:32px;
+    background-repeat:no-repeat;
+    border-width:0;
+}
+
+#page-links a#workbench .link-label {
+   position : static;
+   margin-right : 0px;
+   font-weight : bold;	
+   color : white;
+   font-family:Arial,sans-serif;
+}
+
+#page-links a#workbench .text {
+   display : none;
+}
+
+#page-links a#workbench {
+    position : absolute;
+    right : 20px;
+    top : 0px;
+    width : auto;
+    text-align:center;
+    margin-bottom : 0px;
+}
+
+#page-links a#workbench img {
+    padding : 0px;
+}
+
+#page-links a#workbench span {
+    margin-top : 0px;
+    line-height : normal;
+}
+
+#page-links a#workbench .link-label {
+    font-size:8pt;
+    color:white;
+    font-weight:bold;
+    text-align:center;
+    margin-left: 0;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/rtl.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/rtl.css
new file mode 100644
index 0000000..7053216
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/rtl.css
@@ -0,0 +1,137 @@
+/*******************************************************************************
+ * Copyright (c) 2009, 2011 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* 
+ * This file contains styles that are specific to right to left display
+ */
+
+#page-links {
+     direction: rtl;
+ }
+
+table {
+    direction: rtl;
+}
+
+#page-links a span.link-label {
+	right : 48px;
+	margin-right: 0px;
+}
+
+#page-links a p .text {
+    right: 51px; 
+	margin-right: 0px;
+}
+
+#page-content p { 
+	text-align : right; 
+}
+
+#page-content #content-header H4, .page-description {
+	text-align : right;
+}
+
+#page-content table tr td a > .link-label {
+    left:0px;
+}
+
+#page-content * td a .link-label { 
+    display:block;
+    left:0px;
+    margin-right:0px;
+    position:static;
+    top:0px;
+}
+
+#page-content * td a  .text { 
+    display:block;
+    left:0px;
+    margin-right:0px;
+    position:static;
+    top:0px;
+}
+
+#page-content * a p {
+    margin-bottom:0px;
+    position:static;
+    top:0px;
+}
+
+.content-group {
+	text-align: right;
+}
+
+.intro-header span {
+    margin-right : 45px;
+    padding-right : 45px;
+}
+
+#navigation-links a {
+  float:right;
+  margin-left:auto;
+  margin-left : 10px;
+}
+
+#action-links a {
+    float:left;
+    margin-left:20px;
+    margin-right : auto;
+}
+
+div div#rss-news {  
+   position:static;
+   margin-left:0px;
+   margin-bottom: 0px;
+   margin-top: 10px;
+   top : 0px;
+   margin-right : 30px;
+}
+
+div ul.news-list {
+	list-style-image: url("../graphics/icons/ctool/arrow_rtl.gif");
+	margin-left: 0px;
+	padding-right: 10px;
+	margin-right: 10px;
+}
+
+/* The 'closed' toggle image part of the folding section. */
+#page-content .section-title-link .section-toggle-image-closed {
+	background-image : url(../graphics/icons/ctool/widget_closed_rtl.gif);
+}
+
+#page-content .section-title-link:hover .section-toggle-image-closed,
+#page-content .section-title-link:active .section-toggle-image-closed {
+	background-image : url(../graphics/icons/ctool/widget_closed_hov_rtl.gif);
+}
+
+#standby #links-background {
+    text-align:right;
+}
+
+#standby #page-links a {
+	text-align : right; 
+}
+
+#standby #page-links a .link-label {
+    left:auto;
+    right : 60px;
+}
+
+#standby #page-links p {
+    right : 60px;
+}  
+
+#standby #page-links a p .text {
+    margin-right:auto;
+    left:auto;
+    right : 60px;
+}
+
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/samples.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/samples.css
new file mode 100644
index 0000000..665946c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/samples.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+	display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#samples img {
+	background-image : url(../graphics/icons/ctool/samples-select.png); 
+	width : 64px;
+	height: 64px;
+	margin-top : 12px;
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#samples img {
+	background-image : url(../graphics/icons/ctool/samples-select.gif); 
+}
+
+#navigation-links a#.high-contrast#samples img {
+	display : none;
+}
+
+.page {
+	background-image: url(../graphics/contentpage/sa_banner.jpg);
+}
+
+#navigation-links #samples .link-label {
+	display : none;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/shared.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/shared.css
new file mode 100644
index 0000000..309d565
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/shared.css
@@ -0,0 +1,522 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2010 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* 
+ * Set up general fonts, sizes and colors 
+ */
+body { font-family : Arial, sans-serif; }
+
+H1, H2, H3, H4, p, a { color : #4D4D4D; }
+
+ body {
+	background-color : #FFFFFF;
+}
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+	display : inline;
+}
+
+h2 {
+	font-weight : normal;
+	color : #7B8694;
+}
+
+/* For regular div labels */
+H4 .div-label {
+	font-family: Verdana, Arial, Helvetica; 
+	font-weight: bold; 
+	color: #4A4D4A; 
+	line-height:1.3;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+	font-family: Verdana, Arial, Helvetica;
+	color:#333333; 
+	font-weight: normal; 
+	letter-spacing:-0.03em;
+	margin-left: 68px;
+	float : none;
+	clear : both;
+}
+
+/* For separators */
+HR {
+	width: 90%;
+	align: left;
+	height : 1px;
+	color :  #dfdfe4;
+}
+
+/* Page description if the page has it. */
+.page-description {
+	display: block;
+	font-family: Verdana, Arial, Helvetica; 
+	line-height:1.3;
+	float : none;
+	clear : both;
+	margin-left: 70px;
+	position : relative;
+	top : -25px;
+}
+
+a {
+	font-weight : bold;
+	text-decoration : none;
+	color : #4D4D4D;
+}
+
+a:hover  {
+	color: #69c; 
+}
+
+/* General link labels */
+a .link-label {
+	font-weight : normal;
+}
+
+/* Floating link labels for navigation links */
+#navigation-links a .link-label,
+#action links a .text {
+	font-weight : bold;	
+	color : white;
+}
+
+#navigation-links a#overview:hover .link-label
+{
+    color : #FFEC89;
+}
+
+#navigation-links a#tutorials:hover .link-label,
+#navigation-links a#samples:hover .link-label
+{
+    color : #ACCCE9;
+}
+
+#navigation-links a#whatsnew:hover .link-label,
+#navigation-links a#firststeps:hover .link-label
+{
+    color : #E5CD89;
+}
+
+#navigation-links a#webresources:hover .link-label ,
+#navigation-links a#migrate:hover .link-label
+{
+    color : #BCD77C;
+}
+
+#action-links a:hover .link-label {
+    color : E0DFE3;
+}
+
+/* Text in links. */
+a .text {
+	font-weight : normal;
+}
+
+p .group-description {
+	font-family: Verdana, Arial, Helvetica; 
+	font-weight : normal;
+}
+
+/* Hide the extra div in links by default. */
+.link-extra-div {
+	display : none;
+}
+
+/* 
+ * Set up other general properties like padding/margins
+ */
+html, body { width : 100%; height : 100%; }
+
+html, body, div, h1, h4, p, a { margin : 0px; padding : 0px; }
+
+/* 
+ * Page header - adding extra padding at the bottom to compensate
+ * for navigation background/header overlap.
+ */
+#page-content #content-header {
+    padding-top : 10px;
+	padding-bottom : 22px;
+}
+
+/* For regular div labels */
+#page-content div H4 {
+	padding : 10px;
+	padding-bottom : 0px;
+}
+
+/* For the main page content's div label */
+#page-content #content-header H4 {
+	padding-bottom : 10px;
+	padding-top : 0px;
+}
+
+/* special case for Mozilla's main content-header label.
+   Mozilla 1.4 needs more room at the top */
+#page-content > #content-header H4 { padding-top : 10px; }
+
+/* Needed in IE to get shift+tab to show the active image properly */
+a:active {
+	border : solid 0px;
+}
+
+a img {
+	border-width : 0;
+	background-repeat : no-repeat;
+}
+
+/*
+ * to get scrollbars working in both IE and Mozilla
+ */
+
+/*
+ * to get scrollbars working in both IE and Mozilla
+ */
+html,body { overflow: auto; }
+html>body { overflow: visible; }
+
+/*
+ * Set up the body, decorative background, and navigation for the content 
+ * pages. 
+ * Note: the root page handles its own background and navigation; these
+ * settings primarily apply to the content pages
+ */
+body {
+    background-image: url(../graphics/contentpage/banner_extension.jpg);	
+    background-repeat: repeat-x;
+    background-position: top left;
+}
+
+/*
+ * Hide the general-purpose groups - not using them in this theme.
+ */
+#extra-group1,
+#extra-group2,
+#extra-group3,
+#extra-group4,
+#extra-group5 {
+	display : none;
+}
+
+/*
+ * Dimensions.
+ */
+body, .page {
+	/* since IE doesn't support min-width, try expression */
+	height : 100%;
+}
+
+.page {
+	background-repeat : no-repeat;
+	background-position : top left;
+	
+	min-width : 770px;
+	width:expression(document.body.clientWidth < 770? "770px": "auto" );
+    min-height : 425px;
+	height : expression(document.body.clientHeight < 425? "425px": "100%" );
+}
+
+#page-content {
+	background-repeat : no-repeat;
+	background-position : bottom right;
+	height : 65%;
+}
+
+/* 
+ * Lay out the navigation links 
+ * (Root page does something similar for its navigation)
+ */
+#navigation-links {
+	position : relative;
+	left : 0px;
+	top : 0px;
+	padding-left: 12px;
+	height : 118px;
+}
+
+#navigation-links a {
+	text-align : left;
+	height : 64px;
+	float : left;
+	margin-left : 10px;
+	position : relative;
+	text-align : center;
+}
+
+#action-links a {
+    float : right;
+    margin-right : 20px;
+}
+
+#navigation-links a img {
+	height : 32px;
+	width : 32px;
+	vertical-align : center;
+	horizontal-align : center; 
+	display : block;
+	margin-top : 5px;
+	margin-bottom : 0px;
+	margin-left : auto;
+	margin-right : auto;
+}
+
+#navigation-links a.high-contrast img {
+	margin-bottom : 0px;
+}
+
+
+/*
+ * Not showing description for navigation links.
+ */
+#navigation-links a .text { display : none; }
+
+/* properties for each of the navigation-links  */
+#navigation-links a#overview img { 
+	background-image : url(../graphics/icons/ctool/ov_nav_32.gif); 
+}
+
+#navigation-links a#firststeps img { 
+	background-image : url(../graphics/icons/ctool/fs_nav_32.gif); 
+}
+
+#navigation-links a#tutorials img { 
+	background-image : url(../graphics/icons/ctool/tu_nav_32.gif); 
+}
+
+#navigation-links a#samples img { 
+	background-image : url(../graphics/icons/ctool/sa_nav_32.gif); 
+}
+
+#navigation-links a#whatsnew img { 
+	background-image : url(../graphics/icons/ctool/wn_nav_32.gif); 
+}
+
+#navigation-links a#migrate img { 
+	background-image : url(../graphics/icons/ctool/mi_nav_32.gif); 
+}
+
+#navigation-links a#webresources img { 
+	background-image : url(../graphics/icons/ctool/wr_nav_32.gif); 
+}
+
+#navigation-links a#workbench img { 
+	background-image : url(../graphics/icons/ctool/wb_nav_32.gif); 
+}
+
+#action-links a {
+	text-align : center;
+}
+
+#action-links a.high-contrast .link-label {
+	display: none;
+}
+
+#navigation-links a.high-contrast .background-image {
+	display: none;
+}
+
+#page-links a.high-contrast:focus .link-label,
+#page-links a.high-contrast:active .link-label {
+	display: block !important;
+	text-decoration: underline;
+	top : 5px;
+}
+
+#page-links span {
+    display : block;
+    margin-top : -2px;
+}
+
+/* 
+ * Lay out the page title and description 
+ */
+h1, p { margin-left : 10px; } /* required in mozilla so the page description is properly indented */
+
+/* position the page content so that the page title overlays the bottom
+ * of the background image, but make sure the content is always on top 
+ * (using z-index) */
+
+#page-content {
+	float : none;
+	clear : both;
+	text-align : center;
+	position : relative;
+	top : -50px;
+	margin-bottom: -50px;
+	z-index : 10;
+}
+
+#page-content p { 
+	padding-bottom : 15px; 
+	text-align : left; 
+	float : none;
+	clear : both;
+}
+
+/* Page content quadrants. Page content is placed in four quadrants.
+ * Upper pair is separated from the bottom pair with a divider
+ * to ensure bottom pair is aligned even with the uneven content
+ * in the upper pair.
+ */
+
+#page-content #top-left {
+  border: none; float: left; margin: 0px; padding: 0px; width: 49%;
+  clear: left;
+}
+#page-content #top-right {
+  border: none; float: right; margin: 0px; padding: 0px; width: 49%;
+  clear: right;
+}
+/* top-bottom divider - runs the entire width to ensure
+ * bottom boxes start at the same y
+ */
+#page-content #content-divider {
+  border: none; float: none; margin: 0; padding: 0px; width: 100%;
+  clear: both;
+}
+
+#page-content #bottom-left {
+  border: none; float: left; margin: 0px; padding: 0px; width: 49%;
+  clear: left;
+}
+#page-content #bottom-right {
+  border: none; float: right; margin: 0px; padding: 0px; width: 49%;
+  clear: right;
+}
+
+#page-content #content-header H4, .page-description {
+	text-align : left;
+	margin-right : 10px;
+	float : none;
+	clear : both;
+}
+
+#page-content * > a {
+	vertical-align : middle; 
+}
+
+#page-content * a img {
+	height : 57px;
+	width : 57px;
+	vertical-align : middle;
+}	
+
+#page-content * a .link-label {
+	display : block;
+	position : relative;
+	top : -50px;
+	left : 60px;
+	margin-right: 60px;
+}
+
+#page-content * a > .link-label { left: 65px; }
+
+#page-content * a p  {
+	display : block;
+	position : relative;
+	top : -45px;
+	margin-bottom: -25px;
+}
+
+#page-content * a p .text {
+	display : block;
+	position : relative;
+	left : 53px;
+	margin-right: 53px;
+}
+
+#page-content * a p > .text { left: 56px; }
+
+#page-content * a:hover { border-right : 5px; }
+
+/* The following rules are for extensions in all pages. Extensions should be placed in
+ * groups with the style 'content-group' and contain links with the style 'content-link'.
+ * Group is important so that importance mixin style can be applied to the group that
+ * uses block display. We need to see a solid rectangle around the extension, not 
+ * a tight polygon around the link perimeter.
+ */
+
+.content-group {
+	margin-left: 10px;
+	margin-right: 10px;
+	padding-left: 10px;
+	padding-right: 10px;
+	float : none;
+	clear : both;
+	text-align: left;
+}
+
+.content-link .link-label {
+	font-family: Verdana, Arial, Helvetica; 
+	font-weight: bold; 
+	line-height:1.5;
+	color: #00507C;
+}
+
+.content-link:hover .link-label {
+	color: #69c; 
+	text-decoration : underline;
+}
+
+.content-link .text {
+	font-family: Verdana, Arial, Helvetica; 
+	line-height: 1.3;
+}
+
+.categoryContentnav {
+	font-family: Verdana, Arial, Helvetica; 
+	font-weight: bold; 
+	color: #4A4D4A; 
+	line-height:1.3;
+}
+
+.contentpgNavhover {
+	font-family: Verdana, Arial, Helvetica; 
+	font-weight: bold; 
+	color: #000; 
+}
+
+.topicList {
+	font-family: Verdana, Arial, Helvetica; 
+	line-height:1.75;
+	color: #00507C;
+}
+
+.topicList:hover {
+	color: #69c;
+}
+
+
+.rss-feed-link a {
+	font-family: Verdana, Arial, Helvetica; 
+	color: #00507C;
+}
+
+/*
+ * This part is for hosting embedded document inside
+ * the content area.
+ */
+
+iframe {
+	position:relative;
+	top:16px;
+	width:100%;
+	height:100%;
+	padding-left:10px;
+}
+
+/* mozilla scrollbar appearing off page fix */
+#page-content > iframe {
+	width: 98%;
+	padding-left: 2%;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/standby.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/standby.css
new file mode 100644
index 0000000..5af77a1
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/standby.css
@@ -0,0 +1,165 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+	display : none;
+}
+
+/*
+ * We will not use the general-purpose group1 used in
+ * other pages for a curve image.
+ */
+
+#extra-group1 {
+	display : none;
+}
+
+
+#page-links a .link-label, #action-links a .link-label {
+	font-weight : 600;
+	color : #E5E5E5;
+}
+
+#page-links a p .text, #action-links a p .text {
+	font-weight : 500;
+	color : #E5E5E5;
+}
+
+/*
+ * Set up the content for the standby page.
+ */
+body {
+	min-width : 230px;
+	/* since IE doesn't support min-width, use expression */
+	width:expression(document.body.clientWidth < 230? "230px": "auto" );
+	background-repeat : no-repeat;
+	background-position : top left;
+	background-color : #6d7e85;
+}
+
+.page {
+	background-repeat : no-repeat;
+	background-position : bottom left;
+	min-width : 230px;
+	/* since IE doesn't support min-width, use expression */
+	width:expression(document.body.clientWidth < 230? "230px": "auto" );
+ 	min-height : 610px;
+	height : 100%;
+	height : expression(document.body.clientHeight < 450? "450px": "100%" );
+}
+
+/* 
+ * Set up the navigation bar.  It should be centered in the middle
+ * of the page
+ */
+
+#links-background { 
+	width : 100%; 
+ 	margin-top : 10%; 
+	margin-bottom : auto;
+	text-align : center;
+}
+
+#page-links a {
+	display : block;
+	width : 220px;
+	text-align : left; 
+	margin-left : auto;
+	margin-right : auto;
+	margin-top : 0px;
+	vertical-align : top;
+}
+
+#page-links a span, #page-links a p {
+	display : block;
+	width : 160px;
+	margin : 0px;
+	padding : 0px;
+}
+
+#page-links a .link-label {
+	position : relative;
+	left : 60px;
+	top : -50px;
+}
+
+#page-links a p .text {
+	position : relative;
+	left : 60px;
+	top : -50px;
+}
+
+#page-links a img {
+	height : 52px;
+	width : 52px;
+	vertical-align : middle;
+}
+
+#page-links a:hover,
+#page-links a:focus,
+#page-links a:active  { border : 0px; }
+
+#page-links a:hover p,
+#page-links a:focus p,
+#page-links a:active p  { margin : 0px; padding : 0px; }
+
+/* properties for each of the page-links  */
+
+#page-links a .background-image {
+	display: none;
+}
+
+#page-links a .link-extra-div {
+	display :none;
+}
+
+a#overview img { background-image : url(../graphics/standby/ov_standby.gif); }
+a#overview:hover img,
+a#overview:focus img,
+a#overview:active img { background-image : url(../graphics/standby/ov_standbyhov.gif); }
+
+a#firststeps img { background-image : url(../graphics/standby/fs_standby.gif); }
+a#firststeps:hover img,
+a#firststeps:focus img,
+a#firststeps:active img { background-image : url(../graphics/standby/fs_standbyhov.gif); }
+
+a#tutorials img { background-image : url(../graphics/standby/tu_standby.gif); }
+a#tutorials:hover img,
+a#tutorials:focus img,
+a#tutorials:active img { background-image : url(../graphics/standby/tu_standbyhov.gif); }
+
+a#samples img { background-image : url(../graphics/standby/sa_standby.gif); }
+a#samples:hover img,
+a#samples:focus img,
+a#samples:active img { background-image : url(../graphics/standby/sa_standbyhov.gif); }
+
+a#whatsnew img { background-image : url(../graphics/standby/wn_standby.gif); }
+a#whatsnew:hover img,
+a#whatsnew:focus img,
+a#whatsnew:active img { background-image : url(../graphics/standby/wn_standbyhov.gif); }
+
+a#webresources img { background-image : url(../graphics/standby/wr_standby.gif); }
+a#webresources:hover img,
+a#webresources:focus img,
+a#webresources:active img { background-image : url(../graphics/standby/wr_standbyhov.gif); }
+
+a#migrate img { background-image : url(../graphics/standby/mi_standby.gif); }
+a#migrate:hover img,
+a#migrate:focus img,
+a#migrate:active img { background-image : url(../graphics/standby/mi_standbyhov.gif); }
+
+a#workbench img { background-image : url(../graphics/standby/wb_standby.gif); }
+a#workbench:hover img,
+a#workbench:focus img,
+a#workbench:active img { background-image : url(../graphics/standby/wb_standbyhov.gif); }
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/tutorials.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/tutorials.css
new file mode 100644
index 0000000..8ae9294
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/tutorials.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+	display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#tutorials img {
+	background-image : url(../graphics/icons/ctool/tutorials-select.png); 
+	width : 64px;
+	height: 64px;
+	margin-top : 12px
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#tutorials img {
+	background-image : url(../graphics/icons/ctool/tutorials-select.gif); 
+}
+
+#navigation-links a.high-contrast#tutorials img {
+	display : none;
+}
+
+.page {
+	background-image: url(../graphics/contentpage/tu_banner.jpg);
+}
+
+#navigation-links #tutorials .link-label {
+	display : none;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/webresources.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/webresources.css
new file mode 100644
index 0000000..0e19a44
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/webresources.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+	display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#webresources img {
+	background-image : url(../graphics/icons/ctool/webresources-select.png); 
+	width : 64px;
+	height: 64px;
+	margin-top : 12px
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#webresources img {
+	background-image : url(../graphics/icons/ctool/webresources-select.gif); 
+}
+
+#navigation-links a#.high-contrast#webresources img {
+	display : none;
+}
+
+.page {
+	background-image: url(../graphics/contentpage/wr_banner.jpg);
+}
+
+#navigation-links #webresources .link-label {
+	display : none;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/whatsnew.css b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/whatsnew.css
new file mode 100644
index 0000000..01d5b97
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/whatsnew.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+	display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#whatsnew img {
+	background-image : url(../graphics/icons/ctool/whatsnew-select.png); 
+	width : 64px;
+	height: 64px;
+	margin-top : 12px;
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#whatsnew img {
+	background-image : url(../graphics/icons/ctool/whatsnew-select.gif); 
+}
+
+#navigation-links a#.high-contrast#whatsnew img {
+	display : none;
+}
+
+.page {
+	background-image: url(../graphics/contentpage/wn_banner.jpg);
+}
+
+#navigation-links #whatsnew .link-label {
+	display : none;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/preview.png b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/preview.png
new file mode 100644
index 0000000..79d7066
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/preview.png
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/firststeps.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/firststeps.properties
new file mode 100644
index 0000000..f294360
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/firststeps.properties
@@ -0,0 +1,18 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+firststeps.page-content.layout.vspacing = 40 
+firststeps.page-content.layout.ncolumns = 2
+firststeps.page-content.page-title.layout.colspan = 2
+firststeps.page-content.page-description.layout.colspan = 2
+firststeps.page-content.content-divider.layout.colspan = 2
+firststeps.subtitle-id = firststeps/page-content/page-title
+firststeps.description-id = firststeps/page-content/page-description
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/migrate.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/migrate.properties
new file mode 100644
index 0000000..6de0f5c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/migrate.properties
@@ -0,0 +1,18 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+migrate.page-content.layout.vspacing = 40 
+migrate.page-content.layout.ncolumns = 2
+migrate.page-content.page-title.layout.colspan = 2
+migrate.page-content.page-description.layout.colspan = 2
+migrate.page-content.content-divider.layout.colspan = 2
+
+migrate.subtitle-id = migrate/page-content/page-title
+migrate.description-id = migrate/page-content/page-description
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/overview.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/overview.properties
new file mode 100644
index 0000000..43e9398
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/overview.properties
@@ -0,0 +1,18 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+overview.page-content.layout.ncolumns = 2
+overview.page-content.page-title.layout.colspan = 2
+overview.page-content.page-description.layout.colspan = 2
+overview.page-content.content-divider.layout.colspan = 2
+
+overview.subtitle-id = overview/page-content/page-title
+overview.description-id = overview/page-content/page-description
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/root.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/root.properties
new file mode 100644
index 0000000..3dbf653
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/root.properties
@@ -0,0 +1,51 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+theme=true
+root.links-background.page-links.overview.link-icon = ../graphics/icons/ctool/overview.png
+root.links-background.page-links.tutorials.link-icon = ../graphics/icons/ctool/tutorials.png
+root.links-background.page-links.samples.link-icon= ../graphics/icons/ctool/samples.png
+root.links-background.page-links.whatsnew.link-icon = ../graphics/icons/ctool/whatsnew.png
+root.links-background.page-links.firststeps.link-icon = ../graphics/icons/ctool/firststeps.png
+root.links-background.page-links.migrate.link-icon = ../graphics/icons/ctool/migrate.png
+root.links-background.page-links.webresources.link-icon = ../graphics/icons/ctool/webresources.png
+root.action-links.workbench.link-icon = ../graphics/icons/ctool/workbench.png
+
+root.links-background.page-links.overview.hover-icon = ../graphics/icons/ctool/overview.png
+root.links-background.page-links.tutorials.hover-icon = ../graphics/icons/ctool/tutorials.png
+root.links-background.page-links.samples.hover-icon = ../graphics/icons/ctool/samples.png
+root.links-background.page-links.whatsnew.hover-icon = ../graphics/icons/ctool/whatsnew.png
+root.links-background.page-links.firststeps.hover-icon = ../graphics/icons/ctool/firststeps.png
+root.links-background.page-links.migrate.hover-icon = ../graphics/icons/ctool/migrate.png
+root.links-background.page-links.webresources.hover-icon = ../graphics/icons/ctool/webresources.png
+root.action-links.workbench.hover-icon = ../graphics/icons/ctool/workbench.png
+
+root.links-background.page-links.overview.small-link-icon = ../graphics/icons/ctool/ov_nav.png
+root.links-background.page-links.tutorials.small-link-icon = ../graphics/icons/ctool/tu_nav.png
+root.links-background.page-links.samples.small-link-icon = ../graphics/icons/ctool/sa_nav.png
+root.links-background.page-links.whatsnew.small-link-icon = ../graphics/icons/ctool/wn_nav.png
+root.links-background.page-links.firststeps.small-link-icon = ../graphics/icons/ctool/fs_nav.png
+root.links-background.page-links.migrate.small-link-icon = ../graphics/icons/ctool/mi_nav.png
+root.links-background.page-links.webresources.small-link-icon = ../graphics/icons/ctool/wr_nav.png
+root.action-links.workbench.small-link-icon = ../graphics/icons/ctool/wb_nav.png
+
+root.links-background.page-links.overview.small-hover-icon = ../graphics/icons/ctool/ov_nav.png
+root.links-background.page-links.tutorials.small-hover-icon = ../graphics/icons/ctool/tu_nav.png
+root.links-background.page-links.samples.small-hover-icon = ../graphics/icons/ctool/sa_nav.png
+root.links-background.page-links.whatsnew.small-hover-icon = ../graphics/icons/ctool/wn_nav.png
+root.links-background.page-links.firststeps.small-hover-icon = ../graphics/icons/ctool/fs_nav.png
+root.links-background.page-links.migrate.small-hover-icon = ../graphics/icons/ctool/mi_nav.png
+root.links-background.page-links.webresources.small-hover-icon = ../graphics/icons/ctool/wr_nav.png
+root.action-links.workbench.small-hover-icon = ../graphics/icons/ctool/wb_nav.png
+
+
+root.layout.ncolumns = 1
+root.links-background.page-links.layout.hspacing = 40
+root.layout.vspacing = 35
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/samples.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/samples.properties
new file mode 100644
index 0000000..da16d12
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/samples.properties
@@ -0,0 +1,21 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+samples.page-content.layout.vspacing = 40
+samples.page-content.layout.ncolumns = 2
+samples.page-content.layout.equalWidth = true
+samples.page-content.page-title.layout.colspan = 2
+samples.page-content.page-description.layout.colspan = 2
+samples.page-content.content-divider.layout.colspan = 2
+
+description-style-id = group-description
+samples.subtitle-id = samples/page-content/page-title
+samples.description-id = samples/page-content/page-description
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/standby.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/standby.properties
new file mode 100644
index 0000000..0a474d2
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/standby.properties
@@ -0,0 +1,24 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+theme = true
+standby.links-background.page-links.overview.link-icon = ../graphics/icons/ctool/ov_nav.png
+standby.links-background.page-links.firststeps.link-icon = ../graphics/icons/ctool/fs_nav.png
+standby.links-background.page-links.tutorials.link-icon = ../graphics/icons/ctool/tu_nav.png
+standby.links-background.page-links.samples.link-icon = ../graphics/icons/ctool/sa_nav.png
+standby.links-background.page-links.whatsnew.link-icon = ../graphics/icons/ctool/wn_nav.png
+standby.links-background.page-links.migrate.link-icon = ../graphics/icons/ctool/mi_nav.png
+standby.links-background.page-links.webresources.link-icon = ../graphics/icons/ctool/wr_nav.png
+standby.links-background.page-links.workbench.link-icon = ../graphics/icons/ctool/wb_nav.png
+
+standby.links-background.page-links.layout.vspacing = 30
+standby.layout.vspacing = 35
+standby.show-link-description = false
+standby.show-home-page-navigation = false
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/tutorials.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/tutorials.properties
new file mode 100644
index 0000000..b7e1492
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/tutorials.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+tutorials.page-content.layout.vspacing = 40
+tutorials.page-content.layout.ncolumns = 2
+tutorials.page-content.layout.equalWidth = true
+tutorials.page-content.page-title.layout.colspan = 2
+tutorials.page-content.page-description.layout.colspan = 2
+tutorials.page-content.content-divider.layout.colspan = 2
+tutorials.subtitle-id = tutorials/page-content/page-title
+tutorials.description-id = tutorials/page-content/page-description
\ No newline at end of file
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/webresources.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/webresources.properties
new file mode 100644
index 0000000..1bba0e8
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/webresources.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+webresources.page-content.layout.vspacing = 40 
+webresources.page-content.layout.ncolumns = 2
+webresources.page-content.page-title.layout.colspan = 2
+webresources.page-content.page-description.layout.colspan = 2
+webresources.page-content.content-divider.layout.colspan = 2
+
+webresources.subtitle-id = webresources/page-content/page-title
+webresources.description-id = webresources/page-content/page-description
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/whatsnew.properties b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/whatsnew.properties
new file mode 100644
index 0000000..28c5acf
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/whatsnew.properties
@@ -0,0 +1,24 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+theme = true
+whatsnew.page-content.layout.vspacing = 40
+whatsnew.page-content.layout.ncolumns = 2
+whatsnew.page-content.layout.equalWidth = true
+whatsnew.page-content.page-title.layout.colspan = 2
+whatsnew.page-content.page-description.layout.colspan = 2
+whatsnew.page-content.content-divider.layout.colspan = 2
+
+whatsnew.separator.fg =  #dfdfe4
+
+whatsnew.link-icon = ../graphics/icons/obj48/new_obj.gif
+whatsnew.hover-icon = ../graphics/icons/obj48/newhov_obj.gif
+
+whatsnew.subtitle-id = whatsnew/page-content/page-title
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/universal.jar b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/universal.jar
new file mode 100644
index 0000000..620ad46
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/universal.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.navigator.resources_3.4.400.v20120705-114010.jar b/lib/monitor-x86/plugins/org.eclipse.ui.navigator.resources_3.4.400.v20120705-114010.jar
new file mode 100644
index 0000000..55d4d7d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.navigator.resources_3.4.400.v20120705-114010.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.navigator_3.5.200.v20120705-114103.jar b/lib/monitor-x86/plugins/org.eclipse.ui.navigator_3.5.200.v20120705-114103.jar
new file mode 100644
index 0000000..e96146c
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.navigator_3.5.200.v20120705-114103.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.net_1.2.101.v20120914-093638.jar b/lib/monitor-x86/plugins/org.eclipse.ui.net_1.2.101.v20120914-093638.jar
new file mode 100644
index 0000000..d90264d
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.net_1.2.101.v20120914-093638.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.views.properties.tabbed_3.5.300.v20120912-132807.jar b/lib/monitor-x86/plugins/org.eclipse.ui.views.properties.tabbed_3.5.300.v20120912-132807.jar
new file mode 100644
index 0000000..2068602
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.views.properties.tabbed_3.5.300.v20120912-132807.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.views_3.6.100.v20120705-114010.jar b/lib/monitor-x86/plugins/org.eclipse.ui.views_3.6.100.v20120705-114010.jar
new file mode 100644
index 0000000..28573c7
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.views_3.6.100.v20120705-114010.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.workbench.texteditor_3.8.0.v20120523-1310.jar b/lib/monitor-x86/plugins/org.eclipse.ui.workbench.texteditor_3.8.0.v20120523-1310.jar
new file mode 100644
index 0000000..a776ee2
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.workbench.texteditor_3.8.0.v20120523-1310.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui.workbench_3.104.0.v20130204-164612.jar b/lib/monitor-x86/plugins/org.eclipse.ui.workbench_3.104.0.v20130204-164612.jar
new file mode 100644
index 0000000..f56c2b5
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui.workbench_3.104.0.v20130204-164612.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.ui_3.104.0.v20121024-145224.jar b/lib/monitor-x86/plugins/org.eclipse.ui_3.104.0.v20121024-145224.jar
new file mode 100644
index 0000000..5d53c3f
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.ui_3.104.0.v20121024-145224.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.eclipse.update.configurator_3.3.200.v20120912-144026.jar b/lib/monitor-x86/plugins/org.eclipse.update.configurator_3.3.200.v20120912-144026.jar
new file mode 100644
index 0000000..17d3fb2
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.eclipse.update.configurator_3.3.200.v20120912-144026.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.sat4j.core_2.3.0.v20110329.jar b/lib/monitor-x86/plugins/org.sat4j.core_2.3.0.v20110329.jar
new file mode 100644
index 0000000..019572a
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.sat4j.core_2.3.0.v20110329.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.sat4j.pb_2.3.0.v20110329.jar b/lib/monitor-x86/plugins/org.sat4j.pb_2.3.0.v20110329.jar
new file mode 100644
index 0000000..cf7bb36
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.sat4j.pb_2.3.0.v20110329.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.w3c.css.sac_1.3.1.v200903091627.jar b/lib/monitor-x86/plugins/org.w3c.css.sac_1.3.1.v200903091627.jar
new file mode 100644
index 0000000..2144c3a
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.w3c.css.sac_1.3.1.v200903091627.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.w3c.dom.smil_1.0.0.v200806040011.jar b/lib/monitor-x86/plugins/org.w3c.dom.smil_1.0.0.v200806040011.jar
new file mode 100644
index 0000000..a1c8a83
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.w3c.dom.smil_1.0.0.v200806040011.jar
Binary files differ
diff --git a/lib/monitor-x86/plugins/org.w3c.dom.svg_1.1.0.v201011041433.jar b/lib/monitor-x86/plugins/org.w3c.dom.svg_1.1.0.v201011041433.jar
new file mode 100644
index 0000000..99cfac1
--- /dev/null
+++ b/lib/monitor-x86/plugins/org.w3c.dom.svg_1.1.0.v201011041433.jar
Binary files differ
diff --git a/lib/monitor-x86/readme/readme_eclipse.html b/lib/monitor-x86/readme/readme_eclipse.html
new file mode 100644
index 0000000..9911324
--- /dev/null
+++ b/lib/monitor-x86/readme/readme_eclipse.html
@@ -0,0 +1,2203 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
+<title>Eclipse Project Release Notes 4.2</title>
+</head>
+<body>
+
+<h1>Eclipse Project Release Notes</h1>
+<p>Release 4.2.0<br/>
+  Last revised June 8th, 2012</p>
+<p align="left"><strong>This software is OSI Certified Open Source Software.<br/>
+OSI Certified is a certification mark of the Open Source Initiative.&nbsp;</strong></p>
+<blockquote>
+  <p align="left"><a href="#TargetOperatingEnvironments">1. Target Operating
+  Environments</a><br/>
+  <a href="#Compatibility">2. Compatibility with Previous
+  Releases</a><br/>
+  <a href="#KnownIssues">3. Known Issues</a><br/>
+  <a href="#RunningEclipse">4. Running Eclipse</a><br/>
+  <a href="#Upgrading">5. Upgrading a Workspace from a Previous Release</a><br/>
+  <a href="#InteroperabilityWithPreviousReleases">6. Interoperability with
+  Previous Releases</a><br/>
+  </p>
+</blockquote>
+
+<h2>1. <a name="TargetOperatingEnvironments"></a>Target Operating Environments</h2>
+<p>In order to remain current, each Eclipse Project release targets reasonably current
+  operating environments.</p>
+<p>Most of the Eclipse SDK is &quot;pure&quot; Java code and has no direct dependence
+  on the underlying operating system. The chief dependence is therefore on the
+  Java Platform itself. Portions are targeted to specific classes of operating
+  environments, requiring their source code to only reference facilities available
+  in particular class libraries (e.g. J2ME Foundation 1.1, J2SE 1.4, Java 5, etc).</p>
+<p>In general, the 4.2 release of the Eclipse Project is developed on
+  Java SE 6 VMs. As such, the Eclipse SDK as a whole is targeted at all modern, desktop Java VMs. 
+  Most functionality is available for Java SE 6 level development everywhere, and extended development capabilities are made
+  available on the VMs that support them.</p>
+<p><a href="#appendix">Appendix 1</a> contains a table that indicates the class
+  library level required for each bundle.</p>
+<p>There are many different implementations of the Java Platform running atop
+  a variety of operating systems. We focus our testing on a handful of
+  popular combinations of operating system and Java Platform; these are our <em>reference
+  platforms</em>. Eclipse undoubtedly runs fine in many operating environments
+  beyond the reference platforms we test. However, since we do not systematically test
+  them we cannot vouch for them. Problems encountered when running Eclipse on a
+  non-reference platform that cannot be recreated on any reference platform will
+  be given lower priority than problems with running Eclipse on a reference platform.</p>
+<p>Eclipse 4.2 is tested and validated on the following reference platforms
+  (this list is updated over the course of the release cycle):</p>
+<style type="text/css">
+	table.platforms {
+		border-width: 1px;
+		border-spacing: 0px;
+		border-style: solid;
+		border-collapse: separate;
+	}
+	table.platforms th {
+		border-width: 1px;
+		padding: 3px;
+		border-style: inset;
+		border-color: black;
+		background-color: #B9A9FF;
+	}
+	table.platforms td {
+		border-width: 1px 1px 1px 1px;
+		padding: 3px 3px 3px 3px;
+		border-style: inset inset inset inset;
+		border-color: gray gray gray gray;
+	}
+	table.platforms tr.c0 td {
+		background-color: #FDFDFD;
+	}
+	table.platforms tr.c1 td {
+		background-color: #F4EEFF;
+	}
+</style>
+<center>
+	<table class="platforms">
+		<tr>
+			<th>Operating System</th>
+			<th>Version</th>
+			<th>Hardware</th>
+			<th>JRE</th>
+			<th>Windowing System</th>
+		</tr>
+		<!-- ************ WINDOWS ************** -->
+		<tr class="c0">
+			<td rowspan="4">Windows</td>
+			<td rowspan="2">7</td>
+			<td rowspan="1">x86 32-bit</td>
+			<td rowspan="4">Oracle Java 7 Update 2<br/>
+				Oracle Java 6 Update 27<br/>
+				IBM Java 6 SR9
+			</td>
+			<td rowspan="4">Win32</td>
+		</tr>
+		<tr>
+			<td rowspan="1">x86 64-bit</td>
+		</tr>
+		<tr class="c0">
+			<td rowspan="2">XP</td>
+			<td rowspan="1">x86 32-bit</td>
+		</tr>
+		<tr class="c0">
+			<td rowspan="1">x86 64-bit</td>
+		</tr>
+		<!-- ************ RHEL ************** -->
+		<tr class="c1">
+			<td rowspan="3">Red Hat Enterprise Linux</td>
+			<td rowspan="3">6</td>
+			<td rowspan="1">x86 32-bit</td>
+			<td rowspan="2">
+			    Oracle Java 7 Update 2<br/>
+			    Oracle Java 6 Update 27<br/>
+				IBM Java 6 SR9
+			</td>
+			<td rowspan="3">GTK</td>
+		</tr>
+		<tr class="c1">
+			<td rowspan="1">x86 64-bit</td>
+		</tr>
+		<tr class="c1">
+			<td rowspan="1">Power 64-bit</td>
+			<td>IBM Java 6 SR9</td>
+		</tr>
+		<!-- ************ SLES ************** -->
+		<tr class="c0">
+			<td rowspan="3">SUSE Linux Enterprise Server</td>
+			<td rowspan="3">11</td>
+			<td rowspan="1">x86 32-bit</td>
+			<td rowspan="2">Oracle Java 6 Update 27<br/>
+				IBM Java 6 SR9
+			</td>
+			<td rowspan="3">GTK</td>
+		</tr>
+		<tr class="c0">
+			<td rowspan="1">x86 64-bit</td>
+		</tr>
+		<tr class="c0">
+			<td rowspan="1">Power 64-bit</td>
+			<td>IBM Java 6 SR9</td>
+		</tr>
+		<!-- ************ Ubuntu ************** -->
+		<tr class="c1">
+			<td rowspan="2">Ubuntu Long Term Support</td>
+			<td rowspan="2">10.04</td>
+			<td rowspan="1">x86 32-bit</td>
+			<td rowspan="2">Oracle Java 6 Update 27<br/>
+				IBM Java 6 SR9
+			</td>
+			<td rowspan="2">GTK</td>
+		</tr>
+		<tr class="c1">
+			<td rowspan="1">x86 64-bit</td>
+		</tr>
+		<!-- ************ Solaris ************** -->
+		<tr class="c0">
+			<td rowspan="2">Oracle Solaris</td>
+			<td rowspan="2">11</td>
+			<td rowspan="1">x86 32-bit</td>
+			<td rowspan="2">Oracle Java 6 Update 27</td>
+			<td rowspan="2">GTK</td>
+		</tr>
+		<tr class="c0">
+			<td rowspan="1">SPARC 32-bit</td>
+		</tr>
+		<!-- ************ HPUX ************** -->
+		<tr class="c1">
+			<td rowspan="1">HP-UX</td>
+			<td rowspan="1">11i v3</td>
+			<td rowspan="1">ia64 32-bit</td>
+			<td rowspan="1">HP-UX Java 6 Update 10</td>
+			<td rowspan="1">GTK</td>
+		</tr>
+		<!-- ************ AIX ************** -->
+		<tr class="c0">
+			<td rowspan="1">IBM AIX</td>
+			<td rowspan="1">7.1</td>
+			<td rowspan="1">Power 64-bit</td>
+			<td rowspan="1">IBM Java 6 SR9</td>
+			<td rowspan="1">GTK</td>
+		</tr>
+		<!-- ************ Mac ************** -->
+		<tr class="c1">
+			<td rowspan="2">Apple Mac OS X</td>
+			<td rowspan="2">10.6</td>
+			<td rowspan="1">Universal 32-bit</td>
+			<td rowspan="2">Apple Java 10.6 Update 5</td>
+			<td rowspan="2">Cocoa</td>
+		</tr>
+		<tr class="c1">
+			<td rowspan="1">Universal 64-bit</td>
+		</tr>
+	</table>
+ </center>
+
+<p>As stated above, <i>we expect that Eclipse works fine on other current
+  Java VM and OS versions but we cannot flag these as reference platforms without
+  significant community support for testing them.</i></p>
+
+<p>The Eclipse SDK is designed as the basis for internationalized products. The
+  user interface elements provided by the Eclipse SDK components, including dialogs
+  and error messages, are externalized. The English strings are provided as the
+  default resource bundles.</p>
+<p>Latin-1, DBCS, and BiDi locales are supported by the Eclipse SDK on all reference platforms.</p>
+<p>The Eclipse SDK supports GB 18030 (level 1), the Chinese code page standard,
+  on Windows, Linux and the Macintosh.</p>
+<p>German and Japanese locales are tested.</p>
+
+<h2>2. <a name="Compatibility"></a>Compatibility with Previous Releases</h2>
+<h3>Compatibility of Release 4.2 with 3.8</h3>
+<p>Eclipse 4.2 is compatible with Eclipse 3.8 (and all earlier 3.x versions).</p>
+
+<p><strong>API Contract Compatibility:</strong> Eclipse SDK 4.2 is upwards
+  contract-compatible with Eclipse SDK 3.8 except in those areas noted in the
+  <a href="http://git.eclipse.org/c/platform/eclipse.platform.common.git/plain/bundles/org.eclipse.platform.doc.isv/porting/eclipse_4_2_porting_guide.html?h=R4_HEAD" target="_top">
+    <em>Eclipse 4.2 Plug-in Migration Guide</em>
+  </a>. Programs that use affected APIs and extension points will need to be ported
+  to Eclipse SDK 4.2 APIs. Downward contract compatibility
+  is not supported. There is no guarantee that compliance with Eclipse SDK 4.2
+  APIs would ensure compliance with Eclipse SDK 3.8 APIs. Refer to
+  <a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">
+    <em>Evolving Java-based APIs</em>
+  </a> for a discussion of the kinds of API changes that maintain contract compatibility.</p>
+  
+<p><strong>Binary (plug-in) Compatibility:</strong> Eclipse SDK 4.2 is upwards
+  binary-compatible with Eclipse SDK 3.8 except in those areas noted in the
+  <a href="http://git.eclipse.org/c/platform/eclipse.platform.common.git/plain/bundles/org.eclipse.platform.doc.isv/porting/eclipse_4_2_porting_guide.html?h=R4_HEAD" target="_top">
+    <em>Eclipse 4.2 Plug-in Migration Guide</em>
+  </a>. Downward plug-in compatibility is not supported. Plug-ins for Eclipse SDK
+  4.2 will not be usable in Eclipse SDK 3.8. Refer to
+  <a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">
+    <em>Evolving Java-based APIs</em>
+  </a> for a discussion of the kinds of API changes that maintain binary compatibility.</p>
+  
+<p><strong>Source Compatibility:</strong> Eclipse SDK 4.2 is upwards source-compatible
+  with Eclipse SDK 3.8 except in the areas noted in the
+  <a href="http://git.eclipse.org/c/platform/eclipse.platform.common.git/plain/bundles/org.eclipse.platform.doc.isv/porting/eclipse_4_2_porting_guide.html?h=R4_HEAD" target="_top">
+    <em>Eclipse 4.2 Plug-in Migration Guide</em>
+  </a>. This means that source files written
+  to use Eclipse SDK 3.8 APIs might successfully compile and run against Eclipse
+  SDK 4.2 APIs, although this is not guaranteed. Downward source compatibility
+  is not supported. If source files use new Eclipse SDK APIs, they will not be
+  usable with an earlier version of the Eclipse SDK. </p>
+  
+<p><strong>Workspace Compatibility:</strong> Eclipse SDK 4.2 is upwards
+  workspace-compatible with earlier 3.x and 4.x versions of the Eclipse SDK unless noted.
+  This means that workspaces and projects created with Eclipse SDK 4.1, 4.0, 3.8 .. 3.0 can be successfully
+  opened by Eclipse SDK 4.2 and upgraded to a 4.2 workspace. This includes both
+  hidden metadata, which is localized to a particular workspace, as well as metadata
+  files found within a workspace project (e.g., the .project file), which may
+  propagate between workspaces via file copying or team repositories. Individual
+  plug-ins developed for Eclipse SDK 4.2 should provide similar upwards compatibility
+  for their hidden and visible workspace metadata created by earlier versions;
+  4.2 plug-in developers are responsible for ensuring that their plug-ins recognize
+  metadata from earlier versions and process it appropriately. User
+  interface session state may be discarded when a workspace is upgraded. Downward
+  workspace compatibility is not supported. A workspace created (or opened) by
+  a product based on Eclipse 4.2 will be unusable with a product based on an earlier
+  version of Eclipse. Visible metadata files created (or overwritten) by Eclipse
+  4.2 will generally be unusable with earlier versions of Eclipse. </p>
+  
+<p><strong>Non-compliant usage of API's</strong>: All non-API methods and classes,
+  and certainly everything in a package with &quot;internal&quot; in its name or
+  x-internal in the bundle manifest entry,
+  are considered implementation details which may vary between operating environment
+  and are subject to change without notice. Client plug-ins that directly depend
+  on anything other than what is specified in the Eclipse SDK API are inherently
+  unsupportable and receive no guarantees about compatibility within a single
+  release much less with earlier releases. Refer to
+  <a href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">
+    <em>How to Use the Eclipse API</em>
+  </a> for information about how to write compliant plug-ins. </p>
+
+<h2>3. <a name="KnownIssues"></a> Known Issues</h2>
+<blockquote>
+  <a href="#I-General">
+  3.1 General problems</a><br/>
+  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#I-General-Startup">3.1.1 Startup</a><br/>
+  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#I-General-GCJ">3.1.2 GCJ</a><br/>
+  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#I-General-64bitJava">3.1.3 64-bit Java HotSpot(TM) VM</a><br/>
+  <a href="#I-Platform">3.2 Platform</a><br/>
+  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#I-Platform-Core">3.2.1 Core</a><br/>
+
+  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#I-Platform-Ant">3.2.2 Ant</a><br/>
+  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#I-Platform-User-Assistance">3.2.3 User Assistance</a><br/>
+  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#I-Platform-UI">3.2.4 UI</a><br/>
+  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#I-Platform-Text">3.2.5 Text</a><br/>
+  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#I-Platform-SWT">3.2.6 SWT</a><br/>
+
+  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#I-Platform-Team-CVS">3.2.7 Team and CVS</a><br/>
+  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#I-Platform-Install-Update">3.2.8  Install/Update</a><br/>
+  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#I-Platform-Debug">3.2.9 Debug</a><br/>
+  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#I-Platform-Compare">3.2.10 Compare</a><br/>
+  <a href="#I-JDT">
+  3.3 Java development tools (JDT)</a><br/>
+  <a href="#I-PDE">
+  3.4 Plug-in Development Environment (PDE)</a><br/>
+
+</blockquote>
+<p>Note: Bug numbers refer to the Eclipse project bug database at <a href="http://dev.eclipse.org/bugs/">http://bugs.eclipse.org/bugs/</a></p>
+
+<h3>3.1 <a name="I-General">General problems</a></h3>
+
+<h3>3.1.1 <a name="I-General-Startup">General - Startup</a></h3>
+<h4>Installation/Configuration issues that can cause Eclipse to fail start</h4>
+<p>Here are some common problems that can cause Eclipse not to start:</p>
+<ul>
+  <li>As shown <a href="#TargetOperatingEnvironments">above</a>, Eclipse 4.2 requires 
+    at least a Java SE 6. Perhaps an older version of the VM is being found in 
+    your path. To explicitly specify which VM to run with, use the Eclipse <tt>-vm</tt> 
+    command-line argument. (See also the <a href="#RunningEclipse">Running Eclipse</a> 
+    section below.)</li>
+  <li>
+    Running Eclipse on Gentoo Linux may result in the following error message:
+    <div style="margin-left: 40px;">
+<tt>* run-java-tool is not available for sun-jdk-1.6 on i686<br/>* IMPORTANT: some Java tools are not available on some VMs on some architectures</tt>
+    </div>
+
+If this occurs, start Eclipse by specifying a -vm argument, either
+specify the path to a java vm or use: <tt>eclipse -vm `java-config</tt>
+--java` (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=176021">176021</a>)</li>
+<li>Eclipse must be installed to a clean directory and not installed over top of
+a previous installation. If you have done this then please re-install to a new
+directory. If your workspace is in a child directory of your old installation
+directory, then see the instructions below on "<a href="#upgrading">Upgrading Workspace from a
+Previous Release"</a>.</li>
+
+<li>Java sometimes has difficulty detecting whether a file system is writable. In
+particular, the method java.io.File.canWrite() appears to return true in
+unexpected cases (e.g., using Windows drive sharing where the share is a
+read-only Samba drive). The Eclipse runtime generally needs a writable
+configuration area and as a result of this problem, may erroneously detect the
+current configuration location as writable. The net result is that Eclipse will
+fail to start and depending on the circumstances, may fail to write a log file
+with any details. To work around this, we suggest users experiencing this
+problem set their configuration area explicitly using the <tt>-configuration</tt> command
+line argument. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=67719">67719</a>)</li>
+</ul>
+
+<h4><b>Invalid characters in install directory prevents Eclipse from starting</b></h4>
+<p>Eclipse will fail to launch if installed in a directory whose path
+contains certain invalid characters, including :%#&lt;&gt;&quot;!. The
+workaround is to install Eclipse in a directory whose path does not contain
+invalid characters. (bugs <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=3109">3109</a>
+and <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=17281">17281</a>)</p>
+
+<h4>Hanging during class loading when out of permanent generation memory</h4>
+<p>
+The Sun VM may hang indefinitely during class loading if it runs out of permanent
+generation memory.  This will cause CPU usage to stay at 100% until the process
+is ended.  See the section <a href="#RunningEclipse">Running Eclipse</a> for details
+on addressing this VM problem.
+</p>
+
+<h3>3.1.2 <a name="I-General-GCJ">General - GCJ</a></h3>
+<p>GCJ is an effort by the GCC team to provide an open source Java compiler and
+runtime environment to interpret Java bytecode. Unfortunately, the GCJ runtime
+environment is not an environment that is often tested on by Eclipse developers.</p>
+
+<p>The most common problems surrounding GCJ are:</p>
+<ul>
+<li>Eclipse does not start at all</li>
+<li>Eclipse throws a 'java.lang.ClassNotFoundException: org.eclipse.core.runtime.Plugin' that can be found in the logs (located in
+workspace/.metadata/.log)</li>	
+</ul>
+
+<p>The workspace's log file is a good place to check to identify whether GCJ is
+being used or not. Every Eclipse log session is prepended with
+information about the runtime environment that was used to run Eclipse. The log
+may include something like the following:</p>
+
+<code>java.fullversion=GNU libgcj 4.2.1 (Debian 4.2.1-5)</code>
+
+<p>If Eclipse does start, one can check which runtime environment is being used to
+run Eclipse by going to <b>Help &gt; About Eclipse SDK &gt; Installation Details &gt; Configuration</b>. The
+<b>About</b> dialog itself can also provide other information, the build identifier
+can be of particular interest as it is tagged by some distributions. This allows the
+user to identify whether Eclipse was downloaded through the distribution's
+package management system or directly from the eclipse.org web site.</p>
+
+Eg: <code>Build id: M20070212-1330 (Ubuntu version: 3.2.2-0ubuntu3)</code>
+
+<p>The two most common workarounds are:</p><ul>
+<li>download the Eclipse binary from eclipse.org directly</li>
+<li>run Eclipse using an alternate Java runtime environment</li></ul>
+
+<p>To download Eclipse, try one of the links below:</p><ul>
+<li><a href="http://www.eclipse.org/downloads/">http://www.eclipse.org/downloads/</a></li>
+<li><a href="http://download.eclipse.org/eclipse/downloads/">http://download.eclipse.org/eclipse/downloads/</a></li></ul>
+
+It is imperative that 64-bit builds are downloaded and used if a 64-bit Java
+runtime environment has been installed. Below are two sample tarball names of
+version 4.2 of the Eclipse SDK packaged for 32-bit and 64-bit processors.
+
+<pre>eclipse-SDK-4.2-linux-gtk.tar.gz (32-bit)
+eclipse-SDK-4.2-linux-gtk-x86_64.tar.gz (64-bit)</pre>
+
+<p>To run Eclipse with an alternate Java runtime environment, the path to the Java
+virtual machine's binary must be identified. With an Eclipse installation from
+the distribution, altering the $PATH variable to include the path to the
+alternate Java runtime environment is often not enough as the Eclipse that
+Linux distributions package often performs a scan internally to pick up GCJ by
+itself whilst ignoring what's on the $PATH. An example of the terminal's output
+is shown below:</p>
+
+<code>searching for compatible vm...<br/>
+  testing /usr/lib/jvm/java-7-icedtea...not found<br/>
+  testing /usr/lib/jvm/java-gcj...found</code>
+
+<p>Once the path to the virtual machine's binary has been identified, try running
+Eclipse with the following command:</p>
+
+<code>./eclipse -vm /path/to/jre/bin/java</code>
+
+<p>For an actual example, it might look something like the following:</p>
+
+<code>./eclipse -vm /usr/lib/jvm/sun-java-6/bin/java<br/>
+./eclipse -vm /opt/sun-jdk-1.6.0.02/bin/java</code>
+
+<p>If this seems to solve the problem, it is likely that the problem really was
+related to the use of GCJ as the Java runtime for running Eclipse. The
+eclipse.ini file located within Eclipse's folder can be altered to
+automatically pass this argument to Eclipse at startup. An example of its
+content is presented below:</p>
+
+<code>-showsplash<br/>
+org.eclipse.platform<br/>
+--launcher.XXMaxPermSize<br/>
+256m<br/>
+-vm<br/>
+/opt/sun-jdk-1.6.0.02/bin/java<br/>
+-vmargs<br/>
+-Xms40m<br/>
+-Xmx512m</code>
+
+<p>Note that every argument must be on its own line. More information about the
+eclipse.ini file can be found at <a href="http://wiki.eclipse.org/Eclipse.ini">http://wiki.eclipse.org/Eclipse.ini</a>.</p>
+
+<p>If problems persists after downloading an installation of Eclipse from
+eclipse.org and using a supported Java runtime environment (a list of which may be found <a href="#TargetOperatingEnvironments">above</a>), 
+you can seek further assistance through the <a href="http://www.eclipse.org/newsgroups/">newsgroups</a>, 
+the IRC <a href="irc://irc.freenode.net/#eclipse">channel</a>, 
+and/or <a href="https://bugs.eclipse.org/bugs/">bugzilla</a>.
+</p>
+
+<h3>3.1.3 <a name="I-General-64bitJava">General - 64-bit Java HotSpot(TM) VM</a></h3>
+<p>
+There is a known issue with the Java HotSpot(TM) 1.6.0 VM compiler which causes eclipse to 
+crash (see Sun bug <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6614100">http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6614100</a>,
+and Eclipse bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=214092">214092</a>).
+The crash usually occurs within a VM CompilerThread when attempting to compile the method org.eclipse.core.internal.dtree.DataTreeNode.forwardDeltaWith.
+</p>
+<p>
+This problem has been addressed in Sun Java 6 update 11, so the simplest resolution is
+to obtain the latest JRE release for your platform.
+To work around the issue you can exclude the method org.eclipse.core.internal.dtree.DataTreeNode.forwardDeltaWith from being compiled with the following
+VM argument:
+</p>
+
+<code>
+-XX:CompileCommand=exclude,org/eclipse/core/internal/dtree/DataTreeNode,forwardDeltaWith
+</code>
+
+<p>
+This VM argument can be placed in the eclipse.ini file after the -vmargs line like the following:
+</p>
+
+<code>
+-startup<br/>
+plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.0.200.v20090306-1900<br/>
+--launcher.library<br/>
+plugins/org.eclipse.equinox.launcher_1.0.200.v20090429-1630.jar<br/>
+-showsplash<br/>
+org.eclipse.platform<br/>
+--launcher.XXMaxPermSize<br/>
+256m<br/>
+-vmargs<br/>
+-XX:CompileCommand=exclude,org/eclipse/core/internal/dtree/DataTreeNode,forwardDeltaWith<br/>
+-Xms40m<br/>
+-Xmx256m<br/>
+</code>
+
+<p>
+There have been reports of other classes that cause the compiler to crash.  If all else fails you can 
+disable the compiler with the VM arg &quot;-Xint&quot;. 
+</p>
+
+<h3>3.2 <a name="I-Platform">Platform</a></h3>
+
+<h3>3.2.1 <a name="I-Platform-Core">Platform - Core</a></h3>
+
+<h4>Installing plug-ins by unzipping them into the plugins directory</h4>
+<p>New plug-ins can be installed into the system by unzipping them into the plugins
+directory. However this is not recommended, and the dropins directory should be
+used for this purpose instead. Note that unzipping a different
+version of a plug-in that is already installed will have no effect. To change the version
+of a plug-in installed in your system, you need to either perform an update, or install
+a feature patch.</p>
+
+<h4>No branding with old config.ini</h4>
+<p>If you have an old config.ini file and use it with a new Eclipse build, you
+may not get the correct product branding. This is because the id of the standard
+Eclipse product changed. Users in shared install scenarios may end up in this
+situation as previous builds of Eclipse automatically generated config.ini files
+in some cases. The work around is either to delete the local config.ini or
+update the eclipse.product line to read eclipse.product=org.eclipse.platform.ide.</p>
+
+<h4>Problems with classloaders in created threads</h4>
+<p>There is a known issue with trying to load classes from a newly-created
+thread using a class loader different from the plug-in class loader. The result
+will be a <code>ClassNotFoundException</code>. As a workaround, do the
+following:</p>
+<ol>
+  <li>Create a thread in which to run your code.</li>
+  <li>Send yourThread.setContextClassLoader(yourClassLoader); // you can find
+    your classloader by grabbing a class it loaded (YourPluginClass.class.getClassLoader())</li>
+  <li>Run your code in the newly created thread.</li>
+</ol>
+<p>If you set the context class loader for the current thread, you are
+competing with other users of the thread (all of Eclipse), so the results will
+be unpredictable. However, there should be no problem in practice provided you
+reset the context class loader back to its original value when your use in the
+current thread is&nbsp;complete. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=8907">8907</a>)</p>
+
+<h4>Deadlock creating executable extension in Plugin.startup</h4>
+<p>If <code>Plugin.startup</code> code is too complex and performs tasks such
+as creating an executable extension, a deadlock situation can be created. Only
+simple bookkeeping tasks should be performed in <code>Plugin.startup</code>
+code. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=5875">5875</a>)</p>
+<h4>Potential Problems Converting Plug-in Manifests</h4>
+<p>If your plug-in ships with a plug-in manifest and not an OSGi bundle manifest,
+is shipped as a JAR file, and contains a nested JAR file then there may be
+problems in the automatic generation of the bundle manifest file. The packages
+defined in the nested JAR may not be exported correctly in the <tt>Export-packages</tt>
+
+bundle manifest header. To work around this you should ship your plug-in with a
+bundle manifest. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=97689">97689</a>)</p>
+<h4>Location for Debug Options File on Mac OS</h4>
+<p>If you are running in debug mode on Mac OS, the default location for the
+.options file is inside the application bundle in the Eclipse.app/Contents/MacOS
+directory (like the eclipse.ini). (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=88782">88782</a>)</p>
+
+<h4>Issues with JNI that use FindClass</h4>
+<p>
+There may be issues when using a JNI implementation that uses FindClass 
+in a function where the JNIEnv pointer is not available, such as in a C 
+callback (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=125250">125250</a>).  The reason is that FindClass, in this case, uses the application
+class loader to find the class.
+If the desired class is in the classpath used for the application classloader
+(e.g. defined by the VM argument -cp &lt;classpath&gt;), as it would typically be in 
+a stand-alone application, there is no problem.  However, under
+Eclipse, the application classloader does not have access to classes 
+contained in plug-ins.  Eclipse uses its own class loader to find classes 
+contained in plug-ins.
+</p>
+<p>
+The proper plug-in class loader is used by FindClass in JNI functions which are 
+passed the JNIEnv pointer, but not when you have to use AttachCurrentThread to get the 
+JNIEnv pointer.  In this case the application classloader is used.
+</p>
+<p>
+For example, the following will fail because AttachCurrentThread is used to 
+get the JNIEnv pointer:</p>
+<pre>
+static JavaVM* jvm;  // Global variable
+
+void myCallback(void) {
+    JNIEnv* env;
+    jvm-&gt;AttachCurrentThread((void**)&amp;env, NULL);
+    // Fails if some/class is not in the application classloader:
+    jclass cls = env-&gt;FindClass(&quot;some/class&quot;);
+    jmethodID methodID = env-&gt;GetMethodID(cls, &quot;methodName&quot;,
+      &quot;(Ljava/lang/String;)V or whatever signature&quot;);
+    env-&gt;CallVoidMethod(callback, methodID, ...);
+    jvm-&gt;DetachCurrentThread();
+  }
+}
+</pre>
+<p>
+A solution is to cache the method ID, for example:
+</p>
+<pre>
+static jmethodID mid;  // Global variable
+
+JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *vm, void *reserved) {
+...
+  // Store the JavaVM pointer
+    jvm = vm;
+
+  // Find the class and store the method ID
+  // Will use the class loader that loaded the JNI library
+    jclass cls = env-&gt;FindClass(className&quot;some/class&quot;);
+    if(!cls) goto ERR;
+
+    mid = env-&gt;GetMethodID(cls, &quot;methodName&quot;,
+      &quot;(Ljava/lang/String;)V or whatever signature&quot;);
+    if(!mid) goto ERR;
+...
+}
+
+void myCallback(void) {
+    JNIEnv* env;
+    jvm-&gt;AttachCurrentThread((void**)&amp;env, NULL);
+    env-&gt;CallVoidMethod(callback, mid, ...);
+     // Handle error ...
+    jvm-&gt;DetachCurrentThread();
+  }
+}
+</pre>
+
+<h3>3.2.2 <a name="I-Platform-Ant">Platform - Ant</a></h3>
+<h4> Custom Ant tasks and Ant types must be separate from plug-in library JARs</h4>
+<p>Including the class files for custom Ant tasks or Ant types in the regular
+code JAR for your plug-in causes problems. These class files must be provided in
+a separate JAR that is contributed to the <code>org.eclipse.ant.core.antTasks</code>
+or <code>antTypes</code> extension point (and not declared as a library in the
+plug-in's manifest). This ensures that the Ant tasks and types are loaded by the
+special Ant class loader and not by a plug-in classloader. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=34466">34466</a>).</p>
+
+<h4> Concurrent Ant builds not supported</h4>
+<p>Eclipse can run Ant in the same JVM as the rest of Eclipse. Several aspects
+of Ant and its use of global Java resources (such as System.out and System.err),
+make it unsafe to run more than one Ant build concurrently in the same JVM. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=24129">24129</a>).</p>
+
+<h4>XDoclet support from within Eclipse</h4>
+<p>Since there are differences when running Ant from the commandline and within Eclipse, some extra steps may be needed to have XDoclet support function correctly within Eclipse. Problems may occur creating XDoclet subtasks. The workarounds and full discussion can be found in bug report. (bug
+<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=37070">37070</a>)</p>
+
+<h4>Ant Editor code completion based on Ant 1.6.x</h4>
+<p>Code completion provided by the Ant editor does not respect the user-specified version of org.eclipse.ant.core plug-in or ANT_HOME. 
+Code completion proposals are mostly based on Ant 1.6.x with some updates to Ant 1.8.3 (bug
+<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=193046">bug 193046</a>)</p>
+
+<h4> Setting build loggers not supported when debugging Ant builds</h4>
+<p>When debugging Ant builds within Eclipse, setting <code>-logger</code> as a program argument will be ignored.</p>
+
+<h4>Renaming an External Tool builder set to run during auto-build will cause errors</h4>
+<p>If you rename an existing external tool builder that is configured to run during auto-builds, you will get the following error:
+ Errors during build.
+      Errors running builder "Integrated External Tool Builder" on project
+      &lt;PROJECT_NAME&gt;.
+      The builder launch configuration could not be found.
+The workaround is to first disable the builder for auto-builds and then rename the builder.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=118294">118294</a>)</p>
+
+<h4>Slow typing/saving of the Ant editor with imports that define numerous macrodefs</h4>
+<p>The Ant editor is slow on saving with buildfiles that have &lt;import&gt; declarations of buildfiles that have numerous &lt;macrodef&gt;s.
+See bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=125117">125117</a> for a possible workaround</p>
+
+<h4>Failure to run Ant builds on non-Windows platforms if Eclipse installed in location with spaces in the path</h4>
+<p>Due to a bug in Ant 1.7.0, Ant builds will fail with an IllegalArgumentException if the Eclipse installation is in a location with spaces in the path.
+Embedded usage of Ant builds, such as plug-in export will also fail.
+See bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=187993">187993</a> for possible workarounds</p>
+
+<h4>Ant 1.8.x reports missing libraries as build failures</h4>
+<p>
+In Ant 1.8.x, if you try to use a task that requires additional libraries and you do not have the libraries on the Ant classpath, the build will now properly report as failed. 
+In previous versions of Ant, the build would still report that it had suceeded even though it actually failed to run any of the tasks from additional bundles. See <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=344518">bug 344518</a>.
+</p>
+<p>
+For more information on tasks that require additional bundles please refer to the <a href="http://www.apache.org/dist/ant/RELEASE-NOTES-apache-ant-1.8.2.html">Ant 1.8.2 release notes</a>
+and the <a href="http://ant.apache.org/manual/install.html#optionalTasks">Optional Tasks</a> section in the At manual. 
+</p>
+
+<h3>3.2.3 <a name="I-Platform-User-Assistance">Platform - User Assistance</a></h3>
+<h4>Welcome page not displayed properly (Linux/Unix)</h4>
+<p>The default Welcome implementation is HTML-based and requires a supported browser
+in order to work. If no supported browser can be found, Welcome falls back to its
+Forms-based implementation, which has a different (simpler) appearance. Consult the
+<a href="http://www.eclipse.org/swt/faq.php#browserplatforms">SWT FAQ</a> for supported
+browsers and setting up your browser to work with eclipse.
+</p>
+
+<h4>Help browser tool bar buttons do not work for some documents</h4>
+<p>The Help browser's Print, Synchronize, and Bookmark buttons do not work for
+pages that are not actually installed with the product. However, you can always
+use the print command in the browser's context menu to print the page you're
+reading. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=44216">44216</a>)</p>
+<h4> Help documents not displayed
+in a browser or very slow document loading (Windows only)</h4>
+
+If your LAN settings are not properly configured for local host access, your
+Help browser might open to a blank page or display an HTTP error instead of a
+help page, or you may experience long delays when loading help documents. Your
+system administrator can configure your LAN settings so that help documents can
+be accessed from the local help server.
+<blockquote>
+  <ol>
+    <li>In the Control Panel, open <b>Internet Options</b>, select the <b>Connections</b>
+      tab and choose <b>LAN Settings</b>.</li>
+    <li>If your host was configured to use DHCP for IP assignment, make sure
+      that the &quot;Automatically detect settings&quot; check box is cleared.</li>
+    <li>If you use a proxy server, ensure that the &quot;Bypass proxy server
+      for local addresses&quot; is selected.</li>
+    <li>In &quot;Advanced&quot; settings for proxies, add
+      &quot;127.0.0.1;localhost&quot; to the &quot;Exceptions&quot; if these
+      addresses are not listed.</li>
+    <li>If you are using an automatic configuration script for proxy
+      settings, and are not sure that the script is correct, clear the &quot;Use
+      automatic configuration script&quot; check box.</li>
+
+  </ol>
+</blockquote>
+<h4> Working disconnected from
+the network (Windows only)</h4>
+If you are experiencing problems when not connected to the network, you must
+install the loopback adapter from the Windows installation CD. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=831">831</a>)
+<h4> Using Internet Explorer in
+offline mode (Windows only)</h4>
+
+If you have been using Internet Explorer in Offline mode, when you access the
+help system you will get a message indicating that the web page you requested is
+not available offline or a blank page will display. Click <b>Connect</b> or
+deselect &quot;Work Offline&quot; in the Internet Explorer &quot;File&quot; menu
+to return the system behavior to normal.
+<h4>Help topics not highlighted in High Contrast mode (Windows only)</h4>
+<p>Windows High Contrast settings are not consistently picked up by Internet
+Explorer when they are set from the Accessibility Options utility as opposed to
+when they are set using the predefined schemes. On Windows XP, it is recommended
+to set High Contrast as follows: Right click the desktop, chose properties,
+select Windows Classic style from the Windows and buttons drop down on the
+Appearance tab, and choose your scheme (for example High Contrast Black) from
+Color Scheme drop down. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=28609">28609</a>)</p>
+
+<h3>3.2.4 <a name="I-Platform-UI">Platform - UI</a></h3>
+<h4>High contrast settings</h4>
+<p>Eclipse was tested for High Contrast using 1152 x 864 resolution in Windows
+XP High Contrast mode. You can select this mode by selecting Accessibility
+Options &gt; Display &gt; Use High Contrast from the Windows XP Control Panel
+menu.</p>
+
+<h4> Dirty state not tracked properly for OLE documents (Windows only)</h4>
+<p>The dirty state for an OLE document is not updated properly. This causes
+Eclipse to prompt to save the contents of the editor when the document is
+closed, even if the contents have already been saved. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=2564">2564</a>)</p>
+<h4> OLE document crashes can cause Eclipse to also crash (Windows only)</h4>
+<p>If an OLE document crashes, Eclipse can crash, or the workbench menus can
+become inconsistent.</p>
+<h4>Toolbars only containing contributed controls exhibit display errors on Mac/Linux</h4>
+<p>
+Currently there is no way on the Max or Linux platforms to define the <b>height</b> for controls contributed to
+toolbars, nor will those platforms respect the size returned by the control's <code>computeSize</code> method. If you
+encounter this issue there is currently no truly viable workaround.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=183003">183003</a>)
+</p>
+<h4>Customizing menus and toolbars not working reliably</h4>
+<p>
+The Customize Perspective Dialog can still be used to turn on action sets in the Command Groups Availability tab,
+but the items contained within the action sets are no longer displayed in the dialog.  The Toolbar Visibility
+and Menu Visibility no longer display the correct information or icons, and will not work correctly.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=378845">378845</a>)
+</p>
+<h4>Cannot launch a workbench with &quot;-data @none&quot;</h4>
+<p>
+Eclipse 3.x RCP apps cannot be launched with no workspace.  The workaround is to supply a /tmp directory to 
+<b>-data</b> when launching.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=380853">380853</a>)
+</p>
+<h4>Launching an inner eclipse can lead to PermGen errors</h4>
+<p>
+On some Oracle JVMs, launching an inner eclipse during plug-in development can lead to PermGen errors
+for the inner eclipse.  The native launcher checks the JVM  and can add <i>-XX:MaxPermSize=256m</i>,
+but PDE launches simply use java and don't go through the native launchers.  The workaround is to add
+the appropriate JVM arg to your launch config or to the <i>Preferences &gt; Java &gt; Installed JREs</i>.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=339763">339763</a>)
+</p>
+<h4>Eclipse doesn't exit dragging mode</h4>
+<p>
+Sometimes after releasing the mouse while dragging a part, eclipse doesn't exit drag mode.
+The workaround is to hit <b>ESC</b>.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=379590">379590</a>)
+</p>
+<h4>Some key shortcuts stop working after switching schemes</h4>
+<p>
+Sometimes after switching schemes (to and from Emacs) some keys will stop working or not function
+correctly (CTRL+L, CTRL+K, CTRL+A, etc).
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=378684">378684</a>)
+</p>
+<h4>Capabilities and Activities don't affect the menus and toolbars</h4>
+<p>
+Capabilities used to hide GUI elements like menu entries won't work yet, as Capabilities have not
+been fully implemented in the 4.2 Workbench.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=359778">359778</a>)
+</p>
+
+<h3>3.2.5 <a name="I-Platform-Text">Platform - Text</a></h3>
+None.
+
+<h3>3.2.6 <a name="I-Platform-SWT">Platform - SWT</a></h3>
+<h4>Eclipse plug-in based on the SWT Browser throws exception</h4>
+<p>The SWT Browser widget uses a platform-specific web browser to render HTML.
+The org.eclipse.swt.SWTError exception (&quot;No more handles&quot;) is thrown
+on platforms that don't meet the requirements for running the Browser widget.
+Supported platforms and prerequisites are listed on the SWT FAQ item <a href="http://www.eclipse.org/swt/faq.php#browserplatforms">
+&quot;Which platforms support the SWT Browser?&quot;</a>.</p>
+
+<h4>Opening File Dialog crashes eclipse (Vista only)</h4>
+<p>On Vista, launching eclipse using <code>-vmargs -Xmx[any size]</code> can crash eclipse when the FileDialog is opened.
+The workaround is to use the default heap size, i.e. do not use the <code>-Xmx</code> VM args.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=188317">188317</a>)</p>
+
+<h4>Crash while editing text (Windows XP with SP2 only)</h4>
+<p>Some users who have installed Service Pack 2 on Windows XP have experienced
+crashes while using editors in Eclipse.  The workaround is to place a working version 
+of Windows\System32\USP10.DLL in the Eclipse startup directory or uninstall
+Service Pack 2.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=56390">56390</a>)</p>
+
+<h4>Eclipse hangs when pasting from an unresponsive application (GTK only)</h4>
+<p>If the application that is supplying the clipboard material is unresponsive,
+the paste operation hangs Eclipse for several minutes. This situation can be
+encountered when copying from an Eclipse target workbench, suspending the target
+workbench at a breakpoint and pasting into the hosting Eclipse workbench. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=44915">44915</a>)</p>
+
+<h4>IME conversion problem (Solaris GTK only)</h4>
+<p>When typing Japanese text, the conversion to Kanji must be done one ideogram at
+a time. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=226636">226636</a>)</p>
+
+<h4>Typing in an editor crashes with IBM 1.5 VM (Linux GTK PPC only)</h4>
+<p>When running on the IBM Java 5.0 VM, Eclipse crashes while the user is typing in an editor.
+If using this VM you must disable the JIT with the -Xnojit vm argument to avoid the crashes
+(see bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=116730">116730</a>).
+The command line for launching Eclipse with this vm should be: <br/>
+<code>eclipse -vmargs -Dosgi.locking=none -Xnojit</code>
+</p>
+
+<h4>Eclipse won't start (Linux GTK PPC only)</h4>
+<p>Eclipse fails to create a lock file with reason &quot;No locks available&quot;. 
+To launch eclipse you must disable file locking using the osgi.locking property.
+For example, you could launch eclipse as follows: <br/>
+<code>eclipse -vmargs -Dosgi.locking=none</code>
+</p>
+
+<h4>Strings may be truncated or incorrectly wrapped on RHEL5 (Linux GTK only)</h4>
+<p>
+Strings on wrapping Controls may not appear correctly in some locales on RHEL5 as a result
+of a bug in Pango version 1.14.x.  This problem can be fixed by upgrading the installed
+Pango library to a version that is newer than 1.14.x. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=231951">231951</a>)
+</p>
+
+<h4>Block Selection functionality provided by StyledText is not BIDI aware</h4>
+<p>
+When the orientation of characters under the left and right edges of the block
+selection rectangle are not the same, the actual selection ranges (in memory)
+differ from the visual representation of the selection. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=277929">277929</a>)
+</p>
+
+<h4>Older versions of some Windows screen readers no longer work with Eclipse</h4>
+<p>JAWS versions 8 and 9 and Window-Eyes version 6 no longer work well with Eclipse and other SWT applications.
+Window-Eyes 6 will cause Eclipse to crash, and JAWS 8 and 9 can cause SWT applications to crash.
+This happens because IAccessible2 support was added to SWT for Eclipse 3.7, but these older screen reader versions contain
+partial implementations of IAccessible2 that do not follow the current IAccessible2 specification.</p>
+<p>
+The workaround for these cases is to specify Java property <code>org.eclipse.swt.accessibility.UseIA2</code> with value <code>false</code>,
+which will instruct SWT to not attempt to use IA2 interfaces.  An easy way to set this property is to specify VM argument
+<code>-Dorg.eclipse.swt.accessibility.UseIA2=false</code> when launching Eclipse or your SWT application. (bug
+<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=313182">313182</a>)</p>
+
+<h4>Drawing problems when using non-advanced graphics on recent GTK versions</h4>
+<p>On modern Linux distributions with a GTK version greater than 2.18, clipping problems and pixel corruption 
+can occur if the SWT client uses non-advanced GC calls. These problems seem to be caused by low-level bugs 
+in the interactions between GDK and X.
+</p>
+
+<h4>Menus do not appear in Unity desktop menu bar</h4>
+<p>On recent Ubuntu Linux distributions that feature the Unity desktop, the menus from the workbench 
+will not appear in the top desktop menu bar. They will continue to appear in the shell.</p>
+
+<h4>Slider controls do not draw on Ubuntu</h4>
+<p>Sliders do not work on Linux distros with overlay scrollbars enabled  (such as
+Ubuntu 12.04). A workaround for this is to disable the overlay scrollbars
+(export LIBOVERLAY_SCROLLBAR=0 ) before launching Eclipse.</p>
+
+<h4>BIDI Segments in Text controls</h4>
+<p>BIDI Segments in text controls only work on Windows and GTK.</p>
+
+<h4>Toolbar controls on GTK are not properly sized</h4>
+
+<p>There is a known problem in ToolItem that prevents control set in separators
+from being sized properly. (See Bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=377961">377961</a>)
+</p>
+
+<h4>Navigation using tab and arrow keys</h4>
+<p>
+Navigating directly to a specific view or editor using keyboard shortcuts is the
+same in Eclipse 4.x as it was in Eclipse 3.x with the exception of tab traversal.
+In Eclipse 3.x, tab, shift+tab, ctrl+tab and ctrl+shift+tab always traversed within
+a view or editor stack. In 4.x, these keys traverse through all of the view and editor stacks.
+When traversing in the forward direction (tab or ctrl+tab), the active view or editor
+will take focus. When navigating in the reverse direction, other elements of a view,
+such as the view toolbar or menu, can take focus as well. This behavior can be a
+little quirky, and we are looking into normalizing it for 4.2.1
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=376011">376011</a>)
+</p>
+
+<h3>3.2.7 <a name="I-Platform-Team-CVS">Platform - Team - CVS</a></h3>
+<p>The following are known problems with the CVS repository provider only, and
+do not apply to other repository providers. Additional information on how to use
+CVS from Eclipse can be found in the <a href="http://dev.eclipse.org/viewcvs/index.cgi/~checkout~/platform-vcm-home/docs/online/cvs_features2.0/cvs-faq.html">Eclipse
+CVS FAQ</a>.</p>
+<h4> CVS server compatibility</h4>
+<p>The CVS plug-in parses messages returned from the CVS server. If the format
+of these messages is not as expected, some of the plug-in's functionality may be
+missing. The CVS plug-in is compatible with all stable 1.11.X builds of the CVS
+server, and should be compatible with future releases in that stream unless text
+message formats change (the last tested server was 1.11.22). As for the 1.12.X
+feature releases of CVS, the Eclipse CVS client has been tested with builds up
+to 1.12.13. However, future releases could easily break the Eclipse CVS client.
+Basic functionality, such as Checkout, Commit, and Update, should always work,
+but there may be problems with more advanced commands such as Synchronizing and
+Browsing the repository.</p>
+  
+<h4>SSH2 proxy settings lost upgrading to 3.3</h4>
+<p>CVS now uses the Platform proxy settings. As a result, any CVS proxy settings
+will be lost and must be re-entered on the General&gt;Network Connections preference 
+page. </p>
+<h4>Connection cannot be found after initially missing</h4>
+<p>If a connection initially fails due to a network problem, the connection may
+continue to fail even when the network problem is fixed. In order to establish
+the connection you must exit and restart Eclipse. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=9295">9295</a>)</p>
+
+<h4>&quot;Received broken pipe signal&quot; error from server</h4>
+<p>Eclipse sometimes performs multiple commands within a single connection to
+the server. This may cause problems with CVS servers that are running server
+scripts in response to certain commands. (bugs <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=23575">23575</a>
+and <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=23581">23581</a>)</p>
+
+<h4>&quot;Terminated with fatal signal 10&quot; error from server</h4>
+<p>There is a bug in the CVS server related to some compression levels. If you
+get this error, changing the compression level on the CVS preference page may
+help. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=15724">15724</a>)</p>
+<h4>&quot;Unknown response&quot; error using ext connection method</h4>
+<p>There are a few situations that can result in an &quot;Unknown response&quot;
+error messages when using the ext connection method. One situation involves
+using an external communications client (e.g. rsh or ssh) that adds CRs to the
+communications channel (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=21180">21180</a>).
+Another involves Eclipse not properly reading the stderr output of the external
+communications tool. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=11633">11633</a>)</p>
+
+<h4>A disabled CVS capability may not be auto-enabled in existing workspaces</h4>
+<p>New in 3.0 is the ability to disable capabilities and the CVS support in
+Eclipse can be disabled. However, for backwards compatibility the CVS capability
+is auto-enabled in existing workspaces that already contain CVS projects. The
+auto-enabling function may not run if the team support plugin is not loaded at
+startup. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=66977">66977</a>)</p>
+<h4>Builder output files may appear as changed</h4>
+<p>When folders containing build output are shared they may get improperly
+marked as dirty when build output is generated.</p>
+
+<h4>Enabling GNOME proxy support</h4>
+<p>GNOME applications can make use of proxy settings defined in this environment.
+If set, Eclipse will use it prior to proxy settings declared using env variables.
+This feature is disabled by default, to enable it launch Eclipse with
+<code>"-Dorg.eclipse.core.net.enableGnome"</code> switch. That is,</p>
+<pre>eclipse -Dorg.eclipse.core.net.enableGnome</pre>
+
+<h3>3.2.8 <a name="I-Platform-Install-Update">Platform - Install/Update</a></h3>
+<h4>Manually installing features and plug-ins on a FAT file system (Windows only)</h4>
+
+<p>When features and plug-ins are manually installed on top of an Eclipse-based
+ product install located on a FAT file system that has already been run at least 
+ once, the product must be explicitly restarted with -clean. That is,</p>
+<pre>eclipse.exe -clean
+</pre>
+
+<h4>Connecting to untrusted sites using https</h4>
+<p>You cannot install or update software from a site using https whose certificate
+is not chained to a trusted root certificate in your local certificate store. This typically
+means the server is using a self-signed certificate, or a certificate authenticated by
+an unknown third party.</p>
+
+<h4>Extension location is lost if the install path changes</h4>
+<p>A previously configured extension location may be temporarily removed if the install is moved or mounted 
+under a different path. This only happens when the link file that configures the 
+extension location uses a relative path that points to a directory under the Eclipse 
+install. On a second startup using the same install path, the extension location 
+is added again (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=95403">95403</a>). <br/></p>
+
+<h4>Feature patches can only be installed from Eclipse 3.4-based update sites</h4>
+<p>Feature patches can only be installed from update sites designed for Eclipse 3.4 or greater.
+Specifically, the update site must have the necessary metadata for Equinox p2 (a content.xml
+or content.jar file). This data can be generated by building an update site using Eclipse 3.4
+or newer, or running the p2 metadata generator on an update site built using earlier versions
+of the Eclipse SDK. See the help topic <i>Generating p2 metadata</i> for more details on running the p2 metadata
+generator (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=244483">244483</a>).
+</p>
+
+<h3>3.2.9 <a name="I-Platform-Debug">Platform - Debug</a></h3>
+<p>None. (Known problems with the Java debugger appear below in the <a href="#I-JDT">JDT</a>
+section.)</p>
+
+<h3>3.2.10 <a name="I-Platform-Compare">Platform - Compare</a></h3>
+<p>None.</p>
+
+<h3>3.3 <a name="I-JDT">Java development tools (JDT)</a></h3>
+
+<h4>Multiple regions formatting in a given source snippet</h4>
+In version 3.4, the new API method <code>org.eclipse.jdt.core.formatter.CodeFormatter.format(int, String, IRegion[], int, String)</code>
+has been added to allow the formatting of several regions in a source snippet with a single pass.<br/>
+Even if specified, this method does not currently accept comments of the following kinds:
+<ul>
+<li><code>org.eclipse.jdt.core.formatter.CodeFormatter#K_SINGLE_LINE_COMMENT</code></li>
+<li><code>org.eclipse.jdt.core.formatter.CodeFormatter#K_MULTI_LINE_COMMENT</code></li>
+<li><code>org.eclipse.jdt.core.formatter.CodeFormatter#K_JAVA_DOC</code></li>
+</ul>
+This will be fixed in a future release (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=233967">233967</a>).
+
+<h4>Searching for constant field references</h4>
+<p>Search does not find references to constant fields inside binaries because
+the Java Language Specification mandates that constant field values be inlined
+in the class file's byte codes, leaving no trace of a field reference.&nbsp;(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=12044">12044</a>)</p>
+
+<h4> Cut, copy, paste not working
+for linked resources in views showing Java elements</h4>
+<p>The cut, copy, and paste actions do not work for linked files and folders
+appearing in views that show Java elements, including the Package Explorer. The
+workaround is to use these actions from the Navigator view instead. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=34568">34568</a>)</p>
+<h4> Java working sets not
+working correctly for elements from JRE system library container</h4>
+<p>Applying a working set consisting entirely of elements from the JRE System
+library container as a filter to the packages view might result in an empty
+Package Explorer. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=30442">30442</a>)</p>
+
+<h4>Breakpoints unreliable running Sun 1.6.0_14</h4>
+Developers debugging applications on Sun's 1.6.0_14 
+virtual machine should be aware that breakpoints are unreliable (i.e. do 
+not always suspend execution). The problem occurs on Windows and Linux 
+platforms. This is an issue with the VM and not with Eclipse.
+The workaround is to use the <code>-XX:+UseParallelGC</code> VM option. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=279137">279137</a>).
+
+<h4>Some refactoring script operations fail with Sun 6.0 JREs</h4>
+<p>Creating and applying refactoring scripts sometimes fails with Sun 6.0 JREs
+due to a bug in the XML parser that is shipped with those VMs.
+A workaround is to use a J2SE 5.0 VM or an IBM 6.0 VM.
+Another workaround is to replace the XML parser using the
+<a href="http://download.oracle.com/javase/6/docs/technotes/guides/standards/index.html">Java Endorsed Standards Override Mechanism</a>:
+</p>
+<ol>
+  <li>Get original versions of xml-apis.jar, xercesImpl.jar, xalan.jar, and serializer.jar from Apache, e.g.
+    xalan-j_2_7_1-bin.zip from <a href="http://xml.apache.org/xalan-j/downloads.html">here</a>.
+  </li>
+  <li>Unpack the archive and copy the 4 JARs into <code>&lt;path-to-your-JavaSE6.0-install&gt;\jre\lib\endorsed\</code>.
+  </li>
+</ol>
+(see Sun bug <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6760982">http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6760982</a>,
+Eclipse bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=262820">262820</a>)
+
+<h4>Suspend on uncaught exception overrides exception breakpoint location filters</h4>
+<p>Exception breakpoints can be configured with location filters (inclusive and 
+  exclusive). When an unchecked exception is configured to <b>not</b> suspend 
+  execution in a specific class, execution will still suspend when the user preference 
+  to suspend on uncaught exceptions is on. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=66770">66770</a>)</p>
+
+<h4>Running Java programs with non-Latin-1 characters in package or class names</h4>
+You get a <code>java.lang.NoClassDefFoundError</code> when running Java
+programs with non-Latin characters in the package or class names. The workaround
+is to package the class files as a JAR file and run the program out of the JAR
+and not from the file system directly. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=4181">4181</a>)
+
+<h4>Cannot run or debug class in
+a project with GB18030 characters in project name</h4>
+<p>Most class libraries do not properly support the creation of a system
+process (via <code>java.lang.Runtime.exec(...)</code>) when the specified
+command line contains GB18030 characters. This limitation means the debugger
+cannot launch applications when the command line it generates contains GB18030
+characters. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=32206">32206</a>)</p>
+
+<h4>Cannot detect installed JRE with GB18030 characters in path name</h4>
+<p>Automatic JRE detection fails when the JRE is stored in a directory
+containing GB18030 characters in its name. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=33844">33844</a>)</p>
+
+<h4>Cannot generate Javadoc for packages with GB18030 characters in the name</h4>
+<p>Most class libraries do not properly support the creation of a system
+process (via <code>java.lang.Runtime.exec(...)</code>) when the specified
+command line contains GB18030 characters. Since Javadoc is created using the
+Javadoc executable provided with the JDK, generating Javadoc fails if the
+package or class name contains GB18030 characters. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=32215">32215</a>)</p>
+
+<h4> Unable to debug stack
+overflows</h4>
+
+<p>If a debug session suspends on a <code>java.lang.StackOverflowError</code>
+exception (due to an exception breakpoint), the debugger may not be able to
+retrieve any debug information from the target JVM. As well, the debugger may
+not be able to reliably interact with the target JVM past this point. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=19217">19217</a>)</p>
+<h4> Evaluation limitation</h4>
+<p>The debugger uses threads in the target JVM to perform evaluations (both
+explicit evaluations that the user requests, and implicit evaluations such as <code>toString()</code>
+invocations in the <b>Variables</b> view). The Java Debug Interface (JDI)
+requires that the thread in which an evaluation is performed be suspended by a
+user event (that is, a breakpoint or step request). Evaluations cannot be
+performed on threads suspended by the suspend action. As well, when a breakpoint
+is configured to suspend the JVM rather than just the individual thread, the
+threads which did not encounter the breakpoint are not in a valid state to
+perform an evaluation. When an evaluation is attempted in a thread that is not
+in a valid state to perform an evaluation, an error message will appear to the
+effect of &quot;Thread must be suspended by step or breakpoint to perform method
+invocation&quot;. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=34440">34440</a>)</p>
+
+<h4> Missing debug attributes</h4>
+The debugger requires that class files be compiled with debug attributes if
+it is to be able to display line numbers and local variables. Quite often, class
+libraries (for example, &quot;<code>rt.jar</code>&quot;) are compiled without
+complete debug attributes, and thus local variables and method arguments for
+those classes are not visible in the debugger.
+<h4> Using Hot Code Replace</h4>
+<p>Hot code replace is supported on JDK 1.4.x VMs, and IBM J9 VMs. The debugger
+will attempt to replace all class files that change in the workspace as the user
+edits and builds source code. However, hot code replace is limited to changes
+that a particular virtual machine implementation supports. For example, changes
+within existing methods may be supported, but the addition or removal of members
+may not be.</p>
+<h4> Scrapbook</h4>
+Setting a breakpoint inside a scrapbook page is not supported.
+
+<p>When a snippet is run in the scrapbook which directly or indirectly calls <code>System.exit(int)</code>,
+the evaluation cannot be completed, and will result in a stack trace for a <code>com.sun.jdi.VMDisconnectedException</code>
+being displayed in the scrapbook editor.</p>
+<p>Terminating a scrapbook page while it is performing an evaluation results
+in a <code>com.sun.jdi.VMDisconnectedException</code> being displayed in the
+scrapbook editor.</p>
+<h4> Debugging over slow
+connections</h4>
+A global Java debug preference specifies the debugger timeout, which is the
+maximum amount of time the debugger waits for a response from the target VM
+after making a request of that VM. Slow connections may require that this value
+be increased. The timeout value can be edited from the <b>Java &gt; Debug </b>preference
+page. Changing the timeout value only affects subsequently launched VM, not VMs
+that are already running.
+
+<h4> Updating of inspected values</h4>
+When inspecting the result of an evaluated expression in the debugger, it is
+important to note that the result displayed is the result of that expression at
+the time it was evaluated. For example, when inspecting a simple integer counter
+(primitive data type), the value displayed in the Expressions view is the value
+when the expression was evaluated. As the counter is changed in the running
+program, the inspected result will not change (since the view is not displaying
+the value bound to a variable - it is displaying the value of an expression, and
+the value of a primitive data type cannot change). However, if an expression
+results in an object, fields of that object will be updated in the inspector as
+they change in the running program (since the value bound to fields in an object
+can change).
+<h4> Stepping over native methods
+that perform I/O</h4>
+When the debugger steps over native methods that perform I/O to <code>System.out</code>
+or <code>System.err</code>, the output may not appear immediately unless the
+native performs a flush on the output buffer.
+<h4> VM and process termination
+running on IBM 1.3 JVM on Linux (Linux only)</h4>
+Terminating a launch, debug target, or system process associated with a debug
+target running on the IBM 1.3 JVM on the Linux platform does not work when the
+associated debug target has a suspended thread. To remove such debug targets
+from the debug UI, select <b>Terminate and Remove</b> from the debug view's
+pop-up menu (or use the shortcut &quot;delete&quot; key). Associated system
+processes in the OS may not be properly cleaned up. If a debug target has no
+suspended threads, termination works properly. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=1631">1631</a>)
+
+<h4>Java 6 and MacOS</h4>
+Apple JavaSE-1.6 VMs only execute on 64-bit architectures but JDT will detect 1.6 VMs installed on 32-bit
+architectures when a new workspace is started or when the user presses the &quot;Search...&quot; button
+on the Installed JREs preference page. Error messages will appear in the log each time JDT attempts to
+determine which execution environments a 1.6 VM is compatible with. JDT can be configured to ignore 1.6
+JREs by removing them from the Installed JREs preference page.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=262542">262542</a>)
+
+<h4>Java Annotation Processing</h4>
+<p>Some methods in the processing API are unimplemented when compiling within the IDE, and will
+throw <code>UnsupportedOperationException</code>.</p>
+<p>
+Java 6 annotation processors are supported in the batch compiler and in the
+IDE. By design, Java 6 processors are only executed during a build, not while
+editing. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=188558">188558</a>)</p>
+<p>
+Java 5 annotation processors are supported in the IDE only. Java 5 processors
+can be executed while editing, as well as during a build. Slow annotation
+processors can cause a slowdown of the editing experience. If this occurs, you
+may wish to turn off <b>Enable processing in editor</b> on the <b>Java Compiler &gt; Annotation Processing</b> properties
+page of your Java project.</p>
+
+<h4>Java indexing encounters problems when a folder is used both as a source and a class folder</h4>
+<p>Java indexing encounters problems when a folder is used both as a source folder
+in a project and as a class folder in another project. Hence, when this peculiar setup is
+used, the Java Search might miss matches located in such a folder. To avoid this kind of problem, it is strongly advised to use different
+folders for sources and binary classes. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=309903">309903</a>)</p>
+
+<h3>3.4 <a name="I-PDE">Plug-in Development Environment (PDE)</a></h3>
+<h4>Feature manifest editor does not preserve all comments</h4>
+
+<p>When a non-source page of the feature manifest editor is used, PDE will convert
+changes back into XML by regenerating the file. Although the overall content and
+most of the comments are preserved, some comments may be lost. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=59502">59502</a>)</p>
+<h4>PDE will not unzip source zips of some plug-ins</h4>
+<p>In the plug-in import wizard, when you choose to import plug-ins as
+&quot;projects with source folders&quot;, PDE will not unzip the source for the
+org.apache.ant, org.eclipse.core.runtime.compatibility.registry, org.eclipse.osgi.util and org.eclipse.osgi.services. This is
+because the source ZIPs contains code that will not compile when unzipped as it
+requires additional JARs that are not part of the SDK. To avoid the creation of
+plug-in projects that won't compile, PDE will import these plug-ins as binary
+and attach source, so you would still be able to read the source, you just won't
+be able to modify it. Also, PDE will not unzip the source for the
+org.eclipse.swt plug-ins. In this case, it is because, when shipped, the swt
+code is spread across a plug-in and a fragment, and when unzipped, it will
+require circular dependencies between the plug-in and fragment projects. These
+circular dependencies are at minimum marked as warnings by the JDT compiler and
+may result in unpredictable build behavior. Therefore, PDE always imports
+org.eclipse.swt as binary with source attached. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=66314">66314</a>)</p>
+
+<h4>Emacs key bindings do not
+work in manifest editor fields</h4>
+<p>Non-default key bindings currently do not work in fields on non-source
+pages of the PDE manifest editors. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=19482">19482</a>)</p>
+
+<h4>Export of plug-in may silently drop classes</h4>
+<p>When exporting a plug-in using the plug-in, feature or product wizards, some classes
+might be dropped from the resulting archive if their fully qualified name is too long.
+This typical path limitation can be worked around by creating the jar of the problematic
+plug-in by using the Jar export wizard.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=97150">97150</a>)</p>
+
+<h4>Compilation errors when exporting projects not stored outside of the workspace</h4>
+<p>When exporting multiple plug-ins and one is stored outside of the workspace,
+compile errors occurs on export. To work around the problem, you can either export
+the plug-ins one by one, or change their location.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=98579">98579</a>)</p>
+
+<h4>Headless build needs to be run from a fully qualified path</h4>
+<p>When running a headless build using the scripts provided by pde build, the properties <code>builder</code> 
+and <code>buildDirectory</code> must refer to a fully qualified path.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=139554">139554</a>)
+</p>
+
+<h4>Importing in Eclipse application fails if plug-in exists in host workspace</h4>
+<p>When running an Eclipse application (self-hosting) importing plug-ins will not
+work correctly if the plug-in being imported exists in the host Eclipse's
+workspace. This is because PDE modifies the target platform of the application
+to point at the running plug-ins from the host (target weaving). This also
+affects the PDE test suite.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=294005">294005</a>)
+</p>
+
+<h4>Reusing a workspace after changing architectures silently breaks PDE models</h4>
+<p>If a workspace is reused on a machine with a different architecture, the PDE
+models used to build plug-ins may silently fail. To work around this problem,
+delete the metadata in &lt;workspace&gt;/.metadata/.plugins/org.eclipse.pde.core.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=350172">350172</a>)
+</p>
+
+<h2>4. <a name="RunningEclipse">Running Eclipse</a></h2>
+<p>After installing the Eclipse SDK in a directory, you can start the Workbench
+by running the Eclipse executable included with the release (you also need a Java SE 6
+JRE, not included with the Eclipse SDK). On Windows, the executable file is called <samp>eclipse.exe</samp>,
+and is located in the <code>eclipse</code> sub-directory of the install. If
+installed at <code>c:\eclipse-SDK-4.2-win32</code>, the executable is <code>c:\eclipse-SDK-4.2-win32\eclipse\eclipse.exe</code>.
+
+<b>Note:</b> Set-up on most other operating environments is analogous. Special
+instructions for Mac OS X are listed <a href="#macosx">below</a>.</p>
+
+<h3>Allocating enough memory and solving OutOfMemoryErrors</h3>
+<p>By default, Eclipse will allocate up to 512 megabytes of Java heap memory. This should
+be ample for all typical development tasks. However, depending on the JRE
+that you are running, the number of additional plug-ins you are using, and
+the number of files you will be working with, you could conceivably have to increase this amount. 
+Eclipse allows you to pass arguments directly to the Java VM using the
+<code>-vmargs</code> command line argument, which must follow all other Eclipse specific arguments.
+Thus, to increase the available heap memory, you would typically use:</p>
+<blockquote>
+  <p><code>eclipse -vmargs -Xmx&lt;memory size&gt;</code></p>
+</blockquote>
+<p>with the <code>&lt;memory size&gt;</code> value set to greater than
+&quot;512M&quot; (512 megabytes -- the default). 
+</p>
+<p>
+When using an Oracle VM, you may also need to increase the size of the permanent
+generation memory.  The default maximum is 64 megabytes, but more may
+be needed depending on your plug-in configuration and use.  When the VM runs
+out of permanent generation memory, it may crash or hang during class loading.
+This failure is less common when using Oracle JRE version 1.5.0_07 or greater.
+The maximum permanent generation size is increased using the -XX:MaxPermSize=&lt;memory size&gt; argument:</p>
+<blockquote>
+  <p><code>eclipse -vmargs -XX:MaxPermSize=&lt;memory size&gt;</code></p>
+</blockquote>
+<p>This argument may not be available for all VM versions and platforms; consult your VM documentation
+for more details.
+</p>
+<p>
+Note that setting memory sizes to be larger than the amount of available physical
+memory on your machine will cause Java to &quot;thrash&quot; as it copies objects
+back and forth to virtual memory, which will severely degrade your performance.
+</p>
+<h3>Selecting a workspace</h3>
+<p>When the Workbench is launched, the first thing you see is a 
+dialog that allows you to select where the workspace will be located. The
+workspace is the directory where your work will be stored.
+If you do not specify otherwise, Eclipse creates the workspace in your
+user directory.
+This workspace directory is used as the default content area for your projects
+as well as for holding any required metadata. For shared or multi-workspace
+installs you must explicitly specify the location for your workspace using the
+dialog (or via the &quot;<code>-data</code>&quot; command line argument).</p>
+<h3>Specifying the Java virtual machine</h3>
+<p>Here is a typical Eclipse command line:&nbsp;</p>
+
+<blockquote>
+  <p><code>eclipse -vm c:\jdk6u22\jre\bin\javaw</code></p>
+</blockquote>
+<p><i>Tip:</i> It's generally a good idea to explicitly specify which Java VM to
+use when running Eclipse. This is achieved with the &quot;<code>-vm</code>&quot;
+command line argument as illustrated above. If you don't use &quot;<code>-vm</code>&quot;,
+Eclipse will look on the O/S path. When you install other Java-based products,
+they may change your path and could result in a different Java VM being used
+when you next launch Eclipse.</p>
+<p>To create a Windows shortcut to an installed Eclipse:</p>
+<ol>
+  <li>Navigate to <code>eclipse.exe</code> in Windows Explorer and use Create
+    Shortcut on the content menu.</li>
+  <li>Select the shortcut and edit its Properties. In the Target: field append
+    the command line arguments.</li>
+</ol>
+<p>Opening this shortcut launches Eclipse. (You can drag the shortcut to the 
+Windows Desktop if you want to keep it in easy reach.)</p>
+
+<h3><a name="macosx">Mac OS X</a></h3>
+<p>On Mac OS X, you start Eclipse by double clicking the Eclipse application. If you need to 
+pass arguments to Eclipse, you'll have to edit the <code>eclipse.ini</code> file
+inside the Eclipse application bundle: select the Eclipse application bundle icon while holding down the Control Key.
+This will present you with a popup menu. Select &quot;Show Package Contents&quot; in the popup menu.
+Locate <code>eclipse.ini</code> file in the <code>Contents/MacOS</code> sub-folder and open it with your favorite text editor to edit the command line options.
+</p>
+
+<p>
+On MacOS X you can only launch a UI program more than once if you have separate
+copies of the program on disk. The reason for this behavior is that every UI
+application on Mac can open multiple documents, so typically there is no need
+to open a program twice. Since Eclipse cannot open more than one workspace, this means you have to make
+a copy of the Eclipse install if you want to open more then one workspace at
+the same time (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=139319">139319</a>).
+</p>
+
+<p>If you need to launch Eclipse from the command line, you can use the symbolic link &quot;eclipse&quot; in the
+top-level eclipse folder. It refers to the eclipse executable inside the application bundle and takes
+the same arguments as &quot;eclipse.exe&quot; on other platforms. 
+</p>
+<p>On Mac OS X 10.4 and later, you may notice a slow down when working with significant
+numbers of resources if you allow Spotlight to index your workspace. To prevent this, start
+System Preferences, select the Spotlight icon, then the Privacy tab, then click the Add button
+(&quot;+&quot;) and find your workspace directory in the dialog that appears.</p>
+<h3><a name="SharedInstall">Shared Install</a></h3>
+<p>The startup speed of a shared install can be improved if proper cache information is stored in the shared 
+install area. To achieve this, after unzipping Eclipse distribution, run Eclipse once with the &quot;-initialize&quot; 
+option from an account that has a write access to the install directory.</p>
+<h2>5. <a name="Upgrading"></a>Upgrading Workspace from a Previous Release</h2>
+
+<h3>Users who don't use &quot;-data&quot;</h3>
+<p>If you weren't previously using &quot;-data&quot; to specify your workspace,
+follow these steps to upgrade:</p>
+
+<ol>
+  <li>Find the workspace directory used by your old version of Eclipse.
+    Typically this is located inside the directory in which Eclipse was
+    installed in a sub-directory called &quot;<code>workspace</code>&quot;. If
+    you are using a shortcut or script to launch Eclipse, then it will be under
+    the current working directory of that shortcut or script in a sub-directory
+    called &quot;workspace&quot;. For Windows users, this is specified by the
+    &quot;Start in:&quot; argument in your shortcut properties.</li>
+  <li>Copy this workspace directory to a new, empty location outside of any
+    Eclipse install directory.</li>
+  <li>Install the new version of Eclipse in a new location, separate from any
+    old version of Eclipse.</li>
+  <li>If you had installed additional features and plug-ins into your old
+    Eclipse, you should re-install them in the new Eclipse.</li>
+  <li>Start this new version of Eclipse and select
+    this location using the workspace chooser dialog at startup (or use &quot;<code>-data</code>&quot;
+    command line argument to pre-select the workspace location).</li>
+</ol>
+<h3>Users who do use &quot;-data&quot;</h3>
+<p>If you were previously using the &quot;<code>-data</code>&quot; argument to
+start Eclipse, your upgrade path is much easier:</p>
+
+<ol>
+  <li>Optionally copy your workspace directory to a new, empty location outside of any
+    Eclipse install directory as a backup.</li>
+  <li>Install the new version of Eclipse in a new location, separate from any
+    old versions of Eclipse.</li>
+  <li>If you had installed additional features and plug-ins into your old
+    Eclipse, you should re-install them in the new Eclipse.</li>
+  <li>Start this new version of Eclipse and select this location using the workspace chooser dialog at
+    startup (or use &quot;<code>-data</code>&quot;
+    command line argument to pre-select the workspace location).</li>
+</ol>
+<p><i>Note:</i> Copying your workspace is recommended because,
+after you've upgraded your workspace, you won't be able to use it
+again with an older version of Eclipse. If you ever want to go &quot;back in
+time&quot; to an earlier release, you will need that backup.</p>
+<h3> Users who use User Libraries or classpath containers that contain JARs referencing other libraries via Class-Path in the MANIFEST.MF</h3>
+<p>
+If you want the referenced JAR files to be included in the classpath, you can do one of the following:<br/>
+<ul>
+<li>Add the system property (<code>-DresolveReferencedLibrariesForContainers=true</code>) to the <code>-vmargs</code>
+list on start-up, or</li>
+<li>Manually add the referenced JARs to the User Library or to the project.</li>
+</ul>
+</p>
+<h3>Dropped in bundles may not resolve after upgrade</h3>
+<p>If you have installed bundles by dropping them into the <tt>plugins</tt>
+or <tt>dropins</tt> directory, they might no longer resolve when you upgrade
+to a new Eclipse Platform version. In each new version of the Eclipse Platform,
+there are new versions of bundles included in the platform, and often a small 
+number of removed bundles. This may cause your previously dropped in bundles
+to no longer resolve and run. It is always recommended that you install software
+via the <tt>Help &gt; Install New Software</tt> mechanism so you are made
+aware of any install-time failure to resolve dependencies.
+</p>
+
+<h2>6. <a name="InteroperabilityWithPreviousReleases">Interoperability with
+Previous Releases</a></h2>
+<h3>6.1 Interoperability of Release 4.2 with previous releases</h3>
+<h4>Sharing projects between heterogeneous Eclipse 4.2 and 3.8</h4>
+<p>Special care is required when a project in a team repository is being loaded
+and operated on by developers using Eclipse-based products based on different
+feature or plug-in versions. The general problem is that the existence,
+contents, and interpretation of metadata files in the workspaces may be specific
+to a particular feature or plug-in version, and differ between versions. The
+workspace compatibility guarantees only cover cases where all developers upgrade
+their Eclipse workspaces in lock step. In those cases there should be no problem
+with shared metadata. However, when some developers are working in Eclipse 4.2
+while others are working in Eclipse 3.x, there are no such guarantees.
+This section provides advice for what to do and not to do. It addresses the
+specific issues with the Eclipse SDK.</p>
+
+<p>The typical failure mode is noticed by the 4.2 user. 4.2 metadata is lost
+when a 3.x user saves changes and then commits the updated metadata files to the
+repository. Here's how things typically go awry:</p>
+<ul>
+  <li>A user working in Eclipse 4.2 creates or modifies a project in a way that
+    results in changes to a shared metadata file that rely on 4.2-specific
+    information. The user then commits the updated project files, including the
+    shared metadata file, to the shared repository.</li>
+  <li>Another user working in Eclipse 3.x shares this project from the same
+    repository. The 4.2-specific information in the shared metadata file is not
+    understood by Eclipse 3.x, and is generally discarded or ignored without
+    warning. The user modifies the project in a way that results in changes to
+    the shared metadata file, causing the shared metadata file to be rewritten
+    without any of the 4.2-specific information. The user commits the updated
+    project files, including the shared metadata file, to the shared repository.
+    The user is generally unaware that shared information has just been lost as
+    a result of their actions.</li>
+  <li>A user working in Eclipse 4.2 picks up the changes to a project from the
+    shared repository, including the updated shared metadata file. The user may
+    be unaware that they have just taken a retrograde step until later when
+    things start to malfunction.</li>
+</ul>
+<p>Here are some things to watch out for when sharing projects between
+Eclipse 4.2 and earlier 3.x releases:</p>
+<ul>
+  <li><b>Virtual folders</b> - 
+  Eclipse 4.2 supports a notion of <i>virtual folders</i> that did not exist
+  in Eclipse 3.5 or earlier. If such virtual folders are created in 4.2, and the project
+  is subsequently loaded into an Eclipse 3.5 or earlier workspace, these folders
+  will not be recognized. Recommendation: avoid creating virtual folders where project
+  compatibility with Eclipse 3.5 or earlier is required.</li>
+  <li><b>Resource filters</b> - 
+  Eclipse 4.2 supports a notion of <i>resource filters</i> that did not exist
+  in Eclipse 3.5 or earlier. If such filters are added to resources in 4.2, and the project
+  is subsequently loaded into an Eclipse 3.5 or earlier workspace, these filters
+  will not be recognized. Recommendation: avoid creating resource filters where project
+  compatibility with Eclipse 3.5 or earlier is required.</li>
+  <li><b>Predefined path variables</b> - 
+  Eclipse 4.2 supports a set of built in path variables that can be used as the basis
+  for linked resource locations. Such variables will not be defined automatically in 
+  Eclipse 3.5 or earlier. If compatibility with 3.5 or earlier workspace is required,
+  users on 3.5 or earlier workspaces will need to define such path variables manually.
+  </li>
+</ul>
+<h4>Using Eclipse 4.2 to develop plug-ins that work in Eclipse 3.7</h4>
+<p>It is also possible (and reasonable) to use Eclipse 4.2 to develop a plug-in 
+  intended to work in Eclipse 3.7 or earlier. Use the <b>Plug-in Development &gt; 
+  Target Platform </b>preference page to locate non-workspace plug-ins in an Eclipse 
+  3.7 install. This ensures that the code for your plug-in is being compiled and 
+  tested against Eclipse 3.7 APIs, extension points, and plug-ins. (The above 
+  list of concerns do not apply since they affect the layout and interpretation 
+  of files in the plug-in <i>project</i> but none affect the actual deployed form 
+  of the plug-in.)</p>
+
+<hr/>
+<p>Sun, Solaris, Java and all Java-based trademarks are trademarks of Oracle Corporation.
+in the United States, other countries, or both.</p>
+<p>IBM is a trademark of International Business Machines Corporation in the
+United States, other countries, or both.</p>
+<p>Microsoft, Windows, Windows NT, Vista, and the Windows logo are trademarks of
+Microsoft Corporation in the United States, other countries, or both.</p>
+<p>Apple and Mac OS are trademarks of Apple Computer, Inc., registered in the
+U.S. and other countries.</p>
+<p>QNX, Neutrino, and Photon are trademarks or registered trademarks of QNX
+Software Systems Ltd.</p>
+<p>Other company, product, and service names may be trademarks or service marks
+of others.</p>
+<p>(c) Copyright IBM Corp. and others 2009, 2011</p>
+
+<h2><a name="Appendix1">Appendix 1: Execution Environment by Bundle</a></h2>
+
+<p>In the table below, the &quot;4.1 minimum execution environment&quot;
+  column indicates the minimum Java class library requirements of each bundle
+  for the 4.1 release, where the value is one of:</p>
+<table border="0" width="90%">
+  <tbody>
+    <tr>
+
+      <td align="center"><b>Entry</b></td>
+      <td align="left"><b>Meaning</b></td>
+    </tr>
+    <tr>
+      <td><div align="center"><strong>F1.0</strong></div></td>
+      <td>J2ME Foundation 1.0 - indicates that the bundle can only be run on
+        Foundation 1.0 or greater. Note that with the exception of some MicroEdition
+        IO classes, Foundation 1.0 is a subset of J2SE 1.3.</td>
+    </tr>
+    <tr>
+      <td><div align="center"><strong>F1.1</strong></div></td>
+      <td>J2ME Foundation 1.1 - indicates that the bundle can only be run on
+        Foundation 1.1 or greater. Note that with the exception of some MicroEdition
+        IO classes, Foundation 1.1 is a subset of J2SE 1.4.</td>
+    </tr>
+    <tr>
+      <td><div align="center"><strong>1.3</strong></div></td>
+      <td>J2SE 1.3 - indicates that the bundle can only be run on JSE 1.3 or
+        greater.</td>
+    </tr>
+    <tr>
+      <td><div align="center"><strong>1.4</strong></div></td>
+      <td>J2SE 1.4 - indicates that the bundle can only be run on JSE 1.4 or
+        greater.</td>
+    </tr>
+    <tr>
+      <td><div align="center"><strong>1.5</strong></div></td>
+      <td>Java SE 5 - indicates that the bundle can only be run on Java SE 5 or
+        greater.</td>
+
+    </tr>
+    <tr>
+      <td><div align="center"><strong>1.6</strong></div></td>
+      <td>Java SE 6 - indicates that the bundle can only be run on Java SE 6 or
+        greater.</td>
+    </tr>
+    <tr>
+      <td align="center"><b>n/a</b></td>
+      <td>Unknown at the time of this revision.</td>
+    </tr>
+  </tbody>
+</table>
+
+<p><b>Table of minimum execution environments by bundle.</b> (See also the
+  <a href="http://www.eclipse.org/projects/project-plan.php?projectid=rt.equinox#appendix">Equinox Project plan</a>
+  for the execution environment requirements of bundles contributed via that project.)</p>
+
+<table border="1">
+  <tbody>
+    <tr>
+      <td width="290"><strong>Bundle</strong></td>
+      <td width="60"><div align="center"><p align="center"><b>4.2<br/>minimum<br/>execution<br/>environment</b></p></div></td>
+    </tr>
+    <tr>
+      <td>com.ibm.icu</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>com.jcraft.jsch</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>com.sun.el</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>javax.annotation</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>javax.el</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>javax.inject</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>javax.servlet</td>
+      <td><div align="center">1.6</div></td>
+    </tr>
+    <tr>
+      <td>javax.servlet.jsp</td>
+      <td><div align="center">1.6</div></td>
+    </tr>
+    <tr>
+      <td>javax.xml</td>
+      <td><div align="center">J2SE-1.2</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.ant</td>
+      <td><div align="center">J2SE-1.2</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.batik.css</td>
+      <td><div align="center">1.3</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.batik.util</td>
+      <td><div align="center">1.3</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.batik.util.gui</td>
+      <td><div align="center">1.3</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.commons.codec</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.commons.httpclient</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.commons.logging</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.felix.gogo.command</td>
+      <td><div align="center">not specified</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.felix.gogo.runtime</td>
+      <td><div align="center">not specified</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.felix.gogo.shell</td>
+      <td><div align="center">not specified</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.jasper.glassfish</td>
+      <td><div align="center">1.6</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.lucene</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.lucene.analysis</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.lucene.core</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ant.core</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ant.launching</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ant.ui</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.compare</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.compare.core</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.compare.win32</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.commands</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.contenttype</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.databinding</td>
+      <td><div align="center">F1.1</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.databinding.beans</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.databinding.observable</td>
+      <td><div align="center">F1.1</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.databinding.property</td>
+      <td><div align="center">F1.1</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.expressions</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.externaltools</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.filebuffers</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.filesystem</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.jobs</td>
+      <td><div align="center">F1.1</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.net</td>
+      <td><div align="center">F1.1</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.resources</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.runtime</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.runtime.compatibility</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.runtime.compatibility.registry</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.variables</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.cvs</td>
+      <td><div align="center">not specified</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.debug.core</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.debug.ui</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.core.commands</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.core.contexts</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.core.di</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.core.di.extensions</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.core.services</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.ui.bindings</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.ui.css.core</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.ui.css.swt</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.ui.css.swt.theme</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.ui.di</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.ui.model.workbench</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.ui.services</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.ui.widgets</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.ui.workbench</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.ui.workbench.addons.swt</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.ui.workbench.renderers.swt</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.ui.workbench.swt</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.ui.workbench3</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.emf.common</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.emf.ecore</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.emf.ecore.change</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.emf.ecore.xmi</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.help</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.help.base</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.help.ui</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.help.webapp</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt</td>
+      <td><div align="center">not specified</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.annotation</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.apt.core</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.apt.pluggable.core</td>
+      <td><div align="center">1.6</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.apt.ui</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.compiler.apt</td>
+      <td><div align="center">1.6</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.compiler.tool</td>
+      <td><div align="center">1.6</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.core</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.core.manipulation</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.debug</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.debug.ui</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.doc.isv</td>
+      <td><div align="center">not specified</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.doc.user</td>
+      <td><div align="center">not specified</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.junit</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.junit.core</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.junit.runtime</td>
+      <td><div align="center">1.3</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.junit4.runtime</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.launching</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.ui</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jface</td>
+      <td><div align="center">F1.1</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jface.databinding</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jface.text</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jsch.core</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jsch.ui</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ltk.core.refactoring</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ltk.ui.refactoring</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.api.tools</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.api.tools.ui</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.build</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.core</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.doc.user</td>
+      <td><div align="center">not specified</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.ds.core</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.ds.ui</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.junit.runtime</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.launching</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.runtime</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.ua.core</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.ua.ui</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.ui</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.ui.templates</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.platform</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.platform.doc.isv</td>
+      <td><div align="center">not specified</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.platform.doc.user</td>
+      <td><div align="center">not specified</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.rcp</td>
+      <td><div align="center">not specified</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.sdk</td>
+      <td><div align="center">not specified</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.search</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.swt</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.team.core</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.team.cvs.core</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.team.cvs.ssh2</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.team.cvs.ui</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.team.ui</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.text</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.browser</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.cheatsheets</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.console</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.editors</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.externaltools</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.forms</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.ide</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.ide.application</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.intro</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.intro.universal</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.navigator</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.navigator.resources</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.net</td>
+      <td><div align="center">F1.1</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.trace</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.views</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.views.log</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.views.properties.tabbed</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.win32</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.workbench</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.workbench.texteditor</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.update.configurator</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.hamcrest.core</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.junit</td>
+      <td><div align="center">1.3</div></td>
+    </tr>
+    <tr>
+      <td>org.junit4</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.objectweb.asm</td>
+      <td><div align="center">1.3</div></td>
+    </tr>
+    <tr>
+      <td>org.slf4j.api</td>
+      <td><div align="center">F1.1</div></td>
+    </tr>
+    <tr>
+      <td>org.w3c.css.sac</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.w3c.dom.smil</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.w3c.dom.svg</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+  </tbody>
+</table>
+
+</body>
+</html>
diff --git a/lib/monitor-x86_64/.eclipseproduct b/lib/monitor-x86_64/.eclipseproduct
new file mode 100644
index 0000000..2bbf3ac
--- /dev/null
+++ b/lib/monitor-x86_64/.eclipseproduct
@@ -0,0 +1,3 @@
+name=Eclipse Platform
+id=org.eclipse.platform
+version=4.2.0
diff --git a/lib/monitor-x86_64/artifacts.xml b/lib/monitor-x86_64/artifacts.xml
new file mode 100644
index 0000000..53dae5f
--- /dev/null
+++ b/lib/monitor-x86_64/artifacts.xml
@@ -0,0 +1,1085 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<?artifactRepository version='1.1.0'?>
+<repository name='Bundle pool' type='org.eclipse.equinox.p2.artifact.repository.simpleRepository' version='1'>
+  <properties size='2'>
+    <property name='p2.system' value='true'/>
+    <property name='p2.timestamp' value='1478881410766'/>
+  </properties>
+  <mappings size='3'>
+    <rule filter='(&amp; (classifier=osgi.bundle))' output='${repoUrl}/plugins/${id}_${version}.jar'/>
+    <rule filter='(&amp; (classifier=binary))' output='${repoUrl}/binary/${id}_${version}'/>
+    <rule filter='(&amp; (classifier=org.eclipse.update.feature))' output='${repoUrl}/features/${id}_${version}.jar'/>
+  </mappings>
+  <artifacts size='202'>
+    <artifact classifier='osgi.bundle' id='org.eclipse.team.ui' version='3.6.201.v20130125-135424'>
+      <properties size='1'>
+        <property name='download.size' value='1445067'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.ui.sdk.scheduler' version='1.1.0.v20110815-1744'>
+      <properties size='1'>
+        <property name='download.size' value='60466'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.app' version='1.3.100.v20120522-1841'>
+      <properties size='1'>
+        <property name='download.size' value='86390'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='com.ibm.icu' version='4.4.2.v20110823'>
+      <properties size='1'>
+        <property name='download.size' value='6701200'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.util' version='1.0.400.v20120917-192807'>
+      <properties size='1'>
+        <property name='download.size' value='78026'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='com.android.ide.eclipse.gldebugger.feature' version='25.2.3.3470232'>
+      <properties size='1'>
+        <property name='download.size' value='4751'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.frameworkadmin' version='2.0.100.v20120913-155515'>
+      <properties size='1'>
+        <property name='download.size' value='36187'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.databinding.observable' version='1.4.1.v20120521-2329'>
+      <properties size='1'>
+        <property name='download.size' value='297401'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.updatesite' version='1.0.400.v20120412-1615'>
+      <properties size='1'>
+        <property name='download.size' value='83983'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.compare.core' version='3.5.200.v20120522-1148'>
+      <properties size='1'>
+        <property name='download.size' value='63243'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ecf.filetransfer' version='5.0.0.v20120610-1946'>
+      <properties size='1'>
+        <property name='download.size' value='51713'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.core.di.extensions' version='0.11.100.v20121024-182359'>
+      <properties size='1'>
+        <property name='download.size' value='23505'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='javax.servlet' version='3.0.0.v201112011016'>
+      <properties size='1'>
+        <property name='download.size' value='201594'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.felix.gogo.command' version='0.8.0.v201108120515'>
+      <properties size='1'>
+        <property name='download.size' value='57580'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.commons.httpclient' version='3.1.0.v201012070820'>
+      <properties size='1'>
+        <property name='download.size' value='321633'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.jsch.ui' version='1.1.400.v20120522-1148'>
+      <properties size='1'>
+        <property name='download.size' value='90633'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.swt' version='3.100.1.v4236b'>
+      <properties size='1'>
+        <property name='download.size' value='18539'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.w3c.dom.smil' version='1.0.0.v200806040011'>
+      <properties size='1'>
+        <property name='download.size' value='15995'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ecf.identity' version='3.1.200.v20120610-1946'>
+      <properties size='1'>
+        <property name='download.size' value='54408'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.debug.core' version='3.7.100.v20120521-2012'>
+      <properties size='1'>
+        <property name='download.size' value='346425'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.ui.bindings' version='0.10.3.v20130123-162658'>
+      <properties size='1'>
+        <property name='download.size' value='47645'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.ui.services' version='0.10.3.v20130123-162658'>
+      <properties size='1'>
+        <property name='download.size' value='24829'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.editors' version='3.8.0.v20120523-1540'>
+      <properties size='1'>
+        <property name='download.size' value='573589'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.repository.tools' version='2.0.100.v20120501-1314'>
+      <properties size='1'>
+        <property name='download.size' value='235502'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.http.jetty' version='3.0.1.v20121109-203239'>
+      <properties size='1'>
+        <property name='download.size' value='25360'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.help.webapp' version='3.6.101.v20130116-182509'>
+      <properties size='1'>
+        <property name='download.size' value='609968'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.repository' version='2.2.0.v20120524-1945'>
+      <properties size='1'>
+        <property name='download.size' value='131861'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.jface' version='3.8.102.v20130123-162658'>
+      <properties size='1'>
+        <property name='download.size' value='1092496'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='com.android.ide.eclipse.monitor.feature' version='25.2.3.3470232'>
+      <properties size='1'>
+        <property name='download.size' value='4868'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.compare' version='3.5.301.v20130125-135424'>
+      <properties size='1'>
+        <property name='download.size' value='738455'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.filebuffers' version='3.5.200.v20120523-1310'>
+      <properties size='1'>
+        <property name='download.size' value='114686'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='com.android.ide.eclipse.ddms' version='25.2.3.3470232'>
+      <properties size='1'>
+        <property name='download.size' value='2619804'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.ui.css.core' version='0.10.2.v20120912-132817'>
+      <properties size='1'>
+        <property name='download.size' value='199732'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.jsp.jasper' version='1.0.400.v20120912-130548'>
+      <properties size='1'>
+        <property name='download.size' value='28284'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.sat4j.pb' version='2.3.0.v20110329'>
+      <properties size='1'>
+        <property name='download.size' value='140725'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.commands' version='3.6.2.v20130123-162658'>
+      <properties size='1'>
+        <property name='download.size' value='108906'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='org.eclipse.emf.ecore' version='2.8.3.v20130125-0546'>
+      <properties size='1'>
+        <property name='download.size' value='18411'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.jface.databinding' version='1.6.0.v20120912-132807'>
+      <properties size='1'>
+        <property name='download.size' value='278376'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.team.core' version='3.6.100.v20120524-0627'>
+      <properties size='1'>
+        <property name='download.size' value='398409'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.rcp' version='4.2.1.v201302041200'>
+      <properties size='1'>
+        <property name='download.size' value='13390'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.emf.ecore.xmi' version='2.8.1.v20130125-0546'>
+      <properties size='1'>
+        <property name='download.size' value='222823'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.workbench' version='3.104.0.v20130204-164612'>
+      <properties size='1'>
+        <property name='download.size' value='3808742'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.filesystem' version='1.3.200.v20130115-145044'>
+      <properties size='1'>
+        <property name='download.size' value='57995'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.launcher.gtk.linux.x86_64' version='1.1.200.v20120913-144807'>
+      <properties size='1'>
+        <property name='download.size' value='79587'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.ide' version='3.8.2.v20121106-165923'>
+      <properties size='1'>
+        <property name='download.size' value='2361813'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.lucene' version='2.9.1.v201101211721'>
+      <properties size='1'>
+        <property name='download.size' value='71018'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.platform' version='4.2.2.v201302041200'>
+      <properties size='1'>
+        <property name='download.size' value='406571'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.core' version='2.2.0.v20120430-0525'>
+      <properties size='1'>
+        <property name='download.size' value='72597'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='com.android.ide.eclipse.traceview.feature' version='25.2.3.3470232'>
+      <properties size='1'>
+        <property name='download.size' value='4829'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='org.eclipse.rcp' version='4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h'>
+      <properties size='1'>
+        <property name='download.size' value='30865'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.core.services' version='1.0.0.v20120521-2346'>
+      <properties size='1'>
+        <property name='download.size' value='32030'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.simpleconfigurator.manipulator' version='2.0.0.v20110808-1657'>
+      <properties size='1'>
+        <property name='download.size' value='24057'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.ui.workbench.swt' version='0.10.3.v20130124-133900'>
+      <properties size='1'>
+        <property name='download.size' value='170113'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.security' version='1.1.100.v20120522-1841'>
+      <properties size='1'>
+        <property name='download.size' value='107463'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.publisher' version='1.2.0.v20121002-080415'>
+      <properties size='1'>
+        <property name='download.size' value='105939'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.jface.text' version='3.8.2.v20121126-164145'>
+      <properties size='1'>
+        <property name='download.size' value='992924'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='com.jcraft.jsch' version='0.1.46.v201205102330'>
+      <properties size='1'>
+        <property name='download.size' value='241154'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.commons.codec' version='1.3.0.v201101211617'>
+      <properties size='1'>
+        <property name='download.size' value='55011'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.core.contexts' version='1.2.0.v20121221-192508'>
+      <properties size='1'>
+        <property name='download.size' value='48057'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.net.linux.x86_64' version='1.1.0.v20120522-1148'>
+      <properties size='1'>
+        <property name='download.size' value='38977'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='org.eclipse.e4.rcp' version='1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS'>
+      <properties size='1'>
+        <property name='download.size' value='32073'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.lucene.core' version='2.9.1.v201101211721'>
+      <properties size='1'>
+        <property name='download.size' value='1168475'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ecf.provider.filetransfer' version='3.2.0.v20120610-1946'>
+      <properties size='1'>
+        <property name='download.size' value='127603'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.ui.importexport' version='1.0.1.v20120913-155635'>
+      <properties size='1'>
+        <property name='download.size' value='117510'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.http.servlet' version='1.1.300.v20120912-130548'>
+      <properties size='1'>
+        <property name='download.size' value='45071'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.console' version='3.5.100.v20120521-2012'>
+      <properties size='1'>
+        <property name='download.size' value='161184'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.intro' version='3.4.200.v20120521-2344'>
+      <properties size='1'>
+        <property name='download.size' value='309395'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.felix.gogo.runtime' version='0.8.0.v201108120515'>
+      <properties size='1'>
+        <property name='download.size' value='80002'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.launcher' version='1.3.0.v20120522-1813'>
+      <properties size='1'>
+        <property name='download.size' value='49282'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.jarprocessor' version='1.0.200.v20110808-1657'>
+      <properties size='1'>
+        <property name='download.size' value='69414'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.touchpoint.eclipse' version='2.1.100.v20120428-0117'>
+      <properties size='1'>
+        <property name='download.size' value='125382'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='org.eclipse.equinox.p2.core.feature' version='1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0'>
+      <properties size='1'>
+        <property name='download.size' value='31326'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.ui.workbench.renderers.swt' version='0.10.3.v20130124-170312'>
+      <properties size='1'>
+        <property name='download.size' value='328372'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='org.eclipse.equinox.p2.extras.feature' version='1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w'>
+      <properties size='1'>
+        <property name='download.size' value='30946'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.ui.sdk' version='1.0.200.v20120515-1650'>
+      <properties size='1'>
+        <property name='download.size' value='42692'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.externaltools' version='1.0.100.v20120521-2012'>
+      <properties size='1'>
+        <property name='download.size' value='41085'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.ui.workbench3' version='0.12.0.v20120521-2329'>
+      <properties size='1'>
+        <property name='download.size' value='10070'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='javax.servlet.jsp' version='2.2.0.v201112011158'>
+      <properties size='1'>
+        <property name='download.size' value='107235'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.engine' version='2.2.0.v20130121-021919'>
+      <properties size='1'>
+        <property name='download.size' value='197480'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.osgi' version='3.8.2.v20130124-134944'>
+      <properties size='1'>
+        <property name='download.size' value='1397587'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.text' version='3.5.200.v20120523-1310'>
+      <properties size='1'>
+        <property name='download.size' value='249363'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.emf.ecore' version='2.8.3.v20130125-0546'>
+      <properties size='1'>
+        <property name='download.size' value='1139504'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.ui.css.swt' version='0.10.3.v20130123-162658'>
+      <properties size='1'>
+        <property name='download.size' value='151122'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.runtime' version='3.8.0.v20120912-155025'>
+      <properties size='1'>
+        <property name='download.size' value='75324'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.search' version='3.8.0.v20120523-1540'>
+      <properties size='1'>
+        <property name='download.size' value='470071'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.garbagecollector' version='1.0.200.v20110808-1657'>
+      <properties size='1'>
+        <property name='download.size' value='26238'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.databinding' version='1.4.1.v20120912-132807'>
+      <properties size='1'>
+        <property name='download.size' value='202256'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.runtime.compatibility' version='3.2.200.v20120521-2346'>
+      <properties size='1'>
+        <property name='download.size' value='94013'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.touchpoint.natives' version='1.1.0.v20130121-021919'>
+      <properties size='1'>
+        <property name='download.size' value='52974'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='org.eclipse.equinox.p2.rcp.feature' version='1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd'>
+      <properties size='1'>
+        <property name='download.size' value='30864'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.ui.css.swt.theme' version='0.9.4.v20130123-162658'>
+      <properties size='1'>
+        <property name='download.size' value='25344'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ecf.ssl' version='1.0.100.v20120610-1946'>
+      <properties size='1'>
+        <property name='download.size' value='12773'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='org.eclipse.help' version='1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4'>
+      <properties size='1'>
+        <property name='download.size' value='31053'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.variables' version='3.2.600.v20120521-2012'>
+      <properties size='1'>
+        <property name='download.size' value='34354'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='com.android.ide.eclipse.traceview' version='25.2.3.3470232'>
+      <properties size='1'>
+        <property name='download.size' value='141206'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui' version='3.104.0.v20121024-145224'>
+      <properties size='1'>
+        <property name='download.size' value='154424'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='com.android.ide.eclipse.gldebugger' version='25.2.3.3470232'>
+      <properties size='1'>
+        <property name='download.size' value='520656'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.http.registry' version='1.1.200.v20120912-130548'>
+      <properties size='1'>
+        <property name='download.size' value='45229'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ecf.provider.filetransfer.ssl' version='1.0.0.v20120610-1946'>
+      <properties size='1'>
+        <property name='download.size' value='9672'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.browser' version='3.4.2.v20130123-162658'>
+      <properties size='1'>
+        <property name='download.size' value='192739'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.console' version='1.0.0.v20120522-1841'>
+      <properties size='1'>
+        <property name='download.size' value='111188'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.w3c.css.sac' version='1.3.1.v200903091627'>
+      <properties size='1'>
+        <property name='download.size' value='32952'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ecf' version='3.1.300.v20120610-1946'>
+      <properties size='1'>
+        <property name='download.size' value='94181'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.views' version='3.6.100.v20120705-114010'>
+      <properties size='1'>
+        <property name='download.size' value='91388'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.views.properties.tabbed' version='3.5.300.v20120912-132807'>
+      <properties size='1'>
+        <property name='download.size' value='105407'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='com.android.ide.eclipse.hierarchyviewer.feature' version='25.2.3.3470232'>
+      <properties size='1'>
+        <property name='download.size' value='4844'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.jetty.continuation' version='8.1.3.v20120522'>
+      <properties size='1'>
+        <property name='download.size' value='27328'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.felix.gogo.shell' version='0.8.0.v201110170705'>
+      <properties size='1'>
+        <property name='download.size' value='60824'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.databinding.beans' version='1.2.200.v20120523-1955'>
+      <properties size='1'>
+        <property name='download.size' value='76647'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.lucene.analysis' version='2.9.1.v201101211721'>
+      <properties size='1'>
+        <property name='download.size' value='216089'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.help.base' version='3.6.101.v201302041200'>
+      <properties size='1'>
+        <property name='download.size' value='421642'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.emf.common' version='2.8.0.v20130125-0546'>
+      <properties size='1'>
+        <property name='download.size' value='214222'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.operations' version='2.2.0.v20130119-010614'>
+      <properties size='1'>
+        <property name='download.size' value='60066'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.ant' version='1.8.3.v201301120609'>
+      <properties size='1'>
+        <property name='download.size' value='2359356'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.jetty.http' version='8.1.3.v20120522'>
+      <properties size='1'>
+        <property name='download.size' value='101528'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.swt.gtk.linux.x86_64' version='3.100.1.v4236b'>
+      <properties size='1'>
+        <property name='download.size' value='2578203'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='com.android.ide.eclipse.ddms.feature' version='25.2.3.3470232'>
+      <properties size='1'>
+        <property name='download.size' value='5051'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ltk.core.refactoring' version='3.6.0.v20120523-1543'>
+      <properties size='1'>
+        <property name='download.size' value='325764'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ecf.provider.filetransfer.httpclient.ssl' version='1.0.0.v20120610-1946'>
+      <properties size='1'>
+        <property name='download.size' value='17935'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ecf.provider.filetransfer.httpclient' version='4.0.200.v20120610-1946'>
+      <properties size='1'>
+        <property name='download.size' value='74130'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='org.eclipse.emf.common' version='2.8.0.v20130125-0546'>
+      <properties size='1'>
+        <property name='download.size' value='18372'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.ql' version='2.0.100.v20110808-1657'>
+      <properties size='1'>
+        <property name='download.size' value='9256'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='org.eclipse.equinox.p2.user.ui' version='2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H'>
+      <properties size='1'>
+        <property name='download.size' value='30887'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.osgi.util' version='3.2.300.v20120913-144807'>
+      <properties size='1'>
+        <property name='download.size' value='24979'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.extensionlocation' version='1.2.100.v20110808-1657'>
+      <properties size='1'>
+        <property name='download.size' value='35833'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.commons.logging' version='1.0.4.v201101211617'>
+      <properties size='1'>
+        <property name='download.size' value='45405'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.jasper.glassfish' version='2.2.2.v201205150955'>
+      <properties size='1'>
+        <property name='download.size' value='2383691'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='javax.inject' version='1.0.0.v20091030'>
+      <properties size='1'>
+        <property name='download.size' value='12288'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.resources' version='3.8.1.v20121114-124432'>
+      <properties size='1'>
+        <property name='download.size' value='810227'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.bidi' version='0.9.100.v20121107-021609'>
+      <properties size='1'>
+        <property name='download.size' value='49578'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='com.android.ide.eclipse.monitor' version='25.2.3.3470232'>
+      <properties size='1'>
+        <property name='download.size' value='622614'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.databinding.property' version='1.4.100.v20120523-1955'>
+      <properties size='1'>
+        <property name='download.size' value='169204'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.navigator.resources' version='3.4.400.v20120705-114010'>
+      <properties size='1'>
+        <property name='download.size' value='120312'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.directorywatcher' version='1.0.300.v20110808-1657'>
+      <properties size='1'>
+        <property name='download.size' value='33783'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.jetty.io' version='8.1.3.v20120522'>
+      <properties size='1'>
+        <property name='download.size' value='111094'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.jetty.security' version='8.1.3.v20120522'>
+      <properties size='1'>
+        <property name='download.size' value='95308'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.filesystem.linux.x86_64' version='1.2.0.v20120522-1137'>
+      <properties size='1'>
+        <property name='download.size' value='10778'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.ui' version='2.2.0.v20130119-010614'>
+      <properties size='1'>
+        <property name='download.size' value='521522'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.event' version='1.2.200.v20120522-2049'>
+      <properties size='1'>
+        <property name='download.size' value='33750'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ant.core' version='3.2.401.v20121204-162022'>
+      <properties size='1'>
+        <property name='download.size' value='99275'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='com.android.ide.eclipse.base' version='25.2.3.3470232'>
+      <properties size='1'>
+        <property name='download.size' value='4326913'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.jsch.core' version='1.1.400.v20120522-1148'>
+      <properties size='1'>
+        <property name='download.size' value='37557'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.net' version='1.2.200.v20120914-093638'>
+      <properties size='1'>
+        <property name='download.size' value='70472'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.frameworkadmin.equinox' version='1.0.400.v20120913-155709'>
+      <properties size='1'>
+        <property name='download.size' value='62580'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.ui.model.workbench' version='0.10.1.v20120523-1955'>
+      <properties size='1'>
+        <property name='download.size' value='354872'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.jsp.jasper.registry' version='1.0.300.v20120912-130548'>
+      <properties size='1'>
+        <property name='download.size' value='12358'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='com.sun.el' version='2.2.0.v201108011116'>
+      <properties size='1'>
+        <property name='download.size' value='130602'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.ui.di' version='0.10.1.v20120523-1955'>
+      <properties size='1'>
+        <property name='download.size' value='14581'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.workbench.texteditor' version='3.8.0.v20120523-1310'>
+      <properties size='1'>
+        <property name='download.size' value='584027'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.batik.util' version='1.6.0.v201011041432'>
+      <properties size='1'>
+        <property name='download.size' value='101159'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.core.commands' version='0.10.1.v20120523-1955'>
+      <properties size='1'>
+        <property name='download.size' value='18234'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='com.android.ide.eclipse.hierarchyviewer' version='25.2.3.3470232'>
+      <properties size='1'>
+        <property name='download.size' value='409124'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.w3c.dom.svg' version='1.1.0.v201011041433'>
+      <properties size='1'>
+        <property name='download.size' value='87897'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.artifact.repository' version='1.1.200.v20120430-1959'>
+      <properties size='1'>
+        <property name='download.size' value='137108'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.metadata' version='2.1.0.v20120430-2001'>
+      <properties size='1'>
+        <property name='download.size' value='340683'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='javax.annotation' version='1.0.0.v20101115-0725'>
+      <properties size='1'>
+        <property name='download.size' value='17480'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.common' version='3.6.100.v20120522-1841'>
+      <properties size='1'>
+        <property name='download.size' value='106765'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ltk.ui.refactoring' version='3.7.0.v20120523-1543'>
+      <properties size='1'>
+        <property name='download.size' value='458248'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.intro.universal' version='3.2.600.v20120912-155524'>
+      <properties size='1'>
+        <property name='download.size' value='1637407'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.ui.workbench' version='0.11.0.v20130125-100758'>
+      <properties size='1'>
+        <property name='download.size' value='236292'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.ds' version='1.4.1.v20120926-201320'>
+      <properties size='1'>
+        <property name='download.size' value='194017'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.sat4j.core' version='2.3.0.v20110329'>
+      <properties size='1'>
+        <property name='download.size' value='210700'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.updatechecker' version='1.1.200.v20110808-1657'>
+      <properties size='1'>
+        <property name='download.size' value='18001'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.osgi.services' version='3.3.100.v20120522-1822'>
+      <properties size='1'>
+        <property name='download.size' value='83084'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.director.app' version='1.0.300.v20120428-0517'>
+      <properties size='1'>
+        <property name='download.size' value='50374'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.director' version='2.2.0.v20120524-0542'>
+      <properties size='1'>
+        <property name='download.size' value='96468'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.preferences' version='3.5.1.v20121031-182809'>
+      <properties size='1'>
+        <property name='download.size' value='126754'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='javax.xml' version='1.3.4.v201005080400'>
+      <properties size='1'>
+        <property name='download.size' value='237996'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.jobs' version='3.5.300.v20120912-155018'>
+      <properties size='1'>
+        <property name='download.size' value='92510'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.contenttype' version='3.4.200.v20120523-2004'>
+      <properties size='1'>
+        <property name='download.size' value='93175'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.help' version='3.6.0.v20120912-134126'>
+      <properties size='1'>
+        <property name='download.size' value='258851'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.console' version='1.0.300.v20120429-0125'>
+      <properties size='1'>
+        <property name='download.size' value='28273'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='javax.el' version='2.2.0.v201108011116'>
+      <properties size='1'>
+        <property name='download.size' value='52319'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.forms' version='3.5.200.v20120705-114351'>
+      <properties size='1'>
+        <property name='download.size' value='302121'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.ui.widgets' version='0.12.3.v20130123-162658'>
+      <properties size='1'>
+        <property name='download.size' value='14022'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.publisher.eclipse' version='1.1.0.v20120913-155635'>
+      <properties size='1'>
+        <property name='download.size' value='215200'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.ui.workbench.addons.swt' version='0.10.3.v20130124-185622'>
+      <properties size='1'>
+        <property name='download.size' value='132003'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.batik.util.gui' version='1.6.0.v201011041432'>
+      <properties size='1'>
+        <property name='download.size' value='164253'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.transport.ecf' version='1.0.100.v20120913-155635'>
+      <properties size='1'>
+        <property name='download.size' value='42017'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.jetty.util' version='8.1.3.v20120522'>
+      <properties size='1'>
+        <property name='download.size' value='282738'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.help.ui' version='3.5.201.v20130108-092756'>
+      <properties size='1'>
+        <property name='download.size' value='499655'/>
+      </properties>
+    </artifact>
+    <artifact classifier='org.eclipse.update.feature' id='org.eclipse.platform' version='4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7'>
+      <properties size='1'>
+        <property name='download.size' value='32030'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.update.configurator' version='3.3.200.v20120912-144026'>
+      <properties size='1'>
+        <property name='download.size' value='101125'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.apache.batik.css' version='1.6.0.v201011041432'>
+      <properties size='1'>
+        <property name='download.size' value='265409'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.cheatsheets' version='3.4.200.v20120521-2344'>
+      <properties size='1'>
+        <property name='download.size' value='330211'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.net' version='1.2.101.v20120914-093638'>
+      <properties size='1'>
+        <property name='download.size' value='48975'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.security.ui' version='1.1.100.v20120522-2049'>
+      <properties size='1'>
+        <property name='download.size' value='215477'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.e4.core.di' version='1.2.0.v20121024-173149'>
+      <properties size='1'>
+        <property name='download.size' value='51874'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.runtime.compatibility.registry' version='3.5.101.v20130108-163257'>
+      <properties size='1'>
+        <property name='download.size' value='19341'/>
+      </properties>
+      <repositoryProperties size='1'>
+        <property name='artifact.folder' value='true'/>
+      </repositoryProperties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.jetty.servlet' version='8.1.3.v20120522'>
+      <properties size='1'>
+        <property name='download.size' value='102989'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.externaltools' version='3.2.100.v20120530-1753'>
+      <properties size='1'>
+        <property name='download.size' value='137310'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.debug.ui' version='3.8.2.v20130130-171415'>
+      <properties size='1'>
+        <property name='download.size' value='2614072'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.reconciler.dropins' version='1.1.200.v20120301-2145'>
+      <properties size='1'>
+        <property name='download.size' value='48731'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.p2.metadata.repository' version='1.2.100.v20120524-1717'>
+      <properties size='1'>
+        <property name='download.size' value='118133'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.navigator' version='3.5.200.v20120705-114103'>
+      <properties size='1'>
+        <property name='download.size' value='406144'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.registry' version='3.5.200.v20120522-1841'>
+      <properties size='1'>
+        <property name='download.size' value='184235'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.equinox.simpleconfigurator' version='1.0.301.v20120914-163612'>
+      <properties size='1'>
+        <property name='download.size' value='40706'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.jetty.server' version='8.1.3.v20120522'>
+      <properties size='1'>
+        <property name='download.size' value='344666'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.platform.doc.user' version='4.2.2.v20130121-200410'>
+      <properties size='1'>
+        <property name='download.size' value='8719019'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.core.expressions' version='3.4.401.v20120912-155018'>
+      <properties size='1'>
+        <property name='download.size' value='88231'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.ui.ide.application' version='1.0.400.v20120523-1955'>
+      <properties size='1'>
+        <property name='download.size' value='66382'/>
+      </properties>
+    </artifact>
+    <artifact classifier='osgi.bundle' id='org.eclipse.emf.ecore.change' version='2.8.0.v20130125-0546'>
+      <properties size='1'>
+        <property name='download.size' value='83050'/>
+      </properties>
+    </artifact>
+  </artifacts>
+</repository>
diff --git a/lib/monitor-x86_64/configuration/config.ini b/lib/monitor-x86_64/configuration/config.ini
new file mode 100644
index 0000000..8e54d98
--- /dev/null
+++ b/lib/monitor-x86_64/configuration/config.ini
@@ -0,0 +1,12 @@
+#This configuration file was written by: org.eclipse.equinox.internal.frameworkadmin.equinox.EquinoxFwConfigFileParser
+#Fri Nov 11 16:23:31 UTC 2016
+eclipse.p2.profile=DefaultProfile
+osgi.framework=file\:plugins/org.eclipse.osgi_3.8.2.v20130124-134944.jar
+equinox.use.ds=true
+osgi.bundles=reference\:file\:com.android.ide.eclipse.base_25.2.3.3470232.jar@4,reference\:file\:com.android.ide.eclipse.ddms_25.2.3.3470232.jar@4,reference\:file\:com.android.ide.eclipse.gldebugger_25.2.3.3470232.jar@4,reference\:file\:com.android.ide.eclipse.hierarchyviewer_25.2.3.3470232.jar@4,reference\:file\:com.android.ide.eclipse.monitor_25.2.3.3470232.jar@4,reference\:file\:com.android.ide.eclipse.traceview_25.2.3.3470232.jar@4,reference\:file\:com.ibm.icu_4.4.2.v20110823.jar@4,reference\:file\:com.jcraft.jsch_0.1.46.v201205102330.jar@4,reference\:file\:com.sun.el_2.2.0.v201108011116.jar@4,reference\:file\:javax.annotation_1.0.0.v20101115-0725.jar@4,reference\:file\:javax.el_2.2.0.v201108011116.jar@4,reference\:file\:javax.inject_1.0.0.v20091030.jar@4,reference\:file\:javax.servlet_3.0.0.v201112011016.jar@4,reference\:file\:javax.servlet.jsp_2.2.0.v201112011158.jar@4,reference\:file\:javax.xml_1.3.4.v201005080400.jar@4,reference\:file\:org.apache.ant_1.8.3.v201301120609/@4,reference\:file\:org.apache.batik.css_1.6.0.v201011041432.jar@4,reference\:file\:org.apache.batik.util_1.6.0.v201011041432.jar@4,reference\:file\:org.apache.batik.util.gui_1.6.0.v201011041432.jar@4,reference\:file\:org.apache.commons.codec_1.3.0.v201101211617.jar@4,reference\:file\:org.apache.commons.httpclient_3.1.0.v201012070820.jar@4,reference\:file\:org.apache.commons.logging_1.0.4.v201101211617.jar@4,reference\:file\:org.apache.felix.gogo.command_0.8.0.v201108120515.jar@4,reference\:file\:org.apache.felix.gogo.runtime_0.8.0.v201108120515.jar@4,reference\:file\:org.apache.felix.gogo.shell_0.8.0.v201110170705.jar@4,reference\:file\:org.apache.jasper.glassfish_2.2.2.v201205150955.jar@4,reference\:file\:org.apache.lucene_2.9.1.v201101211721.jar@4,reference\:file\:org.apache.lucene.analysis_2.9.1.v201101211721.jar@4,reference\:file\:org.apache.lucene.core_2.9.1.v201101211721.jar@4,reference\:file\:org.eclipse.ant.core_3.2.401.v20121204-162022.jar@4,reference\:file\:org.eclipse.compare_3.5.301.v20130125-135424.jar@4,reference\:file\:org.eclipse.compare.core_3.5.200.v20120522-1148.jar@4,reference\:file\:org.eclipse.core.commands_3.6.2.v20130123-162658.jar@4,reference\:file\:org.eclipse.core.contenttype_3.4.200.v20120523-2004.jar@4,reference\:file\:org.eclipse.core.databinding_1.4.1.v20120912-132807.jar@4,reference\:file\:org.eclipse.core.databinding.beans_1.2.200.v20120523-1955.jar@4,reference\:file\:org.eclipse.core.databinding.observable_1.4.1.v20120521-2329.jar@4,reference\:file\:org.eclipse.core.databinding.property_1.4.100.v20120523-1955.jar@4,reference\:file\:org.eclipse.core.expressions_3.4.401.v20120912-155018.jar@4,reference\:file\:org.eclipse.core.externaltools_1.0.100.v20120521-2012.jar@4,reference\:file\:org.eclipse.core.filebuffers_3.5.200.v20120523-1310.jar@4,reference\:file\:org.eclipse.core.filesystem_1.3.200.v20130115-145044.jar@4,reference\:file\:org.eclipse.core.filesystem.linux.x86_64_1.2.0.v20120522-1137.jar@4,reference\:file\:org.eclipse.core.jobs_3.5.300.v20120912-155018.jar@4,reference\:file\:org.eclipse.core.net_1.2.200.v20120914-093638.jar@4,reference\:file\:org.eclipse.core.net.linux.x86_64_1.1.0.v20120522-1148.jar@4,reference\:file\:org.eclipse.core.resources_3.8.1.v20121114-124432.jar@4,reference\:file\:org.eclipse.core.runtime_3.8.0.v20120912-155025.jar@2\:start,reference\:file\:org.eclipse.core.runtime.compatibility_3.2.200.v20120521-2346.jar@4,reference\:file\:org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/@4,reference\:file\:org.eclipse.core.variables_3.2.600.v20120521-2012.jar@4,reference\:file\:org.eclipse.debug.core_3.7.100.v20120521-2012.jar@4,reference\:file\:org.eclipse.debug.ui_3.8.2.v20130130-171415.jar@4,reference\:file\:org.eclipse.e4.core.commands_0.10.1.v20120523-1955.jar@4,reference\:file\:org.eclipse.e4.core.contexts_1.2.0.v20121221-192508.jar@4,reference\:file\:org.eclipse.e4.core.di_1.2.0.v20121024-173149.jar@4,reference\:file\:org.eclipse.e4.core.di.extensions_0.11.100.v20121024-182359.jar@4,reference\:file\:org.eclipse.e4.core.services_1.0.0.v20120521-2346.jar@4,reference\:file\:org.eclipse.e4.ui.bindings_0.10.3.v20130123-162658.jar@4,reference\:file\:org.eclipse.e4.ui.css.core_0.10.2.v20120912-132817.jar@4,reference\:file\:org.eclipse.e4.ui.css.swt_0.10.3.v20130123-162658.jar@4,reference\:file\:org.eclipse.e4.ui.css.swt.theme_0.9.4.v20130123-162658.jar@4,reference\:file\:org.eclipse.e4.ui.di_0.10.1.v20120523-1955.jar@4,reference\:file\:org.eclipse.e4.ui.model.workbench_0.10.1.v20120523-1955.jar@4,reference\:file\:org.eclipse.e4.ui.services_0.10.3.v20130123-162658.jar@4,reference\:file\:org.eclipse.e4.ui.widgets_0.12.3.v20130123-162658.jar@4,reference\:file\:org.eclipse.e4.ui.workbench_0.11.0.v20130125-100758.jar@4,reference\:file\:org.eclipse.e4.ui.workbench.addons.swt_0.10.3.v20130124-185622.jar@4,reference\:file\:org.eclipse.e4.ui.workbench.renderers.swt_0.10.3.v20130124-170312.jar@4,reference\:file\:org.eclipse.e4.ui.workbench.swt_0.10.3.v20130124-133900.jar@4,reference\:file\:org.eclipse.e4.ui.workbench3_0.12.0.v20120521-2329.jar@4,reference\:file\:org.eclipse.ecf_3.1.300.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.filetransfer_5.0.0.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.identity_3.1.200.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.provider.filetransfer_3.2.0.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.provider.filetransfer.httpclient_4.0.200.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.provider.filetransfer.httpclient.ssl_1.0.0.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.provider.filetransfer.ssl_1.0.0.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.ssl_1.0.100.v20120610-1946.jar@4,reference\:file\:org.eclipse.emf.common_2.8.0.v20130125-0546.jar@4,reference\:file\:org.eclipse.emf.ecore_2.8.3.v20130125-0546.jar@4,reference\:file\:org.eclipse.emf.ecore.change_2.8.0.v20130125-0546.jar@4,reference\:file\:org.eclipse.emf.ecore.xmi_2.8.1.v20130125-0546.jar@4,reference\:file\:org.eclipse.equinox.app_1.3.100.v20120522-1841.jar@4,reference\:file\:org.eclipse.equinox.bidi_0.9.100.v20121107-021609.jar@4,reference\:file\:org.eclipse.equinox.common_3.6.100.v20120522-1841.jar@2\:start,reference\:file\:org.eclipse.equinox.console_1.0.0.v20120522-1841.jar@4,reference\:file\:org.eclipse.equinox.ds_1.4.1.v20120926-201320.jar@2\:start,reference\:file\:org.eclipse.equinox.event_1.2.200.v20120522-2049.jar@4,reference\:file\:org.eclipse.equinox.frameworkadmin_2.0.100.v20120913-155515.jar@4,reference\:file\:org.eclipse.equinox.frameworkadmin.equinox_1.0.400.v20120913-155709.jar@4,reference\:file\:org.eclipse.equinox.http.jetty_3.0.1.v20121109-203239.jar@4,reference\:file\:org.eclipse.equinox.http.registry_1.1.200.v20120912-130548.jar@4,reference\:file\:org.eclipse.equinox.http.servlet_1.1.300.v20120912-130548.jar@4,reference\:file\:org.eclipse.equinox.jsp.jasper_1.0.400.v20120912-130548.jar@4,reference\:file\:org.eclipse.equinox.jsp.jasper.registry_1.0.300.v20120912-130548.jar@4,reference\:file\:org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar@4,reference\:file\:org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/@4,reference\:file\:org.eclipse.equinox.p2.artifact.repository_1.1.200.v20120430-1959.jar@4,reference\:file\:org.eclipse.equinox.p2.console_1.0.300.v20120429-0125.jar@4,reference\:file\:org.eclipse.equinox.p2.core_2.2.0.v20120430-0525.jar@4,reference\:file\:org.eclipse.equinox.p2.director_2.2.0.v20120524-0542.jar@4,reference\:file\:org.eclipse.equinox.p2.director.app_1.0.300.v20120428-0517.jar@4,reference\:file\:org.eclipse.equinox.p2.directorywatcher_1.0.300.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.p2.engine_2.2.0.v20130121-021919.jar@4,reference\:file\:org.eclipse.equinox.p2.extensionlocation_1.2.100.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.p2.garbagecollector_1.0.200.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.p2.jarprocessor_1.0.200.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.p2.metadata_2.1.0.v20120430-2001.jar@4,reference\:file\:org.eclipse.equinox.p2.metadata.repository_1.2.100.v20120524-1717.jar@4,reference\:file\:org.eclipse.equinox.p2.operations_2.2.0.v20130119-010614.jar@4,reference\:file\:org.eclipse.equinox.p2.publisher_1.2.0.v20121002-080415.jar@4,reference\:file\:org.eclipse.equinox.p2.publisher.eclipse_1.1.0.v20120913-155635.jar@4,reference\:file\:org.eclipse.equinox.p2.ql_2.0.100.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.p2.reconciler.dropins_1.1.200.v20120301-2145.jar@4,reference\:file\:org.eclipse.equinox.p2.repository_2.2.0.v20120524-1945.jar@4,reference\:file\:org.eclipse.equinox.p2.repository.tools_2.0.100.v20120501-1314.jar@4,reference\:file\:org.eclipse.equinox.p2.touchpoint.eclipse_2.1.100.v20120428-0117.jar@4,reference\:file\:org.eclipse.equinox.p2.touchpoint.natives_1.1.0.v20130121-021919.jar@4,reference\:file\:org.eclipse.equinox.p2.transport.ecf_1.0.100.v20120913-155635.jar@4,reference\:file\:org.eclipse.equinox.p2.ui_2.2.0.v20130119-010614.jar@4,reference\:file\:org.eclipse.equinox.p2.ui.importexport_1.0.1.v20120913-155635.jar@4,reference\:file\:org.eclipse.equinox.p2.ui.sdk_1.0.200.v20120515-1650.jar@4,reference\:file\:org.eclipse.equinox.p2.ui.sdk.scheduler_1.1.0.v20110815-1744.jar@4,reference\:file\:org.eclipse.equinox.p2.updatechecker_1.1.200.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.p2.updatesite_1.0.400.v20120412-1615.jar@4,reference\:file\:org.eclipse.equinox.preferences_3.5.1.v20121031-182809.jar@4,reference\:file\:org.eclipse.equinox.registry_3.5.200.v20120522-1841.jar@4,reference\:file\:org.eclipse.equinox.security_1.1.100.v20120522-1841.jar@4,reference\:file\:org.eclipse.equinox.security.ui_1.1.100.v20120522-2049.jar@4,reference\:file\:org.eclipse.equinox.simpleconfigurator_1.0.301.v20120914-163612.jar@4,reference\:file\:org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.util_1.0.400.v20120917-192807.jar@4,reference\:file\:org.eclipse.help_3.6.0.v20120912-134126.jar@4,reference\:file\:org.eclipse.help.base_3.6.101.v201302041200.jar@4,reference\:file\:org.eclipse.help.ui_3.5.201.v20130108-092756.jar@4,reference\:file\:org.eclipse.help.webapp_3.6.101.v20130116-182509.jar@4,reference\:file\:org.eclipse.jetty.continuation_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jetty.http_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jetty.io_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jetty.security_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jetty.server_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jetty.servlet_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jetty.util_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jface_3.8.102.v20130123-162658.jar@4,reference\:file\:org.eclipse.jface.databinding_1.6.0.v20120912-132807.jar@4,reference\:file\:org.eclipse.jface.text_3.8.2.v20121126-164145.jar@4,reference\:file\:org.eclipse.jsch.core_1.1.400.v20120522-1148.jar@4,reference\:file\:org.eclipse.jsch.ui_1.1.400.v20120522-1148.jar@4,reference\:file\:org.eclipse.ltk.core.refactoring_3.6.0.v20120523-1543.jar@4,reference\:file\:org.eclipse.ltk.ui.refactoring_3.7.0.v20120523-1543.jar@4,reference\:file\:org.eclipse.osgi.services_3.3.100.v20120522-1822.jar@4,reference\:file\:org.eclipse.osgi.util_3.2.300.v20120913-144807.jar@4,reference\:file\:org.eclipse.platform_4.2.2.v201302041200/@4,reference\:file\:org.eclipse.platform.doc.user_4.2.2.v20130121-200410.jar@4,reference\:file\:org.eclipse.rcp_4.2.1.v201302041200.jar@4,reference\:file\:org.eclipse.search_3.8.0.v20120523-1540.jar@4,reference\:file\:org.eclipse.swt_3.100.1.v4236b.jar@4,reference\:file\:org.eclipse.swt.gtk.linux.x86_64_3.100.1.v4236b.jar@4,reference\:file\:org.eclipse.team.core_3.6.100.v20120524-0627.jar@4,reference\:file\:org.eclipse.team.ui_3.6.201.v20130125-135424.jar@4,reference\:file\:org.eclipse.text_3.5.200.v20120523-1310.jar@4,reference\:file\:org.eclipse.ui_3.104.0.v20121024-145224.jar@4,reference\:file\:org.eclipse.ui.browser_3.4.2.v20130123-162658.jar@4,reference\:file\:org.eclipse.ui.cheatsheets_3.4.200.v20120521-2344.jar@4,reference\:file\:org.eclipse.ui.console_3.5.100.v20120521-2012.jar@4,reference\:file\:org.eclipse.ui.editors_3.8.0.v20120523-1540.jar@4,reference\:file\:org.eclipse.ui.externaltools_3.2.100.v20120530-1753.jar@4,reference\:file\:org.eclipse.ui.forms_3.5.200.v20120705-114351.jar@4,reference\:file\:org.eclipse.ui.ide_3.8.2.v20121106-165923.jar@4,reference\:file\:org.eclipse.ui.ide.application_1.0.400.v20120523-1955.jar@4,reference\:file\:org.eclipse.ui.intro_3.4.200.v20120521-2344.jar@4,reference\:file\:org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/@4,reference\:file\:org.eclipse.ui.navigator_3.5.200.v20120705-114103.jar@4,reference\:file\:org.eclipse.ui.navigator.resources_3.4.400.v20120705-114010.jar@4,reference\:file\:org.eclipse.ui.net_1.2.101.v20120914-093638.jar@4,reference\:file\:org.eclipse.ui.views_3.6.100.v20120705-114010.jar@4,reference\:file\:org.eclipse.ui.views.properties.tabbed_3.5.300.v20120912-132807.jar@4,reference\:file\:org.eclipse.ui.workbench_3.104.0.v20130204-164612.jar@4,reference\:file\:org.eclipse.ui.workbench.texteditor_3.8.0.v20120523-1310.jar@4,reference\:file\:org.eclipse.update.configurator_3.3.200.v20120912-144026.jar@4,reference\:file\:org.sat4j.core_2.3.0.v20110329.jar@4,reference\:file\:org.sat4j.pb_2.3.0.v20110329.jar@4,reference\:file\:org.w3c.css.sac_1.3.1.v200903091627.jar@4,reference\:file\:org.w3c.dom.smil_1.0.0.v200806040011.jar@4,reference\:file\:org.w3c.dom.svg_1.1.0.v201011041433.jar@4
+eclipse.product=com.android.ide.eclipse.monitor.product
+osgi.splashPath=platform\:/base/plugins/com.android.ide.eclipse.monitor
+osgi.framework.extensions=
[email protected]/../p2
+osgi.bundles.defaultStartLevel=4
+eclipse.application=com.android.ide.eclipse.monitor.Application
diff --git a/lib/monitor-x86_64/configuration/org.eclipse.update/platform.xml b/lib/monitor-x86_64/configuration/org.eclipse.update/platform.xml
new file mode 100644
index 0000000..a1c6a75
--- /dev/null
+++ b/lib/monitor-x86_64/configuration/org.eclipse.update/platform.xml
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<config transient="false" date="1478881411779">
+	<site enabled="true" updateable="true" policy="USER-EXCLUDE" url="platform:/base/">
+		<feature id="org.eclipse.emf.common" url="features/org.eclipse.emf.common_2.8.0.v20130125-0546/" version="2.8.0.v20130125-0546">
+		</feature>
+		<feature id="org.eclipse.equinox.p2.user.ui" url="features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/" version="2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H">
+		</feature>
+		<feature id="org.eclipse.rcp" url="features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/" version="4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h">
+		</feature>
+		<feature id="org.eclipse.emf.ecore" url="features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/" version="2.8.3.v20130125-0546">
+		</feature>
+		<feature id="com.android.ide.eclipse.gldebugger.feature" url="features/com.android.ide.eclipse.gldebugger.feature_25.2.3.3470232/" version="25.2.3.3470232">
+		</feature>
+		<feature id="com.android.ide.eclipse.ddms.feature" plugin-identifier="com.android.ide.eclipse.ddms" url="features/com.android.ide.eclipse.ddms.feature_25.2.3.3470232/" version="25.2.3.3470232">
+		</feature>
+		<feature id="org.eclipse.equinox.p2.extras.feature" url="features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/" version="1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w">
+		</feature>
+		<feature id="org.eclipse.equinox.p2.rcp.feature" url="features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/" version="1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd">
+		</feature>
+		<feature id="org.eclipse.e4.rcp" url="features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/" version="1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS">
+		</feature>
+		<feature id="com.android.ide.eclipse.hierarchyviewer.feature" plugin-identifier="com.android.ide.eclipse.hierarchyviewer" url="features/com.android.ide.eclipse.hierarchyviewer.feature_25.2.3.3470232/" version="25.2.3.3470232">
+		</feature>
+		<feature id="org.eclipse.platform" url="features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/" version="4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7">
+		</feature>
+		<feature id="com.android.ide.eclipse.monitor.feature" plugin-identifier="com.android.ide.eclipse.monitor" url="features/com.android.ide.eclipse.monitor.feature_25.2.3.3470232/" version="25.2.3.3470232">
+		</feature>
+		<feature id="org.eclipse.help" plugin-identifier="org.eclipse.help.base" url="features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/" version="1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4">
+		</feature>
+		<feature id="org.eclipse.equinox.p2.core.feature" url="features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/" version="1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0">
+		</feature>
+		<feature id="com.android.ide.eclipse.traceview.feature" plugin-identifier="com.android.ide.eclipse.traceview" url="features/com.android.ide.eclipse.traceview.feature_25.2.3.3470232/" version="25.2.3.3470232">
+		</feature>
+	</site>
+</config>
diff --git a/lib/monitor-x86_64/epl-v10.html b/lib/monitor-x86_64/epl-v10.html
new file mode 100644
index 0000000..ed4b196
--- /dev/null
+++ b/lib/monitor-x86_64/epl-v10.html
@@ -0,0 +1,328 @@
+<html xmlns:o="urn:schemas-microsoft-com:office:office"
+xmlns:w="urn:schemas-microsoft-com:office:word"
+xmlns="http://www.w3.org/TR/REC-html40">
+
+<head>
+<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
+<meta name=ProgId content=Word.Document>
+<meta name=Generator content="Microsoft Word 9">
+<meta name=Originator content="Microsoft Word 9">
+<link rel=File-List
+href="./Eclipse%20EPL%202003_11_10%20Final_files/filelist.xml">
+<title>Eclipse Public License - Version 1.0</title>
+<!--[if gte mso 9]><xml>
+ <o:DocumentProperties>
+  <o:Revision>2</o:Revision>
+  <o:TotalTime>3</o:TotalTime>
+  <o:Created>2004-03-05T23:03:00Z</o:Created>
+  <o:LastSaved>2004-03-05T23:03:00Z</o:LastSaved>
+  <o:Pages>4</o:Pages>
+  <o:Words>1626</o:Words>
+  <o:Characters>9270</o:Characters>
+   <o:Lines>77</o:Lines>
+  <o:Paragraphs>18</o:Paragraphs>
+  <o:CharactersWithSpaces>11384</o:CharactersWithSpaces>
+  <o:Version>9.4402</o:Version>
+ </o:DocumentProperties>
+</xml><![endif]--><!--[if gte mso 9]><xml>
+ <w:WordDocument>
+  <w:TrackRevisions/>
+ </w:WordDocument>
+</xml><![endif]-->
+<style>
+<!--
+ /* Font Definitions */
+@font-face
+	{font-family:Tahoma;
+	panose-1:2 11 6 4 3 5 4 4 2 4;
+	mso-font-charset:0;
+	mso-generic-font-family:swiss;
+	mso-font-pitch:variable;
+	mso-font-signature:553679495 -2147483648 8 0 66047 0;}
+ /* Style Definitions */
+p.MsoNormal, li.MsoNormal, div.MsoNormal
+	{mso-style-parent:"";
+	margin:0in;
+	margin-bottom:.0001pt;
+	mso-pagination:widow-orphan;
+	font-size:12.0pt;
+	font-family:"Times New Roman";
+	mso-fareast-font-family:"Times New Roman";}
+p
+	{margin-right:0in;
+	mso-margin-top-alt:auto;
+	mso-margin-bottom-alt:auto;
+	margin-left:0in;
+	mso-pagination:widow-orphan;
+	font-size:12.0pt;
+	font-family:"Times New Roman";
+	mso-fareast-font-family:"Times New Roman";}
+p.BalloonText, li.BalloonText, div.BalloonText
+	{mso-style-name:"Balloon Text";
+	margin:0in;
+	margin-bottom:.0001pt;
+	mso-pagination:widow-orphan;
+	font-size:8.0pt;
+	font-family:Tahoma;
+	mso-fareast-font-family:"Times New Roman";}
+@page Section1
+	{size:8.5in 11.0in;
+	margin:1.0in 1.25in 1.0in 1.25in;
+	mso-header-margin:.5in;
+	mso-footer-margin:.5in;
+	mso-paper-source:0;}
+div.Section1
+	{page:Section1;}
+-->
+</style>
+</head>
+
+<body lang=EN-US style='tab-interval:.5in'>
+
+<div class=Section1>
+
+<p align=center style='text-align:center'><b>Eclipse Public License - v 1.0</b>
+</p>
+
+<p><span style='font-size:10.0pt'>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER
+THE TERMS OF THIS ECLIPSE PUBLIC LICENSE (&quot;AGREEMENT&quot;). ANY USE,
+REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE
+OF THIS AGREEMENT.</span> </p>
+
+<p><b><span style='font-size:10.0pt'>1. DEFINITIONS</span></b> </p>
+
+<p><span style='font-size:10.0pt'>&quot;Contribution&quot; means:</span> </p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>a)
+in the case of the initial Contributor, the initial code and documentation
+distributed under this Agreement, and<br clear=left>
+b) in the case of each subsequent Contributor:</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>i)
+changes to the Program, and</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>ii)
+additions to the Program;</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>where
+such changes and/or additions to the Program originate from and are distributed
+by that particular Contributor. A Contribution 'originates' from a Contributor
+if it was added to the Program by such Contributor itself or anyone acting on
+such Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in conjunction
+with the Program under their own license agreement, and (ii) are not derivative
+works of the Program. </span></p>
+
+<p><span style='font-size:10.0pt'>&quot;Contributor&quot; means any person or
+entity that distributes the Program.</span> </p>
+
+<p><span style='font-size:10.0pt'>&quot;Licensed Patents &quot; mean patent
+claims licensable by a Contributor which are necessarily infringed by the use
+or sale of its Contribution alone or when combined with the Program. </span></p>
+
+<p><span style='font-size:10.0pt'>&quot;Program&quot; means the Contributions
+distributed in accordance with this Agreement.</span> </p>
+
+<p><span style='font-size:10.0pt'>&quot;Recipient&quot; means anyone who
+receives the Program under this Agreement, including all Contributors.</span> </p>
+
+<p><b><span style='font-size:10.0pt'>2. GRANT OF RIGHTS</span></b> </p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>a)
+Subject to the terms of this Agreement, each Contributor hereby grants Recipient
+a non-exclusive, worldwide, royalty-free copyright license to<span
+style='color:red'> </span>reproduce, prepare derivative works of, publicly
+display, publicly perform, distribute and sublicense the Contribution of such
+Contributor, if any, and such derivative works, in source code and object code
+form.</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>b)
+Subject to the terms of this Agreement, each Contributor hereby grants
+Recipient a non-exclusive, worldwide,<span style='color:green'> </span>royalty-free
+patent license under Licensed Patents to make, use, sell, offer to sell, import
+and otherwise transfer the Contribution of such Contributor, if any, in source
+code and object code form. This patent license shall apply to the combination
+of the Contribution and the Program if, at the time the Contribution is added
+by the Contributor, such addition of the Contribution causes such combination
+to be covered by the Licensed Patents. The patent license shall not apply to
+any other combinations which include the Contribution. No hardware per se is
+licensed hereunder. </span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>c)
+Recipient understands that although each Contributor grants the licenses to its
+Contributions set forth herein, no assurances are provided by any Contributor
+that the Program does not infringe the patent or other intellectual property
+rights of any other entity. Each Contributor disclaims any liability to Recipient
+for claims brought by any other entity based on infringement of intellectual
+property rights or otherwise. As a condition to exercising the rights and
+licenses granted hereunder, each Recipient hereby assumes sole responsibility
+to secure any other intellectual property rights needed, if any. For example,
+if a third party patent license is required to allow Recipient to distribute
+the Program, it is Recipient's responsibility to acquire that license before
+distributing the Program.</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>d)
+Each Contributor represents that to its knowledge it has sufficient copyright
+rights in its Contribution, if any, to grant the copyright license set forth in
+this Agreement. </span></p>
+
+<p><b><span style='font-size:10.0pt'>3. REQUIREMENTS</span></b> </p>
+
+<p><span style='font-size:10.0pt'>A Contributor may choose to distribute the
+Program in object code form under its own license agreement, provided that:</span>
+</p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>a)
+it complies with the terms and conditions of this Agreement; and</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>b)
+its license agreement:</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>i)
+effectively disclaims on behalf of all Contributors all warranties and
+conditions, express and implied, including warranties or conditions of title
+and non-infringement, and implied warranties or conditions of merchantability
+and fitness for a particular purpose; </span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>ii)
+effectively excludes on behalf of all Contributors all liability for damages,
+including direct, indirect, special, incidental and consequential damages, such
+as lost profits; </span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>iii)
+states that any provisions which differ from this Agreement are offered by that
+Contributor alone and not by any other party; and</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>iv)
+states that source code for the Program is available from such Contributor, and
+informs licensees how to obtain it in a reasonable manner on or through a
+medium customarily used for software exchange.<span style='color:blue'> </span></span></p>
+
+<p><span style='font-size:10.0pt'>When the Program is made available in source
+code form:</span> </p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>a)
+it must be made available under this Agreement; and </span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>b) a
+copy of this Agreement must be included with each copy of the Program. </span></p>
+
+<p><span style='font-size:10.0pt'>Contributors may not remove or alter any
+copyright notices contained within the Program. </span></p>
+
+<p><span style='font-size:10.0pt'>Each Contributor must identify itself as the
+originator of its Contribution, if any, in a manner that reasonably allows
+subsequent Recipients to identify the originator of the Contribution. </span></p>
+
+<p><b><span style='font-size:10.0pt'>4. COMMERCIAL DISTRIBUTION</span></b> </p>
+
+<p><span style='font-size:10.0pt'>Commercial distributors of software may
+accept certain responsibilities with respect to end users, business partners
+and the like. While this license is intended to facilitate the commercial use
+of the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create potential
+liability for other Contributors. Therefore, if a Contributor includes the
+Program in a commercial product offering, such Contributor (&quot;Commercial
+Contributor&quot;) hereby agrees to defend and indemnify every other
+Contributor (&quot;Indemnified Contributor&quot;) against any losses, damages and
+costs (collectively &quot;Losses&quot;) arising from claims, lawsuits and other
+legal actions brought by a third party against the Indemnified Contributor to
+the extent caused by the acts or omissions of such Commercial Contributor in
+connection with its distribution of the Program in a commercial product
+offering. The obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In order
+to qualify, an Indemnified Contributor must: a) promptly notify the Commercial
+Contributor in writing of such claim, and b) allow the Commercial Contributor
+to control, and cooperate with the Commercial Contributor in, the defense and
+any related settlement negotiations. The Indemnified Contributor may participate
+in any such claim at its own expense.</span> </p>
+
+<p><span style='font-size:10.0pt'>For example, a Contributor might include the
+Program in a commercial product offering, Product X. That Contributor is then a
+Commercial Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance claims and
+warranties are such Commercial Contributor's responsibility alone. Under this
+section, the Commercial Contributor would have to defend claims against the
+other Contributors related to those performance claims and warranties, and if a
+court requires any other Contributor to pay any damages as a result, the
+Commercial Contributor must pay those damages.</span> </p>
+
+<p><b><span style='font-size:10.0pt'>5. NO WARRANTY</span></b> </p>
+
+<p><span style='font-size:10.0pt'>EXCEPT AS EXPRESSLY SET FORTH IN THIS
+AGREEMENT, THE PROGRAM IS PROVIDED ON AN &quot;AS IS&quot; BASIS, WITHOUT
+WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,
+WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
+MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and distributing the
+Program and assumes all risks associated with its exercise of rights under this
+Agreement , including but not limited to the risks and costs of program errors,
+compliance with applicable laws, damage to or loss of data, programs or
+equipment, and unavailability or interruption of operations. </span></p>
+
+<p><b><span style='font-size:10.0pt'>6. DISCLAIMER OF LIABILITY</span></b> </p>
+
+<p><span style='font-size:10.0pt'>EXCEPT AS EXPRESSLY SET FORTH IN THIS
+AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF
+THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF
+THE POSSIBILITY OF SUCH DAMAGES.</span> </p>
+
+<p><b><span style='font-size:10.0pt'>7. GENERAL</span></b> </p>
+
+<p><span style='font-size:10.0pt'>If any provision of this Agreement is invalid
+or unenforceable under applicable law, it shall not affect the validity or
+enforceability of the remainder of the terms of this Agreement, and without
+further action by the parties hereto, such provision shall be reformed to the
+minimum extent necessary to make such provision valid and enforceable.</span> </p>
+
+<p><span style='font-size:10.0pt'>If Recipient institutes patent litigation
+against any entity (including a cross-claim or counterclaim in a lawsuit)
+alleging that the Program itself (excluding combinations of the Program with
+other software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the date
+such litigation is filed. </span></p>
+
+<p><span style='font-size:10.0pt'>All Recipient's rights under this Agreement
+shall terminate if it fails to comply with any of the material terms or
+conditions of this Agreement and does not cure such failure in a reasonable
+period of time after becoming aware of such noncompliance. If all Recipient's
+rights under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive. </span></p>
+
+<p><span style='font-size:10.0pt'>Everyone is permitted to copy and distribute
+copies of this Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The Agreement
+Steward reserves the right to publish new versions (including revisions) of
+this Agreement from time to time. No one other than the Agreement Steward has
+the right to modify this Agreement. The Eclipse Foundation is the initial
+Agreement Steward. The Eclipse Foundation may assign the responsibility to
+serve as the Agreement Steward to a suitable separate entity. Each new version
+of the Agreement will be given a distinguishing version number. The Program
+(including Contributions) may always be distributed subject to the version of
+the Agreement under which it was received. In addition, after a new version of
+the Agreement is published, Contributor may elect to distribute the Program
+(including its Contributions) under the new version. Except as expressly stated
+in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to
+the intellectual property of any Contributor under this Agreement, whether
+expressly, by implication, estoppel or otherwise. All rights in the Program not
+expressly granted under this Agreement are reserved.</span> </p>
+
+<p><span style='font-size:10.0pt'>This Agreement is governed by the laws of the
+State of New York and the intellectual property laws of the United States of
+America. No party to this Agreement will bring a legal action under this
+Agreement more than one year after the cause of action arose. Each party waives
+its rights to a jury trial in any resulting litigation.</span> </p>
+
+<p class=MsoNormal><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></p>
+
+</div>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/monitor-x86_64/features/com.android.ide.eclipse.ddms.feature_25.2.3.3470232/META-INF/MANIFEST.MF b/lib/monitor-x86_64/features/com.android.ide.eclipse.ddms.feature_25.2.3.3470232/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..474951c
--- /dev/null
+++ b/lib/monitor-x86_64/features/com.android.ide.eclipse.ddms.feature_25.2.3.3470232/META-INF/MANIFEST.MF
@@ -0,0 +1,6 @@
+Manifest-Version: 1.0

+Built-By: android-build

+Build-Jdk: 1.6.0_45

+Created-By: Apache Maven

+Archiver-Version: Plexus Archiver

+

diff --git a/lib/monitor-x86_64/features/com.android.ide.eclipse.ddms.feature_25.2.3.3470232/feature.xml b/lib/monitor-x86_64/features/com.android.ide.eclipse.ddms.feature_25.2.3.3470232/feature.xml
new file mode 100644
index 0000000..e0e73a0
--- /dev/null
+++ b/lib/monitor-x86_64/features/com.android.ide.eclipse.ddms.feature_25.2.3.3470232/feature.xml
@@ -0,0 +1,253 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="com.android.ide.eclipse.ddms.feature"
+      label="Android DDMS"
+      version="25.2.3.3470232"
+      provider-name="The Android Open Source Project"
+      plugin="com.android.ide.eclipse.ddms">
+
+   <description>
+      Android Dalvik Debug Monitor Service
+   </description>
+
+   <copyright>
+      Copyright (C) 2007-2011 The Android Open Source Project
+   </copyright>
+
+   <license url="http://www.apache.org/licenses/LICENSE-2.0">
+      Note:  jcommon-1.0.12.jar is under the BSD license rather than the APL.  You can find a copy of the BSD License at http://www.opensource.org/licenses/bsd-license.php
+
+   jfreechart-1.0.9.jar and jfreechart-1.0.9-swt.jar are under the LGPL rather than the APL.  You can find a copy of the LGPL at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt.  You can get the source code for these two components at http://android.git.kernel.org/pub/jfreechart-1.0.9.zip
+
+
+      Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      &quot;License&quot; shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      &quot;Licensor&quot; shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      &quot;Legal Entity&quot; shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      &quot;control&quot; means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      &quot;Source&quot; form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      &quot;Object&quot; form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      &quot;Work&quot; shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      &quot;Derivative Works&quot; shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      &quot;Contribution&quot; shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, &quot;submitted&quot;
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as &quot;Not a Contribution.&quot;
+
+      &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;
+      replaced with your own identifying information. (Don&apos;t include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same &quot;printed page&quot; as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+   </license>
+
+   <url>
+      <update label="Android Update Site" url="https://dl-ssl.google.com/android/eclipse/"/>
+   </url>
+
+   <requires>
+      <import plugin="org.eclipse.ui" version="3.7.0" match="greaterOrEqual"/>
+      <import plugin="org.eclipse.core.runtime" version="3.7.0" match="greaterOrEqual"/>
+      <import plugin="org.eclipse.ui.console"/>
+      <import plugin="org.eclipse.core.resources"/>
+      <import plugin="org.eclipse.ui.ide"/>
+      <import plugin="org.eclipse.core.filesystem"/>
+   </requires>
+
+   <plugin
+         id="com.android.ide.eclipse.base"
+         download-size="4225"
+         install-size="4694"
+         version="25.2.3.3470232"
+         unpack="false"/>
+
+   <plugin
+         id="com.android.ide.eclipse.ddms"
+         download-size="2558"
+         install-size="2896"
+         version="25.2.3.3470232"
+         unpack="false"/>
+
+</feature>
diff --git a/lib/monitor-x86_64/features/com.android.ide.eclipse.gldebugger.feature_25.2.3.3470232/META-INF/MANIFEST.MF b/lib/monitor-x86_64/features/com.android.ide.eclipse.gldebugger.feature_25.2.3.3470232/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..474951c
--- /dev/null
+++ b/lib/monitor-x86_64/features/com.android.ide.eclipse.gldebugger.feature_25.2.3.3470232/META-INF/MANIFEST.MF
@@ -0,0 +1,6 @@
+Manifest-Version: 1.0

+Built-By: android-build

+Build-Jdk: 1.6.0_45

+Created-By: Apache Maven

+Archiver-Version: Plexus Archiver

+

diff --git a/lib/monitor-x86_64/features/com.android.ide.eclipse.gldebugger.feature_25.2.3.3470232/feature.xml b/lib/monitor-x86_64/features/com.android.ide.eclipse.gldebugger.feature_25.2.3.3470232/feature.xml
new file mode 100644
index 0000000..8c4ff3c
--- /dev/null
+++ b/lib/monitor-x86_64/features/com.android.ide.eclipse.gldebugger.feature_25.2.3.3470232/feature.xml
@@ -0,0 +1,232 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="com.android.ide.eclipse.gldebugger.feature"
+      label="Tracer for OpenGL ES"
+      version="25.2.3.3470232"
+      provider-name="The Android Open Source Project">
+
+   <description>
+      GLESv2 Debugger Client (Alpha status).
+   </description>
+
+   <copyright>
+      Copyright (C) 2011 The Android Open Source Project
+   </copyright>
+
+   <license url="http://www.apache.org/licenses/LICENSE-2.0">
+      Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      &quot;License&quot; shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      &quot;Licensor&quot; shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      &quot;Legal Entity&quot; shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      &quot;control&quot; means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      &quot;Source&quot; form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      &quot;Object&quot; form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      &quot;Work&quot; shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      &quot;Derivative Works&quot; shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      &quot;Contribution&quot; shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, &quot;submitted&quot;
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as &quot;Not a Contribution.&quot;
+
+      &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;
+      replaced with your own identifying information. (Don&apos;t include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same &quot;printed page&quot; as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+   </license>
+
+   <requires>
+      <import plugin="org.eclipse.ui"/>
+      <import plugin="org.eclipse.core.runtime"/>
+   </requires>
+
+   <plugin
+         id="com.android.ide.eclipse.gldebugger"
+         download-size="508"
+         install-size="1077"
+         version="25.2.3.3470232"
+         unpack="false"/>
+
+</feature>
diff --git a/lib/monitor-x86_64/features/com.android.ide.eclipse.hierarchyviewer.feature_25.2.3.3470232/META-INF/MANIFEST.MF b/lib/monitor-x86_64/features/com.android.ide.eclipse.hierarchyviewer.feature_25.2.3.3470232/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..474951c
--- /dev/null
+++ b/lib/monitor-x86_64/features/com.android.ide.eclipse.hierarchyviewer.feature_25.2.3.3470232/META-INF/MANIFEST.MF
@@ -0,0 +1,6 @@
+Manifest-Version: 1.0

+Built-By: android-build

+Build-Jdk: 1.6.0_45

+Created-By: Apache Maven

+Archiver-Version: Plexus Archiver

+

diff --git a/lib/monitor-x86_64/features/com.android.ide.eclipse.hierarchyviewer.feature_25.2.3.3470232/feature.xml b/lib/monitor-x86_64/features/com.android.ide.eclipse.hierarchyviewer.feature_25.2.3.3470232/feature.xml
new file mode 100644
index 0000000..e315def
--- /dev/null
+++ b/lib/monitor-x86_64/features/com.android.ide.eclipse.hierarchyviewer.feature_25.2.3.3470232/feature.xml
@@ -0,0 +1,239 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="com.android.ide.eclipse.hierarchyviewer.feature"
+      label="Android Hierarchy Viewer"
+      version="25.2.3.3470232"
+      provider-name="The Android Open Source Project"
+      plugin="com.android.ide.eclipse.hierarchyviewer">
+
+   <description>
+      Android Hierarchy Viewer.
+   </description>
+
+   <copyright>
+      Copyright (C) 2010-2011 The Android Open Source Project
+   </copyright>
+
+   <license url="http://www.apache.org/licenses/LICENSE-2.0.txt">
+      Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      &quot;License&quot; shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      &quot;Licensor&quot; shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      &quot;Legal Entity&quot; shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      &quot;control&quot; means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      &quot;Source&quot; form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      &quot;Object&quot; form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      &quot;Work&quot; shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      &quot;Derivative Works&quot; shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      &quot;Contribution&quot; shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, &quot;submitted&quot;
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as &quot;Not a Contribution.&quot;
+
+      &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;
+      replaced with your own identifying information. (Don&apos;t include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same &quot;printed page&quot; as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+   </license>
+
+   <url>
+      <update label="Android Update Site" url="https://dl-ssl.google.com/android/eclipse/"/>
+   </url>
+
+   <requires>
+      <import plugin="org.eclipse.ui" version="3.7.0" match="greaterOrEqual"/>
+      <import plugin="org.eclipse.core.runtime" version="3.7.0" match="greaterOrEqual"/>
+      <import plugin="org.eclipse.ui.console"/>
+      <import plugin="com.android.ide.eclipse.ddms" match="perfect"/>
+   </requires>
+
+   <plugin
+         id="com.android.ide.eclipse.hierarchyviewer"
+         download-size="399"
+         install-size="478"
+         version="25.2.3.3470232"
+         unpack="false"/>
+
+</feature>
diff --git a/lib/monitor-x86_64/features/com.android.ide.eclipse.monitor.feature_25.2.3.3470232/META-INF/MANIFEST.MF b/lib/monitor-x86_64/features/com.android.ide.eclipse.monitor.feature_25.2.3.3470232/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..474951c
--- /dev/null
+++ b/lib/monitor-x86_64/features/com.android.ide.eclipse.monitor.feature_25.2.3.3470232/META-INF/MANIFEST.MF
@@ -0,0 +1,6 @@
+Manifest-Version: 1.0

+Built-By: android-build

+Build-Jdk: 1.6.0_45

+Created-By: Apache Maven

+Archiver-Version: Plexus Archiver

+

diff --git a/lib/monitor-x86_64/features/com.android.ide.eclipse.monitor.feature_25.2.3.3470232/feature.xml b/lib/monitor-x86_64/features/com.android.ide.eclipse.monitor.feature_25.2.3.3470232/feature.xml
new file mode 100644
index 0000000..9610078
--- /dev/null
+++ b/lib/monitor-x86_64/features/com.android.ide.eclipse.monitor.feature_25.2.3.3470232/feature.xml
@@ -0,0 +1,233 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="com.android.ide.eclipse.monitor.feature"
+      label="Android Monitor"
+      version="25.2.3.3470232"
+      provider-name="The Android Open Source Project"
+      plugin="com.android.ide.eclipse.monitor">
+
+   <description>
+      Android Debug Monitor
+   </description>
+
+   <copyright>
+      Copyright (C) 2007-2014 The Android Open Source Project
+   </copyright>
+
+   <license url="http://www.apache.org/licenses/LICENSE-2.0">
+      Note:  jcommon-1.0.12.jar is under the BSD license rather than the APL.  You can find a copy of the BSD License at http://www.opensource.org/licenses/bsd-license.php
+
+   jfreechart-1.0.9.jar and jfreechart-1.0.9-swt.jar are under the LGPL rather than the APL.  You can find a copy of the LGPL at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt.  You can get the source code for these two components at http://android.git.kernel.org/pub/jfreechart-1.0.9.zip
+
+
+      Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      &quot;License&quot; shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      &quot;Licensor&quot; shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      &quot;Legal Entity&quot; shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      &quot;control&quot; means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      &quot;Source&quot; form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      &quot;Object&quot; form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      &quot;Work&quot; shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      &quot;Derivative Works&quot; shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      &quot;Contribution&quot; shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, &quot;submitted&quot;
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as &quot;Not a Contribution.&quot;
+
+      &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;
+      replaced with your own identifying information. (Don&apos;t include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same &quot;printed page&quot; as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+   </license>
+
+   <plugin
+         id="com.android.ide.eclipse.monitor"
+         download-size="608"
+         install-size="757"
+         version="25.2.3.3470232"
+         unpack="false"/>
+
+</feature>
diff --git a/lib/monitor-x86_64/features/com.android.ide.eclipse.traceview.feature_25.2.3.3470232/META-INF/MANIFEST.MF b/lib/monitor-x86_64/features/com.android.ide.eclipse.traceview.feature_25.2.3.3470232/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..474951c
--- /dev/null
+++ b/lib/monitor-x86_64/features/com.android.ide.eclipse.traceview.feature_25.2.3.3470232/META-INF/MANIFEST.MF
@@ -0,0 +1,6 @@
+Manifest-Version: 1.0

+Built-By: android-build

+Build-Jdk: 1.6.0_45

+Created-By: Apache Maven

+Archiver-Version: Plexus Archiver

+

diff --git a/lib/monitor-x86_64/features/com.android.ide.eclipse.traceview.feature_25.2.3.3470232/feature.xml b/lib/monitor-x86_64/features/com.android.ide.eclipse.traceview.feature_25.2.3.3470232/feature.xml
new file mode 100644
index 0000000..10beb94
--- /dev/null
+++ b/lib/monitor-x86_64/features/com.android.ide.eclipse.traceview.feature_25.2.3.3470232/feature.xml
@@ -0,0 +1,239 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="com.android.ide.eclipse.traceview.feature"
+      label="Android Traceview"
+      version="25.2.3.3470232"
+      provider-name="The Android Open Source Project"
+      plugin="com.android.ide.eclipse.traceview">
+
+   <description>
+      Android Traceview
+   </description>
+
+   <copyright>
+      Copyright (C) 2011 The Android Open Source Project
+   </copyright>
+
+   <license url="http://www.apache.org/licenses/LICENSE-2.0">
+      Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      &quot;License&quot; shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      &quot;Licensor&quot; shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      &quot;Legal Entity&quot; shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      &quot;control&quot; means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      &quot;Source&quot; form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      &quot;Object&quot; form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      &quot;Work&quot; shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      &quot;Derivative Works&quot; shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      &quot;Contribution&quot; shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, &quot;submitted&quot;
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as &quot;Not a Contribution.&quot;
+
+      &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;
+      replaced with your own identifying information. (Don&apos;t include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same &quot;printed page&quot; as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+   </license>
+
+   <url>
+      <update label="Android Update Site" url="https://dl-ssl.google.com/android/eclipse/"/>
+   </url>
+
+   <requires>
+      <import plugin="org.eclipse.core.runtime" version="3.7.0" match="greaterOrEqual"/>
+      <import plugin="com.android.ide.eclipse.ddms" version="10.0.0" match="greaterOrEqual"/>
+      <import plugin="org.eclipse.core.filesystem"/>
+      <import plugin="org.eclipse.core.resources"/>
+   </requires>
+
+   <plugin
+         id="com.android.ide.eclipse.traceview"
+         download-size="137"
+         install-size="154"
+         version="25.2.3.3470232"
+         unpack="false"/>
+
+</feature>
diff --git a/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/ECLIPSE_.RSA b/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..e5ed7f4
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/ECLIPSE_.SF b/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..0c11cbf
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/ECLIPSE_.SF
@@ -0,0 +1,23 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: aj3K+VfVL+O/zAucK68OY7bP01Y=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: 4gIfTP5y3EzwI5ecyebQLugBMgo=

+

+Name: epl-v10.html

+SHA1-Digest: /iY8aEvT0IMpNnSjB0FpTUhvUGc=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: RyXo3knk5T635eCpQEPXyFBrCyA=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=

+

+Name: license.html

+SHA1-Digest: Rp9AnRyeUIxNWe10fjaMDkQB8rU=

+

+Name: feature.properties

+SHA1-Digest: 9JE/KpVMKgJVCtwr9TedfPzDZx0=

+

+Name: feature.xml

+SHA1-Digest: WmrjBlVvFXQFWshXEEhLD51nkTA=

+

diff --git a/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/MANIFEST.MF b/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..418b23e
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/MANIFEST.MF
@@ -0,0 +1,21 @@
+Manifest-Version: 1.0

+Created-By: 1.6.0 (IBM Corporation)

+

+Name: epl-v10.html

+SHA1-Digest: jYDaDJLBJpthCwPMgGFVYASJjIU=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: xstAqMgs/a5AsQXQZSdDQ79veOA=

+

+Name: license.html

+SHA1-Digest: /vLZjlHkZSXMSfPrWwNqOUDqqbM=

+

+Name: feature.properties

+SHA1-Digest: NXFVr95HoF5vEzy9CBTLtpJiBJE=

+

+Name: feature.xml

+SHA1-Digest: 9NC7t93zlxasuZw/nuWdD1fpCd0=

+

diff --git a/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/eclipse.inf b/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/eclipse_update_120.jpg b/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/eclipse_update_120.jpg
new file mode 100644
index 0000000..bfdf708
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/eclipse_update_120.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/epl-v10.html b/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/epl-v10.html
new file mode 100644
index 0000000..fd39122
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/epl-v10.html
@@ -0,0 +1,261 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Public License - Version 1.0</title>
+<style type="text/css">
+  body {
+    size: 8.5in 11.0in;
+    margin: 0.25in 0.5in 0.25in 0.5in;
+    tab-interval: 0.5in;
+    }
+  p {  	
+    margin-left: auto;
+    margin-top:  0.5em;
+    margin-bottom: 0.5em;
+    }
+  p.list {
+  	margin-left: 0.5in;
+    margin-top:  0.05em;
+    margin-bottom: 0.05em;
+    }
+  </style>
+
+</head>
+
+<body lang="EN-US">
+
+<h2>Eclipse Public License - v 1.0</h2>
+
+<p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE (&quot;AGREEMENT&quot;). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.</p>
+
+<p><b>1. DEFINITIONS</b></p>
+
+<p>&quot;Contribution&quot; means:</p>
+
+<p class="list">a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and</p>
+<p class="list">b) in the case of each subsequent Contributor:</p>
+<p class="list">i) changes to the Program, and</p>
+<p class="list">ii) additions to the Program;</p>
+<p class="list">where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.</p>
+
+<p>&quot;Contributor&quot; means any person or entity that distributes
+the Program.</p>
+
+<p>&quot;Licensed Patents&quot; mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.</p>
+
+<p>&quot;Program&quot; means the Contributions distributed in accordance
+with this Agreement.</p>
+
+<p>&quot;Recipient&quot; means anyone who receives the Program under
+this Agreement, including all Contributors.</p>
+
+<p><b>2. GRANT OF RIGHTS</b></p>
+
+<p class="list">a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.</p>
+
+<p class="list">b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.</p>
+
+<p class="list">c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.</p>
+
+<p class="list">d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.</p>
+
+<p><b>3. REQUIREMENTS</b></p>
+
+<p>A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:</p>
+
+<p class="list">a) it complies with the terms and conditions of this
+Agreement; and</p>
+
+<p class="list">b) its license agreement:</p>
+
+<p class="list">i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;</p>
+
+<p class="list">ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;</p>
+
+<p class="list">iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and</p>
+
+<p class="list">iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.</p>
+
+<p>When the Program is made available in source code form:</p>
+
+<p class="list">a) it must be made available under this Agreement; and</p>
+
+<p class="list">b) a copy of this Agreement must be included with each
+copy of the Program.</p>
+
+<p>Contributors may not remove or alter any copyright notices contained
+within the Program.</p>
+
+<p>Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.</p>
+
+<p><b>4. COMMERCIAL DISTRIBUTION</b></p>
+
+<p>Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+(&quot;Commercial Contributor&quot;) hereby agrees to defend and
+indemnify every other Contributor (&quot;Indemnified Contributor&quot;)
+against any losses, damages and costs (collectively &quot;Losses&quot;)
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.</p>
+
+<p>For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.</p>
+
+<p><b>5. NO WARRANTY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.</p>
+
+<p><b>6. DISCLAIMER OF LIABILITY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), 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 OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.</p>
+
+<p><b>7. GENERAL</b></p>
+
+<p>If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.</p>
+
+<p>If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.</p>
+
+<p>All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.</p>
+
+<p>Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.</p>
+
+<p>This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.</p>
+
+</body>
+
+</html>
diff --git a/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/feature.properties b/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/feature.properties
new file mode 100644
index 0000000..57a7531
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/feature.properties
@@ -0,0 +1,197 @@
+###############################################################################
+# Copyright (c) 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Eclipse e4 Rich Client Platform
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org
+
+# "description" property - description of the feature
+description=The bundles required by org.eclipse.rcp version 4.0
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2010 IBM Corporation and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+    IBM Corporation - initial API and implementation\n
+################ end of copyright property ####################################
+
+
+########### end of license property #########################################################################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+       - Content may be structured and packaged into modules to facilitate delivering,\n\
+         extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+         plug-in fragments ("Fragments"), and features ("Features").\n\
+       - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+         in a directory named "plugins".\n\
+       - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+         Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+         Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+         numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+       - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+         named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+       - The top-level (root) directory\n\
+       - Plug-in and Fragment directories\n\
+       - Inside Plug-ins and Fragments packaged as JARs\n\
+       - Sub-directories of the directory named "src" of certain Plug-ins\n\
+       - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+       - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+       - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+       - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+       - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+       - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+       - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+       1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+          the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+          extending or updating the functionality of an Eclipse-based product.\n\
+       2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+          Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+       3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+          govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+          Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+          with the Specification. Such Installable Software Agreement must inform the user of the\n\
+          terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+          the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+          indication of agreement by the user, the provisioning Technology will complete installation\n\
+          of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/feature.xml b/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/feature.xml
new file mode 100644
index 0000000..00cf3bf
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/feature.xml
@@ -0,0 +1,764 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="org.eclipse.e4.rcp"
+      label="%featureName"
+      version="1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS"
+      provider-name="%providerName"
+      image="eclipse_update_120.jpg"
+      
+      >
+
+   <description>
+      %description
+   </description>
+
+   <copyright>
+      %copyright
+   </copyright>
+
+   <license url="%licenseURL">
+      %license
+   </license>
+
+   <requires>
+      <import feature="org.eclipse.emf.common" version="2.7.0" match="compatible"/>
+      <import feature="org.eclipse.emf.ecore" version="2.7.0" match="compatible"/>
+   </requires>
+
+   <plugin
+         id="org.eclipse.e4.core.services"
+         download-size="0"
+         install-size="0"
+         version="1.0.0.v20120521-2346"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.workbench.swt"
+         download-size="0"
+         install-size="0"
+         version="0.10.3.v20130124-133900"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.core.commands"
+         download-size="0"
+         install-size="0"
+         version="0.10.1.v20120523-1955"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.bindings"
+         download-size="0"
+         install-size="0"
+         version="0.10.3.v20130123-162658"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.model.workbench"
+         download-size="0"
+         install-size="0"
+         version="0.10.1.v20120523-1955"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.services"
+         download-size="0"
+         install-size="0"
+         version="0.10.3.v20130123-162658"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.workbench.renderers.swt"
+         download-size="0"
+         install-size="0"
+         version="0.10.3.v20130124-170312"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.workbench"
+         download-size="0"
+         install-size="0"
+         version="0.11.0.v20130125-100758"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.css.core"
+         download-size="0"
+         install-size="0"
+         version="0.10.2.v20120912-132817"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.css.swt"
+         download-size="0"
+         install-size="0"
+         version="0.10.3.v20130123-162658"
+         unpack="false"/>
+
+   <plugin
+         id="org.apache.batik.css"
+         download-size="0"
+         install-size="0"
+         version="1.6.0.v201011041432"
+         unpack="false"/>
+
+   <plugin
+         id="org.w3c.css.sac"
+         download-size="0"
+         install-size="0"
+         version="1.3.1.v200903091627"
+         unpack="false"/>
+
+   <plugin
+         id="org.apache.batik.util"
+         download-size="0"
+         install-size="0"
+         version="1.6.0.v201011041432"
+         unpack="false"/>
+
+   <plugin
+         id="org.w3c.dom.svg"
+         download-size="0"
+         install-size="0"
+         version="1.1.0.v201011041433"
+         unpack="false"/>
+
+   <plugin
+         id="org.w3c.dom.smil"
+         download-size="0"
+         install-size="0"
+         version="1.0.0.v200806040011"
+         unpack="false"/>
+
+   <plugin
+         id="javax.inject"
+         download-size="0"
+         install-size="0"
+         version="1.0.0.v20091030"
+         unpack="false"/>
+
+   <plugin
+         id="javax.annotation"
+         download-size="0"
+         install-size="0"
+         version="1.0.0.v20101115-0725"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.core.di"
+         download-size="0"
+         install-size="0"
+         version="1.2.0.v20121024-173149"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.core.contexts"
+         download-size="0"
+         install-size="0"
+         version="1.2.0.v20121221-192508"
+         unpack="false"/>
+
+   <plugin
+         id="org.apache.batik.util.gui"
+         download-size="0"
+         install-size="0"
+         version="1.6.0.v201011041432"
+         unpack="false"/>
+
+   <plugin
+         id="javax.xml"
+         download-size="0"
+         install-size="0"
+         version="1.3.4.v201005080400"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.core.di.extensions"
+         download-size="0"
+         install-size="0"
+         version="0.11.100.v20121024-182359"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.css.swt.theme"
+         download-size="0"
+         install-size="0"
+         version="0.9.4.v20130123-162658"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.di"
+         download-size="0"
+         install-size="0"
+         version="0.10.1.v20120523-1955"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.widgets"
+         download-size="0"
+         install-size="0"
+         version="0.12.3.v20130123-162658"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.workbench.renderers.swt.cocoa"
+         os="macosx"
+         ws="cocoa"
+         download-size="0"
+         install-size="0"
+         version="0.11.2.v20130123-162658"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.common"
+         download-size="0"
+         install-size="0"
+         version="3.6.100.v20120522-1841"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.ds"
+         download-size="0"
+         install-size="0"
+         version="1.4.1.v20120926-201320"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.event"
+         download-size="0"
+         install-size="0"
+         version="1.2.200.v20120522-2049"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.commands"
+         download-size="0"
+         install-size="0"
+         version="3.6.2.v20130123-162658"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.contenttype"
+         download-size="0"
+         install-size="0"
+         version="3.4.200.v20120523-2004"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.databinding"
+         download-size="0"
+         install-size="0"
+         version="1.4.1.v20120912-132807"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.databinding.beans"
+         download-size="0"
+         install-size="0"
+         version="1.2.200.v20120523-1955"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.databinding.observable"
+         download-size="0"
+         install-size="0"
+         version="1.4.1.v20120521-2329"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.databinding.property"
+         download-size="0"
+         install-size="0"
+         version="1.4.100.v20120523-1955"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.expressions"
+         download-size="0"
+         install-size="0"
+         version="3.4.401.v20120912-155018"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.jobs"
+         download-size="0"
+         install-size="0"
+         version="3.5.300.v20120912-155018"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.runtime"
+         download-size="0"
+         install-size="0"
+         version="3.8.0.v20120912-155025"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.app"
+         download-size="0"
+         install-size="0"
+         version="1.3.100.v20120522-1841"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher"
+         download-size="0"
+         install-size="0"
+         version="1.3.0.v20120522-1813"
+         unpack="false"/>
+
+   <plugin
+         id="com.ibm.icu"
+         download-size="0"
+         install-size="0"
+         version="4.4.2.v20110823"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.preferences"
+         download-size="0"
+         install-size="0"
+         version="3.5.1.v20121031-182809"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.registry"
+         download-size="0"
+         install-size="0"
+         version="3.5.200.v20120522-1841"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.simpleconfigurator"
+         download-size="0"
+         install-size="0"
+         version="1.0.301.v20120914-163612"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.osgi"
+         download-size="0"
+         install-size="0"
+         version="3.8.2.v20130124-134944"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.osgi.services"
+         download-size="0"
+         install-size="0"
+         version="3.3.100.v20120522-1822"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher"
+         download-size="0"
+         install-size="0"
+         version="1.3.0.v20120522-1813"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.gtk.solaris.sparc"
+         os="solaris"
+         ws="gtk"
+         arch="sparc"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120913-144808"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.gtk.solaris.x86"
+         os="solaris"
+         ws="gtk"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120913-144808"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.cocoa.macosx"
+         os="macosx"
+         ws="cocoa"
+         arch="ppc"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120522-1813"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.cocoa.macosx"
+         os="macosx"
+         ws="cocoa"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120522-1813"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.cocoa.macosx.x86_64"
+         os="macosx"
+         ws="cocoa"
+         arch="x86_64"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120913-144807"
+         fragment="true"/>
+
+
+   <plugin
+         id="org.eclipse.equinox.launcher.gtk.linux.ppc"
+         os="linux"
+         ws="gtk"
+         arch="ppc"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120913-144808"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.gtk.linux.ppc64"
+         os="linux"
+         ws="gtk"
+         arch="ppc64"
+         download-size="0"
+         install-size="0"
+         version="1.0.200.v20120913-144808"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.gtk.linux.x86"
+         os="linux"
+         ws="gtk"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120913-144807"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.gtk.linux.s390x"
+         os="linux"
+         ws="gtk"
+         arch="s390x"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120913-144808"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.gtk.linux.s390"
+         os="linux"
+         ws="gtk"
+         arch="s390"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120913-144808"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.gtk.linux.x86_64"
+         os="linux"
+         ws="gtk"
+         arch="x86_64"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120913-144807"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.gtk.aix.ppc"
+         os="aix"
+         ws="gtk"
+         arch="ppc"
+         download-size="0"
+         install-size="0"
+         version="1.1.100.v20120913-144808"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.gtk.aix.ppc64"
+         os="aix"
+         ws="gtk"
+         arch="ppc64"
+         download-size="0"
+         install-size="0"
+         version="1.1.100.v20120913-144808"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.win32.win32.x86"
+         os="win32"
+         ws="win32"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120913-144807"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.equinox.launcher.win32.win32.x86_64"
+         os="win32"
+         ws="win32"
+         arch="x86_64"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120913-144807"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.swt"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.win32.win32.x86"
+         os="win32"
+         ws="win32"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.win32.win32.x86_64"
+         os="win32"
+         ws="win32"
+         arch="x86_64"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.gtk.linux.x86"
+         os="linux"
+         ws="gtk"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.gtk.linux.s390x"
+         os="linux"
+         ws="gtk"
+         arch="s390x"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.gtk.linux.s390"
+         os="linux"
+         ws="gtk"
+         arch="s390"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.gtk.solaris.sparc"
+         os="solaris"
+         ws="gtk"
+         arch="sparc"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.gtk.solaris.x86"
+         os="solaris"
+         ws="gtk"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.gtk.linux.ppc"
+         os="linux"
+         ws="gtk"
+         arch="ppc"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.gtk.linux.ppc64"
+         os="linux"
+         ws="gtk"
+         arch="ppc64"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.gtk.linux.x86_64"
+         os="linux"
+         ws="gtk"
+         arch="x86_64"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.cocoa.macosx"
+         os="macosx"
+         ws="cocoa"
+         arch="ppc"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.cocoa.macosx"
+         os="macosx"
+         ws="cocoa"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.cocoa.macosx.x86_64"
+         os="macosx"
+         ws="cocoa"
+         arch="x86_64"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.gtk.aix.ppc"
+         os="aix"
+         ws="gtk"
+         arch="ppc"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.gtk.aix.ppc64"
+         os="aix"
+         ws="gtk"
+         arch="ppc64"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.gtk.hpux.ia64_32"
+         os="hpux"
+         ws="gtk"
+         arch="ia64_32"
+         download-size="0"
+         install-size="0"
+         version="3.100.1.v4236b"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.util"
+         download-size="0"
+         install-size="0"
+         version="1.0.400.v20120917-192807"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.jface"
+         download-size="0"
+         install-size="0"
+         version="3.8.102.v20130123-162658"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.jface.databinding"
+         download-size="0"
+         install-size="0"
+         version="1.6.0.v20120912-132807"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.workbench3"
+         download-size="0"
+         install-size="0"
+         version="0.12.0.v20120521-2329"
+         unpack="false"/>
+
+   <plugin
+         id="org.apache.felix.gogo.command"
+         download-size="0"
+         install-size="0"
+         version="0.8.0.v201108120515"
+         unpack="false"/>
+
+   <plugin
+         id="org.apache.felix.gogo.runtime"
+         download-size="0"
+         install-size="0"
+         version="0.8.0.v201108120515"
+         unpack="false"/>
+
+   <plugin
+         id="org.apache.felix.gogo.shell"
+         download-size="0"
+         install-size="0"
+         version="0.8.0.v201110170705"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.console"
+         download-size="0"
+         install-size="0"
+         version="1.0.0.v20120522-1841"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.e4.ui.workbench.addons.swt"
+         download-size="0"
+         install-size="0"
+         version="0.10.3.v20130124-185622"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.bidi"
+         download-size="0"
+         install-size="0"
+         version="0.9.100.v20121107-021609"
+         unpack="false"/>
+
+</feature>
diff --git a/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/license.html b/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/license.html
@@ -0,0 +1,108 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Foundation Software User Agreement</title>
+</head>
+
+<body lang="EN-US">
+<h2>Eclipse Foundation Software User Agreement</h2>
+<p>February 1, 2011</p>
+
+<h3>Usage Of Content</h3>
+
+<p>THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+   (COLLECTIVELY &quot;CONTENT&quot;).  USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+   CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+   OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+   NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+   CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.</p>
+
+<h3>Applicable Licenses</h3>
+
+<p>Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+   (&quot;EPL&quot;).  A copy of the EPL is provided with this Content and is also available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+   For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+   repository (&quot;Repository&quot;) in software modules (&quot;Modules&quot;) and made available as downloadable archives (&quot;Downloads&quot;).</p>
+
+<ul>
+       <li>Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content.  Typical modules may include plug-ins (&quot;Plug-ins&quot;), plug-in fragments (&quot;Fragments&quot;), and features (&quot;Features&quot;).</li>
+       <li>Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java&trade; ARchive) in a directory named &quot;plugins&quot;.</li>
+       <li>A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.  Each Feature may be packaged as a sub-directory in a directory named &quot;features&quot;.  Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of the Plug-ins
+      and/or Fragments associated with that Feature.</li>
+       <li>Features may also include other Features (&quot;Included Features&quot;). Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of Included Features.</li>
+</ul>
+
+<p>The terms and conditions governing Plug-ins and Fragments should be contained in files named &quot;about.html&quot; (&quot;Abouts&quot;). The terms and conditions governing Features and
+Included Features should be contained in files named &quot;license.html&quot; (&quot;Feature Licenses&quot;).  Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:</p>
+
+<ul>
+       <li>The top-level (root) directory</li>
+       <li>Plug-in and Fragment directories</li>
+       <li>Inside Plug-ins and Fragments packaged as JARs</li>
+       <li>Sub-directories of the directory named &quot;src&quot; of certain Plug-ins</li>
+       <li>Feature directories</li>
+</ul>
+
+<p>Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (&quot;Feature Update License&quot;) during the
+installation process.  If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them.  Feature Update Licenses may be found in the &quot;license&quot; property of files named &quot;feature.properties&quot; found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.</p>
+
+<p>THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.  SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):</p>
+
+<ul>
+       <li>Eclipse Distribution License Version 1.0 (available at <a href="http://www.eclipse.org/licenses/edl-v10.html">http://www.eclipse.org/licenses/edl-v1.0.html</a>)</li>
+       <li>Common Public License Version 1.0 (available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>)</li>
+       <li>Apache Software License 1.1 (available at <a href="http://www.apache.org/licenses/LICENSE">http://www.apache.org/licenses/LICENSE</a>)</li>
+       <li>Apache Software License 2.0 (available at <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>)</li>
+       <li>Metro Link Public License 1.00 (available at <a href="http://www.opengroup.org/openmotif/supporters/metrolink/license.html">http://www.opengroup.org/openmotif/supporters/metrolink/license.html</a>)</li>
+       <li>Mozilla Public License Version 1.1 (available at <a href="http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html</a>)</li>
+</ul>
+
+<p>IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT.  If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.</p>
+
+
+<h3>Use of Provisioning Technology</h3>
+
+<p>The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+   Update Manager (&quot;Provisioning Technology&quot;) for the purpose of allowing users to install software, documentation, information and/or
+   other materials (collectively &quot;Installable Software&quot;). This capability is provided with the intent of allowing such users to
+   install, extend and update Eclipse-based products. Information about packaging Installable Software is available at <a
+       href="http://eclipse.org/equinox/p2/repository_packaging.html">http://eclipse.org/equinox/p2/repository_packaging.html</a>
+   (&quot;Specification&quot;).</p>
+
+<p>You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+   applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+   in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+   Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:</p>
+
+<ol>
+       <li>A series of actions may occur (&quot;Provisioning Process&quot;) in which a user may execute the Provisioning Technology
+       on a machine (&quot;Target Machine&quot;) with the intent of installing, extending or updating the functionality of an Eclipse-based
+       product.</li>
+       <li>During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+       accessed and copied to the Target Machine.</li>
+       <li>Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+       Software (&quot;Installable Software Agreement&quot;) and such Installable Software Agreement shall be accessed from the Target
+       Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+       the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+       indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.</li>
+</ol>
+
+<h3>Cryptography</h3>
+
+<p>Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+   another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+   possession, or use, and re-export of encryption software, to see if this is permitted.</p>
+
+<p><small>Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.</small></p>
+</body>
+</html>
diff --git a/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/META-INF/ECLIPSE_.RSA b/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..786455f
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/META-INF/ECLIPSE_.SF b/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..78f3527
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/META-INF/ECLIPSE_.SF
@@ -0,0 +1,20 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: AZiZSX9cdptNfbwWXnaFsp1mIqo=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: 4gIfTP5y3EzwI5ecyebQLugBMgo=

+

+Name: epl-v10.html

+SHA1-Digest: 8gfeI4bHtcOQXC3dYfggxvsAyWc=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: QdryQvJlVywlE0MGLuwYCkmkyWk=

+

+Name: license.html

+SHA1-Digest: Rp9AnRyeUIxNWe10fjaMDkQB8rU=

+

+Name: feature.properties

+SHA1-Digest: PSUNP/Qfu2JvzTCSu/16RbvtrUA=

+

+Name: feature.xml

+SHA1-Digest: sj/JRirJsawqyWf0JB+BBMQGf1k=

+

diff --git a/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/META-INF/MANIFEST.MF b/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..af801fd
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/META-INF/MANIFEST.MF
@@ -0,0 +1,18 @@
+Manifest-Version: 1.0

+Created-By: 1.6.0 (IBM Corporation)

+

+Name: epl-v10.html

+SHA1-Digest: hNPRR3joO5UV8+u/L0qjKV/Y2EE=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: 09gN05tobgS/MdtqyTNQhOhB73M=

+

+Name: license.html

+SHA1-Digest: /vLZjlHkZSXMSfPrWwNqOUDqqbM=

+

+Name: feature.properties

+SHA1-Digest: aOYH6X1kiS1J7dIY4BTS8xFter4=

+

+Name: feature.xml

+SHA1-Digest: WNbY2/oi1XymJ3vzJBgqLTJc2OY=

+

diff --git a/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/META-INF/eclipse.inf b/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/META-INF/eclipse.inf
new file mode 100644
index 0000000..92ffed2
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/META-INF/eclipse.inf
@@ -0,0 +1,2 @@
+#Processed using Jarprocessor
+pack200.conditioned = true
diff --git a/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/epl-v10.html b/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/epl-v10.html
new file mode 100644
index 0000000..cb1073a
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/epl-v10.html
@@ -0,0 +1,304 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
+<html xmlns:o="urn:schemas-microsoft-com:office:office"
+xmlns:w="urn:schemas-microsoft-com:office:word"
+xmlns="http://www.w3.org/TR/REC-html40">
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
+<link rel=File-List
+href="./Eclipse%20EPL%202003_11_10%20Final_files/filelist.xml">
+<title>Eclipse Public License - Version 1.0</title>
+<style>
+<!--
+ /* Font Definitions */
+@font-face
+	{
+	panose-1:2 11 6 4 3 5 4 4 2 4;
+	mso-font-charset:0;
+	mso-font-pitch:variable;
+	mso-font-signature:553679495 -2147483648 8 0 66047 0;}
+ /* Style Definitions */
+p.MsoNormal, li.MsoNormal, div.MsoNormal
+	{mso-style-parent:"";
+	margin:0in;
+	margin-bottom:.0001pt;
+	mso-pagination:widow-orphan;
+	font-size:12.0pt;
+	}
+p
+	{margin-right:0in;
+	mso-margin-top-alt:auto;
+	mso-margin-bottom-alt:auto;
+	margin-left:0in;
+	mso-pagination:widow-orphan;
+	font-size:12.0pt;
+	}
+p.BalloonText, li.BalloonText, div.BalloonText
+	{mso-style-name:"Balloon Text";
+	margin:0in;
+	margin-bottom:.0001pt;
+	mso-pagination:widow-orphan;
+	font-size:8.0pt;
+	
+	}
+@page Section1
+	{size:8.5in 11.0in;
+	margin:1.0in 1.25in 1.0in 1.25in;
+	mso-header-margin:.5in;
+	mso-footer-margin:.5in;
+	mso-paper-source:0;}
+div.Section1
+	{page:Section1;}
+-->
+</style>
+</head>
+
+<body lang="EN-US" style='tab-interval:.5in'>
+
+<div class=Section1>
+
+<p align=center style='text-align:center'><b>Eclipse Public License - v 1.0</b>
+</p>
+
+<p><span style='font-size:10.0pt'>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER
+THE TERMS OF THIS ECLIPSE PUBLIC LICENSE (&quot;AGREEMENT&quot;). ANY USE,
+REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE
+OF THIS AGREEMENT.</span> </p>
+
+<p><b><span style='font-size:10.0pt'>1. DEFINITIONS</span></b> </p>
+
+<p><span style='font-size:10.0pt'>&quot;Contribution&quot; means:</span> </p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>a)
+in the case of the initial Contributor, the initial code and documentation
+distributed under this Agreement, and<br clear=left>
+b) in the case of each subsequent Contributor:</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>i)
+changes to the Program, and</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>ii)
+additions to the Program;</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>where
+such changes and/or additions to the Program originate from and are distributed
+by that particular Contributor. A Contribution 'originates' from a Contributor
+if it was added to the Program by such Contributor itself or anyone acting on
+such Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in conjunction
+with the Program under their own license agreement, and (ii) are not derivative
+works of the Program. </span></p>
+
+<p><span style='font-size:10.0pt'>&quot;Contributor&quot; means any person or
+entity that distributes the Program.</span> </p>
+
+<p><span style='font-size:10.0pt'>&quot;Licensed Patents &quot; mean patent
+claims licensable by a Contributor which are necessarily infringed by the use
+or sale of its Contribution alone or when combined with the Program. </span></p>
+
+<p><span style='font-size:10.0pt'>&quot;Program&quot; means the Contributions
+distributed in accordance with this Agreement.</span> </p>
+
+<p><span style='font-size:10.0pt'>&quot;Recipient&quot; means anyone who
+receives the Program under this Agreement, including all Contributors.</span> </p>
+
+<p><b><span style='font-size:10.0pt'>2. GRANT OF RIGHTS</span></b> </p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>a)
+Subject to the terms of this Agreement, each Contributor hereby grants Recipient
+a non-exclusive, worldwide, royalty-free copyright license to<span
+style='color:red'> </span>reproduce, prepare derivative works of, publicly
+display, publicly perform, distribute and sublicense the Contribution of such
+Contributor, if any, and such derivative works, in source code and object code
+form.</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>b)
+Subject to the terms of this Agreement, each Contributor hereby grants
+Recipient a non-exclusive, worldwide,<span style='color:green'> </span>royalty-free
+patent license under Licensed Patents to make, use, sell, offer to sell, import
+and otherwise transfer the Contribution of such Contributor, if any, in source
+code and object code form. This patent license shall apply to the combination
+of the Contribution and the Program if, at the time the Contribution is added
+by the Contributor, such addition of the Contribution causes such combination
+to be covered by the Licensed Patents. The patent license shall not apply to
+any other combinations which include the Contribution. No hardware per se is
+licensed hereunder. </span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>c)
+Recipient understands that although each Contributor grants the licenses to its
+Contributions set forth herein, no assurances are provided by any Contributor
+that the Program does not infringe the patent or other intellectual property
+rights of any other entity. Each Contributor disclaims any liability to Recipient
+for claims brought by any other entity based on infringement of intellectual
+property rights or otherwise. As a condition to exercising the rights and
+licenses granted hereunder, each Recipient hereby assumes sole responsibility
+to secure any other intellectual property rights needed, if any. For example,
+if a third party patent license is required to allow Recipient to distribute
+the Program, it is Recipient's responsibility to acquire that license before
+distributing the Program.</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>d)
+Each Contributor represents that to its knowledge it has sufficient copyright
+rights in its Contribution, if any, to grant the copyright license set forth in
+this Agreement. </span></p>
+
+<p><b><span style='font-size:10.0pt'>3. REQUIREMENTS</span></b> </p>
+
+<p><span style='font-size:10.0pt'>A Contributor may choose to distribute the
+Program in object code form under its own license agreement, provided that:</span>
+</p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>a)
+it complies with the terms and conditions of this Agreement; and</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>b)
+its license agreement:</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>i)
+effectively disclaims on behalf of all Contributors all warranties and
+conditions, express and implied, including warranties or conditions of title
+and non-infringement, and implied warranties or conditions of merchantability
+and fitness for a particular purpose; </span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>ii)
+effectively excludes on behalf of all Contributors all liability for damages,
+including direct, indirect, special, incidental and consequential damages, such
+as lost profits; </span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>iii)
+states that any provisions which differ from this Agreement are offered by that
+Contributor alone and not by any other party; and</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>iv)
+states that source code for the Program is available from such Contributor, and
+informs licensees how to obtain it in a reasonable manner on or through a
+medium customarily used for software exchange.<span style='color:blue'> </span></span></p>
+
+<p><span style='font-size:10.0pt'>When the Program is made available in source
+code form:</span> </p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>a)
+it must be made available under this Agreement; and </span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>b) a
+copy of this Agreement must be included with each copy of the Program. </span></p>
+
+<p><span style='font-size:10.0pt'>Contributors may not remove or alter any
+copyright notices contained within the Program. </span></p>
+
+<p><span style='font-size:10.0pt'>Each Contributor must identify itself as the
+originator of its Contribution, if any, in a manner that reasonably allows
+subsequent Recipients to identify the originator of the Contribution. </span></p>
+
+<p><b><span style='font-size:10.0pt'>4. COMMERCIAL DISTRIBUTION</span></b> </p>
+
+<p><span style='font-size:10.0pt'>Commercial distributors of software may
+accept certain responsibilities with respect to end users, business partners
+and the like. While this license is intended to facilitate the commercial use
+of the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create potential
+liability for other Contributors. Therefore, if a Contributor includes the
+Program in a commercial product offering, such Contributor (&quot;Commercial
+Contributor&quot;) hereby agrees to defend and indemnify every other
+Contributor (&quot;Indemnified Contributor&quot;) against any losses, damages and
+costs (collectively &quot;Losses&quot;) arising from claims, lawsuits and other
+legal actions brought by a third party against the Indemnified Contributor to
+the extent caused by the acts or omissions of such Commercial Contributor in
+connection with its distribution of the Program in a commercial product
+offering. The obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In order
+to qualify, an Indemnified Contributor must: a) promptly notify the Commercial
+Contributor in writing of such claim, and b) allow the Commercial Contributor
+to control, and cooperate with the Commercial Contributor in, the defense and
+any related settlement negotiations. The Indemnified Contributor may participate
+in any such claim at its own expense.</span> </p>
+
+<p><span style='font-size:10.0pt'>For example, a Contributor might include the
+Program in a commercial product offering, Product X. That Contributor is then a
+Commercial Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance claims and
+warranties are such Commercial Contributor's responsibility alone. Under this
+section, the Commercial Contributor would have to defend claims against the
+other Contributors related to those performance claims and warranties, and if a
+court requires any other Contributor to pay any damages as a result, the
+Commercial Contributor must pay those damages.</span> </p>
+
+<p><b><span style='font-size:10.0pt'>5. NO WARRANTY</span></b> </p>
+
+<p><span style='font-size:10.0pt'>EXCEPT AS EXPRESSLY SET FORTH IN THIS
+AGREEMENT, THE PROGRAM IS PROVIDED ON AN &quot;AS IS&quot; BASIS, WITHOUT
+WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,
+WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
+MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and distributing the
+Program and assumes all risks associated with its exercise of rights under this
+Agreement , including but not limited to the risks and costs of program errors,
+compliance with applicable laws, damage to or loss of data, programs or
+equipment, and unavailability or interruption of operations. </span></p>
+
+<p><b><span style='font-size:10.0pt'>6. DISCLAIMER OF LIABILITY</span></b> </p>
+
+<p><span style='font-size:10.0pt'>EXCEPT AS EXPRESSLY SET FORTH IN THIS
+AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF
+THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF
+THE POSSIBILITY OF SUCH DAMAGES.</span> </p>
+
+<p><b><span style='font-size:10.0pt'>7. GENERAL</span></b> </p>
+
+<p><span style='font-size:10.0pt'>If any provision of this Agreement is invalid
+or unenforceable under applicable law, it shall not affect the validity or
+enforceability of the remainder of the terms of this Agreement, and without
+further action by the parties hereto, such provision shall be reformed to the
+minimum extent necessary to make such provision valid and enforceable.</span> </p>
+
+<p><span style='font-size:10.0pt'>If Recipient institutes patent litigation
+against any entity (including a cross-claim or counterclaim in a lawsuit)
+alleging that the Program itself (excluding combinations of the Program with
+other software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the date
+such litigation is filed. </span></p>
+
+<p><span style='font-size:10.0pt'>All Recipient's rights under this Agreement
+shall terminate if it fails to comply with any of the material terms or
+conditions of this Agreement and does not cure such failure in a reasonable
+period of time after becoming aware of such noncompliance. If all Recipient's
+rights under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive. </span></p>
+
+<p><span style='font-size:10.0pt'>Everyone is permitted to copy and distribute
+copies of this Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The Agreement
+Steward reserves the right to publish new versions (including revisions) of
+this Agreement from time to time. No one other than the Agreement Steward has
+the right to modify this Agreement. The Eclipse Foundation is the initial
+Agreement Steward. The Eclipse Foundation may assign the responsibility to
+serve as the Agreement Steward to a suitable separate entity. Each new version
+of the Agreement will be given a distinguishing version number. The Program
+(including Contributions) may always be distributed subject to the version of
+the Agreement under which it was received. In addition, after a new version of
+the Agreement is published, Contributor may elect to distribute the Program
+(including its Contributions) under the new version. Except as expressly stated
+in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to
+the intellectual property of any Contributor under this Agreement, whether
+expressly, by implication, estoppel or otherwise. All rights in the Program not
+expressly granted under this Agreement are reserved.</span> </p>
+
+<p><span style='font-size:10.0pt'>This Agreement is governed by the laws of the
+State of New York and the intellectual property laws of the United States of
+America. No party to this Agreement will bring a legal action under this
+Agreement more than one year after the cause of action arose. Each party waives
+its rights to a jury trial in any resulting litigation.</span> </p>
+
+<p class=MsoNormal></p>
+
+</div>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/feature.properties b/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/feature.properties
new file mode 100644
index 0000000..ad5ccaf
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/feature.properties
@@ -0,0 +1,155 @@
+# /**
+#  * Copyright (c) 2002-2011 IBM Corporation and others.
+#  * All rights reserved.   This program and the accompanying materials
+#  * are made available under the terms of the Eclipse Public License v1.0
+#  * which accompanies this distribution, and is available at
+#  * http://www.eclipse.org/legal/epl-v10.html
+#  * 
+#  * Contributors: 
+#  *   IBM - Initial API and implementation
+#  */
+
+# NLS_MESSAGEFORMAT_VAR
+
+# "featureName" property - name of the feature
+featureName=EMF Common
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse Modeling Project
+
+# "description" property - description of the feature
+description=Common platform-independent utilities used throughout EMF, including collection classes, notifiers, adapters, and commands.
+
+ModelingUpdateSiteName=Eclipse Modeling Project Updates
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+       - Content may be structured and packaged into modules to facilitate delivering,\n\
+         extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+         plug-in fragments ("Fragments"), and features ("Features").\n\
+       - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+         in a directory named "plugins".\n\
+       - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+         Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+         Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+         numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+       - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+         named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+       - The top-level (root) directory\n\
+       - Plug-in and Fragment directories\n\
+       - Inside Plug-ins and Fragments packaged as JARs\n\
+       - Sub-directories of the directory named "src" of certain Plug-ins\n\
+       - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+       - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+       - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+       - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+       - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+       - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+       - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+       1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+          the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+          extending or updating the functionality of an Eclipse-based product.\n\
+       2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+          Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+       3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+          govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+          Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+          with the Specification. Such Installable Software Agreement must inform the user of the\n\
+          terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+          the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+          indication of agreement by the user, the provisioning Technology will complete installation\n\
+          of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/feature.xml b/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/feature.xml
new file mode 100644
index 0000000..7b6a919
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/feature.xml
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- contextQualifierLength=14 -->
+<!-- contextQualifierLength=14 -->
+<feature
+      id="org.eclipse.emf.common"
+      label="%featureName"
+      version="2.8.0.v20130125-0546"
+      provider-name="%providerName">
+
+   <description>
+      %description
+   </description>
+
+   <copyright url="http://www.eclipse.org/legal/epl-v10.html">
+      Copyright (c) 2002-2011 IBM Corporation and others.
+All rights reserved.   This program and the accompanying materials
+are made available under the terms of the Eclipse Public License v1.0
+which accompanies this distribution, and is available at
+http://www.eclipse.org/legal/epl-v10.html
+   </copyright>
+
+   <license url="%licenseURL">
+      %license
+   </license>
+
+   <url>
+      <update label="%ModelingUpdateSiteName" url="http://www.eclipse.org/modeling/updates/"/>
+      <discovery label="%ModelingUpdateSiteName" url="http://www.eclipse.org/modeling/updates/"/>
+   </url>
+
+   <requires>
+      <import plugin="org.eclipse.core.runtime"/>
+   </requires>
+
+   <plugin
+         id="org.eclipse.emf.common"
+         download-size="0"
+         install-size="0"
+         version="2.8.0.v20130125-0546"
+         unpack="false"/>
+
+</feature>
diff --git a/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/license.html b/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/license.html
@@ -0,0 +1,108 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Foundation Software User Agreement</title>
+</head>
+
+<body lang="EN-US">
+<h2>Eclipse Foundation Software User Agreement</h2>
+<p>February 1, 2011</p>
+
+<h3>Usage Of Content</h3>
+
+<p>THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+   (COLLECTIVELY &quot;CONTENT&quot;).  USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+   CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+   OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+   NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+   CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.</p>
+
+<h3>Applicable Licenses</h3>
+
+<p>Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+   (&quot;EPL&quot;).  A copy of the EPL is provided with this Content and is also available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+   For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+   repository (&quot;Repository&quot;) in software modules (&quot;Modules&quot;) and made available as downloadable archives (&quot;Downloads&quot;).</p>
+
+<ul>
+       <li>Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content.  Typical modules may include plug-ins (&quot;Plug-ins&quot;), plug-in fragments (&quot;Fragments&quot;), and features (&quot;Features&quot;).</li>
+       <li>Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java&trade; ARchive) in a directory named &quot;plugins&quot;.</li>
+       <li>A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.  Each Feature may be packaged as a sub-directory in a directory named &quot;features&quot;.  Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of the Plug-ins
+      and/or Fragments associated with that Feature.</li>
+       <li>Features may also include other Features (&quot;Included Features&quot;). Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of Included Features.</li>
+</ul>
+
+<p>The terms and conditions governing Plug-ins and Fragments should be contained in files named &quot;about.html&quot; (&quot;Abouts&quot;). The terms and conditions governing Features and
+Included Features should be contained in files named &quot;license.html&quot; (&quot;Feature Licenses&quot;).  Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:</p>
+
+<ul>
+       <li>The top-level (root) directory</li>
+       <li>Plug-in and Fragment directories</li>
+       <li>Inside Plug-ins and Fragments packaged as JARs</li>
+       <li>Sub-directories of the directory named &quot;src&quot; of certain Plug-ins</li>
+       <li>Feature directories</li>
+</ul>
+
+<p>Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (&quot;Feature Update License&quot;) during the
+installation process.  If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them.  Feature Update Licenses may be found in the &quot;license&quot; property of files named &quot;feature.properties&quot; found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.</p>
+
+<p>THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.  SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):</p>
+
+<ul>
+       <li>Eclipse Distribution License Version 1.0 (available at <a href="http://www.eclipse.org/licenses/edl-v10.html">http://www.eclipse.org/licenses/edl-v1.0.html</a>)</li>
+       <li>Common Public License Version 1.0 (available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>)</li>
+       <li>Apache Software License 1.1 (available at <a href="http://www.apache.org/licenses/LICENSE">http://www.apache.org/licenses/LICENSE</a>)</li>
+       <li>Apache Software License 2.0 (available at <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>)</li>
+       <li>Metro Link Public License 1.00 (available at <a href="http://www.opengroup.org/openmotif/supporters/metrolink/license.html">http://www.opengroup.org/openmotif/supporters/metrolink/license.html</a>)</li>
+       <li>Mozilla Public License Version 1.1 (available at <a href="http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html</a>)</li>
+</ul>
+
+<p>IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT.  If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.</p>
+
+
+<h3>Use of Provisioning Technology</h3>
+
+<p>The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+   Update Manager (&quot;Provisioning Technology&quot;) for the purpose of allowing users to install software, documentation, information and/or
+   other materials (collectively &quot;Installable Software&quot;). This capability is provided with the intent of allowing such users to
+   install, extend and update Eclipse-based products. Information about packaging Installable Software is available at <a
+       href="http://eclipse.org/equinox/p2/repository_packaging.html">http://eclipse.org/equinox/p2/repository_packaging.html</a>
+   (&quot;Specification&quot;).</p>
+
+<p>You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+   applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+   in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+   Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:</p>
+
+<ol>
+       <li>A series of actions may occur (&quot;Provisioning Process&quot;) in which a user may execute the Provisioning Technology
+       on a machine (&quot;Target Machine&quot;) with the intent of installing, extending or updating the functionality of an Eclipse-based
+       product.</li>
+       <li>During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+       accessed and copied to the Target Machine.</li>
+       <li>Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+       Software (&quot;Installable Software Agreement&quot;) and such Installable Software Agreement shall be accessed from the Target
+       Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+       the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+       indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.</li>
+</ol>
+
+<h3>Cryptography</h3>
+
+<p>Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+   another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+   possession, or use, and re-export of encryption software, to see if this is permitted.</p>
+
+<p><small>Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.</small></p>
+</body>
+</html>
diff --git a/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/META-INF/ECLIPSE_.RSA b/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..4e14cee
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/META-INF/ECLIPSE_.SF b/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..8a51517
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/META-INF/ECLIPSE_.SF
@@ -0,0 +1,20 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: Sl5P7pq/ioAzXW7+ZbmyH1YpuOo=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: 4gIfTP5y3EzwI5ecyebQLugBMgo=

+

+Name: epl-v10.html

+SHA1-Digest: 8gfeI4bHtcOQXC3dYfggxvsAyWc=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: QdryQvJlVywlE0MGLuwYCkmkyWk=

+

+Name: license.html

+SHA1-Digest: Rp9AnRyeUIxNWe10fjaMDkQB8rU=

+

+Name: feature.properties

+SHA1-Digest: rr3BdukFIJYvoSau89SLAcV3dM0=

+

+Name: feature.xml

+SHA1-Digest: L4Z38s+pIR6fZBvlgIxKgWRizuU=

+

diff --git a/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/META-INF/MANIFEST.MF b/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..dbbf123
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/META-INF/MANIFEST.MF
@@ -0,0 +1,18 @@
+Manifest-Version: 1.0

+Created-By: 1.6.0 (IBM Corporation)

+

+Name: epl-v10.html

+SHA1-Digest: hNPRR3joO5UV8+u/L0qjKV/Y2EE=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: 09gN05tobgS/MdtqyTNQhOhB73M=

+

+Name: license.html

+SHA1-Digest: /vLZjlHkZSXMSfPrWwNqOUDqqbM=

+

+Name: feature.properties

+SHA1-Digest: jCt791aAyAvjBFA/dPN+2Y2OhYU=

+

+Name: feature.xml

+SHA1-Digest: T5QeW5nKa1V+/olntMcn56Zo+F4=

+

diff --git a/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/META-INF/eclipse.inf b/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/META-INF/eclipse.inf
new file mode 100644
index 0000000..92ffed2
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/META-INF/eclipse.inf
@@ -0,0 +1,2 @@
+#Processed using Jarprocessor
+pack200.conditioned = true
diff --git a/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/epl-v10.html b/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/epl-v10.html
new file mode 100644
index 0000000..cb1073a
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/epl-v10.html
@@ -0,0 +1,304 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
+<html xmlns:o="urn:schemas-microsoft-com:office:office"
+xmlns:w="urn:schemas-microsoft-com:office:word"
+xmlns="http://www.w3.org/TR/REC-html40">
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
+<link rel=File-List
+href="./Eclipse%20EPL%202003_11_10%20Final_files/filelist.xml">
+<title>Eclipse Public License - Version 1.0</title>
+<style>
+<!--
+ /* Font Definitions */
+@font-face
+	{
+	panose-1:2 11 6 4 3 5 4 4 2 4;
+	mso-font-charset:0;
+	mso-font-pitch:variable;
+	mso-font-signature:553679495 -2147483648 8 0 66047 0;}
+ /* Style Definitions */
+p.MsoNormal, li.MsoNormal, div.MsoNormal
+	{mso-style-parent:"";
+	margin:0in;
+	margin-bottom:.0001pt;
+	mso-pagination:widow-orphan;
+	font-size:12.0pt;
+	}
+p
+	{margin-right:0in;
+	mso-margin-top-alt:auto;
+	mso-margin-bottom-alt:auto;
+	margin-left:0in;
+	mso-pagination:widow-orphan;
+	font-size:12.0pt;
+	}
+p.BalloonText, li.BalloonText, div.BalloonText
+	{mso-style-name:"Balloon Text";
+	margin:0in;
+	margin-bottom:.0001pt;
+	mso-pagination:widow-orphan;
+	font-size:8.0pt;
+	
+	}
+@page Section1
+	{size:8.5in 11.0in;
+	margin:1.0in 1.25in 1.0in 1.25in;
+	mso-header-margin:.5in;
+	mso-footer-margin:.5in;
+	mso-paper-source:0;}
+div.Section1
+	{page:Section1;}
+-->
+</style>
+</head>
+
+<body lang="EN-US" style='tab-interval:.5in'>
+
+<div class=Section1>
+
+<p align=center style='text-align:center'><b>Eclipse Public License - v 1.0</b>
+</p>
+
+<p><span style='font-size:10.0pt'>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER
+THE TERMS OF THIS ECLIPSE PUBLIC LICENSE (&quot;AGREEMENT&quot;). ANY USE,
+REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE
+OF THIS AGREEMENT.</span> </p>
+
+<p><b><span style='font-size:10.0pt'>1. DEFINITIONS</span></b> </p>
+
+<p><span style='font-size:10.0pt'>&quot;Contribution&quot; means:</span> </p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>a)
+in the case of the initial Contributor, the initial code and documentation
+distributed under this Agreement, and<br clear=left>
+b) in the case of each subsequent Contributor:</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>i)
+changes to the Program, and</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>ii)
+additions to the Program;</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>where
+such changes and/or additions to the Program originate from and are distributed
+by that particular Contributor. A Contribution 'originates' from a Contributor
+if it was added to the Program by such Contributor itself or anyone acting on
+such Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in conjunction
+with the Program under their own license agreement, and (ii) are not derivative
+works of the Program. </span></p>
+
+<p><span style='font-size:10.0pt'>&quot;Contributor&quot; means any person or
+entity that distributes the Program.</span> </p>
+
+<p><span style='font-size:10.0pt'>&quot;Licensed Patents &quot; mean patent
+claims licensable by a Contributor which are necessarily infringed by the use
+or sale of its Contribution alone or when combined with the Program. </span></p>
+
+<p><span style='font-size:10.0pt'>&quot;Program&quot; means the Contributions
+distributed in accordance with this Agreement.</span> </p>
+
+<p><span style='font-size:10.0pt'>&quot;Recipient&quot; means anyone who
+receives the Program under this Agreement, including all Contributors.</span> </p>
+
+<p><b><span style='font-size:10.0pt'>2. GRANT OF RIGHTS</span></b> </p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>a)
+Subject to the terms of this Agreement, each Contributor hereby grants Recipient
+a non-exclusive, worldwide, royalty-free copyright license to<span
+style='color:red'> </span>reproduce, prepare derivative works of, publicly
+display, publicly perform, distribute and sublicense the Contribution of such
+Contributor, if any, and such derivative works, in source code and object code
+form.</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>b)
+Subject to the terms of this Agreement, each Contributor hereby grants
+Recipient a non-exclusive, worldwide,<span style='color:green'> </span>royalty-free
+patent license under Licensed Patents to make, use, sell, offer to sell, import
+and otherwise transfer the Contribution of such Contributor, if any, in source
+code and object code form. This patent license shall apply to the combination
+of the Contribution and the Program if, at the time the Contribution is added
+by the Contributor, such addition of the Contribution causes such combination
+to be covered by the Licensed Patents. The patent license shall not apply to
+any other combinations which include the Contribution. No hardware per se is
+licensed hereunder. </span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>c)
+Recipient understands that although each Contributor grants the licenses to its
+Contributions set forth herein, no assurances are provided by any Contributor
+that the Program does not infringe the patent or other intellectual property
+rights of any other entity. Each Contributor disclaims any liability to Recipient
+for claims brought by any other entity based on infringement of intellectual
+property rights or otherwise. As a condition to exercising the rights and
+licenses granted hereunder, each Recipient hereby assumes sole responsibility
+to secure any other intellectual property rights needed, if any. For example,
+if a third party patent license is required to allow Recipient to distribute
+the Program, it is Recipient's responsibility to acquire that license before
+distributing the Program.</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>d)
+Each Contributor represents that to its knowledge it has sufficient copyright
+rights in its Contribution, if any, to grant the copyright license set forth in
+this Agreement. </span></p>
+
+<p><b><span style='font-size:10.0pt'>3. REQUIREMENTS</span></b> </p>
+
+<p><span style='font-size:10.0pt'>A Contributor may choose to distribute the
+Program in object code form under its own license agreement, provided that:</span>
+</p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>a)
+it complies with the terms and conditions of this Agreement; and</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>b)
+its license agreement:</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>i)
+effectively disclaims on behalf of all Contributors all warranties and
+conditions, express and implied, including warranties or conditions of title
+and non-infringement, and implied warranties or conditions of merchantability
+and fitness for a particular purpose; </span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>ii)
+effectively excludes on behalf of all Contributors all liability for damages,
+including direct, indirect, special, incidental and consequential damages, such
+as lost profits; </span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>iii)
+states that any provisions which differ from this Agreement are offered by that
+Contributor alone and not by any other party; and</span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>iv)
+states that source code for the Program is available from such Contributor, and
+informs licensees how to obtain it in a reasonable manner on or through a
+medium customarily used for software exchange.<span style='color:blue'> </span></span></p>
+
+<p><span style='font-size:10.0pt'>When the Program is made available in source
+code form:</span> </p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>a)
+it must be made available under this Agreement; and </span></p>
+
+<p class=MsoNormal style='margin-left:.5in'><span style='font-size:10.0pt'>b) a
+copy of this Agreement must be included with each copy of the Program. </span></p>
+
+<p><span style='font-size:10.0pt'>Contributors may not remove or alter any
+copyright notices contained within the Program. </span></p>
+
+<p><span style='font-size:10.0pt'>Each Contributor must identify itself as the
+originator of its Contribution, if any, in a manner that reasonably allows
+subsequent Recipients to identify the originator of the Contribution. </span></p>
+
+<p><b><span style='font-size:10.0pt'>4. COMMERCIAL DISTRIBUTION</span></b> </p>
+
+<p><span style='font-size:10.0pt'>Commercial distributors of software may
+accept certain responsibilities with respect to end users, business partners
+and the like. While this license is intended to facilitate the commercial use
+of the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create potential
+liability for other Contributors. Therefore, if a Contributor includes the
+Program in a commercial product offering, such Contributor (&quot;Commercial
+Contributor&quot;) hereby agrees to defend and indemnify every other
+Contributor (&quot;Indemnified Contributor&quot;) against any losses, damages and
+costs (collectively &quot;Losses&quot;) arising from claims, lawsuits and other
+legal actions brought by a third party against the Indemnified Contributor to
+the extent caused by the acts or omissions of such Commercial Contributor in
+connection with its distribution of the Program in a commercial product
+offering. The obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In order
+to qualify, an Indemnified Contributor must: a) promptly notify the Commercial
+Contributor in writing of such claim, and b) allow the Commercial Contributor
+to control, and cooperate with the Commercial Contributor in, the defense and
+any related settlement negotiations. The Indemnified Contributor may participate
+in any such claim at its own expense.</span> </p>
+
+<p><span style='font-size:10.0pt'>For example, a Contributor might include the
+Program in a commercial product offering, Product X. That Contributor is then a
+Commercial Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance claims and
+warranties are such Commercial Contributor's responsibility alone. Under this
+section, the Commercial Contributor would have to defend claims against the
+other Contributors related to those performance claims and warranties, and if a
+court requires any other Contributor to pay any damages as a result, the
+Commercial Contributor must pay those damages.</span> </p>
+
+<p><b><span style='font-size:10.0pt'>5. NO WARRANTY</span></b> </p>
+
+<p><span style='font-size:10.0pt'>EXCEPT AS EXPRESSLY SET FORTH IN THIS
+AGREEMENT, THE PROGRAM IS PROVIDED ON AN &quot;AS IS&quot; BASIS, WITHOUT
+WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,
+WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
+MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and distributing the
+Program and assumes all risks associated with its exercise of rights under this
+Agreement , including but not limited to the risks and costs of program errors,
+compliance with applicable laws, damage to or loss of data, programs or
+equipment, and unavailability or interruption of operations. </span></p>
+
+<p><b><span style='font-size:10.0pt'>6. DISCLAIMER OF LIABILITY</span></b> </p>
+
+<p><span style='font-size:10.0pt'>EXCEPT AS EXPRESSLY SET FORTH IN THIS
+AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF
+THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF
+THE POSSIBILITY OF SUCH DAMAGES.</span> </p>
+
+<p><b><span style='font-size:10.0pt'>7. GENERAL</span></b> </p>
+
+<p><span style='font-size:10.0pt'>If any provision of this Agreement is invalid
+or unenforceable under applicable law, it shall not affect the validity or
+enforceability of the remainder of the terms of this Agreement, and without
+further action by the parties hereto, such provision shall be reformed to the
+minimum extent necessary to make such provision valid and enforceable.</span> </p>
+
+<p><span style='font-size:10.0pt'>If Recipient institutes patent litigation
+against any entity (including a cross-claim or counterclaim in a lawsuit)
+alleging that the Program itself (excluding combinations of the Program with
+other software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the date
+such litigation is filed. </span></p>
+
+<p><span style='font-size:10.0pt'>All Recipient's rights under this Agreement
+shall terminate if it fails to comply with any of the material terms or
+conditions of this Agreement and does not cure such failure in a reasonable
+period of time after becoming aware of such noncompliance. If all Recipient's
+rights under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive. </span></p>
+
+<p><span style='font-size:10.0pt'>Everyone is permitted to copy and distribute
+copies of this Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The Agreement
+Steward reserves the right to publish new versions (including revisions) of
+this Agreement from time to time. No one other than the Agreement Steward has
+the right to modify this Agreement. The Eclipse Foundation is the initial
+Agreement Steward. The Eclipse Foundation may assign the responsibility to
+serve as the Agreement Steward to a suitable separate entity. Each new version
+of the Agreement will be given a distinguishing version number. The Program
+(including Contributions) may always be distributed subject to the version of
+the Agreement under which it was received. In addition, after a new version of
+the Agreement is published, Contributor may elect to distribute the Program
+(including its Contributions) under the new version. Except as expressly stated
+in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to
+the intellectual property of any Contributor under this Agreement, whether
+expressly, by implication, estoppel or otherwise. All rights in the Program not
+expressly granted under this Agreement are reserved.</span> </p>
+
+<p><span style='font-size:10.0pt'>This Agreement is governed by the laws of the
+State of New York and the intellectual property laws of the United States of
+America. No party to this Agreement will bring a legal action under this
+Agreement more than one year after the cause of action arose. Each party waives
+its rights to a jury trial in any resulting litigation.</span> </p>
+
+<p class=MsoNormal></p>
+
+</div>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/feature.properties b/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/feature.properties
new file mode 100644
index 0000000..249c276
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/feature.properties
@@ -0,0 +1,155 @@
+# /**
+#  * Copyright (c) 2002-2011 IBM Corporation and others.
+#  * All rights reserved.   This program and the accompanying materials
+#  * are made available under the terms of the Eclipse Public License v1.0
+#  * which accompanies this distribution, and is available at
+#  * http://www.eclipse.org/legal/epl-v10.html
+#  * 
+#  * Contributors: 
+#  *   IBM - Initial API and implementation
+#  */
+
+# NLS_MESSAGEFORMAT_VAR
+
+# "featureName" property - name of the feature
+featureName=EMF - Eclipse Modeling Framework Core Runtime
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse Modeling Project
+
+# "description" property - description of the feature
+description=The core runtime for EMF, including EMF's common utilities, Ecore, XML/XMI persistence, and the change model.
+
+ModelingUpdateSiteName=Eclipse Modeling Project Updates
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+       - Content may be structured and packaged into modules to facilitate delivering,\n\
+         extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+         plug-in fragments ("Fragments"), and features ("Features").\n\
+       - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+         in a directory named "plugins".\n\
+       - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+         Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+         Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+         numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+       - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+         named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+       - The top-level (root) directory\n\
+       - Plug-in and Fragment directories\n\
+       - Inside Plug-ins and Fragments packaged as JARs\n\
+       - Sub-directories of the directory named "src" of certain Plug-ins\n\
+       - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+       - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+       - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+       - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+       - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+       - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+       - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+       1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+          the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+          extending or updating the functionality of an Eclipse-based product.\n\
+       2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+          Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+       3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+          govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+          Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+          with the Specification. Such Installable Software Agreement must inform the user of the\n\
+          terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+          the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+          indication of agreement by the user, the provisioning Technology will complete installation\n\
+          of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/feature.xml b/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/feature.xml
new file mode 100644
index 0000000..9655608
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/feature.xml
@@ -0,0 +1,57 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- contextQualifierLength=14 -->
+<!-- contextQualifierLength=14 -->
+<feature
+      id="org.eclipse.emf.ecore"
+      label="%featureName"
+      version="2.8.3.v20130125-0546"
+      provider-name="%providerName">
+
+   <description>
+      %description
+   </description>
+
+   <copyright url="http://www.eclipse.org/legal/epl-v10.html">
+      Copyright (c) 2002-2011 IBM Corporation and others.
+All rights reserved.   This program and the accompanying materials
+are made available under the terms of the Eclipse Public License v1.0
+which accompanies this distribution, and is available at
+http://www.eclipse.org/legal/epl-v10.html
+   </copyright>
+
+   <license url="%licenseURL">
+      %license
+   </license>
+
+   <url>
+      <update label="%ModelingUpdateSiteName" url="http://www.eclipse.org/modeling/updates/"/>
+      <discovery label="%ModelingUpdateSiteName" url="http://www.eclipse.org/modeling/updates/"/>
+   </url>
+
+   <requires>
+      <import plugin="org.eclipse.core.runtime"/>
+      <import plugin="org.eclipse.emf.common"/>
+   </requires>
+
+   <plugin
+         id="org.eclipse.emf.ecore"
+         download-size="0"
+         install-size="0"
+         version="2.8.3.v20130125-0546"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.emf.ecore.change"
+         download-size="0"
+         install-size="0"
+         version="2.8.0.v20130125-0546"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.emf.ecore.xmi"
+         download-size="0"
+         install-size="0"
+         version="2.8.1.v20130125-0546"
+         unpack="false"/>
+
+</feature>
diff --git a/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/license.html b/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/license.html
@@ -0,0 +1,108 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Foundation Software User Agreement</title>
+</head>
+
+<body lang="EN-US">
+<h2>Eclipse Foundation Software User Agreement</h2>
+<p>February 1, 2011</p>
+
+<h3>Usage Of Content</h3>
+
+<p>THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+   (COLLECTIVELY &quot;CONTENT&quot;).  USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+   CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+   OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+   NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+   CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.</p>
+
+<h3>Applicable Licenses</h3>
+
+<p>Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+   (&quot;EPL&quot;).  A copy of the EPL is provided with this Content and is also available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+   For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+   repository (&quot;Repository&quot;) in software modules (&quot;Modules&quot;) and made available as downloadable archives (&quot;Downloads&quot;).</p>
+
+<ul>
+       <li>Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content.  Typical modules may include plug-ins (&quot;Plug-ins&quot;), plug-in fragments (&quot;Fragments&quot;), and features (&quot;Features&quot;).</li>
+       <li>Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java&trade; ARchive) in a directory named &quot;plugins&quot;.</li>
+       <li>A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.  Each Feature may be packaged as a sub-directory in a directory named &quot;features&quot;.  Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of the Plug-ins
+      and/or Fragments associated with that Feature.</li>
+       <li>Features may also include other Features (&quot;Included Features&quot;). Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of Included Features.</li>
+</ul>
+
+<p>The terms and conditions governing Plug-ins and Fragments should be contained in files named &quot;about.html&quot; (&quot;Abouts&quot;). The terms and conditions governing Features and
+Included Features should be contained in files named &quot;license.html&quot; (&quot;Feature Licenses&quot;).  Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:</p>
+
+<ul>
+       <li>The top-level (root) directory</li>
+       <li>Plug-in and Fragment directories</li>
+       <li>Inside Plug-ins and Fragments packaged as JARs</li>
+       <li>Sub-directories of the directory named &quot;src&quot; of certain Plug-ins</li>
+       <li>Feature directories</li>
+</ul>
+
+<p>Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (&quot;Feature Update License&quot;) during the
+installation process.  If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them.  Feature Update Licenses may be found in the &quot;license&quot; property of files named &quot;feature.properties&quot; found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.</p>
+
+<p>THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.  SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):</p>
+
+<ul>
+       <li>Eclipse Distribution License Version 1.0 (available at <a href="http://www.eclipse.org/licenses/edl-v10.html">http://www.eclipse.org/licenses/edl-v1.0.html</a>)</li>
+       <li>Common Public License Version 1.0 (available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>)</li>
+       <li>Apache Software License 1.1 (available at <a href="http://www.apache.org/licenses/LICENSE">http://www.apache.org/licenses/LICENSE</a>)</li>
+       <li>Apache Software License 2.0 (available at <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>)</li>
+       <li>Metro Link Public License 1.00 (available at <a href="http://www.opengroup.org/openmotif/supporters/metrolink/license.html">http://www.opengroup.org/openmotif/supporters/metrolink/license.html</a>)</li>
+       <li>Mozilla Public License Version 1.1 (available at <a href="http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html</a>)</li>
+</ul>
+
+<p>IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT.  If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.</p>
+
+
+<h3>Use of Provisioning Technology</h3>
+
+<p>The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+   Update Manager (&quot;Provisioning Technology&quot;) for the purpose of allowing users to install software, documentation, information and/or
+   other materials (collectively &quot;Installable Software&quot;). This capability is provided with the intent of allowing such users to
+   install, extend and update Eclipse-based products. Information about packaging Installable Software is available at <a
+       href="http://eclipse.org/equinox/p2/repository_packaging.html">http://eclipse.org/equinox/p2/repository_packaging.html</a>
+   (&quot;Specification&quot;).</p>
+
+<p>You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+   applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+   in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+   Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:</p>
+
+<ol>
+       <li>A series of actions may occur (&quot;Provisioning Process&quot;) in which a user may execute the Provisioning Technology
+       on a machine (&quot;Target Machine&quot;) with the intent of installing, extending or updating the functionality of an Eclipse-based
+       product.</li>
+       <li>During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+       accessed and copied to the Target Machine.</li>
+       <li>Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+       Software (&quot;Installable Software Agreement&quot;) and such Installable Software Agreement shall be accessed from the Target
+       Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+       the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+       indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.</li>
+</ol>
+
+<h3>Cryptography</h3>
+
+<p>Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+   another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+   possession, or use, and re-export of encryption software, to see if this is permitted.</p>
+
+<p><small>Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.</small></p>
+</body>
+</html>
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/META-INF/ECLIPSE_.RSA b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..307e685
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/META-INF/ECLIPSE_.SF b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..21400e2
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/META-INF/ECLIPSE_.SF
@@ -0,0 +1,23 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: uKtBj3fooZ75P5tR8ylBfUrMQ+s=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: 4gIfTP5y3EzwI5ecyebQLugBMgo=

+

+Name: epl-v10.html

+SHA1-Digest: /iY8aEvT0IMpNnSjB0FpTUhvUGc=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: RyXo3knk5T635eCpQEPXyFBrCyA=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=

+

+Name: license.html

+SHA1-Digest: Rp9AnRyeUIxNWe10fjaMDkQB8rU=

+

+Name: feature.properties

+SHA1-Digest: siYmD/FGVu1PgapA9a1Ry/kJbAw=

+

+Name: feature.xml

+SHA1-Digest: 0bVz6o3tZdYa0c6gXrlzPEaxeBs=

+

diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/META-INF/MANIFEST.MF b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..7ba2dcd
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/META-INF/MANIFEST.MF
@@ -0,0 +1,21 @@
+Manifest-Version: 1.0

+Created-By: 1.6.0 (IBM Corporation)

+

+Name: epl-v10.html

+SHA1-Digest: jYDaDJLBJpthCwPMgGFVYASJjIU=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: xstAqMgs/a5AsQXQZSdDQ79veOA=

+

+Name: license.html

+SHA1-Digest: /vLZjlHkZSXMSfPrWwNqOUDqqbM=

+

+Name: feature.properties

+SHA1-Digest: x/LIFEtPEANQfOvb2FjDfHiuum4=

+

+Name: feature.xml

+SHA1-Digest: ZDzcJSrAUz903eDn8JxXsmBLcG4=

+

diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/META-INF/eclipse.inf b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/eclipse_update_120.jpg b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/eclipse_update_120.jpg
new file mode 100644
index 0000000..bfdf708
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/eclipse_update_120.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/epl-v10.html b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/epl-v10.html
new file mode 100644
index 0000000..fd39122
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/epl-v10.html
@@ -0,0 +1,261 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Public License - Version 1.0</title>
+<style type="text/css">
+  body {
+    size: 8.5in 11.0in;
+    margin: 0.25in 0.5in 0.25in 0.5in;
+    tab-interval: 0.5in;
+    }
+  p {  	
+    margin-left: auto;
+    margin-top:  0.5em;
+    margin-bottom: 0.5em;
+    }
+  p.list {
+  	margin-left: 0.5in;
+    margin-top:  0.05em;
+    margin-bottom: 0.05em;
+    }
+  </style>
+
+</head>
+
+<body lang="EN-US">
+
+<h2>Eclipse Public License - v 1.0</h2>
+
+<p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE (&quot;AGREEMENT&quot;). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.</p>
+
+<p><b>1. DEFINITIONS</b></p>
+
+<p>&quot;Contribution&quot; means:</p>
+
+<p class="list">a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and</p>
+<p class="list">b) in the case of each subsequent Contributor:</p>
+<p class="list">i) changes to the Program, and</p>
+<p class="list">ii) additions to the Program;</p>
+<p class="list">where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.</p>
+
+<p>&quot;Contributor&quot; means any person or entity that distributes
+the Program.</p>
+
+<p>&quot;Licensed Patents&quot; mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.</p>
+
+<p>&quot;Program&quot; means the Contributions distributed in accordance
+with this Agreement.</p>
+
+<p>&quot;Recipient&quot; means anyone who receives the Program under
+this Agreement, including all Contributors.</p>
+
+<p><b>2. GRANT OF RIGHTS</b></p>
+
+<p class="list">a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.</p>
+
+<p class="list">b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.</p>
+
+<p class="list">c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.</p>
+
+<p class="list">d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.</p>
+
+<p><b>3. REQUIREMENTS</b></p>
+
+<p>A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:</p>
+
+<p class="list">a) it complies with the terms and conditions of this
+Agreement; and</p>
+
+<p class="list">b) its license agreement:</p>
+
+<p class="list">i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;</p>
+
+<p class="list">ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;</p>
+
+<p class="list">iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and</p>
+
+<p class="list">iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.</p>
+
+<p>When the Program is made available in source code form:</p>
+
+<p class="list">a) it must be made available under this Agreement; and</p>
+
+<p class="list">b) a copy of this Agreement must be included with each
+copy of the Program.</p>
+
+<p>Contributors may not remove or alter any copyright notices contained
+within the Program.</p>
+
+<p>Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.</p>
+
+<p><b>4. COMMERCIAL DISTRIBUTION</b></p>
+
+<p>Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+(&quot;Commercial Contributor&quot;) hereby agrees to defend and
+indemnify every other Contributor (&quot;Indemnified Contributor&quot;)
+against any losses, damages and costs (collectively &quot;Losses&quot;)
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.</p>
+
+<p>For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.</p>
+
+<p><b>5. NO WARRANTY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.</p>
+
+<p><b>6. DISCLAIMER OF LIABILITY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), 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 OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.</p>
+
+<p><b>7. GENERAL</b></p>
+
+<p>If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.</p>
+
+<p>If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.</p>
+
+<p>All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.</p>
+
+<p>Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.</p>
+
+<p>This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.</p>
+
+</body>
+
+</html>
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/feature.properties b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/feature.properties
new file mode 100644
index 0000000..35a39f0
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/feature.properties
@@ -0,0 +1,194 @@
+###############################################################################
+# Copyright (c) 2010, 2011 EclipseSource Inc. and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     EclipseSource - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Equinox p2 Core Function
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org - Equinox
+
+description=Provides a minimal headless provisioning system.
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2010 EclipseSource Inc. and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+    EclipseSource - initial API and implementation\n
+################ end of copyright property ####################################
+###############################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+       - Content may be structured and packaged into modules to facilitate delivering,\n\
+         extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+         plug-in fragments ("Fragments"), and features ("Features").\n\
+       - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+         in a directory named "plugins".\n\
+       - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+         Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+         Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+         numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+       - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+         named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+       - The top-level (root) directory\n\
+       - Plug-in and Fragment directories\n\
+       - Inside Plug-ins and Fragments packaged as JARs\n\
+       - Sub-directories of the directory named "src" of certain Plug-ins\n\
+       - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+       - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+       - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+       - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+       - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+       - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+       - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+       1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+          the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+          extending or updating the functionality of an Eclipse-based product.\n\
+       2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+          Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+       3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+          govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+          Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+          with the Specification. Such Installable Software Agreement must inform the user of the\n\
+          terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+          the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+          indication of agreement by the user, the provisioning Technology will complete installation\n\
+          of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/feature.xml b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/feature.xml
new file mode 100644
index 0000000..164ec80
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/feature.xml
@@ -0,0 +1,286 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="org.eclipse.equinox.p2.core.feature"
+      label="%featureName"
+      version="1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0"
+      provider-name="%providerName"
+      image="eclipse_update_120.jpg"
+      
+      >
+
+   <description>
+      %description
+   </description>
+
+   <copyright>
+      %copyright
+   </copyright>
+
+   <license url="%licenseURL">
+      %license
+   </license>
+
+   <plugin
+         id="org.eclipse.equinox.p2.artifact.repository"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120430-1959"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.console"
+         download-size="0"
+         install-size="0"
+         version="1.0.300.v20120429-0125"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.core"
+         download-size="0"
+         install-size="0"
+         version="2.2.0.v20120430-0525"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.director"
+         download-size="0"
+         install-size="0"
+         version="2.2.0.v20120524-0542"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.engine"
+         download-size="0"
+         install-size="0"
+         version="2.2.0.v20130121-021919"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.garbagecollector"
+         download-size="0"
+         install-size="0"
+         version="1.0.200.v20110808-1657"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.metadata"
+         download-size="0"
+         install-size="0"
+         version="2.1.0.v20120430-2001"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.metadata.repository"
+         download-size="0"
+         install-size="0"
+         version="1.2.100.v20120524-1717"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.repository"
+         download-size="0"
+         install-size="0"
+         version="2.2.0.v20120524-1945"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.touchpoint.eclipse"
+         download-size="0"
+         install-size="0"
+         version="2.1.100.v20120428-0117"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.touchpoint.natives"
+         download-size="0"
+         install-size="0"
+         version="1.1.0.v20130121-021919"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.simpleconfigurator.manipulator"
+         download-size="0"
+         install-size="0"
+         version="2.0.0.v20110808-1657"
+         unpack="false"/>
+
+   <plugin
+         id="org.sat4j.core"
+         download-size="0"
+         install-size="0"
+         version="2.3.0.v20110329"
+         unpack="false"/>
+
+   <plugin
+         id="org.sat4j.pb"
+         download-size="0"
+         install-size="0"
+         version="2.3.0.v20110329"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ecf"
+         download-size="0"
+         install-size="0"
+         version="3.1.300.v20120610-1946"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ecf.filetransfer"
+         download-size="0"
+         install-size="0"
+         version="5.0.0.v20120610-1946"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ecf.identity"
+         download-size="0"
+         install-size="0"
+         version="3.1.200.v20120610-1946"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ecf.provider.filetransfer"
+         download-size="0"
+         install-size="0"
+         version="3.2.0.v20120610-1946"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ecf.provider.filetransfer.httpclient"
+         download-size="0"
+         install-size="0"
+         version="4.0.200.v20120610-1946"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ecf.provider.filetransfer.httpclient.ssl"
+         download-size="0"
+         install-size="0"
+         version="1.0.0.v20120610-1946"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ecf.provider.filetransfer.ssl"
+         download-size="0"
+         install-size="0"
+         version="1.0.0.v20120610-1946"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ecf.ssl"
+         download-size="0"
+         install-size="0"
+         version="1.0.100.v20120610-1946"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.apache.commons.codec"
+         download-size="0"
+         install-size="0"
+         version="1.3.0.v201101211617"
+         unpack="false"/>
+
+   <plugin
+         id="org.apache.commons.httpclient"
+         download-size="0"
+         install-size="0"
+         version="3.1.0.v201012070820"
+         unpack="false"/>
+
+   <plugin
+         id="org.apache.commons.logging"
+         download-size="0"
+         install-size="0"
+         version="1.0.4.v201101211617"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.frameworkadmin"
+         download-size="0"
+         install-size="0"
+         version="2.0.100.v20120913-155515"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.frameworkadmin.equinox"
+         download-size="0"
+         install-size="0"
+         version="1.0.400.v20120913-155709"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.preferences"
+         download-size="0"
+         install-size="0"
+         version="3.5.1.v20121031-182809"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.security"
+         download-size="0"
+         install-size="0"
+         version="1.1.100.v20120522-1841"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.jarprocessor"
+         download-size="0"
+         install-size="0"
+         version="1.0.200.v20110808-1657"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.ql"
+         download-size="0"
+         install-size="0"
+         version="2.0.100.v20110808-1657"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.transport.ecf"
+         download-size="0"
+         install-size="0"
+         version="1.0.100.v20120913-155635"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.operations"
+         download-size="0"
+         install-size="0"
+         version="2.2.0.v20130119-010614"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.security.macosx"
+         os="macosx"
+         download-size="0"
+         install-size="0"
+         version="1.100.200.v20120522-2049"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.security.win32.x86"
+         os="win32"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="1.0.300.v20120522-2049"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.security.win32.x86_64"
+         os="win32"
+         arch="x86_64"
+         download-size="0"
+         install-size="0"
+         version="1.0.100.v20120522-2049"
+         fragment="true"
+         unpack="false"/>
+
+</feature>
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/license.html b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/license.html
@@ -0,0 +1,108 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Foundation Software User Agreement</title>
+</head>
+
+<body lang="EN-US">
+<h2>Eclipse Foundation Software User Agreement</h2>
+<p>February 1, 2011</p>
+
+<h3>Usage Of Content</h3>
+
+<p>THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+   (COLLECTIVELY &quot;CONTENT&quot;).  USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+   CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+   OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+   NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+   CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.</p>
+
+<h3>Applicable Licenses</h3>
+
+<p>Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+   (&quot;EPL&quot;).  A copy of the EPL is provided with this Content and is also available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+   For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+   repository (&quot;Repository&quot;) in software modules (&quot;Modules&quot;) and made available as downloadable archives (&quot;Downloads&quot;).</p>
+
+<ul>
+       <li>Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content.  Typical modules may include plug-ins (&quot;Plug-ins&quot;), plug-in fragments (&quot;Fragments&quot;), and features (&quot;Features&quot;).</li>
+       <li>Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java&trade; ARchive) in a directory named &quot;plugins&quot;.</li>
+       <li>A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.  Each Feature may be packaged as a sub-directory in a directory named &quot;features&quot;.  Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of the Plug-ins
+      and/or Fragments associated with that Feature.</li>
+       <li>Features may also include other Features (&quot;Included Features&quot;). Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of Included Features.</li>
+</ul>
+
+<p>The terms and conditions governing Plug-ins and Fragments should be contained in files named &quot;about.html&quot; (&quot;Abouts&quot;). The terms and conditions governing Features and
+Included Features should be contained in files named &quot;license.html&quot; (&quot;Feature Licenses&quot;).  Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:</p>
+
+<ul>
+       <li>The top-level (root) directory</li>
+       <li>Plug-in and Fragment directories</li>
+       <li>Inside Plug-ins and Fragments packaged as JARs</li>
+       <li>Sub-directories of the directory named &quot;src&quot; of certain Plug-ins</li>
+       <li>Feature directories</li>
+</ul>
+
+<p>Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (&quot;Feature Update License&quot;) during the
+installation process.  If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them.  Feature Update Licenses may be found in the &quot;license&quot; property of files named &quot;feature.properties&quot; found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.</p>
+
+<p>THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.  SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):</p>
+
+<ul>
+       <li>Eclipse Distribution License Version 1.0 (available at <a href="http://www.eclipse.org/licenses/edl-v10.html">http://www.eclipse.org/licenses/edl-v1.0.html</a>)</li>
+       <li>Common Public License Version 1.0 (available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>)</li>
+       <li>Apache Software License 1.1 (available at <a href="http://www.apache.org/licenses/LICENSE">http://www.apache.org/licenses/LICENSE</a>)</li>
+       <li>Apache Software License 2.0 (available at <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>)</li>
+       <li>Metro Link Public License 1.00 (available at <a href="http://www.opengroup.org/openmotif/supporters/metrolink/license.html">http://www.opengroup.org/openmotif/supporters/metrolink/license.html</a>)</li>
+       <li>Mozilla Public License Version 1.1 (available at <a href="http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html</a>)</li>
+</ul>
+
+<p>IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT.  If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.</p>
+
+
+<h3>Use of Provisioning Technology</h3>
+
+<p>The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+   Update Manager (&quot;Provisioning Technology&quot;) for the purpose of allowing users to install software, documentation, information and/or
+   other materials (collectively &quot;Installable Software&quot;). This capability is provided with the intent of allowing such users to
+   install, extend and update Eclipse-based products. Information about packaging Installable Software is available at <a
+       href="http://eclipse.org/equinox/p2/repository_packaging.html">http://eclipse.org/equinox/p2/repository_packaging.html</a>
+   (&quot;Specification&quot;).</p>
+
+<p>You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+   applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+   in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+   Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:</p>
+
+<ol>
+       <li>A series of actions may occur (&quot;Provisioning Process&quot;) in which a user may execute the Provisioning Technology
+       on a machine (&quot;Target Machine&quot;) with the intent of installing, extending or updating the functionality of an Eclipse-based
+       product.</li>
+       <li>During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+       accessed and copied to the Target Machine.</li>
+       <li>Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+       Software (&quot;Installable Software Agreement&quot;) and such Installable Software Agreement shall be accessed from the Target
+       Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+       the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+       indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.</li>
+</ol>
+
+<h3>Cryptography</h3>
+
+<p>Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+   another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+   possession, or use, and re-export of encryption software, to see if this is permitted.</p>
+
+<p><small>Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.</small></p>
+</body>
+</html>
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/META-INF/ECLIPSE_.RSA b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..694f05f
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/META-INF/ECLIPSE_.SF b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..e45a0a5
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/META-INF/ECLIPSE_.SF
@@ -0,0 +1,23 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: Dd1zdnKdtbSrhHCw7AOE/JDEosg=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: 4gIfTP5y3EzwI5ecyebQLugBMgo=

+

+Name: epl-v10.html

+SHA1-Digest: /iY8aEvT0IMpNnSjB0FpTUhvUGc=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: RyXo3knk5T635eCpQEPXyFBrCyA=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=

+

+Name: license.html

+SHA1-Digest: Rp9AnRyeUIxNWe10fjaMDkQB8rU=

+

+Name: feature.properties

+SHA1-Digest: QXjasCGfhFr8ViQeCp146SYtHQs=

+

+Name: feature.xml

+SHA1-Digest: JLDcqrSt8fjQDFCx29l+2ZWwLTU=

+

diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/META-INF/MANIFEST.MF b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..e0e4b0a
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/META-INF/MANIFEST.MF
@@ -0,0 +1,21 @@
+Manifest-Version: 1.0

+Created-By: 1.6.0 (IBM Corporation)

+

+Name: epl-v10.html

+SHA1-Digest: jYDaDJLBJpthCwPMgGFVYASJjIU=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: xstAqMgs/a5AsQXQZSdDQ79veOA=

+

+Name: license.html

+SHA1-Digest: /vLZjlHkZSXMSfPrWwNqOUDqqbM=

+

+Name: feature.properties

+SHA1-Digest: pZxe2mLOtxiDmbpSVandTmRyHfM=

+

+Name: feature.xml

+SHA1-Digest: wHKvem/XOngw0qCVpHwWTDVkc6I=

+

diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/META-INF/eclipse.inf b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/eclipse_update_120.jpg b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/eclipse_update_120.jpg
new file mode 100644
index 0000000..bfdf708
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/eclipse_update_120.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/epl-v10.html b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/epl-v10.html
new file mode 100644
index 0000000..fd39122
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/epl-v10.html
@@ -0,0 +1,261 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Public License - Version 1.0</title>
+<style type="text/css">
+  body {
+    size: 8.5in 11.0in;
+    margin: 0.25in 0.5in 0.25in 0.5in;
+    tab-interval: 0.5in;
+    }
+  p {  	
+    margin-left: auto;
+    margin-top:  0.5em;
+    margin-bottom: 0.5em;
+    }
+  p.list {
+  	margin-left: 0.5in;
+    margin-top:  0.05em;
+    margin-bottom: 0.05em;
+    }
+  </style>
+
+</head>
+
+<body lang="EN-US">
+
+<h2>Eclipse Public License - v 1.0</h2>
+
+<p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE (&quot;AGREEMENT&quot;). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.</p>
+
+<p><b>1. DEFINITIONS</b></p>
+
+<p>&quot;Contribution&quot; means:</p>
+
+<p class="list">a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and</p>
+<p class="list">b) in the case of each subsequent Contributor:</p>
+<p class="list">i) changes to the Program, and</p>
+<p class="list">ii) additions to the Program;</p>
+<p class="list">where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.</p>
+
+<p>&quot;Contributor&quot; means any person or entity that distributes
+the Program.</p>
+
+<p>&quot;Licensed Patents&quot; mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.</p>
+
+<p>&quot;Program&quot; means the Contributions distributed in accordance
+with this Agreement.</p>
+
+<p>&quot;Recipient&quot; means anyone who receives the Program under
+this Agreement, including all Contributors.</p>
+
+<p><b>2. GRANT OF RIGHTS</b></p>
+
+<p class="list">a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.</p>
+
+<p class="list">b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.</p>
+
+<p class="list">c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.</p>
+
+<p class="list">d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.</p>
+
+<p><b>3. REQUIREMENTS</b></p>
+
+<p>A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:</p>
+
+<p class="list">a) it complies with the terms and conditions of this
+Agreement; and</p>
+
+<p class="list">b) its license agreement:</p>
+
+<p class="list">i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;</p>
+
+<p class="list">ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;</p>
+
+<p class="list">iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and</p>
+
+<p class="list">iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.</p>
+
+<p>When the Program is made available in source code form:</p>
+
+<p class="list">a) it must be made available under this Agreement; and</p>
+
+<p class="list">b) a copy of this Agreement must be included with each
+copy of the Program.</p>
+
+<p>Contributors may not remove or alter any copyright notices contained
+within the Program.</p>
+
+<p>Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.</p>
+
+<p><b>4. COMMERCIAL DISTRIBUTION</b></p>
+
+<p>Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+(&quot;Commercial Contributor&quot;) hereby agrees to defend and
+indemnify every other Contributor (&quot;Indemnified Contributor&quot;)
+against any losses, damages and costs (collectively &quot;Losses&quot;)
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.</p>
+
+<p>For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.</p>
+
+<p><b>5. NO WARRANTY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.</p>
+
+<p><b>6. DISCLAIMER OF LIABILITY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), 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 OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.</p>
+
+<p><b>7. GENERAL</b></p>
+
+<p>If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.</p>
+
+<p>If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.</p>
+
+<p>All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.</p>
+
+<p>Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.</p>
+
+<p>This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.</p>
+
+</body>
+
+</html>
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/feature.properties b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/feature.properties
new file mode 100644
index 0000000..a612ea1
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/feature.properties
@@ -0,0 +1,193 @@
+###############################################################################
+# Copyright (c) 2010, 2011 EclipseSource Inc. and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     EclipseSource - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Add-on Function for p2
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org - Equinox
+
+description=Provides some backward compatibility support (e.g. drop-ins, legacy update site) and the metadata generation facility.
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2010 EclipseSource Inc. and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+    EclipseSource - initial API and implementation\n
+################ end of copyright property ###################################################################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+       - Content may be structured and packaged into modules to facilitate delivering,\n\
+         extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+         plug-in fragments ("Fragments"), and features ("Features").\n\
+       - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+         in a directory named "plugins".\n\
+       - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+         Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+         Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+         numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+       - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+         named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+       - The top-level (root) directory\n\
+       - Plug-in and Fragment directories\n\
+       - Inside Plug-ins and Fragments packaged as JARs\n\
+       - Sub-directories of the directory named "src" of certain Plug-ins\n\
+       - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+       - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+       - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+       - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+       - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+       - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+       - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+       1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+          the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+          extending or updating the functionality of an Eclipse-based product.\n\
+       2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+          Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+       3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+          govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+          Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+          with the Specification. Such Installable Software Agreement must inform the user of the\n\
+          terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+          the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+          indication of agreement by the user, the provisioning Technology will complete installation\n\
+          of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/feature.xml b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/feature.xml
new file mode 100644
index 0000000..0ef45b9
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/feature.xml
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="org.eclipse.equinox.p2.extras.feature"
+      label="%featureName"
+      version="1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w"
+      provider-name="%providerName"
+      image="eclipse_update_120.jpg"
+      
+      >
+
+   <description>
+      %description
+   </description>
+
+   <copyright>
+      %copyright
+   </copyright>
+
+   <license url="%licenseURL">
+      %license
+   </license>
+
+   <includes
+         id="org.eclipse.equinox.p2.core.feature"
+         version="1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.director.app"
+         download-size="0"
+         install-size="0"
+         version="1.0.300.v20120428-0517"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.directorywatcher"
+         download-size="0"
+         install-size="0"
+         version="1.0.300.v20110808-1657"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.reconciler.dropins"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120301-2145"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.publisher"
+         download-size="0"
+         install-size="0"
+         version="1.2.0.v20121002-080415"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.extensionlocation"
+         download-size="0"
+         install-size="0"
+         version="1.2.100.v20110808-1657"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.repository.tools"
+         download-size="0"
+         install-size="0"
+         version="2.0.100.v20120501-1314"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.publisher.eclipse"
+         download-size="0"
+         install-size="0"
+         version="1.1.0.v20120913-155635"
+         unpack="false"/>
+
+</feature>
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/license.html b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/license.html
@@ -0,0 +1,108 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Foundation Software User Agreement</title>
+</head>
+
+<body lang="EN-US">
+<h2>Eclipse Foundation Software User Agreement</h2>
+<p>February 1, 2011</p>
+
+<h3>Usage Of Content</h3>
+
+<p>THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+   (COLLECTIVELY &quot;CONTENT&quot;).  USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+   CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+   OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+   NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+   CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.</p>
+
+<h3>Applicable Licenses</h3>
+
+<p>Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+   (&quot;EPL&quot;).  A copy of the EPL is provided with this Content and is also available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+   For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+   repository (&quot;Repository&quot;) in software modules (&quot;Modules&quot;) and made available as downloadable archives (&quot;Downloads&quot;).</p>
+
+<ul>
+       <li>Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content.  Typical modules may include plug-ins (&quot;Plug-ins&quot;), plug-in fragments (&quot;Fragments&quot;), and features (&quot;Features&quot;).</li>
+       <li>Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java&trade; ARchive) in a directory named &quot;plugins&quot;.</li>
+       <li>A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.  Each Feature may be packaged as a sub-directory in a directory named &quot;features&quot;.  Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of the Plug-ins
+      and/or Fragments associated with that Feature.</li>
+       <li>Features may also include other Features (&quot;Included Features&quot;). Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of Included Features.</li>
+</ul>
+
+<p>The terms and conditions governing Plug-ins and Fragments should be contained in files named &quot;about.html&quot; (&quot;Abouts&quot;). The terms and conditions governing Features and
+Included Features should be contained in files named &quot;license.html&quot; (&quot;Feature Licenses&quot;).  Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:</p>
+
+<ul>
+       <li>The top-level (root) directory</li>
+       <li>Plug-in and Fragment directories</li>
+       <li>Inside Plug-ins and Fragments packaged as JARs</li>
+       <li>Sub-directories of the directory named &quot;src&quot; of certain Plug-ins</li>
+       <li>Feature directories</li>
+</ul>
+
+<p>Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (&quot;Feature Update License&quot;) during the
+installation process.  If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them.  Feature Update Licenses may be found in the &quot;license&quot; property of files named &quot;feature.properties&quot; found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.</p>
+
+<p>THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.  SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):</p>
+
+<ul>
+       <li>Eclipse Distribution License Version 1.0 (available at <a href="http://www.eclipse.org/licenses/edl-v10.html">http://www.eclipse.org/licenses/edl-v1.0.html</a>)</li>
+       <li>Common Public License Version 1.0 (available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>)</li>
+       <li>Apache Software License 1.1 (available at <a href="http://www.apache.org/licenses/LICENSE">http://www.apache.org/licenses/LICENSE</a>)</li>
+       <li>Apache Software License 2.0 (available at <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>)</li>
+       <li>Metro Link Public License 1.00 (available at <a href="http://www.opengroup.org/openmotif/supporters/metrolink/license.html">http://www.opengroup.org/openmotif/supporters/metrolink/license.html</a>)</li>
+       <li>Mozilla Public License Version 1.1 (available at <a href="http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html</a>)</li>
+</ul>
+
+<p>IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT.  If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.</p>
+
+
+<h3>Use of Provisioning Technology</h3>
+
+<p>The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+   Update Manager (&quot;Provisioning Technology&quot;) for the purpose of allowing users to install software, documentation, information and/or
+   other materials (collectively &quot;Installable Software&quot;). This capability is provided with the intent of allowing such users to
+   install, extend and update Eclipse-based products. Information about packaging Installable Software is available at <a
+       href="http://eclipse.org/equinox/p2/repository_packaging.html">http://eclipse.org/equinox/p2/repository_packaging.html</a>
+   (&quot;Specification&quot;).</p>
+
+<p>You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+   applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+   in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+   Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:</p>
+
+<ol>
+       <li>A series of actions may occur (&quot;Provisioning Process&quot;) in which a user may execute the Provisioning Technology
+       on a machine (&quot;Target Machine&quot;) with the intent of installing, extending or updating the functionality of an Eclipse-based
+       product.</li>
+       <li>During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+       accessed and copied to the Target Machine.</li>
+       <li>Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+       Software (&quot;Installable Software Agreement&quot;) and such Installable Software Agreement shall be accessed from the Target
+       Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+       the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+       indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.</li>
+</ol>
+
+<h3>Cryptography</h3>
+
+<p>Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+   another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+   possession, or use, and re-export of encryption software, to see if this is permitted.</p>
+
+<p><small>Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.</small></p>
+</body>
+</html>
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/META-INF/ECLIPSE_.RSA b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..699485f
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/META-INF/ECLIPSE_.SF b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..9bcd2cb
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/META-INF/ECLIPSE_.SF
@@ -0,0 +1,23 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: p9SHwwob+S6EvlVwb8ugYOGjkIg=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: 4gIfTP5y3EzwI5ecyebQLugBMgo=

+

+Name: epl-v10.html

+SHA1-Digest: /iY8aEvT0IMpNnSjB0FpTUhvUGc=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: RyXo3knk5T635eCpQEPXyFBrCyA=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=

+

+Name: license.html

+SHA1-Digest: Rp9AnRyeUIxNWe10fjaMDkQB8rU=

+

+Name: feature.properties

+SHA1-Digest: JqJjvsRVoyRRGp1D7TcODCcYA+k=

+

+Name: feature.xml

+SHA1-Digest: Bw6lWUZmi5wuUDGrXwKJYQQPFOw=

+

diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/META-INF/MANIFEST.MF b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..8e53cf5
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/META-INF/MANIFEST.MF
@@ -0,0 +1,21 @@
+Manifest-Version: 1.0

+Created-By: 1.6.0 (IBM Corporation)

+

+Name: epl-v10.html

+SHA1-Digest: jYDaDJLBJpthCwPMgGFVYASJjIU=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: xstAqMgs/a5AsQXQZSdDQ79veOA=

+

+Name: license.html

+SHA1-Digest: /vLZjlHkZSXMSfPrWwNqOUDqqbM=

+

+Name: feature.properties

+SHA1-Digest: gdm77vxq4WgtPiRX7+vVOf4OWUU=

+

+Name: feature.xml

+SHA1-Digest: 2oeR9Aik2O1LBSJJMuIv5U/ClHg=

+

diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/META-INF/eclipse.inf b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/eclipse_update_120.jpg b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/eclipse_update_120.jpg
new file mode 100644
index 0000000..bfdf708
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/eclipse_update_120.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/epl-v10.html b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/epl-v10.html
new file mode 100644
index 0000000..fd39122
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/epl-v10.html
@@ -0,0 +1,261 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Public License - Version 1.0</title>
+<style type="text/css">
+  body {
+    size: 8.5in 11.0in;
+    margin: 0.25in 0.5in 0.25in 0.5in;
+    tab-interval: 0.5in;
+    }
+  p {  	
+    margin-left: auto;
+    margin-top:  0.5em;
+    margin-bottom: 0.5em;
+    }
+  p.list {
+  	margin-left: 0.5in;
+    margin-top:  0.05em;
+    margin-bottom: 0.05em;
+    }
+  </style>
+
+</head>
+
+<body lang="EN-US">
+
+<h2>Eclipse Public License - v 1.0</h2>
+
+<p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE (&quot;AGREEMENT&quot;). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.</p>
+
+<p><b>1. DEFINITIONS</b></p>
+
+<p>&quot;Contribution&quot; means:</p>
+
+<p class="list">a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and</p>
+<p class="list">b) in the case of each subsequent Contributor:</p>
+<p class="list">i) changes to the Program, and</p>
+<p class="list">ii) additions to the Program;</p>
+<p class="list">where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.</p>
+
+<p>&quot;Contributor&quot; means any person or entity that distributes
+the Program.</p>
+
+<p>&quot;Licensed Patents&quot; mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.</p>
+
+<p>&quot;Program&quot; means the Contributions distributed in accordance
+with this Agreement.</p>
+
+<p>&quot;Recipient&quot; means anyone who receives the Program under
+this Agreement, including all Contributors.</p>
+
+<p><b>2. GRANT OF RIGHTS</b></p>
+
+<p class="list">a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.</p>
+
+<p class="list">b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.</p>
+
+<p class="list">c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.</p>
+
+<p class="list">d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.</p>
+
+<p><b>3. REQUIREMENTS</b></p>
+
+<p>A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:</p>
+
+<p class="list">a) it complies with the terms and conditions of this
+Agreement; and</p>
+
+<p class="list">b) its license agreement:</p>
+
+<p class="list">i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;</p>
+
+<p class="list">ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;</p>
+
+<p class="list">iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and</p>
+
+<p class="list">iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.</p>
+
+<p>When the Program is made available in source code form:</p>
+
+<p class="list">a) it must be made available under this Agreement; and</p>
+
+<p class="list">b) a copy of this Agreement must be included with each
+copy of the Program.</p>
+
+<p>Contributors may not remove or alter any copyright notices contained
+within the Program.</p>
+
+<p>Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.</p>
+
+<p><b>4. COMMERCIAL DISTRIBUTION</b></p>
+
+<p>Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+(&quot;Commercial Contributor&quot;) hereby agrees to defend and
+indemnify every other Contributor (&quot;Indemnified Contributor&quot;)
+against any losses, damages and costs (collectively &quot;Losses&quot;)
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.</p>
+
+<p>For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.</p>
+
+<p><b>5. NO WARRANTY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.</p>
+
+<p><b>6. DISCLAIMER OF LIABILITY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), 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 OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.</p>
+
+<p><b>7. GENERAL</b></p>
+
+<p>If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.</p>
+
+<p>If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.</p>
+
+<p>All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.</p>
+
+<p>Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.</p>
+
+<p>This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.</p>
+
+</body>
+
+</html>
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/feature.properties b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/feature.properties
new file mode 100644
index 0000000..5d06bc4
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/feature.properties
@@ -0,0 +1,194 @@
+###############################################################################
+# Copyright (c) 2011 EclipseSource Inc. and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     EclipseSource - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Equinox p2 RCP Management Facilities
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org - Equinox
+
+description=Provides SWT based UI component for p2.
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2011 EclipseSource Inc. and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+    EclipseSource - initial API and implementation\n
+################ end of copyright property ####################################
+###############################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+       - Content may be structured and packaged into modules to facilitate delivering,\n\
+         extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+         plug-in fragments ("Fragments"), and features ("Features").\n\
+       - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+         in a directory named "plugins".\n\
+       - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+         Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+         Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+         numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+       - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+         named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+       - The top-level (root) directory\n\
+       - Plug-in and Fragment directories\n\
+       - Inside Plug-ins and Fragments packaged as JARs\n\
+       - Sub-directories of the directory named "src" of certain Plug-ins\n\
+       - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+       - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+       - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+       - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+       - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+       - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+       - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+       1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+          the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+          extending or updating the functionality of an Eclipse-based product.\n\
+       2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+          Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+       3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+          govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+          Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+          with the Specification. Such Installable Software Agreement must inform the user of the\n\
+          terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+          the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+          indication of agreement by the user, the provisioning Technology will complete installation\n\
+          of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/feature.xml b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/feature.xml
new file mode 100644
index 0000000..af7bd48
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/feature.xml
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="org.eclipse.equinox.p2.rcp.feature"
+      label="%featureName"
+      version="1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd"
+      provider-name="%providerName"
+      image="eclipse_update_120.jpg"
+      
+      >
+
+   <description>
+      %description
+   </description>
+
+   <copyright>
+      %copyright
+   </copyright>
+
+   <license url="%licenseURL">
+      %license
+   </license>
+
+   <includes
+         id="org.eclipse.equinox.p2.core.feature"
+         version="1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.ui"
+         download-size="0"
+         install-size="0"
+         version="2.2.0.v20130119-010614"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.ui.sdk.scheduler"
+         download-size="0"
+         install-size="0"
+         version="1.1.0.v20110815-1744"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.updatechecker"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20110808-1657"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.security.ui"
+         download-size="0"
+         install-size="0"
+         version="1.1.100.v20120522-2049"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.ui.sdk"
+         download-size="0"
+         install-size="0"
+         version="1.0.200.v20120515-1650"
+         unpack="false"/>
+
+</feature>
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/license.html b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/license.html
@@ -0,0 +1,108 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Foundation Software User Agreement</title>
+</head>
+
+<body lang="EN-US">
+<h2>Eclipse Foundation Software User Agreement</h2>
+<p>February 1, 2011</p>
+
+<h3>Usage Of Content</h3>
+
+<p>THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+   (COLLECTIVELY &quot;CONTENT&quot;).  USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+   CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+   OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+   NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+   CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.</p>
+
+<h3>Applicable Licenses</h3>
+
+<p>Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+   (&quot;EPL&quot;).  A copy of the EPL is provided with this Content and is also available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+   For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+   repository (&quot;Repository&quot;) in software modules (&quot;Modules&quot;) and made available as downloadable archives (&quot;Downloads&quot;).</p>
+
+<ul>
+       <li>Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content.  Typical modules may include plug-ins (&quot;Plug-ins&quot;), plug-in fragments (&quot;Fragments&quot;), and features (&quot;Features&quot;).</li>
+       <li>Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java&trade; ARchive) in a directory named &quot;plugins&quot;.</li>
+       <li>A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.  Each Feature may be packaged as a sub-directory in a directory named &quot;features&quot;.  Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of the Plug-ins
+      and/or Fragments associated with that Feature.</li>
+       <li>Features may also include other Features (&quot;Included Features&quot;). Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of Included Features.</li>
+</ul>
+
+<p>The terms and conditions governing Plug-ins and Fragments should be contained in files named &quot;about.html&quot; (&quot;Abouts&quot;). The terms and conditions governing Features and
+Included Features should be contained in files named &quot;license.html&quot; (&quot;Feature Licenses&quot;).  Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:</p>
+
+<ul>
+       <li>The top-level (root) directory</li>
+       <li>Plug-in and Fragment directories</li>
+       <li>Inside Plug-ins and Fragments packaged as JARs</li>
+       <li>Sub-directories of the directory named &quot;src&quot; of certain Plug-ins</li>
+       <li>Feature directories</li>
+</ul>
+
+<p>Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (&quot;Feature Update License&quot;) during the
+installation process.  If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them.  Feature Update Licenses may be found in the &quot;license&quot; property of files named &quot;feature.properties&quot; found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.</p>
+
+<p>THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.  SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):</p>
+
+<ul>
+       <li>Eclipse Distribution License Version 1.0 (available at <a href="http://www.eclipse.org/licenses/edl-v10.html">http://www.eclipse.org/licenses/edl-v1.0.html</a>)</li>
+       <li>Common Public License Version 1.0 (available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>)</li>
+       <li>Apache Software License 1.1 (available at <a href="http://www.apache.org/licenses/LICENSE">http://www.apache.org/licenses/LICENSE</a>)</li>
+       <li>Apache Software License 2.0 (available at <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>)</li>
+       <li>Metro Link Public License 1.00 (available at <a href="http://www.opengroup.org/openmotif/supporters/metrolink/license.html">http://www.opengroup.org/openmotif/supporters/metrolink/license.html</a>)</li>
+       <li>Mozilla Public License Version 1.1 (available at <a href="http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html</a>)</li>
+</ul>
+
+<p>IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT.  If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.</p>
+
+
+<h3>Use of Provisioning Technology</h3>
+
+<p>The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+   Update Manager (&quot;Provisioning Technology&quot;) for the purpose of allowing users to install software, documentation, information and/or
+   other materials (collectively &quot;Installable Software&quot;). This capability is provided with the intent of allowing such users to
+   install, extend and update Eclipse-based products. Information about packaging Installable Software is available at <a
+       href="http://eclipse.org/equinox/p2/repository_packaging.html">http://eclipse.org/equinox/p2/repository_packaging.html</a>
+   (&quot;Specification&quot;).</p>
+
+<p>You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+   applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+   in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+   Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:</p>
+
+<ol>
+       <li>A series of actions may occur (&quot;Provisioning Process&quot;) in which a user may execute the Provisioning Technology
+       on a machine (&quot;Target Machine&quot;) with the intent of installing, extending or updating the functionality of an Eclipse-based
+       product.</li>
+       <li>During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+       accessed and copied to the Target Machine.</li>
+       <li>Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+       Software (&quot;Installable Software Agreement&quot;) and such Installable Software Agreement shall be accessed from the Target
+       Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+       the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+       indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.</li>
+</ol>
+
+<h3>Cryptography</h3>
+
+<p>Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+   another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+   possession, or use, and re-export of encryption software, to see if this is permitted.</p>
+
+<p><small>Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.</small></p>
+</body>
+</html>
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/META-INF/ECLIPSE_.RSA b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..2ced572
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/META-INF/ECLIPSE_.SF b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..6f3068e
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/META-INF/ECLIPSE_.SF
@@ -0,0 +1,23 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: RxWVwNpQQ+O1xMnMD8QTEHamxpc=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: 4gIfTP5y3EzwI5ecyebQLugBMgo=

+

+Name: epl-v10.html

+SHA1-Digest: /iY8aEvT0IMpNnSjB0FpTUhvUGc=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: RyXo3knk5T635eCpQEPXyFBrCyA=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=

+

+Name: license.html

+SHA1-Digest: Rp9AnRyeUIxNWe10fjaMDkQB8rU=

+

+Name: feature.properties

+SHA1-Digest: PArBWP+cmsu1doF4teQmSSe/vmQ=

+

+Name: feature.xml

+SHA1-Digest: 8HPHnIzv0eNj8sohw4o168tMRSM=

+

diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/META-INF/MANIFEST.MF b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..c65fa76
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/META-INF/MANIFEST.MF
@@ -0,0 +1,21 @@
+Manifest-Version: 1.0

+Created-By: 1.6.0 (IBM Corporation)

+

+Name: epl-v10.html

+SHA1-Digest: jYDaDJLBJpthCwPMgGFVYASJjIU=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: xstAqMgs/a5AsQXQZSdDQ79veOA=

+

+Name: license.html

+SHA1-Digest: /vLZjlHkZSXMSfPrWwNqOUDqqbM=

+

+Name: feature.properties

+SHA1-Digest: PUqzpThlpQxcAdDN2y6aKcfGM/0=

+

+Name: feature.xml

+SHA1-Digest: qsLpaKW0Ofomu/RhfXLeltvyi5c=

+

diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/META-INF/eclipse.inf b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/eclipse_update_120.jpg b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/eclipse_update_120.jpg
new file mode 100644
index 0000000..bfdf708
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/eclipse_update_120.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/epl-v10.html b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/epl-v10.html
new file mode 100644
index 0000000..fd39122
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/epl-v10.html
@@ -0,0 +1,261 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Public License - Version 1.0</title>
+<style type="text/css">
+  body {
+    size: 8.5in 11.0in;
+    margin: 0.25in 0.5in 0.25in 0.5in;
+    tab-interval: 0.5in;
+    }
+  p {  	
+    margin-left: auto;
+    margin-top:  0.5em;
+    margin-bottom: 0.5em;
+    }
+  p.list {
+  	margin-left: 0.5in;
+    margin-top:  0.05em;
+    margin-bottom: 0.05em;
+    }
+  </style>
+
+</head>
+
+<body lang="EN-US">
+
+<h2>Eclipse Public License - v 1.0</h2>
+
+<p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE (&quot;AGREEMENT&quot;). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.</p>
+
+<p><b>1. DEFINITIONS</b></p>
+
+<p>&quot;Contribution&quot; means:</p>
+
+<p class="list">a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and</p>
+<p class="list">b) in the case of each subsequent Contributor:</p>
+<p class="list">i) changes to the Program, and</p>
+<p class="list">ii) additions to the Program;</p>
+<p class="list">where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.</p>
+
+<p>&quot;Contributor&quot; means any person or entity that distributes
+the Program.</p>
+
+<p>&quot;Licensed Patents&quot; mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.</p>
+
+<p>&quot;Program&quot; means the Contributions distributed in accordance
+with this Agreement.</p>
+
+<p>&quot;Recipient&quot; means anyone who receives the Program under
+this Agreement, including all Contributors.</p>
+
+<p><b>2. GRANT OF RIGHTS</b></p>
+
+<p class="list">a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.</p>
+
+<p class="list">b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.</p>
+
+<p class="list">c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.</p>
+
+<p class="list">d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.</p>
+
+<p><b>3. REQUIREMENTS</b></p>
+
+<p>A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:</p>
+
+<p class="list">a) it complies with the terms and conditions of this
+Agreement; and</p>
+
+<p class="list">b) its license agreement:</p>
+
+<p class="list">i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;</p>
+
+<p class="list">ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;</p>
+
+<p class="list">iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and</p>
+
+<p class="list">iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.</p>
+
+<p>When the Program is made available in source code form:</p>
+
+<p class="list">a) it must be made available under this Agreement; and</p>
+
+<p class="list">b) a copy of this Agreement must be included with each
+copy of the Program.</p>
+
+<p>Contributors may not remove or alter any copyright notices contained
+within the Program.</p>
+
+<p>Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.</p>
+
+<p><b>4. COMMERCIAL DISTRIBUTION</b></p>
+
+<p>Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+(&quot;Commercial Contributor&quot;) hereby agrees to defend and
+indemnify every other Contributor (&quot;Indemnified Contributor&quot;)
+against any losses, damages and costs (collectively &quot;Losses&quot;)
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.</p>
+
+<p>For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.</p>
+
+<p><b>5. NO WARRANTY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.</p>
+
+<p><b>6. DISCLAIMER OF LIABILITY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), 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 OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.</p>
+
+<p><b>7. GENERAL</b></p>
+
+<p>If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.</p>
+
+<p>If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.</p>
+
+<p>All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.</p>
+
+<p>Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.</p>
+
+<p>This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.</p>
+
+</body>
+
+</html>
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/feature.properties b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/feature.properties
new file mode 100644
index 0000000..e346b87
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/feature.properties
@@ -0,0 +1,191 @@
+###############################################################################
+# Copyright (c) 2011 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# "featureName" property - name of the feature
+featureName=Equinox p2 Provisioning for IDEs.
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org - Equinox
+
+# "updateSiteName" property - label for the update site
+updateSiteName=The Eclipse Project Updates
+
+# "description" property - description of the feature
+description=Eclipse p2 Provisioning Platform for use in IDE related scenarios
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2008, 2010 IBM Corporation and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+    IBM Corporation - initial API and implementation\n
+################ end of copyright property ###################################################################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+       - Content may be structured and packaged into modules to facilitate delivering,\n\
+         extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+         plug-in fragments ("Fragments"), and features ("Features").\n\
+       - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+         in a directory named "plugins".\n\
+       - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+         Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+         Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+         numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+       - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+         named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+       - The top-level (root) directory\n\
+       - Plug-in and Fragment directories\n\
+       - Inside Plug-ins and Fragments packaged as JARs\n\
+       - Sub-directories of the directory named "src" of certain Plug-ins\n\
+       - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+       - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+       - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+       - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+       - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+       - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+       - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+       1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+          the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+          extending or updating the functionality of an Eclipse-based product.\n\
+       2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+          Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+       3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+          govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+          Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+          with the Specification. Such Installable Software Agreement must inform the user of the\n\
+          terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+          the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+          indication of agreement by the user, the provisioning Technology will complete installation\n\
+          of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/feature.xml b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/feature.xml
new file mode 100644
index 0000000..cde099c
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/feature.xml
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="org.eclipse.equinox.p2.user.ui"
+      label="%featureName"
+      version="2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H"
+      provider-name="%providerName"
+      image="eclipse_update_120.jpg"
+      
+      >
+
+   <description>
+      %description
+   </description>
+
+   <copyright>
+      %copyright
+   </copyright>
+
+   <license url="%licenseURL">
+      %license
+   </license>
+
+   <includes
+         id="org.eclipse.equinox.p2.core.feature"
+         version="1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0"/>
+
+   <includes
+         id="org.eclipse.equinox.p2.extras.feature"
+         version="1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w"/>
+
+   <includes
+         id="org.eclipse.equinox.p2.rcp.feature"
+         version="1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.updatesite"
+         download-size="0"
+         install-size="0"
+         version="1.0.400.v20120412-1615"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.p2.ui.importexport"
+         download-size="0"
+         install-size="0"
+         version="1.0.1.v20120913-155635"
+         unpack="false"/>
+
+</feature>
diff --git a/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/license.html b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/license.html
@@ -0,0 +1,108 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Foundation Software User Agreement</title>
+</head>
+
+<body lang="EN-US">
+<h2>Eclipse Foundation Software User Agreement</h2>
+<p>February 1, 2011</p>
+
+<h3>Usage Of Content</h3>
+
+<p>THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+   (COLLECTIVELY &quot;CONTENT&quot;).  USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+   CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+   OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+   NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+   CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.</p>
+
+<h3>Applicable Licenses</h3>
+
+<p>Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+   (&quot;EPL&quot;).  A copy of the EPL is provided with this Content and is also available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+   For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+   repository (&quot;Repository&quot;) in software modules (&quot;Modules&quot;) and made available as downloadable archives (&quot;Downloads&quot;).</p>
+
+<ul>
+       <li>Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content.  Typical modules may include plug-ins (&quot;Plug-ins&quot;), plug-in fragments (&quot;Fragments&quot;), and features (&quot;Features&quot;).</li>
+       <li>Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java&trade; ARchive) in a directory named &quot;plugins&quot;.</li>
+       <li>A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.  Each Feature may be packaged as a sub-directory in a directory named &quot;features&quot;.  Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of the Plug-ins
+      and/or Fragments associated with that Feature.</li>
+       <li>Features may also include other Features (&quot;Included Features&quot;). Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of Included Features.</li>
+</ul>
+
+<p>The terms and conditions governing Plug-ins and Fragments should be contained in files named &quot;about.html&quot; (&quot;Abouts&quot;). The terms and conditions governing Features and
+Included Features should be contained in files named &quot;license.html&quot; (&quot;Feature Licenses&quot;).  Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:</p>
+
+<ul>
+       <li>The top-level (root) directory</li>
+       <li>Plug-in and Fragment directories</li>
+       <li>Inside Plug-ins and Fragments packaged as JARs</li>
+       <li>Sub-directories of the directory named &quot;src&quot; of certain Plug-ins</li>
+       <li>Feature directories</li>
+</ul>
+
+<p>Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (&quot;Feature Update License&quot;) during the
+installation process.  If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them.  Feature Update Licenses may be found in the &quot;license&quot; property of files named &quot;feature.properties&quot; found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.</p>
+
+<p>THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.  SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):</p>
+
+<ul>
+       <li>Eclipse Distribution License Version 1.0 (available at <a href="http://www.eclipse.org/licenses/edl-v10.html">http://www.eclipse.org/licenses/edl-v1.0.html</a>)</li>
+       <li>Common Public License Version 1.0 (available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>)</li>
+       <li>Apache Software License 1.1 (available at <a href="http://www.apache.org/licenses/LICENSE">http://www.apache.org/licenses/LICENSE</a>)</li>
+       <li>Apache Software License 2.0 (available at <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>)</li>
+       <li>Metro Link Public License 1.00 (available at <a href="http://www.opengroup.org/openmotif/supporters/metrolink/license.html">http://www.opengroup.org/openmotif/supporters/metrolink/license.html</a>)</li>
+       <li>Mozilla Public License Version 1.1 (available at <a href="http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html</a>)</li>
+</ul>
+
+<p>IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT.  If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.</p>
+
+
+<h3>Use of Provisioning Technology</h3>
+
+<p>The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+   Update Manager (&quot;Provisioning Technology&quot;) for the purpose of allowing users to install software, documentation, information and/or
+   other materials (collectively &quot;Installable Software&quot;). This capability is provided with the intent of allowing such users to
+   install, extend and update Eclipse-based products. Information about packaging Installable Software is available at <a
+       href="http://eclipse.org/equinox/p2/repository_packaging.html">http://eclipse.org/equinox/p2/repository_packaging.html</a>
+   (&quot;Specification&quot;).</p>
+
+<p>You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+   applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+   in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+   Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:</p>
+
+<ol>
+       <li>A series of actions may occur (&quot;Provisioning Process&quot;) in which a user may execute the Provisioning Technology
+       on a machine (&quot;Target Machine&quot;) with the intent of installing, extending or updating the functionality of an Eclipse-based
+       product.</li>
+       <li>During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+       accessed and copied to the Target Machine.</li>
+       <li>Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+       Software (&quot;Installable Software Agreement&quot;) and such Installable Software Agreement shall be accessed from the Target
+       Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+       the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+       indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.</li>
+</ol>
+
+<h3>Cryptography</h3>
+
+<p>Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+   another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+   possession, or use, and re-export of encryption software, to see if this is permitted.</p>
+
+<p><small>Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.</small></p>
+</body>
+</html>
diff --git a/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/META-INF/ECLIPSE_.RSA b/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..a5b7694
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/META-INF/ECLIPSE_.SF b/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..9cd2b67
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/META-INF/ECLIPSE_.SF
@@ -0,0 +1,23 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: LvkHbF4kvXfiP9NXT/dRt0wBBvk=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: 4gIfTP5y3EzwI5ecyebQLugBMgo=

+

+Name: epl-v10.html

+SHA1-Digest: /iY8aEvT0IMpNnSjB0FpTUhvUGc=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: RyXo3knk5T635eCpQEPXyFBrCyA=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=

+

+Name: license.html

+SHA1-Digest: Rp9AnRyeUIxNWe10fjaMDkQB8rU=

+

+Name: feature.properties

+SHA1-Digest: WNCFbqw3rL0uKch+jHCBlFMqhZk=

+

+Name: feature.xml

+SHA1-Digest: fQXQ+xLOs5rBUbSgO+RVjsRp4mU=

+

diff --git a/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/META-INF/MANIFEST.MF b/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..e7e8cb9
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/META-INF/MANIFEST.MF
@@ -0,0 +1,21 @@
+Manifest-Version: 1.0

+Created-By: 1.6.0 (IBM Corporation)

+

+Name: epl-v10.html

+SHA1-Digest: jYDaDJLBJpthCwPMgGFVYASJjIU=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: xstAqMgs/a5AsQXQZSdDQ79veOA=

+

+Name: license.html

+SHA1-Digest: /vLZjlHkZSXMSfPrWwNqOUDqqbM=

+

+Name: feature.properties

+SHA1-Digest: BjNA+6yN4W23dRE5VOvfhiPA9b8=

+

+Name: feature.xml

+SHA1-Digest: mdi2fVPqzvPwCltXBHMkSKejuDw=

+

diff --git a/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/META-INF/eclipse.inf b/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/eclipse_update_120.jpg b/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/eclipse_update_120.jpg
new file mode 100644
index 0000000..bfdf708
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/eclipse_update_120.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/epl-v10.html b/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/epl-v10.html
new file mode 100644
index 0000000..fd39122
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/epl-v10.html
@@ -0,0 +1,261 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Public License - Version 1.0</title>
+<style type="text/css">
+  body {
+    size: 8.5in 11.0in;
+    margin: 0.25in 0.5in 0.25in 0.5in;
+    tab-interval: 0.5in;
+    }
+  p {  	
+    margin-left: auto;
+    margin-top:  0.5em;
+    margin-bottom: 0.5em;
+    }
+  p.list {
+  	margin-left: 0.5in;
+    margin-top:  0.05em;
+    margin-bottom: 0.05em;
+    }
+  </style>
+
+</head>
+
+<body lang="EN-US">
+
+<h2>Eclipse Public License - v 1.0</h2>
+
+<p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE (&quot;AGREEMENT&quot;). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.</p>
+
+<p><b>1. DEFINITIONS</b></p>
+
+<p>&quot;Contribution&quot; means:</p>
+
+<p class="list">a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and</p>
+<p class="list">b) in the case of each subsequent Contributor:</p>
+<p class="list">i) changes to the Program, and</p>
+<p class="list">ii) additions to the Program;</p>
+<p class="list">where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.</p>
+
+<p>&quot;Contributor&quot; means any person or entity that distributes
+the Program.</p>
+
+<p>&quot;Licensed Patents&quot; mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.</p>
+
+<p>&quot;Program&quot; means the Contributions distributed in accordance
+with this Agreement.</p>
+
+<p>&quot;Recipient&quot; means anyone who receives the Program under
+this Agreement, including all Contributors.</p>
+
+<p><b>2. GRANT OF RIGHTS</b></p>
+
+<p class="list">a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.</p>
+
+<p class="list">b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.</p>
+
+<p class="list">c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.</p>
+
+<p class="list">d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.</p>
+
+<p><b>3. REQUIREMENTS</b></p>
+
+<p>A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:</p>
+
+<p class="list">a) it complies with the terms and conditions of this
+Agreement; and</p>
+
+<p class="list">b) its license agreement:</p>
+
+<p class="list">i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;</p>
+
+<p class="list">ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;</p>
+
+<p class="list">iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and</p>
+
+<p class="list">iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.</p>
+
+<p>When the Program is made available in source code form:</p>
+
+<p class="list">a) it must be made available under this Agreement; and</p>
+
+<p class="list">b) a copy of this Agreement must be included with each
+copy of the Program.</p>
+
+<p>Contributors may not remove or alter any copyright notices contained
+within the Program.</p>
+
+<p>Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.</p>
+
+<p><b>4. COMMERCIAL DISTRIBUTION</b></p>
+
+<p>Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+(&quot;Commercial Contributor&quot;) hereby agrees to defend and
+indemnify every other Contributor (&quot;Indemnified Contributor&quot;)
+against any losses, damages and costs (collectively &quot;Losses&quot;)
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.</p>
+
+<p>For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.</p>
+
+<p><b>5. NO WARRANTY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.</p>
+
+<p><b>6. DISCLAIMER OF LIABILITY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), 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 OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.</p>
+
+<p><b>7. GENERAL</b></p>
+
+<p>If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.</p>
+
+<p>If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.</p>
+
+<p>All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.</p>
+
+<p>Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.</p>
+
+<p>This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.</p>
+
+</body>
+
+</html>
diff --git a/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/feature.properties b/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/feature.properties
new file mode 100644
index 0000000..b9291ae
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/feature.properties
@@ -0,0 +1,194 @@
+###############################################################################
+# Copyright (c) 2008, 2012 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Eclipse Help System
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org
+
+# "description" property - description of the feature
+description=Eclipse help system.
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2008, 2012 IBM Corporation and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+    IBM Corporation - initial API and implementation\n
+################ end of copyright property ###################################################################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+       - Content may be structured and packaged into modules to facilitate delivering,\n\
+         extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+         plug-in fragments ("Fragments"), and features ("Features").\n\
+       - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+         in a directory named "plugins".\n\
+       - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+         Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+         Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+         numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+       - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+         named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+       - The top-level (root) directory\n\
+       - Plug-in and Fragment directories\n\
+       - Inside Plug-ins and Fragments packaged as JARs\n\
+       - Sub-directories of the directory named "src" of certain Plug-ins\n\
+       - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+       - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+       - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+       - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+       - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+       - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+       - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+       1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+          the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+          extending or updating the functionality of an Eclipse-based product.\n\
+       2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+          Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+       3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+          govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+          Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+          with the Specification. Such Installable Software Agreement must inform the user of the\n\
+          terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+          the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+          indication of agreement by the user, the provisioning Technology will complete installation\n\
+          of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/feature.xml b/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/feature.xml
new file mode 100644
index 0000000..e5d7ccd
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/feature.xml
@@ -0,0 +1,192 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="org.eclipse.help"
+      label="%featureName"
+      version="1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4"
+      provider-name="%providerName"
+      plugin="org.eclipse.help.base"
+      
+      >    
+      
+   <description>
+      %description
+   </description>
+
+   <copyright>
+      %copyright
+   </copyright>
+
+   <license url="%licenseURL">
+      %license
+   </license>
+
+   <plugin
+         id="javax.el"
+         download-size="0"
+         install-size="0"
+         version="2.2.0.v201108011116"
+         unpack="false"/>
+   
+   <plugin
+         id="javax.servlet"
+         download-size="0"
+         install-size="0"
+         version="3.0.0.v201112011016"
+         unpack="false"/>
+
+   <plugin
+         id="javax.servlet.jsp"
+         download-size="0"
+         install-size="0"
+         version="2.2.0.v201112011158"
+         unpack="false"/>
+  
+   <plugin
+         id="com.sun.el"
+         download-size="0"
+         install-size="0"
+         version="2.2.0.v201108011116"
+         unpack="false"/>
+
+   <plugin
+         id="org.apache.commons.logging"
+         download-size="0"
+         install-size="0"
+         version="1.0.4.v201101211617"
+         unpack="false"/>
+
+   <plugin
+         id="org.apache.jasper.glassfish"
+         download-size="0"
+         install-size="0"
+         version="2.2.2.v201205150955"
+         unpack="false"/>
+
+   <plugin
+         id="org.apache.lucene"
+         download-size="0"
+         install-size="0"
+         version="2.9.1.v201101211721"
+         unpack="false"/>
+
+   <plugin
+         id="org.apache.lucene.analysis"
+         download-size="0"
+         install-size="0"
+         version="2.9.1.v201101211721"
+         unpack="false"/>
+         
+    <plugin
+         id="org.apache.lucene.core"
+         download-size="0"
+         install-size="0"
+         version="2.9.1.v201101211721"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.http.jetty"
+         download-size="0"
+         install-size="0"
+         version="3.0.1.v20121109-203239"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.http.registry"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120912-130548"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.http.servlet"
+         download-size="0"
+         install-size="0"
+         version="1.1.300.v20120912-130548"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.jsp.jasper"
+         download-size="0"
+         install-size="0"
+         version="1.0.400.v20120912-130548"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.jsp.jasper.registry"
+         download-size="0"
+         install-size="0"
+         version="1.0.300.v20120912-130548"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.help.base"
+         download-size="0"
+         install-size="0"
+         version="3.6.101.v201302041200"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.help.ui"
+         download-size="0"
+         install-size="0"
+         version="3.5.201.v20130108-092756"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.help.webapp"
+         download-size="0"
+         install-size="0"
+         version="3.6.101.v20130116-182509"
+         unpack="false"/>
+   
+         
+   <plugin
+         id="org.eclipse.jetty.continuation"
+         download-size="0"
+         install-size="0"
+         version="8.1.3.v20120522"
+         unpack="false"/>   
+    
+     <plugin
+         id="org.eclipse.jetty.http"
+         download-size="0"
+         install-size="0"
+         version="8.1.3.v20120522"
+         unpack="false"/>   
+    
+     <plugin
+         id="org.eclipse.jetty.io"
+         download-size="0"
+         install-size="0"
+         version="8.1.3.v20120522"
+         unpack="false"/>
+    
+    <plugin
+         id="org.eclipse.jetty.security"
+         download-size="0"
+         install-size="0"
+         version="8.1.3.v20120522"
+         unpack="false"/>
+
+    <plugin
+         id="org.eclipse.jetty.server"
+         download-size="0"
+         install-size="0"
+         version="8.1.3.v20120522"
+         unpack="false"/>
+
+<plugin
+         id="org.eclipse.jetty.servlet"
+         download-size="0"
+         install-size="0"
+         version="8.1.3.v20120522"
+         unpack="false"/>
+
+<plugin
+         id="org.eclipse.jetty.util"
+         download-size="0"
+         install-size="0"
+         version="8.1.3.v20120522"
+         unpack="false"/>
+  
+</feature>
diff --git a/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/license.html b/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/license.html
@@ -0,0 +1,108 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Foundation Software User Agreement</title>
+</head>
+
+<body lang="EN-US">
+<h2>Eclipse Foundation Software User Agreement</h2>
+<p>February 1, 2011</p>
+
+<h3>Usage Of Content</h3>
+
+<p>THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+   (COLLECTIVELY &quot;CONTENT&quot;).  USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+   CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+   OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+   NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+   CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.</p>
+
+<h3>Applicable Licenses</h3>
+
+<p>Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+   (&quot;EPL&quot;).  A copy of the EPL is provided with this Content and is also available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+   For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+   repository (&quot;Repository&quot;) in software modules (&quot;Modules&quot;) and made available as downloadable archives (&quot;Downloads&quot;).</p>
+
+<ul>
+       <li>Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content.  Typical modules may include plug-ins (&quot;Plug-ins&quot;), plug-in fragments (&quot;Fragments&quot;), and features (&quot;Features&quot;).</li>
+       <li>Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java&trade; ARchive) in a directory named &quot;plugins&quot;.</li>
+       <li>A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.  Each Feature may be packaged as a sub-directory in a directory named &quot;features&quot;.  Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of the Plug-ins
+      and/or Fragments associated with that Feature.</li>
+       <li>Features may also include other Features (&quot;Included Features&quot;). Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of Included Features.</li>
+</ul>
+
+<p>The terms and conditions governing Plug-ins and Fragments should be contained in files named &quot;about.html&quot; (&quot;Abouts&quot;). The terms and conditions governing Features and
+Included Features should be contained in files named &quot;license.html&quot; (&quot;Feature Licenses&quot;).  Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:</p>
+
+<ul>
+       <li>The top-level (root) directory</li>
+       <li>Plug-in and Fragment directories</li>
+       <li>Inside Plug-ins and Fragments packaged as JARs</li>
+       <li>Sub-directories of the directory named &quot;src&quot; of certain Plug-ins</li>
+       <li>Feature directories</li>
+</ul>
+
+<p>Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (&quot;Feature Update License&quot;) during the
+installation process.  If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them.  Feature Update Licenses may be found in the &quot;license&quot; property of files named &quot;feature.properties&quot; found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.</p>
+
+<p>THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.  SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):</p>
+
+<ul>
+       <li>Eclipse Distribution License Version 1.0 (available at <a href="http://www.eclipse.org/licenses/edl-v10.html">http://www.eclipse.org/licenses/edl-v1.0.html</a>)</li>
+       <li>Common Public License Version 1.0 (available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>)</li>
+       <li>Apache Software License 1.1 (available at <a href="http://www.apache.org/licenses/LICENSE">http://www.apache.org/licenses/LICENSE</a>)</li>
+       <li>Apache Software License 2.0 (available at <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>)</li>
+       <li>Metro Link Public License 1.00 (available at <a href="http://www.opengroup.org/openmotif/supporters/metrolink/license.html">http://www.opengroup.org/openmotif/supporters/metrolink/license.html</a>)</li>
+       <li>Mozilla Public License Version 1.1 (available at <a href="http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html</a>)</li>
+</ul>
+
+<p>IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT.  If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.</p>
+
+
+<h3>Use of Provisioning Technology</h3>
+
+<p>The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+   Update Manager (&quot;Provisioning Technology&quot;) for the purpose of allowing users to install software, documentation, information and/or
+   other materials (collectively &quot;Installable Software&quot;). This capability is provided with the intent of allowing such users to
+   install, extend and update Eclipse-based products. Information about packaging Installable Software is available at <a
+       href="http://eclipse.org/equinox/p2/repository_packaging.html">http://eclipse.org/equinox/p2/repository_packaging.html</a>
+   (&quot;Specification&quot;).</p>
+
+<p>You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+   applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+   in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+   Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:</p>
+
+<ol>
+       <li>A series of actions may occur (&quot;Provisioning Process&quot;) in which a user may execute the Provisioning Technology
+       on a machine (&quot;Target Machine&quot;) with the intent of installing, extending or updating the functionality of an Eclipse-based
+       product.</li>
+       <li>During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+       accessed and copied to the Target Machine.</li>
+       <li>Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+       Software (&quot;Installable Software Agreement&quot;) and such Installable Software Agreement shall be accessed from the Target
+       Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+       the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+       indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.</li>
+</ol>
+
+<h3>Cryptography</h3>
+
+<p>Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+   another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+   possession, or use, and re-export of encryption software, to see if this is permitted.</p>
+
+<p><small>Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.</small></p>
+</body>
+</html>
diff --git a/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/META-INF/ECLIPSE_.RSA b/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..e548b07
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/META-INF/ECLIPSE_.SF b/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..c1e87cc
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/META-INF/ECLIPSE_.SF
@@ -0,0 +1,23 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: swWjsbx6qviZmoTysbyc/o9JVzI=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: 4gIfTP5y3EzwI5ecyebQLugBMgo=

+

+Name: epl-v10.html

+SHA1-Digest: /iY8aEvT0IMpNnSjB0FpTUhvUGc=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: RyXo3knk5T635eCpQEPXyFBrCyA=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=

+

+Name: license.html

+SHA1-Digest: Rp9AnRyeUIxNWe10fjaMDkQB8rU=

+

+Name: feature.properties

+SHA1-Digest: rYGVpR0fhWnopqo2z02srk2sq28=

+

+Name: feature.xml

+SHA1-Digest: u5bPuZfWbpijiRXslYqubcxbmsw=

+

diff --git a/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/META-INF/MANIFEST.MF b/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..1f6dbe2
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/META-INF/MANIFEST.MF
@@ -0,0 +1,21 @@
+Manifest-Version: 1.0

+Created-By: 1.6.0 (IBM Corporation)

+

+Name: epl-v10.html

+SHA1-Digest: jYDaDJLBJpthCwPMgGFVYASJjIU=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: xstAqMgs/a5AsQXQZSdDQ79veOA=

+

+Name: license.html

+SHA1-Digest: /vLZjlHkZSXMSfPrWwNqOUDqqbM=

+

+Name: feature.properties

+SHA1-Digest: x9z1kZ42kWFfe6SSSwlhOkf4kQo=

+

+Name: feature.xml

+SHA1-Digest: JeM7qjxE4A9AJNTtJ1D6GcnWnK8=

+

diff --git a/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/META-INF/eclipse.inf b/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/eclipse_update_120.jpg b/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/eclipse_update_120.jpg
new file mode 100644
index 0000000..bfdf708
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/eclipse_update_120.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/epl-v10.html b/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/epl-v10.html
new file mode 100644
index 0000000..fd39122
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/epl-v10.html
@@ -0,0 +1,261 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Public License - Version 1.0</title>
+<style type="text/css">
+  body {
+    size: 8.5in 11.0in;
+    margin: 0.25in 0.5in 0.25in 0.5in;
+    tab-interval: 0.5in;
+    }
+  p {  	
+    margin-left: auto;
+    margin-top:  0.5em;
+    margin-bottom: 0.5em;
+    }
+  p.list {
+  	margin-left: 0.5in;
+    margin-top:  0.05em;
+    margin-bottom: 0.05em;
+    }
+  </style>
+
+</head>
+
+<body lang="EN-US">
+
+<h2>Eclipse Public License - v 1.0</h2>
+
+<p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE (&quot;AGREEMENT&quot;). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.</p>
+
+<p><b>1. DEFINITIONS</b></p>
+
+<p>&quot;Contribution&quot; means:</p>
+
+<p class="list">a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and</p>
+<p class="list">b) in the case of each subsequent Contributor:</p>
+<p class="list">i) changes to the Program, and</p>
+<p class="list">ii) additions to the Program;</p>
+<p class="list">where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.</p>
+
+<p>&quot;Contributor&quot; means any person or entity that distributes
+the Program.</p>
+
+<p>&quot;Licensed Patents&quot; mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.</p>
+
+<p>&quot;Program&quot; means the Contributions distributed in accordance
+with this Agreement.</p>
+
+<p>&quot;Recipient&quot; means anyone who receives the Program under
+this Agreement, including all Contributors.</p>
+
+<p><b>2. GRANT OF RIGHTS</b></p>
+
+<p class="list">a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.</p>
+
+<p class="list">b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.</p>
+
+<p class="list">c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.</p>
+
+<p class="list">d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.</p>
+
+<p><b>3. REQUIREMENTS</b></p>
+
+<p>A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:</p>
+
+<p class="list">a) it complies with the terms and conditions of this
+Agreement; and</p>
+
+<p class="list">b) its license agreement:</p>
+
+<p class="list">i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;</p>
+
+<p class="list">ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;</p>
+
+<p class="list">iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and</p>
+
+<p class="list">iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.</p>
+
+<p>When the Program is made available in source code form:</p>
+
+<p class="list">a) it must be made available under this Agreement; and</p>
+
+<p class="list">b) a copy of this Agreement must be included with each
+copy of the Program.</p>
+
+<p>Contributors may not remove or alter any copyright notices contained
+within the Program.</p>
+
+<p>Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.</p>
+
+<p><b>4. COMMERCIAL DISTRIBUTION</b></p>
+
+<p>Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+(&quot;Commercial Contributor&quot;) hereby agrees to defend and
+indemnify every other Contributor (&quot;Indemnified Contributor&quot;)
+against any losses, damages and costs (collectively &quot;Losses&quot;)
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.</p>
+
+<p>For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.</p>
+
+<p><b>5. NO WARRANTY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.</p>
+
+<p><b>6. DISCLAIMER OF LIABILITY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), 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 OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.</p>
+
+<p><b>7. GENERAL</b></p>
+
+<p>If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.</p>
+
+<p>If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.</p>
+
+<p>All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.</p>
+
+<p>Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.</p>
+
+<p>This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.</p>
+
+</body>
+
+</html>
diff --git a/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/feature.properties b/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/feature.properties
new file mode 100644
index 0000000..eb50333
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/feature.properties
@@ -0,0 +1,191 @@
+###############################################################################
+# Copyright (c) 2000, 2011 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Eclipse Platform
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org
+
+# "description" property - description of the feature
+description=Common OS-independent base of the Eclipse platform. (Binary runtime and user documentation.)
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2000, 2011 IBM Corporation and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+################ end of copyright property ###################################################################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+       - Content may be structured and packaged into modules to facilitate delivering,\n\
+         extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+         plug-in fragments ("Fragments"), and features ("Features").\n\
+       - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+         in a directory named "plugins".\n\
+       - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+         Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+         Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+         numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+       - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+         named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+       - The top-level (root) directory\n\
+       - Plug-in and Fragment directories\n\
+       - Inside Plug-ins and Fragments packaged as JARs\n\
+       - Sub-directories of the directory named "src" of certain Plug-ins\n\
+       - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+       - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+       - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+       - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+       - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+       - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+       - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+       1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+          the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+          extending or updating the functionality of an Eclipse-based product.\n\
+       2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+          Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+       3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+          govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+          Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+          with the Specification. Such Installable Software Agreement must inform the user of the\n\
+          terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+          the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+          indication of agreement by the user, the provisioning Technology will complete installation\n\
+          of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/feature.xml b/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/feature.xml
new file mode 100644
index 0000000..d6fc539
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/feature.xml
@@ -0,0 +1,581 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="org.eclipse.platform"
+      label="%featureName"
+      version="4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7"
+      provider-name="%providerName"
+      image="eclipse_update_120.jpg"
+      
+      >
+
+   <description>
+      %description
+   </description>
+
+   <copyright>
+      %copyright
+   </copyright>
+
+   <license url="%licenseURL">
+      %license
+   </license>
+
+   <includes
+         id="org.eclipse.rcp"
+         version="4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h"/>
+
+   <includes
+         id="org.eclipse.equinox.p2.user.ui"
+         version="2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H"
+         optional="true"/>
+
+   <includes
+         id="org.eclipse.help"
+         version="1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4"/>
+
+   <plugin
+         id="org.apache.ant"
+         download-size="0"
+         install-size="0"
+         version="1.8.3.v201301120609"/>
+
+   <plugin
+         id="org.eclipse.ant.core"
+         download-size="0"
+         install-size="0"
+         version="3.2.401.v20121204-162022"
+         unpack="false"/>
+
+   <plugin
+         id="com.jcraft.jsch"
+         download-size="0"
+         install-size="0"
+         version="0.1.46.v201205102330"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.compare.core"
+         download-size="0"
+         install-size="0"
+         version="3.5.200.v20120522-1148"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.compare"
+         download-size="0"
+         install-size="0"
+         version="3.5.301.v20130125-135424"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.compare.win32"
+         os="win32"
+         download-size="0"
+         install-size="0"
+         version="1.0.200.v20120914-154749"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.filebuffers"
+         download-size="0"
+         install-size="0"
+         version="3.5.200.v20120523-1310"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.filesystem"
+         download-size="0"
+         install-size="0"
+         version="1.3.200.v20130115-145044"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.net"
+         download-size="0"
+         install-size="0"
+         version="1.2.200.v20120914-093638"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.net.win32.x86"
+         os="win32"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="1.0.100.v20120522-1148"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.net.linux.x86_64"
+         os="linux"
+         arch="x86_64"
+         download-size="0"
+         install-size="0"
+         version="1.1.0.v20120522-1148"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.net.win32.x86_64"
+         os="win32"
+         arch="x86_64"
+         download-size="0"
+         install-size="0"
+         version="1.0.100.v20120522-1148"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.net.linux.x86"
+         os="linux"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="1.1.200.v20120522-1148"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.resources"
+         download-size="0"
+         install-size="0"
+         version="3.8.1.v20121114-124432"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.runtime.compatibility"
+         download-size="0"
+         install-size="0"
+         version="3.2.200.v20120521-2346"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.runtime.compatibility.registry"
+         download-size="0"
+         install-size="0"
+         version="3.5.101.v20130108-163257"
+         fragment="true"/>
+
+   <plugin
+         id="org.eclipse.osgi.util"
+         download-size="0"
+         install-size="0"
+         version="3.2.300.v20120913-144807"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.debug.core"
+         download-size="0"
+         install-size="0"
+         version="3.7.100.v20120521-2012"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.debug.ui"
+         download-size="0"
+         install-size="0"
+         version="3.8.2.v20130130-171415"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.event"
+         download-size="0"
+         install-size="0"
+         version="1.2.200.v20120522-2049"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ltk.core.refactoring"
+         download-size="0"
+         install-size="0"
+         version="3.6.0.v20120523-1543"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ltk.ui.refactoring"
+         download-size="0"
+         install-size="0"
+         version="3.7.0.v20120523-1543"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.platform"
+         download-size="0"
+         install-size="0"
+         version="4.2.2.v201302041200"/>
+
+   <plugin
+         id="org.eclipse.platform.doc.user"
+         download-size="0"
+         install-size="0"
+         version="4.2.2.v20130121-200410"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.search"
+         download-size="0"
+         install-size="0"
+         version="3.8.0.v20120523-1540"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.team.core"
+         download-size="0"
+         install-size="0"
+         version="3.6.100.v20120524-0627"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.team.ui"
+         download-size="0"
+         install-size="0"
+         version="3.6.201.v20130125-135424"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.text"
+         download-size="0"
+         install-size="0"
+         version="3.5.200.v20120523-1310"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.jface.text"
+         download-size="0"
+         install-size="0"
+         version="3.8.2.v20121126-164145"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.jsch.core"
+         download-size="0"
+         install-size="0"
+         version="1.1.400.v20120522-1148"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.jsch.ui"
+         download-size="0"
+         install-size="0"
+         version="1.1.400.v20120522-1148"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.console"
+         download-size="0"
+         install-size="0"
+         version="3.5.100.v20120521-2012"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.intro"
+         download-size="0"
+         install-size="0"
+         version="3.4.200.v20120521-2344"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.intro.universal"
+         download-size="0"
+         install-size="0"
+         version="3.2.600.v20120912-155524"/>
+
+   <plugin
+         id="org.eclipse.ui.cheatsheets"
+         download-size="0"
+         install-size="0"
+         version="3.4.200.v20120521-2344"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.browser"
+         download-size="0"
+         install-size="0"
+         version="3.4.2.v20130123-162658"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.navigator"
+         download-size="0"
+         install-size="0"
+         version="3.5.200.v20120705-114103"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.navigator.resources"
+         download-size="0"
+         install-size="0"
+         version="3.4.400.v20120705-114010"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.net"
+         download-size="0"
+         install-size="0"
+         version="1.2.101.v20120914-093638"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.workbench.texteditor"
+         download-size="0"
+         install-size="0"
+         version="3.8.0.v20120523-1310"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.views"
+         download-size="0"
+         install-size="0"
+         version="3.6.100.v20120705-114010"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.editors"
+         download-size="0"
+         install-size="0"
+         version="3.8.0.v20120523-1540"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.externaltools"
+         download-size="0"
+         install-size="0"
+         version="3.2.100.v20120530-1753"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.ide"
+         download-size="0"
+         install-size="0"
+         version="3.8.2.v20121106-165923"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.ide.application"
+         download-size="0"
+         install-size="0"
+         version="1.0.400.v20120523-1955"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.win32"
+         ws="win32"
+         download-size="0"
+         install-size="0"
+         version="3.2.302.v20130123-162658"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.filesystem.aix.ppc"
+         os="aix"
+         arch="ppc"
+         download-size="0"
+         install-size="0"
+         version="1.1.0.v20120913-135826"
+         fragment="true"
+         unpack="false"/>
+
+<plugin
+         id="org.eclipse.core.filesystem.aix.ppc64"
+         os="aix"
+         arch="ppc64"
+         download-size="0"
+         install-size="0"
+         version="1.1.0.v20120913-135826"
+         fragment="true"
+         unpack="false"/>
+         
+   <plugin
+         id="org.eclipse.core.filesystem.hpux.ia64_32"
+         os="hpux"
+         arch="ia64_32"
+         download-size="0"
+         install-size="0"
+         version="1.0.101.v20121109-194007"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.filesystem.linux.x86"
+         os="linux"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="1.4.0.v20120522-1137"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.filesystem.linux.x86_64"
+         os="linux"
+         arch="x86_64"
+         download-size="0"
+         install-size="0"
+         version="1.2.0.v20120522-1137"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.filesystem.solaris.sparc"
+         os="solaris"
+         arch="sparc"
+         download-size="0"
+         install-size="0"
+         version="1.2.0.v20120913-135826"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.filesystem.macosx"
+         os="macosx"
+         download-size="0"
+         install-size="0"
+         version="1.3.0.v20120522-1137"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.filesystem.win32.x86"
+         os="win32"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="1.1.300.v20120522-1137"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.resources.win32.x86"
+         os="win32"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="3.5.100.v20120522-1137"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.filesystem.win32.x86_64"
+         os="win32"
+         arch="x86_64"
+         download-size="0"
+         install-size="0"
+         version="1.1.300.v20120522-1137"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.filesystem.linux.ppc"
+         os="linux"
+         arch="ppc"
+         download-size="0"
+         install-size="0"
+         version="1.0.200.v20120913-135826"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.filesystem.linux.ppc64"
+         os="linux"
+         arch="ppc64"
+         download-size="0"
+         install-size="0"
+         version="1.4.0.v20130108-094530"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.variables"
+         download-size="0"
+         install-size="0"
+         version="3.2.600.v20120521-2012"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.forms"
+         download-size="0"
+         install-size="0"
+         version="3.5.200.v20120705-114351"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.ui.views.properties.tabbed"
+         download-size="0"
+         install-size="0"
+         version="3.5.300.v20120912-132807"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.security"
+         download-size="0"
+         install-size="0"
+         version="1.1.100.v20120522-1841"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.security.ui"
+         download-size="0"
+         install-size="0"
+         version="1.1.100.v20120522-2049"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.security.win32.x86"
+         os="win32"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="1.0.300.v20120522-2049"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.security.win32.x86_64"
+         os="win32"
+         arch="x86_64"
+         download-size="0"
+         install-size="0"
+         version="1.0.100.v20120522-2049"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.security.macosx"
+         os="macosx"
+         arch="x86"
+         download-size="0"
+         install-size="0"
+         version="1.100.200.v20120522-2049"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.security.macosx"
+         os="macosx"
+         arch="x86_64"
+         download-size="0"
+         install-size="0"
+         version="1.100.200.v20120522-2049"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.equinox.security.macosx"
+         os="macosx"
+         arch="ppc"
+         download-size="0"
+         install-size="0"
+         version="1.100.200.v20120522-2049"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.core.externaltools"
+         download-size="0"
+         install-size="0"
+         version="1.0.100.v20120521-2012"
+         unpack="false"/>
+
+</feature>
\ No newline at end of file
diff --git a/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/license.html b/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/license.html
@@ -0,0 +1,108 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Foundation Software User Agreement</title>
+</head>
+
+<body lang="EN-US">
+<h2>Eclipse Foundation Software User Agreement</h2>
+<p>February 1, 2011</p>
+
+<h3>Usage Of Content</h3>
+
+<p>THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+   (COLLECTIVELY &quot;CONTENT&quot;).  USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+   CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+   OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+   NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+   CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.</p>
+
+<h3>Applicable Licenses</h3>
+
+<p>Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+   (&quot;EPL&quot;).  A copy of the EPL is provided with this Content and is also available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+   For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+   repository (&quot;Repository&quot;) in software modules (&quot;Modules&quot;) and made available as downloadable archives (&quot;Downloads&quot;).</p>
+
+<ul>
+       <li>Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content.  Typical modules may include plug-ins (&quot;Plug-ins&quot;), plug-in fragments (&quot;Fragments&quot;), and features (&quot;Features&quot;).</li>
+       <li>Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java&trade; ARchive) in a directory named &quot;plugins&quot;.</li>
+       <li>A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.  Each Feature may be packaged as a sub-directory in a directory named &quot;features&quot;.  Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of the Plug-ins
+      and/or Fragments associated with that Feature.</li>
+       <li>Features may also include other Features (&quot;Included Features&quot;). Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of Included Features.</li>
+</ul>
+
+<p>The terms and conditions governing Plug-ins and Fragments should be contained in files named &quot;about.html&quot; (&quot;Abouts&quot;). The terms and conditions governing Features and
+Included Features should be contained in files named &quot;license.html&quot; (&quot;Feature Licenses&quot;).  Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:</p>
+
+<ul>
+       <li>The top-level (root) directory</li>
+       <li>Plug-in and Fragment directories</li>
+       <li>Inside Plug-ins and Fragments packaged as JARs</li>
+       <li>Sub-directories of the directory named &quot;src&quot; of certain Plug-ins</li>
+       <li>Feature directories</li>
+</ul>
+
+<p>Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (&quot;Feature Update License&quot;) during the
+installation process.  If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them.  Feature Update Licenses may be found in the &quot;license&quot; property of files named &quot;feature.properties&quot; found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.</p>
+
+<p>THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.  SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):</p>
+
+<ul>
+       <li>Eclipse Distribution License Version 1.0 (available at <a href="http://www.eclipse.org/licenses/edl-v10.html">http://www.eclipse.org/licenses/edl-v1.0.html</a>)</li>
+       <li>Common Public License Version 1.0 (available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>)</li>
+       <li>Apache Software License 1.1 (available at <a href="http://www.apache.org/licenses/LICENSE">http://www.apache.org/licenses/LICENSE</a>)</li>
+       <li>Apache Software License 2.0 (available at <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>)</li>
+       <li>Metro Link Public License 1.00 (available at <a href="http://www.opengroup.org/openmotif/supporters/metrolink/license.html">http://www.opengroup.org/openmotif/supporters/metrolink/license.html</a>)</li>
+       <li>Mozilla Public License Version 1.1 (available at <a href="http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html</a>)</li>
+</ul>
+
+<p>IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT.  If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.</p>
+
+
+<h3>Use of Provisioning Technology</h3>
+
+<p>The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+   Update Manager (&quot;Provisioning Technology&quot;) for the purpose of allowing users to install software, documentation, information and/or
+   other materials (collectively &quot;Installable Software&quot;). This capability is provided with the intent of allowing such users to
+   install, extend and update Eclipse-based products. Information about packaging Installable Software is available at <a
+       href="http://eclipse.org/equinox/p2/repository_packaging.html">http://eclipse.org/equinox/p2/repository_packaging.html</a>
+   (&quot;Specification&quot;).</p>
+
+<p>You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+   applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+   in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+   Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:</p>
+
+<ol>
+       <li>A series of actions may occur (&quot;Provisioning Process&quot;) in which a user may execute the Provisioning Technology
+       on a machine (&quot;Target Machine&quot;) with the intent of installing, extending or updating the functionality of an Eclipse-based
+       product.</li>
+       <li>During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+       accessed and copied to the Target Machine.</li>
+       <li>Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+       Software (&quot;Installable Software Agreement&quot;) and such Installable Software Agreement shall be accessed from the Target
+       Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+       the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+       indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.</li>
+</ol>
+
+<h3>Cryptography</h3>
+
+<p>Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+   another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+   possession, or use, and re-export of encryption software, to see if this is permitted.</p>
+
+<p><small>Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.</small></p>
+</body>
+</html>
diff --git a/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/META-INF/ECLIPSE_.RSA b/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..4633d32
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/META-INF/ECLIPSE_.SF b/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..c07c11f
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/META-INF/ECLIPSE_.SF
@@ -0,0 +1,23 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: 5lDpuR5O+y4L0ws4H0apDaRlxZE=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: 4gIfTP5y3EzwI5ecyebQLugBMgo=

+

+Name: epl-v10.html

+SHA1-Digest: /iY8aEvT0IMpNnSjB0FpTUhvUGc=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: RyXo3knk5T635eCpQEPXyFBrCyA=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=

+

+Name: license.html

+SHA1-Digest: Rp9AnRyeUIxNWe10fjaMDkQB8rU=

+

+Name: feature.properties

+SHA1-Digest: k8Cjei7nwx8AzOsCo2n8mN36CKw=

+

+Name: feature.xml

+SHA1-Digest: ICMYIXh/s3FGfyfqERouG+Q8bXw=

+

diff --git a/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/META-INF/MANIFEST.MF b/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..08419f0
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/META-INF/MANIFEST.MF
@@ -0,0 +1,21 @@
+Manifest-Version: 1.0

+Created-By: 1.6.0 (IBM Corporation)

+

+Name: epl-v10.html

+SHA1-Digest: jYDaDJLBJpthCwPMgGFVYASJjIU=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=

+

+Name: eclipse_update_120.jpg

+SHA1-Digest: xstAqMgs/a5AsQXQZSdDQ79veOA=

+

+Name: license.html

+SHA1-Digest: /vLZjlHkZSXMSfPrWwNqOUDqqbM=

+

+Name: feature.properties

+SHA1-Digest: 5zYiPfVaLWUbjiruPwB44dpum5Q=

+

+Name: feature.xml

+SHA1-Digest: MZnAI0Y87qOcYSowrFFhp5yn3sk=

+

diff --git a/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/META-INF/eclipse.inf b/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/eclipse_update_120.jpg b/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/eclipse_update_120.jpg
new file mode 100644
index 0000000..bfdf708
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/eclipse_update_120.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/epl-v10.html b/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/epl-v10.html
new file mode 100644
index 0000000..fd39122
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/epl-v10.html
@@ -0,0 +1,261 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Public License - Version 1.0</title>
+<style type="text/css">
+  body {
+    size: 8.5in 11.0in;
+    margin: 0.25in 0.5in 0.25in 0.5in;
+    tab-interval: 0.5in;
+    }
+  p {  	
+    margin-left: auto;
+    margin-top:  0.5em;
+    margin-bottom: 0.5em;
+    }
+  p.list {
+  	margin-left: 0.5in;
+    margin-top:  0.05em;
+    margin-bottom: 0.05em;
+    }
+  </style>
+
+</head>
+
+<body lang="EN-US">
+
+<h2>Eclipse Public License - v 1.0</h2>
+
+<p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE (&quot;AGREEMENT&quot;). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.</p>
+
+<p><b>1. DEFINITIONS</b></p>
+
+<p>&quot;Contribution&quot; means:</p>
+
+<p class="list">a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and</p>
+<p class="list">b) in the case of each subsequent Contributor:</p>
+<p class="list">i) changes to the Program, and</p>
+<p class="list">ii) additions to the Program;</p>
+<p class="list">where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.</p>
+
+<p>&quot;Contributor&quot; means any person or entity that distributes
+the Program.</p>
+
+<p>&quot;Licensed Patents&quot; mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.</p>
+
+<p>&quot;Program&quot; means the Contributions distributed in accordance
+with this Agreement.</p>
+
+<p>&quot;Recipient&quot; means anyone who receives the Program under
+this Agreement, including all Contributors.</p>
+
+<p><b>2. GRANT OF RIGHTS</b></p>
+
+<p class="list">a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.</p>
+
+<p class="list">b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.</p>
+
+<p class="list">c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.</p>
+
+<p class="list">d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.</p>
+
+<p><b>3. REQUIREMENTS</b></p>
+
+<p>A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:</p>
+
+<p class="list">a) it complies with the terms and conditions of this
+Agreement; and</p>
+
+<p class="list">b) its license agreement:</p>
+
+<p class="list">i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;</p>
+
+<p class="list">ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;</p>
+
+<p class="list">iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and</p>
+
+<p class="list">iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.</p>
+
+<p>When the Program is made available in source code form:</p>
+
+<p class="list">a) it must be made available under this Agreement; and</p>
+
+<p class="list">b) a copy of this Agreement must be included with each
+copy of the Program.</p>
+
+<p>Contributors may not remove or alter any copyright notices contained
+within the Program.</p>
+
+<p>Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.</p>
+
+<p><b>4. COMMERCIAL DISTRIBUTION</b></p>
+
+<p>Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+(&quot;Commercial Contributor&quot;) hereby agrees to defend and
+indemnify every other Contributor (&quot;Indemnified Contributor&quot;)
+against any losses, damages and costs (collectively &quot;Losses&quot;)
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.</p>
+
+<p>For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.</p>
+
+<p><b>5. NO WARRANTY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.</p>
+
+<p><b>6. DISCLAIMER OF LIABILITY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), 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 OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.</p>
+
+<p><b>7. GENERAL</b></p>
+
+<p>If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.</p>
+
+<p>If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.</p>
+
+<p>All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.</p>
+
+<p>Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.</p>
+
+<p>This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.</p>
+
+</body>
+
+</html>
diff --git a/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/feature.properties b/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/feature.properties
new file mode 100644
index 0000000..f9a5f02
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/feature.properties
@@ -0,0 +1,197 @@
+###############################################################################
+# Copyright (c) 2000, 2013 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Eclipse RCP
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org
+
+# "updateSiteName" property - label for the update site
+updateSiteName=The Eclipse Project Updates
+
+# "description" property - description of the feature
+description=Rich Client Platform
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2000, 2013 Eclipse contributors and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+    IBM Corporation - initial API and implementation\n
+################ end of copyright property ###################################################################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+       - Content may be structured and packaged into modules to facilitate delivering,\n\
+         extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+         plug-in fragments ("Fragments"), and features ("Features").\n\
+       - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+         in a directory named "plugins".\n\
+       - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+         Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+         Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+         numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+       - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+         named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+       - The top-level (root) directory\n\
+       - Plug-in and Fragment directories\n\
+       - Inside Plug-ins and Fragments packaged as JARs\n\
+       - Sub-directories of the directory named "src" of certain Plug-ins\n\
+       - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+       - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+       - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+       - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+       - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+       - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+       - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+       1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+          the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+          extending or updating the functionality of an Eclipse-based product.\n\
+       2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+          Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+       3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+          govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+          Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+          with the Specification. Such Installable Software Agreement must inform the user of the\n\
+          terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+          the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+          indication of agreement by the user, the provisioning Technology will complete installation\n\
+          of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/feature.xml b/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/feature.xml
new file mode 100644
index 0000000..f245b99
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/feature.xml
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="UTF-8"?>

+<feature

+      id="org.eclipse.rcp"

+      label="%featureName"

+      version="4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h"

+      provider-name="%providerName"

+      plugin="org.eclipse.rcp"

+      image="eclipse_update_120.jpg"

+      

+      >

+

+   <description>

+      %description

+   </description>

+

+   <copyright>

+      %copyright

+   </copyright>

+

+   <license url="%licenseURL">
+      %license
+   </license>

+

+   <includes

+         id="org.eclipse.e4.rcp"

+         version="1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS"/>

+

+   <plugin

+         id="org.eclipse.help"

+         download-size="0"

+         install-size="0"

+         version="3.6.0.v20120912-134126"

+         unpack="false"/>

+

+   <plugin

+         id="org.eclipse.ui"

+         download-size="0"

+         install-size="0"

+         version="3.104.0.v20121024-145224"

+         unpack="false"/>

+

+   <plugin

+         id="org.eclipse.ui.workbench"

+         download-size="0"

+         install-size="0"

+         version="3.104.0.v20130204-164612"

+         unpack="false"/>

+

+   <plugin

+         id="org.eclipse.update.configurator"

+         download-size="0"

+         install-size="0"

+         version="3.3.200.v20120912-144026"

+         unpack="false"/>

+

+   <plugin

+         id="org.eclipse.rcp"

+         download-size="0"

+         install-size="0"

+         version="4.2.1.v201302041200"

+         unpack="false"/>

+

+</feature>

diff --git a/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/license.html b/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/license.html
@@ -0,0 +1,108 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Foundation Software User Agreement</title>
+</head>
+
+<body lang="EN-US">
+<h2>Eclipse Foundation Software User Agreement</h2>
+<p>February 1, 2011</p>
+
+<h3>Usage Of Content</h3>
+
+<p>THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+   (COLLECTIVELY &quot;CONTENT&quot;).  USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+   CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+   OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+   NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+   CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.</p>
+
+<h3>Applicable Licenses</h3>
+
+<p>Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+   (&quot;EPL&quot;).  A copy of the EPL is provided with this Content and is also available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+   For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+   repository (&quot;Repository&quot;) in software modules (&quot;Modules&quot;) and made available as downloadable archives (&quot;Downloads&quot;).</p>
+
+<ul>
+       <li>Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content.  Typical modules may include plug-ins (&quot;Plug-ins&quot;), plug-in fragments (&quot;Fragments&quot;), and features (&quot;Features&quot;).</li>
+       <li>Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java&trade; ARchive) in a directory named &quot;plugins&quot;.</li>
+       <li>A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.  Each Feature may be packaged as a sub-directory in a directory named &quot;features&quot;.  Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of the Plug-ins
+      and/or Fragments associated with that Feature.</li>
+       <li>Features may also include other Features (&quot;Included Features&quot;). Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of Included Features.</li>
+</ul>
+
+<p>The terms and conditions governing Plug-ins and Fragments should be contained in files named &quot;about.html&quot; (&quot;Abouts&quot;). The terms and conditions governing Features and
+Included Features should be contained in files named &quot;license.html&quot; (&quot;Feature Licenses&quot;).  Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:</p>
+
+<ul>
+       <li>The top-level (root) directory</li>
+       <li>Plug-in and Fragment directories</li>
+       <li>Inside Plug-ins and Fragments packaged as JARs</li>
+       <li>Sub-directories of the directory named &quot;src&quot; of certain Plug-ins</li>
+       <li>Feature directories</li>
+</ul>
+
+<p>Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (&quot;Feature Update License&quot;) during the
+installation process.  If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them.  Feature Update Licenses may be found in the &quot;license&quot; property of files named &quot;feature.properties&quot; found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.</p>
+
+<p>THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.  SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):</p>
+
+<ul>
+       <li>Eclipse Distribution License Version 1.0 (available at <a href="http://www.eclipse.org/licenses/edl-v10.html">http://www.eclipse.org/licenses/edl-v1.0.html</a>)</li>
+       <li>Common Public License Version 1.0 (available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>)</li>
+       <li>Apache Software License 1.1 (available at <a href="http://www.apache.org/licenses/LICENSE">http://www.apache.org/licenses/LICENSE</a>)</li>
+       <li>Apache Software License 2.0 (available at <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>)</li>
+       <li>Metro Link Public License 1.00 (available at <a href="http://www.opengroup.org/openmotif/supporters/metrolink/license.html">http://www.opengroup.org/openmotif/supporters/metrolink/license.html</a>)</li>
+       <li>Mozilla Public License Version 1.1 (available at <a href="http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html</a>)</li>
+</ul>
+
+<p>IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT.  If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.</p>
+
+
+<h3>Use of Provisioning Technology</h3>
+
+<p>The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+   Update Manager (&quot;Provisioning Technology&quot;) for the purpose of allowing users to install software, documentation, information and/or
+   other materials (collectively &quot;Installable Software&quot;). This capability is provided with the intent of allowing such users to
+   install, extend and update Eclipse-based products. Information about packaging Installable Software is available at <a
+       href="http://eclipse.org/equinox/p2/repository_packaging.html">http://eclipse.org/equinox/p2/repository_packaging.html</a>
+   (&quot;Specification&quot;).</p>
+
+<p>You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+   applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+   in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+   Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:</p>
+
+<ol>
+       <li>A series of actions may occur (&quot;Provisioning Process&quot;) in which a user may execute the Provisioning Technology
+       on a machine (&quot;Target Machine&quot;) with the intent of installing, extending or updating the functionality of an Eclipse-based
+       product.</li>
+       <li>During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+       accessed and copied to the Target Machine.</li>
+       <li>Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+       Software (&quot;Installable Software Agreement&quot;) and such Installable Software Agreement shall be accessed from the Target
+       Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+       the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+       indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.</li>
+</ol>
+
+<h3>Cryptography</h3>
+
+<p>Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+   another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+   possession, or use, and re-export of encryption software, to see if this is permitted.</p>
+
+<p><small>Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.</small></p>
+</body>
+</html>
diff --git a/lib/monitor-x86_64/libcairo-swt.so b/lib/monitor-x86_64/libcairo-swt.so
new file mode 100755
index 0000000..5734427
--- /dev/null
+++ b/lib/monitor-x86_64/libcairo-swt.so
Binary files differ
diff --git a/lib/monitor-x86_64/monitor b/lib/monitor-x86_64/monitor
new file mode 100755
index 0000000..10e5e27
--- /dev/null
+++ b/lib/monitor-x86_64/monitor
Binary files differ
diff --git a/lib/monitor-x86_64/monitor.ini b/lib/monitor-x86_64/monitor.ini
new file mode 100644
index 0000000..09a7839
--- /dev/null
+++ b/lib/monitor-x86_64/monitor.ini
@@ -0,0 +1,10 @@
+-startup
+plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar
+--launcher.library
+plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807
+-data
+@noDefault
+-vmargs
+-XX:MaxPermSize=256m
+-Xms512m
+-Xmx1024m
diff --git a/lib/monitor-x86_64/notice.html b/lib/monitor-x86_64/notice.html
new file mode 100644
index 0000000..c184ca3
--- /dev/null
+++ b/lib/monitor-x86_64/notice.html
@@ -0,0 +1,107 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Eclipse Foundation Software User Agreement</title>
+</head>
+
+<body lang="EN-US">
+<h2>Eclipse Foundation Software User Agreement</h2>
+<p>April 14, 2010</p>
+
+<h3>Usage Of Content</h3>
+
+<p>THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+   (COLLECTIVELY &quot;CONTENT&quot;).  USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+   CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW.  BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+   OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+   NOTICES INDICATED OR REFERENCED BELOW.  IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+   CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.</p>
+
+<h3>Applicable Licenses</h3>
+
+<p>Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+   (&quot;EPL&quot;).  A copy of the EPL is provided with this Content and is also available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+   For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+   repository (&quot;Repository&quot;) in software modules (&quot;Modules&quot;) and made available as downloadable archives (&quot;Downloads&quot;).</p>
+
+<ul>
+       <li>Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content.  Typical modules may include plug-ins (&quot;Plug-ins&quot;), plug-in fragments (&quot;Fragments&quot;), and features (&quot;Features&quot;).</li>
+       <li>Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java&trade; ARchive) in a directory named &quot;plugins&quot;.</li>
+       <li>A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.  Each Feature may be packaged as a sub-directory in a directory named &quot;features&quot;.  Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of the Plug-ins
+      and/or Fragments associated with that Feature.</li>
+       <li>Features may also include other Features (&quot;Included Features&quot;). Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version numbers of Included Features.</li>
+</ul>
+
+<p>The terms and conditions governing Plug-ins and Fragments should be contained in files named &quot;about.html&quot; (&quot;Abouts&quot;). The terms and conditions governing Features and
+Included Features should be contained in files named &quot;license.html&quot; (&quot;Feature Licenses&quot;).  Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:</p>
+
+<ul>
+       <li>The top-level (root) directory</li>
+       <li>Plug-in and Fragment directories</li>
+       <li>Inside Plug-ins and Fragments packaged as JARs</li>
+       <li>Sub-directories of the directory named &quot;src&quot; of certain Plug-ins</li>
+       <li>Feature directories</li>
+</ul>
+
+<p>Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license (&quot;Feature Update License&quot;) during the
+installation process.  If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them.  Feature Update Licenses may be found in the &quot;license&quot; property of files named &quot;feature.properties&quot; found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.</p>
+
+<p>THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.  SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):</p>
+
+<ul>
+       <li>Common Public License Version 1.0 (available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>)</li>
+       <li>Apache Software License 1.1 (available at <a href="http://www.apache.org/licenses/LICENSE">http://www.apache.org/licenses/LICENSE</a>)</li>
+       <li>Apache Software License 2.0 (available at <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>)</li>
+       <li>Metro Link Public License 1.00 (available at <a href="http://www.opengroup.org/openmotif/supporters/metrolink/license.html">http://www.opengroup.org/openmotif/supporters/metrolink/license.html</a>)</li>
+       <li>Mozilla Public License Version 1.1 (available at <a href="http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html</a>)</li>
+</ul>
+
+<p>IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT.  If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.</p>
+
+
+<h3>Use of Provisioning Technology</h3>
+
+<p>The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+   Update Manager (&quot;Provisioning Technology&quot;) for the purpose of allowing users to install software, documentation, information and/or
+   other materials (collectively &quot;Installable Software&quot;). This capability is provided with the intent of allowing such users to
+   install, extend and update Eclipse-based products. Information about packaging Installable Software is available at <a
+       href="http://eclipse.org/equinox/p2/repository_packaging.html">http://eclipse.org/equinox/p2/repository_packaging.html</a>
+   (&quot;Specification&quot;).</p>
+
+<p>You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+   applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+   in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+   Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:</p>
+
+<ol>
+       <li>A series of actions may occur (&quot;Provisioning Process&quot;) in which a user may execute the Provisioning Technology
+       on a machine (&quot;Target Machine&quot;) with the intent of installing, extending or updating the functionality of an Eclipse-based
+       product.</li>
+       <li>During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+       accessed and copied to the Target Machine.</li>
+       <li>Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+       Software (&quot;Installable Software Agreement&quot;) and such Installable Software Agreement shall be accessed from the Target
+       Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+       the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+       indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.</li>
+</ol>
+
+<h3>Cryptography</h3>
+
+<p>Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+   another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+   possession, or use, and re-export of encryption software, to see if this is permitted.</p>
+
+<p><small>Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.</small></p>
+</body>
+</html>
diff --git a/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.core/cache/artifacts.xml b/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.core/cache/artifacts.xml
new file mode 100644
index 0000000..59a33bd
--- /dev/null
+++ b/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.core/cache/artifacts.xml
@@ -0,0 +1,30 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<?artifactRepository version='1.1.0'?>
+<repository name='download cache' type='org.eclipse.equinox.p2.artifact.repository.simpleRepository' version='1.0.0'>
+  <properties size='2'>
+    <property name='p2.system' value='true'/>
+    <property name='p2.timestamp' value='1478881410602'/>
+  </properties>
+  <mappings size='3'>
+    <rule filter='(&amp; (classifier=osgi.bundle))' output='${repoUrl}/plugins/${id}_${version}.jar'/>
+    <rule filter='(&amp; (classifier=binary))' output='${repoUrl}/binary/${id}_${version}'/>
+    <rule filter='(&amp; (classifier=org.eclipse.update.feature))' output='${repoUrl}/features/${id}_${version}.jar'/>
+  </mappings>
+  <artifacts size='3'>
+    <artifact classifier='binary' id='org.eclipse.rcp_root' version='4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h'>
+      <properties size='1'>
+        <property name='download.size' value='37952'/>
+      </properties>
+    </artifact>
+    <artifact classifier='binary' id='org.eclipse.platform_root' version='4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7'>
+      <properties size='1'>
+        <property name='download.size' value='38125'/>
+      </properties>
+    </artifact>
+    <artifact classifier='binary' id='monitorproduct.executable.gtk.linux.x86_64' version='25.2.3.3470232'>
+      <properties size='1'>
+        <property name='download.size' value='168388'/>
+      </properties>
+    </artifact>
+  </artifacts>
+</repository>
diff --git a/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.core/cache/binary/monitorproduct.executable.gtk.linux.x86_64_25.2.3.3470232 b/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.core/cache/binary/monitorproduct.executable.gtk.linux.x86_64_25.2.3.3470232
new file mode 100644
index 0000000..62d1a27
--- /dev/null
+++ b/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.core/cache/binary/monitorproduct.executable.gtk.linux.x86_64_25.2.3.3470232
Binary files differ
diff --git a/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.platform_root_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7 b/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.platform_root_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7
new file mode 100644
index 0000000..7840a17
--- /dev/null
+++ b/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.platform_root_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7
Binary files differ
diff --git a/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.rcp_root_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h b/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.rcp_root_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h
new file mode 100644
index 0000000..3eeaca8
--- /dev/null
+++ b/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.rcp_root_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h
Binary files differ
diff --git a/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.artifact.repository.prefs b/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.artifact.repository.prefs
new file mode 100644
index 0000000..e17c6d7
--- /dev/null
+++ b/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.artifact.repository.prefs
@@ -0,0 +1,104 @@
+eclipse.preferences.version=1
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_artifacts_bundles/description=Read-only repository adapter for org.eclipse.tycho.p2.target.TargetPlatformBundlePublisher$PublishedBundlesArtifactRepository@ae300ca6
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_artifacts_bundles/enabled=true
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_artifacts_bundles/isSystem=false
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_artifacts_bundles/provider=
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_artifacts_bundles/suffix=@memory
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_artifacts_bundles/type=ProviderOnlyArtifactRepository
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_artifacts_bundles/uri=file\:/resolution-context-artifacts@/usr/local/google/buildbot/src/android/emu-2.2-release/sdk/eclipse/artifacts/bundles
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_artifacts_bundles/version=1.0
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/bundles-25.2.3-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor/isSystem=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor/name=Bundle pool
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/bundles-25.2.3-SNAPSHOT/products/monitorproduct/linux/gtk/x86_64/monitor/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor/version=1
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor_p2_org.eclipse.equinox.p2.core_cache/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor_p2_org.eclipse.equinox.p2.core_cache/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor_p2_org.eclipse.equinox.p2.core_cache/isSystem=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor_p2_org.eclipse.equinox.p2.core_cache/name=download cache
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor_p2_org.eclipse.equinox.p2.core_cache/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor_p2_org.eclipse.equinox.p2.core_cache/suffix=artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor_p2_org.eclipse.equinox.p2.core_cache/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor_p2_org.eclipse.equinox.p2.core_cache/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/bundles-25.2.3-SNAPSHOT/products/monitorproduct/linux/gtk/x86_64/monitor/p2/org.eclipse.equinox.p2.core/cache/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor_p2_org.eclipse.equinox.p2.core_cache/version=1.0.0
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.base-25.2.3-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.base-25.2.3-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.base-25.2.3-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.base-25.2.3-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.base-25.2.3-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.base-25.2.3-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/com.android.ide.eclipse.base-25.2.3-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.ddms-25.2.3-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.ddms-25.2.3-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.ddms-25.2.3-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.ddms-25.2.3-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.ddms-25.2.3-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.ddms-25.2.3-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/com.android.ide.eclipse.ddms-25.2.3-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.ddms.feature-25.2.3-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.ddms.feature-25.2.3-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.ddms.feature-25.2.3-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.ddms.feature-25.2.3-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.ddms.feature-25.2.3-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.ddms.feature-25.2.3-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/com.android.ide.eclipse.ddms.feature-25.2.3-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.gldebugger-25.2.3-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.gldebugger-25.2.3-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.gldebugger-25.2.3-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.gldebugger-25.2.3-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.gldebugger-25.2.3-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.gldebugger-25.2.3-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/com.android.ide.eclipse.gldebugger-25.2.3-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.gldebugger.feature-25.2.3-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.gldebugger.feature-25.2.3-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.gldebugger.feature-25.2.3-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.gldebugger.feature-25.2.3-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.gldebugger.feature-25.2.3-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.gldebugger.feature-25.2.3-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/com.android.ide.eclipse.gldebugger.feature-25.2.3-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer-25.2.3-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer-25.2.3-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer-25.2.3-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer-25.2.3-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer-25.2.3-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer-25.2.3-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/com.android.ide.eclipse.hierarchyviewer-25.2.3-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer.feature-25.2.3-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer.feature-25.2.3-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer.feature-25.2.3-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer.feature-25.2.3-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer.feature-25.2.3-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer.feature-25.2.3-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/com.android.ide.eclipse.hierarchyviewer.feature-25.2.3-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.monitor-25.2.3-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.monitor-25.2.3-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.monitor-25.2.3-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.monitor-25.2.3-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.monitor-25.2.3-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.monitor-25.2.3-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/com.android.ide.eclipse.monitor-25.2.3-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.monitor.feature-25.2.3-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.monitor.feature-25.2.3-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.monitor.feature-25.2.3-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.monitor.feature-25.2.3-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.monitor.feature-25.2.3-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.monitor.feature-25.2.3-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/com.android.ide.eclipse.monitor.feature-25.2.3-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.traceview-25.2.3-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.traceview-25.2.3-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.traceview-25.2.3-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.traceview-25.2.3-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.traceview-25.2.3-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.traceview-25.2.3-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/com.android.ide.eclipse.traceview-25.2.3-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.traceview.feature-25.2.3-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.traceview.feature-25.2.3-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.traceview.feature-25.2.3-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.traceview.feature-25.2.3-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.traceview.feature-25.2.3-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_com.android.ide.eclipse.traceview.feature-25.2.3-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/com.android.ide.eclipse.traceview.feature-25.2.3-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_.._.._prebuilts_eclipse_mavenplugins_tycho_tycho-dependencies-m2repo/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_.._.._prebuilts_eclipse_mavenplugins_tycho_tycho-dependencies-m2repo/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_.._.._prebuilts_eclipse_mavenplugins_tycho_tycho-dependencies-m2repo/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_.._.._prebuilts_eclipse_mavenplugins_tycho_tycho-dependencies-m2repo/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_.._.._prebuilts_eclipse_mavenplugins_tycho_tycho-dependencies-m2repo/suffix=.meta/p2-artifacts.properties
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_sdk_eclipse_.._.._prebuilts_eclipse_mavenplugins_tycho_tycho-dependencies-m2repo/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/sdk/eclipse/../../prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/
diff --git a/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.metadata.repository.prefs b/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.metadata.repository.prefs
new file mode 100644
index 0000000..3140558
--- /dev/null
+++ b/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.metadata.repository.prefs
@@ -0,0 +1,17 @@
+eclipse.preferences.version=1
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/name=module-metadata-repository@/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/bundles-25.2.3-SNAPSHOT
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/suffix=p2content.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/type=org.eclipse.tycho.repository.module.ModuleMetadataRepository
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/bundles-25.2.3-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT/version=1.0.0
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_targetPlatformRepository/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_targetPlatformRepository/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_targetPlatformRepository/name=TychoTargetPlatform
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_targetPlatformRepository/suffix=content.xml
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_targetPlatformRepository/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_targetPlatformRepository/uri=file\:/usr/local/google/buildbot/src/android/emu-2.2-release/out/host/maven/bundles-25.2.3-SNAPSHOT/targetPlatformRepository/
+repositories/file\:_usr_local_google_buildbot_src_android_emu-2.2-release_out_host_maven_bundles-25.2.3-SNAPSHOT_targetPlatformRepository/version=0.0.1
diff --git a/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.data/org.eclipse.equinox.internal.p2.touchpoint.eclipse.actions/jvmargs b/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.data/org.eclipse.equinox.internal.p2.touchpoint.eclipse.actions/jvmargs
new file mode 100644
index 0000000..ef1e740
--- /dev/null
+++ b/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.data/org.eclipse.equinox.internal.p2.touchpoint.eclipse.actions/jvmargs
@@ -0,0 +1,4 @@
+#Fri Nov 11 16:23:31 UTC 2016
+-Xms=512m
+-XX\:MaxPermSize\==256m
+-Xmx=1024m
diff --git a/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.lock b/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.lock
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.lock
diff --git a/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1478881410126.profile.gz b/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1478881410126.profile.gz
new file mode 100644
index 0000000..f0b3a16
--- /dev/null
+++ b/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1478881410126.profile.gz
Binary files differ
diff --git a/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1478881410129.profile.gz b/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1478881410129.profile.gz
new file mode 100644
index 0000000..0522bf3
--- /dev/null
+++ b/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1478881410129.profile.gz
Binary files differ
diff --git a/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1478881411533.profile.gz b/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1478881411533.profile.gz
new file mode 100644
index 0000000..9be85bc
--- /dev/null
+++ b/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1478881411533.profile.gz
Binary files differ
diff --git a/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1478881411837.profile.gz b/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1478881411837.profile.gz
new file mode 100644
index 0000000..7d9b017
--- /dev/null
+++ b/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1478881411837.profile.gz
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/com.android.ide.eclipse.base_25.2.3.3470232.jar b/lib/monitor-x86_64/plugins/com.android.ide.eclipse.base_25.2.3.3470232.jar
new file mode 100644
index 0000000..49c8f1a
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/com.android.ide.eclipse.base_25.2.3.3470232.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/com.android.ide.eclipse.ddms_25.2.3.3470232.jar b/lib/monitor-x86_64/plugins/com.android.ide.eclipse.ddms_25.2.3.3470232.jar
new file mode 100644
index 0000000..2b6f0d0
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/com.android.ide.eclipse.ddms_25.2.3.3470232.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/com.android.ide.eclipse.gldebugger_25.2.3.3470232.jar b/lib/monitor-x86_64/plugins/com.android.ide.eclipse.gldebugger_25.2.3.3470232.jar
new file mode 100644
index 0000000..af149dd
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/com.android.ide.eclipse.gldebugger_25.2.3.3470232.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/com.android.ide.eclipse.hierarchyviewer_25.2.3.3470232.jar b/lib/monitor-x86_64/plugins/com.android.ide.eclipse.hierarchyviewer_25.2.3.3470232.jar
new file mode 100644
index 0000000..2fd666c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/com.android.ide.eclipse.hierarchyviewer_25.2.3.3470232.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/com.android.ide.eclipse.monitor_25.2.3.3470232.jar b/lib/monitor-x86_64/plugins/com.android.ide.eclipse.monitor_25.2.3.3470232.jar
new file mode 100644
index 0000000..a67d162
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/com.android.ide.eclipse.monitor_25.2.3.3470232.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/com.android.ide.eclipse.traceview_25.2.3.3470232.jar b/lib/monitor-x86_64/plugins/com.android.ide.eclipse.traceview_25.2.3.3470232.jar
new file mode 100644
index 0000000..5d9ba76
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/com.android.ide.eclipse.traceview_25.2.3.3470232.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/com.ibm.icu_4.4.2.v20110823.jar b/lib/monitor-x86_64/plugins/com.ibm.icu_4.4.2.v20110823.jar
new file mode 100644
index 0000000..18a293e
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/com.ibm.icu_4.4.2.v20110823.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/com.jcraft.jsch_0.1.46.v201205102330.jar b/lib/monitor-x86_64/plugins/com.jcraft.jsch_0.1.46.v201205102330.jar
new file mode 100644
index 0000000..8800048
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/com.jcraft.jsch_0.1.46.v201205102330.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/com.sun.el_2.2.0.v201108011116.jar b/lib/monitor-x86_64/plugins/com.sun.el_2.2.0.v201108011116.jar
new file mode 100644
index 0000000..29c050a
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/com.sun.el_2.2.0.v201108011116.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/javax.annotation_1.0.0.v20101115-0725.jar b/lib/monitor-x86_64/plugins/javax.annotation_1.0.0.v20101115-0725.jar
new file mode 100644
index 0000000..fd9c2c1
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/javax.annotation_1.0.0.v20101115-0725.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/javax.el_2.2.0.v201108011116.jar b/lib/monitor-x86_64/plugins/javax.el_2.2.0.v201108011116.jar
new file mode 100644
index 0000000..b777c09
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/javax.el_2.2.0.v201108011116.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/javax.inject_1.0.0.v20091030.jar b/lib/monitor-x86_64/plugins/javax.inject_1.0.0.v20091030.jar
new file mode 100644
index 0000000..cb95087
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/javax.inject_1.0.0.v20091030.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/javax.servlet.jsp_2.2.0.v201112011158.jar b/lib/monitor-x86_64/plugins/javax.servlet.jsp_2.2.0.v201112011158.jar
new file mode 100644
index 0000000..b8ece88
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/javax.servlet.jsp_2.2.0.v201112011158.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/javax.servlet_3.0.0.v201112011016.jar b/lib/monitor-x86_64/plugins/javax.servlet_3.0.0.v201112011016.jar
new file mode 100644
index 0000000..4904343
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/javax.servlet_3.0.0.v201112011016.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/javax.xml_1.3.4.v201005080400.jar b/lib/monitor-x86_64/plugins/javax.xml_1.3.4.v201005080400.jar
new file mode 100644
index 0000000..81a6ab8
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/javax.xml_1.3.4.v201005080400.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.apache.batik.css_1.6.0.v201011041432.jar b/lib/monitor-x86_64/plugins/org.apache.batik.css_1.6.0.v201011041432.jar
new file mode 100644
index 0000000..6007ca0
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.apache.batik.css_1.6.0.v201011041432.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.apache.batik.util.gui_1.6.0.v201011041432.jar b/lib/monitor-x86_64/plugins/org.apache.batik.util.gui_1.6.0.v201011041432.jar
new file mode 100644
index 0000000..262b1d9
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.apache.batik.util.gui_1.6.0.v201011041432.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.apache.batik.util_1.6.0.v201011041432.jar b/lib/monitor-x86_64/plugins/org.apache.batik.util_1.6.0.v201011041432.jar
new file mode 100644
index 0000000..0715d84
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.apache.batik.util_1.6.0.v201011041432.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.apache.commons.codec_1.3.0.v201101211617.jar b/lib/monitor-x86_64/plugins/org.apache.commons.codec_1.3.0.v201101211617.jar
new file mode 100644
index 0000000..7f80e75
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.apache.commons.codec_1.3.0.v201101211617.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.apache.commons.httpclient_3.1.0.v201012070820.jar b/lib/monitor-x86_64/plugins/org.apache.commons.httpclient_3.1.0.v201012070820.jar
new file mode 100644
index 0000000..2ccaca5
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.apache.commons.httpclient_3.1.0.v201012070820.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.apache.commons.logging_1.0.4.v201101211617.jar b/lib/monitor-x86_64/plugins/org.apache.commons.logging_1.0.4.v201101211617.jar
new file mode 100644
index 0000000..5103619
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.apache.commons.logging_1.0.4.v201101211617.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.apache.felix.gogo.command_0.8.0.v201108120515.jar b/lib/monitor-x86_64/plugins/org.apache.felix.gogo.command_0.8.0.v201108120515.jar
new file mode 100644
index 0000000..19b11e5
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.apache.felix.gogo.command_0.8.0.v201108120515.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.apache.felix.gogo.runtime_0.8.0.v201108120515.jar b/lib/monitor-x86_64/plugins/org.apache.felix.gogo.runtime_0.8.0.v201108120515.jar
new file mode 100644
index 0000000..5e5b5f0
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.apache.felix.gogo.runtime_0.8.0.v201108120515.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.apache.felix.gogo.shell_0.8.0.v201110170705.jar b/lib/monitor-x86_64/plugins/org.apache.felix.gogo.shell_0.8.0.v201110170705.jar
new file mode 100644
index 0000000..da6f338
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.apache.felix.gogo.shell_0.8.0.v201110170705.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.apache.lucene.analysis_2.9.1.v201101211721.jar b/lib/monitor-x86_64/plugins/org.apache.lucene.analysis_2.9.1.v201101211721.jar
new file mode 100644
index 0000000..3a2f4da
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.apache.lucene.analysis_2.9.1.v201101211721.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.apache.lucene_2.9.1.v201101211721.jar b/lib/monitor-x86_64/plugins/org.apache.lucene_2.9.1.v201101211721.jar
new file mode 100644
index 0000000..3558e7d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.apache.lucene_2.9.1.v201101211721.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ant.core_3.2.401.v20121204-162022.jar b/lib/monitor-x86_64/plugins/org.eclipse.ant.core_3.2.401.v20121204-162022.jar
new file mode 100644
index 0000000..addb6d9
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ant.core_3.2.401.v20121204-162022.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.compare.core_3.5.200.v20120522-1148.jar b/lib/monitor-x86_64/plugins/org.eclipse.compare.core_3.5.200.v20120522-1148.jar
new file mode 100644
index 0000000..82c6651
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.compare.core_3.5.200.v20120522-1148.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.compare_3.5.301.v20130125-135424.jar b/lib/monitor-x86_64/plugins/org.eclipse.compare_3.5.301.v20130125-135424.jar
new file mode 100644
index 0000000..479dda3
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.compare_3.5.301.v20130125-135424.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.core.commands_3.6.2.v20130123-162658.jar b/lib/monitor-x86_64/plugins/org.eclipse.core.commands_3.6.2.v20130123-162658.jar
new file mode 100644
index 0000000..8cd85d4
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.core.commands_3.6.2.v20130123-162658.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.core.contenttype_3.4.200.v20120523-2004.jar b/lib/monitor-x86_64/plugins/org.eclipse.core.contenttype_3.4.200.v20120523-2004.jar
new file mode 100644
index 0000000..a254949
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.core.contenttype_3.4.200.v20120523-2004.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.core.databinding.beans_1.2.200.v20120523-1955.jar b/lib/monitor-x86_64/plugins/org.eclipse.core.databinding.beans_1.2.200.v20120523-1955.jar
new file mode 100644
index 0000000..345dbe8
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.core.databinding.beans_1.2.200.v20120523-1955.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.core.databinding.observable_1.4.1.v20120521-2329.jar b/lib/monitor-x86_64/plugins/org.eclipse.core.databinding.observable_1.4.1.v20120521-2329.jar
new file mode 100644
index 0000000..93855ed
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.core.databinding.observable_1.4.1.v20120521-2329.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.core.databinding.property_1.4.100.v20120523-1955.jar b/lib/monitor-x86_64/plugins/org.eclipse.core.databinding.property_1.4.100.v20120523-1955.jar
new file mode 100644
index 0000000..caabe0d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.core.databinding.property_1.4.100.v20120523-1955.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.core.databinding_1.4.1.v20120912-132807.jar b/lib/monitor-x86_64/plugins/org.eclipse.core.databinding_1.4.1.v20120912-132807.jar
new file mode 100644
index 0000000..5e0ed13
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.core.databinding_1.4.1.v20120912-132807.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.core.expressions_3.4.401.v20120912-155018.jar b/lib/monitor-x86_64/plugins/org.eclipse.core.expressions_3.4.401.v20120912-155018.jar
new file mode 100644
index 0000000..4cf5bea
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.core.expressions_3.4.401.v20120912-155018.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.core.externaltools_1.0.100.v20120521-2012.jar b/lib/monitor-x86_64/plugins/org.eclipse.core.externaltools_1.0.100.v20120521-2012.jar
new file mode 100644
index 0000000..1990dc9
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.core.externaltools_1.0.100.v20120521-2012.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.core.filebuffers_3.5.200.v20120523-1310.jar b/lib/monitor-x86_64/plugins/org.eclipse.core.filebuffers_3.5.200.v20120523-1310.jar
new file mode 100644
index 0000000..593e37c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.core.filebuffers_3.5.200.v20120523-1310.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.core.filesystem.linux.x86_64_1.2.0.v20120522-1137.jar b/lib/monitor-x86_64/plugins/org.eclipse.core.filesystem.linux.x86_64_1.2.0.v20120522-1137.jar
new file mode 100644
index 0000000..f4d1878
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.core.filesystem.linux.x86_64_1.2.0.v20120522-1137.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.core.filesystem_1.3.200.v20130115-145044.jar b/lib/monitor-x86_64/plugins/org.eclipse.core.filesystem_1.3.200.v20130115-145044.jar
new file mode 100644
index 0000000..88cd379
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.core.filesystem_1.3.200.v20130115-145044.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.core.jobs_3.5.300.v20120912-155018.jar b/lib/monitor-x86_64/plugins/org.eclipse.core.jobs_3.5.300.v20120912-155018.jar
new file mode 100644
index 0000000..b941801
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.core.jobs_3.5.300.v20120912-155018.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.core.net.linux.x86_64_1.1.0.v20120522-1148.jar b/lib/monitor-x86_64/plugins/org.eclipse.core.net.linux.x86_64_1.1.0.v20120522-1148.jar
new file mode 100644
index 0000000..a9626ce
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.core.net.linux.x86_64_1.1.0.v20120522-1148.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.core.net_1.2.200.v20120914-093638.jar b/lib/monitor-x86_64/plugins/org.eclipse.core.net_1.2.200.v20120914-093638.jar
new file mode 100644
index 0000000..ddb364f
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.core.net_1.2.200.v20120914-093638.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.core.resources_3.8.1.v20121114-124432.jar b/lib/monitor-x86_64/plugins/org.eclipse.core.resources_3.8.1.v20121114-124432.jar
new file mode 100644
index 0000000..be7f22b
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.core.resources_3.8.1.v20121114-124432.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/.api_description b/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/.api_description
new file mode 100644
index 0000000..bbffdc8
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/.api_description
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<component name="org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257" version="1.2">
+    <plugin id="org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257"/>
+    <package name="org.eclipse.core.runtime" visibility="1">
+        <type name="IExtension" restrictions="1"/>
+        <type name="IExtensionPoint" restrictions="1"/>
+    </package>
+</component>
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/ECLIPSE_.RSA b/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..a08e8dc
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/ECLIPSE_.SF b/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..c9494f9
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/ECLIPSE_.SF
@@ -0,0 +1,20 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: oV7fBC9t+XvU9FslXBvnCceZx54=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: Vs9w/djYnis+NAZKtDc7eSwXfaM=

+

+Name: fragment.properties

+SHA1-Digest: Gi/SEQV8Vl9A/8928AtuhnVkrKQ=

+

+Name: runtime_registry_compatibility.jar

+SHA1-Digest: 4qgXVah1KyMBh8pfeG5jsjgbfDM=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=

+

+Name: .api_description

+SHA1-Digest: rxDId4BLjpSH7RMzgU7yEspOo2Q=

+

+Name: about.html

+SHA1-Digest: M+fykt9heyWoEv1LNiIEeBhi/2Q=

+

diff --git a/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/MANIFEST.MF b/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..7645a9d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/MANIFEST.MF
@@ -0,0 +1,32 @@
+Manifest-Version: 1.0

+Bundle-Localization: fragment

+Bundle-RequiredExecutionEnvironment: CDC-1.0/Foundation-1.0,J2SE-1.3

+Fragment-Host: org.eclipse.equinox.registry;bundle-version="[3.5.0,3.6

+ .0)"

+Bundle-SymbolicName: org.eclipse.core.runtime.compatibility.registry

+Eclipse-SourceReferences: scm:git:git://git.eclipse.org/gitroot/platfo

+ rm/eclipse.platform.runtime.git;path="bundles/org.eclipse.core.runtim

+ e.compatibility.registry";tag=v20130108-163257

+Bundle-Version: 3.5.101.v20130108-163257

+Bundle-ClassPath: runtime_registry_compatibility.jar

+Eclipse-PatchFragment: true

+Bundle-Vendor: %providerName

+Bundle-Name: %fragmentName

+Eclipse-BundleShape: dir

+Bundle-ManifestVersion: 2

+

+Name: fragment.properties

+SHA1-Digest: 4yjHkU5Z/6ej6ZFYT+PE9sMOJPY=

+

+Name: runtime_registry_compatibility.jar

+SHA1-Digest: YHpfVseR3k1Wy424nVF5+04W0Lk=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=

+

+Name: .api_description

+SHA1-Digest: LJ87Sy009gYMDOfP+FFkugiMkVM=

+

+Name: about.html

+SHA1-Digest: ejOZra0kypGLQQ2bJtGTX+LI8tU=

+

diff --git a/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/eclipse.inf b/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/about.html b/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/about.html
new file mode 100644
index 0000000..4602330
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/about.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
+<title>About</title>
+</head>
+<body lang="EN-US">
+<h2>About This Content</h2>
+ 
+<p>June 2, 2006</p>	
+<h3>License</h3>
+
+<p>The Eclipse Foundation makes available all content in this plug-in (&quot;Content&quot;).  Unless otherwise 
+indicated below, the Content is provided to you under the terms and conditions of the
+Eclipse Public License Version 1.0 (&quot;EPL&quot;).  A copy of the EPL is available 
+at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>If you did not receive this Content directly from the Eclipse Foundation, the Content is 
+being redistributed by another party (&quot;Redistributor&quot;) and different terms and conditions may
+apply to your use of any object code in the Content.  Check the Redistributor's license that was 
+provided with the Content.  If no such license exists, contact the Redistributor.  Unless otherwise
+indicated below, the terms and conditions of the EPL still apply to any source code in the Content
+and such source code may be obtained at <a href="http://www.eclipse.org">http://www.eclipse.org</a>.</p>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/fragment.properties b/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/fragment.properties
new file mode 100644
index 0000000..e60dbf5
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/fragment.properties
@@ -0,0 +1,12 @@
+###############################################################################
+# Copyright (c) 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+providerName=Eclipse.org
+fragmentName=Eclipse Registry Compatibility Fragment
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/runtime_registry_compatibility.jar b/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/runtime_registry_compatibility.jar
new file mode 100644
index 0000000..f489a32
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/runtime_registry_compatibility.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility_3.2.200.v20120521-2346.jar b/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility_3.2.200.v20120521-2346.jar
new file mode 100644
index 0000000..f044dba
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility_3.2.200.v20120521-2346.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.core.runtime_3.8.0.v20120912-155025.jar b/lib/monitor-x86_64/plugins/org.eclipse.core.runtime_3.8.0.v20120912-155025.jar
new file mode 100644
index 0000000..8870f27
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.core.runtime_3.8.0.v20120912-155025.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.core.variables_3.2.600.v20120521-2012.jar b/lib/monitor-x86_64/plugins/org.eclipse.core.variables_3.2.600.v20120521-2012.jar
new file mode 100644
index 0000000..006d932
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.core.variables_3.2.600.v20120521-2012.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.debug.core_3.7.100.v20120521-2012.jar b/lib/monitor-x86_64/plugins/org.eclipse.debug.core_3.7.100.v20120521-2012.jar
new file mode 100644
index 0000000..f0d0212
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.debug.core_3.7.100.v20120521-2012.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.debug.ui_3.8.2.v20130130-171415.jar b/lib/monitor-x86_64/plugins/org.eclipse.debug.ui_3.8.2.v20130130-171415.jar
new file mode 100644
index 0000000..95f24ba
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.debug.ui_3.8.2.v20130130-171415.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.e4.core.commands_0.10.1.v20120523-1955.jar b/lib/monitor-x86_64/plugins/org.eclipse.e4.core.commands_0.10.1.v20120523-1955.jar
new file mode 100644
index 0000000..2d9085a
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.e4.core.commands_0.10.1.v20120523-1955.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.e4.core.contexts_1.2.0.v20121221-192508.jar b/lib/monitor-x86_64/plugins/org.eclipse.e4.core.contexts_1.2.0.v20121221-192508.jar
new file mode 100644
index 0000000..d4a8dc6
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.e4.core.contexts_1.2.0.v20121221-192508.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.e4.core.di.extensions_0.11.100.v20121024-182359.jar b/lib/monitor-x86_64/plugins/org.eclipse.e4.core.di.extensions_0.11.100.v20121024-182359.jar
new file mode 100644
index 0000000..7febc89
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.e4.core.di.extensions_0.11.100.v20121024-182359.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.e4.core.di_1.2.0.v20121024-173149.jar b/lib/monitor-x86_64/plugins/org.eclipse.e4.core.di_1.2.0.v20121024-173149.jar
new file mode 100644
index 0000000..ea467de
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.e4.core.di_1.2.0.v20121024-173149.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.e4.core.services_1.0.0.v20120521-2346.jar b/lib/monitor-x86_64/plugins/org.eclipse.e4.core.services_1.0.0.v20120521-2346.jar
new file mode 100644
index 0000000..ed81754
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.e4.core.services_1.0.0.v20120521-2346.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.bindings_0.10.3.v20130123-162658.jar b/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.bindings_0.10.3.v20130123-162658.jar
new file mode 100644
index 0000000..ae60985
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.bindings_0.10.3.v20130123-162658.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.css.core_0.10.2.v20120912-132817.jar b/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.css.core_0.10.2.v20120912-132817.jar
new file mode 100644
index 0000000..6813066
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.css.core_0.10.2.v20120912-132817.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.css.swt.theme_0.9.4.v20130123-162658.jar b/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.css.swt.theme_0.9.4.v20130123-162658.jar
new file mode 100644
index 0000000..92c473e
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.css.swt.theme_0.9.4.v20130123-162658.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.css.swt_0.10.3.v20130123-162658.jar b/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.css.swt_0.10.3.v20130123-162658.jar
new file mode 100644
index 0000000..e03ca93
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.css.swt_0.10.3.v20130123-162658.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.di_0.10.1.v20120523-1955.jar b/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.di_0.10.1.v20120523-1955.jar
new file mode 100644
index 0000000..36e32e3
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.di_0.10.1.v20120523-1955.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.model.workbench_0.10.1.v20120523-1955.jar b/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.model.workbench_0.10.1.v20120523-1955.jar
new file mode 100644
index 0000000..b877493
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.model.workbench_0.10.1.v20120523-1955.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.services_0.10.3.v20130123-162658.jar b/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.services_0.10.3.v20130123-162658.jar
new file mode 100644
index 0000000..b85d02f
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.services_0.10.3.v20130123-162658.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.widgets_0.12.3.v20130123-162658.jar b/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.widgets_0.12.3.v20130123-162658.jar
new file mode 100644
index 0000000..f6eb138
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.widgets_0.12.3.v20130123-162658.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench.addons.swt_0.10.3.v20130124-185622.jar b/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench.addons.swt_0.10.3.v20130124-185622.jar
new file mode 100644
index 0000000..7c439b6
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench.addons.swt_0.10.3.v20130124-185622.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench.renderers.swt_0.10.3.v20130124-170312.jar b/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench.renderers.swt_0.10.3.v20130124-170312.jar
new file mode 100644
index 0000000..97a9c31
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench.renderers.swt_0.10.3.v20130124-170312.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench.swt_0.10.3.v20130124-133900.jar b/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench.swt_0.10.3.v20130124-133900.jar
new file mode 100644
index 0000000..501eabe
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench.swt_0.10.3.v20130124-133900.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench3_0.12.0.v20120521-2329.jar b/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench3_0.12.0.v20120521-2329.jar
new file mode 100644
index 0000000..54ab414
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench3_0.12.0.v20120521-2329.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench_0.11.0.v20130125-100758.jar b/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench_0.11.0.v20130125-100758.jar
new file mode 100644
index 0000000..8ef7a2d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench_0.11.0.v20130125-100758.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ecf.filetransfer_5.0.0.v20120610-1946.jar b/lib/monitor-x86_64/plugins/org.eclipse.ecf.filetransfer_5.0.0.v20120610-1946.jar
new file mode 100644
index 0000000..37e671c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ecf.filetransfer_5.0.0.v20120610-1946.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ecf.identity_3.1.200.v20120610-1946.jar b/lib/monitor-x86_64/plugins/org.eclipse.ecf.identity_3.1.200.v20120610-1946.jar
new file mode 100644
index 0000000..c4326c7
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ecf.identity_3.1.200.v20120610-1946.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ecf.provider.filetransfer.httpclient.ssl_1.0.0.v20120610-1946.jar b/lib/monitor-x86_64/plugins/org.eclipse.ecf.provider.filetransfer.httpclient.ssl_1.0.0.v20120610-1946.jar
new file mode 100644
index 0000000..322b505
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ecf.provider.filetransfer.httpclient.ssl_1.0.0.v20120610-1946.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ecf.provider.filetransfer.httpclient_4.0.200.v20120610-1946.jar b/lib/monitor-x86_64/plugins/org.eclipse.ecf.provider.filetransfer.httpclient_4.0.200.v20120610-1946.jar
new file mode 100644
index 0000000..b693989
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ecf.provider.filetransfer.httpclient_4.0.200.v20120610-1946.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ecf.provider.filetransfer.ssl_1.0.0.v20120610-1946.jar b/lib/monitor-x86_64/plugins/org.eclipse.ecf.provider.filetransfer.ssl_1.0.0.v20120610-1946.jar
new file mode 100644
index 0000000..e7575bb
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ecf.provider.filetransfer.ssl_1.0.0.v20120610-1946.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ecf.provider.filetransfer_3.2.0.v20120610-1946.jar b/lib/monitor-x86_64/plugins/org.eclipse.ecf.provider.filetransfer_3.2.0.v20120610-1946.jar
new file mode 100644
index 0000000..dc5ac52
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ecf.provider.filetransfer_3.2.0.v20120610-1946.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ecf.ssl_1.0.100.v20120610-1946.jar b/lib/monitor-x86_64/plugins/org.eclipse.ecf.ssl_1.0.100.v20120610-1946.jar
new file mode 100644
index 0000000..38eceec
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ecf.ssl_1.0.100.v20120610-1946.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ecf_3.1.300.v20120610-1946.jar b/lib/monitor-x86_64/plugins/org.eclipse.ecf_3.1.300.v20120610-1946.jar
new file mode 100644
index 0000000..727dffc
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ecf_3.1.300.v20120610-1946.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.emf.common_2.8.0.v20130125-0546.jar b/lib/monitor-x86_64/plugins/org.eclipse.emf.common_2.8.0.v20130125-0546.jar
new file mode 100644
index 0000000..c892801
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.emf.common_2.8.0.v20130125-0546.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.emf.ecore.change_2.8.0.v20130125-0546.jar b/lib/monitor-x86_64/plugins/org.eclipse.emf.ecore.change_2.8.0.v20130125-0546.jar
new file mode 100644
index 0000000..87a6ddc
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.emf.ecore.change_2.8.0.v20130125-0546.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.emf.ecore.xmi_2.8.1.v20130125-0546.jar b/lib/monitor-x86_64/plugins/org.eclipse.emf.ecore.xmi_2.8.1.v20130125-0546.jar
new file mode 100644
index 0000000..6b28142
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.emf.ecore.xmi_2.8.1.v20130125-0546.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.emf.ecore_2.8.3.v20130125-0546.jar b/lib/monitor-x86_64/plugins/org.eclipse.emf.ecore_2.8.3.v20130125-0546.jar
new file mode 100644
index 0000000..57796e1
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.emf.ecore_2.8.3.v20130125-0546.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.app_1.3.100.v20120522-1841.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.app_1.3.100.v20120522-1841.jar
new file mode 100644
index 0000000..e3cf1f1
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.app_1.3.100.v20120522-1841.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.bidi_0.9.100.v20121107-021609.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.bidi_0.9.100.v20121107-021609.jar
new file mode 100644
index 0000000..e08a821
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.bidi_0.9.100.v20121107-021609.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.common_3.6.100.v20120522-1841.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.common_3.6.100.v20120522-1841.jar
new file mode 100644
index 0000000..672f68a
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.common_3.6.100.v20120522-1841.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.console_1.0.0.v20120522-1841.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.console_1.0.0.v20120522-1841.jar
new file mode 100644
index 0000000..ff1665b
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.console_1.0.0.v20120522-1841.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.ds_1.4.1.v20120926-201320.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.ds_1.4.1.v20120926-201320.jar
new file mode 100644
index 0000000..94acfe1
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.ds_1.4.1.v20120926-201320.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.event_1.2.200.v20120522-2049.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.event_1.2.200.v20120522-2049.jar
new file mode 100644
index 0000000..a423b3b
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.event_1.2.200.v20120522-2049.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.frameworkadmin.equinox_1.0.400.v20120913-155709.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.frameworkadmin.equinox_1.0.400.v20120913-155709.jar
new file mode 100644
index 0000000..56be80c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.frameworkadmin.equinox_1.0.400.v20120913-155709.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.frameworkadmin_2.0.100.v20120913-155515.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.frameworkadmin_2.0.100.v20120913-155515.jar
new file mode 100644
index 0000000..7947fc2
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.frameworkadmin_2.0.100.v20120913-155515.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.http.jetty_3.0.1.v20121109-203239.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.http.jetty_3.0.1.v20121109-203239.jar
new file mode 100644
index 0000000..79d899e
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.http.jetty_3.0.1.v20121109-203239.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.http.registry_1.1.200.v20120912-130548.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.http.registry_1.1.200.v20120912-130548.jar
new file mode 100644
index 0000000..680ad31
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.http.registry_1.1.200.v20120912-130548.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.http.servlet_1.1.300.v20120912-130548.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.http.servlet_1.1.300.v20120912-130548.jar
new file mode 100644
index 0000000..3ad9c89
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.http.servlet_1.1.300.v20120912-130548.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.jsp.jasper.registry_1.0.300.v20120912-130548.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.jsp.jasper.registry_1.0.300.v20120912-130548.jar
new file mode 100644
index 0000000..56dd370
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.jsp.jasper.registry_1.0.300.v20120912-130548.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.jsp.jasper_1.0.400.v20120912-130548.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.jsp.jasper_1.0.400.v20120912-130548.jar
new file mode 100644
index 0000000..a07c8a8
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.jsp.jasper_1.0.400.v20120912-130548.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/META-INF/ECLIPSE_.RSA b/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..8eb8fc1
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/META-INF/ECLIPSE_.SF b/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..58f61cf
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/META-INF/ECLIPSE_.SF
@@ -0,0 +1,17 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: 52mOafYQZAjEBYR8rKVB6wWYCeo=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: nfmegrTLYcYh787FCmORo8DHyJM=

+

+Name: launcher.gtk.linux.x86_64.properties

+SHA1-Digest: q+PkqUwzPiV78FKnqpp1D3EP3LA=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=

+

+Name: about.html

+SHA1-Digest: xGcp/Hbq/ywyvVWkPzD/2vkIzdY=

+

+Name: eclipse_1502.so

+SHA1-Digest: lt0nWckoTEjbd1Qyekxzg4o6UtE=

+

diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/META-INF/MANIFEST.MF b/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..08ae778
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/META-INF/MANIFEST.MF
@@ -0,0 +1,29 @@
+Manifest-Version: 1.0

+Eclipse-PlatformFilter: (& (osgi.ws=gtk) (osgi.os=linux) (osgi.arch=x8

+ 6_64))

+Bundle-Vendor: %providerName

+Bundle-Localization: launcher.gtk.linux.x86_64

+Fragment-Host: org.eclipse.equinox.launcher;bundle-version="[1.0.0,1.4

+ .0)"

+Bundle-Name: %pluginName

+Bundle-SymbolicName: org.eclipse.equinox.launcher.gtk.linux.x86_64;sin

+ gleton:=true

+Eclipse-BundleShape: dir

+Eclipse-SourceReferences: scm:git:git://git.eclipse.org/gitroot/equino

+ x/rt.equinox.framework.git;path="bundles/org.eclipse.equinox.launcher

+ .gtk.linux.x86_64";tag=v20120913-144807

+Bundle-Version: 1.1.200.v20120913-144807

+Bundle-ManifestVersion: 2

+

+Name: launcher.gtk.linux.x86_64.properties

+SHA1-Digest: F3xLFi7jsuw2uIczSxG47RIa+IQ=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=

+

+Name: eclipse_1502.so

+SHA1-Digest: 1Uh3oZpMlLDzJJSNsauCNrTslXE=

+

+Name: about.html

+SHA1-Digest: a9lDHrGuLPkvHBUhsqWU+V2mhPw=

+

diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/META-INF/eclipse.inf b/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/about.html b/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/about.html
new file mode 100644
index 0000000..395df3b
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/about.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
+<title>About</title>
+</head>
+<body lang="EN-US">
+<h2>About This Content</h2>
+
+<p>June 5, 2006</p>	
+<h3>License</h3>
+
+<p>The Eclipse Foundation makes available all content in this plug-in (&quot;Content&quot;).  
+Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the
+Eclipse Public License Version 1.0 (&quot;EPL&quot;).  A copy of the EPL is available 
+at <a href="http://www.eclipse.org/org/documents/epl-v10.php">http://www.eclipse.org/legal/epl-v10.html</a>.
+For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>If you did not receive this Content directly from the Eclipse Foundation, the Content is 
+being redistributed by another party (&quot;Redistributor&quot;) and different terms and conditions may
+apply to your use of any object code in the Content.  Check the Redistributor&rsquo;s license 
+that was provided with the Content.  If no such license exists, contact the Redistributor.  Unless otherwise
+indicated below, the terms and conditions of the EPL still apply to any source code in the Content
+and such source code may be obtained at <a href="http://www.eclipse.org/">http://www.eclipse.org</a>.</p>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/eclipse_1502.so b/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/eclipse_1502.so
new file mode 100644
index 0000000..32cd3d7
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/eclipse_1502.so
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/launcher.gtk.linux.x86_64.properties b/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/launcher.gtk.linux.x86_64.properties
new file mode 100644
index 0000000..9b101ff
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/launcher.gtk.linux.x86_64.properties
@@ -0,0 +1,12 @@
+###############################################################################
+# Copyright (c) 2007, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+pluginName = Equinox Launcher Linux X86_64 Fragment
+providerName = Eclipse.org - Equinox
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar
new file mode 100644
index 0000000..710c3db
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.artifact.repository_1.1.200.v20120430-1959.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.artifact.repository_1.1.200.v20120430-1959.jar
new file mode 100644
index 0000000..0a59302
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.artifact.repository_1.1.200.v20120430-1959.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.console_1.0.300.v20120429-0125.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.console_1.0.300.v20120429-0125.jar
new file mode 100644
index 0000000..35eaa3a
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.console_1.0.300.v20120429-0125.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.core_2.2.0.v20120430-0525.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.core_2.2.0.v20120430-0525.jar
new file mode 100644
index 0000000..4fdada6
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.core_2.2.0.v20120430-0525.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.director.app_1.0.300.v20120428-0517.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.director.app_1.0.300.v20120428-0517.jar
new file mode 100644
index 0000000..d2f419b
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.director.app_1.0.300.v20120428-0517.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.director_2.2.0.v20120524-0542.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.director_2.2.0.v20120524-0542.jar
new file mode 100644
index 0000000..ce4323b
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.director_2.2.0.v20120524-0542.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.directorywatcher_1.0.300.v20110808-1657.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.directorywatcher_1.0.300.v20110808-1657.jar
new file mode 100644
index 0000000..fa9fcbe
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.directorywatcher_1.0.300.v20110808-1657.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.engine_2.2.0.v20130121-021919.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.engine_2.2.0.v20130121-021919.jar
new file mode 100644
index 0000000..6ca6879
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.engine_2.2.0.v20130121-021919.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.extensionlocation_1.2.100.v20110808-1657.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.extensionlocation_1.2.100.v20110808-1657.jar
new file mode 100644
index 0000000..92d07f3
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.extensionlocation_1.2.100.v20110808-1657.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.garbagecollector_1.0.200.v20110808-1657.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.garbagecollector_1.0.200.v20110808-1657.jar
new file mode 100644
index 0000000..726251e
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.garbagecollector_1.0.200.v20110808-1657.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.jarprocessor_1.0.200.v20110808-1657.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.jarprocessor_1.0.200.v20110808-1657.jar
new file mode 100644
index 0000000..1a5f3a8
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.jarprocessor_1.0.200.v20110808-1657.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.metadata.repository_1.2.100.v20120524-1717.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.metadata.repository_1.2.100.v20120524-1717.jar
new file mode 100644
index 0000000..3c79de7
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.metadata.repository_1.2.100.v20120524-1717.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.metadata_2.1.0.v20120430-2001.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.metadata_2.1.0.v20120430-2001.jar
new file mode 100644
index 0000000..7b03599
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.metadata_2.1.0.v20120430-2001.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.operations_2.2.0.v20130119-010614.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.operations_2.2.0.v20130119-010614.jar
new file mode 100644
index 0000000..0a6ca98
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.operations_2.2.0.v20130119-010614.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.publisher.eclipse_1.1.0.v20120913-155635.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.publisher.eclipse_1.1.0.v20120913-155635.jar
new file mode 100644
index 0000000..a4f52bd
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.publisher.eclipse_1.1.0.v20120913-155635.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.publisher_1.2.0.v20121002-080415.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.publisher_1.2.0.v20121002-080415.jar
new file mode 100644
index 0000000..d7fe853
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.publisher_1.2.0.v20121002-080415.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ql_2.0.100.v20110808-1657.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ql_2.0.100.v20110808-1657.jar
new file mode 100644
index 0000000..b8c2e22
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ql_2.0.100.v20110808-1657.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.reconciler.dropins_1.1.200.v20120301-2145.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.reconciler.dropins_1.1.200.v20120301-2145.jar
new file mode 100644
index 0000000..3eee98e
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.reconciler.dropins_1.1.200.v20120301-2145.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.repository.tools_2.0.100.v20120501-1314.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.repository.tools_2.0.100.v20120501-1314.jar
new file mode 100644
index 0000000..aa6dae8
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.repository.tools_2.0.100.v20120501-1314.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.repository_2.2.0.v20120524-1945.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.repository_2.2.0.v20120524-1945.jar
new file mode 100644
index 0000000..9df9864
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.repository_2.2.0.v20120524-1945.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.touchpoint.eclipse_2.1.100.v20120428-0117.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.touchpoint.eclipse_2.1.100.v20120428-0117.jar
new file mode 100644
index 0000000..9356ca5
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.touchpoint.eclipse_2.1.100.v20120428-0117.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.touchpoint.natives_1.1.0.v20130121-021919.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.touchpoint.natives_1.1.0.v20130121-021919.jar
new file mode 100644
index 0000000..6f3dab2
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.touchpoint.natives_1.1.0.v20130121-021919.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.transport.ecf_1.0.100.v20120913-155635.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.transport.ecf_1.0.100.v20120913-155635.jar
new file mode 100644
index 0000000..2d6bd8a
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.transport.ecf_1.0.100.v20120913-155635.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ui.importexport_1.0.1.v20120913-155635.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ui.importexport_1.0.1.v20120913-155635.jar
new file mode 100644
index 0000000..79468eb
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ui.importexport_1.0.1.v20120913-155635.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ui.sdk.scheduler_1.1.0.v20110815-1744.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ui.sdk.scheduler_1.1.0.v20110815-1744.jar
new file mode 100644
index 0000000..5dcabb2
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ui.sdk.scheduler_1.1.0.v20110815-1744.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ui.sdk_1.0.200.v20120515-1650.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ui.sdk_1.0.200.v20120515-1650.jar
new file mode 100644
index 0000000..29f4174
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ui.sdk_1.0.200.v20120515-1650.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ui_2.2.0.v20130119-010614.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ui_2.2.0.v20130119-010614.jar
new file mode 100644
index 0000000..ab61b30
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ui_2.2.0.v20130119-010614.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.updatechecker_1.1.200.v20110808-1657.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.updatechecker_1.1.200.v20110808-1657.jar
new file mode 100644
index 0000000..2acbd64
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.updatechecker_1.1.200.v20110808-1657.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.updatesite_1.0.400.v20120412-1615.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.updatesite_1.0.400.v20120412-1615.jar
new file mode 100644
index 0000000..187af2d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.updatesite_1.0.400.v20120412-1615.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.preferences_3.5.1.v20121031-182809.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.preferences_3.5.1.v20121031-182809.jar
new file mode 100644
index 0000000..fd83621
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.preferences_3.5.1.v20121031-182809.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.registry_3.5.200.v20120522-1841.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.registry_3.5.200.v20120522-1841.jar
new file mode 100644
index 0000000..755ba79
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.registry_3.5.200.v20120522-1841.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.security.ui_1.1.100.v20120522-2049.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.security.ui_1.1.100.v20120522-2049.jar
new file mode 100644
index 0000000..087e6eb
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.security.ui_1.1.100.v20120522-2049.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.security_1.1.100.v20120522-1841.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.security_1.1.100.v20120522-1841.jar
new file mode 100644
index 0000000..f09f20c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.security_1.1.100.v20120522-1841.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20110808-1657.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20110808-1657.jar
new file mode 100644
index 0000000..2b8465d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20110808-1657.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.simpleconfigurator_1.0.301.v20120914-163612.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.simpleconfigurator_1.0.301.v20120914-163612.jar
new file mode 100644
index 0000000..ef63f9d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.simpleconfigurator_1.0.301.v20120914-163612.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.equinox.util_1.0.400.v20120917-192807.jar b/lib/monitor-x86_64/plugins/org.eclipse.equinox.util_1.0.400.v20120917-192807.jar
new file mode 100644
index 0000000..e81bb6a
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.equinox.util_1.0.400.v20120917-192807.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.help_3.6.0.v20120912-134126.jar b/lib/monitor-x86_64/plugins/org.eclipse.help_3.6.0.v20120912-134126.jar
new file mode 100644
index 0000000..79c6dc3
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.help_3.6.0.v20120912-134126.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.jetty.continuation_8.1.3.v20120522.jar b/lib/monitor-x86_64/plugins/org.eclipse.jetty.continuation_8.1.3.v20120522.jar
new file mode 100644
index 0000000..393dcf3
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.jetty.continuation_8.1.3.v20120522.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.jetty.http_8.1.3.v20120522.jar b/lib/monitor-x86_64/plugins/org.eclipse.jetty.http_8.1.3.v20120522.jar
new file mode 100644
index 0000000..b57c753
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.jetty.http_8.1.3.v20120522.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.jetty.io_8.1.3.v20120522.jar b/lib/monitor-x86_64/plugins/org.eclipse.jetty.io_8.1.3.v20120522.jar
new file mode 100644
index 0000000..9081be5
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.jetty.io_8.1.3.v20120522.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.jetty.security_8.1.3.v20120522.jar b/lib/monitor-x86_64/plugins/org.eclipse.jetty.security_8.1.3.v20120522.jar
new file mode 100644
index 0000000..0c592c8
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.jetty.security_8.1.3.v20120522.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.jetty.servlet_8.1.3.v20120522.jar b/lib/monitor-x86_64/plugins/org.eclipse.jetty.servlet_8.1.3.v20120522.jar
new file mode 100644
index 0000000..63eefd4
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.jetty.servlet_8.1.3.v20120522.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.jetty.util_8.1.3.v20120522.jar b/lib/monitor-x86_64/plugins/org.eclipse.jetty.util_8.1.3.v20120522.jar
new file mode 100644
index 0000000..1bb3891
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.jetty.util_8.1.3.v20120522.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.jface.databinding_1.6.0.v20120912-132807.jar b/lib/monitor-x86_64/plugins/org.eclipse.jface.databinding_1.6.0.v20120912-132807.jar
new file mode 100644
index 0000000..7617f9e
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.jface.databinding_1.6.0.v20120912-132807.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.jface.text_3.8.2.v20121126-164145.jar b/lib/monitor-x86_64/plugins/org.eclipse.jface.text_3.8.2.v20121126-164145.jar
new file mode 100644
index 0000000..ce660a7
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.jface.text_3.8.2.v20121126-164145.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.jface_3.8.102.v20130123-162658.jar b/lib/monitor-x86_64/plugins/org.eclipse.jface_3.8.102.v20130123-162658.jar
new file mode 100644
index 0000000..2181fe8
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.jface_3.8.102.v20130123-162658.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.jsch.core_1.1.400.v20120522-1148.jar b/lib/monitor-x86_64/plugins/org.eclipse.jsch.core_1.1.400.v20120522-1148.jar
new file mode 100644
index 0000000..e4b1890
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.jsch.core_1.1.400.v20120522-1148.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.jsch.ui_1.1.400.v20120522-1148.jar b/lib/monitor-x86_64/plugins/org.eclipse.jsch.ui_1.1.400.v20120522-1148.jar
new file mode 100644
index 0000000..a874129
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.jsch.ui_1.1.400.v20120522-1148.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ltk.core.refactoring_3.6.0.v20120523-1543.jar b/lib/monitor-x86_64/plugins/org.eclipse.ltk.core.refactoring_3.6.0.v20120523-1543.jar
new file mode 100644
index 0000000..5065f89
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ltk.core.refactoring_3.6.0.v20120523-1543.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ltk.ui.refactoring_3.7.0.v20120523-1543.jar b/lib/monitor-x86_64/plugins/org.eclipse.ltk.ui.refactoring_3.7.0.v20120523-1543.jar
new file mode 100644
index 0000000..f9531eb
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ltk.ui.refactoring_3.7.0.v20120523-1543.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.osgi.services_3.3.100.v20120522-1822.jar b/lib/monitor-x86_64/plugins/org.eclipse.osgi.services_3.3.100.v20120522-1822.jar
new file mode 100644
index 0000000..1be0d15
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.osgi.services_3.3.100.v20120522-1822.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.osgi.util_3.2.300.v20120913-144807.jar b/lib/monitor-x86_64/plugins/org.eclipse.osgi.util_3.2.300.v20120913-144807.jar
new file mode 100644
index 0000000..7ee59d1
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.osgi.util_3.2.300.v20120913-144807.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.osgi_3.8.2.v20130124-134944.jar b/lib/monitor-x86_64/plugins/org.eclipse.osgi_3.8.2.v20130124-134944.jar
new file mode 100644
index 0000000..47b3653
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.osgi_3.8.2.v20130124-134944.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/.api_description b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/.api_description
new file mode 100644
index 0000000..7825afa
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/.api_description
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<component name="org.eclipse.platform_4.2.2.v201302041200" version="1.2">
+    <plugin id="org.eclipse.platform_4.2.2.v201302041200"/>
+</component>
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/LegacyIDE.e4xmi b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/LegacyIDE.e4xmi
new file mode 100644
index 0000000..be4bfed
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/LegacyIDE.e4xmi
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="ASCII"?>
+<application:Application xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:application="http://www.eclipse.org/ui/2010/UIModel/application" xmlns:basic="http://www.eclipse.org/ui/2010/UIModel/application/ui/basic" xmlns:menu="http://www.eclipse.org/ui/2010/UIModel/application/ui/menu" xsi:schemaLocation="http://www.eclipse.org/ui/2010/UIModel/application/ui/basic http://www.eclipse.org/ui/2010/UIModel/application#//ui/basic http://www.eclipse.org/ui/2010/UIModel/application/ui/menu http://www.eclipse.org/ui/2010/UIModel/application#//ui/menu" xmi:id="org.eclipse.e4.legacy.ide.application" elementId="org.eclipse.e4.legacy.ide.application" bindingContexts="_SeXUHO8EEd6BC9cDb6iV7y">
+  <children xsi:type="basic:TrimmedWindow" xmi:id="IDEWindow" elementId="IDEWindow" label="%trimmedwindow.label.eclipseSDK" width="1024" height="768">
+  </children>
+  <handlers xmi:id="_UW9TY_r3Ed6gmo7caOxU9g" elementId="_UW9TY_r3Ed6gmo7caOxU9g" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.ExitHandler" command="e4.exit"/>
+  <handlers xmi:id="_BESTZfr3Ed6gmo7caOxU04" elementId="_BESTZfr3Ed6gmo7caOxU04" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.swt/org.eclipse.e4.ui.internal.workbench.swt.handlers.ShowViewHandler" command="e4.show.view"/>
+  <handlers xmi:id="_eTBRgAFSEd-Z8rQksLwRYw" elementId="org.eclipse.e4.ui.saveHandler" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.handlers.SaveHandler" command="_jR5mUAFSEd-Z8rQksLwRYw"/>
+  <handlers xmi:id="_eTBRgAFSEd-Z8rQksLwRYx" elementId="org.eclipse.e4.ui.saveAllHandler" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.handlers.SaveAllHandler" command="_jR5mUAFSEd-Z8rQksLwRYx"/>
+  <bindingTables xmi:id="_SeXUEO8EEd6FC9cDb6iV7x" bindingContext="_SeXUHO8EEd6BC9cDb6iV7y">
+    <bindings xmi:id="_UW9TZfr3Ed6gmo7caOxU9g" keySequence="CTRL+Q" elementId="_UW9TZfr3Ed6gmo7caOxU9g" command="e4.exit"/>
+    <bindings xmi:id="_oRr6EAFSEd-Z8rQksLwRYw" keySequence="CTRL+S" elementId="_oRr6EAFSEd-Z8rQksLwRYw" command="_jR5mUAFSEd-Z8rQksLwRYw"/>
+    <bindings xmi:id="_oRr6EAFSEd-Z8rQksLwRYx" keySequence="CTRL+SHIFT+S" command="_jR5mUAFSEd-Z8rQksLwRYx"/>
+  </bindingTables>
+  <rootContext xmi:id="_SeXUHO8EEd6BC9cDb6iV7y" elementId="org.eclipse.ui.contexts.dialogAndWindow" name="%bindingcontext.name.dialogAndWindows">
+    <children xmi:id="_SeXUEO8EEd6FC9cDb6iV7w" elementId="org.eclipse.ui.contexts.window" name="%bindingcontext.name.windows">
+      <children xmi:id="_SeXUEO8EEd6FC9cDb6yV7x" elementId="org.eclipse.e4.ui.contexts.views" name="%bindingcontext.name.bindingView"/>
+    </children>
+    <children xmi:id="_SeXUEO8EEd6FC9cDb6iV7x" elementId="org.eclipse.ui.contexts.dialog" name="%bindingcontext.name.dialogs"/>
+  </rootContext>
+  <commands xmi:id="e4.exit" elementId="e4.exit" commandName="%command.name.exit" description=""/>
+  <commands xmi:id="e4.show.view" elementId="e4.show.view" commandName="%command.name.showView">
+    <parameters xmi:id="_oRr6EAFSEd-Z8rQksLwRYz" elementId="org.eclipse.ui.views.showView.viewId" name="View"/>
+  </commands>
+  <commands xmi:id="_jR5mUAFSEd-Z8rQksLwRYw" elementId="org.eclipse.e4.ui.saveCommands" commandName="%command.name.save"/>
+  <commands xmi:id="_jR5mUAFSEd-Z8rQksLwRYx" elementId="org.eclipse.e4.ui.saveAllCommands" commandName="%command.name.saveAll"/>
+  <addons xmi:id="_XGB3wPZlEd-XstlTZ6nTXg" elementId="org.eclipse.e4.core.commands.service" contributionURI="bundleclass://org.eclipse.e4.core.commands/org.eclipse.e4.core.commands.CommandServiceAddon"/>
+  <addons xmi:id="_XGB3wPZlEd-XstlTZ6nTXh" elementId="org.eclipse.e4.ui.contexts.service" contributionURI="bundleclass://org.eclipse.e4.ui.services/org.eclipse.e4.ui.services.ContextServiceAddon"/>
+  <addons xmi:id="_XGB3wPZlEd-XstlTZ6nTXi" elementId="org.eclipse.e4.ui.bindings.service" contributionURI="bundleclass://org.eclipse.e4.ui.bindings/org.eclipse.e4.ui.bindings.BindingServiceAddon"/>
+  <addons xmi:id="_LK0NgPZmEd-XstlTZ6nTXj" elementId="org.eclipse.e4.ui.workbench.commands.model" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.addons.CommandProcessingAddon"/>
+  <addons xmi:id="_LK0NgPZmEd-XstlTZ6nTXk" elementId="org.eclipse.e4.ui.workbench.contexts.model" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.addons.ContextProcessingAddon"/>
+  <addons xmi:id="_LK0NgPZmEd-XstlTZ6nTXl" elementId="org.eclipse.e4.ui.workbench.bindings.model" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.swt/org.eclipse.e4.ui.workbench.swt.util.BindingProcessingAddon"/>
+  <addons xmi:id="_XwQYkE2EEd-DfN2vYY4Lew" elementId="Cleanup Addon" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.cleanupaddon.CleanupAddon"/>
+  <addons xmi:id="_bqcWME2EEd-DfN2vYY4Lew" elementId="DnD Addon" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.dndaddon.DnDAddon"/>
+  <addons xmi:id="_7GC6sGp-Ed-QyNZjH9g15Q" elementId="MinMax Addon" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon"/>
+</application:Application>
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/ECLIPSE_.RSA b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..4e0b9d1
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/ECLIPSE_.SF b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..4243450
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/ECLIPSE_.SF
@@ -0,0 +1,263 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: ERdR6aVOcbdOCCJp6PurPZkYvG8=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: OHiruwURt2tkChZ88Ilkxg9N/n4=

+

+Name: images/topiclabel/wn_migrate48_hov.gif

+SHA1-Digest: PiwFgHazgc8SIGl/oti+P2zLKsc=

+

+Name: intro/css/whatsnew.properties

+SHA1-Digest: t99cjGj5mTzuUg2do0teAP6fzzA=

+

+Name: eclipse16.gif

+SHA1-Digest: H8kWdGDjph57Qo2qbu1tI7gP5/I=

+

+Name: images/gtkTSFrame.png

+SHA1-Digest: lNsagip705L28766XqzLBHTt+lc=

+

+Name: about.ini

+SHA1-Digest: 3tRVmcACc9ekdbjEuHD+KlN4gfU=

+

+Name: macosx_narrow_book.css

+SHA1-Digest: 8J/M6n+c7VFylsVAZdhTlZ+vXz0=

+

+Name: images/topiclabel/ov_wbbasics48.gif

+SHA1-Digest: oWojUiR1WBlGtZEsM7txIHQ3Q9E=

+

+Name: css/e4_default.css

+SHA1-Digest: I9HSkYjy353ggHaxaHM2NtQHQ0Q=

+

+Name: images/win7Handle.png

+SHA1-Digest: RBjnm1FGs3nmck1LG1k9mVapN8c=

+

+Name: images/win7TSFrame.png

+SHA1-Digest: EPju6HYRlpTQdn4ZWWaL2oQ/yrs=

+

+Name: LegacyIDE.e4xmi

+SHA1-Digest: YAF314wdYO4RZeSEVVOgzx2cFZM=

+

+Name: images/winXPOlive.png

+SHA1-Digest: /dFSDq/T8U9g4GaR09CL3lhEmsE=

+

+Name: intro/css/overview.properties

+SHA1-Digest: XTV3uTDwqp1dy5+XY/Q5I1HpnOY=

+

+Name: images/topiclabel/ov_wbbasics48_hov.gif

+SHA1-Digest: TQSe+zq4qkTGG/6fHCtrmcKnPK4=

+

+Name: platform.jar

+SHA1-Digest: D0IUtWfa5j2XMOXHMFGML/NEJAo=

+

+Name: eclipse32.png

+SHA1-Digest: AsaOXGbLLaVxPpq8N0hfgWwXxb0=

+

+Name: css/e4_default_winxp_olv.css

+SHA1-Digest: f/+LVk1MqEiaTlx16kbwn3PpS6Y=

+

+Name: intro-eclipse.png

+SHA1-Digest: CJvW3yEUeROOUEK4ZgBcmly0Z1k=

+

+Name: css/e4_default_mac.css

+SHA1-Digest: 4NINLFtDrzw/BQ/Gft++SuSM5Zw=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=

+

+Name: images/topiclabel/ov_teamsup48.gif

+SHA1-Digest: OsElRFQSFh3jJgsmon2s9QCfwe4=

+

+Name: about.mappings

+SHA1-Digest: qVqsiW/AgEHaBq8l8H286/NjB80=

+

+Name: images/topiclabel/tu_merge48.gif

+SHA1-Digest: UP3+phgtp3bSprMVq4tSiRIL0JI=

+

+Name: images/topiclabel/arrow.gif

+SHA1-Digest: nJK4gPtQBJLJcQMLOFJXJvK4gLU=

+

+Name: images/dragHandle.png

+SHA1-Digest: lNfkT2YIht+8RAKWluO7N+bk+eY=

+

+Name: images/winXPBluHandle.png

+SHA1-Digest: 1CjJYAt22MCzjzPmBh+2rmLFKMI=

+

+Name: images/macTSFrame.png

+SHA1-Digest: cFsyUNxrLdj04Kx37kiGH3KSHd8=

+

+Name: images/winXPBlue.png

+SHA1-Digest: Tc7M/fv+4ApkXg0UnqPaZ2aZ5MU=

+

+Name: about.properties

+SHA1-Digest: B2e1IuBrBzWSbHRWjjHSxm5cjfA=

+

+Name: helpData.xml

+SHA1-Digest: TZXnzPn4n3gBwQF0ydaxhmY1w3g=

+

+Name: images/topiclabel/ov_teamsup48_hov.gif

+SHA1-Digest: ZKZr1E2Xyo7hieH3Fp+q5NQMPeo=

+

+Name: images/topiclabel/tu_merge48_hov.gif

+SHA1-Digest: xtxSXRHbti1PLVmVeRXavwMzvso=

+

+Name: css/e4_classic_winxp.css

+SHA1-Digest: 2V+wxs2TCKfmuI4wK/2npJq5eWc=

+

+Name: plugin_customization.properties

+SHA1-Digest: /BU7Z7eXbbgW16mEDonqO+Dx+SI=

+

+Name: cheatsheets/cvs_merge.xml

+SHA1-Digest: FaAOvipbrJKzOgrfFooFZ5NVVPQ=

+

+Name: intro/css/tutorials.properties

+SHA1-Digest: 2ipkwKeXHjNzNqDiKumBtEItgyw=

+

+Name: images/macHandle.png

+SHA1-Digest: 9ZpeCfJRwIwzfKtcxGCvXxA/XH4=

+

+Name: images/winClassicTSFrame.png

+SHA1-Digest: bYIjigeu8yZ+v0w6G7kuOI06Su0=

+

+Name: eclipse32.gif

+SHA1-Digest: m+XqY7Ow/523wZ3Mo5NeUYIUA3Q=

+

+Name: plugin_customization.ini

+SHA1-Digest: a/GckqeeBZ+Vm25Dv7v2lBKz7HU=

+

+Name: intro/overviewExtensionContent.xml

+SHA1-Digest: DjMSj7TcD5qaDnzaWjHU2caihuA=

+

+Name: css/e4_default_mru_on_win7.css

+SHA1-Digest: oFqXDb6sSa7XRDk20i69ZezXZlg=

+

+Name: images/winXPHandle.png

+SHA1-Digest: RvBcs+E7ua8p7R6WAeihITCo7w0=

+

+Name: css/e4_classic_win7.css

+SHA1-Digest: DlvxyhZwZatTZdT2efyl0YfcXPc=

+

+Name: images/gtkGrey.png

+SHA1-Digest: Wbj2CSLIIMvC+mpCz/C3ql7pMs4=

+

+Name: images/topiclabel/wn_eclplatform48.gif

+SHA1-Digest: AooAx3UMTLzrMC+eWiCtEgpeRS8=

+

+Name: eclipse48.png

+SHA1-Digest: r7vloezLEByQSRBAUWLnrcCIuSc=

+

+Name: eclipse_lg.gif

+SHA1-Digest: qswGt1E/1bq1Xts719EUvOPBo9U=

+

+Name: images/gtkHandle.png

+SHA1-Digest: UeK2OmJZi7iTP253re8iXj0xdY4=

+

+Name: images/winXPTSFrame.png

+SHA1-Digest: 6H+w4CglVzxPtT+FhyKozWTLmr8=

+

+Name: images/win7.png

+SHA1-Digest: cbJu6wjXexyan1oki8AXgU0rb+M=

+

+Name: plugin.properties

+SHA1-Digest: 0KnPcav4HXWfHUo22AO51I0Lfmc=

+

+Name: images/topiclabel/wn_updates48.gif

+SHA1-Digest: fLSuoNPvkl9STgSftMFToeLhbYo=

+

+Name: images/winClassicHandle.png

+SHA1-Digest: YaCMKtwN879oADa1Mcv7sAo9h6Y=

+

+Name: css/e4_basestyle.css

+SHA1-Digest: un/esnYq2tMNaIA7tbHvbItLTYw=

+

+Name: css/e4_default_winxp_blu.css

+SHA1-Digest: NBxt3jR41yT0mMRACspGWkVghsw=

+

+Name: images/topiclabel/wn_eclplatform48_hov.gif

+SHA1-Digest: DGUWlU5kU62JaCxSPgKE7I5vo9E=

+

+Name: plugin.xml

+SHA1-Digest: Wpm+mXP229iRqHcIi1SOr/3VF/w=

+

+Name: intro/css/overview.css

+SHA1-Digest: QIN/myt3F8vMVNj3t2B3MKZU8uU=

+

+Name: images/topiclabel/wn_updates48_hov.gif

+SHA1-Digest: 4szF/MVsbBym+cGCzZBVaJP/pgc=

+

+Name: introData.xml

+SHA1-Digest: rbdEVtdFXLVuOdrjxm51bMKNzFk=

+

+Name: eclipse48.gif

+SHA1-Digest: Ihjs4HZguOtOUMcamr+GT8QgTiA=

+

+Name: disabled_book.css

+SHA1-Digest: bLpqfhUiGbAbtfx3E0c42hwVP9s=

+

+Name: narrow_book.css

+SHA1-Digest: RwlCfnTG+XygntK3jqGLLuWg2Nc=

+

+Name: eclipse16.png

+SHA1-Digest: hSBGQPWTnl9Je2kVmqPLqOPP12g=

+

+Name: eclipse256.png

+SHA1-Digest: zLt88QkiRs+It2iT5DT83hSwY74=

+

+Name: .api_description

+SHA1-Digest: qAabKOtIRTFbe+lLU9D4LfX7ArE=

+

+Name: images/topiclabel/wn_eclcommunity48.gif

+SHA1-Digest: sWE9Am5FXw787JocFsDVPGGhgg8=

+

+Name: images/topiclabel/tu_checkout48.gif

+SHA1-Digest: 4Mpg1tzRFQZMWH4ZjCoFz80LLWg=

+

+Name: about.html

+SHA1-Digest: xr2qKGgMP52ylX6t87VPIBmazXM=

+

+Name: intro/whatsnewExtensionContent1.xml

+SHA1-Digest: /k6tWIGpGHIMQuX0sWk/97FtgNs=

+

+Name: intro/whatsnewExtensionContent2.xml

+SHA1-Digest: ss0gzaRydrOD9IJgkZjhK3d8wq8=

+

+Name: intro/whatsnewExtensionContent3.xml

+SHA1-Digest: ksAoihbQK4Wv8cQkJtVo7h+e/AY=

+

+Name: images/topiclabel/wn_migrate48.gif

+SHA1-Digest: QRZfRxz+DNtWqcgOeBJWEXCOWcI=

+

+Name: css/e4_default_gtk.css

+SHA1-Digest: 6wm/B7hL/q2vXFg0ZYObfLWPR34=

+

+Name: images/macGrey.png

+SHA1-Digest: twwtkeX4lPiGDAUgioXSTsir9j4=

+

+Name: css/e4_default_win7.css

+SHA1-Digest: RpdtcwxnWzRkCoA3SfHyfk4D9Xk=

+

+Name: intro/css/whatsnew.css

+SHA1-Digest: AdyiXWH4xll/guFkUn+P1Y9xG9M=

+

+Name: intro/tutorialsExtensionContent.xml

+SHA1-Digest: JrYfgCanVcsvNwwdR9WJx1U6Vl4=

+

+Name: cheatsheets/cvs_checkout.xml

+SHA1-Digest: VJonjDQOuxIN4zAmj9Mqd6TO0x0=

+

+Name: images/topiclabel/wn_eclcommunity48_hov.gif

+SHA1-Digest: TChv2jPWCYEyDG6brFi9QNci/zs=

+

+Name: images/topiclabel/tu_checkout48_hov.gif

+SHA1-Digest: L2sDh0tqvIaFQJqBDjV24VFWwgo=

+

+Name: images/winXPBluTSFrame.png

+SHA1-Digest: F8trtuSgW31q6HAV2alypNMXd5A=

+

+Name: intro/css/tutorials.css

+SHA1-Digest: M+MZ4vr9RJTOAUjIC3Qz3p0u6rs=

+

+Name: book.css

+SHA1-Digest: 60Ab1JD4rBjks4ZmsmwkUzsPPC8=

+

+Name: splash.bmp

+SHA1-Digest: XXhVk7MGRKr5MlIWvyNn/hg83ac=

+

diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/MANIFEST.MF b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..b1a2243
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/MANIFEST.MF
@@ -0,0 +1,279 @@
+Manifest-Version: 1.0

+Bundle-Localization: plugin

+Bundle-RequiredExecutionEnvironment: J2SE-1.4,CDC-1.0/Foundation-1.0,J

+ 2SE-1.3

+Bundle-SymbolicName: org.eclipse.platform; singleton:=true

+Eclipse-SourceReferences: scm:git:git://git.eclipse.org/gitroot/platfo

+ rm/eclipse.platform.git;path="platform/org.eclipse.platform";tag=v201

+ 30124-124715

+Require-Bundle: org.eclipse.ui.intro;bundle-version="[3.2.0,4.0.0)",or

+ g.eclipse.ui.cheatsheets;bundle-version="[3.2.0,4.0.0)";resolution:=o

+ ptional,org.eclipse.ui.forms;bundle-version="[3.2.0,4.0.0)";resolutio

+ n:=optional,org.eclipse.ui;bundle-version="[3.2.0,4.0.0)";resolution:

+ =optional,org.eclipse.core.runtime;bundle-version="[3.2.0,4.0.0)"

+Export-Package: org.eclipse.platform.internal;x-internal:=true

+Bundle-Version: 4.2.2.v201302041200

+Bundle-ClassPath: platform.jar

+Bundle-Vendor: %providerName

+Bundle-Name: %pluginName

+Eclipse-BundleShape: dir

+Bundle-ManifestVersion: 2

+

+Name: images/topiclabel/wn_migrate48_hov.gif

+SHA1-Digest: M6zsZ6hi30Dy8VsM/Og4IE9IOkg=

+

+Name: intro/css/whatsnew.properties

+SHA1-Digest: 4nCjPHm7iTBRX2cq5vxBGBYByYU=

+

+Name: eclipse16.gif

+SHA1-Digest: zwt4gz2o7PTRfQDHJimtmymBJo8=

+

+Name: images/gtkTSFrame.png

+SHA1-Digest: 8b0hzV65v6o9x0/8mWk3A8sl4Hg=

+

+Name: about.ini

+SHA1-Digest: ZK6m/9CAhsF/6xAiV7yYXjYLbng=

+

+Name: macosx_narrow_book.css

+SHA1-Digest: jjHm301H2huNyXiXwJbHzgWn0K4=

+

+Name: images/topiclabel/ov_wbbasics48.gif

+SHA1-Digest: 0r8/nIJipGbWXTLidf/qFRtxk88=

+

+Name: css/e4_default.css

+SHA1-Digest: jFe4vzCYprBhckemfwte8nc58cY=

+

+Name: images/win7Handle.png

+SHA1-Digest: twWubAeh9bn9246qAA8F3Ug/5z0=

+

+Name: images/win7TSFrame.png

+SHA1-Digest: UEePCXeNvCU/2TLEhqrkQptOWck=

+

+Name: LegacyIDE.e4xmi

+SHA1-Digest: U16iXOnake2/VYpb1p4HM8VSY5Q=

+

+Name: intro/css/overview.properties

+SHA1-Digest: sR7rB50tGOD19+fqvJ1jGbzo8oY=

+

+Name: images/winXPOlive.png

+SHA1-Digest: LeyuFJ3TC47+y4QpooD4iJNEtmM=

+

+Name: images/topiclabel/ov_wbbasics48_hov.gif

+SHA1-Digest: WHlKtV887rTHYMMuOGAHmtibK5Y=

+

+Name: platform.jar

+SHA1-Digest: ciEsicOarhmxcwox7f6cVEpeV8M=

+

+Name: intro-eclipse.png

+SHA1-Digest: IUrE9u5RnkRx7unbvyyosuGTAOE=

+

+Name: css/e4_default_winxp_olv.css

+SHA1-Digest: 8QGnsvZMMQ1hkioJ313cY3h6huc=

+

+Name: eclipse32.png

+SHA1-Digest: Tet+jRa8Gm9JsW/hWCgO9ayE664=

+

+Name: css/e4_default_mac.css

+SHA1-Digest: cqs3fT4H9kZKj0E8ytz7xlT0ruo=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=

+

+Name: about.mappings

+SHA1-Digest: NtXd0AsBwOcPJVtBX8Pwo65gRa8=

+

+Name: images/topiclabel/ov_teamsup48.gif

+SHA1-Digest: /3k/anFwd5sId2ruDxxEdkjRMm8=

+

+Name: images/topiclabel/tu_merge48.gif

+SHA1-Digest: /3k/anFwd5sId2ruDxxEdkjRMm8=

+

+Name: images/topiclabel/arrow.gif

+SHA1-Digest: iyBS4QdZ6imHjGPw321lqh6SJSo=

+

+Name: images/dragHandle.png

+SHA1-Digest: eNrxIhwedUWxAcz/iz7UAvvgXg4=

+

+Name: images/winXPBluHandle.png

+SHA1-Digest: EP+zIEkA09le7+jTHTcJulbJQzM=

+

+Name: images/macTSFrame.png

+SHA1-Digest: PekW6CYAJ+Zq47ou84K82OV9YDs=

+

+Name: images/winXPBlue.png

+SHA1-Digest: I9bB1J5Q/n/U2CwPQ6H7ETCP9Fs=

+

+Name: about.properties

+SHA1-Digest: JGL216ww5dVm3sYp8EkidZMYe+8=

+

+Name: helpData.xml

+SHA1-Digest: ZR1pFHw9xoMSs25sZ0MO6v4/asI=

+

+Name: images/topiclabel/ov_teamsup48_hov.gif

+SHA1-Digest: tDulFBf6WoQNfzwEyv1Uck54hqk=

+

+Name: images/topiclabel/tu_merge48_hov.gif

+SHA1-Digest: tDulFBf6WoQNfzwEyv1Uck54hqk=

+

+Name: css/e4_classic_winxp.css

+SHA1-Digest: 4kF2VA+qcbkrcY0VGaqzXu42EjU=

+

+Name: plugin_customization.properties

+SHA1-Digest: YD7gZEVzYiOkYd7BfCANIgVRb/Q=

+

+Name: cheatsheets/cvs_merge.xml

+SHA1-Digest: avIFsf3vMC1U32F8qGLxSyq/lpo=

+

+Name: intro/css/tutorials.properties

+SHA1-Digest: EVPXsNdjFZM29pcX0MRbnH8+WOY=

+

+Name: images/macHandle.png

+SHA1-Digest: shGDU1oRr6BWrKxyzq5CV+g53Uw=

+

+Name: images/winClassicTSFrame.png

+SHA1-Digest: npohflUahSspMX9wVHErpcNoAQ0=

+

+Name: eclipse32.gif

+SHA1-Digest: ppkAcrq2pIoBxNI//Z3q3xJRdEY=

+

+Name: plugin_customization.ini

+SHA1-Digest: xmAx4ie434OtxymWwrIRmyqZ9ss=

+

+Name: intro/overviewExtensionContent.xml

+SHA1-Digest: SfOPkWtjJDCFigPMug4SwU76wTo=

+

+Name: css/e4_default_mru_on_win7.css

+SHA1-Digest: ytEGfJ3PX/o67RhwNtQK+O8x04k=

+

+Name: images/winXPHandle.png

+SHA1-Digest: aD5ihrxXxmvS/FbvEkaldGSNuQs=

+

+Name: css/e4_classic_win7.css

+SHA1-Digest: zp1sTNtRlNzZn7MiZ/25jwg+kcA=

+

+Name: images/gtkGrey.png

+SHA1-Digest: 4+t5VfjrQbDtwJA9FLyvnqsW5o0=

+

+Name: images/topiclabel/wn_eclplatform48.gif

+SHA1-Digest: 3nsWBOR6lpxjr+FXTIxLNviYbdQ=

+

+Name: eclipse48.png

+SHA1-Digest: wRYWPRIG/9RrNLHZh4GGFnUMGjQ=

+

+Name: eclipse_lg.gif

+SHA1-Digest: 69MjmTuX2tBydAPuHq7w4/h+T8c=

+

+Name: images/gtkHandle.png

+SHA1-Digest: 6/g5Ixb58lq+MqR+p6fgWS+LShs=

+

+Name: images/winXPTSFrame.png

+SHA1-Digest: Pcfi50OD4cRpF4EX5PwxhcM1h3c=

+

+Name: images/win7.png

+SHA1-Digest: dUay5kpUKKT/ZeY63XkHbLlxtz4=

+

+Name: plugin.properties

+SHA1-Digest: 8XsdsN//y4ahRKLpG+M6Kj/vOy4=

+

+Name: images/topiclabel/wn_updates48.gif

+SHA1-Digest: jZ7rwDl0qk2syJYLk6YYn58pmbk=

+

+Name: images/winClassicHandle.png

+SHA1-Digest: JFATcjcqyduiJVqeDeIbOoc3BY4=

+

+Name: css/e4_basestyle.css

+SHA1-Digest: GlLBw/csE2g2B5Y0p9L5p8MTfBA=

+

+Name: css/e4_default_winxp_blu.css

+SHA1-Digest: +DIieNp/xseF9tdeIVTyu/Rjf3c=

+

+Name: images/topiclabel/wn_eclplatform48_hov.gif

+SHA1-Digest: w7/OBSGFd6+YHONIDeq88ckqLJA=

+

+Name: plugin.xml

+SHA1-Digest: CSz/gQgASDI591MJJs1yMET8QKw=

+

+Name: intro/css/overview.css

+SHA1-Digest: 4vnDNPlsnseQQYHOifEYAOAU+28=

+

+Name: introData.xml

+SHA1-Digest: hRUHRieYHfLpbEmuEpkQGBDq/fU=

+

+Name: images/topiclabel/wn_updates48_hov.gif

+SHA1-Digest: aU4eMLVfJedCANwS4GLHdIfwcLg=

+

+Name: disabled_book.css

+SHA1-Digest: x3/plDo/tiH3FDASeesyGUCF4gM=

+

+Name: eclipse48.gif

+SHA1-Digest: joafzB2KmUajcypuNkoevLaG8oU=

+

+Name: narrow_book.css

+SHA1-Digest: /86jkfITUYJB4OWlA3NEx9IN6zo=

+

+Name: eclipse256.png

+SHA1-Digest: 7KiCNPEKzYy7sq8YFJSsXuQmf/s=

+

+Name: eclipse16.png

+SHA1-Digest: dMO+1jnMMGzYeRFxESUlSACxxEg=

+

+Name: .api_description

+SHA1-Digest: BvrPfAvqQY+G4Fp7iCOwIXfJZH0=

+

+Name: images/topiclabel/wn_eclcommunity48.gif

+SHA1-Digest: a7O8+deDP71UBanvoHQjCgObGqI=

+

+Name: images/topiclabel/tu_checkout48.gif

+SHA1-Digest: huJw6xHMsj2LT1Q3HgsQiEbzNFw=

+

+Name: intro/whatsnewExtensionContent1.xml

+SHA1-Digest: NUBZgy79C5bRW3u9ES+GFMtqi40=

+

+Name: about.html

+SHA1-Digest: +/ZbB4iOoCwiJmEdG+67tzzJKc4=

+

+Name: intro/whatsnewExtensionContent2.xml

+SHA1-Digest: YEikkKc+ZTBDkNSqaSvABYsmuXs=

+

+Name: intro/whatsnewExtensionContent3.xml

+SHA1-Digest: gkjZFF3rYl6EWVEwYZwk4i59j44=

+

+Name: images/topiclabel/wn_migrate48.gif

+SHA1-Digest: huJw6xHMsj2LT1Q3HgsQiEbzNFw=

+

+Name: css/e4_default_gtk.css

+SHA1-Digest: FGe3KCGdrcI+CRDuK0xrB76fTpI=

+

+Name: css/e4_default_win7.css

+SHA1-Digest: URChj9tw7IM/NWMDvZ4TdFjlxdg=

+

+Name: images/macGrey.png

+SHA1-Digest: xClAmpE1oYNRkEk8ktU5gey+jcU=

+

+Name: intro/tutorialsExtensionContent.xml

+SHA1-Digest: pzSSeJDAvRK9lDRPhRYMsfhAv9I=

+

+Name: intro/css/whatsnew.css

+SHA1-Digest: jmuWdg8Bxhr6CT2FH7xspqR8/RE=

+

+Name: cheatsheets/cvs_checkout.xml

+SHA1-Digest: pIAK2OoHSqtHD7eVdgBujxeGs2s=

+

+Name: images/topiclabel/wn_eclcommunity48_hov.gif

+SHA1-Digest: u1+mxDrTyo6yu/dvN/Bh90rSFpk=

+

+Name: intro/css/tutorials.css

+SHA1-Digest: pfL+vsuZVeqHonEoVb6FBRiugts=

+

+Name: images/winXPBluTSFrame.png

+SHA1-Digest: hEZhu5Zb6KTgLN9nmhcA/Mt4BCQ=

+

+Name: images/topiclabel/tu_checkout48_hov.gif

+SHA1-Digest: M6zsZ6hi30Dy8VsM/Og4IE9IOkg=

+

+Name: splash.bmp

+SHA1-Digest: mY5Vf2M7eh6fKVi75hvvTrNZX9s=

+

+Name: book.css

+SHA1-Digest: +jMjY3GD/AZ8AWyoyyzOCICTMJU=

+

diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/eclipse.inf b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/about.html b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/about.html
new file mode 100644
index 0000000..3989f53
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/about.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
+<title>About</title>
+</head>
+<body lang="EN-US">
+<h2>About This Content</h2>
+ 
+<p>May 11, 2006</p>	
+<h3>License</h3>
+
+<p>The Eclipse Foundation makes available all content in this plug-in (&quot;Content&quot;).  Unless otherwise 
+indicated below, the Content is provided to you under the terms and conditions of the
+Eclipse Public License Version 1.0 (&quot;EPL&quot;).  A copy of the EPL is available 
+at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>If you did not receive this Content directly from the Eclipse Foundation, the Content is 
+being redistributed by another party (&quot;Redistributor&quot;) and different terms and conditions may
+apply to your use of any object code in the Content.  Check the Redistributor's license that was 
+provided with the Content.  If no such license exists, contact the Redistributor.  Unless otherwise
+indicated below, the terms and conditions of the EPL still apply to any source code in the Content
+and such source code may be obtained at <a href="http://www.eclipse.org">http://www.eclipse.org</a>.</p>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/about.ini b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/about.ini
new file mode 100644
index 0000000..167f506
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/about.ini
@@ -0,0 +1,25 @@
+# about.ini
+# contains information about a feature
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# "%key" are externalized strings defined in about.properties
+# This file does not need to be translated.
+
+# Property "aboutText" contains blurb for feature details in the "About" 
+# dialog (translated).  Maximum 15 lines and 75 characters per line.
+aboutText=%blurb
+
+# Property "featureImage" contains path to feature image (32x32)
+featureImage=eclipse32.png
+
+# Property "welcomePage" contains path to welcome page (special XML-based format)
+# ($nl$/ prefix to permit locale-specific translations of entire file)
+welcomePage=$nl$/welcome.xml
+
+# Property "welcomePerspective" contains the id of the perspective in which the
+# welcome page is to be opened.
+# optional
+
+# Property "tipsAndTricksHref" contains the Help topic href to a tips and tricks page 
+# optional
+tipsAndTricksHref=/org.eclipse.platform.doc.user/tips/platform_tips.html
+
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/about.mappings b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/about.mappings
new file mode 100644
index 0000000..bfdb3d7
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/about.mappings
@@ -0,0 +1,6 @@
+# about.mappings
+# contains fill-ins for about.properties
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file does not need to be translated.
+
+0=M20130204-1200
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/about.properties b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/about.properties
new file mode 100644
index 0000000..656b62c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/about.properties
@@ -0,0 +1,28 @@
+###############################################################################
+# Copyright (c) 2000, 2013 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# about.properties
+# contains externalized strings for about.ini
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# fill-ins are supplied by about.mappings
+# This file should be translated.
+#
+# Do not translate any values surrounded by {}
+
+blurb=Eclipse Platform\n\
+\n\
+Version: {featureVersion}\n\
+Build id: {0}\n\
+\n\
+(c) Copyright Eclipse contributors and others 2000, 2013.  All rights reserved.\n\
+Visit http://www.eclipse.org/platform\n\
+\n\
+This product includes software developed by the\n\
+Apache Software Foundation http://www.apache.org/
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/book.css b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/book.css
new file mode 100644
index 0000000..f9822b0
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/book.css
@@ -0,0 +1,108 @@
+P.Code {

+	display: block;

+	text-align: left;

+	text-indent: 0.00pt;

+	margin-top: 0.000000pt;

+	margin-bottom: 0.000000pt;

+	margin-right: 0.000000pt;

+	margin-left: 15pt;

+	font-weight: normal;

+	font-style: normal;

+	color: #4444CC;

+	text-decoration: none;

+	vertical-align: baseline;

+	text-transform: none;

+	font-family: "Courier New", Courier, monospace;

+}

+H6.CaptionFigColumn {

+	display: block;

+	text-align: left;

+	text-indent: 0.000000pt;

+	margin-top: 3.000000pt;

+	margin-bottom: 11.000000pt;

+	margin-right: 0.000000pt;

+	margin-left: 0.000000pt;

+	font-size: 75%;

+	font-weight: bold;

+	font-style: Italic;

+	color: #000000;

+	text-decoration: none;

+	vertical-align: baseline;

+	text-transform: none;

+}

+P.Note {

+	display: block;

+	text-align: left;

+	text-indent: 0pt;

+	margin-top: 19.500000pt;

+	margin-bottom: 19.500000pt;

+	margin-right: 0.000000pt;

+	margin-left: 30pt;

+	font-size: 110%;

+	font-weight: normal;

+	font-style: Italic;

+	color: #000000;

+	text-decoration: none;

+	vertical-align: baseline;

+	text-transform: none;

+}

+EM.UILabel {

+	font-weight: Bold;

+	font-style: normal;

+	text-decoration: none;

+	vertical-align: baseline;

+	text-transform: none;

+}

+EM.CodeName {

+	font-weight: Bold;

+	font-style: normal;

+	text-decoration: none;

+	vertical-align: baseline;

+	text-transform: none;

+	font-family: "Courier New", Courier, monospace;

+}

+UL.NavList {

+	margin-left: 1.5em;

+	padding-left: 0px;

+	list-style-type: none;

+}

+

+body, html { border: 0px }

+

+

+/* following font face declarations need to be removed for DBCS */

+

+body, h1, h2, h3, h4, h5, h6, p, table, td, caption, th, ul, ol, dl, li, dd, dt {font-family: Arial, Helvetica, sans-serif; color: #000000}

+pre, code		{ font-family: "Courier New", Courier, monospace;}

+

+/* end font face declarations */

+

+@media print {

+	html { font-size: 12pt }

+}

+

+body	     { font-size: 83%; background: #FFFFFF; margin-bottom: 1em }

+h1           { font-size: 180%; margin-top: 5px; margin-bottom: 1px }	

+h2           { font-size: 140%; margin-top: 25px; margin-bottom: 3px }

+h3           { font-size: 110%; margin-top: 20px; margin-bottom: 3px }

+h4           { font-size: 100%; margin-top: 20px; margin-bottom: 3px; font-style: italic }

+p            { margin-top: 10px; margin-bottom: 10px }

+pre          { font-size: 93%; margin-left: 6; color: #4444CC }

+code         { font-size: 93%; } 

+table        { font-size: 100% } /* needed for quirks mode */

+a:link	     { color: #0000FF }

+a:hover	     { color: #000080 }

+a:visited    { text-decoration: underline }

+ul	     { margin-top: 10px; margin-bottom: 10px; }

+li	     { margin-top: 5px; margin-bottom: 5px; } 

+li p	     { margin-top: 5px; margin-bottom: 5px; }

+ol	     { margin-top: 10px; margin-bottom: 10px; }

+dl	     { margin-top: 10px; margin-bottom: 10px; }

+dt	     { margin-top: 5px; margin-bottom: 5px; font-weight: bold; }

+dd	     { margin-top: 5px; margin-bottom: 5px; }

+strong	     { font-weight: bold}

+em	     { font-style: italic}

+var	     { font-style: italic}

+div.revision { border-left-style: solid; border-left-width: thin; 

+				   border-left-color: #7B68EE; padding-left:5 }

+th	     { font-weight: bold }

diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/cheatsheets/cvs_checkout.xml b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/cheatsheets/cvs_checkout.xml
new file mode 100644
index 0000000..af369e4
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/cheatsheets/cvs_checkout.xml
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="UTF-8" ?> 
+<cheatsheet title="Check out a CVS project">
+
+  <intro 
+      href="/org.eclipse.platform.doc.user/reference/ref-cheatsheets.htm">
+    <description>
+      This cheat sheet shows you how to explore a CVS repository and check out
+      a project. If you need help at any step, click on the (?) icon to the
+      right.
+    </description>
+  </intro>
+
+  <item
+      title="Open the CVS Repository Exploring perspective"
+      href="/org.eclipse.platform.doc.user/tasks/tasks-1h.htm">
+    <description>
+      From the main menu, select Window &gt; Open Perspective &gt; Other...,
+      then select the <b>CVS Repository Exploring</b> perspective.
+    </description>
+    <command
+        serialization="org.eclipse.ui.perspectives.showPerspective(org.eclipse.ui.perspectives.showPerspective.perspectiveId=org.eclipse.team.cvs.ui.cvsPerspective)"
+        confirm="true" translate="" >
+    </command>
+  </item>
+
+  <item
+      title="Add a CVS repository"
+      href="/org.eclipse.platform.doc.user/tasks/tasks-92.htm">
+    <description>
+      In the CVS Repositories view, click on the <b>Add CVS Repository</b>
+      toolbar button. Enter the location and authentication information for
+      the repository. For example, for the <b>eclipse</b> repository, enter the
+      following:<br/>
+      <br/>
+      Host: dev.eclipse.org<br/>
+      Repository path: /cvsroot/eclipse<br/>
+      User: anonymous<br/>
+      Connection type: pserver<br/>
+      <br/>
+      Use defaults for the rest, then click Finish.
+    </description>
+  </item>
+
+  <item
+      title="Locate the project"
+      href="/org.eclipse.platform.doc.user/tasks/tasks-1i.htm">
+    <description>
+      Expand the <b>HEAD</b> node under the newly added repository, and locate
+      the project you wish to check out (e.g. to find the source code for the
+      cheat sheet view, this is in org.eclipse.ui.cheatsheets)
+    </description>
+  </item>
+
+  <item
+      title="Check out the project"
+      href="/org.eclipse.platform.doc.user/tasks/tasks-96.htm">
+    <description>
+      Right click on the project you wish to check out and select <b>Check
+      Out</b>. This will download the latest content from the repository into
+      your workspace.
+    </description>
+  </item>
+
+  <item
+      title="View the workspace"
+      href="/org.eclipse.platform.doc.isv/guide/resInt_workspace.htm">
+    <description>
+      To see the project in your workspace, switch to the <b>Resource</b>
+      perspective via Window &gt; Open Perspective &gt; Resource to see the
+      project in the <b>Project Explorer</b> view. You can now view and work with the
+      contents of the project.
+    </description>
+  </item>
+
+</cheatsheet>
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/cheatsheets/cvs_merge.xml b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/cheatsheets/cvs_merge.xml
new file mode 100644
index 0000000..a33f50b
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/cheatsheets/cvs_merge.xml
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="UTF-8" ?> 
+<cheatsheet title="Merge CVS branches">
+
+  <intro 
+      href="/org.eclipse.platform.doc.user/reference/ref-cheatsheets.htm">
+    <description>
+      This cheat sheet shows you the steps to merge changes from one CVS branch
+      into another, or into HEAD. If you need help at any step, click on the (?)
+      icon to the right.
+    </description>
+  </intro>
+
+  <item
+      href="/org.eclipse.platform.doc.user/tasks/tasks-100b.htm"
+      title="Determine branch and version information">
+    <description>
+      The first step is to decide <b>which</b> two branches will be merged, at
+      which <b>version</b> the content was branched, and what the
+      <b>destination</b> branch will be (where the result of the merge will go).
+      Once you have this information, you can move on to the next step.
+    </description>
+  </item>
+
+  <item
+      href="/org.eclipse.platform.doc.user/tasks/tasks-96.htm"
+      title="Check out the project">
+    <description>
+      Before merging, you must <b>check out</b> the project you wish to merge
+      and bring it into your workspace. You can do this either via the import
+      wizard or by adding your repository from the CVS Repository Exploring
+      perspective, or click the (?) button for help.
+    </description>
+  </item>
+
+  <item
+      href="/org.eclipse.platform.doc.user/tasks/tasks-103.htm"
+      title="Load the destination into your workspace">
+    <description>
+      In the navigator, right-click on the project and select Replace With &gt;
+      Another Branch or Version. Select the destination branch. This will load
+      the branch's latest content into your workspace.
+    </description>
+  </item>
+
+  <item
+      href="/org.eclipse.platform.doc.user/tasks/tasks-100b.htm"
+      title="Merge details">
+    <description>
+      Again in the navigator, right-click on the project and select <b>Team</b>
+      &gt; <b>Merge</b> and complete the steps in the wizard. In this wizard you
+      specify the details of the merge.
+    </description>
+  </item>
+
+  <item
+      href="/org.eclipse.platform.doc.user/tasks/tasks-100b.htm"
+      title="Work with the Merge editor">
+    <description>
+      In the Merge editor manually merge the changes. This step loads the
+      required changes into the workspace. Once you've merged all the changes
+      and are satisfied with the result, move on to the next step.
+    </description>
+  </item>
+
+  <item
+      href="/org.eclipse.platform.doc.user/tasks/tasks-114.htm"
+      title="Commit your changes">
+    <description>
+      Right-click on the project and select <b>Team</b> &gt; <b>Synchronize with
+      Repository</b> and then commit all the changes to the repository. This
+      step finalizes the transfer of the changes from the workspace to the CVS
+      repository, and finalizes the merge.
+    </description>
+  </item>
+
+</cheatsheet>
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_basestyle.css b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_basestyle.css
new file mode 100644
index 0000000..7beef61
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_basestyle.css
@@ -0,0 +1,42 @@
+
+.MTrimmedWindow.topLevel { 
+    margin-top: 5px;
+    margin-bottom: 2px;
+    margin-left: 2px;
+    margin-right: 2px;
+}
+
+.MPartStack {
+    swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+    swt-unselected-tabs-color: #FFFFFF #FFFFFF #FFFFFF 100% 100%;
+    swt-outer-keyline-color: #FFFFFF;
+	swt-inner-keyline-color: #FFFFFF;
+	padding: 0px 9px 10px;
+	swt-tab-outline: #B6BCCC;
+	swt-shadow-visible: true;
+	swt-mru-visible: false;
+}
+
+.MPartStack.active {
+	swt-inner-keyline-color: #FFFFFF;
+	swt-tab-outline: #B6BCCC;
+	swt-shadow-visible: true;
+}
+
+#PerspectiveSwitcher {
+	eclipse-perspective-keyline-color: #AAB0BF #AAB0BF;
+}
+
+.MToolControl.TrimStack {
+	frame-image:  url(./winXPTSFrame.png);
+	handle-image:  url(./winXPHandle.png);
+	frame-cuts: 5px 1px 5px 16px;
+}
+
+.MToolBar.Draggable {
+	handle-image:  url(./dragHandle.png);
+}
+
+.MToolControl.Draggable {
+	handle-image:  url(./dragHandle.png);
+}
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_classic_win7.css b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_classic_win7.css
new file mode 100644
index 0000000..9b6ff24
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_classic_win7.css
@@ -0,0 +1,36 @@
+.MTrimmedWindow {  
+    margin-top: 0px;
+    margin-bottom: 0px;
+    margin-left: 2px;
+    margin-right: 2px;
+}
+
+.MPartStack {
+  swt-tab-renderer: null;
+  swt-selected-tabs-background: #FFFFFF #F0F0F0 100%;
+  swt-simple: false;
+  swt-mru-visible: true;
+}
+
+
+.MPartStack.active {
+  swt-selected-tabs-background: #F2F5F9 #99B4D1	 100%;
+}
+
+#PerspectiveSwitcher  {
+	eclipse-perspective-keyline-color: #ECE9D8 #FFFFFF;
+}
+
+.MToolControl.TrimStack {
+	frame-image:  url(./winClassicTSFrame.png);
+	handle-image:  url(./winClassicHandle.png);
+	frame-cuts: 5px 1px 5px 16px;
+}
+
+.MToolBar.Draggable {
+	handle-image:  url(./dragHandle.png);
+}
+
+.MToolControl.Draggable {
+	handle-image:  url(./dragHandle.png);
+}
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_classic_winxp.css b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_classic_winxp.css
new file mode 100644
index 0000000..6d11bd3
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_classic_winxp.css
@@ -0,0 +1,36 @@
+.MTrimmedWindow {  
+    margin-top: 0px;
+    margin-bottom: 0px;
+    margin-left: 2px;
+    margin-right: 2px;
+}
+
+.MPartStack {
+  swt-tab-renderer: null;
+  swt-selected-tabs-background: #FFFFFF #ECE9D8 100%;
+  swt-simple: false;
+  swt-mru-visible: true;
+}
+
+
+.MPartStack.active {
+  swt-selected-tabs-background: #E5EDFC #99BAF3 100%;
+}
+
+#PerspectiveSwitcher  {
+	eclipse-perspective-keyline-color: #ECE9D8 #FFFFFF;
+}
+
+.MToolControl.TrimStack {
+	frame-image:  url(./winClassicTSFrame.png);
+	handle-image:  url(./winClassicHandle.png);
+	frame-cuts: 5px 1px 5px 16px;
+}
+
+.MToolBar.Draggable {
+	handle-image:  url(./dragHandle.png);
+}
+
+.MToolControl.Draggable {
+	handle-image:  url(./dragHandle.png);
+}
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default.css b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default.css
new file mode 100644
index 0000000..2f44bcf
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default.css
@@ -0,0 +1,41 @@
+
+.MWindow {
+    background-color:  #EEF2F7 #DEEBF3 100%;
+}
+
+.MTrimmedWindow {  
+    margin-top: 2px;
+    margin-bottom: 2px;
+    margin-left: 2px;
+    margin-right: 2px;
+}
+
+.MTrimmedWindow.topLevel { 
+    margin-top: 24px;
+    margin-bottom: 2px;
+    margin-left: 12px;
+    margin-right: 12px;
+}
+
+.MPartStack {
+    swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+    swt-unselected-tabs-color: #FFFFFF #FFFFFF #FFFFFF 100% 100%;
+    swt-outer-keyline-color: #FFFFFF;
+	swt-inner-keyline-color: #FFFFFF;
+	swt-mru-visible: false;
+}
+
+.MTrimBar {
+    background-color: #EEF2F7 #DEEBF3 100%;
+}
+
+
+.MTrimBar#org-eclipse-ui-main-toolbar  {
+    background-image:  url(./winXPBlue.png);	
+}
+
+.MPartStack.active {
+	swt-unselected-tabs-color: #CEDEF4 #D2E2F9 #FFFFFF 100% 100%;
+    swt-outer-keyline-color: #C3D0E9;
+	swt-inner-keyline-color: #FFFFFF;
+}
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_gtk.css b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_gtk.css
new file mode 100644
index 0000000..785d0f9
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_gtk.css
@@ -0,0 +1,56 @@
+
+@import url("e4_basestyle.css");
+
+.MTrimmedWindow { 
+    background-color: #E2E2E2; 
+}
+
+.MPartStack {
+	font-size: 11;
+	swt-simple: false;
+	swt-mru-visible: false;
+}
+
+.MTrimBar {
+    background-color: #E2E2E2; 
+}
+
+.MTrimBar#org-eclipse-ui-main-toolbar  {
+    background-image:  url(./gtkGrey.png);	
+}
+
+.MToolControl.TrimStack {
+	frame-image:  url(./gtkTSFrame.png);
+	handle-image:  url(./gtkHandle.png);
+}
+
+.MPartStack.active {
+	swt-unselected-tabs-color: #DCDCDC #E1E1E1 #FFFFFF 100% 100%;
+    swt-outer-keyline-color: #B4B4B4;
+    swt-tab-outline: #B4B4B4;
+}
+
+#PerspectiveSwitcher { 
+	background-color: #EBEBEB #E2E2E2 100%;
+	eclipse-perspective-keyline-color: #B4B4B4 #B4B4B4;
+}
+
+#org-eclipse-ui-editorss {
+   swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+   swt-unselected-tabs-color: #F0F0F0 #F0F0F0 #F0F0F0 100% 100%;
+   swt-outer-keyline-color: #B4B4B4;
+   swt-inner-keyline-color: #F0F0F0;
+   swt-tab-outline: #F0F0F0;
+   color: #F0F0F0;
+   swt-tab-height: 8px;
+   padding: 0px 5px 7px;
+}
+
+CTabFolder.MArea .MPartStack, CTabFolder.MArea .MPartStack.active {
+   swt-shadow-visible: false;
+}
+
+CTabFolder Canvas {
+  background-color: #F8F8F8;
+}
+
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_mac.css b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_mac.css
new file mode 100644
index 0000000..88d03e4
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_mac.css
@@ -0,0 +1,53 @@
+@import url("e4_basestyle.css");
+
+.MTrimmedWindow { 
+    background-color: #E8E8E8;
+}
+
+.MPartStack {
+	font-size: 12;
+	swt-simple: false;
+	swt-mru-visible: false;
+}
+
+.MTrimBar {
+    background-color: #E8E8E8;
+}
+
+.MTrimBar#org-eclipse-ui-main-toolbar {
+    background-color:  #CFCFCF #A8A8A8 100%;	
+}
+
+.MToolControl.TrimStack {
+	frame-image:  url(./macTSFrame.png);
+	handle-image:  url(./macHandle.png);
+}
+
+.MPartStack.active {
+	swt-unselected-tabs-color: #F6F6F6 #D3D3D3 #D1D1D1 #D1D1D1 #D6D6D6 #D6D6D6 #FFFFFF 20% 45% 60% 70% 100% 100%;
+    swt-outer-keyline-color: #C4C5C1;
+}
+
+#PerspectiveSwitcher {
+	background-color: #F0F0F0 #E8E8E8 100%;
+	eclipse-perspective-keyline-color: #515151 #515151;
+}
+
+#org-eclipse-ui-editorss {
+   swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+   swt-unselected-tabs-color: #D6DDE5 #D6DDE5 #D6DDE5 100% 100%;
+   swt-outer-keyline-color: #D6DDE5;
+   swt-inner-keyline-color: #D6DDE5;
+   swt-tab-outline: #D6DDE5;
+   color: #D6DDE5;
+   swt-tab-height: 8px;
+   padding: 0px 5px 7px;
+}
+
+CTabFolder.MArea .MPartStack, CTabFolder.MArea .MPartStack.active {
+   swt-shadow-visible: false;
+}
+
+CTabFolder Canvas {
+  background-color: #F0F0F0;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_mru_on_win7.css b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_mru_on_win7.css
new file mode 100644
index 0000000..4a93668
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_mru_on_win7.css
@@ -0,0 +1,53 @@
+@import url("e4_basestyle.css");
+
+.MTrimmedWindow { 
+    background-color: #E1E6F6; 
+}
+
+.MPartStack {
+	font-size: 9;
+	font-family: 'Segoe UI';
+	swt-simple: true;
+	swt-mru-visible: true;
+}
+
+.MTrimBar {
+    background-color: #E1E6F6; 
+}
+
+.MToolControl.TrimStack {
+	frame-image:  url(./win7TSFrame.png);
+	handle-image:  url(./win7Handle.png);
+}
+
+.MTrimBar#org-eclipse-ui-main-toolbar {
+    background-image:  url(./win7.png);	
+}
+
+.MPartStack.active {
+	swt-unselected-tabs-color: #F3F9FF #D0DFEE #CEDDED #CEDDED #D2E1F0 #D2E1F0 #FFFFFF 20% 45% 60% 70% 100% 100%;
+	swt-outer-keyline-color: #B6BCCC;
+}
+
+#PerspectiveSwitcher  {
+	background-color: #F5F7FC #E1E6F6 100%;
+}
+
+#org-eclipse-ui-editorss {
+   swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+   swt-unselected-tabs-color: #F0F0F0 #F0F0F0 #F0F0F0 100% 100%;
+   swt-outer-keyline-color: #B4B4B4;
+   swt-inner-keyline-color: #F0F0F0;
+   swt-tab-outline: #F0F0F0;
+   color: #F0F0F0;
+   swt-tab-height: 8px;
+   padding: 0px 5px 7px;
+}
+
+CTabFolder.MArea .MPartStack, CTabFolder.MArea .MPartStack.active {
+   swt-shadow-visible: false;
+}
+
+CTabFolder Canvas {
+  background-color: #F8F8F8;
+}
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_win7.css b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_win7.css
new file mode 100644
index 0000000..1a4f110
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_win7.css
@@ -0,0 +1,53 @@
+@import url("e4_basestyle.css");
+
+.MTrimmedWindow { 
+    background-color: #E1E6F6; 
+}
+
+.MPartStack {
+	font-size: 9;
+	font-family: 'Segoe UI';
+	swt-simple: true;
+	swt-mru-visible: false;
+}
+
+.MTrimBar {
+    background-color: #E1E6F6; 
+}
+
+.MTrimBar#org-eclipse-ui-main-toolbar {
+    background-image:  url(./win7.png);	
+}
+
+.MToolControl.TrimStack {
+	frame-image:  url(./win7TSFrame.png);
+	handle-image:  url(./win7Handle.png);
+}
+
+.MPartStack.active {
+	swt-unselected-tabs-color: #F3F9FF #D0DFEE #CEDDED #CEDDED #D2E1F0 #D2E1F0 #FFFFFF 20% 45% 60% 70% 100% 100%;
+	swt-outer-keyline-color: #B6BCCC;
+}
+
+#PerspectiveSwitcher  {
+	background-color: #F5F7FC #E1E6F6 100%;
+}
+
+#org-eclipse-ui-editorss {
+   swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+   swt-unselected-tabs-color: #F0F0F0 #F0F0F0 #F0F0F0 100% 100%;
+   swt-outer-keyline-color: #B4B4B4;
+   swt-inner-keyline-color: #F0F0F0;
+   swt-tab-outline: #F0F0F0;
+   color: #F0F0F0;
+   swt-tab-height: 8px;
+   padding: 0px 5px 7px;
+}
+
+CTabFolder.MArea .MPartStack, CTabFolder.MArea .MPartStack.active {
+   swt-shadow-visible: false;
+}
+
+CTabFolder Canvas {
+  background-color: #F8F8F8;
+}
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_winxp_blu.css b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_winxp_blu.css
new file mode 100644
index 0000000..c026c44
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_winxp_blu.css
@@ -0,0 +1,55 @@
+@import url("e4_basestyle.css");
+
+.MTrimmedWindow { 
+ 	background-color: #F0ECE0; 
+}
+
+.MPartStack {
+	font-size: 9;
+	swt-simple: true;
+	swt-mru-visible: false;
+}
+
+.MTrimBar {
+    background-color: #F0ECE0; 
+}
+
+
+.MTrimBar#org-eclipse-ui-main-toolbar  {
+    background-image:  url(./winXPBlue.png);	
+}
+
+.MToolControl.TrimStack {
+	frame-image:  url(./winXPBluTSFrame.png);
+	handle-image:  url(./winXPBluHandle.png);
+}
+
+.MPartStack.active {
+	swt-unselected-tabs-color: #F1F4FD #C9DAF3 #BED4F1 #BED4F1 #C9D7F2 #C9D7F2 #FFFFFF 20% 45% 60% 70% 100% 100%;
+    swt-outer-keyline-color: #B8C7E5;
+}
+
+#PerspectiveSwitcher  {
+	background-color: #F5F3ED #F0ECE0 100%;
+	eclipse-perspective-keyline-color: #7F91B5 #7F91B5;
+}
+
+#org-eclipse-ui-editorss {
+   swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+   swt-unselected-tabs-color: #F0F0F0 #F0F0F0 #F0F0F0 100% 100%;
+   swt-outer-keyline-color: #B4B4B4;
+   swt-inner-keyline-color: #F0F0F0;
+   swt-tab-outline: #F0F0F0;
+   color: #F0F0F0;
+   swt-tab-height: 8px;
+   padding: 0px 5px 7px;
+}
+
+CTabFolder.MArea .MPartStack, CTabFolder.MArea .MPartStack.active {
+   swt-shadow-visible: false;
+}
+
+CTabFolder Canvas {
+  background-color: #F8F8F8;
+}
+
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_winxp_olv.css b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_winxp_olv.css
new file mode 100644
index 0000000..6c62257
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_winxp_olv.css
@@ -0,0 +1,49 @@
+
+.MTrimmedWindow { 
+    margin-top: 2px;
+    margin-bottom: 2px;
+    margin-left: 2px;
+    margin-right: 2px;
+}
+
+.MTrimmedWindow.topLevel { 
+    margin-top: 24px;
+    margin-bottom: 2px;
+    margin-left: 12px;
+    margin-right: 12px;
+}
+
+.MPartStack {
+    swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+    swt-unselected-tabs-color: #FFFFFF #FFFFFF #FFFFFF 100% 100%;
+    swt-outer-keyline-color: #FFFFFF;
+	swt-inner-keyline-color: #FFFFFF;
+	font-size: 9;
+	swt-simple: true;
+	padding: 0px 10px 11px;
+	swt-mru-visible: false;
+}
+
+.MTrimBar#org-eclipse-ui-main-toolbar {
+    background-image:  url(./winXPOlive.png);	
+}
+
+.MPartStack.active {
+	swt-unselected-tabs-color: #E6E3C3 #EDEACA #FFFFFF 100% 100%;
+    swt-outer-keyline-color: #BFCDA4;
+	swt-inner-keyline-color: #FFFFFF;
+	swt-tab-outline: #B6BCCC;
+}
+
+#PerspectiveSwitcher  {
+	background-color: #F5F3ED #F0ECE0 100%;
+	eclipse-perspective-keyline-color: #A7B680 #A7B680;
+}
+
+.MToolBar.Draggable {
+	handle-image:  url(./dragHandle.png);
+}
+
+.MToolControl.Draggable {
+	handle-image:  url(./dragHandle.png);
+}
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/disabled_book.css b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/disabled_book.css
new file mode 100644
index 0000000..5abd004
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/disabled_book.css
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse16.gif b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse16.gif
new file mode 100644
index 0000000..abefafc
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse16.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse16.png b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse16.png
new file mode 100644
index 0000000..8bd31d1
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse16.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse256.png b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse256.png
new file mode 100644
index 0000000..941ab0b
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse256.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse32.gif b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse32.gif
new file mode 100644
index 0000000..29edaa0
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse32.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse32.png b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse32.png
new file mode 100644
index 0000000..71ea8f9
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse32.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse48.gif b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse48.gif
new file mode 100644
index 0000000..ba596ce
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse48.png b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse48.png
new file mode 100644
index 0000000..6845e67
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse48.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse_lg.gif b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse_lg.gif
new file mode 100644
index 0000000..c004bf2
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse_lg.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/helpData.xml b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/helpData.xml
new file mode 100644
index 0000000..0838605
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/helpData.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="utf-8"?>
+<extensions>
+	<tocOrder>
+		<toc id="/org.eclipse.platform.doc.user/toc.xml"/>
+		<toc id="/org.eclipse.jdt.doc.user/toc.xml"/>
+		<toc id="/org.eclipse.platform.doc.isv/toc.xml"/>
+		<toc id="/org.eclipse.jdt.doc.isv/toc.xml"/>
+		<toc id="/org.eclipse.pde.doc.user/toc.xml"/>
+	</tocOrder>
+</extensions>
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/dragHandle.png b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/dragHandle.png
new file mode 100644
index 0000000..bea1179
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/dragHandle.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkGrey.png b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkGrey.png
new file mode 100644
index 0000000..54d631d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkGrey.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkHandle.png b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkHandle.png
new file mode 100644
index 0000000..b0288cf
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkHandle.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkTSFrame.png b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkTSFrame.png
new file mode 100644
index 0000000..dd08bba
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkTSFrame.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macGrey.png b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macGrey.png
new file mode 100644
index 0000000..59075ad
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macGrey.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macHandle.png b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macHandle.png
new file mode 100644
index 0000000..98b2193
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macHandle.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macTSFrame.png b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macTSFrame.png
new file mode 100644
index 0000000..ee32cf5
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macTSFrame.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/arrow.gif b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/arrow.gif
new file mode 100644
index 0000000..7d4c3f1
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/arrow.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_teamsup48.gif b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_teamsup48.gif
new file mode 100644
index 0000000..ed93db0
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_teamsup48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_teamsup48_hov.gif b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_teamsup48_hov.gif
new file mode 100644
index 0000000..464e9af
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_teamsup48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_wbbasics48.gif b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_wbbasics48.gif
new file mode 100644
index 0000000..d0102c9
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_wbbasics48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_wbbasics48_hov.gif b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_wbbasics48_hov.gif
new file mode 100644
index 0000000..cc830b0
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_wbbasics48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_checkout48.gif b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_checkout48.gif
new file mode 100644
index 0000000..f3de4d2
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_checkout48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_checkout48_hov.gif b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_checkout48_hov.gif
new file mode 100644
index 0000000..ffa86f9
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_checkout48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_merge48.gif b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_merge48.gif
new file mode 100644
index 0000000..ed93db0
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_merge48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_merge48_hov.gif b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_merge48_hov.gif
new file mode 100644
index 0000000..464e9af
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_merge48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclcommunity48.gif b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclcommunity48.gif
new file mode 100644
index 0000000..075cfaa
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclcommunity48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclcommunity48_hov.gif b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclcommunity48_hov.gif
new file mode 100644
index 0000000..7ec2cce
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclcommunity48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclplatform48.gif b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclplatform48.gif
new file mode 100644
index 0000000..f6fa59f
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclplatform48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclplatform48_hov.gif b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclplatform48_hov.gif
new file mode 100644
index 0000000..8624fc1
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclplatform48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_migrate48.gif b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_migrate48.gif
new file mode 100644
index 0000000..f3de4d2
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_migrate48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_migrate48_hov.gif b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_migrate48_hov.gif
new file mode 100644
index 0000000..ffa86f9
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_migrate48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_updates48.gif b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_updates48.gif
new file mode 100644
index 0000000..f2f80d8
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_updates48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_updates48_hov.gif b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_updates48_hov.gif
new file mode 100644
index 0000000..08fbbed
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_updates48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7.png b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7.png
new file mode 100644
index 0000000..b9bf09d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7Handle.png b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7Handle.png
new file mode 100644
index 0000000..b73a963
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7Handle.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7TSFrame.png b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7TSFrame.png
new file mode 100644
index 0000000..eec6be6
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7TSFrame.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winClassicHandle.png b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winClassicHandle.png
new file mode 100644
index 0000000..cfeb6dd
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winClassicHandle.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winClassicTSFrame.png b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winClassicTSFrame.png
new file mode 100644
index 0000000..0b9101c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winClassicTSFrame.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBluHandle.png b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBluHandle.png
new file mode 100644
index 0000000..45441b3
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBluHandle.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBluTSFrame.png b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBluTSFrame.png
new file mode 100644
index 0000000..5880d78
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBluTSFrame.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBlue.png b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBlue.png
new file mode 100644
index 0000000..fc27964
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBlue.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPHandle.png b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPHandle.png
new file mode 100644
index 0000000..17eb69a
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPHandle.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPOlive.png b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPOlive.png
new file mode 100644
index 0000000..c745ee1
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPOlive.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPTSFrame.png b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPTSFrame.png
new file mode 100644
index 0000000..baf45b9
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPTSFrame.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro-eclipse.png b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro-eclipse.png
new file mode 100644
index 0000000..015e7fc
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro-eclipse.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/overview.css b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/overview.css
new file mode 100644
index 0000000..cc5d6ad
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/overview.css
@@ -0,0 +1,5 @@
+a#basics img { background-image : url('../../images/topiclabel/ov_wbbasics48.gif'); }
+a#basics:hover img { background-image : url('../../images/topiclabel/ov_wbbasics48_hov.gif'); }
+
+a#team img { background-image : url('../../images/topiclabel/ov_teamsup48.gif'); }
+a#team:hover img { background-image : url('../../images/topiclabel/ov_teamsup48_hov.gif'); }
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/overview.properties b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/overview.properties
new file mode 100644
index 0000000..c7e33e7
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/overview.properties
@@ -0,0 +1,20 @@
+###############################################################################
+# Copyright (c) 2005, 2007 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+overview.page-content.overview-links.layout.vspacing = 35
+
+overview.basics.link-icon = images/topiclabel/ov_wbbasics48.gif
+overview.basics.hover-icon = images/topiclabel/ov_wbbasics48_hov.gif
+
+overview.team.link-icon = images/topiclabel/ov_teamsup48.gif
+overview.team.hover-icon = images/topiclabel/ov_teamsup48_hov.gif
+
+overview.subtitle-id = overview/page-content/page-title
+overview.description-id = overview/page-content/page-description
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/tutorials.css b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/tutorials.css
new file mode 100644
index 0000000..92770e2
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/tutorials.css
@@ -0,0 +1,5 @@
+a#cvs_checkout img { background-image : url('../../images/topiclabel/tu_checkout48.gif'); }
+a#cvs_checkout:hover img { background-image : url('../../images/topiclabel/tu_checkout48_hov.gif'); }
+
+a#cvs_merge img { background-image : url('../../images/topiclabel/tu_merge48.gif'); }
+a#cvs_merge:hover img { background-image : url('../../images/topiclabel/tu_merge48_hov.gif'); }
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/tutorials.properties b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/tutorials.properties
new file mode 100644
index 0000000..d065463
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/tutorials.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2006, 2008 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+tutorials.cvs_checkout.link-icon = images/topiclabel/tu_checkout48.gif
+tutorials.cvs_checkout.hover-icon = images/topiclabel/tu_checkout48_hov.gif
+
+tutorials.cvs_merge.link-icon = images/topiclabel/tu_merge48.gif
+tutorials.cvs_merge.hover-icon = images/topiclabel/tu_merge48_hov.gif
+
+tutorials.subtitle-id = tutorials/page-content/page-title
+tutorials.description-id = tutorials/page-content/page-description
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/whatsnew.css b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/whatsnew.css
new file mode 100644
index 0000000..5515caa
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/whatsnew.css
@@ -0,0 +1,50 @@
+
+a#platform-noteworthy img { background-image : url(../../images/topiclabel/wn_eclplatform48.gif); }
+a#platform-noteworthy:hover img { background-image : url(../../images/topiclabel/wn_eclplatform48_hov.gif); }
+
+a#updates img { background-image : url(../../images/topiclabel/wn_updates48.gif); }
+a#updates:hover img { background-image : url(../../images/topiclabel/wn_updates48_hov.gif); }
+
+a#eclipse img { background-image : url(../../images/topiclabel/wn_eclcommunity48.gif); }
+a#eclipse:hover img { background-image : url(../../images/topiclabel/wn_eclcommunity48_hov.gif); }
+
+a#migration img { background-image : url(../../images/topiclabel/wn_migrate48.gif); }
+a#migration:hover img { background-image : url(../../images/topiclabel/wn_migrate48_hov.gif); }
+
+div#rss-news {
+	position: relative;
+	top: -25px;
+	margin-bottom: -25px;
+	margin-left: 52px;
+}
+
+#rss-news .div-label {
+	font-size: 9pt;
+}
+
+#rss-news .provided-content {
+}
+
+#rss-news .status-text {
+	font-weight: normal;
+	color: #909090;
+	font-size: 8pt;
+}
+
+ul#eclipse-news {
+	list-style-type: none;
+	list-style-image: url("../../images/topiclabel/arrow.gif");
+	margin-left: 10px;
+	margin-top: 5px;
+}
+
+ul#eclipse-news li {
+}
+
+ul#eclipse-news a {
+	font-weight: normal;
+}
+
+ul#eclipse-news a:hover {
+	text-decoration: underline;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/whatsnew.properties b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/whatsnew.properties
new file mode 100644
index 0000000..34b0f1c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/whatsnew.properties
@@ -0,0 +1,26 @@
+###############################################################################
+# Copyright (c) 2005, 2007 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+whatsnew.platform-noteworthy.link-icon = images/topiclabel/wn_eclplatform48.gif
+whatsnew.platform-noteworthy.hover-icon = images/topiclabel/wn_eclplatform48_hov.gif
+
+whatsnew.updates.link-icon = images/topiclabel/wn_updates48.gif
+whatsnew.updates.hover-icon = images/topiclabel/wn_updates48_hov.gif
+
+whatsnew.eclipse.link-icon = images/topiclabel/wn_eclcommunity48.gif
+whatsnew.eclipse.hover-icon = images/topiclabel/wn_eclcommunity48_hov.gif
+
+whatsnew.migration.link-icon = images/topiclabel/wn_migrate48.gif
+whatsnew.migration.hover-icon = images/topiclabel/wn_migrate48_hov.gif
+
+whatsnew.page-content.layout.vspacing = 40 
+
+whatsnew.subtitle-id = news/page-content/page-title
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/overviewExtensionContent.xml b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/overviewExtensionContent.xml
new file mode 100644
index 0000000..3f6bd32
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/overviewExtensionContent.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<introContent>
+  	<extensionContent id="org.eclipse.ui.workbench" name="Workbench" alt-style="css/overview.properties" style="css/overview.css" path="overview/@">
+  		<group style-id="content-group" id="content-group">
+			<link style-id="content-link" label="Workbench basics" url="http://org.eclipse.ui.intro/showHelpTopic?id=/org.eclipse.platform.doc.user/gettingStarted/intro/overview.htm" id="basics">
+          		<text>Learn about basic Eclipse workbench concepts</text>
+       		</link>
+       		<link style-id="content-link" label="Team support" url="http://org.eclipse.ui.intro/showHelpTopic?id=/org.eclipse.platform.doc.user/concepts/concepts-26.htm" id="team">
+          		<text>Find out how to collaborate with other developers</text>
+       		</link>
+       	</group>
+  	</extensionContent>
+</introContent>
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/tutorialsExtensionContent.xml b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/tutorialsExtensionContent.xml
new file mode 100644
index 0000000..28c6145
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/tutorialsExtensionContent.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<introContent>
+  <!-- Extension to the SDK Tutorials Page. -->
+  <extensionContent id="org.eclipse.team" name="Team/CVS" alt-style="css/tutorials.properties" style="css/tutorials.css" path="tutorials/@">
+    <group label="Team/CVS" id="team" style-id="content-group">
+      <link url="http://org.eclipse.ui.intro/showStandby?partId=org.eclipse.platform.cheatsheet&amp;input=org.eclipse.platform.cvs.checkout" label="Check out a CVS project" id="cvs_checkout" style-id="content-link">
+        <text>Learn how to connect to a CVS repository and check out a project.</text>
+      </link>
+      <link url="http://org.eclipse.ui.intro/showStandby?partId=org.eclipse.platform.cheatsheet&amp;input=org.eclipse.platform.cvs.merge" label="Merge CVS branches" id="cvs_merge" style-id="content-link">
+        <text>Follow the steps for merging changes from one CVS branch into another.</text>
+      </link>
+    </group>
+  </extensionContent>
+</introContent>
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent1.xml b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent1.xml
new file mode 100644
index 0000000..c600269
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent1.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<introContent>
+  	<extensionContent id="org.eclipse.ui.workbench.news" name="Eclipse Platform" alt-style="css/whatsnew.properties" style="css/whatsnew.css" path="whatsnew/@">
+		<group style-id="content-group" id="content-group">
+       		<link label="Eclipse Platform" url="http://org.eclipse.ui.intro/showHelpTopic?id=/org.eclipse.platform.doc.user/whatsNew/platform_whatsnew.html" id="platform-noteworthy" style-id="content-link">
+          		<text>Find out about the major new features in this release</text>
+       		</link>
+       	</group>
+  	</extensionContent>
+</introContent>
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent2.xml b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent2.xml
new file mode 100644
index 0000000..490435d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent2.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<introContent>
+  	<extensionContent id="org.eclipse.ui.workbench" name="Updates and Eclipse.org" alt-style="css/whatsnew.properties" style="css/whatsnew.css" path="whatsnew/@">
+  	   <group style-id="content-group" id="content-group">
+       		<link style-id="content-link" label="New Updates" url="http://org.eclipse.ui.intro/runAction?pluginId=org.eclipse.platform&amp;class=org.eclipse.platform.internal.LaunchUpdateIntroAction" id="updates">
+          		<text>Get the latest updates from Eclipse.org</text>
+       		</link>
+       		<link style-id="content-link" label="Eclipse community" url="http://org.eclipse.ui.intro/openBrowser?url=http://www.eclipse.org" id="eclipse">
+          		<text>Join the community, read articles and news on Eclipse.org</text>
+       		</link>
+			<group id="rss-news" label="Latest News" expandable="true" expanded="true">
+				<contentProvider id="url=http://www.eclipse.org/home/eclipsenews.rss##welcome_items=5##no_news_url=http://www.eclipse.org/community/##no_news_text=Welcome to the Eclipse Community Page" pluginId="org.eclipse.ui.intro" class="org.eclipse.ui.intro.contentproviders.EclipseRSSViewer">
+				</contentProvider>
+			</group>
+       </group>
+  	</extensionContent>
+</introContent>
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent3.xml b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent3.xml
new file mode 100644
index 0000000..28668e1
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent3.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<introContent>
+  	<extensionContent id="org.eclipse.ui.workbench.migration" name="Porting Guide" alt-style="css/whatsnew.properties" style="css/whatsnew.css" path="whatsnew/@">
+		<group filter="plugin=org.eclipse.platform.doc.isv" style-id="content-group" id="content-group">
+       		<link label="Migration from the previous release" url="http://org.eclipse.ui.intro/showHelpTopic?id=/org.eclipse.platform.doc.isv/porting/eclipse_4_2_porting_guide.html" id="migration" style-id="content-link">
+          		<text>Learn what you need to do to make your old code work in Eclipse 4.2</text>
+       		</link>
+       	</group>
+  	</extensionContent>
+</introContent>
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/introData.xml b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/introData.xml
new file mode 100644
index 0000000..2b1c002
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/introData.xml
@@ -0,0 +1,57 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<extensions>
+   <page id="tutorials">
+      <group path="page-content/bottom-left" default="true">
+      </group>
+      <group path="page-content/bottom-right" default="true">
+      </group>
+      <group path="page-content/top-left">
+         <extension id="org.eclipse.jdt" importance="low"/>
+         <extension id="org.eclipse.team" importance="low"/>
+      </group>
+      <group path="page-content/top-right">
+         <extension id="org.eclipse.pde" importance="low"/>
+      </group>
+   </page>
+   <page id="whatsnew">
+      <group path="page-content/bottom-left" default="true">
+      </group>
+      <group path="page-content/bottom-right" default="true">
+      </group>
+      <group path="page-content/top-left">
+         <extension id="org.eclipse.ui.workbench.news" importance="low"/>
+         <extension id="org.eclipse.jdt" importance="low"/>
+         <extension id="org.eclipse.pde.changes" importance="low"/>
+         <extension id="org.eclipse.ui.workbench.migration" importance="callout"/>
+      </group>
+      <group path="page-content/top-right">
+         <extension id="org.eclipse.ui.workbench" importance="low"/>
+      </group>
+   </page>
+   <page id="samples">
+      <group path="page-content/bottom-left" default="true">
+      </group>
+      <group path="page-content/bottom-right" default="true">
+      </group>
+      <group path="page-content/top-left">
+         <extension id="org.eclipse.pde.workbench" importance="low"/>
+      </group>
+      <group path="page-content/top-right">
+         <extension id="org.eclipse.jdt" importance="low"/>
+         <extension id="org.eclipse.pde.swt" importance="low"/>
+      </group>
+   </page>
+   <page id="overview">
+      <group path="page-content/bottom-left" default="true">
+      </group>
+      <group path="page-content/bottom-right" default="true">
+      </group>
+      <group path="page-content/top-left">
+         <extension id="org.eclipse.ui.workbench" importance="low"/>
+      </group>
+      <group path="page-content/top-right">
+         <extension id="org.eclipse.jdt" importance="low"/>
+         <extension id="org.eclipse.pde" importance="low"/>
+      </group>
+   </page>
+</extensions>
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/macosx_narrow_book.css b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/macosx_narrow_book.css
new file mode 100644
index 0000000..344e5e4
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/macosx_narrow_book.css
@@ -0,0 +1 @@
+h1,h2           { color: Black }
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/narrow_book.css b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/narrow_book.css
new file mode 100644
index 0000000..09a9aa1
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/narrow_book.css
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/platform.jar b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/platform.jar
new file mode 100644
index 0000000..5cc0f75
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/platform.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin.properties b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin.properties
new file mode 100644
index 0000000..97c51e6
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin.properties
@@ -0,0 +1,64 @@
+###############################################################################
+# Copyright (c) 2000, 2013 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+pluginName=Eclipse Platform
+providerName=Eclipse.org
+
+productName=Eclipse Platform
+productBlurb=Eclipse Platform\n\
+\n\
+Version: 4.2.2\n\
+Build id: {0}\n\
+\n\
+(c) Copyright Eclipse contributors and others 2000, 2013.  All rights reserved.\n\
+Visit http://www.eclipse.org/platform\n\
+\n\
+This product includes software developed by the\n\
+Apache Software Foundation http://www.apache.org/
+
+cheatsheet.actionset = Cheat Sheets
+cheatsheet.item = &Cheat Sheets...
+cheatsheet.category.team = Team/CVS
+cheatsheet.cvs.checkout.name= Check out a CVS project
+cheatsheet.cvs.checkout.desc= Learn how to connect to a CVS repository and check out a project.
+cheatsheet.cvs.merge.name= Merge CVS branches
+cheatsheet.cvs.merge.desc= Follow the steps for merging changes from one CVS branch into another.
+shortcut.overview.tooltip = Overview
+shortcut.tutorials.tooltip = Tutorials
+shortcut.samples.tooltip = Samples
+shortcut.whatsnew.tooltip = What's New
+
+productIntroTitle = Welcome to Eclipse
+productIntroBrandingText = Eclipse Project
+introDescription-overview = The Eclipse Platform is a kind of universal tool platform - an open extensible IDE for anything and nothing in particular. 
+introDescription-tutorials = Learn how to be productive using Eclipse by completing end-to-end tutorials that will guide you along the way.
+introDescription-samples = Explore Eclipse by installing prefabricated samples (may require Internet connection).
+
+theme.default = Default Theme
+theme.classic = Classic
+theme.gtk = GTK
+theme.mac = Mac
+theme.win7 = Windows 7
+theme.winxpBlue = Windows XP Blue
+theme.winxpOlive = Windows XP Olive
+theme.win7Classic = Windows 7 Classic
+theme.solaris = Solaris
+theme.aix = AIX
+theme.hpux = HPUX
+
+trimmedwindow.label.eclipseSDK = Eclipse SDK
+command.name.exit = Exit
+command.name.showView = Show View
+command.name.save = Save
+command.name.saveAll = Save All
+bindingcontext.name.dialogAndWindows = In Dialog and Windows
+bindingcontext.name.windows = In Windows
+bindingcontext.name.bindingView = In Binding View
+bindingcontext.name.dialogs = In Dialogs
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin.xml b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin.xml
new file mode 100644
index 0000000..c90fb84
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin.xml
@@ -0,0 +1,198 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.0"?>
+<plugin>
+
+     <extension id="ide" point="org.eclipse.core.runtime.products"> 
+      <product name="%productName" application="org.eclipse.ui.ide.workbench" description="%productBlurb"> 
+          <!-- For documentation on updating icons, see http://wiki.eclipse.org/Platform-releng/Updating_Branding -->
+          <property name="windowImages" value="eclipse16.gif,eclipse32.gif,eclipse48.gif,eclipse16.png,eclipse32.png,eclipse48.png,eclipse256.png"/> 
+          <property name="aboutImage" value="eclipse_lg.gif"/> 
+          <property name="aboutText" value="%productBlurb"/> 
+          <property name="appName" value="Eclipse"/> 
+          <property name="preferenceCustomization" value="plugin_customization.ini"/> 
+          <property
+                name="startupForegroundColor"
+                value="FFFFFF"/>
+          <property
+                name="startupMessageRect"
+                value="7,225,320,20"/>
+          <property
+                name="startupProgressRect"
+                value="2,290,448,10"/>
+         <property
+          		name="introTitle"
+          		value="%productIntroTitle"/>
+          <property
+          		name="introBrandingImage"
+          		value="product:intro-eclipse.png"/>
+          <property
+          		name="introBrandingImageText"
+          		value="%productIntroBrandingText"/>
+		  <property
+				name="introDescription-overview"
+				value="%introDescription-overview"/>
+		  <property
+				name="introDescription-tutorials"
+				value="%introDescription-tutorials"/>
+		  <property
+				name="introDescription-samples"
+				value="%introDescription-samples"/>                
+		  <property
+				name="applicationXMI"
+				value="org.eclipse.platform/LegacyIDE.e4xmi">
+		  </property>
+		  <property
+				name="cssTheme"
+				value="org.eclipse.e4.ui.css.theme.e4_default">
+		  </property>
+		  <property
+				name="applicationCSSResources"
+          value="platform:/plugin/org.eclipse.platform/images/">
+		  </property>
+      </product> 
+   </extension> 
+   
+   	<extension
+		point="org.eclipse.ui.intro">
+      <introProductBinding
+            introId="org.eclipse.ui.intro.universal"
+            productId="org.eclipse.platform.ide">
+      </introProductBinding>
+    </extension>
+
+   <extension
+         point="org.eclipse.ui.cheatsheets.cheatSheetContent">
+      <category
+            id="org.eclipse.platform.team"
+            name="%cheatsheet.category.team">
+      </category>
+      <cheatsheet
+            category="org.eclipse.platform.team"
+            contentFile="$nl$/cheatsheets/cvs_checkout.xml"
+            id="org.eclipse.platform.cvs.checkout"
+            name="%cheatsheet.cvs.checkout.name">
+         <description>
+            %cheatsheet.cvs.checkout.desc
+         </description>
+      </cheatsheet>
+      <cheatsheet
+            category="org.eclipse.platform.team"
+            contentFile="$nl$/cheatsheets/cvs_merge.xml"
+            id="org.eclipse.platform.cvs.merge"
+            name="%cheatsheet.cvs.merge.name">
+         <description>
+            %cheatsheet.cvs.merge.desc
+         </description>
+      </cheatsheet>
+   </extension>
+   <!-- =====================================================  -->
+   <!-- Standby Content Part contributions                     -->
+   <!-- =====================================================  -->
+   <extension point="org.eclipse.ui.intro.configExtension">
+      <standbyContentPart
+            id="org.eclipse.platform.cheatsheet"
+            class="org.eclipse.platform.internal.CheatSheetStandbyContent"
+            pluginId="org.eclipse.platform"/>
+      <configExtension
+            configId="org.eclipse.ui.intro.universalConfig"
+            content="$nl$/intro/overviewExtensionContent.xml"/>
+      <configExtension
+            configId="org.eclipse.ui.intro.universalConfig"
+            content="$nl$/intro/tutorialsExtensionContent.xml"/>
+      <configExtension
+            configId="org.eclipse.ui.intro.universalConfig"
+            content="$nl$/intro/whatsnewExtensionContent1.xml"/>
+      <configExtension
+            configId="org.eclipse.ui.intro.universalConfig"
+            content="$nl$/intro/whatsnewExtensionContent2.xml"/>
+      <configExtension
+            configId="org.eclipse.ui.intro.universalConfig"
+            content="$nl$/intro/whatsnewExtensionContent3.xml"/>
+   </extension>
+
+
+   <extension
+         point="org.eclipse.ui.actionSets">
+      <actionSet
+            label="%cheatsheet.actionset"
+            visible="true"
+            id="org.eclipse.ui.cheatsheets.actionSet">
+         <action
+               label="%cheatsheet.item"
+               class="org.eclipse.ui.cheatsheets.CheatSheetExtensionFactory:helpMenuAction"
+               menubarPath="help/group.tutorials"
+               id="org.eclipse.ui.cheatsheets.actions.CheatSheetHelpMenuAction">
+         </action>
+      </actionSet>
+   </extension>
+   <extension
+         point="org.eclipse.e4.ui.css.swt.theme">
+      <theme
+            basestylesheeturi="css/e4_default.css"
+            id="org.eclipse.e4.ui.css.theme.e4_default.noos"
+            label="%theme.default">
+      </theme>
+      <theme
+            basestylesheeturi="css/e4_classic_winxp.css"
+            id="org.eclipse.e4.ui.css.theme.e4_classic"
+            label="%theme.classic">
+      </theme>
+      <theme
+            basestylesheeturi="css/e4_default_gtk.css"
+            id="org.eclipse.e4.ui.css.theme.e4_default"
+            label="%theme.gtk"
+            os="linux">
+      </theme>
+      <theme
+            basestylesheeturi="css/e4_default_mac.css"
+            id="org.eclipse.e4.ui.css.theme.e4_default"
+            label="%theme.mac"
+            os="macosx">
+      </theme>
+      <theme
+            basestylesheeturi="css/e4_default_win7.css"
+            id="org.eclipse.e4.ui.css.theme.e4_default"
+            label="%theme.win7"
+            os="win32"
+            os_version="6.1">
+      </theme>
+            <theme
+                  basestylesheeturi="css/e4_default_winxp_blu.css"
+                  id="org.eclipse.e4.ui.css.theme.e4_default"
+                  label="%theme.winxpBlue"
+                  os="win32">
+      </theme>
+	  <theme
+            basestylesheeturi="css/e4_default_winxp_olv.css"
+            id="org.eclipse.e4.ui.css.theme.e4_default.xpolive"
+            label="%theme.winxpOlive"
+            os="win32">
+      </theme>
+   <theme
+         basestylesheeturi="css/e4_classic_win7.css"
+         id="org.eclipse.e4.ui.css.theme.e4_classic"
+         label="%theme.win7Classic"
+         os="win32"
+         os_version="6.1">
+   </theme>
+   <theme
+         basestylesheeturi="css/e4_default_gtk.css"
+         id="org.eclipse.e4.ui.css.theme.e4_default"
+         label="%theme.solaris"
+         os="solaris">
+   </theme>
+   <theme
+         basestylesheeturi="css/e4_default_gtk.css"
+         id="org.eclipse.e4.ui.css.theme.e4_default"
+         label="%theme.aix"
+         os="aix">
+   </theme>
+   <theme
+         basestylesheeturi="css/e4_classic_winxp.css"
+         id="org.eclipse.e4.ui.css.theme.e4_default"
+         label="%theme.hpux"
+         os="hpux">
+   </theme>
+      </extension>
+
+</plugin>
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin_customization.ini b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin_customization.ini
new file mode 100644
index 0000000..de51636
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin_customization.ini
@@ -0,0 +1,37 @@
+# plugin_customization.ini 
+# sets default values for plug-in-specific preferences
+# keys are qualified by plug-in id
+# e.g., com.example.acmeplugin/myproperty=myvalue
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# "%key" are externalized strings defined in plugin_customization.properties
+# This file does not need to be translated.
+
+# WARNING: This file defines the preference overrides for the Platform build 
+# (the one with no JDT or PDE), not the SDK build (aka the IDE).  
+# For the SDK build, use the plugin_customization.ini file in the 
+# org.eclipse.sdk plug-in instead.
+
+# Property "org.eclipse.ui/defaultPerspectiveId" controls the 
+# perspective that the workbench opens initially
+org.eclipse.ui/defaultPerspectiveId=org.eclipse.ui.resourcePerspective
+
+# new-style tabs by default
+org.eclipse.ui/SHOW_TRADITIONAL_STYLE_TABS=false
+
+# put the perspective switcher on the top right
+org.eclipse.ui/DOCK_PERSPECTIVE_BAR=topRight
+
+# show progress on startup
+org.eclipse.ui/SHOW_PROGRESS_ON_STARTUP=true
+
+# Welcome theme to use
+org.eclipse.ui.intro/INTRO_THEME = org.eclipse.ui.intro.universal.slate
+
+# Root page links to show in the Universal Welcome
+org.eclipse.ui.intro.universal/INTRO_ROOT_PAGES = overview,tutorials,samples,whatsnew
+
+# Initial page layout of the Universal Welcome
+org.eclipse.ui.intro.universal/INTRO_DATA = product:introData.xml
+
+# Order help books in table of contents
+org.eclipse.help/HELP_DATA = helpData.xml
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin_customization.properties b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin_customization.properties
new file mode 100644
index 0000000..f2f3517
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin_customization.properties
@@ -0,0 +1,14 @@
+###############################################################################
+# Copyright (c) 2000, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+# plugin_customization.properties
+# contains externalized strings for plugin_customization.ini
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/splash.bmp b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/splash.bmp
new file mode 100644
index 0000000..a2d0101
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/splash.bmp
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.rcp_4.2.1.v201302041200.jar b/lib/monitor-x86_64/plugins/org.eclipse.rcp_4.2.1.v201302041200.jar
new file mode 100644
index 0000000..4f4b6e5
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.rcp_4.2.1.v201302041200.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.search_3.8.0.v20120523-1540.jar b/lib/monitor-x86_64/plugins/org.eclipse.search_3.8.0.v20120523-1540.jar
new file mode 100644
index 0000000..7a2fc82
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.search_3.8.0.v20120523-1540.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.swt.gtk.linux.x86_64_3.100.1.v4236b.jar b/lib/monitor-x86_64/plugins/org.eclipse.swt.gtk.linux.x86_64_3.100.1.v4236b.jar
new file mode 100644
index 0000000..7ac92bf
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.swt.gtk.linux.x86_64_3.100.1.v4236b.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.swt_3.100.1.v4236b.jar b/lib/monitor-x86_64/plugins/org.eclipse.swt_3.100.1.v4236b.jar
new file mode 100644
index 0000000..9e784d4
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.swt_3.100.1.v4236b.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.text_3.5.200.v20120523-1310.jar b/lib/monitor-x86_64/plugins/org.eclipse.text_3.5.200.v20120523-1310.jar
new file mode 100644
index 0000000..9d77e50
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.text_3.5.200.v20120523-1310.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.browser_3.4.2.v20130123-162658.jar b/lib/monitor-x86_64/plugins/org.eclipse.ui.browser_3.4.2.v20130123-162658.jar
new file mode 100644
index 0000000..91c7c13
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.browser_3.4.2.v20130123-162658.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.console_3.5.100.v20120521-2012.jar b/lib/monitor-x86_64/plugins/org.eclipse.ui.console_3.5.100.v20120521-2012.jar
new file mode 100644
index 0000000..1415db6
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.console_3.5.100.v20120521-2012.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.editors_3.8.0.v20120523-1540.jar b/lib/monitor-x86_64/plugins/org.eclipse.ui.editors_3.8.0.v20120523-1540.jar
new file mode 100644
index 0000000..5d584f5
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.editors_3.8.0.v20120523-1540.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.externaltools_3.2.100.v20120530-1753.jar b/lib/monitor-x86_64/plugins/org.eclipse.ui.externaltools_3.2.100.v20120530-1753.jar
new file mode 100644
index 0000000..f2d23cb
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.externaltools_3.2.100.v20120530-1753.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.forms_3.5.200.v20120705-114351.jar b/lib/monitor-x86_64/plugins/org.eclipse.ui.forms_3.5.200.v20120705-114351.jar
new file mode 100644
index 0000000..5fda331
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.forms_3.5.200.v20120705-114351.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.ide.application_1.0.400.v20120523-1955.jar b/lib/monitor-x86_64/plugins/org.eclipse.ui.ide.application_1.0.400.v20120523-1955.jar
new file mode 100644
index 0000000..ceff0bf
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.ide.application_1.0.400.v20120523-1955.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.ide_3.8.2.v20121106-165923.jar b/lib/monitor-x86_64/plugins/org.eclipse.ui.ide_3.8.2.v20121106-165923.jar
new file mode 100644
index 0000000..0d02879
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.ide_3.8.2.v20121106-165923.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/.api_description b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/.api_description
new file mode 100644
index 0000000..8eec52a
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/.api_description
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<component name="org.eclipse.ui.intro.universal_3.2.600.v20120912-155524" version="1.2">
+    <plugin id="org.eclipse.ui.intro.universal_3.2.600.v20120912-155524"/>
+    <package name="org.eclipse.ui.intro.universal" visibility="1">
+        <type name="ExtensionFactory" restrictions="6"/>
+    </package>
+</component>
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/.options b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/.options
new file mode 100644
index 0000000..8de8a48
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/.options
@@ -0,0 +1,24 @@
+# Debugging options for the org.eclipse.ui.intro.universal.
+
+# Master flag for all org.eclipse.ui.intro.universal plugin debug options.
+org.eclipse.ui.intro.universal/debug = true
+
+# Enable logging of information messages in the plugin. By default, info
+# messages are not logged. Setting this option to true will enable logging
+# trace information messages.
+org.eclipse.ui.intro.universal/trace/logInfo = true
+
+# Enable logging of performance messages in the plugin. By default, performance
+# messages are not logged. Setting this option to true will enable logging
+# trace information messages. (note: enabling info logging does not enable
+# this flag.)
+org.eclipse.ui.intro.universal/trace/logPerformance = false
+
+# Performance flags used by the Performance framework to report failures 
+# of specific thresholds.  
+
+# Time to create and display the full Intro view.
+# org.eclipse.ui.intro/perf/createView = 1000
+
+# Time needed to switch between Intro standby states.
+# org.eclipse.ui.intro/perf/setStandbyState = 300
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/ECLIPSE_.RSA b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..aea8620
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/ECLIPSE_.RSA
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/ECLIPSE_.SF b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..80f070b
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/ECLIPSE_.SF
@@ -0,0 +1,1208 @@
+Signature-Version: 1.0

+SHA1-Digest-Manifest: +seXZ4xz3pYvyr3JMkhA8hkZJGU=

+Created-By: 1.6.0 (IBM Corporation)

+SHA1-Digest-Manifest-Main-Attributes: 6kzl62q3Ft2eEp9b7AjFWAB9PcY=

+

+Name: themes/shared/graphics/contentpage/wn-fs_med.gif

+SHA1-Digest: g4D4b7wuqTNzRVube5QmKC37bZQ=

+

+Name: themes/slate/graphics/icons/ctool/webresources-select.png

+SHA1-Digest: os+7sc8e6OnYZcVvnz/yAMw64tU=

+

+Name: icons/full/obj16/inew_obj.gif

+SHA1-Digest: eRsScWLx85QUBzF7yK5EkT770CE=

+

+Name: themes/circles/swt/migrate.properties

+SHA1-Digest: RnBLNqobyqHJFvY+WbfB7MeeODU=

+

+Name: themes/circles/graphics/launchbar/migrate16.png

+SHA1-Digest: qOwRgNR0NJh2gKIrVlxWfH7Wi3w=

+

+Name: themes/circles/graphics/icons/ctool/wb_nav_32.gif

+SHA1-Digest: E0ITtJWnQdOwBI7A63vmBKYmKJk=

+

+Name: themes/circles/html/font-relative.css

+SHA1-Digest: tUx0kOFdiFK+vgId6wNuZ2ILYZ8=

+

+Name: themes/purpleMesh/swt/webresources.properties

+SHA1-Digest: QfLszx7vRd8waUr7+oxtskHNArY=

+

+Name: themes/slate/graphics/launchbar/migrate16.png

+SHA1-Digest: ayPNPwCVStgADMkH9M8u10dEbOg=

+

+Name: icons/full/obj16/icallout_obj.gif

+SHA1-Digest: Kv6Ia9Pr7KqdvrrCJXgYdMCga6A=

+

+Name: themes/circles/graphics/icons/ctool/tutorials_tophov.gif

+SHA1-Digest: KaCk6TkrNhd2OS1m32y6SFvUQjs=

+

+Name: themes/circles/swt/overview.properties

+SHA1-Digest: dxfnqH/LIpGVO5/H48/Co1vooSQ=

+

+Name: themes/circles/html/whatsnew.css

+SHA1-Digest: Pacc+BuJXkSeS/6P6vUy+/mVp0A=

+

+Name: themes/shared/html/shared.css

+SHA1-Digest: crEguiJWE7d2fyBBNVkLMurs7u0=

+

+Name: themes/purpleMesh/graphics/icons/etool/firsteps48.gif

+SHA1-Digest: pyhExq17Rqus88SE1gSeerjIk84=

+

+Name: themes/slate/graphics/icons/ctool/tu_nav_32.gif

+SHA1-Digest: XZjEi83SrkVDPJmkH0eHwBltxf8=

+

+Name: themes/slate/graphics/rootpage/samples48_hov.gif

+SHA1-Digest: 634EWkbAYNP7qS102sQltfOzxD8=

+

+Name: themes/shared/graphics/icons/ctool/widget_closed_rtl.gif

+SHA1-Digest: yKDpX4nR40C26tvbU0QUyfpTIe0=

+

+Name: themes/circles/graphics/contentpage/tu_banner.jpg

+SHA1-Digest: 9LU6Z+jPPzhwonByip7zOjz+Wew=

+

+Name: themes/circles/graphics/icons/ctool/wb_nav.png

+SHA1-Digest: Hz8erAP6PxWl6mdmALgFQZ6rHNA=

+

+Name: themes/circles/graphics/icons/ctool/fs_nav.png

+SHA1-Digest: 9ZyDPJBbgq3Qm+eAGh1zdhi9ysk=

+

+Name: icons/welcome16.gif

+SHA1-Digest: V1+WjELc7OwG7ZnrhEYLlXvbpWE=

+

+Name: themes/circles/graphics/icons/ctool/migrate.png

+SHA1-Digest: bjbqV9RpASAtwhOz7+8PcXA0NSw=

+

+Name: themes/circles/html/rtl.css

+SHA1-Digest: 8wVt0d9GAUKHlCBSi/vG90jXQUE=

+

+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew48sel.gif

+SHA1-Digest: c7bdT4i6cjAm6zcUNypiOr2OS5k=

+

+Name: themes/shared/graphics/icons/ctool/widget_closed_hov_rtl.gif

+SHA1-Digest: EuXcHObzV2612U2DjQyZlefkskQ=

+

+Name: themes/purpleMesh/graphics/icons/etool/webrsrc48sel.gif

+SHA1-Digest: x6crnl2+ZiZNMdBFeb4C94S/pow=

+

+Name: themes/circles/graphics/icons/ctool/wn_nav.png

+SHA1-Digest: rrR5bDLi89KX/xOPqmWhq3koD1U=

+

+Name: themes/circles/graphics/launchbar/tutorials16.png

+SHA1-Digest: VoPt5dok7nFgh7IHW6eK9dV7L24=

+

+Name: themes/slate/graphics/icons/ctool/migrate.png

+SHA1-Digest: zZNgvgCCkRxzER4saBd3xBWkfU0=

+

+Name: themes/slate/graphics/standby/wn_standbyhov.gif

+SHA1-Digest: qRYU61gSmQPjlS5wCfZvMhAPEp0=

+

+Name: themes/purpleMesh/graphics/icons/ctool/firsteps72.gif

+SHA1-Digest: ARVlQEp9GeLrHjDN4cZ7V/IWrd8=

+

+Name: themes/slate/graphics/icons/ctool/firststeps-select.gif

+SHA1-Digest: o1HHpOXZp6uT1nBu963GSFujPH8=

+

+Name: themes/circles/graphics/icons/ctool/wr_nav.png

+SHA1-Digest: fRVPpOb8tisIfM9YROkSBCvJ5pI=

+

+Name: themes/circles/graphics/standby/wb_standbyhov.gif

+SHA1-Digest: lobGsW2DF34dXuu4VFfcrz+dg3c=

+

+Name: themes/circles/graphics/icons/obj48/newhov_obj.gif

+SHA1-Digest: cwQdX22yDfLP5bVJE9eJF86EFF0=

+

+Name: themes/purpleMesh/graphics/icons/etool/tutorials72.gif

+SHA1-Digest: kIhjXr2y3uh6QnIxtq9XMRxDn8k=

+

+Name: themes/slate/graphics/standby/wn_standby.gif

+SHA1-Digest: e+qTVlL1+aHCcJWhh19xWZmzu5s=

+

+Name: themes/purpleMesh/graphics/contentpage/migrate_wtr.jpg

+SHA1-Digest: a/QcFu26oZ/i3g7k+yAEWo7k5hY=

+

+Name: themes/circles/graphics/icons/ctool/ov_nav_64.gif

+SHA1-Digest: xrr7IJCqmX2C5xvCQW28vhfuOcg=

+

+Name: themes/purpleMesh/graphics/contentpage/section3.gif

+SHA1-Digest: 3sus86ccku05aAqMn9VCPndrPBw=

+

+Name: themes/circles/graphics/icons/ctool/mi_nav_hover.gif

+SHA1-Digest: q/96M0kKrJeOPkrWAT2N+tGGk3s=

+

+Name: themes/purpleMesh/swt/whatsnew.properties

+SHA1-Digest: vUxMvUZmCL3YN89p33Ez9X8ICO4=

+

+Name: themes/slate/graphics/rootpage/firststeps48_hov.gif

+SHA1-Digest: P86nXECjpze8PbI3FM3eFHkm+Lk=

+

+Name: themes/circles/swt/firststeps.properties

+SHA1-Digest: 5tqsudk/R/1lCEbhDUX0rnhOkCQ=

+

+Name: themes/purpleMesh/graphics/icons/etool/overview48.gif

+SHA1-Digest: 89LuwEnmFVFcrYwOdGX+bEA7/KM=

+

+Name: themes/purpleMesh/graphics/icons/ctool/tutorials48.gif

+SHA1-Digest: cwmzAw4TBv+PQgs4YrD9gDw2Ps4=

+

+Name: themes/purpleMesh/html/font-absolute.css

+SHA1-Digest: 0wDpvhSsczlKTj9djfxQ5ENjEHw=

+

+Name: themes/purpleMesh/graphics/icons/dtool/back.gif

+SHA1-Digest: XlK7L7TiiONgpcL9uktiiGmofl8=

+

+Name: themes/slate/graphics/launchbar/whatsnew16.png

+SHA1-Digest: mQVW9+8NecwhNWgzJgNlDBcxaKs=

+

+Name: themes/purpleMesh/graphics/icons/ctool/migrate48sel.gif

+SHA1-Digest: DlIcxxNoIEYuDve+LFuFNw0KGG8=

+

+Name: themes/circles/html/migrate.css

+SHA1-Digest: Io/nl2lGQsSNtmShvxFj1sBzgMk=

+

+Name: themes/circles/html/standby.css

+SHA1-Digest: BB5vT8i6rIB580zgFNu9DHUox54=

+

+Name: themes/shared/graphics/contentpage/ov_med.gif

+SHA1-Digest: iiTKJ+/qWUGjQ6zU2+3qkI2UrKg=

+

+Name: themes/purpleMesh/graphics/icons/ctool/wb48.gif

+SHA1-Digest: rWX2aVi7U3PQ9oyJFekVUzKsQWc=

+

+Name: themes/circles/graphics/icons/ctool/tu_nav_hover.gif

+SHA1-Digest: uYgUnW0vffa7AXJDv2xR+VSo9Pg=

+

+Name: themes/purpleMesh/graphics/icons/ctool/overview72.gif

+SHA1-Digest: 60dEowqMgf4SCZMOqG/JpzLj7DY=

+

+Name: themes/slate/html/migrate.css

+SHA1-Digest: hcVhm6EOYoE4iCqs8i9Z4t3VWsI=

+

+Name: themes/slate/html/standby.css

+SHA1-Digest: mwzfJyl+pkrSjRtKQID7YBAjuB4=

+

+Name: themes/circles/graphics/icons/ctool/wn_nav_32.gif

+SHA1-Digest: lQhyX2A/+T1vu7AHgHmAdMPJL34=

+

+Name: themes/slate/graphics/rootpage/overview48_hov.png

+SHA1-Digest: Lyw9EfbA+ECmHubXo+hmlO/xDEI=

+

+Name: themes/circles/graphics/icons/ctool/migrate_tophov.gif

+SHA1-Digest: BIFpZUBo5LTGxAgwA2DjUErl7aw=

+

+Name: themes/circles/html/overview.css

+SHA1-Digest: OSQR/YVuPk6nCfCSCUftKIZJ5Es=

+

+Name: themes/slate/preview.png

+SHA1-Digest: uOalswP/Dl7ufM1Ko50b3osY7S4=

+

+Name: themes/circles/graphics/icons/ctool/firststeps.gif

+SHA1-Digest: u8hBUKje68m15K9HmhRViDGyL0Y=

+

+Name: themes/slate/graphics/rootpage/samples48.gif

+SHA1-Digest: qpzjgzvyd5KZAIeAD0+PUzJ5NEE=

+

+Name: themes/purpleMesh/html/firststeps.css

+SHA1-Digest: 9FdW5j9hkbSjH3aZXwrmWZdym2E=

+

+Name: themes/slate/swt/migrate.properties

+SHA1-Digest: hoTfgZ/Y41RoUz4y6LXKz6Yvmqw=

+

+Name: themes/slate/graphics/icons/ctool/tu_nav.png

+SHA1-Digest: QptMtQOmQDoDZ9Vq/dfKdj0pvSs=

+

+Name: themes/slate/html/font-relative.css

+SHA1-Digest: UT05tvIk2jCid+LM7t3bm4zOuIY=

+

+Name: themes/circles/graphics/icons/ctool/mi_nav_32.gif

+SHA1-Digest: IIKBdBw4ER43nMCbg2TYs9jLfM8=

+

+Name: themes/circles/graphics/icons/ctool/workbench_midhov.gif

+SHA1-Digest: KdO2URBysFpSJrlhVnUkPcqMzhs=

+

+Name: themes/purpleMesh/graphics/swt/form_banner.gif

+SHA1-Digest: agcOlycIYp6+B2Y7O27ZvGcKQwE=

+

+Name: themes/circles/graphics/icons/ctool/root_midhov.gif

+SHA1-Digest: qnMDaiSby1RH5YBolr3KVTRzWQo=

+

+Name: themes/circles/graphics/standby/ov_standby.gif

+SHA1-Digest: jeihbsxKFQ3iDSdZMTIWdrJI48M=

+

+Name: themes/slate/swt/tutorials.properties

+SHA1-Digest: siLo70LYVmiYzVqDN/k1RLWzbIs=

+

+Name: themes/circles/graphics/icons/ctool/sa_nav_32.gif

+SHA1-Digest: BcKEHJvATs4/BqfEsPgA0joJd9Y=

+

+Name: themes/slate/graphics/icons/ctool/migrate-select.gif

+SHA1-Digest: GqyboPzStqkM3UYpUv4SJqMhnmk=

+

+Name: themes/purpleMesh/graphics/icons/ctool/firsteps48sel.gif

+SHA1-Digest: ugzJxuex3RlJ7Q+UNJLbp8LNuFs=

+

+Name: themes/purpleMesh/graphics/contentpage/samples_wtr.jpg

+SHA1-Digest: PSVDSrd6C0WDUM0JbfBVw49oKuQ=

+

+Name: themes/circles/graphics/icons/ctool/sa_nav.png

+SHA1-Digest: QTuUi+brurlbvAHYvtukeo4hezY=

+

+Name: themes/slate/graphics/launchbar/webresources16.png

+SHA1-Digest: xufhpZXbOY7O2FJ0EOZKo6stdLc=

+

+Name: themes/slate/graphics/icons/ctool/mi_nav.png

+SHA1-Digest: aFmb0IpPLm9SymHNvBldaj20tQg=

+

+Name: themes/slate/graphics/rootpage/migrate48.gif

+SHA1-Digest: GyLi9+cBSQCQJ6UgLyN9rGmgxlk=

+

+Name: themes/circles/graphics/icons/ctool/cpt_midhov.gif

+SHA1-Digest: TV/CndDQVZeLlDyd+7ha5a2/YtA=

+

+Name: themes/circles/graphics/icons/obj48/new_obj.gif

+SHA1-Digest: /V7T2k6XUN4Uxwg7PFAjvoEBoas=

+

+Name: themes/purpleMesh/graphics/launchbar/whatsnew.gif

+SHA1-Digest: HZrHWXJqmb/u9EGrYxBo5mKrzvs=

+

+Name: themes/slate/graphics/icons/ctool/whatsnew.png

+SHA1-Digest: 6ggZSh719rsO/D0JhDMz9OEXFYU=

+

+Name: themes/slate/swt/root.properties

+SHA1-Digest: 6iCmd1CDStKtdo94zx1EmFAqJmA=

+

+Name: themes/slate/graphics/rootpage/firststeps48.gif

+SHA1-Digest: /Mmg9op/++UvV/A+As2xGD/8CLI=

+

+Name: themes/purpleMesh/graphics/icons/ctool/overview48sel.gif

+SHA1-Digest: uP0uCKdGXLI48c0KK3abD7YY8oo=

+

+Name: themes/circles/graphics/icons/ctool/fs_nav_32.gif

+SHA1-Digest: 03HVCDXBVZPjli1tHI8e6EpWLlU=

+

+Name: themes/slate/graphics/rootpage/root_banner.jpg

+SHA1-Digest: n7ZfrJ3GwQOyVL4MOoI/G07IC8g=

+

+Name: themes/purpleMesh/graphics/contentpage/section2.gif

+SHA1-Digest: cZ+01ZA+CK3U8UgsAGDlu5Nl/1Y=

+

+Name: themes/slate/swt/overview.properties

+SHA1-Digest: Uv1u/8X0S5qqPMJxSyZv8oUtZao=

+

+Name: themes/slate/graphics/contentpage/banner_extension.jpg

+SHA1-Digest: NekY7d51JRcroYcLP4X4RaCIQKc=

+

+Name: themes/circles/graphics/standby/mi_standby.gif

+SHA1-Digest: GZRVo3rq3uXADZMIRao9+j3abu0=

+

+Name: themes/purpleMesh/graphics/icons/etool/webrsrc48.gif

+SHA1-Digest: NxD5ybp1J3PX2YpNJHv/xAZZolo=

+

+Name: themes/slate/graphics/icons/ctool/whatsnew-select.gif

+SHA1-Digest: TW7PjuzcAS8hIMHkc00LSrIUnos=

+

+Name: themes/purpleMesh/html/ltr.css

+SHA1-Digest: nnxeF8h2Cb5AWdVJnx07Natd8ME=

+

+Name: themes/slate/html/tutorials.css

+SHA1-Digest: vWx1UG9xEdUNOlKbOcW0NKkKwQw=

+

+Name: themes/slate/html/shared.css

+SHA1-Digest: 4tqToow/qbtVb2mG3tyVpvgo1dw=

+

+Name: themes/purpleMesh/graphics/icons/ctool/firsteps16.png

+SHA1-Digest: a/0HK4wfeeh5TahwmW/DsCIg3oQ=

+

+Name: themes/circles/html/root.css

+SHA1-Digest: UAjfuJsBvCzCeoc1mbFowYSldQc=

+

+Name: themes/circles/graphics/icons/ctool/workbench_tophov.gif

+SHA1-Digest: hNK2dMZHycA5wImaVQaLg5JbbB0=

+

+Name: themes/slate/graphics/standby/tu_standby.gif

+SHA1-Digest: UOeWghDGiam8u8+KldYhPFxoXuo=

+

+Name: themes/purpleMesh/graphics/icons/etool/firsteps72.gif

+SHA1-Digest: wiQ2V1uB6QBg2/U0V6cQYlhdZTo=

+

+Name: themes/purpleMesh/swt/standby.properties

+SHA1-Digest: kz2Je1Q9V4GRIscHe/+VsoFAfC4=

+

+Name: themes/slate/graphics/icons/ctool/ov_nav_32.gif

+SHA1-Digest: R2JbRey2ODfsEZMFSiutiFvmWhk=

+

+Name: themes/purpleMesh/html/shared.css

+SHA1-Digest: wKu4ekuBsZJSLOe9WyIvV3fGhmo=

+

+Name: themes/circles/graphics/contentpage/ov_banner.jpg

+SHA1-Digest: hJ7QZAKi3i5MDSK1ATTtSJaNaVA=

+

+Name: themes/circles/graphics/icons/ctool/nav_rightedgehov.gif

+SHA1-Digest: GF04sgXI3l6A73ZJWWjek3ajBmw=

+

+Name: themes/purpleMesh/graphics/icons/etool/samples48sel.gif

+SHA1-Digest: 69k3defxrYpGh4PhEyRMO5Vi5UA=

+

+Name: themes/purpleMesh/graphics/contentpage/backgroundcurve.gif

+SHA1-Digest: nOgIqKO1hwHstcMcsM+LzixlOZg=

+

+Name: themes/circles/swt/root.properties

+SHA1-Digest: E5IAZgK2NJUP1F46LWki+enJfLk=

+

+Name: themes/purpleMesh/graphics/icons/ctool/forward.gif

+SHA1-Digest: cquFAtRx0Txit4Vm2loEoHJ+cIg=

+

+Name: themes/slate/html/webresources.css

+SHA1-Digest: TJcQVS4A6XYddwU+NQ2Zad0MtC0=

+

+Name: themes/purpleMesh/graphics/icons/etool/forward.gif

+SHA1-Digest: +q/20TWhTzDUahnEbne7nK6+OxU=

+

+Name: themes/slate/graphics/contentpage/wr_banner.jpg

+SHA1-Digest: PVmx1PDj4UgUTU0wp1GWqGtdwsE=

+

+Name: themes/purpleMesh/graphics/icons/etool/samples48.gif

+SHA1-Digest: 78H0vGlpPUIjody88fklr90khF8=

+

+Name: themes/slate/html/root.css

+SHA1-Digest: 1AONs66wkTgdw6JBcWdOAe4RtHw=

+

+Name: themes/slate/graphics/rootpage/whatsnew48.gif

+SHA1-Digest: ujvbc8lcJx3ejw+leIWtws06+cI=

+

+Name: themes/slate/graphics/icons/ctool/tutorials-select.png

+SHA1-Digest: 0idtv+CNku7484JebhoXHAiAMj0=

+

+Name: themes/purpleMesh/graphics/launchbar/overview.gif

+SHA1-Digest: VFV2qgY3AyttX3JDb78JZ3+K8dY=

+

+Name: themes/circles/graphics/icons/ctool/webresources_tophov.gif

+SHA1-Digest: 4/Ztv8w0TUF7HULsf1OUMUsI788=

+

+Name: themes/circles/graphics/icons/ctool/whatsnew.gif

+SHA1-Digest: sx0cpRs5vjaMIYssTVlTSyvQtUo=

+

+Name: themes/circles/graphics/icons/ctool/samples.gif

+SHA1-Digest: id/tsFIrrpkCbPQCPQN825ioMvc=

+

+Name: themes/purpleMesh/graphics/contentpage/webrsrc_wtr.jpg

+SHA1-Digest: Wq6LSlmt5gYzI6AXkIa6ldIIc4w=

+

+Name: themes/purpleMesh/graphics/icons/ctool/overview16.png

+SHA1-Digest: Ao5Abg5BSbKk4X0BbfQEc+OMvkM=

+

+Name: themes/slate/graphics/icons/ctool/overview.png

+SHA1-Digest: JWs02I/WMHjDq99DCVJvtyCkERQ=

+

+Name: themes/purpleMesh/graphics/contentpage/background.jpg

+SHA1-Digest: wLQFnis+GVZLMyszW3V+N/9DNdg=

+

+Name: themes/purpleMesh/graphics/icons/etool/overview72.gif

+SHA1-Digest: lUMx0uGLh63QRQwVTupF10T8Kog=

+

+Name: themes/slate/html/rtl.css

+SHA1-Digest: r3aNJ0edoWPwbwFP2upWgj93y9U=

+

+Name: themes/circles/html/font-absolute.css

+SHA1-Digest: 4eZcqJkoMPph/5ZVsn2zuo9N+EY=

+

+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew48.gif

+SHA1-Digest: F1cvqHdNJc3uAuxuDAVQ8o7sSCw=

+

+Name: themes/purpleMesh/graphics/icons/ctool/tutorials72.gif

+SHA1-Digest: kp6Keiy+ANG5Okz6MDJzeoXCMqM=

+

+Name: themes/purpleMesh/graphics/icons/etool/migrate48.gif

+SHA1-Digest: qQpYW/r5zXrgvqvwz6HONWBlBM8=

+

+Name: themes/slate/graphics/standby/fs_standby.gif

+SHA1-Digest: ysua65EOe/pPgVmtZ3NYcuboxB8=

+

+Name: themes/circles/graphics/icons/ctool/firststeps_tophov.gif

+SHA1-Digest: JohW0yL7JpgatFwbwOPeF4SHRgs=

+

+Name: themes/slate/graphics/standby/sa_standby.gif

+SHA1-Digest: QTDS8wQ5HwUz3dquK5n6a/kekOg=

+

+Name: themes/circles/graphics/icons/ctool/workbench.png

+SHA1-Digest: 1Ba08N6ckjKrE5s+K1N5OrnbNTs=

+

+Name: themes/circles/graphics/icons/ctool/root_midhov2.gif

+SHA1-Digest: bzi8X0J1ve2JhIgD9M9yGIXyLxA=

+

+Name: themes/circles/swt/webresources.properties

+SHA1-Digest: gLqZuchBV+fHESZbT9pc2c8IbK0=

+

+Name: themes/purpleMesh/graphics/launchbar/webresources16.png

+SHA1-Digest: j+oOC+m+7ezObQPYOZGBMzCo/u4=

+

+Name: themes/slate/graphics/rootpage/webresources48.png

+SHA1-Digest: tFozmyLRaLaao3q/NV1cvbch/7k=

+

+Name: themes/circles/graphics/standby/mi_standbyhov.gif

+SHA1-Digest: AFU0cRERBIat/N4jnXTr40CJCUQ=

+

+Name: themes/shared/graphics/contentpage/grey_callout.gif

+SHA1-Digest: EF+apqbjiVvAa7m2qEXKIzYUTKs=

+

+Name: themes/purpleMesh/graphics/contentpage/section1.gif

+SHA1-Digest: etN4AI95gu487mkd9aB2K6Ps3r8=

+

+Name: themes/slate/html/whatsnew.css

+SHA1-Digest: M6tNal+JVhQ/BhqmpbXnvgQYxfc=

+

+Name: themes/circles/graphics/icons/ctool/tutorials.png

+SHA1-Digest: P4Kgnz0iQ31Xj0oobcA3qUxh0ws=

+

+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc48.gif

+SHA1-Digest: zWJBswCVbgPVObJ4a12xgGt0TwE=

+

+Name: themes/slate/graphics/icons/ctool/arrow_rtl.gif

+SHA1-Digest: 7exnuqC65TE4uX8cgxlDOInIKqU=

+

+Name: themes/circles/graphics/icons/ctool/ov_nav_hover.gif

+SHA1-Digest: YzV+tZ4YSI0OBHwjdcjDK0kA+z0=

+

+Name: themes/circles/graphics/icons/ctool/wn_nav_64.gif

+SHA1-Digest: CuWl/H+lKwNLJTgQ5rx2mdwRpQ8=

+

+Name: themes/circles/graphics/icons/ctool/workbench_bottomhov.gif

+SHA1-Digest: N33Xx/CMHVLwrWGGlW6ljQoq1xo=

+

+Name: themes/slate/graphics/rootpage/workbench48.png

+SHA1-Digest: dqz3JXh1PvgGut3E9SftNpvGImY=

+

+Name: about.html

+SHA1-Digest: M+fykt9heyWoEv1LNiIEeBhi/2Q=

+

+Name: themes/slate/graphics/rootpage/webresources48_hov.gif

+SHA1-Digest: Lz/gwjqz1EiK4fEU49FwH9JmTrI=

+

+Name: themes/slate/html/firststeps.css

+SHA1-Digest: Z753GjoOP2BLMCjgq9otwGAV8q4=

+

+Name: themes/circles/graphics/icons/ctool/mi_nav_64.gif

+SHA1-Digest: /6E3GSTWkn1rSSv8nRu7ZGDI5Do=

+

+Name: themes/circles/swt/whatsnew.properties

+SHA1-Digest: CatjHspqGSpTJKIp9StlbBo5m0E=

+

+Name: themes/circles/graphics/icons/ctool/sa_nav_hover.gif

+SHA1-Digest: eo3QB+njI7IlfkmZmBXYmR5GAEY=

+

+Name: themes/purpleMesh/graphics/icons/ctool/tutorials48sel.gif

+SHA1-Digest: s//j4/vjCRXn0DDxxqa52B3pyGU=

+

+Name: themes/circles/graphics/icons/ctool/sa_nav_64.gif

+SHA1-Digest: tmmMbGmvroC4N/u4rlAcIfMkGDM=

+

+Name: themes/circles/graphics/icons/ctool/overview.gif

+SHA1-Digest: qIrkbkoNDW1ToZ7vvs0Na/s8JFk=

+

+Name: themes/slate/graphics/rootpage/tutorials48_hov.png

+SHA1-Digest: pK/hba/b+vQtcBY1i4d3kYUtDv0=

+

+Name: themes/circles/graphics/icons/ctool/overview_bottomhov.gif

+SHA1-Digest: wX9dXHV2FYWJWl6LQ63qLaHvVtI=

+

+Name: themes/circles/graphics/standby/wn_standby.gif

+SHA1-Digest: lzoFOcQTxRavIf7LR7okgyTh1MA=

+

+Name: themes/slate/graphics/icons/ctool/wb_nav_32.gif

+SHA1-Digest: Yvn/MQ+naKlAbP3IS9CBowI86cs=

+

+Name: themes/purpleMesh/graphics/icons/ctool/samples48.gif

+SHA1-Digest: lHdsyvz00Jan6waGscAzqAYwC3A=

+

+Name: themes/slate/graphics/rootpage/tutorials48.gif

+SHA1-Digest: M+4dqfI2bpZp6uDJ4BUFwLPW/yA=

+

+Name: themes/circles/graphics/launchbar/overview16.png

+SHA1-Digest: Droy5JKc8rSInbFfC0/Gq098fDQ=

+

+Name: themes/circles/graphics/standby/ov_standbyhov.gif

+SHA1-Digest: qIxHOTOCOUloOKsA/wgpkUy3dFc=

+

+Name: themes/slate/graphics/icons/ctool/webresources-select.gif

+SHA1-Digest: 8Cv1H3fsZklsZxg5TTsSQo+WlG4=

+

+Name: themes/purpleMesh/preview.png

+SHA1-Digest: Kn3AvPfDEMTopfc9ip8ySBKf5RQ=

+

+Name: themes/slate/graphics/rootpage/migrate48_hov.png

+SHA1-Digest: vOQlu+RpFEaOqQJbiZoYlY3nsCU=

+

+Name: themes/circles/graphics/icons/ctool/fs_nav_64.gif

+SHA1-Digest: s2pB28B2OgQjTQFl61uJ3kSR4js=

+

+Name: themes/circles/graphics/icons/ctool/overview_midhov.gif

+SHA1-Digest: hfeH61+W0mY1vrxZpPWOCgd2VAw=

+

+Name: themes/purpleMesh/html/webresources.css

+SHA1-Digest: OUHwKpqTA4TzUmTjt3pXG+u0Y+M=

+

+Name: themes/purpleMesh/graphics/root/background.jpg

+SHA1-Digest: uGAyBMFAulKTW35Y1on8wDqO9QU=

+

+Name: themes/purpleMesh/graphics/icons/etool/migrate48sel.gif

+SHA1-Digest: du/TWd2fH3emHpxGjKGLM5q8OAc=

+

+Name: themes/circles/html/ltr.css

+SHA1-Digest: mNUmBOD3D/E4HlyWdDs2dE91vkI=

+

+Name: themes/slate/graphics/contentpage/tu_banner.jpg

+SHA1-Digest: G0czeYWa72mjuj4WNuMoORG+XSE=

+

+Name: themes/purpleMesh/graphics/icons/etool/webrsrc72.gif

+SHA1-Digest: tmmt3wg9gaRNOsCY9/bw9IdiJUw=

+

+Name: themes/slate/html/overview.css

+SHA1-Digest: 1uUtcoJFgCnpf9PfHEQDxZna9oA=

+

+Name: icons/full/obj16/ilow_obj.gif

+SHA1-Digest: AeAIhECiTxTSrP5Fiqt5FyJBpM0=

+

+Name: themes/purpleMesh/graphics/icons/ctool/migrate48.gif

+SHA1-Digest: xDBQf0i2IB1ffnSorwgZRHw+9l4=

+

+Name: themes/slate/graphics/launchbar/tutorials16.png

+SHA1-Digest: SqseXs9r49EveUOjeNuWZz+FqRk=

+

+Name: themes/circles/html/firststeps.css

+SHA1-Digest: oYGGaUJXE0ywRATRWknRI7eDN9s=

+

+Name: themes/circles/graphics/icons/ctool/fs_nav_hover.gif

+SHA1-Digest: cF9yXz/k2USPI4wntdVH5lFplJQ=

+

+Name: themes/slate/graphics/standby/wb_standbyhov.gif

+SHA1-Digest: lND1CpaBKCbGvCmcIk1Jxr7qxI4=

+

+Name: themes/circles/graphics/standby/tu_standbyhov.gif

+SHA1-Digest: OHB7oy52x8oEaY4AU/z8PqYQotg=

+

+Name: themes/slate/html/font-absolute.css

+SHA1-Digest: 8KhGPSwQk728Jh5+mNPe9VKyEqQ=

+

+Name: themes/circles/swt/standby.properties

+SHA1-Digest: jhwOyyIkPm83m3M2smp4w68VWU0=

+

+Name: themes/circles/graphics/icons/ctool/migrate.gif

+SHA1-Digest: ojGLDLfkhAjjald8nSXaI1lnVgg=

+

+Name: themes/circles/graphics/icons/ctool/webresources.png

+SHA1-Digest: XmoXn4Ilf55ncgYDrbiEEq3O2Ts=

+

+Name: icons/full/obj16/image_obj.gif

+SHA1-Digest: lMIn95+1c+iB2gk+iiS9xyfOEFk=

+

+Name: themes/purpleMesh/swt/tutorials.properties

+SHA1-Digest: WlAQ/8/P1Fv8eW2YRvKvJPBaHZI=

+

+Name: themes/slate/graphics/icons/ctool/overview-select.png

+SHA1-Digest: JuSWTtVCUj7cezEdMC+F/tFdI7c=

+

+Name: themes/shared/graphics/contentpage/wn-fs_high.gif

+SHA1-Digest: nwj9eRAksHaGuy+NFhL4LebnK3c=

+

+Name: themes/circles/graphics/icons/ctool/tu_nav.png

+SHA1-Digest: NJg5QlgKxs60ES6wnUGWsSA5h3g=

+

+Name: themes/purpleMesh/graphics/root/brandmark.gif

+SHA1-Digest: bhWOEJCCFG3PKn2AnUITjnNDjcM=

+

+Name: themes/purpleMesh/graphics/icons/ctool/tutorials16.png

+SHA1-Digest: aYfYYzleZ+ZAE4q6zQ83rW7VQ/0=

+

+Name: themes/slate/graphics/icons/ctool/samples-select.png

+SHA1-Digest: pfUR4LuPuwkaVxgBRrlBnc+h02Q=

+

+Name: themes/slate/graphics/rootpage/overview48.png

+SHA1-Digest: ebNKFer6BfGOPcJHHBVGGqDMhsE=

+

+Name: themes/purpleMesh/graphics/icons/etool/samples72.gif

+SHA1-Digest: r2pWetW8OjMuplKYLQXw0X4yzuE=

+

+Name: themes/circles/graphics/standby/fs_standbyhov.gif

+SHA1-Digest: gaXt2pI8mmo0rEo01S51DCuKjOc=

+

+Name: themes/purpleMesh/graphics/icons/etool/whatsnew48.gif

+SHA1-Digest: lWfbzmNx6i35j8ORUDvCto1uAZc=

+

+Name: themes/purpleMesh/graphics/icons/ctool/wb16.png

+SHA1-Digest: up+uMe3sVZCJMnvxhNkgjVT2abY=

+

+Name: themes/circles/graphics/icons/ctool/mi_nav.png

+SHA1-Digest: MXII8Bz8VCao4+zS2hwe7eDh7Sk=

+

+Name: themes/slate/graphics/icons/ctool/ov_nav.png

+SHA1-Digest: kgbCTAH8WaovM3EcUI9T3rsJV+4=

+

+Name: themes/circles/graphics/icons/ctool/wr_nav_32.gif

+SHA1-Digest: ULVD9wG/rtOg/UcSUO7FEvJehO8=

+

+Name: themes/slate/graphics/rootpage/workbench48_hov.png

+SHA1-Digest: JthFEUB98W5dcI0/mU5hawyK4c8=

+

+Name: themes/circles/graphics/icons/ctool/overview_tophov.gif

+SHA1-Digest: xVRhaCgSky6qLi9BrY7DsaE2bvY=

+

+Name: icons/full/obj16/ihigh_obj.gif

+SHA1-Digest: V0EQPr7+pD7tB8JKSV3MKkrYx98=

+

+Name: themes/purpleMesh/graphics/icons/etool/home.gif

+SHA1-Digest: 6WqOV8XouOUvTUGiatZZD4sW8oE=

+

+Name: themes/purpleMesh/graphics/contentpage/whatsnew_wtr.jpg

+SHA1-Digest: dI/3dz9hXc5nHtjbBYmXqYjJyQk=

+

+Name: themes/purpleMesh/graphics/icons/etool/back.gif

+SHA1-Digest: UWSZDd5u+LAE+Q9vWxFdmsJoiGA=

+

+Name: themes/slate/graphics/icons/ctool/wn_nav_32.gif

+SHA1-Digest: a2l0lo+rs2anYZpgA7qXL9B+t+Y=

+

+Name: themes/circles/graphics/contentpage/wn_banner.jpg

+SHA1-Digest: I2SUS0kfBjo1JvwQsZMamIiAkOE=

+

+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew72.gif

+SHA1-Digest: NKAkgxq0wkJVIjKYL1CnVBTwqaM=

+

+Name: themes/purpleMesh/graphics/icons/etool/migrate72.gif

+SHA1-Digest: WRlWNj7lMDFi6IkfE68j8JgaPoE=

+

+Name: themes/shared/graphics/icons/ctool/widget_open.gif

+SHA1-Digest: OP0AXWaRapQtTZx7JNXoy0H3afM=

+

+Name: themes/circles/graphics/icons/ctool/ov_nav_midhov.gif

+SHA1-Digest: jrFgMrYLF0883/Z2o+dq418gsMc=

+

+Name: themes/slate/graphics/rootpage/whatsnew48_hov.png

+SHA1-Digest: 733NHPc1A2l7QkzNGWANyLipD+w=

+

+Name: themes/purpleMesh/swt/samples.properties

+SHA1-Digest: Maoo2vIbozk0abIdI4/9z2mv2ig=

+

+Name: themes/slate/graphics/rootpage/overview48_hov.gif

+SHA1-Digest: t8nxd/Kgl03Fb8Xpz/UBUncgCsk=

+

+Name: themes/purpleMesh/graphics/launchbar/tutorials.gif

+SHA1-Digest: V5Iq0LtZVEol+ENl+76Tv+6yMdM=

+

+Name: themes/slate/graphics/icons/ctool/mi_nav_32.gif

+SHA1-Digest: U/js7L/cMMMdBmMBMxsmSZbPqog=

+

+Name: themes/shared/graphics/contentpage/tu-sa_high.gif

+SHA1-Digest: nWP+1XPA+005Nh2oq9KqYimcNxo=

+

+Name: themes/circles/graphics/standby/wr_standbyhov.gif

+SHA1-Digest: 38woeVnp5WrwKXAvQlG3gP4BOvA=

+

+Name: themes/circles/graphics/contentpage/mi_banner.jpg

+SHA1-Digest: M8PQV2LF1OrUXGwmIq2JohVbPrU=

+

+Name: themes/purpleMesh/graphics/root/dots.gif

+SHA1-Digest: qBBkDO/9SlLM7TvUQ0N4Lj7cF08=

+

+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc72.gif

+SHA1-Digest: 0TT/v0VcJy1YJgeMUIurFP8SabA=

+

+Name: themes/circles/html/shared.css

+SHA1-Digest: 77jbLGKwQArf7QoPDL/thrxTpeE=

+

+Name: themes/slate/graphics/icons/ctool/sa_nav_32.gif

+SHA1-Digest: L/7IP5sDVKLEn2Fv3dne/Eq7XEg=

+

+Name: themes/slate/swt/whatsnew.properties

+SHA1-Digest: 6mtMGtowlTnhOai9pVDrJgB/wak=

+

+Name: themes/circles/graphics/contentpage/sa_banner.jpg

+SHA1-Digest: 8fxkt+0g07/GO8c0MwW45Zu4Cjs=

+

+Name: themes/circles/graphics/standby/tu_standby.gif

+SHA1-Digest: cwp8Xw0OLbnrlfgyDT2rdFgEkoY=

+

+Name: themes/slate/graphics/standby/wb_standby.gif

+SHA1-Digest: 0Fi8mfmP3Q49EkRt5Fs1lCWsdCo=

+

+Name: themes/circles/graphics/icons/ctool/cpt_bottomhov.gif

+SHA1-Digest: ToSku0QPBKph5ncOXI2I4UsyJfo=

+

+Name: themes/circles/graphics/icons/ctool/wn_nav_hover.gif

+SHA1-Digest: NueBDE2T3TidYfVvX0R0OOJQ/Rg=

+

+Name: themes/slate/graphics/standby/wr_standby.gif

+SHA1-Digest: zXUyjgcDhtRkpVIx51PQQ+5T3Ls=

+

+Name: themes/circles/graphics/icons/ctool/content_nav_bar.gif

+SHA1-Digest: keTbxe8+mUli7KKT7VHfw/lWKR4=

+

+Name: themes/slate/swt/standby.properties

+SHA1-Digest: LVxlOn5Dm8yNnQYiUjuyUz0t2bI=

+

+Name: themes/slate/graphics/icons/ctool/fs_nav_32.gif

+SHA1-Digest: ThcSGP5JN6xuQdfgxdRKP8HEClw=

+

+Name: themes/circles/graphics/standby/sa_standbyhov.gif

+SHA1-Digest: nW22Gdy3ikCbJD4vK2ris39MbeM=

+

+Name: themes/circles/graphics/contentpage/fs_banner.jpg

+SHA1-Digest: FpP3YQsWc0TjrDuhAPCV6en00mU=

+

+Name: themes/shared/graphics/icons/ctool/arrow_rtl.gif

+SHA1-Digest: tbSkD5AC62KAiweJ66It9WaS5UI=

+

+Name: themes/purpleMesh/graphics/launchbar/firststeps16.png

+SHA1-Digest: PLDP82s27kAjpMHYCqyuCn4qfbA=

+

+Name: themes/purpleMesh/graphics/contentpage/firsteps_wtr.jpg

+SHA1-Digest: Cvp+baekZhLBnTbnZs610VqriU0=

+

+Name: themes/purpleMesh/graphics/contentpage/overview_wtr.jpg

+SHA1-Digest: kZahFe3kXY11lo0q3qnaTqMI9So=

+

+Name: icons/full/elcl16/configure.gif

+SHA1-Digest: THfvNG6K7cQT9jhbbVHE87vHFe4=

+

+Name: themes/purpleMesh/graphics/icons/ctool/samples72.gif

+SHA1-Digest: KUqdqV64czls4uOSlRNvtr9hOg0=

+

+Name: themes/circles/graphics/launchbar/webresources16.png

+SHA1-Digest: NmF2slgfepjNh+ShDr5bVEvGlUg=

+

+Name: themes/slate/graphics/rootpage/samples48_hov.png

+SHA1-Digest: 18TB/LAyPlqBZYadL7X5+A4MqrU=

+

+Name: themes/circles/graphics/standby/fs_standby.gif

+SHA1-Digest: 5Aua6Y36U3DXOP2qyXNij+CtX9s=

+

+Name: themes/circles/graphics/standby/sa_standby.gif

+SHA1-Digest: RBhTbXp/E6+mF2sHPGNcD4W48N0=

+

+Name: themes/purpleMesh/html/tutorials.css

+SHA1-Digest: RpAVjpFqMkC0hLPq7124qIhs1Yo=

+

+Name: themes/slate/graphics/contentpage/ov_banner.jpg

+SHA1-Digest: l44eO1KYxcGeGZRz2KX+U/5YmOA=

+

+Name: themes/purpleMesh/graphics/icons/ctool/migrate72.gif

+SHA1-Digest: mlt8QusjLk7KHMZf/06EkzhoH/U=

+

+Name: themes/circles/graphics/icons/ctool/tu_nav_32.gif

+SHA1-Digest: F926c6JRQE1pg5PHJgw2jf49OME=

+

+Name: themes/slate/graphics/rootpage/background.jpg

+SHA1-Digest: h0CYLdLBJNRn4GWBy/rxgEyHL50=

+

+Name: themes/shared/graphics/contentpage/tu-sa_med.gif

+SHA1-Digest: ghx5Pe/N01SftTJBQMfAoyULWM8=

+

+Name: themes/slate/graphics/icons/ctool/firststeps-select.png

+SHA1-Digest: SpDrkbO1LEh8joakTeAcSMehUsI=

+

+Name: themes/circles/swt/tutorials.properties

+SHA1-Digest: Y+NaoEsGbgs6aI9AVhku09xvRlk=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=

+

+Name: themes/slate/graphics/icons/ctool/firststeps.png

+SHA1-Digest: o0dCb6AWcfpxTmz3pTYrr7vKMpU=

+

+Name: themes/circles/graphics/standby/wn_standbyhov.gif

+SHA1-Digest: JJnXUeuX2kqSxZ7H3EYW8nTbF2w=

+

+Name: .options

+SHA1-Digest: 7PEGPbnAeaUlhDarJXUCGyuoNjA=

+

+Name: themes/purpleMesh/graphics/icons/etool/whatsnew48sel.gif

+SHA1-Digest: Xf006mRq9AaBH9Q4fMWGUO342HQ=

+

+Name: themes/slate/html/ltr.css

+SHA1-Digest: Nx5KSB+LbNl5ySJ/emAnX+Ydz0g=

+

+Name: themes/shared/graphics/icons/ctool/arrow.gif

+SHA1-Digest: FRdS/kCA4AYt83tpyUt8G0olu68=

+

+Name: themes/slate/graphics/rootpage/firststeps48_hov.png

+SHA1-Digest: v5FRnmZV4N+t69U9GKyUFOFCMYM=

+

+Name: themes/slate/graphics/icons/ctool/tutorials-select.gif

+SHA1-Digest: vGo/EvDVxt2gWjUI8r9wXb7XHqY=

+

+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew16.png

+SHA1-Digest: EtpxHFs833fG1/S7avpbPkpCcRs=

+

+Name: themes/purpleMesh/graphics/icons/ctool/home.gif

+SHA1-Digest: JOoY9pC0dHgTQhAUL9/HfY7vBmo=

+

+Name: themes/slate/graphics/icons/ctool/workbench.png

+SHA1-Digest: DpvcWcrIZ+JpGcQjubdeFu7Mskg=

+

+Name: themes/purpleMesh/graphics/icons/ctool/back.gif

+SHA1-Digest: z+OtZDnlsMdDmcm+viMBpc9tz2k=

+

+Name: themes/purpleMesh/graphics/icons/etool/whatsnew72.gif

+SHA1-Digest: b5paP8zhysvEhuedZidjQL9HEus=

+

+Name: themes/purpleMesh/graphics/launchbar/samples.gif

+SHA1-Digest: eO6+weStxxVdFdbSR7oXUpgr7SU=

+

+Name: plugin.properties

+SHA1-Digest: FVgcQepw2LdjjA9jaP6rkbZ3cNk=

+

+Name: themes/slate/graphics/standby/mi_standbyhov.gif

+SHA1-Digest: EKMu6lK27pq/aBg/9f2YFExIt5s=

+

+Name: themes/slate/graphics/launchbar/overview16.png

+SHA1-Digest: CQKX46RHuZFbOrT3JiKPUK1/mMw=

+

+Name: themes/circles/preview.png

+SHA1-Digest: sEqN3SavR9InMcm4Np9tsFTZi38=

+

+Name: themes/circles/graphics/icons/ctool/wr_nav_64.gif

+SHA1-Digest: HWgi5cePr8R/laS2cHA1pRJFzqM=

+

+Name: themes/circles/html/webresources.css

+SHA1-Digest: xE+K3s3qfPmZWptlBouT4WUKYlw=

+

+Name: themes/circles/graphics/icons/ctool/workbench.gif

+SHA1-Digest: M9+7ZJ8Td5Vz4SgFfI1Ow9WsJGU=

+

+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc16.png

+SHA1-Digest: tg0HIeAi2M876bRApOwKnRSGcD8=

+

+Name: plugin.xml

+SHA1-Digest: AGntXfGyavfewes8K46DbzHl3PM=

+

+Name: themes/slate/graphics/icons/ctool/wb_nav.png

+SHA1-Digest: eOOC/dmxPSefDxPWFsxQy7E2b8I=

+

+Name: themes/slate/graphics/icons/ctool/fs_nav.png

+SHA1-Digest: ZHHwwi/pL6wyqvnxKLrIs1xSIv8=

+

+Name: themes/slate/graphics/icons/ctool/tutorials.png

+SHA1-Digest: Zx41VhOUb0qOWIpS3T11xSGhNZE=

+

+Name: themes/slate/graphics/rootpage/webresources48.gif

+SHA1-Digest: U3VJRQ912H+F2LovRbKXXJ96jtU=

+

+Name: themes/circles/swt/samples.properties

+SHA1-Digest: b72s5ZpdufL+u+iHt7s2M3fRKR0=

+

+Name: themes/purpleMesh/swt/overview.properties

+SHA1-Digest: mvuul3+a9PKCQbnMxeoDVo6pYSw=

+

+Name: themes/slate/graphics/icons/ctool/wn_nav.png

+SHA1-Digest: Otvz1srG7KEBziy19XaNx1QlL+Y=

+

+Name: themes/purpleMesh/html/whatsnew.css

+SHA1-Digest: fRC+M1elXUGhdy5bFG1XlaE+WUk=

+

+Name: themes/slate/graphics/icons/ctool/wr_nav.png

+SHA1-Digest: X/t10DmFigUi7SWQWKb6TlVLWUo=

+

+Name: themes/circles/graphics/icons/ctool/firststeps.png

+SHA1-Digest: RadtV1OpnwwU8YTjkRVswQ6gkrM=

+

+Name: themes/circles/graphics/icons/ctool/tutorials.gif

+SHA1-Digest: octY2R6o9h3crdH3YxcRu5HinAE=

+

+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc48sel.gif

+SHA1-Digest: Y+bL1SYCHZFL3CnkKVeUUdbqhpA=

+

+Name: themes/slate/graphics/rootpage/samples48.png

+SHA1-Digest: o91S2IouhohWh784056j+CwIPbI=

+

+Name: themes/slate/swt/webresources.properties

+SHA1-Digest: woLrtH3B00iBUZkDmqHU5XH6KPM=

+

+Name: themes/purpleMesh/html/samples.css

+SHA1-Digest: 3ZtdRRozIzL+tYNU9FhPPekIVRI=

+

+Name: themes/slate/graphics/rootpage/workbench48.gif

+SHA1-Digest: pzIWQg7A2tk7ISYqiM52y5+QHXE=

+

+Name: themes/purpleMesh/graphics/icons/obj48/newhov_obj.gif

+SHA1-Digest: pyTbLR1DRUpyozcBnlZOStz7yIA=

+

+Name: themes/slate/graphics/icons/ctool/migrate-select.png

+SHA1-Digest: dJhpMAzfZ3gXyS/WvZAhAGjvHqo=

+

+Name: themes/purpleMesh/graphics/icons/dtool/forward.gif

+SHA1-Digest: aCtO1cY0PcLRL6ryFaULIxWFIRQ=

+

+Name: themes/slate/graphics/rootpage/migrate48.png

+SHA1-Digest: 23aWLw+rpVmgwjJP0FsdVjl2snk=

+

+Name: introContent.xml

+SHA1-Digest: p86gbX8qFQho2c9eTwFxLUM2jbY=

+

+Name: themes/purpleMesh/graphics/icons/ctool/samples16.png

+SHA1-Digest: N/RpSt5Kg9cllB8ZVItf9UX+Gi4=

+

+Name: themes/shared/graphics/icons/ctool/widget_open_hov.gif

+SHA1-Digest: q6+gnr1MvGjjGrmKrs7jlSk9G3E=

+

+Name: themes/slate/graphics/standby/ov_standbyhov.gif

+SHA1-Digest: W7euvutqkpXqaZ28T0tIBgfqWBY=

+

+Name: themes/slate/graphics/rootpage/root_banner_logo.jpg

+SHA1-Digest: abI9SllIW+3XhsY6pzv4qmpCG8Q=

+

+Name: themes/purpleMesh/graphics/icons/etool/firsteps48sel.gif

+SHA1-Digest: vq4JP2YEL3U67r160BMe4c0SSMM=

+

+Name: themes/purpleMesh/swt/firststeps.properties

+SHA1-Digest: EInPG8WIRgJVAjGiy8XWr64xU2o=

+

+Name: themes/slate/graphics/rootpage/tutorials48_hov.gif

+SHA1-Digest: UNZLeDg3VnZSaoOSb/1cB4YjZRA=

+

+Name: themes/slate/graphics/rootpage/firststeps48.png

+SHA1-Digest: AZf3rs765AMlL0crSZ1ACx1ITbw=

+

+Name: themes/circles/graphics/launchbar/whatsnew16.png

+SHA1-Digest: IzjfRJtgZO/1pF6e+qNU1tsRInk=

+

+Name: themes/purpleMesh/swt/migrate.properties

+SHA1-Digest: PXl9YyFN/w2mIaeHRLdH+0+d0Iw=

+

+Name: themes/circles/graphics/icons/ctool/root_bottomhov.gif

+SHA1-Digest: Z8bzjCb+groZ7Mudi3sPT0KHduM=

+

+Name: themes/purpleMesh/graphics/launchbar/migrate16.png

+SHA1-Digest: 9dXlttKYwv7e5tKagvSXjya58VA=

+

+Name: themes/purpleMesh/html/font-relative.css

+SHA1-Digest: uztoLwYdMIMBC3VZXmPl2Qpbe7U=

+

+Name: themes/circles/graphics/icons/ctool/wb_nav_hover.gif

+SHA1-Digest: JGea0KimDZnwwiCcQ8qHPqylM+0=

+

+Name: themes/purpleMesh/graphics/icons/ctool/migrate16.png

+SHA1-Digest: Puh69rUopnG/IU/JThhHdbLh1lo=

+

+Name: themes/slate/graphics/rootpage/migrate48_hov.gif

+SHA1-Digest: 3Y6mFYmavunlKwredaGwnwXCNiE=

+

+Name: themes/purpleMesh/graphics/icons/etool/tutorials48sel.gif

+SHA1-Digest: lk2qg8u2u6oUcxFjIFCXgvGBueA=

+

+Name: themes/slate/graphics/icons/ctool/whatsnew-select.png

+SHA1-Digest: Qv9/KgDiu/UwPNMYHaBZQH6i0gI=

+

+Name: themes/circles/graphics/icons/ctool/ov_nav.png

+SHA1-Digest: YeG6eWWkQN+xSr4Zg9oqEL865ks=

+

+Name: themes/purpleMesh/graphics/icons/etool/overview48sel.gif

+SHA1-Digest: m9kn5H05+QgSBOxLlx2dxaWTGmo=

+

+Name: themes/shared/graphics/contentpage/wr-mi_med.gif

+SHA1-Digest: OIQZ/hOeBpbC0WMHReEsbFJVJLc=

+

+Name: themes/slate/graphics/standby/tu_standbyhov.gif

+SHA1-Digest: tnWwgoBPMHeWYfysLndY1HFWUPM=

+

+Name: themes/circles/graphics/icons/ctool/wr_nav_hover.gif

+SHA1-Digest: XdpoqgAH+p1EVxL9GyMzE/Hfv/c=

+

+Name: themes/slate/graphics/launchbar/firststeps16.png

+SHA1-Digest: 9hsrMpO8mZJzpwABMmAgSWU3MQc=

+

+Name: themes/purpleMesh/html/overview.css

+SHA1-Digest: ewtO0S8LN4bgkv7PzeVxcz4wzj0=

+

+Name: themes/slate/graphics/standby/ov_standby.gif

+SHA1-Digest: tQgasT5T5uccRV34rNN/eFA/j1I=

+

+Name: themes/circles/html/tutorials.css

+SHA1-Digest: xa3e4ZW7ls+gOKV7vf3sJ/bKCn4=

+

+Name: themes/circles/graphics/rootpage/welcomebckgrd.jpg

+SHA1-Digest: 1CYoWHrrrQBODT6u1XiiYAc8Ua8=

+

+Name: themes/purpleMesh/html/rtl.css

+SHA1-Digest: 6emyVT06jVF1IpGc+y1ND2z5AgE=

+

+Name: themes/purpleMesh/graphics/icons/ctool/firsteps48.gif

+SHA1-Digest: mBsb4wgGSyU8bNKCIcKAAzHfBdc=

+

+Name: themes/slate/graphics/icons/ctool/sa_nav.png

+SHA1-Digest: +fvKMIGlRhLKb75Ge8kDFcNIlig=

+

+Name: themes/circles/graphics/icons/ctool/samples_tophov.gif

+SHA1-Digest: KB0g/q6q9M8Vej0+uXtDX/4V4gQ=

+

+Name: themes/circles/graphics/icons/ctool/whatsnew_tophov.gif

+SHA1-Digest: l0/AVYCJX3mHyeIM7AVVpjrHRAE=

+

+Name: themes/circles/graphics/icons/ctool/webresources.gif

+SHA1-Digest: PzeqTnB2FYvrmgO3g1mKmko1DF0=

+

+Name: themes/circles/graphics/icons/ctool/ov_nav_rightedgehov.gif

+SHA1-Digest: f0w1YUKKxjFzxukKAiz/X7+SoEQ=

+

+Name: themes/purpleMesh/graphics/icons/etool/tutorials48.gif

+SHA1-Digest: rpkhEx725uQSS4BO8Cu6AYX/1qs=

+

+Name: .api_description

+SHA1-Digest: zVgZ4KXcjfSLvrVOAZybRVyuyD4=

+

+Name: themes/shared/graphics/contentpage/ov_high.gif

+SHA1-Digest: bPF5JPTBYJSjUtUp7l/Q+jYOtX0=

+

+Name: themes/circles/graphics/icons/ctool/ov_nav_32.gif

+SHA1-Digest: zdyV1x+iXWd1D+qvrkSFfVni9Wc=

+

+Name: themes/slate/swt/samples.properties

+SHA1-Digest: U5PKzlW/IGZhPlnupiL0t6JQkeU=

+

+Name: themes/circles/graphics/icons/ctool/tu_nav_64.gif

+SHA1-Digest: QfZiqnjcg8JgKOiaHqQcRAkU68M=

+

+Name: themes/slate/graphics/icons/ctool/overview-select.gif

+SHA1-Digest: C/thmi6ygH/DObJgLK2R6FUFKmo=

+

+Name: themes/shared/graphics/icons/ctool/widget_closed.gif

+SHA1-Digest: UCVQqypGt54bp4bPvYvnBBf3S6s=

+

+Name: themes/slate/graphics/standby/fs_standbyhov.gif

+SHA1-Digest: IFrAPRH50aUnf4lzGXBnp63KBvg=

+

+Name: themes/slate/graphics/icons/ctool/wr_nav_32.gif

+SHA1-Digest: N9FnodopAmjKrlNb/C6xGS7+ATI=

+

+Name: themes/circles/graphics/standby/wb_standby.gif

+SHA1-Digest: VSLzZLxKKBrSxMH+QlFyD/mSYUk=

+

+Name: themes/shared/graphics/icons/ctool/widget_closed_hov.gif

+SHA1-Digest: yBhmvxNDT4l1CwkG8lR3CuEZnpY=

+

+Name: themes/slate/graphics/rootpage/whatsnew48.png

+SHA1-Digest: pizLyNLkBhqTFPW4z0yhKyGxTyU=

+

+Name: themes/circles/graphics/icons/ctool/samples.png

+SHA1-Digest: vkVn8EAwdSUkAjDkBYBk3aVmaJA=

+

+Name: themes/circles/graphics/icons/ctool/whatsnew.png

+SHA1-Digest: fmc+D8Cozv2x21iUal8OcSJ2RCA=

+

+Name: themes/slate/graphics/icons/ctool/samples-select.gif

+SHA1-Digest: MMUTVQz0hk+wFo7QgkgLJIljLdo=

+

+Name: themes/slate/graphics/rootpage/overview48.gif

+SHA1-Digest: 9fQKnwYMYCxPi3Dbf7Iw+P3GCYM=

+

+Name: themes/circles/graphics/contentpage/wr_banner.jpg

+SHA1-Digest: DOJtvC1OhmR/2gE5/nMvZRA5Tzk=

+

+Name: themes/slate/graphics/standby/mi_standby.gif

+SHA1-Digest: zpzqikD2wBf/PIPCZXeEV9gwu8Q=

+

+Name: themes/slate/swt/firststeps.properties

+SHA1-Digest: 3WAuEq0g1VcYEY19Cse2R0eDoyc=

+

+Name: themes/slate/graphics/icons/ctool/samples.png

+SHA1-Digest: JbJjoAzJoy70GkKO9qIdq2Rj6KU=

+

+Name: themes/circles/graphics/standby/wr_standby.gif

+SHA1-Digest: aJpFuRco/12bQ9bNy92cX/A5UPk=

+

+Name: themes/slate/graphics/rootpage/workbench48_hov.gif

+SHA1-Digest: yhz0kRxqnoPZXoFD3TjF9Pz14ik=

+

+Name: themes/slate/graphics/contentpage/wn_banner.jpg

+SHA1-Digest: zB2XWrRELYgqRzvpOE+AQJbwc6E=

+

+Name: themes/circles/graphics/launchbar/firststeps16.png

+SHA1-Digest: fCXz9yJa0b82QZ9rhBE67nJc2E4=

+

+Name: themes/purpleMesh/html/migrate.css

+SHA1-Digest: 1+NqZ1pYXSS2bFk1Fb+6jVSPEqU=

+

+Name: themes/purpleMesh/graphics/icons/ctool/overview48.gif

+SHA1-Digest: +JxWS50R28tHzsqUgQDLpoKxJdk=

+

+Name: themes/purpleMesh/html/standby.css

+SHA1-Digest: NkRX4mALA79ZCAH8rMkPXHjx90s=

+

+Name: icons/full/obj16/extension_obj.gif

+SHA1-Digest: bMeGZKr5c16LVNWBd9bt98uUYXc=

+

+Name: themes/purpleMesh/graphics/icons/etool/wb48.gif

+SHA1-Digest: gWXkEZ45v3k7g90kCWYvfRGydNg=

+

+Name: themes/slate/graphics/rootpage/whatsnew48_hov.gif

+SHA1-Digest: vSO/nScy1F2pIu0bdtjFxGpFg2o=

+

+Name: themes/slate/graphics/standby/wr_standbyhov.gif

+SHA1-Digest: jHQHecCjhxGdDtte6xzQGzOGu3c=

+

+Name: themes/slate/graphics/contentpage/mi_banner.jpg

+SHA1-Digest: dphGVKeWcMuI8dlZDYVT0jNP+Hk=

+

+Name: themes/circles/graphics/icons/ctool/nav_midhov.gif

+SHA1-Digest: Wi2MCADeHhtdwi4Sh0W7uBznlOA=

+

+Name: themes/circles/graphics/icons/ctool/sa_onesample48.gif

+SHA1-Digest: HqfVF+3gBlrx6nGLg5v5MFaaIgc=

+

+Name: themes/purpleMesh/html/root.css

+SHA1-Digest: F8e99wJzj5JSXslAStEW8UVbHnE=

+

+Name: themes/slate/graphics/contentpage/sa_banner.jpg

+SHA1-Digest: UYbMyIlkwRCH/+2xH0qy7SYO9jc=

+

+Name: themes/circles/html/samples.css

+SHA1-Digest: Aa/3mSKEQ/bjtj9HIXMJGgm8YrY=

+

+Name: themes/circles/graphics/icons/ctool/arrow_rtl.gif

+SHA1-Digest: DCAy3+kKDhzBjcBUtFfriO0XZ/Y=

+

+Name: themes/purpleMesh/graphics/contentpage/section4.gif

+SHA1-Digest: 5uQoTC0PIVQXXzoh4GS8uljeT7Q=

+

+Name: themes/purpleMesh/graphics/icons/ctool/samples48sel.gif

+SHA1-Digest: s0SJlUspZ+VpUK59YFpSVdSF4/8=

+

+Name: themes/slate/html/samples.css

+SHA1-Digest: jJB+8DDa8HMq/Howur8Lf6FKxXU=

+

+Name: themes/slate/graphics/rootpage/webresources48_hov.png

+SHA1-Digest: lc1/FiH8g8N5XQpp8VKb84BHcw0=

+

+Name: themes/slate/graphics/standby/sa_standbyhov.gif

+SHA1-Digest: Q4Gml852TuRFm97prfvm+YUFxQQ=

+

+Name: themes/purpleMesh/swt/root.properties

+SHA1-Digest: 13ibm2LcOyuKL4exgCW1FL8omGQ=

+

+Name: themes/slate/graphics/contentpage/fs_banner.jpg

+SHA1-Digest: e1ynwkado6TTdJD+CScC/nSV23w=

+

+Name: themes/purpleMesh/graphics/icons/obj48/new_obj.gif

+SHA1-Digest: m3blOl9A6/k/zOqWSEjVwi7OsX0=

+

+Name: themes/circles/graphics/launchbar/samples16.png

+SHA1-Digest: EJy0O+e7Wn2LQKacpG+ztOKD+xU=

+

+Name: themes/shared/graphics/contentpage/wr-mi_high.gif

+SHA1-Digest: 4Y7Eni6WwPD1XF5qOlZvX7FBicQ=

+

+Name: themes/circles/graphics/icons/ctool/overview.png

+SHA1-Digest: 6Vc2O8P0tc2mBLAtqN6XRg4m6bA=

+

+Name: themes/slate/graphics/launchbar/samples16.png

+SHA1-Digest: OkSBPD+k9fPKmTLDt+KLk67bD+M=

+

+Name: themes/purpleMesh/graphics/contentpage/tutorials_wtr.jpg

+SHA1-Digest: 1DK/EYeYoAy/ecmdrcLVwCp05fs=

+

+Name: universal.jar

+SHA1-Digest: tU+brr9bmP8rYwCJCbs+x9/cUoc=

+

+Name: themes/slate/graphics/icons/ctool/webresources.png

+SHA1-Digest: dMLVSP4HDxxSfiRFrbCaOeFNbVU=

+

+Name: themes/slate/graphics/rootpage/tutorials48.png

+SHA1-Digest: YocgTR+jGu0RLtYAlrHOx5DMmrM=

+

diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/MANIFEST.MF b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..8cad9cb
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/MANIFEST.MF
@@ -0,0 +1,1232 @@
+Manifest-Version: 1.0

+Bundle-Localization: plugin

+Bundle-RequiredExecutionEnvironment: J2SE-1.4

+Bundle-SymbolicName: org.eclipse.ui.intro.universal;singleton:=true

+Eclipse-LazyStart: true; exceptions="org.eclipse.ui.internal.intro.uni

+ versal.contentdetect"

+Eclipse-SourceReferences: scm:git:git://git.eclipse.org/gitroot/platfo

+ rm/eclipse.platform.ua.git;path="org.eclipse.ui.intro.universal";tag=

+ v20120912-155524

+Bundle-Activator: org.eclipse.ui.internal.intro.universal.UniversalInt

+ roPlugin

+Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.6.0,4.0.0)

+ ",org.eclipse.help;bundle-version="[3.5.0,4.0.0)",org.eclipse.ui;bund

+ le-version="[3.6.0,4.0.0)",org.eclipse.ui.intro;bundle-version="[3.4.

+ 0,4.0.0)"

+Bundle-Version: 3.2.600.v20120912-155524

+Export-Package: org.eclipse.ui.internal.intro.universal;x-friends:="or

+ g.eclipse.ua.tests",org.eclipse.ui.internal.intro.universal.contentde

+ tect;x-friends:="org.eclipse.ua.tests",org.eclipse.ui.internal.intro.

+ universal.util;x-internal:=true,org.eclipse.ui.intro.universal

+Bundle-ClassPath: universal.jar

+Bundle-ActivationPolicy: lazy;exclude:="org.eclipse.ui.internal.intro.

+ universal.contentdetect"

+Bundle-Vendor: %provider_name

+Bundle-Name: %plugin_name

+Eclipse-BundleShape: dir

+Import-Package: javax.xml.parsers,org.w3c.dom,org.xml.sax

+Bundle-ManifestVersion: 2

+

+Name: themes/shared/graphics/contentpage/wn-fs_med.gif

+SHA1-Digest: YObD0h+yD3AoEJKcbHpgl7nSg6w=

+

+Name: themes/slate/graphics/icons/ctool/webresources-select.png

+SHA1-Digest: ttFY6mc+rmyD+wi74Uh9u2VOsEA=

+

+Name: icons/full/obj16/inew_obj.gif

+SHA1-Digest: nNCYIZNT6cAnS1piXmICuWj214k=

+

+Name: themes/circles/swt/migrate.properties

+SHA1-Digest: 5AATILQmeOE6lgPTFd7rRWmZfFE=

+

+Name: themes/circles/graphics/icons/ctool/wb_nav_32.gif

+SHA1-Digest: Cn/9w2OEDB5HruOhhsLBFFUwdTA=

+

+Name: themes/circles/graphics/launchbar/migrate16.png

+SHA1-Digest: cdjjFVkozz0y9ji+FpASYhOALwk=

+

+Name: themes/circles/html/font-relative.css

+SHA1-Digest: YNdUuhYcoSgMNnDs8zLlOICeBPg=

+

+Name: themes/purpleMesh/swt/webresources.properties

+SHA1-Digest: CF3gMwhkWGQXjfED1zPxx1nNfWs=

+

+Name: icons/full/obj16/icallout_obj.gif

+SHA1-Digest: BtNHLBdOBOrkuqR5QGDMR1yYOPU=

+

+Name: themes/slate/graphics/launchbar/migrate16.png

+SHA1-Digest: cdjjFVkozz0y9ji+FpASYhOALwk=

+

+Name: themes/circles/graphics/icons/ctool/tutorials_tophov.gif

+SHA1-Digest: l4xpK0NEVv+6HAPqe6Boky17Drs=

+

+Name: themes/circles/swt/overview.properties

+SHA1-Digest: cWbc0RdZ2YXec98Rg1kTqJpT5NY=

+

+Name: themes/circles/html/whatsnew.css

+SHA1-Digest: f/xiSK+pn47wv97YC1T89H3Yggc=

+

+Name: themes/shared/html/shared.css

+SHA1-Digest: OTh/aPQYNhJNbCRlHp4uwANCo6I=

+

+Name: themes/purpleMesh/graphics/icons/etool/firsteps48.gif

+SHA1-Digest: hvcLfSf/ImoeCex6h0I4mKJDYaM=

+

+Name: themes/slate/graphics/icons/ctool/tu_nav_32.gif

+SHA1-Digest: ERMabqNtihbmhosEh+AMC9m6SgQ=

+

+Name: themes/slate/graphics/rootpage/samples48_hov.gif

+SHA1-Digest: 2GZqEq/9FzCx8WiEgECMZDe8Bbg=

+

+Name: themes/shared/graphics/icons/ctool/widget_closed_rtl.gif

+SHA1-Digest: Hls40cTfd5UjRBwAqdmvGB4Qj5A=

+

+Name: themes/circles/graphics/contentpage/tu_banner.jpg

+SHA1-Digest: QS8UTOekR3eu1goLA3IGZbz2ACU=

+

+Name: themes/circles/graphics/icons/ctool/wb_nav.png

+SHA1-Digest: FH8HqOCtz5sLOSGSXLTuXtscYdw=

+

+Name: themes/circles/graphics/icons/ctool/fs_nav.png

+SHA1-Digest: 3F+Z798k2zAOQHXppBvRobdsVgY=

+

+Name: icons/welcome16.gif

+SHA1-Digest: lCVsqUKwrazRDOWbtiyQR6PzEio=

+

+Name: themes/circles/graphics/icons/ctool/migrate.png

+SHA1-Digest: VkjCEMXUNNjo4asomIvGP5KZteA=

+

+Name: themes/circles/html/rtl.css

+SHA1-Digest: cGk5uIu4MDkHeAx2Fx84/hsq1Nw=

+

+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew48sel.gif

+SHA1-Digest: V7JtQrx+Kgg5ssosc9X8gdGTyVs=

+

+Name: themes/purpleMesh/graphics/icons/etool/webrsrc48sel.gif

+SHA1-Digest: ViPbhh1j2zwRpZdBTVLjwaRXvWU=

+

+Name: themes/shared/graphics/icons/ctool/widget_closed_hov_rtl.gif

+SHA1-Digest: lLNX/Q+6E9ygF+QaNhAMMknKE0Q=

+

+Name: themes/circles/graphics/icons/ctool/wn_nav.png

+SHA1-Digest: d7McdCEtfxPQ+F5vlR38rVTvgXo=

+

+Name: themes/circles/graphics/launchbar/tutorials16.png

+SHA1-Digest: i2tAwI/AV2AL9+0LBrkT2facrps=

+

+Name: themes/slate/graphics/icons/ctool/migrate.png

+SHA1-Digest: VkjCEMXUNNjo4asomIvGP5KZteA=

+

+Name: themes/purpleMesh/graphics/icons/ctool/firsteps72.gif

+SHA1-Digest: SBxtT8iB/ApY0HjP6hKYkJuKUok=

+

+Name: themes/slate/graphics/standby/wn_standbyhov.gif

+SHA1-Digest: NbMYb8Ka2D8DlnjzdS2qA6E8j9I=

+

+Name: themes/circles/graphics/icons/ctool/wr_nav.png

+SHA1-Digest: RiRbJ01jNoAefHKxAe7htjgxNc8=

+

+Name: themes/slate/graphics/icons/ctool/firststeps-select.gif

+SHA1-Digest: 2omoFavbjq9B7GnstjVqw0FdtMg=

+

+Name: themes/circles/graphics/standby/wb_standbyhov.gif

+SHA1-Digest: M93nY3cEdQ0Ot7ymKz9lcr/vVgQ=

+

+Name: themes/circles/graphics/icons/obj48/newhov_obj.gif

+SHA1-Digest: bYXzhCgIi1p/aDvaAoOBGIrBuKA=

+

+Name: themes/purpleMesh/graphics/icons/etool/tutorials72.gif

+SHA1-Digest: bgSW0+TBHE6b5pybPnVxwKCeb8o=

+

+Name: themes/slate/graphics/standby/wn_standby.gif

+SHA1-Digest: 88JPC5OW2W/A8nK+jURGNllSjXc=

+

+Name: themes/purpleMesh/graphics/contentpage/migrate_wtr.jpg

+SHA1-Digest: aEzxRxDEcOgBZUkFLh+l3yrPKkc=

+

+Name: themes/circles/graphics/icons/ctool/ov_nav_64.gif

+SHA1-Digest: MiM5uNLCvrkx/ykdKqZM97Y9ZZU=

+

+Name: themes/purpleMesh/graphics/contentpage/section3.gif

+SHA1-Digest: Dti98fXWKSzLZcwWhy0ZH/xv/LQ=

+

+Name: themes/circles/graphics/icons/ctool/mi_nav_hover.gif

+SHA1-Digest: ctUOJTLxQ0tbU8MWdzTinkFSNJY=

+

+Name: themes/purpleMesh/swt/whatsnew.properties

+SHA1-Digest: oMwOlBxzxsbYGpYIiB6r5WvnCOg=

+

+Name: themes/slate/graphics/rootpage/firststeps48_hov.gif

+SHA1-Digest: V1SxrQz5nuodvxHET/Uj/DVfZnU=

+

+Name: themes/circles/swt/firststeps.properties

+SHA1-Digest: sBCpA22sGt4sMuv+F9m/qnMxVSM=

+

+Name: themes/purpleMesh/graphics/icons/etool/overview48.gif

+SHA1-Digest: iCWMhwI9UGBgr2VfDvUWRcFUkvQ=

+

+Name: themes/purpleMesh/graphics/icons/ctool/tutorials48.gif

+SHA1-Digest: g1DLV9w6145WJgolBFoQXPSHED0=

+

+Name: themes/purpleMesh/html/font-absolute.css

+SHA1-Digest: Dp/J3iJgRBHHdbUImvOo/dqS9qQ=

+

+Name: themes/purpleMesh/graphics/icons/dtool/back.gif

+SHA1-Digest: ySnsDpMG5nwH+1FeV2r27mUrMkU=

+

+Name: themes/slate/graphics/launchbar/whatsnew16.png

+SHA1-Digest: h+KhHUY6Dp0Q8Jm2f2zIe/6WTlQ=

+

+Name: themes/purpleMesh/graphics/icons/ctool/migrate48sel.gif

+SHA1-Digest: keNlqQN4S22HPmK1Di1nJy96tpE=

+

+Name: themes/circles/html/migrate.css

+SHA1-Digest: iqCK+hELmQGaI0kDAerL4zBIsH8=

+

+Name: themes/circles/html/standby.css

+SHA1-Digest: 2z23RG44ueQjzJxag9TUR5ipMg8=

+

+Name: themes/shared/graphics/contentpage/ov_med.gif

+SHA1-Digest: BLkJAi4b6F3mxZCsx/D4hbWbUO8=

+

+Name: themes/purpleMesh/graphics/icons/ctool/wb48.gif

+SHA1-Digest: TRanQY4RKQhrmQMzvoEtx9VCEuE=

+

+Name: themes/circles/graphics/icons/ctool/tu_nav_hover.gif

+SHA1-Digest: gnwxFOZ1hWJ15kAtVY9JjWHr8y0=

+

+Name: themes/purpleMesh/graphics/icons/ctool/overview72.gif

+SHA1-Digest: j8YqPAh5zhsG871Xa1oEABhvpwU=

+

+Name: themes/slate/html/migrate.css

+SHA1-Digest: o9xAwZ7xa/HM/hdVTb3tk8uOHw0=

+

+Name: themes/slate/html/standby.css

+SHA1-Digest: dcsodycy9r1Mc13iPMtPm6VaX44=

+

+Name: themes/circles/graphics/icons/ctool/wn_nav_32.gif

+SHA1-Digest: 2MmKSbuOyZVL2zJF4G8nB5PD40E=

+

+Name: themes/slate/graphics/rootpage/overview48_hov.png

+SHA1-Digest: yEu4cL82lrHSfFHqv3eoyrW9YSg=

+

+Name: themes/circles/graphics/icons/ctool/migrate_tophov.gif

+SHA1-Digest: H8SgRLyEnOi1cDZJW0fzb3lAvCo=

+

+Name: themes/circles/html/overview.css

+SHA1-Digest: G+A4n9PJ6fA3WLTPxxbOfcojjXE=

+

+Name: themes/slate/preview.png

+SHA1-Digest: whTvlmnBWZTV8IG0krm8yHohkCI=

+

+Name: themes/circles/graphics/icons/ctool/firststeps.gif

+SHA1-Digest: aw0foujzvfJwyNlhaeXJ9h+811s=

+

+Name: themes/slate/graphics/rootpage/samples48.gif

+SHA1-Digest: a7heSjTUOSoRTKVM3l7UofW0BgY=

+

+Name: themes/purpleMesh/html/firststeps.css

+SHA1-Digest: nACM/CMdpnPS98VKxacu0uWKtn4=

+

+Name: themes/slate/swt/migrate.properties

+SHA1-Digest: 2F6o5tkNwYATwSeIxAhJ4Fawrag=

+

+Name: themes/slate/graphics/icons/ctool/tu_nav.png

+SHA1-Digest: dNoyc7XQ0/y0TYmDYpA3RH2BDu8=

+

+Name: themes/slate/html/font-relative.css

+SHA1-Digest: yc7PqZE0wKy+879beIvCdX5i2As=

+

+Name: themes/circles/graphics/icons/ctool/mi_nav_32.gif

+SHA1-Digest: mATXWuXqCWzSKixiSQs+YOGKGco=

+

+Name: themes/circles/graphics/icons/ctool/workbench_midhov.gif

+SHA1-Digest: 8IcR48lhiM2cA6fVthKbkSUPpuQ=

+

+Name: themes/purpleMesh/graphics/swt/form_banner.gif

+SHA1-Digest: PQhF1iaxN2d2Pjr4NFsLS6syeIU=

+

+Name: themes/circles/graphics/icons/ctool/root_midhov.gif

+SHA1-Digest: 0wGbIZFEsbFYpUJc7aXvM2hdu9s=

+

+Name: themes/circles/graphics/standby/ov_standby.gif

+SHA1-Digest: HunoPS0cid3oVEr1sZr/zorOhSo=

+

+Name: themes/slate/swt/tutorials.properties

+SHA1-Digest: vAquZcTxRXIrBqJjPzS1CivM1DU=

+

+Name: themes/circles/graphics/icons/ctool/sa_nav_32.gif

+SHA1-Digest: zWmN8ic58PiJmRsQN6M8kkO112Y=

+

+Name: themes/slate/graphics/icons/ctool/migrate-select.gif

+SHA1-Digest: rbcMvR3DTWAZ6y8pRLJ1Aj3AR0Y=

+

+Name: themes/purpleMesh/graphics/icons/ctool/firsteps48sel.gif

+SHA1-Digest: opve/Gi8rcg8PqsApScb3gwbsjM=

+

+Name: themes/purpleMesh/graphics/contentpage/samples_wtr.jpg

+SHA1-Digest: g2JddJllH2GnARk4Nou/2R4PymU=

+

+Name: themes/circles/graphics/icons/ctool/sa_nav.png

+SHA1-Digest: uXMdf9iE7j6nm8Kb+4XilPOc3KQ=

+

+Name: themes/slate/graphics/launchbar/webresources16.png

+SHA1-Digest: MKgOo3PUit3DrNfS3CNMBEiz7j0=

+

+Name: themes/slate/graphics/icons/ctool/mi_nav.png

+SHA1-Digest: DugGCwIqDGwAjbE6lxcgfs0Wcv4=

+

+Name: themes/slate/graphics/rootpage/migrate48.gif

+SHA1-Digest: joxhUVMJ4gjNCLOVxveKazhqRQg=

+

+Name: themes/circles/graphics/icons/ctool/cpt_midhov.gif

+SHA1-Digest: RrizlkO8kDokhCsq1RS7MeMZ/8E=

+

+Name: themes/circles/graphics/icons/obj48/new_obj.gif

+SHA1-Digest: Y/Bwx578bV6kzFqO2dx3H9gJtTo=

+

+Name: themes/purpleMesh/graphics/launchbar/whatsnew.gif

+SHA1-Digest: OfLsLlxVJqmHGeWbr+FpZ7WbR5o=

+

+Name: themes/slate/graphics/icons/ctool/whatsnew.png

+SHA1-Digest: 7yax9xdOrPlNoCNBqEo0D2Wn98A=

+

+Name: themes/slate/swt/root.properties

+SHA1-Digest: trht5nL/OVGbn1M9jAAQgsEUxew=

+

+Name: themes/slate/graphics/rootpage/firststeps48.gif

+SHA1-Digest: 728dp/iHajdA6QbwpXrDcWhyr9I=

+

+Name: themes/purpleMesh/graphics/icons/ctool/overview48sel.gif

+SHA1-Digest: QvbOlzxtGauTmRVipO4/FC2ZJ2U=

+

+Name: themes/circles/graphics/icons/ctool/fs_nav_32.gif

+SHA1-Digest: BSKmmm0UjJhF46bslzBFgsMhk28=

+

+Name: themes/slate/graphics/rootpage/root_banner.jpg

+SHA1-Digest: CVENAzN0sGVJ550D3j/tRK/bGUo=

+

+Name: themes/purpleMesh/graphics/contentpage/section2.gif

+SHA1-Digest: jNYinCnDLjHR0d9YHNjblUc/OuA=

+

+Name: themes/slate/swt/overview.properties

+SHA1-Digest: 7OIn4C0e4D6ndcSGGB2rOpSg9OA=

+

+Name: themes/slate/graphics/contentpage/banner_extension.jpg

+SHA1-Digest: hduQzj5oNnCVgoASvulQULdbwPM=

+

+Name: themes/circles/graphics/standby/mi_standby.gif

+SHA1-Digest: 5hYhaXir5S3NKycOObVKVsAr09E=

+

+Name: themes/purpleMesh/graphics/icons/etool/webrsrc48.gif

+SHA1-Digest: eT48bn2xNpwaArD3Ukfr9X5Z3c0=

+

+Name: themes/purpleMesh/html/ltr.css

+SHA1-Digest: Yyu5meBpG9xZ0u7nPC5AeoUW/zw=

+

+Name: themes/slate/graphics/icons/ctool/whatsnew-select.gif

+SHA1-Digest: /Qq4XXE3i1mUaXyx9iRhQ8V/W5c=

+

+Name: themes/slate/html/tutorials.css

+SHA1-Digest: 4Odp/Gvx+GfsR1ECUTI/mKtmUTE=

+

+Name: themes/slate/html/shared.css

+SHA1-Digest: qMIxx3YJ8vHdurH/wNG2IojaQiI=

+

+Name: themes/purpleMesh/graphics/icons/ctool/firsteps16.png

+SHA1-Digest: Xi6gTgcM86DWgA6hyPn8mRMRwE0=

+

+Name: themes/circles/html/root.css

+SHA1-Digest: YX1L9+DDBz6WfuLKH+3xJrz4uN4=

+

+Name: themes/circles/graphics/icons/ctool/workbench_tophov.gif

+SHA1-Digest: +Bd0or2l4puBTP5oSz9gGyqxboc=

+

+Name: themes/slate/graphics/standby/tu_standby.gif

+SHA1-Digest: 76LqWV6eBwFimzZFB6T2Buh40Jw=

+

+Name: themes/purpleMesh/graphics/icons/etool/firsteps72.gif

+SHA1-Digest: 8bFXxASI73oOdjUe/CbahEIuja0=

+

+Name: themes/purpleMesh/swt/standby.properties

+SHA1-Digest: Et13VGQD/DUcY0mXK2+CwdtfEHM=

+

+Name: themes/slate/graphics/icons/ctool/ov_nav_32.gif

+SHA1-Digest: mK2utAnQW2MhbJurFHYi5qKZ1vE=

+

+Name: themes/circles/graphics/contentpage/ov_banner.jpg

+SHA1-Digest: 10sZ9H16pEffvVYkE+oqY7PFVXo=

+

+Name: themes/purpleMesh/html/shared.css

+SHA1-Digest: KPSVwoWza9iUjjzBkJdr5wPP1YM=

+

+Name: themes/circles/graphics/icons/ctool/nav_rightedgehov.gif

+SHA1-Digest: 5LCcU2on4MwQTTw2MBdcyieAAEM=

+

+Name: themes/purpleMesh/graphics/contentpage/backgroundcurve.gif

+SHA1-Digest: SU4SmeQDMdIE/JG9PcJmA8g/ato=

+

+Name: themes/purpleMesh/graphics/icons/etool/samples48sel.gif

+SHA1-Digest: SOwlUuN/dNPbbRGy97y2JyBenP4=

+

+Name: themes/slate/html/webresources.css

+SHA1-Digest: 1bIsUHigc64MRBrTzXlMzGZRX/Q=

+

+Name: themes/purpleMesh/graphics/icons/ctool/forward.gif

+SHA1-Digest: XmaOiMd1jEsrDB6NdyQqw+d1aAY=

+

+Name: themes/circles/swt/root.properties

+SHA1-Digest: tKcoqTuS/A6XBkZrPU/Tp2zE3W0=

+

+Name: themes/purpleMesh/graphics/icons/etool/forward.gif

+SHA1-Digest: /hIcNo6w11v+EpgTXgFX9a1bYwY=

+

+Name: themes/slate/graphics/contentpage/wr_banner.jpg

+SHA1-Digest: wINF//ANvlaP4bKX40ICJ1h4J2Y=

+

+Name: themes/purpleMesh/graphics/icons/etool/samples48.gif

+SHA1-Digest: tVSl1SZ/C1vzumYiVhIg3neCICQ=

+

+Name: themes/slate/graphics/rootpage/whatsnew48.gif

+SHA1-Digest: UvfhrKZoLquL9Mi9ZmLCo09V0Ho=

+

+Name: themes/slate/html/root.css

+SHA1-Digest: AfeYIjFUtTzAXgOxyLSaYF525yA=

+

+Name: themes/purpleMesh/graphics/launchbar/overview.gif

+SHA1-Digest: pfIpf2IyPaP9OPweaGpcIYG+TFs=

+

+Name: themes/slate/graphics/icons/ctool/tutorials-select.png

+SHA1-Digest: cCY5VvZg9hbvygMCXlNA9jbzDZs=

+

+Name: themes/circles/graphics/icons/ctool/webresources_tophov.gif

+SHA1-Digest: VaZ+AWC7rmAsl7EfAf4RMGe7Ajw=

+

+Name: themes/circles/graphics/icons/ctool/samples.gif

+SHA1-Digest: c9b5vr12KuTDgSh4XxVc3A/Yb5o=

+

+Name: themes/circles/graphics/icons/ctool/whatsnew.gif

+SHA1-Digest: R3qLK0sHbAW98RHHMq7zWy1IO5o=

+

+Name: themes/purpleMesh/graphics/icons/ctool/overview16.png

+SHA1-Digest: F9E6l5MA7FwcZoftgNIyKpPuHIs=

+

+Name: themes/purpleMesh/graphics/contentpage/webrsrc_wtr.jpg

+SHA1-Digest: Ido2Czdqp9qBtLXVuqLFKehNnG0=

+

+Name: themes/slate/graphics/icons/ctool/overview.png

+SHA1-Digest: eXxwilTaGiognsDmKoSJ3ZwT7FU=

+

+Name: themes/purpleMesh/graphics/contentpage/background.jpg

+SHA1-Digest: E2oMRaBMnHtodkZ+6dnqpMVtjYw=

+

+Name: themes/purpleMesh/graphics/icons/etool/overview72.gif

+SHA1-Digest: n74Umhh+1Csw/icpzX8BNun9DPY=

+

+Name: themes/slate/html/rtl.css

+SHA1-Digest: ka03w0wDvzu6rYhWR5cBQWwA6BA=

+

+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew48.gif

+SHA1-Digest: KNlMP7MYOWlZW4S9qu3HLv6oCX0=

+

+Name: themes/circles/html/font-absolute.css

+SHA1-Digest: UPrVP11/+ZJNI7V+e7usdgYpotU=

+

+Name: themes/purpleMesh/graphics/icons/ctool/tutorials72.gif

+SHA1-Digest: 4khSgiovoX4YtZ6eJRPyyBG1tVA=

+

+Name: themes/purpleMesh/graphics/icons/etool/migrate48.gif

+SHA1-Digest: fViGJTGmPbKdrj9R9DEEnQadiCQ=

+

+Name: themes/circles/graphics/icons/ctool/firststeps_tophov.gif

+SHA1-Digest: Oh8ahqB46KYlZOW1WUEdG8UzLeE=

+

+Name: themes/slate/graphics/standby/fs_standby.gif

+SHA1-Digest: 5yXOjWYGu9taQwSM6JmLf07j0fI=

+

+Name: themes/slate/graphics/standby/sa_standby.gif

+SHA1-Digest: MzhZk7rGOmDthzPVK6Ss5ZHDWfc=

+

+Name: themes/circles/graphics/icons/ctool/workbench.png

+SHA1-Digest: NvsOkAqCPAe7ectLZ6VMCYoWlAg=

+

+Name: themes/circles/swt/webresources.properties

+SHA1-Digest: d08aTkBCcpnmmJzT8Jsz4fmFFP8=

+

+Name: themes/circles/graphics/icons/ctool/root_midhov2.gif

+SHA1-Digest: MUXRnbm2U/5T/WKg2Fze3zGWip8=

+

+Name: themes/purpleMesh/graphics/launchbar/webresources16.png

+SHA1-Digest: MKgOo3PUit3DrNfS3CNMBEiz7j0=

+

+Name: themes/slate/graphics/rootpage/webresources48.png

+SHA1-Digest: kxjGlQiN/a/+HyqLGGpjOwltaHc=

+

+Name: themes/circles/graphics/standby/mi_standbyhov.gif

+SHA1-Digest: HnHqLAS7Dn7UNF9Lvj7vq9+KBUc=

+

+Name: themes/purpleMesh/graphics/contentpage/section1.gif

+SHA1-Digest: m5w0U3ih9X9y22rCCdBFryaLvAc=

+

+Name: themes/shared/graphics/contentpage/grey_callout.gif

+SHA1-Digest: yi4BN/3biRiO8mkotR+kIwxTG+M=

+

+Name: themes/slate/html/whatsnew.css

+SHA1-Digest: HKoqKVzXRanzKOmmOTkRgxdCtEY=

+

+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc48.gif

+SHA1-Digest: GmnkTgyukr5A180zab5zZYJ1D0g=

+

+Name: themes/circles/graphics/icons/ctool/tutorials.png

+SHA1-Digest: smC+kYLb5F/BlUJxXGb3OIkzMyA=

+

+Name: themes/slate/graphics/icons/ctool/arrow_rtl.gif

+SHA1-Digest: lbqBjzMYJPrTr2480naQFU3Ctkw=

+

+Name: themes/circles/graphics/icons/ctool/ov_nav_hover.gif

+SHA1-Digest: sX+VnILCJbj/P5cRPP65JpGvZWA=

+

+Name: themes/circles/graphics/icons/ctool/wn_nav_64.gif

+SHA1-Digest: 8dnsIP2CGs5jbXtQSdbqUTOU8Ro=

+

+Name: themes/circles/graphics/icons/ctool/workbench_bottomhov.gif

+SHA1-Digest: 6akkwg9PLd5IbNPUtt/6oTD0Fmc=

+

+Name: themes/slate/graphics/rootpage/workbench48.png

+SHA1-Digest: FgczOQ4VpSiYNbMdQ/83/dGtAvQ=

+

+Name: about.html

+SHA1-Digest: ejOZra0kypGLQQ2bJtGTX+LI8tU=

+

+Name: themes/slate/graphics/rootpage/webresources48_hov.gif

+SHA1-Digest: fLFNLYyPZO7VGdv7Y0pW8cFcGX4=

+

+Name: themes/slate/html/firststeps.css

+SHA1-Digest: 44JdqtdGfVaGtE71FyUy2GsR/rs=

+

+Name: themes/circles/graphics/icons/ctool/mi_nav_64.gif

+SHA1-Digest: Q9shp5C6uwXuvLYysv0huYQDB7g=

+

+Name: themes/circles/swt/whatsnew.properties

+SHA1-Digest: 6OFfokUGKPEnPFqOK5mnQZi4YVQ=

+

+Name: themes/circles/graphics/icons/ctool/sa_nav_hover.gif

+SHA1-Digest: 0T/hb/lLM6+4vlYmaQfabpdGLjQ=

+

+Name: themes/purpleMesh/graphics/icons/ctool/tutorials48sel.gif

+SHA1-Digest: tATI5YuOIrBfjWCFp5WnjlycjL0=

+

+Name: themes/circles/graphics/icons/ctool/sa_nav_64.gif

+SHA1-Digest: Dx4v4tsaMKt29b4G9qaOF5QCrOY=

+

+Name: themes/circles/graphics/icons/ctool/overview.gif

+SHA1-Digest: +uFvLkyNf1o3XI+/Ucf9I3zQCPs=

+

+Name: themes/slate/graphics/rootpage/tutorials48_hov.png

+SHA1-Digest: aTlhURRHXXspu8uUZRhYEbDAojc=

+

+Name: themes/circles/graphics/standby/wn_standby.gif

+SHA1-Digest: 88JPC5OW2W/A8nK+jURGNllSjXc=

+

+Name: themes/circles/graphics/icons/ctool/overview_bottomhov.gif

+SHA1-Digest: YL2P91DIXFlIEdG9NrrY+AhPRsw=

+

+Name: themes/slate/graphics/icons/ctool/wb_nav_32.gif

+SHA1-Digest: GpdTBfJKFFJkVfefZF3oVDI+k1o=

+

+Name: themes/purpleMesh/graphics/icons/ctool/samples48.gif

+SHA1-Digest: u0pYTzvBAB63GQT5RCCUbYqIR/8=

+

+Name: themes/slate/graphics/rootpage/tutorials48.gif

+SHA1-Digest: EOb2R8xvUX5bbijE1zT7PW3yi0k=

+

+Name: themes/circles/graphics/standby/ov_standbyhov.gif

+SHA1-Digest: S4jMdmDN03X8/YD+TgHYLJTrQ1k=

+

+Name: themes/circles/graphics/launchbar/overview16.png

+SHA1-Digest: F9E6l5MA7FwcZoftgNIyKpPuHIs=

+

+Name: themes/slate/graphics/icons/ctool/webresources-select.gif

+SHA1-Digest: jEHkJCqvz90c5NrTt50AG6y8R5g=

+

+Name: themes/purpleMesh/preview.png

+SHA1-Digest: CoxC3E6lWpb5CIhBsZIy51kuLSg=

+

+Name: themes/slate/graphics/rootpage/migrate48_hov.png

+SHA1-Digest: 3jv6dZo2sWUoSzG9+fUC8BNHp2A=

+

+Name: themes/circles/graphics/icons/ctool/fs_nav_64.gif

+SHA1-Digest: IZQIQMgx8FkRqKHONIJUlUwq3rk=

+

+Name: themes/circles/graphics/icons/ctool/overview_midhov.gif

+SHA1-Digest: nnLAEvfmeOC+rzaWxpv6yCe7xeQ=

+

+Name: themes/purpleMesh/html/webresources.css

+SHA1-Digest: sWnYR2Hr4y3AO3Okf8oAO2Ijb0o=

+

+Name: themes/purpleMesh/graphics/icons/etool/migrate48sel.gif

+SHA1-Digest: h+GOvx5olDLCqX/Cby35wMDDXuc=

+

+Name: themes/purpleMesh/graphics/root/background.jpg

+SHA1-Digest: 55fuk1Jgqmsw0nmR/NmsLZU/B/E=

+

+Name: themes/circles/html/ltr.css

+SHA1-Digest: Yyu5meBpG9xZ0u7nPC5AeoUW/zw=

+

+Name: themes/purpleMesh/graphics/icons/etool/webrsrc72.gif

+SHA1-Digest: BXvwP9AN31Xn2K8qtsd1gjhWIcc=

+

+Name: themes/slate/graphics/contentpage/tu_banner.jpg

+SHA1-Digest: 4Hiac9ZLmKM1nD5e+1n/PNz2zZg=

+

+Name: icons/full/obj16/ilow_obj.gif

+SHA1-Digest: wAtRYKFnL5qoURQIXumOywvQmIk=

+

+Name: themes/slate/html/overview.css

+SHA1-Digest: 1a0QMXZcM8a6o/ctVWIeWIcYsXk=

+

+Name: themes/purpleMesh/graphics/icons/ctool/migrate48.gif

+SHA1-Digest: 13w8+9/+TWNT9hGKV+Haz8Qiw6o=

+

+Name: themes/slate/graphics/launchbar/tutorials16.png

+SHA1-Digest: i2tAwI/AV2AL9+0LBrkT2facrps=

+

+Name: themes/circles/html/firststeps.css

+SHA1-Digest: EV55fIWanWb1kPj8xH09DQH48HI=

+

+Name: themes/circles/graphics/icons/ctool/fs_nav_hover.gif

+SHA1-Digest: MTOxVXUpblDdX5KvJiaJPR1tU3c=

+

+Name: themes/circles/graphics/standby/tu_standbyhov.gif

+SHA1-Digest: sWxT9jjy1CbwVqXWKiMSMRgDs8I=

+

+Name: themes/slate/graphics/standby/wb_standbyhov.gif

+SHA1-Digest: M93nY3cEdQ0Ot7ymKz9lcr/vVgQ=

+

+Name: themes/slate/html/font-absolute.css

+SHA1-Digest: xS0MRrwTLXqa5OQd1iW6iHIy3Bc=

+

+Name: themes/circles/swt/standby.properties

+SHA1-Digest: hIrIt7g/8ze49RvoZt8oujUIY3U=

+

+Name: themes/circles/graphics/icons/ctool/migrate.gif

+SHA1-Digest: kSYjWyWIS8iBRq1xaFM4xHb3Bdk=

+

+Name: themes/circles/graphics/icons/ctool/webresources.png

+SHA1-Digest: 0sKVVhl4zyGuSQxxs1pyupEqEro=

+

+Name: icons/full/obj16/image_obj.gif

+SHA1-Digest: DT00AOgk+LSxwyBDkotC5FiPYRI=

+

+Name: themes/purpleMesh/swt/tutorials.properties

+SHA1-Digest: I2RxA1+OY6LYltetui8ofyH59eo=

+

+Name: themes/slate/graphics/icons/ctool/overview-select.png

+SHA1-Digest: hVN47i7yjwEaoeO/EczGzvS0h2Q=

+

+Name: themes/shared/graphics/contentpage/wn-fs_high.gif

+SHA1-Digest: oiMP7gOeLwfgSvXA0kWFlpITY7U=

+

+Name: themes/circles/graphics/icons/ctool/tu_nav.png

+SHA1-Digest: dNoyc7XQ0/y0TYmDYpA3RH2BDu8=

+

+Name: themes/purpleMesh/graphics/root/brandmark.gif

+SHA1-Digest: PgN5Rj0TJwB5pNIjtFRXU8ztH0A=

+

+Name: themes/purpleMesh/graphics/icons/ctool/tutorials16.png

+SHA1-Digest: i2tAwI/AV2AL9+0LBrkT2facrps=

+

+Name: themes/slate/graphics/icons/ctool/samples-select.png

+SHA1-Digest: vq/g/Lw1FwHfkm6p/FOlemij/5I=

+

+Name: themes/slate/graphics/rootpage/overview48.png

+SHA1-Digest: 99XyAwX7m5mYQ4AOgObbGzd5RDw=

+

+Name: themes/purpleMesh/graphics/icons/etool/samples72.gif

+SHA1-Digest: yaI/A4O3sg62jftxAs4A5ovsDIE=

+

+Name: themes/circles/graphics/standby/fs_standbyhov.gif

+SHA1-Digest: j3OetXMY7tyEtqQChTtohOIDzgk=

+

+Name: themes/purpleMesh/graphics/icons/etool/whatsnew48.gif

+SHA1-Digest: mPoULJKT+XF9OOr07H7Zm7jItL4=

+

+Name: themes/purpleMesh/graphics/icons/ctool/wb16.png

+SHA1-Digest: rtGpm0vAJROmvKqNhIA86Oii2QU=

+

+Name: themes/circles/graphics/icons/ctool/mi_nav.png

+SHA1-Digest: DugGCwIqDGwAjbE6lxcgfs0Wcv4=

+

+Name: themes/slate/graphics/icons/ctool/ov_nav.png

+SHA1-Digest: KtxMxu+ASHojP1pS3ir3RurjNk8=

+

+Name: themes/circles/graphics/icons/ctool/wr_nav_32.gif

+SHA1-Digest: TdYmSHa2YYmdttUqBg/bnvUwPFU=

+

+Name: themes/slate/graphics/rootpage/workbench48_hov.png

+SHA1-Digest: zEzcCes6vflGY6bOsv24Rl5Gjds=

+

+Name: themes/circles/graphics/icons/ctool/overview_tophov.gif

+SHA1-Digest: wV+i4eDKNxlIgXGRM+u+vAgyE3w=

+

+Name: icons/full/obj16/ihigh_obj.gif

+SHA1-Digest: vI+PIICL5niI3cp3BIHFmKNezJM=

+

+Name: themes/purpleMesh/graphics/icons/etool/home.gif

+SHA1-Digest: /or5ve5EMGFdF2Y0L2g5nyUuIIw=

+

+Name: themes/purpleMesh/graphics/contentpage/whatsnew_wtr.jpg

+SHA1-Digest: XRef3brftgagwayG3XY716228lA=

+

+Name: themes/purpleMesh/graphics/icons/etool/back.gif

+SHA1-Digest: ySnsDpMG5nwH+1FeV2r27mUrMkU=

+

+Name: themes/slate/graphics/icons/ctool/wn_nav_32.gif

+SHA1-Digest: 2MmKSbuOyZVL2zJF4G8nB5PD40E=

+

+Name: themes/circles/graphics/contentpage/wn_banner.jpg

+SHA1-Digest: YUKNXzoHrliZGSKkB1xULdQM1pM=

+

+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew72.gif

+SHA1-Digest: 5291YmuJ2qb7ZUbxqgabvlAUXZw=

+

+Name: themes/purpleMesh/graphics/icons/etool/migrate72.gif

+SHA1-Digest: cixlyOEhHbqYFBRvcfJB++/1zA0=

+

+Name: themes/shared/graphics/icons/ctool/widget_open.gif

+SHA1-Digest: Apgb6HcsxsXMS+sHuk/qeY8n4Hg=

+

+Name: themes/circles/graphics/icons/ctool/ov_nav_midhov.gif

+SHA1-Digest: ww8UaEmFh8Ua/BIxSr1+x4ZGgjs=

+

+Name: themes/slate/graphics/rootpage/whatsnew48_hov.png

+SHA1-Digest: AtJW/I5jeOgeNN8s/05OYoPbiNI=

+

+Name: themes/purpleMesh/swt/samples.properties

+SHA1-Digest: zHgXqSHAR+13ShPdQ+v5A7zVxQ0=

+

+Name: themes/slate/graphics/rootpage/overview48_hov.gif

+SHA1-Digest: lMx3CV4GH+dLQSIaRIcoHkky8Wk=

+

+Name: themes/purpleMesh/graphics/launchbar/tutorials.gif

+SHA1-Digest: p/9KyKfeLBTEfkIq5VoXuUzv+CI=

+

+Name: themes/slate/graphics/icons/ctool/mi_nav_32.gif

+SHA1-Digest: mATXWuXqCWzSKixiSQs+YOGKGco=

+

+Name: themes/shared/graphics/contentpage/tu-sa_high.gif

+SHA1-Digest: yiKi7S7vBveH4hyEQdwg4/A2XPo=

+

+Name: themes/circles/graphics/standby/wr_standbyhov.gif

+SHA1-Digest: 1rq4e0czEMOde7HG8ZUK1yqzD88=

+

+Name: themes/circles/graphics/contentpage/mi_banner.jpg

+SHA1-Digest: 1sw4BuKCsz60H2Os3tfy525HyLo=

+

+Name: themes/purpleMesh/graphics/root/dots.gif

+SHA1-Digest: J8KQRqbJZhxVIt9FA8p0AcCnowc=

+

+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc72.gif

+SHA1-Digest: DD9I/BC6qA7bx2G7VKVRdAIpEYM=

+

+Name: themes/circles/html/shared.css

+SHA1-Digest: NJbZ3ZOvYbHm3hSIEHPQBig4eDA=

+

+Name: themes/slate/graphics/icons/ctool/sa_nav_32.gif

+SHA1-Digest: zWmN8ic58PiJmRsQN6M8kkO112Y=

+

+Name: themes/slate/swt/whatsnew.properties

+SHA1-Digest: +6rLRTIyqqFhxw9OwYjFyI9LYHU=

+

+Name: themes/circles/graphics/contentpage/sa_banner.jpg

+SHA1-Digest: 7WoYSLMwBhmg1/b/vzgmc4EEEYU=

+

+Name: themes/circles/graphics/standby/tu_standby.gif

+SHA1-Digest: 76LqWV6eBwFimzZFB6T2Buh40Jw=

+

+Name: themes/slate/graphics/standby/wb_standby.gif

+SHA1-Digest: iYWACoN3sIlFFpx6p5DfMjT8yp4=

+

+Name: themes/circles/graphics/icons/ctool/cpt_bottomhov.gif

+SHA1-Digest: kK+FVIIHjU6Om4Pa8Mf1Cb9qZ3k=

+

+Name: themes/circles/graphics/icons/ctool/wn_nav_hover.gif

+SHA1-Digest: Dhv+82YCN/981G9RTNEIB18Lpdc=

+

+Name: themes/slate/graphics/standby/wr_standby.gif

+SHA1-Digest: xduVT3RSYRMM5sYjyQAjf+Jf17I=

+

+Name: themes/circles/graphics/icons/ctool/content_nav_bar.gif

+SHA1-Digest: kr9yIeTjSkVaXNPuVOWWopYNvho=

+

+Name: themes/slate/swt/standby.properties

+SHA1-Digest: bV7foFtJyLQF3lqerXPZKET+4ew=

+

+Name: themes/slate/graphics/icons/ctool/fs_nav_32.gif

+SHA1-Digest: BSKmmm0UjJhF46bslzBFgsMhk28=

+

+Name: themes/circles/graphics/standby/sa_standbyhov.gif

+SHA1-Digest: R1KR8mlM3qFlzVMir6EJcoAJ6lE=

+

+Name: themes/circles/graphics/contentpage/fs_banner.jpg

+SHA1-Digest: vUx+zrIjtCFpyr9f3ERQ6/HpSzw=

+

+Name: themes/shared/graphics/icons/ctool/arrow_rtl.gif

+SHA1-Digest: lbqBjzMYJPrTr2480naQFU3Ctkw=

+

+Name: themes/purpleMesh/graphics/launchbar/firststeps16.png

+SHA1-Digest: Xi6gTgcM86DWgA6hyPn8mRMRwE0=

+

+Name: themes/purpleMesh/graphics/contentpage/firsteps_wtr.jpg

+SHA1-Digest: SLogcCehi5NObA2KuLZ7nA738ds=

+

+Name: themes/purpleMesh/graphics/contentpage/overview_wtr.jpg

+SHA1-Digest: koZJeO/5SBXUv2ah5lALiklDKnY=

+

+Name: icons/full/elcl16/configure.gif

+SHA1-Digest: lO5chUjiq4EA093CHoujkIE+2ro=

+

+Name: themes/purpleMesh/graphics/icons/ctool/samples72.gif

+SHA1-Digest: 8tJ5D2Qt3JGFuK3tVzR2zDvw1UA=

+

+Name: themes/circles/graphics/launchbar/webresources16.png

+SHA1-Digest: MKgOo3PUit3DrNfS3CNMBEiz7j0=

+

+Name: themes/slate/graphics/rootpage/samples48_hov.png

+SHA1-Digest: 2YRNbbxotyUjDVT/r3kFEq6poLo=

+

+Name: themes/circles/graphics/standby/fs_standby.gif

+SHA1-Digest: 5yXOjWYGu9taQwSM6JmLf07j0fI=

+

+Name: themes/circles/graphics/standby/sa_standby.gif

+SHA1-Digest: MzhZk7rGOmDthzPVK6Ss5ZHDWfc=

+

+Name: themes/purpleMesh/html/tutorials.css

+SHA1-Digest: ei1JflrAWiaDdaAr3H0KmumaF98=

+

+Name: themes/slate/graphics/contentpage/ov_banner.jpg

+SHA1-Digest: 2Wu7/rm22OIorJVynaU7zk/G8cg=

+

+Name: themes/purpleMesh/graphics/icons/ctool/migrate72.gif

+SHA1-Digest: QpVdHFygYIEYpSnJi/P3L9MHuqE=

+

+Name: themes/circles/graphics/icons/ctool/tu_nav_32.gif

+SHA1-Digest: ERMabqNtihbmhosEh+AMC9m6SgQ=

+

+Name: themes/slate/graphics/rootpage/background.jpg

+SHA1-Digest: clqgSqmczSLuMgglgV10PWWPA9g=

+

+Name: themes/shared/graphics/contentpage/tu-sa_med.gif

+SHA1-Digest: h/hEsdE7RIYhwsmZzkQG1XWxsys=

+

+Name: themes/slate/graphics/icons/ctool/firststeps-select.png

+SHA1-Digest: fe9h2ATKSpO/CQpV0CiE3Ja0Mo0=

+

+Name: themes/circles/swt/tutorials.properties

+SHA1-Digest: KzD9PkAEIUKHMB95H+XTKCwE0yQ=

+

+Name: META-INF/eclipse.inf

+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=

+

+Name: themes/slate/graphics/icons/ctool/firststeps.png

+SHA1-Digest: Slw4nKX4xZvu6mCCFHsDWMjdIMw=

+

+Name: themes/circles/graphics/standby/wn_standbyhov.gif

+SHA1-Digest: NbMYb8Ka2D8DlnjzdS2qA6E8j9I=

+

+Name: .options

+SHA1-Digest: C+1XlDx3q4e5awMudzzcXc0+HR8=

+

+Name: themes/purpleMesh/graphics/icons/etool/whatsnew48sel.gif

+SHA1-Digest: 6aRXuEW+469og8tyzagdemjWMtU=

+

+Name: themes/slate/html/ltr.css

+SHA1-Digest: Yyu5meBpG9xZ0u7nPC5AeoUW/zw=

+

+Name: themes/shared/graphics/icons/ctool/arrow.gif

+SHA1-Digest: iyBS4QdZ6imHjGPw321lqh6SJSo=

+

+Name: themes/slate/graphics/rootpage/firststeps48_hov.png

+SHA1-Digest: u8839OydWVij9f/XScZyzGhsI+E=

+

+Name: themes/slate/graphics/icons/ctool/tutorials-select.gif

+SHA1-Digest: RyAwY/Ne3m1SyA/5nJImuJ3fKNg=

+

+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew16.png

+SHA1-Digest: h+KhHUY6Dp0Q8Jm2f2zIe/6WTlQ=

+

+Name: themes/purpleMesh/graphics/icons/ctool/home.gif

+SHA1-Digest: +dfHtXYrxLHjjn8I1hvSsiolVec=

+

+Name: themes/slate/graphics/icons/ctool/workbench.png

+SHA1-Digest: NvsOkAqCPAe7ectLZ6VMCYoWlAg=

+

+Name: themes/purpleMesh/graphics/icons/ctool/back.gif

+SHA1-Digest: /ee1AJtypM5HojkNnK17U+1toxw=

+

+Name: themes/purpleMesh/graphics/icons/etool/whatsnew72.gif

+SHA1-Digest: VVjmCJZSVuW19ir4QGPMhB7Npwk=

+

+Name: themes/purpleMesh/graphics/launchbar/samples.gif

+SHA1-Digest: f+tsB+8P19AEujlqYKaF47r+bRo=

+

+Name: plugin.properties

+SHA1-Digest: j9b4Qc2R4fauSPFwVkCuw/97RmY=

+

+Name: themes/slate/graphics/standby/mi_standbyhov.gif

+SHA1-Digest: HnHqLAS7Dn7UNF9Lvj7vq9+KBUc=

+

+Name: themes/slate/graphics/launchbar/overview16.png

+SHA1-Digest: F9E6l5MA7FwcZoftgNIyKpPuHIs=

+

+Name: themes/circles/preview.png

+SHA1-Digest: p2GDfi7EuI8iZYsSRdPhU6yn/tA=

+

+Name: themes/circles/graphics/icons/ctool/wr_nav_64.gif

+SHA1-Digest: yKH5q0AkPnPz33CwUnAawnSB37Y=

+

+Name: themes/circles/html/webresources.css

+SHA1-Digest: oJ2uN/Df/fQ9VVcHmmjDUenv7AM=

+

+Name: themes/circles/graphics/icons/ctool/workbench.gif

+SHA1-Digest: fXSnXQQliUHXuHkVtPEd48wAmU0=

+

+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc16.png

+SHA1-Digest: MKgOo3PUit3DrNfS3CNMBEiz7j0=

+

+Name: plugin.xml

+SHA1-Digest: HTH+0R6u0txmcBdMgUYHHxi5NA0=

+

+Name: themes/slate/graphics/icons/ctool/wb_nav.png

+SHA1-Digest: FH8HqOCtz5sLOSGSXLTuXtscYdw=

+

+Name: themes/slate/graphics/icons/ctool/fs_nav.png

+SHA1-Digest: 3F+Z798k2zAOQHXppBvRobdsVgY=

+

+Name: themes/slate/graphics/icons/ctool/tutorials.png

+SHA1-Digest: smC+kYLb5F/BlUJxXGb3OIkzMyA=

+

+Name: themes/slate/graphics/rootpage/webresources48.gif

+SHA1-Digest: Wkwu0trR5o4j216/eKGrLUXQgVQ=

+

+Name: themes/circles/swt/samples.properties

+SHA1-Digest: Ncf3sOn+P9/86/XoIn4hcq9icD4=

+

+Name: themes/purpleMesh/swt/overview.properties

+SHA1-Digest: 4XuXPT9lJyYZUd15XLQ2S2NY0Rs=

+

+Name: themes/slate/graphics/icons/ctool/wn_nav.png

+SHA1-Digest: d7McdCEtfxPQ+F5vlR38rVTvgXo=

+

+Name: themes/purpleMesh/html/whatsnew.css

+SHA1-Digest: a2kvguq57VvzsFpUWd3lNE8NhXk=

+

+Name: themes/slate/graphics/icons/ctool/wr_nav.png

+SHA1-Digest: RiRbJ01jNoAefHKxAe7htjgxNc8=

+

+Name: themes/circles/graphics/icons/ctool/firststeps.png

+SHA1-Digest: Slw4nKX4xZvu6mCCFHsDWMjdIMw=

+

+Name: themes/circles/graphics/icons/ctool/tutorials.gif

+SHA1-Digest: B3mR2l7PuKW4ohGN2+6MgQ0N4+E=

+

+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc48sel.gif

+SHA1-Digest: xolbR3GLHkwY40HpoCR7l2cvo8E=

+

+Name: themes/slate/graphics/rootpage/samples48.png

+SHA1-Digest: 0aBwYaDsSfDY9wFfyZYhgWauOts=

+

+Name: themes/slate/swt/webresources.properties

+SHA1-Digest: t5J8E7LadPCb0Nado0og3neqeP4=

+

+Name: themes/purpleMesh/html/samples.css

+SHA1-Digest: aV9FCYH/Y99OxfBo3a89dBVVb2w=

+

+Name: themes/slate/graphics/rootpage/workbench48.gif

+SHA1-Digest: bCEuWQrXaxDHRsdbV32vhZTaTAw=

+

+Name: themes/purpleMesh/graphics/icons/obj48/newhov_obj.gif

+SHA1-Digest: bYXzhCgIi1p/aDvaAoOBGIrBuKA=

+

+Name: themes/slate/graphics/icons/ctool/migrate-select.png

+SHA1-Digest: 4FsIwltnwRBT6zUU9ZhfqWqeCMg=

+

+Name: themes/purpleMesh/graphics/icons/dtool/forward.gif

+SHA1-Digest: /hIcNo6w11v+EpgTXgFX9a1bYwY=

+

+Name: themes/slate/graphics/rootpage/migrate48.png

+SHA1-Digest: fYUHrau4PFFvcGeeVKUmDXXFlzM=

+

+Name: introContent.xml

+SHA1-Digest: oBGOdDNVJDRhzWJduBCcMgybxlg=

+

+Name: themes/purpleMesh/graphics/icons/ctool/samples16.png

+SHA1-Digest: +A2GGC4SIIC5T7Tlg4U4Z0UqIVQ=

+

+Name: themes/shared/graphics/icons/ctool/widget_open_hov.gif

+SHA1-Digest: MmG5r1m7Bt3SovQedHnqx/yef6c=

+

+Name: themes/slate/graphics/standby/ov_standbyhov.gif

+SHA1-Digest: S4jMdmDN03X8/YD+TgHYLJTrQ1k=

+

+Name: themes/slate/graphics/rootpage/root_banner_logo.jpg

+SHA1-Digest: /CP6QAhd0edNjnbONqlngQnllMA=

+

+Name: themes/purpleMesh/graphics/icons/etool/firsteps48sel.gif

+SHA1-Digest: uOZ5e0VrbpuNNVW7lRzqZfCtTW4=

+

+Name: themes/purpleMesh/swt/firststeps.properties

+SHA1-Digest: aASynB9pAU45n6Ybk1G/NcO1fdI=

+

+Name: themes/slate/graphics/rootpage/tutorials48_hov.gif

+SHA1-Digest: 4SvJnMqRTwJ+zIoB8cQR38SSd24=

+

+Name: themes/slate/graphics/rootpage/firststeps48.png

+SHA1-Digest: 5Mnj5NHzv8W/LV+9YDC5mHVlj9A=

+

+Name: themes/circles/graphics/launchbar/whatsnew16.png

+SHA1-Digest: h+KhHUY6Dp0Q8Jm2f2zIe/6WTlQ=

+

+Name: themes/purpleMesh/swt/migrate.properties

+SHA1-Digest: cE6O/0BBstAtfvzhz8YejE5SX8Q=

+

+Name: themes/circles/graphics/icons/ctool/root_bottomhov.gif

+SHA1-Digest: iwXyduiJRV5Bdtz/1NQf51QxyqU=

+

+Name: themes/purpleMesh/graphics/launchbar/migrate16.png

+SHA1-Digest: cdjjFVkozz0y9ji+FpASYhOALwk=

+

+Name: themes/purpleMesh/html/font-relative.css

+SHA1-Digest: PqZAKDAg+G3+bdo7roEyD1vX+6Y=

+

+Name: themes/circles/graphics/icons/ctool/wb_nav_hover.gif

+SHA1-Digest: D42boB3rk+XDSbYZH5AZmnsKB4A=

+

+Name: themes/purpleMesh/graphics/icons/ctool/migrate16.png

+SHA1-Digest: cdjjFVkozz0y9ji+FpASYhOALwk=

+

+Name: themes/slate/graphics/rootpage/migrate48_hov.gif

+SHA1-Digest: cLdOTCmvcsdeG2+P5GWUtX33mwc=

+

+Name: themes/purpleMesh/graphics/icons/etool/tutorials48sel.gif

+SHA1-Digest: jc00LK6MGDAAaGfP4M5RyJXGuQE=

+

+Name: themes/slate/graphics/icons/ctool/whatsnew-select.png

+SHA1-Digest: h1ALltqSjS2PyFiadyhunaVj0Rc=

+

+Name: themes/circles/graphics/icons/ctool/ov_nav.png

+SHA1-Digest: KtxMxu+ASHojP1pS3ir3RurjNk8=

+

+Name: themes/purpleMesh/graphics/icons/etool/overview48sel.gif

+SHA1-Digest: OKGFb61YvHR3BUEWxZMRoOrDc0U=

+

+Name: themes/shared/graphics/contentpage/wr-mi_med.gif

+SHA1-Digest: sMBntAOuQRZ4SVT9n0EUumCXqio=

+

+Name: themes/slate/graphics/standby/tu_standbyhov.gif

+SHA1-Digest: sWxT9jjy1CbwVqXWKiMSMRgDs8I=

+

+Name: themes/circles/graphics/icons/ctool/wr_nav_hover.gif

+SHA1-Digest: PqoCgMnPYQAZ5Sh//KRwq3GiElY=

+

+Name: themes/slate/graphics/launchbar/firststeps16.png

+SHA1-Digest: Xi6gTgcM86DWgA6hyPn8mRMRwE0=

+

+Name: themes/purpleMesh/html/overview.css

+SHA1-Digest: y0DWH504MPKylYGmOgVS5qb3pB0=

+

+Name: themes/slate/graphics/standby/ov_standby.gif

+SHA1-Digest: HunoPS0cid3oVEr1sZr/zorOhSo=

+

+Name: themes/circles/html/tutorials.css

+SHA1-Digest: w/Jtk6Bi+30x/49Z8c/2RbISOTk=

+

+Name: themes/circles/graphics/rootpage/welcomebckgrd.jpg

+SHA1-Digest: RsjLJW93PHvXmiEpV1h7Z7/PmG0=

+

+Name: themes/purpleMesh/html/rtl.css

+SHA1-Digest: 2B29TxTe/FduV6aD5p0J9bAq9Vw=

+

+Name: themes/purpleMesh/graphics/icons/ctool/firsteps48.gif

+SHA1-Digest: +i2ExoEMVgv5OsKcPs/8ZqldrV4=

+

+Name: themes/slate/graphics/icons/ctool/sa_nav.png

+SHA1-Digest: uXMdf9iE7j6nm8Kb+4XilPOc3KQ=

+

+Name: themes/circles/graphics/icons/ctool/samples_tophov.gif

+SHA1-Digest: 9fSubIMcSGRm6kHstxpp/hWR2MY=

+

+Name: themes/circles/graphics/icons/ctool/whatsnew_tophov.gif

+SHA1-Digest: Dz4B6J4zj82LLZHLRDUGJ5zhaa8=

+

+Name: themes/circles/graphics/icons/ctool/webresources.gif

+SHA1-Digest: XXqmYcqNJAe+O7jDcR2IF01wCvI=

+

+Name: themes/circles/graphics/icons/ctool/ov_nav_rightedgehov.gif

+SHA1-Digest: +ldcPGuLxaDCtgM9cCVBp834H6w=

+

+Name: themes/purpleMesh/graphics/icons/etool/tutorials48.gif

+SHA1-Digest: fxo+8hPJ1SxRJQpke2wKEXdASIA=

+

+Name: .api_description

+SHA1-Digest: aEjIyLX/qavVSW+KUVFCWyFNqno=

+

+Name: themes/shared/graphics/contentpage/ov_high.gif

+SHA1-Digest: IKGW38eYO7vaBoKhdiw7GpIAKBk=

+

+Name: themes/circles/graphics/icons/ctool/ov_nav_32.gif

+SHA1-Digest: mK2utAnQW2MhbJurFHYi5qKZ1vE=

+

+Name: themes/slate/swt/samples.properties

+SHA1-Digest: Lk9VkvX9y75vbaIYZjTwpe3vlc8=

+

+Name: themes/circles/graphics/icons/ctool/tu_nav_64.gif

+SHA1-Digest: L64ZAN2mr8wKAPAY0pRqPrEZgp0=

+

+Name: themes/slate/graphics/icons/ctool/overview-select.gif

+SHA1-Digest: rDatrh5+RWGgBQOsdxqZlA4w2Zc=

+

+Name: themes/shared/graphics/icons/ctool/widget_closed.gif

+SHA1-Digest: Ce25KultCG+5fRN3Er6QposVUqQ=

+

+Name: themes/slate/graphics/standby/fs_standbyhov.gif

+SHA1-Digest: j3OetXMY7tyEtqQChTtohOIDzgk=

+

+Name: themes/slate/graphics/icons/ctool/wr_nav_32.gif

+SHA1-Digest: TdYmSHa2YYmdttUqBg/bnvUwPFU=

+

+Name: themes/circles/graphics/standby/wb_standby.gif

+SHA1-Digest: iYWACoN3sIlFFpx6p5DfMjT8yp4=

+

+Name: themes/shared/graphics/icons/ctool/widget_closed_hov.gif

+SHA1-Digest: RdXAhCz407pCYDiqC38P0Uup5Lk=

+

+Name: themes/slate/graphics/rootpage/whatsnew48.png

+SHA1-Digest: XqPtN6ePY9fMqiYf413JSqumPYM=

+

+Name: themes/circles/graphics/icons/ctool/samples.png

+SHA1-Digest: mUEIQ9eqMWNIQEiNPyGfsplQZTY=

+

+Name: themes/circles/graphics/icons/ctool/whatsnew.png

+SHA1-Digest: 7yax9xdOrPlNoCNBqEo0D2Wn98A=

+

+Name: themes/slate/graphics/icons/ctool/samples-select.gif

+SHA1-Digest: 2jcUxYNETQZSndqWOTWNrNjZr3M=

+

+Name: themes/slate/graphics/rootpage/overview48.gif

+SHA1-Digest: HJKThR/+8xlKkV/iwAnJoKIBEjc=

+

+Name: themes/circles/graphics/contentpage/wr_banner.jpg

+SHA1-Digest: lMNC8ZRpqVeAjGGom/2FCfIla0I=

+

+Name: themes/slate/graphics/standby/mi_standby.gif

+SHA1-Digest: 5hYhaXir5S3NKycOObVKVsAr09E=

+

+Name: themes/slate/swt/firststeps.properties

+SHA1-Digest: XEd5LUGfrXm+Fi2Pm2Sxabb+o2Q=

+

+Name: themes/slate/graphics/icons/ctool/samples.png

+SHA1-Digest: mUEIQ9eqMWNIQEiNPyGfsplQZTY=

+

+Name: themes/circles/graphics/standby/wr_standby.gif

+SHA1-Digest: xduVT3RSYRMM5sYjyQAjf+Jf17I=

+

+Name: themes/slate/graphics/rootpage/workbench48_hov.gif

+SHA1-Digest: Y2ot6r+86mWEmot6dSbW7qBXxrA=

+

+Name: themes/slate/graphics/contentpage/wn_banner.jpg

+SHA1-Digest: B7PqiMv+1kh2aQSblUfgzqJY+vc=

+

+Name: themes/circles/graphics/launchbar/firststeps16.png

+SHA1-Digest: Xi6gTgcM86DWgA6hyPn8mRMRwE0=

+

+Name: themes/purpleMesh/html/migrate.css

+SHA1-Digest: QWGn8isbJ0z51DThM2DY0vmiUQY=

+

+Name: themes/purpleMesh/graphics/icons/ctool/overview48.gif

+SHA1-Digest: p166YKsHvy7lDhFvTVC+MWHEPNI=

+

+Name: themes/purpleMesh/html/standby.css

+SHA1-Digest: YImivxRli186nUOikfJNfRQ9heg=

+

+Name: icons/full/obj16/extension_obj.gif

+SHA1-Digest: Z2OZk1zGHkMoKUiUg4yQs9yLbG0=

+

+Name: themes/purpleMesh/graphics/icons/etool/wb48.gif

+SHA1-Digest: hUPACtH5KYkHcJaBMckWNa6Rp0Y=

+

+Name: themes/slate/graphics/rootpage/whatsnew48_hov.gif

+SHA1-Digest: 2irx38fThjn95Bc5TeX4Nz2l1eM=

+

+Name: themes/slate/graphics/standby/wr_standbyhov.gif

+SHA1-Digest: 1rq4e0czEMOde7HG8ZUK1yqzD88=

+

+Name: themes/slate/graphics/contentpage/mi_banner.jpg

+SHA1-Digest: BmFPKdVlhpqtGVVuiBAEfsWiDJc=

+

+Name: themes/circles/graphics/icons/ctool/nav_midhov.gif

+SHA1-Digest: UzxXgA/8cTju4cty8vMKKxHvc4k=

+

+Name: themes/circles/graphics/icons/ctool/sa_onesample48.gif

+SHA1-Digest: SgTfSJwJOJRFZ/IcEX2QPiygsNc=

+

+Name: themes/purpleMesh/html/root.css

+SHA1-Digest: L5Tx+BMdeBiODngBKJUu+AAVctw=

+

+Name: themes/slate/graphics/contentpage/sa_banner.jpg

+SHA1-Digest: Ug2BpLsYYBUgSQ7NunyprrBNUl0=

+

+Name: themes/circles/html/samples.css

+SHA1-Digest: i1NavsbJM5qrz/TuG8KCHYInrGw=

+

+Name: themes/circles/graphics/icons/ctool/arrow_rtl.gif

+SHA1-Digest: lbqBjzMYJPrTr2480naQFU3Ctkw=

+

+Name: themes/purpleMesh/graphics/icons/ctool/samples48sel.gif

+SHA1-Digest: oN1vH4wGhKWwoMcHmyoj58c+wv4=

+

+Name: themes/purpleMesh/graphics/contentpage/section4.gif

+SHA1-Digest: G6k7Z/zfXfLy9LtPLbb9QOw8ocE=

+

+Name: themes/slate/graphics/rootpage/webresources48_hov.png

+SHA1-Digest: uQSI5dNR5WKXZqCPYNBXOwlAero=

+

+Name: themes/slate/html/samples.css

+SHA1-Digest: MQjp+/7X99His50rasEJD96/e7k=

+

+Name: themes/slate/graphics/standby/sa_standbyhov.gif

+SHA1-Digest: R1KR8mlM3qFlzVMir6EJcoAJ6lE=

+

+Name: themes/purpleMesh/swt/root.properties

+SHA1-Digest: kzz0orYVHgZJ1gxM+EZQxlbiK6k=

+

+Name: themes/slate/graphics/contentpage/fs_banner.jpg

+SHA1-Digest: pKMXP4ayqEGlW6vkG4+uUzK8KOY=

+

+Name: themes/purpleMesh/graphics/icons/obj48/new_obj.gif

+SHA1-Digest: Y/Bwx578bV6kzFqO2dx3H9gJtTo=

+

+Name: themes/circles/graphics/launchbar/samples16.png

+SHA1-Digest: +A2GGC4SIIC5T7Tlg4U4Z0UqIVQ=

+

+Name: themes/shared/graphics/contentpage/wr-mi_high.gif

+SHA1-Digest: 2RQtHiwrJLvAsbE+LgDUgDBAREk=

+

+Name: themes/circles/graphics/icons/ctool/overview.png

+SHA1-Digest: eXxwilTaGiognsDmKoSJ3ZwT7FU=

+

+Name: themes/slate/graphics/launchbar/samples16.png

+SHA1-Digest: +A2GGC4SIIC5T7Tlg4U4Z0UqIVQ=

+

+Name: themes/purpleMesh/graphics/contentpage/tutorials_wtr.jpg

+SHA1-Digest: crA+sbMxuv6QOQml9WDHmcSYGcE=

+

+Name: universal.jar

+SHA1-Digest: jr+MZWA89AGisRFIF165u4g8kbE=

+

+Name: themes/slate/graphics/icons/ctool/webresources.png

+SHA1-Digest: 0sKVVhl4zyGuSQxxs1pyupEqEro=

+

+Name: themes/slate/graphics/rootpage/tutorials48.png

+SHA1-Digest: yKtB0uZVtrJ+JoR2z0YAYQ5W3sA=

+

diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/eclipse.inf b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/about.html b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/about.html
new file mode 100644
index 0000000..4602330
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/about.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
+<title>About</title>
+</head>
+<body lang="EN-US">
+<h2>About This Content</h2>
+ 
+<p>June 2, 2006</p>	
+<h3>License</h3>
+
+<p>The Eclipse Foundation makes available all content in this plug-in (&quot;Content&quot;).  Unless otherwise 
+indicated below, the Content is provided to you under the terms and conditions of the
+Eclipse Public License Version 1.0 (&quot;EPL&quot;).  A copy of the EPL is available 
+at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>If you did not receive this Content directly from the Eclipse Foundation, the Content is 
+being redistributed by another party (&quot;Redistributor&quot;) and different terms and conditions may
+apply to your use of any object code in the Content.  Check the Redistributor's license that was 
+provided with the Content.  If no such license exists, contact the Redistributor.  Unless otherwise
+indicated below, the terms and conditions of the EPL still apply to any source code in the Content
+and such source code may be obtained at <a href="http://www.eclipse.org">http://www.eclipse.org</a>.</p>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/elcl16/configure.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/elcl16/configure.gif
new file mode 100644
index 0000000..13102f6
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/elcl16/configure.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/extension_obj.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/extension_obj.gif
new file mode 100644
index 0000000..7f3f595
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/extension_obj.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/icallout_obj.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/icallout_obj.gif
new file mode 100644
index 0000000..f52d86a
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/icallout_obj.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/ihigh_obj.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/ihigh_obj.gif
new file mode 100644
index 0000000..f99bdc3
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/ihigh_obj.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/ilow_obj.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/ilow_obj.gif
new file mode 100644
index 0000000..a6815bc
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/ilow_obj.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/image_obj.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/image_obj.gif
new file mode 100644
index 0000000..830be0e
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/image_obj.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/inew_obj.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/inew_obj.gif
new file mode 100644
index 0000000..b1526e9
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/inew_obj.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/welcome16.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/welcome16.gif
new file mode 100644
index 0000000..b20cc78
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/welcome16.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/introContent.xml b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/introContent.xml
new file mode 100644
index 0000000..77066b7
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/introContent.xml
@@ -0,0 +1,270 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<!--
+    Copyright (c) 2005, 2010 IBM Corporation and others.
+    All rights reserved. This program and the accompanying materials
+    are made available under the terms of the Eclipse Public License v1.0
+    which accompanies this distribution, and is available at
+    http://www.eclipse.org/legal/epl-v10.html
+   
+    Contributors:
+         IBM Corporation - initial API and implementation
+ -->
+
+<!-- 
+	A content file for the Universal Welcome
+-->
+<introContent>
+	<!-- Root page -->
+	<page id="root" alt-style="$theme$/swt/root.properties" style="$theme$/html/root.css" style-id="page">
+		<anchor id="head-anchor"/>
+        <title style-id="intro-header">$introTitle$</title>
+        <group id="links-background">
+           <group id="page-links" computed="true"/>
+        </group>
+        <group id="action-links" computed="true">
+        </group>        
+        <group id="branding">
+        	<img src="$introBrandingImage$" alt="$introBrandingImageText$"/>
+        </group>
+		<!-- General purpose groups for adding additional content -->
+		<group id="extra-group1" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group2" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group3" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group4" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group5" filteredFrom="swt"><anchor id="anchor"/></group>
+    </page>
+	
+	<!-- Standby page -->
+    <page id="standby" alt-style="$theme$/swt/standby.properties" style="$theme$/html/standby.css" style-id="page">
+   		<anchor id="head-anchor"/>
+        <title style-id="intro-header">$introTitle$</title>
+        <group id="links-background">
+            <group id="page-links" computed="true">
+            </group>
+        </group>
+        <group id="action-links" computed="true">
+        </group>        
+        <group id="branding">
+        	<img src="$introBrandingImage$" alt="$introBrandingImageText$"/>
+        </group>
+		<!-- General-purpose groups for additional content -->
+		<group id="extra-group1" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group2" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group3" filteredFrom="swt"><anchor id="anchor"/></group>		
+    </page>    
+    
+	<!-- Overview page -->
+    <page id="overview" style="$theme$/html/overview.css" alt-style="$theme$/swt/overview.properties" style-id="page">
+   		<anchor id="head-anchor"/>
+        <title style-id="intro-header">$introTitle$</title> 
+        <group id="extra-group1" filteredFrom="swt"/>
+		<!-- navigation -->
+        <group id="navigation-links" filteredFrom="swt">
+            <group id="page-links" computed="true">
+            </group>
+            <group id="action-links">
+                <link url="http://org.eclipse.ui.intro/switchToLaunchBar" label="Workbench" id="workbench" style-id="$high-contrast$">
+                    <text>Go to the workbench</text>
+                </link>
+            </group>
+        </group>
+		<!-- content -->
+        <group id="page-content">
+            <group id="content-header" label="Overview" filteredFrom="swt">
+            </group>
+            <text style-id="page-title" id="page-title" filteredFrom="html">Overview</text>
+            <text style-id="page-description" id="page-description">$introDescription-overview$</text>
+			<!-- panes -->
+ 			<group id="top-left" computed="true"/>
+			<group id="top-right" computed="true"/>
+			<group id="content-divider" filteredFrom="swt"/>		
+			<group id="bottom-left" computed="true"/>
+			<group id="bottom-right" computed="true"/>
+        </group>
+		<!-- extra groups for additional effects -->
+		<group id="extra-group2" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group3" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group4" filteredFrom="swt"><anchor id="anchor"/></group>
+    </page>
+    
+    <!-- Tutorials page -->
+	<page id="tutorials" style="$theme$/html/tutorials.css" alt-style="$theme$/swt/tutorials.properties" style-id="page">
+		<anchor id="head-anchor"/>
+        <title style-id="intro-header">$introTitle$</title>	
+        <group id="extra-group1" filteredFrom="swt"/>
+        <group id="navigation-links" filteredFrom="swt">
+            <group id="page-links" computed="true">
+            </group>
+            <group id="action-links">
+                <link url="http://org.eclipse.ui.intro/switchToLaunchBar" label="Workbench" id="workbench" style-id="$high-contrast$">
+                    <text>Go to the workbench</text>
+                </link>
+            </group>
+        </group>
+        <group id="page-content">
+            <group id="content-header" label="Tutorials" filteredFrom="swt">
+            </group>
+            <text style-id="page-title" id="page-title" filteredFrom="html">Tutorials</text>
+            <text style-id="page-description" id="page-description">$introDescription-tutorials$</text>
+ 			<group id="top-left" computed="true"/>
+			<group id="top-right" computed="true"/>
+			<group id="content-divider" filteredFrom="swt"/>		
+			<group id="bottom-left" computed="true"/>
+			<group id="bottom-right" computed="true"/>
+        </group>
+		<group id="extra-group2" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group3" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group4" filteredFrom="swt"><anchor id="anchor"/></group>
+    </page>
+    
+    <!-- Samples page -->
+	 <page id="samples" style="$theme$/html/samples.css" alt-style="$theme$/swt/samples.properties" style-id="page">
+ 		<anchor id="head-anchor"/>
+        <title style-id="intro-header">$introTitle$</title> 
+        <group id="extra-group1" filteredFrom="swt"/>
+        <group id="navigation-links" filteredFrom="swt">
+            <group id="page-links" computed="true">
+            </group>
+            <group id="action-links">
+                <link url="http://org.eclipse.ui.intro/switchToLaunchBar" label="Workbench" id="workbench" style-id="$high-contrast$">
+                    <text>Go to the workbench</text>
+                </link>
+            </group>
+        </group>
+        <group id="page-content">
+            <group id="content-header" label="Samples" filteredFrom="swt">
+            </group>
+            <text style-id="page-title" id="page-title" filteredFrom="html">Samples</text>
+            <text style-id="page-description" id="page-description">$introDescription-samples$</text>
+ 			<group id="top-left" computed="true"/>
+			<group id="top-right" computed="true"/>
+			<group id="content-divider" filteredFrom="swt"/>		
+			<group id="bottom-left" computed="true"/>
+			<group id="bottom-right" computed="true"/>
+        </group>
+		<group id="extra-group2" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group3" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group4" filteredFrom="swt"><anchor id="anchor"/></group>		 
+    </page>
+
+	<!-- What's New page -->
+    <page id="whatsnew" style="$theme$/html/whatsnew.css" alt-style="$theme$/swt/whatsnew.properties" style-id="page">
+		<anchor id="head-anchor"/>    
+        <title style-id="intro-header">$introTitle$</title> 
+        <group id="extra-group1" filteredFrom="swt"/>
+        <group id="navigation-links" filteredFrom="swt">
+            <group id="page-links" computed="true">
+            </group>
+            <group id="action-links">
+                <link url="http://org.eclipse.ui.intro/switchToLaunchBar" label="Workbench" id="workbench" style-id="$high-contrast$">
+                    <text>Go to the workbench</text>
+                </link>
+            </group>
+        </group>
+        <group id="page-content">
+            <group id="content-header" label="What's New" filteredFrom="swt">
+            </group>
+            <text style-id="page-title" id="page-title" filteredFrom="html">What's New</text>
+            <text style-id="page-description" id="page-description">$introDescription-whatsnew$</text>
+ 			<group id="top-left" computed="true"/>
+			<group id="top-right" computed="true"/>
+			<group id="content-divider" filteredFrom="swt"/>			
+			<group id="bottom-left" computed="true"/>
+			<group id="bottom-right" computed="true"/>
+        </group>
+		<group id="extra-group2" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group3" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group4" filteredFrom="swt"><anchor id="anchor"/></group>		
+    </page>
+    
+    <!-- First Steps page -->
+    <page id="firststeps" style="$theme$/html/firststeps.css" alt-style="$theme$/swt/firststeps.properties" style-id="page">
+		<anchor id="head-anchor"/>
+        <title style-id="intro-header">$introTitle$</title> 
+        <group id="extra-group1" filteredFrom="swt"/>
+        <group id="navigation-links" filteredFrom="swt">
+            <group id="page-links" computed="true">
+            </group>
+            <group id="action-links">
+                <link url="http://org.eclipse.ui.intro/switchToLaunchBar" label="Workbench" id="workbench" style-id="$high-contrast$">
+                    <text>Go to the workbench</text>
+                </link>
+            </group>
+        </group>
+        <group id="page-content">
+            <group id="content-header" label="First Steps" filteredFrom="swt">
+            </group>
+            <text style-id="page-title" id="page-title" filteredFrom="html">First Steps</text>
+            <text style-id="page-description" id="page-description">$introDescription-firststeps$</text>
+ 			<group id="top-left" computed="true"/>
+			<group id="top-right" computed="true"/>
+			<group id="content-divider" filteredFrom="swt"/>				
+			<group id="bottom-left" computed="true"/>
+			<group id="bottom-right" computed="true"/>
+        </group>
+		<group id="extra-group2" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group3" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group4" filteredFrom="swt"><anchor id="anchor"/></group>		
+    </page>
+    
+    <!-- Web resources page -->
+    <page id="webresources" style="$theme$/html/webresources.css" alt-style="$theme$/swt/webresources.properties" style-id="page">
+		<anchor id="head-anchor"/>    
+        <title style-id="intro-header">$introTitle$</title> 
+        <group id="extra-group1" filteredFrom="swt"/>
+        <group id="navigation-links" filteredFrom="swt">
+            <group id="page-links" computed="true">
+            </group>
+            <group id="action-links">
+                <link url="http://org.eclipse.ui.intro/switchToLaunchBar" label="Workbench" id="workbench" style-id="$high-contrast$">
+                    <text>Go to the workbench</text>
+                </link>
+            </group>
+        </group>
+        <group id="page-content">
+            <group id="content-header" label="Web Resources" filteredFrom="swt">
+            </group>
+            <text style-id="page-title" id="page-title" filteredFrom="html">Web Resources</text>
+            <text style-id="page-description" id="page-description">$introDescription-webresources$</text>			
+ 			<group id="top-left" computed="true"/>
+			<group id="top-right" computed="true"/>
+			<group id="content-divider" filteredFrom="swt"/>			
+			<group id="bottom-left" computed="true"/>
+			<group id="bottom-right" computed="true"/>
+        </group>
+		<group id="extra-group2" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group3" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group4" filteredFrom="swt"><anchor id="anchor"/></group>		
+    </page>
+    
+    
+    <!-- Migrate page -->
+    <page id="migrate" style="$theme$/html/migrate.css" alt-style="$theme$/swt/migrate.properties" style-id="page">
+		<anchor id="head-anchor"/>    
+        <title style-id="intro-header">$introTitle$</title> 
+        <group id="extra-group1" filteredFrom="swt"/>
+        <group id="navigation-links" filteredFrom="swt">
+            <group id="page-links" computed="true">
+            </group>
+            <group id="action-links">
+                <link url="http://org.eclipse.ui.intro/switchToLaunchBar" label="Workbench" id="workbench" style-id="$high-contrast$">
+                    <text>Go to the workbench</text>
+                </link>
+            </group>
+        </group>
+        <group id="page-content">
+            <group id="content-header" label="Migrate" filteredFrom="swt">
+            </group>
+            <text style-id="page-title" id="page-title" filteredFrom="html">Migrate</text>
+            <text style-id="page-description" id="page-description">$introDescription-migrate$</text>			
+ 			<group id="top-left" computed="true"/>
+			<group id="top-right" computed="true"/>
+			<group id="content-divider" filteredFrom="swt"/>			
+			<group id="bottom-left" computed="true"/>
+			<group id="bottom-right" computed="true"/>
+        </group>
+		<group id="extra-group2" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group3" filteredFrom="swt"><anchor id="anchor"/></group>
+		<group id="extra-group4" filteredFrom="swt"><anchor id="anchor"/></group>		
+    </page>
+</introContent>
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/plugin.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/plugin.properties
new file mode 100644
index 0000000..c4efcb7
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/plugin.properties
@@ -0,0 +1,21 @@
+###############################################################################
+#  Copyright (c) 2000, 2009 IBM Corporation and others.
+#  All rights reserved. This program and the accompanying materials
+#  are made available under the terms of the Eclipse Public License v1.0
+#  which accompanies this distribution, and is available at
+#  http://www.eclipse.org/legal/epl-v10.html
+# 
+#  Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+# ==============================================
+# Universal Welcome plugin.xml properties file
+# ==============================================
+
+plugin_name = Universal Welcome
+provider_name = Eclipse.org
+
+theme.name.circles = Circles
+theme.name.purpleMesh = Purple Mesh (Classic Eclipse)
+theme.name.slate = Slate
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/plugin.xml b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/plugin.xml
new file mode 100644
index 0000000..e9f8e1d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/plugin.xml
@@ -0,0 +1,247 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.0"?>
+<!--
+    Copyright (c) 2005, 2010 IBM Corporation and others.
+    All rights reserved. This program and the accompanying materials
+    are made available under the terms of the Eclipse Public License v1.0
+    which accompanies this distribution, and is available at
+    http://www.eclipse.org/legal/epl-v10.html
+   
+    Contributors:
+         IBM Corporation - initial API and implementation
+ -->
+
+<plugin>
+
+    
+<!-- ========== Extension Points ================= -->
+<!-- =============================================================================== -->
+<!-- Extension point: org.eclipse.ui.intro.config                                    -->
+<!-- Extension-point for contributing a configuration to a Customizable Intro Part.  -->
+<!--                                                                                 -->
+<!-- =============================================================================== -->
+<!-- ================================================================================= -->
+<!-- Extension point: org.eclipse.ui.intro.configExtension                             -->
+<!-- Extension-point for contributing an extension to an existing intro configuration  -->
+<!--                                                                                   -->
+<!-- ================================================================================= -->
+   
+   <extension
+         point="org.eclipse.ui.intro">
+      <intro
+            class="org.eclipse.ui.intro.config.CustomizableIntroPart"
+            contentDetector="org.eclipse.ui.internal.intro.universal.contentdetect.ContentDetector"
+            icon="$nl$/icons/welcome16.gif"
+            id="org.eclipse.ui.intro.universal"/>
+   </extension>
+   <extension
+         point="org.eclipse.ui.intro.config">
+      <config
+            configurer="org.eclipse.ui.internal.intro.universal.UniversalIntroConfigurer"
+            content="$nl$/introContent.xml"
+            id="org.eclipse.ui.intro.universalConfig"
+            introId="org.eclipse.ui.intro.universal">
+         <presentation
+               home-page-id="root" standby-page-id="standby">
+            <implementation
+                  style="themes/shared/html/shared.css,$theme$/html/shared.css,$theme$/html/font-$fontStyle$.css,$theme$/html/$direction$.css"
+                  kind="html"
+                  os="win32,linux,macosx,solaris">
+            </implementation>
+            <implementation
+                  kind="swt">
+            </implementation>
+            <launchBar
+               	location="fastview" 
+            	bg="$launchbarBackground$"
+            	computed="true">
+            </launchBar>
+         </presentation>
+      </config>
+   </extension>
+   <extension
+         point="org.eclipse.ui.intro.configExtension">
+      <theme
+            id="org.eclipse.ui.intro.universal.circles"
+            name="%theme.name.circles"
+            path="$nl$/themes/circles"
+            previewImage="$nl$/themes/circles/preview.png"
+            scalable="true">
+            <property name="workbenchAsRootLink"
+            		value="true"/>
+            		<!--
+            <property name="launchbarBackground"
+            		value="#a1c2cb"/>
+            		-->
+            <property name="launchbarOverviewIcon"
+            		  value="$theme$graphics/launchbar/overview16.png"/>
+            <property name="launchbarFirststepsIcon"
+            		  value="$theme$graphics/launchbar/firststeps16.png"/>
+            <property name="launchbarTutorialsIcon"
+            		  value="$theme$graphics/launchbar/tutorials16.png"/>
+            <property name="launchbarSamplesIcon"
+            		  value="$theme$graphics/launchbar/samples16.png"/>
+            <property name="launchbarWhatsnewIcon"
+            		  value="$theme$graphics/launchbar/whatsnew16.png"/>
+            <property name="launchbarMigrateIcon"
+            		  value="$theme$graphics/launchbar/migrate16.png"/>
+            <property name="launchbarWebresourcesIcon"
+            		  value="$theme$graphics/launchbar/webresources16.png"/>
+
+            <property name="highContrast-overview"
+            		  value="$theme$graphics/icons/ctool/overview.png"/>
+            <property name="highContrast-firststeps"
+            		  value="$theme$graphics/icons/ctool/firststeps.png"/>
+            <property name="highContrast-tutorials"
+            		  value="$theme$graphics/icons/ctool/tutorials.png"/>
+            <property name="highContrast-samples"
+            		  value="$theme$graphics/icons/ctool/samples.png"/>
+            <property name="highContrast-whatsnew"
+            		  value="$theme$graphics/icons/ctool/whatsnew.png"/>
+            <property name="highContrast-webresources"
+            		  value="$theme$graphics/icons/ctool/webresources.png"/>
+            <property name="highContrast-migrate"
+            		  value="$theme$graphics/icons/ctool/migrate.png"/>    
+            <property name="highContrast-workbench"
+            		  value="$theme$graphics/icons/ctool/workbench.png"/>    
+            		  
+            <property name="highContrastNav-overview"
+            		  value="$theme$graphics/icons/ctool/ov_nav.png"/>
+            <property name="highContrastNav-firststeps"
+            		  value="$theme$graphics/icons/ctool/fs_nav.png"/>
+            <property name="highContrastNav-tutorials"
+            		  value="$theme$graphics/icons/ctool/tu_nav.png"/>
+            <property name="highContrastNav-samples"
+            		  value="$theme$graphics/icons/ctool/sa_nav.png"/>
+            <property name="highContrastNav-whatsnew"
+            		  value="$theme$graphics/icons/ctool/wn_nav.png"/>
+            <property name="highContrastNav-webresources"
+            		  value="$theme$graphics/icons/ctool/wr_nav.png"/>
+            <property name="highContrastNav-migrate"
+            		  value="$theme$graphics/icons/ctool/mi_nav.png"/> 
+            <property name="highContrastNav-workbench"
+            		  value="$theme$graphics/icons/ctool/wb_nav.png"/>
+      </theme>
+      <theme
+            id="org.eclipse.ui.intro.universal.purpleMesh"
+            name="%theme.name.purpleMesh"
+            path="$nl$/themes/purpleMesh"
+            previewImage="$nl$/themes/purpleMesh/preview.png"
+            scalable="true">
+            <property name="launchbarBackground"
+            		value="#c6c3e8"/>
+            <property name="capitalizeTitles"
+            		value="true"/>
+            <property name="launchbarOverviewIcon"
+            		  value="$theme$graphics/launchbar/overview.gif"/>
+            <property name="launchbarFirststepsIcon"
+            		  value="$theme$graphics/launchbar/firststeps16.png"/>
+            <property name="launchbarTutorialsIcon"
+            		  value="$theme$graphics/launchbar/tutorials.gif"/>
+            <property name="launchbarSamplesIcon"
+            		  value="$theme$graphics/launchbar/samples.gif"/>
+            <property name="launchbarWhatsnewIcon"
+            		  value="$theme$graphics/launchbar/whatsnew.gif"/>
+            <property name="launchbarMigrateIcon"
+            		  value="$theme$graphics/launchbar/migrate16.png"/>
+            <property name="launchbarWebresourcesIcon"
+            		  value="$theme$graphics/launchbar/webresources16.png"/>
+            		  
+            <property name="highContrast-overview"
+            		  value="$theme$graphics/icons/etool/overview72.gif"/>
+            <property name="highContrast-firststeps"
+            		  value="$theme$graphics/icons/etool/firsteps72.gif"/>
+            <property name="highContrast-tutorials"
+            		  value="$theme$graphics/icons/etool/tutorials72.gif"/>
+            <property name="highContrast-samples"
+            		  value="$theme$graphics/icons/etool/samples72.gif"/>
+            <property name="highContrast-whatsnew"
+            		  value="$theme$graphics/icons/etool/whatsnew72.gif"/>
+            <property name="highContrast-webresources"
+            		  value="$theme$graphics/icons/etool/webrsrc72.gif"/>
+            <property name="highContrast-migrate"
+            		  value="$theme$graphics/icons/etool/migrate72.gif"/>
+            <property name="highContrast-workbench"
+            		  value="$theme$graphics/icons/etool/wb48.gif"/> 
+            		     
+            <property name="highContrastNav-overview"
+            		  value="$theme$graphics/icons/etool/overview48.gif"/>
+            <property name="highContrastNav-firststeps"
+            		  value="$theme$graphics/icons/etool/firsteps48.gif"/>
+            <property name="highContrastNav-tutorials"
+            		  value="$theme$graphics/icons/etool/tutorials48.gif"/>
+            <property name="highContrastNav-samples"
+            		  value="$theme$graphics/icons/etool/samples48.gif"/>
+            <property name="highContrastNav-whatsnew"
+            		  value="$theme$graphics/icons/etool/whatsnew48.gif"/>
+            <property name="highContrastNav-webresources"
+            		  value="$theme$graphics/icons/etool/webrsrc48.gif"/>
+            <property name="highContrastNav-migrate"
+            		  value="$theme$graphics/icons/etool/migrate48.gif"/> 
+            <property name="highContrastNav-workbench"
+            		  value="$theme$graphics/icons/etool/wb48.gif"/>       
+      </theme> 
+      <theme
+            default="true"
+            id="org.eclipse.ui.intro.universal.slate"
+            name="%theme.name.slate"
+            path="$nl$/themes/slate"
+            previewImage="$nl$/themes/slate/preview.png"
+            scalable="true">
+            <property name="workbenchAsRootLink"
+            		value="true"/>
+            		<!--
+            <property name="launchbarBackground"
+            		value="#a1c2cb"/>
+            		-->
+            <property name="launchbarOverviewIcon"
+            		  value="$theme$graphics/launchbar/overview16.png"/>
+            <property name="launchbarFirststepsIcon"
+            		  value="$theme$graphics/launchbar/firststeps16.png"/>
+            <property name="launchbarTutorialsIcon"
+            		  value="$theme$graphics/launchbar/tutorials16.png"/>
+            <property name="launchbarSamplesIcon"
+            		  value="$theme$graphics/launchbar/samples16.png"/>
+            <property name="launchbarWhatsnewIcon"
+            		  value="$theme$graphics/launchbar/whatsnew16.png"/>
+            <property name="launchbarMigrateIcon"
+            		  value="$theme$graphics/launchbar/migrate16.png"/>
+            <property name="launchbarWebresourcesIcon"
+            		  value="$theme$graphics/launchbar/webresources16.png"/>
+
+            <property name="highContrast-overview"
+            		  value="$theme$graphics/icons/ctool/overview.png"/>
+            <property name="highContrast-firststeps"
+            		  value="$theme$graphics/icons/ctool/firststeps.png"/>
+            <property name="highContrast-tutorials"
+            		  value="$theme$graphics/icons/ctool/tutorials.png"/>
+            <property name="highContrast-samples"
+            		  value="$theme$graphics/icons/ctool/samples.png"/>
+            <property name="highContrast-whatsnew"
+            		  value="$theme$graphics/icons/ctool/whatsnew.png"/>
+            <property name="highContrast-webresources"
+            		  value="$theme$graphics/icons/ctool/webresources.png"/>
+            <property name="highContrast-migrate"
+            		  value="$theme$graphics/icons/ctool/migrate.png"/>    
+            <property name="highContrast-workbench"
+            		  value="$theme$graphics/icons/ctool/workbench.png"/>    
+            		  
+            <property name="highContrastNav-overview"
+            		  value="$theme$graphics/icons/ctool/ov_nav.png"/>
+            <property name="highContrastNav-firststeps"
+            		  value="$theme$graphics/icons/ctool/fs_nav.png"/>
+            <property name="highContrastNav-tutorials"
+            		  value="$theme$graphics/icons/ctool/tu_nav.png"/>
+            <property name="highContrastNav-samples"
+            		  value="$theme$graphics/icons/ctool/sa_nav.png"/>
+            <property name="highContrastNav-whatsnew"
+            		  value="$theme$graphics/icons/ctool/wn_nav.png"/>
+            <property name="highContrastNav-webresources"
+            		  value="$theme$graphics/icons/ctool/wr_nav.png"/>
+            <property name="highContrastNav-migrate"
+            		  value="$theme$graphics/icons/ctool/mi_nav.png"/> 
+            <property name="highContrastNav-workbench"
+            		  value="$theme$graphics/icons/ctool/wb_nav.png"/>
+      </theme>
+   </extension>
+</plugin>
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/fs_banner.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/fs_banner.jpg
new file mode 100644
index 0000000..5b6c738
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/fs_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/mi_banner.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/mi_banner.jpg
new file mode 100644
index 0000000..5fb63c5
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/mi_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/ov_banner.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/ov_banner.jpg
new file mode 100644
index 0000000..9b963cb
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/ov_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/sa_banner.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/sa_banner.jpg
new file mode 100644
index 0000000..3eff0a5
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/sa_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/tu_banner.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/tu_banner.jpg
new file mode 100644
index 0000000..cc6bae7
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/tu_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/wn_banner.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/wn_banner.jpg
new file mode 100644
index 0000000..ab13b22
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/wn_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/wr_banner.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/wr_banner.jpg
new file mode 100644
index 0000000..de17898
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/wr_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/arrow_rtl.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/arrow_rtl.gif
new file mode 100644
index 0000000..d7bb424
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/arrow_rtl.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/content_nav_bar.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/content_nav_bar.gif
new file mode 100644
index 0000000..86ebb16
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/content_nav_bar.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/cpt_bottomhov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/cpt_bottomhov.gif
new file mode 100644
index 0000000..13df2dc
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/cpt_bottomhov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/cpt_midhov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/cpt_midhov.gif
new file mode 100644
index 0000000..1467458
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/cpt_midhov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps.gif
new file mode 100644
index 0000000..f6dd773
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps.png
new file mode 100644
index 0000000..eccc757
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps_tophov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps_tophov.gif
new file mode 100644
index 0000000..9745892
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps_tophov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav.png
new file mode 100644
index 0000000..99eb592
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_32.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_32.gif
new file mode 100644
index 0000000..84885b5
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_64.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_64.gif
new file mode 100644
index 0000000..c410b0d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_64.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_hover.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_hover.gif
new file mode 100644
index 0000000..182ed76
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_hover.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav.png
new file mode 100644
index 0000000..5434708
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_32.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_32.gif
new file mode 100644
index 0000000..d49d950
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_64.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_64.gif
new file mode 100644
index 0000000..9bf4493
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_64.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_hover.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_hover.gif
new file mode 100644
index 0000000..257fd4b
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_hover.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate.gif
new file mode 100644
index 0000000..f082b35
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate.png
new file mode 100644
index 0000000..07fea1d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate_tophov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate_tophov.gif
new file mode 100644
index 0000000..5c95055
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate_tophov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/nav_midhov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/nav_midhov.gif
new file mode 100644
index 0000000..d2a082f
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/nav_midhov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/nav_rightedgehov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/nav_rightedgehov.gif
new file mode 100644
index 0000000..2f53c5c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/nav_rightedgehov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav.png
new file mode 100644
index 0000000..709f69a
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_32.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_32.gif
new file mode 100644
index 0000000..2ff3933
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_64.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_64.gif
new file mode 100644
index 0000000..7198903
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_64.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_hover.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_hover.gif
new file mode 100644
index 0000000..72dc200
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_hover.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_midhov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_midhov.gif
new file mode 100644
index 0000000..85e8183
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_midhov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_rightedgehov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_rightedgehov.gif
new file mode 100644
index 0000000..5d75a71
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_rightedgehov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview.gif
new file mode 100644
index 0000000..daed6c0
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview.png
new file mode 100644
index 0000000..a60034c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_bottomhov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_bottomhov.gif
new file mode 100644
index 0000000..255e924
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_bottomhov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_midhov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_midhov.gif
new file mode 100644
index 0000000..710d015
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_midhov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_tophov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_tophov.gif
new file mode 100644
index 0000000..af9144a
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_tophov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_bottomhov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_bottomhov.gif
new file mode 100644
index 0000000..cea4511
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_bottomhov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_midhov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_midhov.gif
new file mode 100644
index 0000000..30288f9
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_midhov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_midhov2.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_midhov2.gif
new file mode 100644
index 0000000..83f17fc
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_midhov2.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav.png
new file mode 100644
index 0000000..9871b72
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_32.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_32.gif
new file mode 100644
index 0000000..ffbe90e
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_64.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_64.gif
new file mode 100644
index 0000000..db4ffac
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_64.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_hover.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_hover.gif
new file mode 100644
index 0000000..6922f96
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_hover.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_onesample48.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_onesample48.gif
new file mode 100644
index 0000000..e65c123
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_onesample48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples.gif
new file mode 100644
index 0000000..622983c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples.png
new file mode 100644
index 0000000..cb3db1d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples_tophov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples_tophov.gif
new file mode 100644
index 0000000..ede103c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples_tophov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav.png
new file mode 100644
index 0000000..ce589ab
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_32.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_32.gif
new file mode 100644
index 0000000..77a3421
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_64.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_64.gif
new file mode 100644
index 0000000..45d2ff1
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_64.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_hover.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_hover.gif
new file mode 100644
index 0000000..c3e79ab
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_hover.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials.gif
new file mode 100644
index 0000000..aae93e5
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials.png
new file mode 100644
index 0000000..e40a823
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials_tophov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials_tophov.gif
new file mode 100644
index 0000000..dcb76e5
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials_tophov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav.png
new file mode 100644
index 0000000..0621c3c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav_32.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav_32.gif
new file mode 100644
index 0000000..8161cfc
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav_hover.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav_hover.gif
new file mode 100644
index 0000000..96afba7
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav_hover.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources.gif
new file mode 100644
index 0000000..230a502
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources.png
new file mode 100644
index 0000000..1a876dc
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources_tophov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources_tophov.gif
new file mode 100644
index 0000000..ea8713c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources_tophov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew.gif
new file mode 100644
index 0000000..29dfe28
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew.png
new file mode 100644
index 0000000..a10dd3d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew_tophov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew_tophov.gif
new file mode 100644
index 0000000..bfd58dc
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew_tophov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav.png
new file mode 100644
index 0000000..47ecb7c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_32.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_32.gif
new file mode 100644
index 0000000..ce9c743
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_64.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_64.gif
new file mode 100644
index 0000000..6a545cc
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_64.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_hover.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_hover.gif
new file mode 100644
index 0000000..a2eb9a2
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_hover.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench.gif
new file mode 100644
index 0000000..ea3d603
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench.png
new file mode 100644
index 0000000..868f3ab
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_bottomhov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_bottomhov.gif
new file mode 100644
index 0000000..d347a1d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_bottomhov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_midhov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_midhov.gif
new file mode 100644
index 0000000..ee5d6af
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_midhov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_tophov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_tophov.gif
new file mode 100644
index 0000000..443a433
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_tophov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav.png
new file mode 100644
index 0000000..00d3056
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_32.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_32.gif
new file mode 100644
index 0000000..a741e2f
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_64.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_64.gif
new file mode 100644
index 0000000..fab4a28
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_64.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_hover.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_hover.gif
new file mode 100644
index 0000000..7908508
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_hover.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/obj48/new_obj.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/obj48/new_obj.gif
new file mode 100644
index 0000000..f46b81b
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/obj48/new_obj.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/obj48/newhov_obj.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/obj48/newhov_obj.gif
new file mode 100644
index 0000000..593e63b
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/obj48/newhov_obj.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/firststeps16.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/firststeps16.png
new file mode 100644
index 0000000..4c15c82
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/firststeps16.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/migrate16.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/migrate16.png
new file mode 100644
index 0000000..3fc8414
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/migrate16.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/overview16.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/overview16.png
new file mode 100644
index 0000000..b2e977f
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/overview16.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/samples16.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/samples16.png
new file mode 100644
index 0000000..fdff5dd
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/samples16.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/tutorials16.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/tutorials16.png
new file mode 100644
index 0000000..f2d688f
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/tutorials16.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/webresources16.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/webresources16.png
new file mode 100644
index 0000000..b847caa
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/webresources16.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/whatsnew16.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/whatsnew16.png
new file mode 100644
index 0000000..5294b17
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/whatsnew16.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/rootpage/welcomebckgrd.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/rootpage/welcomebckgrd.jpg
new file mode 100644
index 0000000..12a3c94
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/rootpage/welcomebckgrd.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/fs_standby.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/fs_standby.gif
new file mode 100644
index 0000000..aac6d6b
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/fs_standby.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/fs_standbyhov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/fs_standbyhov.gif
new file mode 100644
index 0000000..eded4ff
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/fs_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/mi_standby.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/mi_standby.gif
new file mode 100644
index 0000000..34b8963
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/mi_standby.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/mi_standbyhov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/mi_standbyhov.gif
new file mode 100644
index 0000000..08c4479
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/mi_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/ov_standby.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/ov_standby.gif
new file mode 100644
index 0000000..bfcf7b2
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/ov_standby.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/ov_standbyhov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/ov_standbyhov.gif
new file mode 100644
index 0000000..11e7892
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/ov_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/sa_standby.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/sa_standby.gif
new file mode 100644
index 0000000..a18a047
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/sa_standby.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/sa_standbyhov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/sa_standbyhov.gif
new file mode 100644
index 0000000..2063d8a
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/sa_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/tu_standby.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/tu_standby.gif
new file mode 100644
index 0000000..75baabf
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/tu_standby.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/tu_standbyhov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/tu_standbyhov.gif
new file mode 100644
index 0000000..82b758f
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/tu_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wb_standby.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wb_standby.gif
new file mode 100644
index 0000000..5037784
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wb_standby.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wb_standbyhov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wb_standbyhov.gif
new file mode 100644
index 0000000..d3be575
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wb_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wn_standby.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wn_standby.gif
new file mode 100644
index 0000000..77c7912
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wn_standby.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wn_standbyhov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wn_standbyhov.gif
new file mode 100644
index 0000000..2867f15
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wn_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wr_standby.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wr_standby.gif
new file mode 100644
index 0000000..cb4fa47
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wr_standby.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wr_standbyhov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wr_standbyhov.gif
new file mode 100644
index 0000000..00b4231
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wr_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/firststeps.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/firststeps.css
new file mode 100644
index 0000000..15f2dfc
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/firststeps.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#firststeps img, 
+#navigation-links a#firststeps:hover img,
+#navigation-links a#firststeps:focus img,
+#navigation-links a#firststeps:active img {
+	background-image : url(../graphics/icons/ctool/fs_nav_64.gif); 
+	top : 2px;
+	left : -3px;
+}
+
+#navigation-links {
+	background-image: url(../graphics/contentpage/fs_banner.jpg);
+}
+
+#navigation-links a:hover#firststeps .link-label,
+#navigation-links a:focus#firststeps .link-label,
+#navigation-links a:active#firststeps .link-label {
+	display : none;
+}
+
+#navigation-links a:hover#firststeps,
+#navigation-links a:focus#firststeps,
+#navigation-links a:active#firststeps {
+	background-image : none;
+}
+
+#navigation-links a:hover#firststeps .link-extra-div,
+#navigation-links a:focus#firststeps .link-extra-div,
+#navigation-links a:active#firststeps .link-extra-div {
+	display: none;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/font-absolute.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/font-absolute.css
new file mode 100644
index 0000000..e610e26
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/font-absolute.css
@@ -0,0 +1,118 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+	font-size : 10pt;
+}
+
+/*
+ * We are not using titles in this theme.
+ */
+.intro-header {
+	display : none;
+}
+
+h2 {
+	font-size : 13pt;
+}
+
+/* For regular div labels */
+H4 .div-label {
+	font-size: 10pt; 
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+	font-size: 23pt; 
+}
+
+
+/* Page description if the page has it. */
+.page-description {
+	font-size: 10pt; 
+}
+
+/* General link labels */
+a .link-label {
+	font-size : 10pt;
+}
+
+/* Floating link labels for navigation links */
+#navigation-links a .link-label {
+	font-size : 8pt;
+}
+
+/* Text in links. */
+a .text {
+	font-size : 8pt;
+}
+
+p .group-description {
+	font-size : 10pt;
+}
+
+.content-link .link-label {
+	font-size: 11pt; 
+}
+
+.content-link .text {
+	font-size: 10pt;
+}
+
+.categoryContentnav {
+	font-size:10pt; 
+}
+
+.contentpgNavhover {
+	font-size: 8pt; 
+}
+
+.topicList {
+	font-size:8pt; 
+}
+
+/* 
+ * Root page settings
+ */
+#root .intro-header H1 {
+	font-size : 18pt;
+}
+
+/* Link label properties */
+#root #page-links a .link-label {
+	font-size : 12.5pt;
+}
+
+/* Link description properties */
+#root #page-links a p .text {
+	font-size : 11pt;
+}
+
+#root #page-links a:hover .link-extra-div {
+	font-size : 13pt;
+}
+
+/*
+ * Standby page settings
+ */
+
+#standby .intro-header H1 {
+	font-size : 15pt;
+}
+
+#standby #page-links a .link-label, #action-links a .link-label {
+	font-size : 10pt;
+}
+
+#standby #page-links a p .text, #action-links a p .text {
+	font-size : 10pt;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/font-relative.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/font-relative.css
new file mode 100644
index 0000000..af2383e
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/font-relative.css
@@ -0,0 +1,126 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * Font sizes for the circles theme
+ */
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+	font-size : 100%;
+}
+
+h2 {
+	font-size : 120%;
+}
+
+/* For regular div labels */
+H4 .div-label {
+	font-size: 120%; 
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+	font-size: 240%; 
+}
+
+
+/* Page description if the page has it. */
+.page-description {
+	font-size: 100%; 
+}
+
+/* General link labels */
+a .link-label {
+	//font-size : 10pt;
+}
+
+/* Floating link labels for navigation links */
+#navigation-links a .link-label {
+	font-size : 8pt;
+}
+
+/* Text in links. */
+a .text {
+	font-size : 90%;
+}
+
+p .group-description {
+	font-size : 100%;
+}
+
+.content-link .link-label {
+	font-size: 120%; 
+}
+
+.content-link .text {
+	font-size: 100%;
+}
+
+.categoryContentnav {
+	//font-size:10pt; 
+}
+
+.contentpgNavhover {
+	font-size: 8pt; 
+}
+
+.topicList, .rss-feed-link {
+	font-size:90%; 
+}
+
+/* Link label properties */
+#root #page-links a .link-label {
+	font-size : 110%;
+}
+
+#root #page-links a:active .link-label,
+#root #page-links a:focus .link-label,
+#root #page-links a:hover .link-label {
+	font-size : 12.5pt;
+}
+
+/* Link description properties */
+#root #page-links a p .text {
+	font-size : 11pt;
+}
+
+#root #page-links a:hover .link-extra-div {
+	font-size : 13pt;
+}
+
+#root .intro-header {
+    display : inline;
+}
+
+#root .intro-header h1  {
+    color : white;
+    //padding-top : 10px;
+    margin-top : 10px;
+    margin-left : 20px;
+    font-size : 150%;
+}
+
+/*
+ * Standby page settings
+ */
+
+#standby .intro-header H1 {
+	font-size : 150%;
+}
+
+#standby #page-links a .link-label, #standby #action-links a .link-label {
+	font-size : 100%;
+}
+
+#standby #page-links a p .text, #standby #action-links a p .text {
+	font-size : 100%;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/ltr.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/ltr.css
new file mode 100644
index 0000000..57586c8
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/ltr.css
@@ -0,0 +1,19 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* 
+ * This file contains styles that are specific to left to right display
+ */
+ 
+body {
+    direction: ltr;
+}
+ 
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/migrate.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/migrate.css
new file mode 100644
index 0000000..cd34954
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/migrate.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#migrate img, 
+#navigation-links a#migrate:hover img,
+#navigation-links a#migrate:focus img,
+#navigation-links a#migrate:active img {
+	background-image : url(../graphics/icons/ctool/mi_nav_64.gif); 
+	top : 2px;
+	left : -3px;
+}
+
+#navigation-links {
+	background-image: url(../graphics/contentpage/mi_banner.jpg);
+}
+
+#navigation-links a:hover#migrate .link-label,
+#navigation-links a:focus#migrate .link-label,
+#navigation-links a:active#migrate .link-label {
+	display : none;
+}
+
+#navigation-links a:hover#migrate,
+#navigation-links a:focus#migrate,
+#navigation-links a:active#migrate {
+	background-image : none;
+}
+
+#navigation-links a:hover#migrate .link-extra-div,
+#navigation-links a:focus#migrate .link-extra-div,
+#navigation-links a:active#migrate .link-extra-div {
+	background-image : none;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/overview.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/overview.css
new file mode 100644
index 0000000..7bc18ce
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/overview.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#overview img, 
+#navigation-links a#overview:hover img,
+#navigation-links a#overview:focus img,
+#navigation-links a#overview:active img {
+	background-image : url(../graphics/icons/ctool/ov_nav_64.gif);
+	top : 2px; 
+	left : -3px;
+}
+
+#navigation-links {
+	background-image: url(../graphics/contentpage/ov_banner.jpg);
+}
+
+#navigation-links a:hover#overview .link-label,
+#navigation-links a:focus#overview .link-label,
+#navigation-links a:active#overview .link-label {
+	display : none;
+}
+
+#navigation-links a:hover#overview,
+#navigation-links a:focus#overview,
+#navigation-links a:active#overview {
+	background-image : none;
+}
+
+#navigation-links a:hover#overview .link-extra-div,
+#navigation-links a:focus#overview .link-extra-div,
+#navigation-links a:active#overview .link-extra-div {
+	display: none;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/root.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/root.css
new file mode 100644
index 0000000..8697080
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/root.css
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/rtl.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/rtl.css
new file mode 100644
index 0000000..b444c37
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/rtl.css
@@ -0,0 +1,83 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* 
+ * This file contains styles that are specific to right to left display
+ */
+
+
+table {
+    direction: rtl;
+}
+
+#page-content p { 
+	text-align : right; 
+}
+
+#page-content #content-header H4, .page-description {
+	text-align : right;
+}
+
+#page-content table tr td a > .link-label {
+    left:0px;
+}
+
+#page-content * td a .link-label { 
+    display:block;
+    left:0px;
+    margin-right:0px;
+    position:static;
+    top:0px;
+}
+
+#page-content * td a  .text { 
+    display:block;
+    left:0px;
+    margin-right:0px;
+    position:static;
+    top:0px;
+}
+
+.content-group {
+	text-align: right;
+}
+
+.intro-header span {
+    margin-right : 45px;
+    padding-right : 45px;
+}
+
+div div#rss-news {  
+   position:static;
+   margin-left:0px;
+   margin-bottom: 0px;
+   margin-top: 10px;
+   top : 0px;
+   margin-right : 30px;
+}
+
+div ul.news-list {
+	list-style-image: url("../graphics/icons/ctool/arrow_rtl.gif");
+	margin-left: 0px;
+	padding-right: 10px;
+	margin-right: 10px;
+}
+
+/* The 'closed' toggle image part of the folding section. */
+#page-content .section-title-link .section-toggle-image-closed {
+	background-image : url(../graphics/icons/ctool/widget_closed_rtl.gif);
+}
+
+#page-content .section-title-link:hover .section-toggle-image-closed,
+#page-content .section-title-link:active .section-toggle-image-closed {
+	background-image : url(../graphics/icons/ctool/widget_closed_hov_rtl.gif);
+}
+
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/samples.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/samples.css
new file mode 100644
index 0000000..5437466
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/samples.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#samples img, 
+#navigation-links a#samples:hover img,
+#navigation-links a#samples:focus img,
+#navigation-links a#samples:active img {
+	background-image : url(../graphics/icons/ctool/sa_nav_64.gif); 
+	top : 2px; 
+	left : -3px;
+}
+
+#navigation-links {
+	background-image: url(../graphics/contentpage/sa_banner.jpg);
+}
+
+#navigation-links a:hover#samples .link-label,
+#navigation-links a:focus#samples .link-label,
+#navigation-links a:active#samples .link-label {
+	display : none;
+}
+
+#navigation-links a:hover#samples,
+#navigation-links a:focus#samples,
+#navigation-links a:active#samples {
+	background-image : none;
+}
+
+#navigation-links a:hover#samples .link-extra-div,
+#navigation-links a:focus#samples .link-extra-div,
+#navigation-links a:active#samples .link-extra-div {
+	background-image : none;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/shared.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/shared.css
new file mode 100644
index 0000000..fbaf550
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/shared.css
@@ -0,0 +1,647 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* 
+ * Set up general fonts, sizes and colors 
+ */
+body { font-family : Arial, sans-serif; }
+
+H1, H2, H3, H4, p, a { color : #4D4D4D; }
+
+/*
+ * We are not using titles in this theme.
+ */
+.intro-header {
+	display : none;
+}
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+	display : inline;
+}
+
+h2 {
+	font-weight : normal;
+	color : #7B8694;
+}
+
+/* For regular div labels */
+H4 .div-label {
+	font-family: Verdana, Arial, Helvetica; 
+	font-weight: bold; 
+	color: #4A4D4A; 
+	line-height:1.3;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+	font-family: Verdana, Arial, Helvetica;
+	color:#333333; 
+	font-weight: normal; 
+	letter-spacing:-0.03em;
+	margin-left: 68px;
+	float : none;
+	clear : both;
+}
+
+/* For separators */
+HR {
+	width: 90%;
+	align: left;
+	height : 1px;
+	color :  #dfdfe4;
+}
+
+/* Page description if the page has it. */
+.page-description {
+	display: block;
+	font-family: Verdana, Arial, Helvetica; 
+	line-height:1.3;
+	float : none;
+	clear : both;
+	margin-left: 70px;
+}
+
+a {
+	font-weight : bold;
+	text-decoration : none;
+	color : #4D4D4D;
+}
+
+/* General link labels */
+a .link-label {
+	font-weight : normal;
+}
+
+/* Floating link labels for navigation links */
+#navigation-links a .link-label {
+	font-weight : bold;
+}
+
+#navigation-links a.high-contrast .link-label {
+	display : none !important;
+}
+
+/* Text in links. */
+a .text {
+	font-weight : normal;
+}
+
+p .group-description {
+	font-family: Verdana, Arial, Helvetica; 
+	font-weight : normal;
+}
+
+/* Hide the extra div in links by default. */
+.link-extra-div {
+	display : none;
+}
+
+/* 
+ * Set up other general properties like padding/margins
+ */
+html, body { width : 100%; height : 100%; }
+
+html, body, div, h1, h4, p, a { margin : 0px; padding : 0px; }
+
+/* 
+ * Page header - adding extra padding at the bottom to compensate
+ * for navigation background/header overlap.
+ */
+#page-content #content-header {
+	padding-bottom : 22px;
+}
+
+/* For regular div labels */
+#page-content div H4 {
+	padding : 10px;
+	padding-bottom : 0px;
+}
+
+/* For the main page content's div label */
+#page-content #content-header H4 {
+	padding-bottom : 10px;
+	padding-top : 0px;
+}
+
+/* special case for Mozilla's main content-header label.
+   Mozilla 1.4 needs more room at the top */
+#page-content > #content-header H4 { padding-top : 10px; }
+
+/* Needed in IE to get shift+tab to show the active image properly */
+a:active {
+	border : solid 0px;
+}
+
+a img {
+	border-width : 0;
+	background-repeat : no-repeat;
+}
+
+/*
+ * to get scrollbars working in both IE and Mozilla
+ */
+
+/*
+ * to get scrollbars working in both IE and Mozilla
+ */
+html,body { overflow: auto; }
+html>body { overflow: visible; }
+
+/*
+ * Set up the body, decorative background, and navigation for the content 
+ * pages. 
+ * Note: the root page handles its own background and navigation; these
+ * settings primarily apply to the content pages
+ */
+body {
+	background-color : #FFFFFF;
+	background-repeat : no-repeat;
+	background-position : bottom right;
+}
+
+/*
+ * Hide the general-purpose groups - not using them in this theme.
+ */
+#extra-group1,
+#extra-group2,
+#extra-group3,
+#extra-group4,
+#extra-group5 {
+	display : none;
+}
+
+/*
+ * Dimensions.
+ */
+body, .page {
+	/* since IE doesn't support min-width, try expression */
+	height : 100%;
+}
+
+.page {
+	background-image : url(../graphics/contentpage/background.jpg);
+	background-repeat : repeat-x;
+	background-position : top left;
+	
+	min-width : 770px;
+	width:expression(document.body.clientWidth < 770? "770px": "auto" );
+    min-height : 425px;
+	height : expression(document.body.clientHeight < 425? "425px": "100%" );
+}
+
+#page-content {
+	background-repeat : no-repeat;
+	background-position : bottom right;
+	height : 65%;
+}
+
+/* 
+ * Lay out the navigation links 
+ * (Root page does something similar for its navigation)
+ */
+#navigation-links {
+	position : relative;
+	left : 0px;
+	top : 0px;
+	padding-left: 12px;
+	height : 118px;
+	width : 100%;
+}
+
+.page > #navigation-links {
+	width: 98.1%;
+}
+
+#navigation-links a {
+	text-align : left;
+	width : auto;
+	height : 64px;
+}
+
+/*
+ * Navigation links have a mixin style 'nav_link<n>' where <n> goes from
+ * 1 to N. This allows us to position these fixed link slots while
+ * not hand-coding the actual link IDs because they can be turned off
+ * by users or products via preferences.
+ */
+
+#navigation-links a.nav_link1 {
+	position: absolute;
+	left : 12px;
+}
+
+#navigation-links a.nav_link2 {
+	position : absolute;
+	left : 76px;
+}
+
+#navigation-links a.nav_link3 {
+	position : absolute;
+	left : 140px;
+}
+
+#navigation-links a.nav_link4 {
+	position : absolute;
+	left : 204px;
+}
+
+#navigation-links a.nav_link5 {
+	position : absolute;
+	left : 268px;
+}
+
+#navigation-links a.nav_link6 {
+	position : absolute;
+	left : 332px;
+}
+
+#navigation-links a.nav_link7 {
+	position: absolute;
+	left : 396px;
+}
+
+#navigation-links a img {
+	position : relative;
+	height : 64px;
+	width : 64px;
+	vertical-align : center;
+	horizontal-align : center;
+	top : 10px;
+	left : 9px;
+}
+
+#navigation-links a.high-contrast img {
+	height: 32px;
+	width: 32px;
+	top: 5px !important;
+	left: 0px !important;
+}
+
+/*
+ * Adjust image position for hover version.
+ */
+
+#navigation-links a:hover img,
+#navigation-links a:focus img,
+#navigation-links a:active img {
+	top : 2px;
+	left : 0px;
+}
+
+/*
+ * Navigation link label text is normally hidden. Workaround to produce the
+ * same effect as display: none while still allowing screenreaders to
+ * speak it.
+ */
+#navigation-links a .link-label { 
+    display : none;
+}
+
+/*
+ * Not showing description for navigation links.
+ */
+#navigation-links a .text { display : none; }
+
+#navigation-links a:hover,
+#navigation-links a:focus,
+#navigation-links a:active {
+	border-right : 0px;
+	background-image: url(../graphics/icons/ctool/nav_midhov.gif);
+	background-repeat: repeat-x;
+	background-position: 0px 2px;
+	z-index: 20;
+}
+
+#navigation-links a:hover .link-label,
+#navigation-links a:focus .link-label,
+#navigation-links a:active .link-label {
+	display : inline;
+	clear : both;
+	float : left;
+	text-align: right;
+	position : relative;
+	padding-left: 7px;
+	padding-top: 7px;
+	padding-right: 7px;
+	margin-right: auto;
+	top : -35px;
+	white-space: nowrap;
+	height : 32px;
+	left: auto;
+	width: auto;
+}
+
+/*
+ * Add the right edge by using the extra div generated for links
+ * and set the right edge image as the background.
+ */
+
+#navigation-links a:hover .link-extra-div,
+#navigation-links a:focus .link-extra-div,
+#navigation-links a:active .link-extra-div {
+	display: block;
+	position: absolute;
+	right : -2px;
+	top : 2px;
+	width : 2px;
+	height : 64px;
+	background-image: url(../graphics/icons/ctool/nav_rightedgehov.gif);
+	background-repeat: no-repeat;
+}
+
+/* properties for each of the navigation-links  */
+#navigation-links a#overview img { 
+	background-image : url(../graphics/icons/ctool/ov_nav_32.gif); 
+}
+#navigation-links a#overview:hover img,
+#navigation-links a#overview:focus img,
+#navigation-links a#overview:active img { 
+	background-image : url(../graphics/icons/ctool/ov_nav_hover.gif); 
+}
+
+#navigation-links a#firststeps img { 
+	background-image : url(../graphics/icons/ctool/fs_nav_32.gif); 
+}
+#navigation-links a#firststeps:hover img,
+#navigation-links a#firststeps:focus img,
+#navigation-links a#firststeps:active img { 
+	background-image : url(../graphics/icons/ctool/fs_nav_hover.gif); }
+
+#navigation-links a#tutorials img { 
+	background-image : url(../graphics/icons/ctool/tu_nav_32.gif); 
+}
+#navigation-links a#tutorials:hover img,
+#navigation-links a#tutorials:active img,
+#navigation-links a#tutorials:focus img { 
+	background-image : url(../graphics/icons/ctool/tu_nav_hover.gif); 
+}
+
+#navigation-links a#samples img { 
+	background-image : url(../graphics/icons/ctool/sa_nav_32.gif); 
+}
+#navigation-links a#samples:hover img,
+#navigation-links a#samples:active img,
+#navigation-links a#samples:focus img { 
+	background-image : url(../graphics/icons/ctool/sa_nav_hover.gif); 	
+	left: -1px;
+}
+
+#navigation-links a#whatsnew img { 
+	background-image : url(../graphics/icons/ctool/wn_nav_32.gif); 
+}
+#navigation-links a#whatsnew:hover img,
+#navigation-links a#whatsnew:focus img,
+#navigation-links a#whatsnew:active img { 
+	background-image : url(../graphics/icons/ctool/wn_nav_hover.gif); 
+	left: -1px;
+}
+
+#navigation-links a#migrate img { 
+	background-image : url(../graphics/icons/ctool/mi_nav_32.gif); 
+}
+#navigation-links a#migrate:hover img,
+#navigation-links a#migrate:focus img,
+#navigation-links a#migrate:active img { 
+	background-image : url(../graphics/icons/ctool/mi_nav_hover.gif); 
+	left: -1px;
+}
+
+#navigation-links a#webresources img { 
+	background-image : url(../graphics/icons/ctool/wr_nav_32.gif); 
+}
+#navigation-links a#webresources:hover img,
+#navigation-links a#webresources:focus img,
+#navigation-links a#webresources:active img { 
+	background-image : url(../graphics/icons/ctool/wr_nav_hover.gif); 
+	left: -1px;
+}
+
+#navigation-links a#workbench {
+	position : absolute;  
+	left : 494px; 
+	text-align : left;
+}
+#navigation-links a#workbench .text { display : none; }
+
+#navigation-links a.high-contrast#workbench:hover img,
+#navigation-links a.high-contrast#workbench:focus img,
+#navigation-links a.high-contrast#workbench:active img,
+#navigation-links a#workbench img { 
+	background-image : url(../graphics/icons/ctool/wb_nav_32.gif); 
+	width : 32px; 
+	height : 32px;
+}
+
+#navigation-links a#workbench:hover img,
+#navigation-links a#workbench:focus img,
+#navigation-links a#workbench:active img { 
+	background-image : url(../graphics/icons/ctool/wb_nav_hover.gif); 
+	width : 51px;
+	height : 64px;
+	left: -1px;
+}
+
+#action-links a.high-contrast img,
+#action-links a.high-contrast:hover img,
+#action-links a.high-contrast:focus img,
+#action-links a.high-contrast:active img {
+	display: none !important;
+}
+
+#action-links a.high-contrast .link-label {
+	display: none;
+}
+
+#page-links a.high-contrast:focus .link-label,
+#page-links a.high-contrast:active .link-label {
+	display: block !important;
+	text-decoration: underline;
+	top : 5px;
+}
+
+/* 
+ * Lay out the page title and description 
+ */
+h1, p { margin-left : 10px; } /* required in mozilla so the page description is properly indented */
+
+/* position the page content so that the page title overlays the bottom
+ * of the background image, but make sure the content is always on top 
+ * (using z-index) */
+
+#page-content {
+	float : none;
+	clear : both;
+	text-align : center;
+	position : relative;
+	top : -50px;
+	margin-bottom: -50px;
+	z-index : 10;
+}
+
+#page-content p { 
+	padding-bottom : 15px; 
+	text-align : left; 
+	float : none;
+	clear : both;
+}
+
+/* Page content quadrants. Page content is placed in four quadrants.
+ * Upper pair is separated from the bottom pair with a divider
+ * to ensure bottom pair is aligned even with the uneven content
+ * in the upper pair.
+ */
+
+#page-content #top-left {
+  border: none; float: left; margin: 0px; padding: 0px; width: 49%;
+  clear: left;
+}
+#page-content #top-right {
+  border: none; float: right; margin: 0px; padding: 0px; width: 49%;
+  clear: right;
+}
+/* top-bottom divider - runs the entire width to ensure
+ * bottom boxes start at the same y
+ */
+#page-content #content-divider {
+  border: none; float: none; margin: 0; padding: 0px; width: 100%;
+  clear: both;
+}
+
+#page-content #bottom-left {
+  border: none; float: left; margin: 0px; padding: 0px; width: 49%;
+  clear: left;
+}
+#page-content #bottom-right {
+  border: none; float: right; margin: 0px; padding: 0px; width: 49%;
+  clear: right;
+}
+
+#page-content #content-header H4, .page-description {
+	text-align : left;
+	margin-right : 10px;
+	float : none;
+	clear : both;
+}
+
+#page-content * > a {
+	vertical-align : middle; 
+}
+
+#page-content * a img {
+	height : 57px;
+	width : 57px;
+	vertical-align : middle;
+}	
+
+#page-content * a .link-label {
+	display : block;
+	position : relative;
+	top : -50px;
+	left : 60px;
+	margin-right: 60px;
+}
+
+#page-content * a > .link-label { left: 65px; }
+
+#page-content * a p .text {
+	display : block;
+	position : relative;
+	top : -45px;
+	margin-bottom: -25px;
+	left : 53px;
+	margin-right: 53px;
+}
+
+#page-content * a p > .text { left: 58px; }
+
+#page-content * a:hover { border-right : 5px; }
+
+/* The following rules are for extensions in all pages. Extensions should be placed in
+ * groups with the style 'content-group' and contain links with the style 'content-link'.
+ * Group is important so that importance mixin style can be applied to the group that
+ * uses block display. We need to see a solid rectangle around the extension, not 
+ * a tight polygon around the link perimeter.
+ */
+
+.content-group {
+	margin-left: 10px;
+	margin-right: 10px;
+	padding-left: 10px;
+	padding-right: 10px;
+	float : none;
+	clear : both;
+	text-align: left;
+}
+
+.content-link .link-label {
+	font-family: Verdana, Arial, Helvetica; 
+	font-weight: bold; 
+	line-height:1.5;
+	color: #00507C;
+}
+
+.content-link:hover .link-label {
+	color: #69c; 
+	text-decoration : underline;
+}
+
+.content-link .text {
+	font-family: Verdana, Arial, Helvetica; 
+	line-height: 1.3;
+}
+
+.categoryContentnav {
+	font-family: Verdana, Arial, Helvetica; 
+	font-weight: bold; 
+	color: #4A4D4A; 
+	line-height:1.3;
+}
+
+.contentpgNavhover {
+	font-family: Verdana, Arial, Helvetica; 
+	font-weight: bold; 
+	color: #000; 
+}
+
+.topicList {
+	font-family: Verdana, Arial, Helvetica; 
+	line-height:1.75;
+	color: #00507C;
+}
+
+.topicList:hover {
+	color: #69c;
+}
+
+.rss-feed-link a {
+	font-family: Verdana, Arial, Helvetica; 
+	color: #00507C;
+}
+
+/*
+ * This part is for hosting embedded document inside
+ * the content area.
+ */
+
+iframe {
+	position:relative;
+	top:16px;
+	width:100%;
+	height:100%;
+	padding-left:10px;
+}
+
+/* mozilla scrollbar appearing off page fix */
+#page-content > iframe {
+	width: 98%;
+	padding-left: 2%;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/standby.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/standby.css
new file mode 100644
index 0000000..8a7735e
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/standby.css
@@ -0,0 +1,159 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+
+/*
+ * We will not use the general-purpose group1 used in
+ * other pages for a curve image.
+ */
+
+#extra-group1 {
+	display : none;
+}
+
+
+#page-links a .link-label, #action-links a .link-label {
+	font-weight : 600;
+	color : #E5E5E5;
+}
+
+#page-links a p .text, #action-links a p .text {
+	font-weight : 500;
+	color : #E5E5E5;
+}
+
+/*
+ * Set up the content for the standby page.
+ */
+body {
+	min-width : 230px;
+	/* since IE doesn't support min-width, use expression */
+	width:expression(document.body.clientWidth < 230? "230px": "auto" );
+	background-repeat : no-repeat;
+	background-position : top left;
+	background-color : #6d7e85;
+}
+
+.page {
+	background-repeat : no-repeat;
+	background-position : bottom left;
+	min-width : 230px;
+	/* since IE doesn't support min-width, use expression */
+	width:expression(document.body.clientWidth < 230? "230px": "auto" );
+ 	min-height : 610px;
+	height : 100%;
+	height : expression(document.body.clientHeight < 450? "450px": "100%" );
+}
+
+/* 
+ * Set up the navigation bar.  It should be centered in the middle
+ * of the page
+ */
+
+#links-background { 
+	width : 100%; 
+ 	margin-top : 10%; 
+	margin-bottom : auto;
+	text-align : center;
+}
+
+#page-links a {
+	display : block;
+	width : 220px;
+	text-align : left; 
+	margin-left : auto;
+	margin-right : auto;
+	margin-top : 0px;
+	vertical-align : top;
+}
+
+#page-links a span, #page-links a p {
+	display : block;
+	width : 160px;
+	margin : 0px;
+	padding : 0px;
+}
+
+#page-links a .link-label {
+	position : relative;
+	left : 60px;
+	top : -50px;
+}
+
+#page-links a p .text {
+	position : relative;
+	left : 60px;
+	top : -50px;
+}
+
+#page-links a img {
+	height : 52px;
+	width : 52px;
+	vertical-align : middle;
+}
+
+#page-links a:hover,
+#page-links a:focus,
+#page-links a:active  { border : 0px; }
+
+#page-links a:hover p,
+#page-links a:focus p,
+#page-links a:active p  { margin : 0px; padding : 0px; }
+
+/* properties for each of the page-links  */
+
+#page-links a .background-image {
+	display: none;
+}
+
+#page-links a .link-extra-div {
+	display :none;
+}
+
+a#overview img { background-image : url(../graphics/standby/ov_standby.gif); }
+a#overview:hover img,
+a#overview:focus img,
+a#overview:active img { background-image : url(../graphics/standby/ov_standbyhov.gif); }
+
+a#firststeps img { background-image : url(../graphics/standby/fs_standby.gif); }
+a#firststeps:hover img,
+a#firststeps:focus img,
+a#firststeps:active img { background-image : url(../graphics/standby/fs_standbyhov.gif); }
+
+a#tutorials img { background-image : url(../graphics/standby/tu_standby.gif); }
+a#tutorials:hover img,
+a#tutorials:focus img,
+a#tutorials:active img { background-image : url(../graphics/standby/tu_standbyhov.gif); }
+
+a#samples img { background-image : url(../graphics/standby/sa_standby.gif); }
+a#samples:hover img,
+a#samples:focus img,
+a#samples:active img { background-image : url(../graphics/standby/sa_standbyhov.gif); }
+
+a#whatsnew img { background-image : url(../graphics/standby/wn_standby.gif); }
+a#whatsnew:hover img,
+a#whatsnew:focus img,
+a#whatsnew:active img { background-image : url(../graphics/standby/wn_standbyhov.gif); }
+
+a#webresources img { background-image : url(../graphics/standby/wr_standby.gif); }
+a#webresources:hover img,
+a#webresources:focus img,
+a#webresources:active img { background-image : url(../graphics/standby/wr_standbyhov.gif); }
+
+a#migrate img { background-image : url(../graphics/standby/mi_standby.gif); }
+a#migrate:hover img,
+a#migrate:focus img,
+a#migrate:active img { background-image : url(../graphics/standby/mi_standbyhov.gif); }
+
+a#workbench img { background-image : url(../graphics/standby/wb_standby.gif); }
+a#workbench:hover img,
+a#workbench:focus img,
+a#workbench:active img { background-image : url(../graphics/standby/wb_standbyhov.gif); }
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/tutorials.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/tutorials.css
new file mode 100644
index 0000000..ab12e64
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/tutorials.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#tutorials img, 
+#navigation-links a#tutorials:hover img,
+#navigation-links a#tutorials:focus img,
+#navigation-links a#tutorials:active img {
+	background-image : url(../graphics/icons/ctool/tu_nav_64.gif); 
+	top : 2px; 
+	left : -3px;
+}
+
+#navigation-links {
+	background-image: url(../graphics/contentpage/tu_banner.jpg);
+}
+
+#navigation-links a:hover#tutorials .link-label,
+#navigation-links a:focus#tutorials .link-label,
+#navigation-links a:active#tutorials .link-label {
+	display : none;
+}
+
+#navigation-links a:hover#tutorials,
+#navigation-links a:focus#tutorials,
+#navigation-links a:active#tutorials {
+	background-image : none;
+}
+
+#navigation-links a:hover#tutorials .link-extra-div,
+#navigation-links a:focus#tutorials .link-extra-div,
+#navigation-links a:active#tutorials .link-extra-div {
+	background-image : none;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/webresources.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/webresources.css
new file mode 100644
index 0000000..e785d0d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/webresources.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#webresources img, 
+#navigation-links a#webresources:hover img,
+#navigation-links a#webresources:focus img,
+#navigation-links a#webresources:active img {
+	background-image : url(../graphics/icons/ctool/wr_nav_64.gif); 
+	top : 2px;
+	left : -3px;
+}
+
+#navigation-links {
+	background-image: url(../graphics/contentpage/wr_banner.jpg);
+}
+
+#navigation-links a:hover#webresources .link-label,
+#navigation-links a:focus#webresources .link-label,
+#navigation-links a:active#webresources .link-label {
+	display : none;
+}
+
+#navigation-links a:hover#webresources,
+#navigation-links a:focus#webresources,
+#navigation-links a:active#webresources {
+	background-image : none;
+}
+
+#navigation-links a:hover#webresources .link-extra-div,
+#navigation-links a:focus#webresources .link-extra-div,
+#navigation-links a:active#webresources .link-extra-div {
+	background-image : none;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/whatsnew.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/whatsnew.css
new file mode 100644
index 0000000..b317c0a
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/whatsnew.css
@@ -0,0 +1,47 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#whatsnew img, 
+#navigation-links a#whatsnew:hover img,
+#navigation-links a#whatsnew:focus img,
+#navigation-links a#whatsnew:active img {
+	background-image : url(../graphics/icons/ctool/wn_nav_64.gif); 
+	top : 2px; 
+	left : -3px;
+}
+
+#navigation-links {
+	background-image: url(../graphics/contentpage/wn_banner.jpg);
+}
+
+#navigation-links a:hover#whatsnew .link-label,
+#navigation-links a:focus#whatsnew .link-label,
+#navigation-links a:active#whatsnew .link-label {
+	display : none;
+}
+
+#navigation-links a:hover#whatsnew,
+#navigation-links a:focus#whatsnew,
+#navigation-links a:active#whatsnew {
+	background-image : none;
+}
+
+#navigation-links a:hover#whatsnew .link-extra-div,
+#navigation-links a:focus#whatsnew .link-extra-div,
+#navigation-links a:active#whatsnew .link-extra-div {
+	background-image : none;
+}
+/*
+ * Default images for content links in this page.
+ */
+.content-link img { background-image : url(../graphics/icons/obj48/new_obj.gif); }
+.content-link:hover img { background-image : url(../graphics/icons/obj48/newhov_obj.gif); }
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/preview.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/preview.png
new file mode 100644
index 0000000..0e81aea
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/preview.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/firststeps.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/firststeps.properties
new file mode 100644
index 0000000..48b1b5c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/firststeps.properties
@@ -0,0 +1,18 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+firststeps.page-content.layout.vspacing = 40 
+firststeps.page-content.layout.ncolumns = 2
+firststeps.page-content.page-title.layout.colspan = 2
+firststeps.page-content.page-description.layout.colspan = 2
+firststeps.page-content.content-divider.layout.colspan = 2
+firststeps.subtitle-id = firststeps/page-content/page-title
+firststeps.description-id = firststeps/page-content/page-description
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/migrate.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/migrate.properties
new file mode 100644
index 0000000..eaaa815
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/migrate.properties
@@ -0,0 +1,18 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+migrate.page-content.layout.vspacing = 40 
+migrate.page-content.layout.ncolumns = 2
+migrate.page-content.page-title.layout.colspan = 2
+migrate.page-content.page-description.layout.colspan = 2
+migrate.page-content.content-divider.layout.colspan = 2
+
+migrate.subtitle-id = migrate/page-content/page-title
+migrate.description-id = migrate/page-content/page-description
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/overview.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/overview.properties
new file mode 100644
index 0000000..78c262f
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/overview.properties
@@ -0,0 +1,18 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+overview.page-content.layout.ncolumns = 2
+overview.page-content.page-title.layout.colspan = 2
+overview.page-content.page-description.layout.colspan = 2
+overview.page-content.content-divider.layout.colspan = 2
+
+overview.subtitle-id = overview/page-content/page-title
+overview.description-id = overview/page-content/page-description
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/root.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/root.properties
new file mode 100644
index 0000000..05ec22b
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/root.properties
@@ -0,0 +1,51 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+theme=true
+root.links-background.page-links.overview.link-icon = ../graphics/icons/ctool/overview.png
+root.links-background.page-links.tutorials.link-icon = ../graphics/icons/ctool/tutorials.png
+root.links-background.page-links.samples.link-icon= ../graphics/icons/ctool/samples.png
+root.links-background.page-links.whatsnew.link-icon = ../graphics/icons/ctool/whatsnew.png
+root.links-background.page-links.firststeps.link-icon = ../graphics/icons/ctool/firststeps.png
+root.links-background.page-links.migrate.link-icon = ../graphics/icons/ctool/migrate.png
+root.links-background.page-links.webresources.link-icon = ../graphics/icons/ctool/webresources.png
+root.action-links.workbench.link-icon = ../graphics/icons/ctool/workbench.png
+
+root.links-background.page-links.overview.hover-icon = ../graphics/icons/ctool/overview.png
+root.links-background.page-links.tutorials.hover-icon = ../graphics/icons/ctool/tutorials.png
+root.links-background.page-links.samples.hover-icon = ../graphics/icons/ctool/samples.png
+root.links-background.page-links.whatsnew.hover-icon = ../graphics/icons/ctool/whatsnew.png
+root.links-background.page-links.firststeps.hover-icon = ../graphics/icons/ctool/firststeps.png
+root.links-background.page-links.migrate.hover-icon = ../graphics/icons/ctool/migrate.png
+root.links-background.page-links.webresources.hover-icon = ../graphics/icons/ctool/webresources.png
+root.action-links.workbench.hover-icon = ../graphics/icons/ctool/workbench.png
+
+root.links-background.page-links.overview.small-link-icon = ../graphics/icons/ctool/ov_nav.png
+root.links-background.page-links.tutorials.small-link-icon = ../graphics/icons/ctool/tu_nav.png
+root.links-background.page-links.samples.small-link-icon = ../graphics/icons/ctool/sa_nav.png
+root.links-background.page-links.whatsnew.small-link-icon = ../graphics/icons/ctool/wn_nav.png
+root.links-background.page-links.firststeps.small-link-icon = ../graphics/icons/ctool/fs_nav.png
+root.links-background.page-links.migrate.small-link-icon = ../graphics/icons/ctool/mi_nav.png
+root.links-background.page-links.webresources.small-link-icon = ../graphics/icons/ctool/wr_nav.png
+root.action-links.workbench.small-link-icon = ../graphics/icons/ctool/wb_nav.png
+
+root.links-background.page-links.overview.small-hover-icon = ../graphics/icons/ctool/ov_nav.png
+root.links-background.page-links.tutorials.small-hover-icon = ../graphics/icons/ctool/tu_nav.png
+root.links-background.page-links.samples.small-hover-icon = ../graphics/icons/ctool/sa_nav.png
+root.links-background.page-links.whatsnew.small-hover-icon = ../graphics/icons/ctool/wn_nav.png
+root.links-background.page-links.firststeps.small-hover-icon = ../graphics/icons/ctool/fs_nav.png
+root.links-background.page-links.migrate.small-hover-icon = ../graphics/icons/ctool/mi_nav.png
+root.links-background.page-links.webresources.small-hover-icon = ../graphics/icons/ctool/wr_nav.png
+root.action-links.workbench.small-hover-icon = ../graphics/icons/ctool/wb_nav.png
+
+
+root.layout.ncolumns = 1
+root.links-background.page-links.layout.hspacing = 40
+root.layout.vspacing = 35
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/samples.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/samples.properties
new file mode 100644
index 0000000..c4551f8
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/samples.properties
@@ -0,0 +1,21 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+samples.page-content.layout.vspacing = 40
+samples.page-content.layout.ncolumns = 2
+samples.page-content.layout.equalWidth = true
+samples.page-content.page-title.layout.colspan = 2
+samples.page-content.page-description.layout.colspan = 2
+samples.page-content.content-divider.layout.colspan = 2
+
+description-style-id = group-description
+samples.subtitle-id = samples/page-content/page-title
+samples.description-id = samples/page-content/page-description
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/standby.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/standby.properties
new file mode 100644
index 0000000..25f6d6d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/standby.properties
@@ -0,0 +1,24 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+theme = true
+standby.links-background.page-links.overview.link-icon = ../graphics/icons/ctool/ov_nav.png
+standby.links-background.page-links.firststeps.link-icon = ../graphics/icons/ctool/fs_nav.png
+standby.links-background.page-links.tutorials.link-icon = ../graphics/icons/ctool/tu_nav.png
+standby.links-background.page-links.samples.link-icon = ../graphics/icons/ctool/sa_nav.png
+standby.links-background.page-links.whatsnew.link-icon = ../graphics/icons/ctool/wn_nav.png
+standby.links-background.page-links.migrate.link-icon = ../graphics/icons/ctool/mi_nav.png
+standby.links-background.page-links.webresources.link-icon = ../graphics/icons/ctool/wr_nav.png
+standby.links-background.page-links.workbench.link-icon = ../graphics/icons/ctool/wb_nav.png
+
+standby.links-background.page-links.layout.vspacing = 30
+standby.layout.vspacing = 35
+standby.show-link-description = false
+standby.show-home-page-navigation = false
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/tutorials.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/tutorials.properties
new file mode 100644
index 0000000..2f7eb0d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/tutorials.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+tutorials.page-content.layout.vspacing = 40
+tutorials.page-content.layout.ncolumns = 2
+tutorials.page-content.layout.equalWidth = true
+tutorials.page-content.page-title.layout.colspan = 2
+tutorials.page-content.page-description.layout.colspan = 2
+tutorials.page-content.content-divider.layout.colspan = 2
+tutorials.subtitle-id = tutorials/page-content/page-title
+tutorials.description-id = tutorials/page-content/page-description
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/webresources.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/webresources.properties
new file mode 100644
index 0000000..db164a9
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/webresources.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+webresources.page-content.layout.vspacing = 40 
+webresources.page-content.layout.ncolumns = 2
+webresources.page-content.page-title.layout.colspan = 2
+webresources.page-content.page-description.layout.colspan = 2
+webresources.page-content.content-divider.layout.colspan = 2
+
+webresources.subtitle-id = webresources/page-content/page-title
+webresources.description-id = webresources/page-content/page-description
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/whatsnew.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/whatsnew.properties
new file mode 100644
index 0000000..3d57994
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/whatsnew.properties
@@ -0,0 +1,24 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+theme = true
+whatsnew.page-content.layout.vspacing = 40
+whatsnew.page-content.layout.ncolumns = 2
+whatsnew.page-content.layout.equalWidth = true
+whatsnew.page-content.page-title.layout.colspan = 2
+whatsnew.page-content.page-description.layout.colspan = 2
+whatsnew.page-content.content-divider.layout.colspan = 2
+
+whatsnew.separator.fg =  #dfdfe4
+
+whatsnew.link-icon = ../graphics/icons/obj48/new_obj.gif
+whatsnew.hover-icon = ../graphics/icons/obj48/newhov_obj.gif
+
+whatsnew.subtitle-id = whatsnew/page-content/page-title
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/background.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/background.jpg
new file mode 100644
index 0000000..ce1cada
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/background.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/backgroundcurve.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/backgroundcurve.gif
new file mode 100644
index 0000000..8c5ec1d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/backgroundcurve.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/firsteps_wtr.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/firsteps_wtr.jpg
new file mode 100644
index 0000000..11e7725
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/firsteps_wtr.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/migrate_wtr.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/migrate_wtr.jpg
new file mode 100644
index 0000000..c45dc6f
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/migrate_wtr.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/overview_wtr.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/overview_wtr.jpg
new file mode 100644
index 0000000..733e48c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/overview_wtr.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/samples_wtr.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/samples_wtr.jpg
new file mode 100644
index 0000000..9e0fa8a
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/samples_wtr.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section1.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section1.gif
new file mode 100644
index 0000000..6147513
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section1.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section2.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section2.gif
new file mode 100644
index 0000000..0ee148b
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section2.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section3.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section3.gif
new file mode 100644
index 0000000..b5d24e6
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section3.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section4.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section4.gif
new file mode 100644
index 0000000..258d4a8
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section4.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/tutorials_wtr.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/tutorials_wtr.jpg
new file mode 100644
index 0000000..2cf26b2
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/tutorials_wtr.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/webrsrc_wtr.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/webrsrc_wtr.jpg
new file mode 100644
index 0000000..c002f2d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/webrsrc_wtr.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/whatsnew_wtr.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/whatsnew_wtr.jpg
new file mode 100644
index 0000000..c2a42da
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/whatsnew_wtr.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/back.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/back.gif
new file mode 100644
index 0000000..1c81cb6
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/back.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps16.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps16.png
new file mode 100644
index 0000000..4c15c82
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps16.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps48.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps48.gif
new file mode 100644
index 0000000..5140ad8
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps48sel.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps48sel.gif
new file mode 100644
index 0000000..954955d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps48sel.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps72.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps72.gif
new file mode 100644
index 0000000..ff92f6e
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps72.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/forward.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/forward.gif
new file mode 100644
index 0000000..3e4a4f4
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/forward.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/home.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/home.gif
new file mode 100644
index 0000000..0160f8f
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/home.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate16.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate16.png
new file mode 100644
index 0000000..3fc8414
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate16.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate48.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate48.gif
new file mode 100644
index 0000000..dc48b18
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate48sel.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate48sel.gif
new file mode 100644
index 0000000..a9d6d07
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate48sel.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate72.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate72.gif
new file mode 100644
index 0000000..25fc317
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate72.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview16.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview16.png
new file mode 100644
index 0000000..b2e977f
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview16.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview48.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview48.gif
new file mode 100644
index 0000000..3843412
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview48sel.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview48sel.gif
new file mode 100644
index 0000000..fafc1a6
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview48sel.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview72.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview72.gif
new file mode 100644
index 0000000..39d089a
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview72.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples16.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples16.png
new file mode 100644
index 0000000..fdff5dd
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples16.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples48.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples48.gif
new file mode 100644
index 0000000..e71836e
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples48sel.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples48sel.gif
new file mode 100644
index 0000000..daaa044
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples48sel.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples72.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples72.gif
new file mode 100644
index 0000000..1515906
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples72.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials16.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials16.png
new file mode 100644
index 0000000..f2d688f
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials16.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials48.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials48.gif
new file mode 100644
index 0000000..f527297
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials48sel.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials48sel.gif
new file mode 100644
index 0000000..9d41c08
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials48sel.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials72.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials72.gif
new file mode 100644
index 0000000..8fd4816
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials72.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/wb16.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/wb16.png
new file mode 100644
index 0000000..e73ca61
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/wb16.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/wb48.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/wb48.gif
new file mode 100644
index 0000000..c2fd06a
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/wb48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc16.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc16.png
new file mode 100644
index 0000000..b847caa
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc16.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc48.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc48.gif
new file mode 100644
index 0000000..b54d518
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc48sel.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc48sel.gif
new file mode 100644
index 0000000..798f415
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc48sel.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc72.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc72.gif
new file mode 100644
index 0000000..c4df0ad
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc72.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew16.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew16.png
new file mode 100644
index 0000000..5294b17
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew16.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew48.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew48.gif
new file mode 100644
index 0000000..4eeb56a
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew48sel.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew48sel.gif
new file mode 100644
index 0000000..d5ba746
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew48sel.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew72.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew72.gif
new file mode 100644
index 0000000..df3bd99
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew72.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/dtool/back.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/dtool/back.gif
new file mode 100644
index 0000000..f0d0929
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/dtool/back.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/dtool/forward.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/dtool/forward.gif
new file mode 100644
index 0000000..dbe58b2
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/dtool/forward.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/back.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/back.gif
new file mode 100644
index 0000000..f0d0929
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/back.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps48.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps48.gif
new file mode 100644
index 0000000..b277a7f
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps48sel.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps48sel.gif
new file mode 100644
index 0000000..9679b5f
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps48sel.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps72.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps72.gif
new file mode 100644
index 0000000..a68e0aa
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps72.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/forward.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/forward.gif
new file mode 100644
index 0000000..dbe58b2
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/forward.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/home.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/home.gif
new file mode 100644
index 0000000..b101d12
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/home.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate48.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate48.gif
new file mode 100644
index 0000000..313c983
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate48sel.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate48sel.gif
new file mode 100644
index 0000000..6a12231
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate48sel.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate72.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate72.gif
new file mode 100644
index 0000000..2a3fe17
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate72.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview48.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview48.gif
new file mode 100644
index 0000000..6ac4cf7
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview48sel.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview48sel.gif
new file mode 100644
index 0000000..5588700
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview48sel.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview72.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview72.gif
new file mode 100644
index 0000000..1e612b5
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview72.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples48.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples48.gif
new file mode 100644
index 0000000..eeace58
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples48sel.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples48sel.gif
new file mode 100644
index 0000000..38b965d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples48sel.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples72.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples72.gif
new file mode 100644
index 0000000..504fea0
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples72.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials48.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials48.gif
new file mode 100644
index 0000000..dfe572b
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials48sel.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials48sel.gif
new file mode 100644
index 0000000..e8a8d93
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials48sel.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials72.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials72.gif
new file mode 100644
index 0000000..12698f6
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials72.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/wb48.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/wb48.gif
new file mode 100644
index 0000000..50ca287
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/wb48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc48.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc48.gif
new file mode 100644
index 0000000..41fef5f
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc48sel.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc48sel.gif
new file mode 100644
index 0000000..5f7b9c7
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc48sel.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc72.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc72.gif
new file mode 100644
index 0000000..cdf21e4
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc72.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew48.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew48.gif
new file mode 100644
index 0000000..d73db3e
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew48sel.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew48sel.gif
new file mode 100644
index 0000000..8c9aaa2
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew48sel.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew72.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew72.gif
new file mode 100644
index 0000000..63844fd
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew72.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/obj48/new_obj.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/obj48/new_obj.gif
new file mode 100644
index 0000000..f46b81b
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/obj48/new_obj.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/obj48/newhov_obj.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/obj48/newhov_obj.gif
new file mode 100644
index 0000000..593e63b
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/obj48/newhov_obj.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/firststeps16.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/firststeps16.png
new file mode 100644
index 0000000..4c15c82
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/firststeps16.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/migrate16.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/migrate16.png
new file mode 100644
index 0000000..3fc8414
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/migrate16.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/overview.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/overview.gif
new file mode 100644
index 0000000..3fe629a
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/overview.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/samples.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/samples.gif
new file mode 100644
index 0000000..c695884
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/samples.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/tutorials.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/tutorials.gif
new file mode 100644
index 0000000..a18d7dd
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/tutorials.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/webresources16.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/webresources16.png
new file mode 100644
index 0000000..b847caa
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/webresources16.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/whatsnew.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/whatsnew.gif
new file mode 100644
index 0000000..f022324
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/whatsnew.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/background.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/background.jpg
new file mode 100644
index 0000000..969fcf3
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/background.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/brandmark.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/brandmark.gif
new file mode 100644
index 0000000..93f25f7
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/brandmark.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/dots.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/dots.gif
new file mode 100644
index 0000000..6621b7c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/dots.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/swt/form_banner.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/swt/form_banner.gif
new file mode 100644
index 0000000..aebc0b2
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/swt/form_banner.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/firststeps.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/firststeps.css
new file mode 100644
index 0000000..0904e2b
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/firststeps.css
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+	background-image : url(../graphics/contentpage/firsteps_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#firststeps img, 
+#navigation-links a#firststeps:hover img,
+#navigation-links a#firststeps:focus img,
+#navigation-links a#firststeps:active img {
+	background-image : url(../graphics/icons/ctool/firsteps48sel.gif); 
+}
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/font-absolute.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/font-absolute.css
new file mode 100644
index 0000000..a8b42e2
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/font-absolute.css
@@ -0,0 +1,88 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+.intro-header H1 {
+	font-size : 16pt;
+}
+
+h2 {
+	font-size : 13pt;
+}
+
+/* For regular div labels */
+H4 .div-label {
+	font-size : 10pt;
+}
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+	font-size : 10pt;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+	font-size : 14pt;
+}
+
+.page-description { 
+	font-size : 10pt;
+}
+
+a .link-label {
+	font-size : 10pt;
+}
+
+#navigation-links a .link-label {
+	font-size : 9pt;
+}
+
+a .text {
+	font-size : 8pt;
+}
+
+p .group-description {
+	font-size : 10pt;
+}
+
+.categoryContentnav {
+	font-size: 9pt; 
+}
+
+.topicList {
+	font-size: 8pt; 
+}
+
+/* 
+ * Set up general font colours, sizes, etc.  Some of these will override
+ * settings from the shared CSS 
+ */
+#root .intro-header H1 {
+	font-size : 18pt;
+}
+#root #page-links a .link-label, #action-links a .link-label {
+	font-size : 13pt;
+}
+
+#root #page-links a p .text, #action-links a p .text {
+	font-size : 13pt;
+}
+
+#standby .intro-header H1 {
+	font-size : 15pt;
+}
+
+#standby #page-links a .link-label, #standby #action-links a .link-label {
+	font-size : 10pt;
+}
+
+#standby #page-links a p .text, #standby #action-links a p .text {
+	font-size : 10pt;
+}
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/font-relative.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/font-relative.css
new file mode 100644
index 0000000..f3ed239
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/font-relative.css
@@ -0,0 +1,88 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+.intro-header H1 {
+	font-size : 16pt
+}
+
+h2 {
+	font-size : 120%;
+}
+
+/* For regular div labels */
+H4 .div-label {
+	font-size : 100%;
+}
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+	font-size : 100%;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+	font-size : 160%;
+}
+
+.page-description { 
+	font-size : 100%;
+}
+
+a .link-label {
+	font-size : 100%;
+}
+
+#navigation-links a .link-label {
+	font-size : 90%;
+}
+
+a .text {
+	font-size : 90%;
+}
+
+p .group-description {
+	font-size : 100%;
+}
+
+.categoryContentnav {
+	//font-size: 9pt; 
+}
+
+.topicList {
+	font-size: 90%; 
+}
+
+/* 
+ * Set up general font colours, sizes, etc.  Some of these will override
+ * settings from the shared CSS 
+ */
+#root .intro-header H1 {
+	font-size : 200%;
+}
+#root #page-links a .link-label, #root #action-links a .link-label {
+	font-size : 13pt;
+}
+
+#root #page-links a p .text, #root #action-links a p .text {
+	font-size : 13pt;
+}
+
+#standby .intro-header H1 {
+	font-size : 150%;
+}
+
+#standby #page-links a .link-label, #standby #action-links a .link-label {
+	font-size : 100%;
+}
+
+#standby #page-links a p .text, #standby #action-links a p .text {
+	font-size : 100%;
+}
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/ltr.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/ltr.css
new file mode 100644
index 0000000..57586c8
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/ltr.css
@@ -0,0 +1,19 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* 
+ * This file contains styles that are specific to left to right display
+ */
+ 
+body {
+    direction: ltr;
+}
+ 
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/migrate.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/migrate.css
new file mode 100644
index 0000000..8d23eb9
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/migrate.css
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+	background-image : url(../graphics/contentpage/migrate_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#migrate img, 
+#navigation-links a#migrate:hover img,
+#navigation-links a#migrate:focus img,
+#navigation-links a#migrate:active img {
+	background-image : url(../graphics/icons/ctool/migrate48sel.gif); 
+}
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/overview.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/overview.css
new file mode 100644
index 0000000..113c21c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/overview.css
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+	background-image : url(../graphics/contentpage/overview_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#overview img, 
+#navigation-links a#overview:hover img,
+#navigation-links a#overview:focus img,
+#navigation-links a#overview:active img {
+	background-image : url(../graphics/icons/ctool/overview48sel.gif); 
+}
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/root.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/root.css
new file mode 100644
index 0000000..4a998d9
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/root.css
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/rtl.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/rtl.css
new file mode 100644
index 0000000..8929906
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/rtl.css
@@ -0,0 +1,106 @@
+/*******************************************************************************
+ * Copyright (c) 2008, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* 
+ * This file contains styles that are specific to right to left display
+ */
+
+
+table {
+    direction: rtl;
+}
+
+#page-content p { 
+	text-align : right; 
+}
+
+#page-content #content-header H4, .page-description {
+	text-align : right;
+}
+
+#page-content table tr td a > .link-label {
+    left:0px;
+}
+
+#page-content * td a .link-label { 
+    display:block;
+    left:0px;
+    margin-right:0px;
+    position:static;
+    top:0px;
+}
+
+#page-content * td a  .text { 
+    display:block;
+    left:0px;
+    margin-right:0px;
+    position:static;
+    top:0px;
+}
+
+.content-group {
+	text-align: right;
+}
+
+.intro-header span {
+    margin-right : 45px;
+    padding-right : 45px;
+}
+
+div div#rss-news {  
+   position:static;
+   margin-left:0px;
+   margin-bottom: 0px;
+   margin-top: 10px;
+   top : 0px;
+   margin-right : 30px;
+}
+
+div ul#eclipse-news {
+	list-style-image: url("../graphics/icons/ctool/arrow_rtl.gif");
+	margin-left: 0px;
+	padding-right: 10px;
+	margin-right: 10px;
+}
+
+/* The 'closed' toggle image part of the folding section. */
+#page-content .section-title-link .section-toggle-image-closed {
+	background-image : url(../graphics/icons/ctool/widget_closed_rtl.gif);
+}
+
+#page-content .section-title-link:hover .section-toggle-image-closed,
+#page-content .section-title-link:active .section-toggle-image-closed {
+	background-image : url(../graphics/icons/ctool/widget_closed_hov_rtl.gif);
+}
+
+#standby #links-background {
+    text-align:right;
+}
+
+#standby #page-links a {
+	text-align : right; 
+}
+
+#standby #page-links a .link-label {
+    left:auto;
+    right : 60px;
+}
+
+#standby #page-links p {
+    right : 60px;
+}  
+
+#standby #page-links a p .text {
+    margin-right:auto;
+    left:auto;
+    right : 60px;
+}
+
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/samples.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/samples.css
new file mode 100644
index 0000000..b994004
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/samples.css
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+	background-image : url(../graphics/contentpage/samples_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#samples img, 
+#navigation-links a#samples:hover img,
+#navigation-links a#samples:focus img,
+#navigation-links a#samples:active img {
+	background-image : url(../graphics/icons/ctool/samples48sel.gif); 
+}
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/shared.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/shared.css
new file mode 100644
index 0000000..6e9e694
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/shared.css
@@ -0,0 +1,420 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* 
+ * Set up general fonts, sizes and colors 
+ */
+body { font-family : Arial, sans-serif; }
+
+H1, H2, H3, H4, p, a { color : #4D4D4D; }
+
+.intro-header H1 {
+	font-weight : normal;
+	color : #E5E5E5;
+}
+
+h2 {
+	font-weight : normal;
+	color : #7B8694;
+}
+/* For regular div labels */
+H4 .div-label {
+	font-weight : bold;
+}
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+	display : inline;
+}
+
+/* For separators */
+HR {
+	width: 90%;
+	align: left;
+	height : 1px;
+	color :  #dfdfe4;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+	font-weight : normal;
+	color : #8C96A2;
+	float : none;
+	clear : both;
+}
+
+.page-description { 
+	float : none;
+	clear : both;
+}
+
+a {
+	font-weight : bold;
+	text-decoration : none;
+	color : #4D4D4D;
+}
+
+a .link-label {
+	font-weight : normal;
+}
+
+/* Hide the 'special-effect' extra div in links by default. */
+.link-extra-div {
+	display : none;
+}
+
+#navigation-links a .link-label {
+	font-weight : normal;
+	color : #E5E5E5;
+}
+
+a .text {
+	font-weight : normal;
+}
+
+p .group-description {
+	font-weight : normal;
+}
+
+
+/* 
+ * Set up other general properties like padding/margins
+ */
+html, body { width : 100%; height : 100%; }
+
+html, body, div, h1, h4, p, a { margin : 0px; padding : 0px; }
+
+.intro-header H1 { padding-top : 10px; margin-left : 10px; }
+
+.section { }
+.section-body { display: none; padding : 0px; }
+
+/* For regular div labels */
+#page-content div H4 {
+	padding : 10px;
+	padding-bottom : 0px;
+}
+
+/* For the main page content's div label */
+#page-content #content-header H4 {
+	padding-bottom : 10px;
+	padding-top : 0px;
+}
+
+/* special case for Mozilla's main content-header label.
+   Mozilla 1.4 needs more room at the top */
+#page-content > #content-header H4 { padding-top : 10px; }
+
+/* Needed in IE to get shift+tab to show the active image properly */
+a:active {
+	border : solid 0px;
+}
+
+a img {
+	border-width : 0;
+	background-repeat : no-repeat;
+}
+
+/*
+ * to get scrollbars working in both IE and Mozilla
+ */
+html,body { overflow: auto; }
+html>body { overflow: visible; }
+
+/*
+ * Set up the body, decorative background, and navigation for the content 
+ * pages. 
+ * Note: the root page handles its own background and navigation; these
+ * settings primarily apply to the content pages
+ */
+body {
+	background-color : #FFFFFF;
+	background-repeat : no-repeat;
+	background-position : bottom right;
+}
+
+/*
+ * We will use one of the general purpose groups to show
+ * the curve image
+ */
+#extra-group1 { 
+	width : 100%;
+	height : 164px;
+	position : absolute;
+	top : 0px;
+	background-image : url(../graphics/contentpage/backgroundcurve.gif);
+	background-repeat : no-repeat;
+	background-position : top center;
+	margin : 0;
+	padding : 0;
+}
+
+/*
+ * Hide the other general-purpose groups
+ */
+
+#extra-group2,
+#extra-group3,
+#extra-group4,
+#extra-group5 {
+	display : none;
+}
+
+.intro-header {	background-color : transparent; z-index : 100;}
+
+body, .page{
+	min-width : 770px;
+	/* since IE doesn't support min-width, try expression */
+	width:expression(document.body.clientWidth < 770? "770px": "auto" );
+	min-height : 425px;
+	height : 100%;
+	height : expression(document.body.clientHeight < 425? "425px": "100%" );
+}
+
+.page { 
+	min-height : 475px;
+	background-image : url(../graphics/contentpage/background.jpg);
+	background-repeat : repeat-x;
+	background-position : top left;
+}
+
+#page-content {
+	background-repeat : no-repeat;
+	background-position : bottom right;
+	height : 70%;
+}
+
+/* 
+ * Lay out the navigation links 
+ * (Root page does something similar for its navigation)
+ */
+#navigation-links {
+	position : relative;
+	left : 10px;
+	top : 5px;
+	height : 60px;
+	width : 98%;
+}
+
+#navigation-links a {
+	padding-left : 5px;
+	padding-right : 5px;
+	float : left;
+	text-align : center;
+}
+
+#navigation-links #customize {
+	padding-left : 5px;
+	padding-right : 5px;
+	float : left;
+	text-align : center;
+}
+
+#navigation-links a img {
+	height : 52px;
+	width : 52px;
+	vertical-align : middle;
+}
+
+#navigation-links a .link-label { display : block; margin-top : 5px;}
+
+#navigation-links a .text { display : none; }
+
+#navigation-links a:hover, 
+#navigation-links a:focus 
+#navigation-links a:active { border-right : 0px;}
+
+/* properties for each of the navigation-links  */
+#navigation-links a#overview img { background-image : url(../graphics/icons/etool/overview48.gif); }
+#navigation-links a#overview:hover img,
+#navigation-links a#overview:focus img,
+#navigation-links a#overview:active img { background-image : url(../graphics/icons/ctool/overview48.gif); }
+
+#navigation-links a#tutorials img { background-image : url(../graphics/icons/etool/tutorials48.gif); }
+#navigation-links a#tutorials:hover img,
+#navigation-links a#tutorials:active img,
+#navigation-links a#tutorials:focus img { background-image : url(../graphics/icons/ctool/tutorials48.gif); }
+
+#navigation-links a#samples img { background-image : url(../graphics/icons/etool/samples48.gif); }
+#navigation-links a#samples:hover img,
+#navigation-links a#samples:active img,
+#navigation-links a#samples:focus img { background-image : url(../graphics/icons/ctool/samples48.gif); }
+
+#navigation-links a#whatsnew img { background-image : url(../graphics/icons/etool/whatsnew48.gif); }
+#navigation-links a#whatsnew:hover img,
+#navigation-links a#whatsnew:focus img,
+#navigation-links a#whatsnew:active img { background-image : url(../graphics/icons/ctool/whatsnew48.gif); }
+
+#navigation-links a#firststeps img { background-image : url(../graphics/icons/etool/firsteps48.gif); }
+#navigation-links a#firststeps:hover img,
+#navigation-links a#firststeps:focus img,
+#navigation-links a#firststeps:active img { background-image : url(../graphics/icons/ctool/firsteps48.gif); }
+
+#navigation-links a#webresources img { background-image : url(../graphics/icons/etool/webrsrc48.gif); }
+#navigation-links a#webresources:hover img,
+#navigation-links a#webresources:focus img,
+#navigation-links a#webresources:active img { background-image : url(../graphics/icons/ctool/webrsrc48.gif); }
+
+#navigation-links a#migrate img { background-image : url(../graphics/icons/etool/migrate48.gif); }
+#navigation-links a#migrate:hover img,
+#navigation-links a#migrate:focus img,
+#navigation-links a#migrate:active img { background-image : url(../graphics/icons/ctool/migrate48.gif); }
+
+
+#navigation-links a#workbench { position : absolute;  right : 0px; top : -35px; text-align : right;}
+#navigation-links a#workbench .text { display : none; }
+#navigation-links a#workbench img { background-image : url(../graphics/icons/etool/wb48.gif); width : 53px; height : 53px;}
+#navigation-links a#workbench:hover img,
+#navigation-links a#workbench:focus img,
+#navigation-links a#workbench:active img { background-image : url(../graphics/icons/ctool/wb48.gif); }
+
+/* 
+ * Lay out the page title and description 
+ */
+h1, p { margin-left : 10px; } /* required in mozilla so the page description is properly indented */
+
+/* position the page content so that the page title overlays the bottom
+ * of the background image, but make sure the content is always on top 
+ * (using z-index) */
+#page-content {
+	float : none;
+	clear : both;
+	text-align : center;
+	margin-top : 35px;
+}
+
+.page > #page-content { margin-top : 50px; }
+
+#page-content p { 
+	padding-bottom : 15px; 
+	text-align : left; 
+	float : none;
+	clear : both;
+}
+
+/* Page content bins */
+
+#page-content #top-left {
+  border: none; float: left; margin: 0px; padding: 0px; width: 49%;
+  clear: left;
+}
+#page-content #top-right {
+  border: none; float: right; margin: 0px; padding: 0px; width: 49%;
+  clear: right;
+}
+
+/* top-bottom divider - runs the entire width to ensure
+ * bottom boxes start at the same y
+ */
+#page-content #content-divider {
+  border: none; float: none; margin: 0; padding: 0px; width: 100%;
+  clear: both;
+}
+
+#page-content #bottom-left {
+  border: none; float: left; margin: 0px; padding: 0px; width: 49%;
+  clear: left;
+}
+#page-content #bottom-right {
+  border: none; float: right; margin: 0px; padding: 0px; width: 49%;
+  clear: right;
+}
+
+#page-content #content-header H4, .page-description {
+	text-align : left;
+	margin-right : 10px;
+	float : none;
+	clear : both;
+}
+
+#page-content #top-left > *, 
+#page-content #top-right > *,
+#page-content #bottom-left > *,
+#page-content #bottom-right > * {
+	display: block;
+}
+
+#page-content * > a {
+	vertical-align : middle; 
+}
+
+#page-content * a img {
+	height : 57px;
+	width : 57px;
+	vertical-align : middle;
+}	
+
+#page-content * a .link-label {
+	display : block;
+	position : relative;
+	top : -50px;
+	left : 60px;
+	margin-right: 60px;
+}
+
+#page-content * a > .link-label { left: 65px; }
+
+#page-content * a p .text {
+	display : block;
+	position : relative;
+	top : -45px;
+	margin-bottom: -25px;
+	left : 53px;
+	margin-right: 53px;
+}
+
+#page-content * a p > .text { left: 58px; }
+
+#page-content * a:hover { border-right : 5px; }
+
+
+/* The following rules are for extensions in all pages. Extensions should be placed in
+ * groups with the style 'content-group' and contain links with the style 'content-link'.
+ * Group is important so that importance mixin style can be applied to the group that
+ * uses block display. We need to see a solid rectangle around the extension, not 
+ * a tight polygon around the link perimeter.
+ */
+ 
+.content-group {
+	margin-left: 10px;
+	margin-right: 10px;
+	padding-left: 10px;
+	padding-right: 10px;
+	float : none;
+	clear : both;
+	text-align : left;
+}
+
+.categoryContentnav {
+	font-weight: bold; 
+	color: #4A4D4A; 
+}
+
+.topicList {
+	line-height:1.75;
+	color: #00507C;
+}
+
+.content-link:hover { border-right : 0px; }
+
+iframe {
+	position:relative;
+	top:16px;
+	width:100%;
+	height:100%;
+	padding-left:10px;
+	}
+
+/* mozilla scrollbar appearing off page fix */
+#page-content > iframe {
+	width: 98%;
+	padding-left: 2%;
+}	
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/standby.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/standby.css
new file mode 100644
index 0000000..9406e97
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/standby.css
@@ -0,0 +1,169 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* 
+ * Set up general font colours, sizes, etc.  Some of these will override
+ * settings from the shared CSS 
+ */
+
+#page-links a .link-label, #action-links a .link-label {
+	font-weight : 600;
+	color : #E5E5E5;
+}
+
+#page-links a p .text, #action-links a p .text {
+	font-weight : 500;
+	color : #E5E5E5;
+}
+
+/*
+ * We will not use the general-purpose group1 used in
+ * other pages for a curve image.
+ */
+
+#extra-group1 {
+	display : none;
+}
+
+/*
+ * Set up the content for the standby page.
+ */
+body {
+	min-width : 230px;
+	/* since IE doesn't support min-width, use expression */
+	width:expression(document.body.clientWidth < 230? "230px": "auto" );
+	background-image : url(../graphics/root/background.jpg);
+	background-repeat : no-repeat;
+	background-position : top left;
+	background-color : #7169D1;
+}
+
+.page {
+/*
+	background-image : url(../graphics/root/brandmark.gif);
+	background-repeat : no-repeat;
+	background-position : bottom left;
+*/
+	background-image: none;
+	min-width : 230px;
+	/* since IE doesn't support min-width, use expression */
+	width:expression(document.body.clientWidth < 230? "230px": "auto" );
+ 	min-height : 610px;
+	height : 100%;
+	height : expression(document.body.clientHeight < 450? "450px": "100%" );
+}
+
+#extra-group1 {
+	display: none;
+}
+
+/* 
+ * Set up the navigation bar.  It should be centered in the middle
+ * of the page
+ */
+
+#links-background { 
+	width : 100%; 
+ 	margin-top : 10%; 
+	margin-bottom : auto;
+	text-align : center;
+}
+
+#page-links a {
+	display : block;
+	width : 220px;
+	text-align : left; 
+	margin-left : auto;
+	margin-right : auto;
+	margin-top : 0px;
+	vertical-align : top;
+}
+#page-links a span, #page-links a p {
+	display : block;
+	width : 160px;
+	margin : 0px;
+	padding : 0px;
+}
+
+#page-links a .link-label {
+	position : relative;
+	left : 60px;
+	top : -50px;
+}
+
+#page-links a p .text {
+	position : relative;
+	left : 60px;
+	top : -50px;
+
+}
+
+#page-links a .content-img {
+	visibility: hidden;
+}
+
+#page-links a img {
+	height : 52px;
+	width : 52px;
+	vertical-align : middle;
+}
+
+#page-links a:hover,
+#page-links a:focus,
+#page-links a:active  { border : 0px; }
+
+#page-links a:hover p,
+#page-links a:focus p,
+#page-links a:active p  { margin : 0px; padding : 0px; }
+
+#action-links a { visibility: hidden; }
+
+/* properties for each of the page-links  */
+a#overview img { background-image : url(../graphics/icons/etool/overview48.gif); }
+a#overview:hover img,
+a#overview:focus img,
+a#overview:active img { background-image : url(../graphics/icons/ctool/overview48.gif); }
+
+a#tutorials img { background-image : url(../graphics/icons/etool/tutorials48.gif); }
+a#tutorials:hover img,
+a#tutorials:focus img,
+a#tutorials:active img { background-image : url(../graphics/icons/ctool/tutorials48.gif); }
+
+a#samples img { background-image : url(../graphics/icons/etool/samples48.gif); }
+a#samples:hover img,
+a#samples:focus img,
+a#samples:active img { background-image : url(../graphics/icons/ctool/samples48.gif); }
+
+a#whatsnew img { background-image : url(../graphics/icons/etool/whatsnew48.gif); }
+a#whatsnew:hover img,
+a#whatsnew:focus img,
+a#whatsnew:active img { background-image : url(../graphics/icons/ctool/whatsnew48.gif); }
+
+a#firststeps img { background-image : url(../graphics/icons/etool/firsteps48.gif); }
+a#firststeps:hover img,
+a#firststeps:focus img,
+a#firststeps:active img { background-image : url(../graphics/icons/ctool/firsteps48.gif); }
+
+a#webresources img { background-image : url(../graphics/icons/etool/webrsrc48.gif); }
+a#webresources:hover img,
+a#webresources:focus img,
+a#webresources:active img { background-image : url(../graphics/icons/ctool/webrsrc48.gif); }
+
+a#migrate img { background-image : url(../graphics/icons/etool/migrate48.gif); }
+a#migrate:hover img,
+a#migrate:focus img,
+a#migrate:active img { background-image : url(../graphics/icons/ctool/migrate48.gif); }
+
+a#workbench img { background-image : url(../graphics/icons/etool/wb48.gif); }
+a#workbench:hover img,
+a#workbench:focus img,
+a#workbench:active img { background-image : url(../graphics/icons/ctool/wb48.gif); }
+
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/tutorials.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/tutorials.css
new file mode 100644
index 0000000..1f35046
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/tutorials.css
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+	background-image : url(../graphics/contentpage/tutorials_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#tutorials img, 
+#navigation-links a#tutorials:hover img,
+#navigation-links a#tutorials:focus img,
+#navigation-links a#tutorials:active img {
+	background-image : url(../graphics/icons/ctool/tutorials48sel.gif); 
+}
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/webresources.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/webresources.css
new file mode 100644
index 0000000..f15c3cd
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/webresources.css
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+	background-image : url(../graphics/contentpage/webrsrc_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#webresources img, 
+#navigation-links a#webresources:hover img,
+#navigation-links a#webresources:focus img,
+#navigation-links a#webresources:active img {
+	background-image : url(../graphics/icons/ctool/webrsrc48sel.gif); 
+}
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/whatsnew.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/whatsnew.css
new file mode 100644
index 0000000..1d23ca3
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/whatsnew.css
@@ -0,0 +1,28 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+	background-image : url(../graphics/contentpage/whatsnew_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#whatsnew img, 
+#navigation-links a#whatsnew:hover img,
+#navigation-links a#whatsnew:focus img,
+#navigation-links a#whatsnew:active img {
+	background-image : url(../graphics/icons/ctool/whatsnew48sel.gif); 
+}
+
+/*
+ * Default images for content links in this page.
+ */
+.content-link img { background-image : url(../graphics/icons/obj48/new_obj.gif); }
+.content-link:hover img { background-image : url(../graphics/icons/obj48/newhov_obj.gif); }
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/preview.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/preview.png
new file mode 100644
index 0000000..e280b53
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/preview.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/firststeps.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/firststeps.properties
new file mode 100644
index 0000000..ea3ca84
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/firststeps.properties
@@ -0,0 +1,15 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+firststeps.page-content.layout.ncolumns = 2
+firststeps.page-content.page-title.layout.colspan = 2
+firststeps.page-content.page-description.layout.colspan = 2
+firststeps.page-content.content-divider.layout.colspan = 2
+firststeps.subtitle-id = firststeps/page-content/page-title
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/migrate.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/migrate.properties
new file mode 100644
index 0000000..6c2cb2b
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/migrate.properties
@@ -0,0 +1,15 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+migrate.page-content.layout.ncolumns = 2
+migrate.page-content.page-title.layout.colspan = 2
+migrate.page-content.page-description.layout.colspan = 2
+migrate.page-content.content-divider.layout.colspan = 2
+migrate.subtitle-id = migrate/page-content/page-title
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/overview.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/overview.properties
new file mode 100644
index 0000000..1576641
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/overview.properties
@@ -0,0 +1,17 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+overview.page-content.layout.ncolumns = 2
+overview.page-content.page-title.layout.colspan = 2
+overview.page-content.page-description.layout.colspan = 2
+overview.page-content.content-divider.layout.colspan = 2
+
+overview.subtitle-id = overview/page-content/page-title
+overview.description-id = overview/page-content/page-description
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/root.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/root.properties
new file mode 100644
index 0000000..71518d0
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/root.properties
@@ -0,0 +1,51 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+theme=true
+root.links-background.page-links.overview.link-icon = ../graphics/icons/etool/overview72.gif
+root.links-background.page-links.tutorials.link-icon = ../graphics/icons/etool/tutorials72.gif
+root.links-background.page-links.samples.link-icon= ../graphics/icons/etool/samples72.gif
+root.links-background.page-links.whatsnew.link-icon = ../graphics/icons/etool/whatsnew72.gif
+root.links-background.page-links.migrate.link-icon = ../graphics/icons/etool/migrate72.gif
+root.links-background.page-links.firststeps.link-icon = ../graphics/icons/etool/firsteps72.gif
+root.links-background.page-links.webresources.link-icon = ../graphics/icons/etool/webrsrc72.gif
+root.action-links.workbench.link-icon = ../graphics/icons/etool/wb48.gif
+
+root.links-background.page-links.overview.hover-icon = ../graphics/icons/ctool/overview72.gif
+root.links-background.page-links.tutorials.hover-icon = ../graphics/icons/ctool/tutorials72.gif
+root.links-background.page-links.samples.hover-icon = ../graphics/icons/ctool/samples72.gif
+root.links-background.page-links.whatsnew.hover-icon = ../graphics/icons/ctool/whatsnew72.gif
+root.links-background.page-links.migrate.hover-icon = ../graphics/icons/ctool/migrate72.gif
+root.links-background.page-links.firststeps.hover-icon = ../graphics/icons/ctool/firsteps72.gif
+root.links-background.page-links.webresources.hover-icon = ../graphics/icons/ctool/webrsrc72.gif
+root.action-links.workbench.hover-icon = ../graphics/icons/ctool/wb48.gif
+
+
+root.links-background.page-links.overview.small-link-icon = ../graphics/icons/etool/overview48.gif
+root.links-background.page-links.tutorials.small-link-icon = ../graphics/icons/etool/tutorials48.gif
+root.links-background.page-links.samples.small-link-icon = ../graphics/icons/etool/samples48.gif
+root.links-background.page-links.whatsnew.small-link-icon = ../graphics/icons/etool/whatsnew48.gif
+root.links-background.page-links.migrate.small-link-icon = ../graphics/icons/etool/migrate48.gif
+root.links-background.page-links.firststeps.small-link-icon = ../graphics/icons/etool/firsteps48.gif
+root.links-background.page-links.webresources.small-link-icon = ../graphics/icons/etool/webrsrc48.gif
+root.action-links.workbench.small-link-icon = ../graphics/icons/etool/wb48.gif
+
+root.links-background.page-links.overview.small-hover-icon = ../graphics/icons/ctool/overview48.gif
+root.links-background.page-links.tutorials.small-hover-icon = ../graphics/icons/ctool/tutorials48.gif
+root.links-background.page-links.samples.small-hover-icon = ../graphics/icons/ctool/samples48.gif
+root.links-background.page-links.whatsnew.small-hover-icon = ../graphics/icons/ctool/whatsnew48.gif
+root.links-background.page-links.migrate.small-hover-icon = ../graphics/icons/ctool/migrate48.gif
+root.links-background.page-links.firststeps.small-hover-icon = ../graphics/icons/ctool/firsteps48.gif
+root.links-background.page-links.webresources.small-hover-icon = ../graphics/icons/ctool/webrsrc48.gif
+root.action-links.workbench.small-hover-icon = ../graphics/icons/ctool/wb48.gif
+
+root.layout.ncolumns = 1
+root.links-background.page-links.layout.hspacing = 40
+root.layout.vspacing = 35
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/samples.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/samples.properties
new file mode 100644
index 0000000..c5f11f3
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/samples.properties
@@ -0,0 +1,20 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+samples.page-content.layout.vspacing = 40
+
+samples.page-content.layout.ncolumns = 2
+samples.page-content.page-title.layout.colspan = 2
+samples.page-content.page-description.layout.colspan = 2
+samples.page-content.content-divider.layout.colspan = 2
+
+description-style-id = group-description
+samples.subtitle-id = samples/page-content/page-title
+samples.description-id = samples/page-content/page-description
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/standby.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/standby.properties
new file mode 100644
index 0000000..c6e4435
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/standby.properties
@@ -0,0 +1,33 @@
+###############################################################################
+#  Copyright (c) 2005, 2009 IBM Corporation and others.
+#  All rights reserved. This program and the accompanying materials
+#  are made available under the terms of the Eclipse Public License v1.0
+#  which accompanies this distribution, and is available at
+#  http://www.eclipse.org/legal/epl-v10.html
+# 
+#  Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+theme=true
+standby.links-background.page-links.overview.link-icon = ../graphics/icons/etool/overview72.gif
+standby.links-background.page-links.tutorials.link-icon = ../graphics/icons/etool/tutorials72.gif
+standby.links-background.page-links.samples.link-icon= ../graphics/icons/etool/samples72.gif
+standby.links-background.page-links.whatsnew.link-icon = ../graphics/icons/etool/whatsnew72.gif
+standby.links-background.page-links.firststeps.link-icon = ../graphics/icons/etool/firsteps72.gif
+standby.links-background.page-links.migrate.link-icon = ../graphics/icons/etool/migrate72.gif
+standby.links-background.page-links.webresources.link-icon = ../graphics/icons/etool/webrsrc72.gif
+standby.action-links.workbench.link-icon = ../graphics/icons/etool/wb48.gif
+
+standby.links-background.page-links.overview.hover-icon = ../graphics/icons/ctool/overview72.gif
+standby.links-background.page-links.tutorials.hover-icon = ../graphics/icons/ctool/tutorials72.gif
+standby.links-background.page-links.samples.hover-icon = ../graphics/icons/ctool/samples72.gif
+standby.links-background.page-links.whatsnew.hover-icon = ../graphics/icons/ctool/whatsnew72.gif
+standby.links-background.page-links.migrate.hover-icon = ../graphics/icons/ctool/migrate72.gif
+standby.links-background.page-links.firststeps.hover-icon = ../graphics/icons/ctool/firsteps72.gif
+standby.links-background.page-links.webresources.hover-icon = ../graphics/icons/ctool/webrsrc72.gif
+standby.action-links.workbench.hover-icon = ../graphics/icons/ctool/wb48.gif
+
+standby.links-background.page-links.layout.vspacing = 30
+standby.layout.vspacing = 35
+standby.show-link-description = false
+standby.show-home-page-navigation = false
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/tutorials.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/tutorials.properties
new file mode 100644
index 0000000..b74fbc9
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/tutorials.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+tutorials.page-content.layout.vspacing = 40
+tutorials.page-content.layout.ncolumns = 2
+tutorials.page-content.page-title.layout.colspan = 2
+tutorials.page-content.page-description.layout.colspan = 2
+tutorials.page-content.content-divider.layout.colspan = 2
+
+tutorials.subtitle-id = tutorials/page-content/page-title
+tutorials.description-id = tutorials/page-content/page-description
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/webresources.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/webresources.properties
new file mode 100644
index 0000000..45cc9b2
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/webresources.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+webresources.page-content.layout.vspacing = 40 
+
+webresources.page-content.layout.ncolumns = 2
+webresources.page-content.page-title.layout.colspan = 2
+webresources.page-content.page-description.layout.colspan = 2
+webresources.page-content.content-divider.layout.colspan = 2
+
+webresources.subtitle-id = webresources/page-content/page-title
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/whatsnew.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/whatsnew.properties
new file mode 100644
index 0000000..2bba9c2
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/whatsnew.properties
@@ -0,0 +1,24 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+theme = true
+whatsnew.page-content.layout.vspacing = 40 
+
+whatsnew.page-content.layout.ncolumns = 2
+whatsnew.page-content.page-title.layout.colspan = 2
+whatsnew.page-content.page-description.layout.colspan = 2
+whatsnew.page-content.content-divider.layout.colspan = 2
+
+whatsnew.separator.fg =  #dfdfe4
+
+whatsnew.link-icon = ../graphics/icons/obj48/new_obj.gif
+whatsnew.hover-icon = ../graphics/icons/obj48/newhov_obj.gif
+
+whatsnew.subtitle-id = whatsnew/page-content/page-title
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/grey_callout.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/grey_callout.gif
new file mode 100644
index 0000000..e8877a1
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/grey_callout.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/ov_high.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/ov_high.gif
new file mode 100644
index 0000000..144af18
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/ov_high.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/ov_med.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/ov_med.gif
new file mode 100644
index 0000000..1ed93fa
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/ov_med.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/tu-sa_high.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/tu-sa_high.gif
new file mode 100644
index 0000000..4059b1c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/tu-sa_high.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/tu-sa_med.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/tu-sa_med.gif
new file mode 100644
index 0000000..a939a97
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/tu-sa_med.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wn-fs_high.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wn-fs_high.gif
new file mode 100644
index 0000000..492f2b1
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wn-fs_high.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wn-fs_med.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wn-fs_med.gif
new file mode 100644
index 0000000..fcfcac8
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wn-fs_med.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wr-mi_high.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wr-mi_high.gif
new file mode 100644
index 0000000..9d97731
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wr-mi_high.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wr-mi_med.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wr-mi_med.gif
new file mode 100644
index 0000000..551a32c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wr-mi_med.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/arrow.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/arrow.gif
new file mode 100644
index 0000000..7d4c3f1
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/arrow.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/arrow_rtl.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/arrow_rtl.gif
new file mode 100644
index 0000000..d7bb424
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/arrow_rtl.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed.gif
new file mode 100644
index 0000000..21f09b1
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_hov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_hov.gif
new file mode 100644
index 0000000..dfef2a7
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_hov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_hov_rtl.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_hov_rtl.gif
new file mode 100644
index 0000000..deadfe5
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_hov_rtl.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_rtl.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_rtl.gif
new file mode 100644
index 0000000..60283fd
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_rtl.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_open.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_open.gif
new file mode 100644
index 0000000..e96eb25
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_open.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_open_hov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_open_hov.gif
new file mode 100644
index 0000000..9fafae4
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_open_hov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/html/shared.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/html/shared.css
new file mode 100644
index 0000000..062a630
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/html/shared.css
@@ -0,0 +1,156 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2007 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* 
+ * This file contains styles that are shared between multiple themes.
+ */
+
+/* Folding section settings. */
+
+/* The foldable part of the section. It is off by default. */
+.section-body {
+	display: none;
+}
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+	display : inline;
+}
+
+.section-title-link .section-title,
+.section-title-link:focus .section-title {
+	color: #00517d;
+}
+
+.section-title-link {
+	vertical-align: bottom;
+}
+
+/* The 'open' toggle image part of the folding section. */
+#page-content .section-title-link .section-toggle-image-open {
+	display: none;
+	clear: right;
+	width : 7px;
+	height : 7px;
+	background-image : url(../graphics/icons/ctool/widget_open.gif);
+}
+
+/* The 'closed' toggle image part of the folding section. */
+#page-content .section-title-link .section-toggle-image-closed {
+	display: inline;
+	clear: right;
+	width : 7px;
+	height : 7px;
+	background-image : url(../graphics/icons/ctool/widget_closed.gif);
+}
+
+/*
+ * Section title during hover.
+ */
+.section-title-link:hover .section-title,
+.section-title-link:active .section-title {
+	color: #6699cc;
+}
+
+.section-title-link:hover .section-title {
+	text-decoration: underline;
+}
+
+/*
+ * Toggle image during hover.
+ */
+#page-content .section-title-link:hover .section-toggle-image-closed,
+#page-content .section-title-link:active .section-toggle-image-closed {
+	background-image : url(../graphics/icons/ctool/widget_closed_hov.gif);
+}
+#page-content .section-title-link:hover .section-toggle-image-open,
+#page-content .section-title-link:active .section-toggle-image-open {
+	background-image : url(../graphics/icons/ctool/widget_open_hov.gif);
+}
+
+/* 
+ * Importance highlights for page content. Gradient image is
+ * tiled vertically. In addition, background color is applied
+ * to fill in the areas not covered by the gradient image.
+ */
+.importance-high,
+.importance-low,
+.importance-callout,
+.importance-medium,
+.importance-new {
+	background-position: top left;
+	background-repeat: repeat-y;
+}
+
+body .importance-low {
+	background-color: #ffffff;
+}
+
+body .importance-new {
+	background-image: url("../graphics/contentpage/ov_high.gif");	
+	background-color: #fffacd;
+}
+
+body #overview .importance-high {
+	background-color: #fff7da;
+	background-image: url("../graphics/contentpage/ov_high.gif");
+}
+
+body #overview .importance-medium {
+	background-color: #fffbec;
+	background-image: url("../graphics/contentpage/ov_med.gif");
+}
+
+body #tutorials .importance-high,
+body #samples .importance-high {
+	background-color: #e1eaf2;
+	background-image: url("../graphics/contentpage/tu-sa_high.gif");
+}
+
+body #tutorials .importance-medium,
+body #samples .importance-medium {
+	background-color: #f0f4f8;
+	background-image: url("../graphics/contentpage/tu-sa_med.gif");
+}
+
+body #whatsnew .importance-high,
+body #firststeps .importance-high {
+	background-color: #f3ecdb;
+	background-image: url("../graphics/contentpage/wn-fs_high.gif");
+}
+
+body #whatsnew .importance-medium,
+body #firststeps .importance-medium {
+	background-color: #f7f2e7;
+	background-image: url("../graphics/contentpage/wn-fs_med.gif");
+}
+
+body #webresources .importance-high,
+body #migrate .importance-high {
+	background-color: #ecf4d7;
+	background-image: url("../graphics/contentpage/wr-mi_high.gif");
+}
+
+body #webresources .importance-medium,
+body #migrate .importance-medium {
+	background-color: #f5f9eb;
+	background-image: url("../graphics/contentpage/wr-mi_med.gif");
+}
+
+.importance-callout {
+	background-color: #eeeeee;
+	background-image: url("../graphics/contentpage/grey_callout.gif");
+}
+
+ul.news-list {
+	list-style-image: url("../graphics/icons/ctool/arrow.gif");
+}
+ 
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/banner_extension.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/banner_extension.jpg
new file mode 100644
index 0000000..4f885f5
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/banner_extension.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/fs_banner.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/fs_banner.jpg
new file mode 100644
index 0000000..bed56b4
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/fs_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/mi_banner.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/mi_banner.jpg
new file mode 100644
index 0000000..12e6e20
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/mi_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/ov_banner.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/ov_banner.jpg
new file mode 100644
index 0000000..53cfcd1
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/ov_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/sa_banner.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/sa_banner.jpg
new file mode 100644
index 0000000..61d0937
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/sa_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/tu_banner.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/tu_banner.jpg
new file mode 100644
index 0000000..276c1a8
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/tu_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/wn_banner.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/wn_banner.jpg
new file mode 100644
index 0000000..91445fe
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/wn_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/wr_banner.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/wr_banner.jpg
new file mode 100644
index 0000000..0626d13
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/wr_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/arrow_rtl.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/arrow_rtl.gif
new file mode 100644
index 0000000..d7bb424
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/arrow_rtl.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps-select.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps-select.gif
new file mode 100644
index 0000000..ce1d903
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps-select.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps-select.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps-select.png
new file mode 100644
index 0000000..846b278
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps-select.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps.png
new file mode 100644
index 0000000..eccc757
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/fs_nav.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/fs_nav.png
new file mode 100644
index 0000000..99eb592
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/fs_nav.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/fs_nav_32.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/fs_nav_32.gif
new file mode 100644
index 0000000..84885b5
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/fs_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/mi_nav.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/mi_nav.png
new file mode 100644
index 0000000..5434708
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/mi_nav.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/mi_nav_32.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/mi_nav_32.gif
new file mode 100644
index 0000000..d49d950
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/mi_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate-select.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate-select.gif
new file mode 100644
index 0000000..79ab661
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate-select.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate-select.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate-select.png
new file mode 100644
index 0000000..df8e2ff
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate-select.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate.png
new file mode 100644
index 0000000..07fea1d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/ov_nav.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/ov_nav.png
new file mode 100644
index 0000000..709f69a
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/ov_nav.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/ov_nav_32.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/ov_nav_32.gif
new file mode 100644
index 0000000..2ff3933
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/ov_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview-select.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview-select.gif
new file mode 100644
index 0000000..e1563d2
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview-select.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview-select.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview-select.png
new file mode 100644
index 0000000..c2513e9
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview-select.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview.png
new file mode 100644
index 0000000..a60034c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/sa_nav.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/sa_nav.png
new file mode 100644
index 0000000..9871b72
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/sa_nav.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/sa_nav_32.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/sa_nav_32.gif
new file mode 100644
index 0000000..ffbe90e
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/sa_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples-select.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples-select.gif
new file mode 100644
index 0000000..aa36563
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples-select.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples-select.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples-select.png
new file mode 100644
index 0000000..d2cabf1
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples-select.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples.png
new file mode 100644
index 0000000..cb3db1d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tu_nav.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tu_nav.png
new file mode 100644
index 0000000..ce589ab
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tu_nav.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tu_nav_32.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tu_nav_32.gif
new file mode 100644
index 0000000..77a3421
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tu_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials-select.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials-select.gif
new file mode 100644
index 0000000..6e36ffe
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials-select.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials-select.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials-select.png
new file mode 100644
index 0000000..4c66644
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials-select.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials.png
new file mode 100644
index 0000000..e40a823
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wb_nav.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wb_nav.png
new file mode 100644
index 0000000..0621c3c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wb_nav.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wb_nav_32.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wb_nav_32.gif
new file mode 100644
index 0000000..3db3072
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wb_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources-select.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources-select.gif
new file mode 100644
index 0000000..34a1812
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources-select.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources-select.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources-select.png
new file mode 100644
index 0000000..dc106f2
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources-select.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources.png
new file mode 100644
index 0000000..1a876dc
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew-select.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew-select.gif
new file mode 100644
index 0000000..5acbd8f
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew-select.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew-select.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew-select.png
new file mode 100644
index 0000000..cb686d2
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew-select.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew.png
new file mode 100644
index 0000000..a10dd3d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wn_nav.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wn_nav.png
new file mode 100644
index 0000000..47ecb7c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wn_nav.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wn_nav_32.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wn_nav_32.gif
new file mode 100644
index 0000000..ce9c743
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wn_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/workbench.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/workbench.png
new file mode 100644
index 0000000..868f3ab
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/workbench.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wr_nav.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wr_nav.png
new file mode 100644
index 0000000..00d3056
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wr_nav.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wr_nav_32.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wr_nav_32.gif
new file mode 100644
index 0000000..a741e2f
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wr_nav_32.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/firststeps16.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/firststeps16.png
new file mode 100644
index 0000000..4c15c82
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/firststeps16.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/migrate16.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/migrate16.png
new file mode 100644
index 0000000..3fc8414
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/migrate16.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/overview16.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/overview16.png
new file mode 100644
index 0000000..b2e977f
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/overview16.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/samples16.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/samples16.png
new file mode 100644
index 0000000..fdff5dd
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/samples16.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/tutorials16.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/tutorials16.png
new file mode 100644
index 0000000..f2d688f
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/tutorials16.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/webresources16.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/webresources16.png
new file mode 100644
index 0000000..b847caa
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/webresources16.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/whatsnew16.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/whatsnew16.png
new file mode 100644
index 0000000..5294b17
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/whatsnew16.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/background.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/background.jpg
new file mode 100644
index 0000000..2595c78
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/background.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48.gif
new file mode 100644
index 0000000..7211d18
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48.png
new file mode 100644
index 0000000..a925486
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48_hov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48_hov.gif
new file mode 100644
index 0000000..82fa55f
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48_hov.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48_hov.png
new file mode 100644
index 0000000..60b1e58
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48_hov.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48.gif
new file mode 100644
index 0000000..19ecef3
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48.png
new file mode 100644
index 0000000..98e167e
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48_hov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48_hov.gif
new file mode 100644
index 0000000..f9395da
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48_hov.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48_hov.png
new file mode 100644
index 0000000..6d21e5b
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48_hov.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48.gif
new file mode 100644
index 0000000..7d7053d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48.png
new file mode 100644
index 0000000..71c5668
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48_hov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48_hov.gif
new file mode 100644
index 0000000..35690f3
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48_hov.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48_hov.png
new file mode 100644
index 0000000..334f7de
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48_hov.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/root_banner.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/root_banner.jpg
new file mode 100644
index 0000000..a6ab1b1
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/root_banner.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/root_banner_logo.jpg b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/root_banner_logo.jpg
new file mode 100644
index 0000000..a5fd7c4
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/root_banner_logo.jpg
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48.gif
new file mode 100644
index 0000000..da714d8
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48.png
new file mode 100644
index 0000000..7104822
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48_hov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48_hov.gif
new file mode 100644
index 0000000..dd77558
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48_hov.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48_hov.png
new file mode 100644
index 0000000..2e1c9e7
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48_hov.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48.gif
new file mode 100644
index 0000000..bdc3e9e
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48.png
new file mode 100644
index 0000000..e5b8179
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48_hov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48_hov.gif
new file mode 100644
index 0000000..2aac380
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48_hov.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48_hov.png
new file mode 100644
index 0000000..1609d2e
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48_hov.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48.gif
new file mode 100644
index 0000000..4cce719
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48.png
new file mode 100644
index 0000000..bcc3528
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48_hov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48_hov.gif
new file mode 100644
index 0000000..90b3487
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48_hov.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48_hov.png
new file mode 100644
index 0000000..638b0c8
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48_hov.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48.gif
new file mode 100644
index 0000000..d80d0c4
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48.png
new file mode 100644
index 0000000..62a1e3c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48_hov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48_hov.gif
new file mode 100644
index 0000000..6fe8c73
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48_hov.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48_hov.png
new file mode 100644
index 0000000..88ae9b4
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48_hov.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48.gif
new file mode 100644
index 0000000..e8c3e26
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48.png
new file mode 100644
index 0000000..739fde5
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48_hov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48_hov.gif
new file mode 100644
index 0000000..fb807e9
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48_hov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48_hov.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48_hov.png
new file mode 100644
index 0000000..860890c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48_hov.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/fs_standby.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/fs_standby.gif
new file mode 100644
index 0000000..aac6d6b
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/fs_standby.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/fs_standbyhov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/fs_standbyhov.gif
new file mode 100644
index 0000000..eded4ff
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/fs_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/mi_standby.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/mi_standby.gif
new file mode 100644
index 0000000..34b8963
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/mi_standby.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/mi_standbyhov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/mi_standbyhov.gif
new file mode 100644
index 0000000..08c4479
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/mi_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/ov_standby.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/ov_standby.gif
new file mode 100644
index 0000000..bfcf7b2
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/ov_standby.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/ov_standbyhov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/ov_standbyhov.gif
new file mode 100644
index 0000000..11e7892
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/ov_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/sa_standby.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/sa_standby.gif
new file mode 100644
index 0000000..a18a047
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/sa_standby.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/sa_standbyhov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/sa_standbyhov.gif
new file mode 100644
index 0000000..2063d8a
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/sa_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/tu_standby.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/tu_standby.gif
new file mode 100644
index 0000000..75baabf
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/tu_standby.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/tu_standbyhov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/tu_standbyhov.gif
new file mode 100644
index 0000000..82b758f
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/tu_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wb_standby.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wb_standby.gif
new file mode 100644
index 0000000..5037784
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wb_standby.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wb_standbyhov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wb_standbyhov.gif
new file mode 100644
index 0000000..d3be575
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wb_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wn_standby.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wn_standby.gif
new file mode 100644
index 0000000..77c7912
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wn_standby.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wn_standbyhov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wn_standbyhov.gif
new file mode 100644
index 0000000..2867f15
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wn_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wr_standby.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wr_standby.gif
new file mode 100644
index 0000000..cb4fa47
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wr_standby.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wr_standbyhov.gif b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wr_standbyhov.gif
new file mode 100644
index 0000000..00b4231
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wr_standbyhov.gif
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/firststeps.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/firststeps.css
new file mode 100644
index 0000000..2613074
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/firststeps.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+	display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#firststeps img {
+	background-image : url(../graphics/icons/ctool/firststeps-select.png); 
+	width : 64px;
+	height: 64px;
+	margin-top : 12px;
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#firststeps img {
+	background-image : url(../graphics/icons/ctool/firststeps-select.gif); 
+}
+
+#navigation-links a#.high-contrast#firststeps img {
+	display : none;
+}
+
+.page  {
+	background-image: url(../graphics/contentpage/fs_banner.jpg);
+}
+
+#navigation-links #firststeps .link-label {
+	display : none;
+}
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/font-absolute.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/font-absolute.css
new file mode 100644
index 0000000..145a584
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/font-absolute.css
@@ -0,0 +1,102 @@
+/*******************************************************************************
+ * Copyright (c) 2008, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+	font-size : 10pt;
+}
+
+h2 {
+	font-size : 13pt;
+}
+
+/* For regular div labels */
+H4 .div-label {
+	font-size: 10pt; 
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+	font-size: 23pt; 
+}
+
+
+/* Page description if the page has it. */
+.page-description {
+	font-size: 10pt; 
+}
+
+/* General link labels */
+a .link-label {
+	font-size : 10pt;
+}
+
+/* Floating link labels for navigation links */
+#navigation-links a .link-label {
+	font-size : 8pt;
+}
+
+/* Text in links. */
+a .text {
+	font-size : 8pt;
+}
+
+p .group-description {
+	font-size : 10pt;
+}
+
+.content-link .link-label {
+	font-size: 11pt; 
+}
+
+.content-link .text {
+	font-size: 10pt;
+}
+
+.categoryContentnav {
+	font-size:10pt; 
+}
+
+.contentpgNavhover {
+	font-size: 8pt; 
+}
+
+.topicList {
+	font-size:8pt; 
+}
+
+/* 
+ * Root page settings
+ */
+#root .intro-header H1 {
+	font-size : 23pt;
+}
+
+/* Link label properties */
+#root #page-links a .link-label {
+	font-size : 14pt;
+}
+
+/*
+ * Standby page settings
+ */
+
+#standby .intro-header H1 {
+	font-size : 15pt;
+}
+
+#standby #page-links a .link-label {
+	font-size : 10pt;
+}
+
+#standby #page-links a p .text {
+	font-size : 10pt;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/font-relative.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/font-relative.css
new file mode 100644
index 0000000..240a626
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/font-relative.css
@@ -0,0 +1,110 @@
+L/*******************************************************************************
+ * Copyright (c) 2008, 2010 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * Font sizes for the circles theme
+ */
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+	font-size : 100%;
+}
+
+h2 {
+	font-size : 120%;
+}
+
+/* For regular div labels */
+H4 .div-label {
+	font-size: 120%; 
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+	font-size: 240%; 
+}
+
+
+/* Page description if the page has it. */
+.page-description {
+	font-size: 100%; 
+}
+
+#page-links, #action-links {
+    font-size : 8pt;
+}
+
+#standby #page-links {
+    font-size : 100%;
+}
+
+/* Floating link labels for navigation links */
+#navigation-links a .link-label {
+	font-size : 8pt;
+}
+
+/* Text in links. */
+a .text {
+	font-size : 90%;
+}
+
+p .group-description {
+	font-size : 100%;
+}
+
+.content-link .link-label {
+	font-size: 120%; 
+}
+
+.content-link .text {
+	font-size: 100%;
+}
+
+.categoryContentnav {
+	//font-size:10pt; 
+}
+
+.contentpgNavhover {
+	font-size: 8pt; 
+}
+
+.topicList, .rss-feed-link {
+	font-size:90%; 
+}
+
+#root #page-links, #root #action-links, #root #page-links a p .text {
+    font-size : 100%;
+}
+
+/* Link label properties */
+#root #page-links a .link-label {
+	font-size : 130%;
+}
+
+#root .intro-header span  {
+    font-size : 125%;
+}
+
+/*
+ * Standby page settings
+ */
+
+#standby .intro-header H1 {
+	font-size : 150%;
+}
+
+#standby #page-links a .link-label, #standby #action-links a .link-label {
+	font-size : 100%;
+}
+
+#standby #page-links a p .text, #standby #action-links a p .text {
+	font-size : 100%;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/ltr.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/ltr.css
new file mode 100644
index 0000000..57586c8
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/ltr.css
@@ -0,0 +1,19 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* 
+ * This file contains styles that are specific to left to right display
+ */
+ 
+body {
+    direction: ltr;
+}
+ 
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/migrate.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/migrate.css
new file mode 100644
index 0000000..be06798
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/migrate.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+	display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#migrate img {
+	background-image : url(../graphics/icons/ctool/migrate-select.png); 
+	width : 64px;
+	height: 64px;
+	margin-top : 12px
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#migrate img {
+	background-image : url(../graphics/icons/ctool/migrate-select.gif); 
+}
+
+#navigation-links a#.high-contrast#migrate img {
+	display : none;
+}
+
+.page {
+	background-image: url(../graphics/contentpage/mi_banner.jpg);
+}
+
+#navigation-links #migrate .link-label {
+	display : none;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/overview.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/overview.css
new file mode 100644
index 0000000..716bfa0
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/overview.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+	display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#overview img {
+	background-image : url(../graphics/icons/ctool/overview-select.png);
+	width : 64px;
+	height: 64px;
+	margin-top : 12px
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#overview img {
+	background-image : url(../graphics/icons/ctool/overview-select.gif);
+}
+
+#navigation-links a#.high-contrast#overview img {
+	display : none;
+}
+
+.page {
+	background-image: url(../graphics/contentpage/ov_banner.jpg);
+}
+
+#navigation-links #overview .link-label {
+	display : none;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/root.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/root.css
new file mode 100644
index 0000000..071b69f
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/root.css
@@ -0,0 +1,271 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2010 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* Hide the extra div for links in the normal state. */
+a .link-extra-div {
+	display: none;
+}
+
+/* Link label properties */
+#page-links a .link-label {
+	top: -1.2em;
+	color:#00507C;	
+    font-family:Verdana,Arial,Helvetica;
+    font-weight:bold;
+}
+
+#page-links a:hover .link-label {
+	color: #69c; 
+	text-decoration : underline;
+}
+
+#page-links a {
+    width : 45%;
+    float : left;
+    margin-left : 3%; 
+	margin-bottom : 35px;
+}
+
+/*
+ * Set up the content for the root page.
+ */
+html, body {	
+	overflow : auto;
+	overflow-clip: rect(0, auto, auto, 0);
+	background-color : none;
+	background-image : url("../graphics/rootpage/background.jpg");
+	background-position : top left;
+	background-repeat : no-repeat;
+}
+
+#root {
+    background-image : url("../graphics/rootpage/root_banner.jpg");
+	background-position : top left;
+	background-repeat : repeat-x;
+}
+
+#branding {
+	position: absolute;
+	top : 0px;
+	left : 0px;
+}
+
+/* 
+ * Set up the navigation bar.  It should be centered in the middle
+ * of the page
+*/
+
+.intro-header {
+    padding-top : 90px;
+    margin-left : 7%;
+    margin-bottom : 40px;
+}
+
+/* For the main page content's title */
+.intro-header h1 {
+	font-family: Verdana, Arial, Helvetica;
+	color:#333333; 
+	font-weight: normal; 
+	letter-spacing:-0.03em;
+}
+
+#page-links a img {
+	height : 48px;
+	width : 64px;
+	vertical-align : middle;
+}
+
+#page-links a span {
+	display : block;
+}
+
+#page-links a span.link-label {
+	position : relative;
+	top : -45px;
+	left : 60px;
+	margin-right: 60px;
+	font-family: Verdana, Arial, Helvetica; 
+	font-weight: bold; 
+	line-height:1.5;
+	color: #00507C;
+}
+
+#page-links a p .text {
+    left: 51px; 
+	display : block;
+	position : relative;
+	top : -40px;
+	margin-bottom: -25px;
+	margin-right: 53px;
+	font-family: Verdana, Arial, Helvetica; 
+	line-height: 1.3;
+}
+
+#page-links a .background-image {
+	display: none;
+}
+
+#page-links a .link-extra-div {
+	display :none;
+}
+
+.content-img {
+    padding-left: 15px;
+}
+
+/* Link images */
+#page-links a#overview .content-img { background-image : url("../graphics/rootpage/overview48.png"); }
+#page-links a#overview:hover .content-img,
+#page-links a#overview:active .content-img,
+#page-links a#overview:focus .content-img { background-image : url("../graphics/rootpage/overview48_hov.png"); }
+
+#page-links a#tutorials .content-img { background-image : url("../graphics/rootpage/tutorials48.png"); }
+#page-links a#tutorials:hover .content-img,
+#page-links a#tutorials:active .content-img,
+#page-links a#tutorials:focus .content-img { background-image : url("../graphics/rootpage/tutorials48_hov.png"); }
+
+#page-links a#samples .content-img { background-image : url("../graphics/rootpage/samples48.png"); }
+#page-links a#samples:hover .content-img,
+#page-links a#samples:active .content-img,
+#page-links a#samples:focus .content-img { background-image : url("../graphics/rootpage/samples48_hov.png"); }
+
+#page-links a#whatsnew .content-img { background-image : url("../graphics/rootpage/whatsnew48.png"); }
+#page-links a#whatsnew:hover .content-img,
+#page-links a#whatsnew:active .content-img,
+#page-links a#whatsnew:focus .content-img { background-image : url("../graphics/rootpage/whatsnew48_hov.png"); }
+
+#page-links a#firststeps .content-img { background-image : url("../graphics/rootpage/firststeps48.png"); }
+#page-links a#firststeps:hover .content-img,
+#page-links a#firststeps:active .content-img,
+#page-links a#firststeps:focus .content-img { background-image : url("../graphics/rootpage/firststeps48_hov.png"); }
+
+#page-links a#migrate .content-img { background-image : url("../graphics/rootpage/migrate48.png"); }
+#page-links a#migrate:hover .content-img,
+#page-links a#migrate:active .content-img,
+#page-links a#migrate:focus .content-img { background-image : url("../graphics/rootpage/migrate48_hov.png"); }
+
+#page-links a#webresources .content-img { background-image : url("../graphics/rootpage/webresources48.png"); }
+#page-links a#webresources:hover .content-img,
+#page-links a#webresources:active .content-img,
+#page-links a#webresources:focus .content-img { background-image : url("../graphics/rootpage/webresources48_hov.png"); }
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+
+* html #page-links a#overview .content-img { background-image : url("../graphics/rootpage/overview48.gif"); }
+* html #page-links a#overview:hover .content-img,
+* html #page-links a#overview:active .content-img,
+* html #page-links a#overview:focus .content-img { background-image : url("../graphics/rootpage/overview48_hov.gif"); }
+
+* html #page-links a#tutorials .content-img { background-image : url("../graphics/rootpage/tutorials48.gif"); }
+* html #page-links a#tutorials:hover .content-img,
+* html #page-links a#tutorials:active .content-img,
+* html #page-links a#tutorials:focus .content-img { background-image : url("../graphics/rootpage/tutorials48_hov.gif"); }
+
+* html #page-links a#samples .content-img { background-image : url("../graphics/rootpage/samples48.gif"); }
+* html #page-links a#samples:hover .content-img,
+* html #page-links a#samples:active .content-img,
+* html #page-links a#samples:focus .content-img { background-image : url("../graphics/rootpage/samples48_hov.gif"); }
+
+* html #page-links a#whatsnew .content-img { background-image : url("../graphics/rootpage/whatsnew48.gif"); }
+* html #page-links a#whatsnew:hover .content-img,
+* html #page-links a#whatsnew:active .content-img,
+* html #page-links a#whatsnew:focus .content-img { background-image : url("../graphics/rootpage/whatsnew48_hov.gif"); }
+
+* html #page-links a#firststeps .content-img { background-image : url("../graphics/rootpage/firststeps48.gif"); }
+* html #page-links a#firststeps:hover .content-img,
+* html #page-links a#firststeps:active .content-img,
+* html #page-links a#firststeps:focus .content-img { background-image : url("../graphics/rootpage/firststeps48_hov.gif"); }
+
+* html #page-links a#migrate .content-img { background-image : url("../graphics/rootpage/migrate48.gif"); }
+* html #page-links a#migrate:hover .content-img,
+* html #page-links a#migrate:active .content-img,
+* html #page-links a#migrate:focus .content-img { background-image : url("../graphics/rootpage/migrate48_hov.gif"); }
+
+* html #page-links a#webresources .content-img { background-image : url("../graphics/rootpage/webresources48.gif"); }
+* html #page-links a#webresources:hover .content-img,
+* html #page-links a#webresources:active .content-img,
+* html #page-links a#webresources:focus .content-img { background-image : url("../graphics/rootpage/webresources48_hov.gif"); }
+
+/* End hack for IE6 */
+
+/*
+ * Not using action links.
+ */
+#action-links {
+	display: none;
+}
+
+/*
+* Workbench
+*/
+
+#page-links a#workbench:hover .link-label
+{
+    color : #FFEC89;
+    text-decoration : none;
+}
+
+#workbench p span {
+    display : none;
+}
+
+* html #page-links a#workbench .content-img {
+    background-image:url(../graphics/icons/ctool/wb_nav_32.gif);
+}
+
+#page-links a#workbench .content-img {
+    background-image:url(../graphics/icons/ctool/wb_nav_32.gif);
+    display:block;
+    color : white;
+    height:32px;
+    margin:5px auto 0;
+    width:32px;
+    background-repeat:no-repeat;
+    border-width:0;
+}
+
+#page-links a#workbench .link-label {
+   position : static;
+   margin-right : 0px;
+   font-weight : bold;	
+   color : white;
+   font-family:Arial,sans-serif;
+}
+
+#page-links a#workbench .text {
+   display : none;
+}
+
+#page-links a#workbench {
+    position : absolute;
+    right : 20px;
+    top : 0px;
+    width : auto;
+    text-align:center;
+    margin-bottom : 0px;
+}
+
+#page-links a#workbench img {
+    padding : 0px;
+}
+
+#page-links a#workbench span {
+    margin-top : 0px;
+    line-height : normal;
+}
+
+#page-links a#workbench .link-label {
+    font-size:8pt;
+    color:white;
+    font-weight:bold;
+    text-align:center;
+    margin-left: 0;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/rtl.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/rtl.css
new file mode 100644
index 0000000..7053216
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/rtl.css
@@ -0,0 +1,137 @@
+/*******************************************************************************
+ * Copyright (c) 2009, 2011 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* 
+ * This file contains styles that are specific to right to left display
+ */
+
+#page-links {
+     direction: rtl;
+ }
+
+table {
+    direction: rtl;
+}
+
+#page-links a span.link-label {
+	right : 48px;
+	margin-right: 0px;
+}
+
+#page-links a p .text {
+    right: 51px; 
+	margin-right: 0px;
+}
+
+#page-content p { 
+	text-align : right; 
+}
+
+#page-content #content-header H4, .page-description {
+	text-align : right;
+}
+
+#page-content table tr td a > .link-label {
+    left:0px;
+}
+
+#page-content * td a .link-label { 
+    display:block;
+    left:0px;
+    margin-right:0px;
+    position:static;
+    top:0px;
+}
+
+#page-content * td a  .text { 
+    display:block;
+    left:0px;
+    margin-right:0px;
+    position:static;
+    top:0px;
+}
+
+#page-content * a p {
+    margin-bottom:0px;
+    position:static;
+    top:0px;
+}
+
+.content-group {
+	text-align: right;
+}
+
+.intro-header span {
+    margin-right : 45px;
+    padding-right : 45px;
+}
+
+#navigation-links a {
+  float:right;
+  margin-left:auto;
+  margin-left : 10px;
+}
+
+#action-links a {
+    float:left;
+    margin-left:20px;
+    margin-right : auto;
+}
+
+div div#rss-news {  
+   position:static;
+   margin-left:0px;
+   margin-bottom: 0px;
+   margin-top: 10px;
+   top : 0px;
+   margin-right : 30px;
+}
+
+div ul.news-list {
+	list-style-image: url("../graphics/icons/ctool/arrow_rtl.gif");
+	margin-left: 0px;
+	padding-right: 10px;
+	margin-right: 10px;
+}
+
+/* The 'closed' toggle image part of the folding section. */
+#page-content .section-title-link .section-toggle-image-closed {
+	background-image : url(../graphics/icons/ctool/widget_closed_rtl.gif);
+}
+
+#page-content .section-title-link:hover .section-toggle-image-closed,
+#page-content .section-title-link:active .section-toggle-image-closed {
+	background-image : url(../graphics/icons/ctool/widget_closed_hov_rtl.gif);
+}
+
+#standby #links-background {
+    text-align:right;
+}
+
+#standby #page-links a {
+	text-align : right; 
+}
+
+#standby #page-links a .link-label {
+    left:auto;
+    right : 60px;
+}
+
+#standby #page-links p {
+    right : 60px;
+}  
+
+#standby #page-links a p .text {
+    margin-right:auto;
+    left:auto;
+    right : 60px;
+}
+
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/samples.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/samples.css
new file mode 100644
index 0000000..665946c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/samples.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+	display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#samples img {
+	background-image : url(../graphics/icons/ctool/samples-select.png); 
+	width : 64px;
+	height: 64px;
+	margin-top : 12px;
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#samples img {
+	background-image : url(../graphics/icons/ctool/samples-select.gif); 
+}
+
+#navigation-links a#.high-contrast#samples img {
+	display : none;
+}
+
+.page {
+	background-image: url(../graphics/contentpage/sa_banner.jpg);
+}
+
+#navigation-links #samples .link-label {
+	display : none;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/shared.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/shared.css
new file mode 100644
index 0000000..309d565
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/shared.css
@@ -0,0 +1,522 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2010 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* 
+ * Set up general fonts, sizes and colors 
+ */
+body { font-family : Arial, sans-serif; }
+
+H1, H2, H3, H4, p, a { color : #4D4D4D; }
+
+ body {
+	background-color : #FFFFFF;
+}
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+	display : inline;
+}
+
+h2 {
+	font-weight : normal;
+	color : #7B8694;
+}
+
+/* For regular div labels */
+H4 .div-label {
+	font-family: Verdana, Arial, Helvetica; 
+	font-weight: bold; 
+	color: #4A4D4A; 
+	line-height:1.3;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+	font-family: Verdana, Arial, Helvetica;
+	color:#333333; 
+	font-weight: normal; 
+	letter-spacing:-0.03em;
+	margin-left: 68px;
+	float : none;
+	clear : both;
+}
+
+/* For separators */
+HR {
+	width: 90%;
+	align: left;
+	height : 1px;
+	color :  #dfdfe4;
+}
+
+/* Page description if the page has it. */
+.page-description {
+	display: block;
+	font-family: Verdana, Arial, Helvetica; 
+	line-height:1.3;
+	float : none;
+	clear : both;
+	margin-left: 70px;
+	position : relative;
+	top : -25px;
+}
+
+a {
+	font-weight : bold;
+	text-decoration : none;
+	color : #4D4D4D;
+}
+
+a:hover  {
+	color: #69c; 
+}
+
+/* General link labels */
+a .link-label {
+	font-weight : normal;
+}
+
+/* Floating link labels for navigation links */
+#navigation-links a .link-label,
+#action links a .text {
+	font-weight : bold;	
+	color : white;
+}
+
+#navigation-links a#overview:hover .link-label
+{
+    color : #FFEC89;
+}
+
+#navigation-links a#tutorials:hover .link-label,
+#navigation-links a#samples:hover .link-label
+{
+    color : #ACCCE9;
+}
+
+#navigation-links a#whatsnew:hover .link-label,
+#navigation-links a#firststeps:hover .link-label
+{
+    color : #E5CD89;
+}
+
+#navigation-links a#webresources:hover .link-label ,
+#navigation-links a#migrate:hover .link-label
+{
+    color : #BCD77C;
+}
+
+#action-links a:hover .link-label {
+    color : E0DFE3;
+}
+
+/* Text in links. */
+a .text {
+	font-weight : normal;
+}
+
+p .group-description {
+	font-family: Verdana, Arial, Helvetica; 
+	font-weight : normal;
+}
+
+/* Hide the extra div in links by default. */
+.link-extra-div {
+	display : none;
+}
+
+/* 
+ * Set up other general properties like padding/margins
+ */
+html, body { width : 100%; height : 100%; }
+
+html, body, div, h1, h4, p, a { margin : 0px; padding : 0px; }
+
+/* 
+ * Page header - adding extra padding at the bottom to compensate
+ * for navigation background/header overlap.
+ */
+#page-content #content-header {
+    padding-top : 10px;
+	padding-bottom : 22px;
+}
+
+/* For regular div labels */
+#page-content div H4 {
+	padding : 10px;
+	padding-bottom : 0px;
+}
+
+/* For the main page content's div label */
+#page-content #content-header H4 {
+	padding-bottom : 10px;
+	padding-top : 0px;
+}
+
+/* special case for Mozilla's main content-header label.
+   Mozilla 1.4 needs more room at the top */
+#page-content > #content-header H4 { padding-top : 10px; }
+
+/* Needed in IE to get shift+tab to show the active image properly */
+a:active {
+	border : solid 0px;
+}
+
+a img {
+	border-width : 0;
+	background-repeat : no-repeat;
+}
+
+/*
+ * to get scrollbars working in both IE and Mozilla
+ */
+
+/*
+ * to get scrollbars working in both IE and Mozilla
+ */
+html,body { overflow: auto; }
+html>body { overflow: visible; }
+
+/*
+ * Set up the body, decorative background, and navigation for the content 
+ * pages. 
+ * Note: the root page handles its own background and navigation; these
+ * settings primarily apply to the content pages
+ */
+body {
+    background-image: url(../graphics/contentpage/banner_extension.jpg);	
+    background-repeat: repeat-x;
+    background-position: top left;
+}
+
+/*
+ * Hide the general-purpose groups - not using them in this theme.
+ */
+#extra-group1,
+#extra-group2,
+#extra-group3,
+#extra-group4,
+#extra-group5 {
+	display : none;
+}
+
+/*
+ * Dimensions.
+ */
+body, .page {
+	/* since IE doesn't support min-width, try expression */
+	height : 100%;
+}
+
+.page {
+	background-repeat : no-repeat;
+	background-position : top left;
+	
+	min-width : 770px;
+	width:expression(document.body.clientWidth < 770? "770px": "auto" );
+    min-height : 425px;
+	height : expression(document.body.clientHeight < 425? "425px": "100%" );
+}
+
+#page-content {
+	background-repeat : no-repeat;
+	background-position : bottom right;
+	height : 65%;
+}
+
+/* 
+ * Lay out the navigation links 
+ * (Root page does something similar for its navigation)
+ */
+#navigation-links {
+	position : relative;
+	left : 0px;
+	top : 0px;
+	padding-left: 12px;
+	height : 118px;
+}
+
+#navigation-links a {
+	text-align : left;
+	height : 64px;
+	float : left;
+	margin-left : 10px;
+	position : relative;
+	text-align : center;
+}
+
+#action-links a {
+    float : right;
+    margin-right : 20px;
+}
+
+#navigation-links a img {
+	height : 32px;
+	width : 32px;
+	vertical-align : center;
+	horizontal-align : center; 
+	display : block;
+	margin-top : 5px;
+	margin-bottom : 0px;
+	margin-left : auto;
+	margin-right : auto;
+}
+
+#navigation-links a.high-contrast img {
+	margin-bottom : 0px;
+}
+
+
+/*
+ * Not showing description for navigation links.
+ */
+#navigation-links a .text { display : none; }
+
+/* properties for each of the navigation-links  */
+#navigation-links a#overview img { 
+	background-image : url(../graphics/icons/ctool/ov_nav_32.gif); 
+}
+
+#navigation-links a#firststeps img { 
+	background-image : url(../graphics/icons/ctool/fs_nav_32.gif); 
+}
+
+#navigation-links a#tutorials img { 
+	background-image : url(../graphics/icons/ctool/tu_nav_32.gif); 
+}
+
+#navigation-links a#samples img { 
+	background-image : url(../graphics/icons/ctool/sa_nav_32.gif); 
+}
+
+#navigation-links a#whatsnew img { 
+	background-image : url(../graphics/icons/ctool/wn_nav_32.gif); 
+}
+
+#navigation-links a#migrate img { 
+	background-image : url(../graphics/icons/ctool/mi_nav_32.gif); 
+}
+
+#navigation-links a#webresources img { 
+	background-image : url(../graphics/icons/ctool/wr_nav_32.gif); 
+}
+
+#navigation-links a#workbench img { 
+	background-image : url(../graphics/icons/ctool/wb_nav_32.gif); 
+}
+
+#action-links a {
+	text-align : center;
+}
+
+#action-links a.high-contrast .link-label {
+	display: none;
+}
+
+#navigation-links a.high-contrast .background-image {
+	display: none;
+}
+
+#page-links a.high-contrast:focus .link-label,
+#page-links a.high-contrast:active .link-label {
+	display: block !important;
+	text-decoration: underline;
+	top : 5px;
+}
+
+#page-links span {
+    display : block;
+    margin-top : -2px;
+}
+
+/* 
+ * Lay out the page title and description 
+ */
+h1, p { margin-left : 10px; } /* required in mozilla so the page description is properly indented */
+
+/* position the page content so that the page title overlays the bottom
+ * of the background image, but make sure the content is always on top 
+ * (using z-index) */
+
+#page-content {
+	float : none;
+	clear : both;
+	text-align : center;
+	position : relative;
+	top : -50px;
+	margin-bottom: -50px;
+	z-index : 10;
+}
+
+#page-content p { 
+	padding-bottom : 15px; 
+	text-align : left; 
+	float : none;
+	clear : both;
+}
+
+/* Page content quadrants. Page content is placed in four quadrants.
+ * Upper pair is separated from the bottom pair with a divider
+ * to ensure bottom pair is aligned even with the uneven content
+ * in the upper pair.
+ */
+
+#page-content #top-left {
+  border: none; float: left; margin: 0px; padding: 0px; width: 49%;
+  clear: left;
+}
+#page-content #top-right {
+  border: none; float: right; margin: 0px; padding: 0px; width: 49%;
+  clear: right;
+}
+/* top-bottom divider - runs the entire width to ensure
+ * bottom boxes start at the same y
+ */
+#page-content #content-divider {
+  border: none; float: none; margin: 0; padding: 0px; width: 100%;
+  clear: both;
+}
+
+#page-content #bottom-left {
+  border: none; float: left; margin: 0px; padding: 0px; width: 49%;
+  clear: left;
+}
+#page-content #bottom-right {
+  border: none; float: right; margin: 0px; padding: 0px; width: 49%;
+  clear: right;
+}
+
+#page-content #content-header H4, .page-description {
+	text-align : left;
+	margin-right : 10px;
+	float : none;
+	clear : both;
+}
+
+#page-content * > a {
+	vertical-align : middle; 
+}
+
+#page-content * a img {
+	height : 57px;
+	width : 57px;
+	vertical-align : middle;
+}	
+
+#page-content * a .link-label {
+	display : block;
+	position : relative;
+	top : -50px;
+	left : 60px;
+	margin-right: 60px;
+}
+
+#page-content * a > .link-label { left: 65px; }
+
+#page-content * a p  {
+	display : block;
+	position : relative;
+	top : -45px;
+	margin-bottom: -25px;
+}
+
+#page-content * a p .text {
+	display : block;
+	position : relative;
+	left : 53px;
+	margin-right: 53px;
+}
+
+#page-content * a p > .text { left: 56px; }
+
+#page-content * a:hover { border-right : 5px; }
+
+/* The following rules are for extensions in all pages. Extensions should be placed in
+ * groups with the style 'content-group' and contain links with the style 'content-link'.
+ * Group is important so that importance mixin style can be applied to the group that
+ * uses block display. We need to see a solid rectangle around the extension, not 
+ * a tight polygon around the link perimeter.
+ */
+
+.content-group {
+	margin-left: 10px;
+	margin-right: 10px;
+	padding-left: 10px;
+	padding-right: 10px;
+	float : none;
+	clear : both;
+	text-align: left;
+}
+
+.content-link .link-label {
+	font-family: Verdana, Arial, Helvetica; 
+	font-weight: bold; 
+	line-height:1.5;
+	color: #00507C;
+}
+
+.content-link:hover .link-label {
+	color: #69c; 
+	text-decoration : underline;
+}
+
+.content-link .text {
+	font-family: Verdana, Arial, Helvetica; 
+	line-height: 1.3;
+}
+
+.categoryContentnav {
+	font-family: Verdana, Arial, Helvetica; 
+	font-weight: bold; 
+	color: #4A4D4A; 
+	line-height:1.3;
+}
+
+.contentpgNavhover {
+	font-family: Verdana, Arial, Helvetica; 
+	font-weight: bold; 
+	color: #000; 
+}
+
+.topicList {
+	font-family: Verdana, Arial, Helvetica; 
+	line-height:1.75;
+	color: #00507C;
+}
+
+.topicList:hover {
+	color: #69c;
+}
+
+
+.rss-feed-link a {
+	font-family: Verdana, Arial, Helvetica; 
+	color: #00507C;
+}
+
+/*
+ * This part is for hosting embedded document inside
+ * the content area.
+ */
+
+iframe {
+	position:relative;
+	top:16px;
+	width:100%;
+	height:100%;
+	padding-left:10px;
+}
+
+/* mozilla scrollbar appearing off page fix */
+#page-content > iframe {
+	width: 98%;
+	padding-left: 2%;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/standby.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/standby.css
new file mode 100644
index 0000000..5af77a1
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/standby.css
@@ -0,0 +1,165 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+	display : none;
+}
+
+/*
+ * We will not use the general-purpose group1 used in
+ * other pages for a curve image.
+ */
+
+#extra-group1 {
+	display : none;
+}
+
+
+#page-links a .link-label, #action-links a .link-label {
+	font-weight : 600;
+	color : #E5E5E5;
+}
+
+#page-links a p .text, #action-links a p .text {
+	font-weight : 500;
+	color : #E5E5E5;
+}
+
+/*
+ * Set up the content for the standby page.
+ */
+body {
+	min-width : 230px;
+	/* since IE doesn't support min-width, use expression */
+	width:expression(document.body.clientWidth < 230? "230px": "auto" );
+	background-repeat : no-repeat;
+	background-position : top left;
+	background-color : #6d7e85;
+}
+
+.page {
+	background-repeat : no-repeat;
+	background-position : bottom left;
+	min-width : 230px;
+	/* since IE doesn't support min-width, use expression */
+	width:expression(document.body.clientWidth < 230? "230px": "auto" );
+ 	min-height : 610px;
+	height : 100%;
+	height : expression(document.body.clientHeight < 450? "450px": "100%" );
+}
+
+/* 
+ * Set up the navigation bar.  It should be centered in the middle
+ * of the page
+ */
+
+#links-background { 
+	width : 100%; 
+ 	margin-top : 10%; 
+	margin-bottom : auto;
+	text-align : center;
+}
+
+#page-links a {
+	display : block;
+	width : 220px;
+	text-align : left; 
+	margin-left : auto;
+	margin-right : auto;
+	margin-top : 0px;
+	vertical-align : top;
+}
+
+#page-links a span, #page-links a p {
+	display : block;
+	width : 160px;
+	margin : 0px;
+	padding : 0px;
+}
+
+#page-links a .link-label {
+	position : relative;
+	left : 60px;
+	top : -50px;
+}
+
+#page-links a p .text {
+	position : relative;
+	left : 60px;
+	top : -50px;
+}
+
+#page-links a img {
+	height : 52px;
+	width : 52px;
+	vertical-align : middle;
+}
+
+#page-links a:hover,
+#page-links a:focus,
+#page-links a:active  { border : 0px; }
+
+#page-links a:hover p,
+#page-links a:focus p,
+#page-links a:active p  { margin : 0px; padding : 0px; }
+
+/* properties for each of the page-links  */
+
+#page-links a .background-image {
+	display: none;
+}
+
+#page-links a .link-extra-div {
+	display :none;
+}
+
+a#overview img { background-image : url(../graphics/standby/ov_standby.gif); }
+a#overview:hover img,
+a#overview:focus img,
+a#overview:active img { background-image : url(../graphics/standby/ov_standbyhov.gif); }
+
+a#firststeps img { background-image : url(../graphics/standby/fs_standby.gif); }
+a#firststeps:hover img,
+a#firststeps:focus img,
+a#firststeps:active img { background-image : url(../graphics/standby/fs_standbyhov.gif); }
+
+a#tutorials img { background-image : url(../graphics/standby/tu_standby.gif); }
+a#tutorials:hover img,
+a#tutorials:focus img,
+a#tutorials:active img { background-image : url(../graphics/standby/tu_standbyhov.gif); }
+
+a#samples img { background-image : url(../graphics/standby/sa_standby.gif); }
+a#samples:hover img,
+a#samples:focus img,
+a#samples:active img { background-image : url(../graphics/standby/sa_standbyhov.gif); }
+
+a#whatsnew img { background-image : url(../graphics/standby/wn_standby.gif); }
+a#whatsnew:hover img,
+a#whatsnew:focus img,
+a#whatsnew:active img { background-image : url(../graphics/standby/wn_standbyhov.gif); }
+
+a#webresources img { background-image : url(../graphics/standby/wr_standby.gif); }
+a#webresources:hover img,
+a#webresources:focus img,
+a#webresources:active img { background-image : url(../graphics/standby/wr_standbyhov.gif); }
+
+a#migrate img { background-image : url(../graphics/standby/mi_standby.gif); }
+a#migrate:hover img,
+a#migrate:focus img,
+a#migrate:active img { background-image : url(../graphics/standby/mi_standbyhov.gif); }
+
+a#workbench img { background-image : url(../graphics/standby/wb_standby.gif); }
+a#workbench:hover img,
+a#workbench:focus img,
+a#workbench:active img { background-image : url(../graphics/standby/wb_standbyhov.gif); }
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/tutorials.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/tutorials.css
new file mode 100644
index 0000000..8ae9294
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/tutorials.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+	display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#tutorials img {
+	background-image : url(../graphics/icons/ctool/tutorials-select.png); 
+	width : 64px;
+	height: 64px;
+	margin-top : 12px
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#tutorials img {
+	background-image : url(../graphics/icons/ctool/tutorials-select.gif); 
+}
+
+#navigation-links a.high-contrast#tutorials img {
+	display : none;
+}
+
+.page {
+	background-image: url(../graphics/contentpage/tu_banner.jpg);
+}
+
+#navigation-links #tutorials .link-label {
+	display : none;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/webresources.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/webresources.css
new file mode 100644
index 0000000..0e19a44
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/webresources.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+	display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#webresources img {
+	background-image : url(../graphics/icons/ctool/webresources-select.png); 
+	width : 64px;
+	height: 64px;
+	margin-top : 12px
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#webresources img {
+	background-image : url(../graphics/icons/ctool/webresources-select.gif); 
+}
+
+#navigation-links a#.high-contrast#webresources img {
+	display : none;
+}
+
+.page {
+	background-image: url(../graphics/contentpage/wr_banner.jpg);
+}
+
+#navigation-links #webresources .link-label {
+	display : none;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/whatsnew.css b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/whatsnew.css
new file mode 100644
index 0000000..01d5b97
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/whatsnew.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+	display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#whatsnew img {
+	background-image : url(../graphics/icons/ctool/whatsnew-select.png); 
+	width : 64px;
+	height: 64px;
+	margin-top : 12px;
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#whatsnew img {
+	background-image : url(../graphics/icons/ctool/whatsnew-select.gif); 
+}
+
+#navigation-links a#.high-contrast#whatsnew img {
+	display : none;
+}
+
+.page {
+	background-image: url(../graphics/contentpage/wn_banner.jpg);
+}
+
+#navigation-links #whatsnew .link-label {
+	display : none;
+}
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/preview.png b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/preview.png
new file mode 100644
index 0000000..79d7066
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/preview.png
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/firststeps.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/firststeps.properties
new file mode 100644
index 0000000..f294360
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/firststeps.properties
@@ -0,0 +1,18 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+firststeps.page-content.layout.vspacing = 40 
+firststeps.page-content.layout.ncolumns = 2
+firststeps.page-content.page-title.layout.colspan = 2
+firststeps.page-content.page-description.layout.colspan = 2
+firststeps.page-content.content-divider.layout.colspan = 2
+firststeps.subtitle-id = firststeps/page-content/page-title
+firststeps.description-id = firststeps/page-content/page-description
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/migrate.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/migrate.properties
new file mode 100644
index 0000000..6de0f5c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/migrate.properties
@@ -0,0 +1,18 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+migrate.page-content.layout.vspacing = 40 
+migrate.page-content.layout.ncolumns = 2
+migrate.page-content.page-title.layout.colspan = 2
+migrate.page-content.page-description.layout.colspan = 2
+migrate.page-content.content-divider.layout.colspan = 2
+
+migrate.subtitle-id = migrate/page-content/page-title
+migrate.description-id = migrate/page-content/page-description
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/overview.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/overview.properties
new file mode 100644
index 0000000..43e9398
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/overview.properties
@@ -0,0 +1,18 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+overview.page-content.layout.ncolumns = 2
+overview.page-content.page-title.layout.colspan = 2
+overview.page-content.page-description.layout.colspan = 2
+overview.page-content.content-divider.layout.colspan = 2
+
+overview.subtitle-id = overview/page-content/page-title
+overview.description-id = overview/page-content/page-description
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/root.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/root.properties
new file mode 100644
index 0000000..3dbf653
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/root.properties
@@ -0,0 +1,51 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+theme=true
+root.links-background.page-links.overview.link-icon = ../graphics/icons/ctool/overview.png
+root.links-background.page-links.tutorials.link-icon = ../graphics/icons/ctool/tutorials.png
+root.links-background.page-links.samples.link-icon= ../graphics/icons/ctool/samples.png
+root.links-background.page-links.whatsnew.link-icon = ../graphics/icons/ctool/whatsnew.png
+root.links-background.page-links.firststeps.link-icon = ../graphics/icons/ctool/firststeps.png
+root.links-background.page-links.migrate.link-icon = ../graphics/icons/ctool/migrate.png
+root.links-background.page-links.webresources.link-icon = ../graphics/icons/ctool/webresources.png
+root.action-links.workbench.link-icon = ../graphics/icons/ctool/workbench.png
+
+root.links-background.page-links.overview.hover-icon = ../graphics/icons/ctool/overview.png
+root.links-background.page-links.tutorials.hover-icon = ../graphics/icons/ctool/tutorials.png
+root.links-background.page-links.samples.hover-icon = ../graphics/icons/ctool/samples.png
+root.links-background.page-links.whatsnew.hover-icon = ../graphics/icons/ctool/whatsnew.png
+root.links-background.page-links.firststeps.hover-icon = ../graphics/icons/ctool/firststeps.png
+root.links-background.page-links.migrate.hover-icon = ../graphics/icons/ctool/migrate.png
+root.links-background.page-links.webresources.hover-icon = ../graphics/icons/ctool/webresources.png
+root.action-links.workbench.hover-icon = ../graphics/icons/ctool/workbench.png
+
+root.links-background.page-links.overview.small-link-icon = ../graphics/icons/ctool/ov_nav.png
+root.links-background.page-links.tutorials.small-link-icon = ../graphics/icons/ctool/tu_nav.png
+root.links-background.page-links.samples.small-link-icon = ../graphics/icons/ctool/sa_nav.png
+root.links-background.page-links.whatsnew.small-link-icon = ../graphics/icons/ctool/wn_nav.png
+root.links-background.page-links.firststeps.small-link-icon = ../graphics/icons/ctool/fs_nav.png
+root.links-background.page-links.migrate.small-link-icon = ../graphics/icons/ctool/mi_nav.png
+root.links-background.page-links.webresources.small-link-icon = ../graphics/icons/ctool/wr_nav.png
+root.action-links.workbench.small-link-icon = ../graphics/icons/ctool/wb_nav.png
+
+root.links-background.page-links.overview.small-hover-icon = ../graphics/icons/ctool/ov_nav.png
+root.links-background.page-links.tutorials.small-hover-icon = ../graphics/icons/ctool/tu_nav.png
+root.links-background.page-links.samples.small-hover-icon = ../graphics/icons/ctool/sa_nav.png
+root.links-background.page-links.whatsnew.small-hover-icon = ../graphics/icons/ctool/wn_nav.png
+root.links-background.page-links.firststeps.small-hover-icon = ../graphics/icons/ctool/fs_nav.png
+root.links-background.page-links.migrate.small-hover-icon = ../graphics/icons/ctool/mi_nav.png
+root.links-background.page-links.webresources.small-hover-icon = ../graphics/icons/ctool/wr_nav.png
+root.action-links.workbench.small-hover-icon = ../graphics/icons/ctool/wb_nav.png
+
+
+root.layout.ncolumns = 1
+root.links-background.page-links.layout.hspacing = 40
+root.layout.vspacing = 35
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/samples.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/samples.properties
new file mode 100644
index 0000000..da16d12
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/samples.properties
@@ -0,0 +1,21 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+samples.page-content.layout.vspacing = 40
+samples.page-content.layout.ncolumns = 2
+samples.page-content.layout.equalWidth = true
+samples.page-content.page-title.layout.colspan = 2
+samples.page-content.page-description.layout.colspan = 2
+samples.page-content.content-divider.layout.colspan = 2
+
+description-style-id = group-description
+samples.subtitle-id = samples/page-content/page-title
+samples.description-id = samples/page-content/page-description
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/standby.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/standby.properties
new file mode 100644
index 0000000..0a474d2
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/standby.properties
@@ -0,0 +1,24 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+theme = true
+standby.links-background.page-links.overview.link-icon = ../graphics/icons/ctool/ov_nav.png
+standby.links-background.page-links.firststeps.link-icon = ../graphics/icons/ctool/fs_nav.png
+standby.links-background.page-links.tutorials.link-icon = ../graphics/icons/ctool/tu_nav.png
+standby.links-background.page-links.samples.link-icon = ../graphics/icons/ctool/sa_nav.png
+standby.links-background.page-links.whatsnew.link-icon = ../graphics/icons/ctool/wn_nav.png
+standby.links-background.page-links.migrate.link-icon = ../graphics/icons/ctool/mi_nav.png
+standby.links-background.page-links.webresources.link-icon = ../graphics/icons/ctool/wr_nav.png
+standby.links-background.page-links.workbench.link-icon = ../graphics/icons/ctool/wb_nav.png
+
+standby.links-background.page-links.layout.vspacing = 30
+standby.layout.vspacing = 35
+standby.show-link-description = false
+standby.show-home-page-navigation = false
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/tutorials.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/tutorials.properties
new file mode 100644
index 0000000..b7e1492
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/tutorials.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+tutorials.page-content.layout.vspacing = 40
+tutorials.page-content.layout.ncolumns = 2
+tutorials.page-content.layout.equalWidth = true
+tutorials.page-content.page-title.layout.colspan = 2
+tutorials.page-content.page-description.layout.colspan = 2
+tutorials.page-content.content-divider.layout.colspan = 2
+tutorials.subtitle-id = tutorials/page-content/page-title
+tutorials.description-id = tutorials/page-content/page-description
\ No newline at end of file
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/webresources.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/webresources.properties
new file mode 100644
index 0000000..1bba0e8
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/webresources.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+
+webresources.page-content.layout.vspacing = 40 
+webresources.page-content.layout.ncolumns = 2
+webresources.page-content.page-title.layout.colspan = 2
+webresources.page-content.page-description.layout.colspan = 2
+webresources.page-content.content-divider.layout.colspan = 2
+
+webresources.subtitle-id = webresources/page-content/page-title
+webresources.description-id = webresources/page-content/page-description
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/whatsnew.properties b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/whatsnew.properties
new file mode 100644
index 0000000..28c5acf
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/whatsnew.properties
@@ -0,0 +1,24 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+###############################################################################
+theme = true
+whatsnew.page-content.layout.vspacing = 40
+whatsnew.page-content.layout.ncolumns = 2
+whatsnew.page-content.layout.equalWidth = true
+whatsnew.page-content.page-title.layout.colspan = 2
+whatsnew.page-content.page-description.layout.colspan = 2
+whatsnew.page-content.content-divider.layout.colspan = 2
+
+whatsnew.separator.fg =  #dfdfe4
+
+whatsnew.link-icon = ../graphics/icons/obj48/new_obj.gif
+whatsnew.hover-icon = ../graphics/icons/obj48/newhov_obj.gif
+
+whatsnew.subtitle-id = whatsnew/page-content/page-title
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/universal.jar b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/universal.jar
new file mode 100644
index 0000000..620ad46
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/universal.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.navigator.resources_3.4.400.v20120705-114010.jar b/lib/monitor-x86_64/plugins/org.eclipse.ui.navigator.resources_3.4.400.v20120705-114010.jar
new file mode 100644
index 0000000..55d4d7d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.navigator.resources_3.4.400.v20120705-114010.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.navigator_3.5.200.v20120705-114103.jar b/lib/monitor-x86_64/plugins/org.eclipse.ui.navigator_3.5.200.v20120705-114103.jar
new file mode 100644
index 0000000..e96146c
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.navigator_3.5.200.v20120705-114103.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.net_1.2.101.v20120914-093638.jar b/lib/monitor-x86_64/plugins/org.eclipse.ui.net_1.2.101.v20120914-093638.jar
new file mode 100644
index 0000000..d90264d
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.net_1.2.101.v20120914-093638.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.views.properties.tabbed_3.5.300.v20120912-132807.jar b/lib/monitor-x86_64/plugins/org.eclipse.ui.views.properties.tabbed_3.5.300.v20120912-132807.jar
new file mode 100644
index 0000000..2068602
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.views.properties.tabbed_3.5.300.v20120912-132807.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.views_3.6.100.v20120705-114010.jar b/lib/monitor-x86_64/plugins/org.eclipse.ui.views_3.6.100.v20120705-114010.jar
new file mode 100644
index 0000000..28573c7
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.views_3.6.100.v20120705-114010.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.workbench.texteditor_3.8.0.v20120523-1310.jar b/lib/monitor-x86_64/plugins/org.eclipse.ui.workbench.texteditor_3.8.0.v20120523-1310.jar
new file mode 100644
index 0000000..a776ee2
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.workbench.texteditor_3.8.0.v20120523-1310.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui.workbench_3.104.0.v20130204-164612.jar b/lib/monitor-x86_64/plugins/org.eclipse.ui.workbench_3.104.0.v20130204-164612.jar
new file mode 100644
index 0000000..f56c2b5
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui.workbench_3.104.0.v20130204-164612.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.ui_3.104.0.v20121024-145224.jar b/lib/monitor-x86_64/plugins/org.eclipse.ui_3.104.0.v20121024-145224.jar
new file mode 100644
index 0000000..5d53c3f
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.ui_3.104.0.v20121024-145224.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.eclipse.update.configurator_3.3.200.v20120912-144026.jar b/lib/monitor-x86_64/plugins/org.eclipse.update.configurator_3.3.200.v20120912-144026.jar
new file mode 100644
index 0000000..17d3fb2
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.eclipse.update.configurator_3.3.200.v20120912-144026.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.sat4j.core_2.3.0.v20110329.jar b/lib/monitor-x86_64/plugins/org.sat4j.core_2.3.0.v20110329.jar
new file mode 100644
index 0000000..019572a
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.sat4j.core_2.3.0.v20110329.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.sat4j.pb_2.3.0.v20110329.jar b/lib/monitor-x86_64/plugins/org.sat4j.pb_2.3.0.v20110329.jar
new file mode 100644
index 0000000..cf7bb36
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.sat4j.pb_2.3.0.v20110329.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.w3c.css.sac_1.3.1.v200903091627.jar b/lib/monitor-x86_64/plugins/org.w3c.css.sac_1.3.1.v200903091627.jar
new file mode 100644
index 0000000..2144c3a
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.w3c.css.sac_1.3.1.v200903091627.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.w3c.dom.smil_1.0.0.v200806040011.jar b/lib/monitor-x86_64/plugins/org.w3c.dom.smil_1.0.0.v200806040011.jar
new file mode 100644
index 0000000..a1c8a83
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.w3c.dom.smil_1.0.0.v200806040011.jar
Binary files differ
diff --git a/lib/monitor-x86_64/plugins/org.w3c.dom.svg_1.1.0.v201011041433.jar b/lib/monitor-x86_64/plugins/org.w3c.dom.svg_1.1.0.v201011041433.jar
new file mode 100644
index 0000000..99cfac1
--- /dev/null
+++ b/lib/monitor-x86_64/plugins/org.w3c.dom.svg_1.1.0.v201011041433.jar
Binary files differ
diff --git a/lib/monitor-x86_64/readme/readme_eclipse.html b/lib/monitor-x86_64/readme/readme_eclipse.html
new file mode 100644
index 0000000..9911324
--- /dev/null
+++ b/lib/monitor-x86_64/readme/readme_eclipse.html
@@ -0,0 +1,2203 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
+<title>Eclipse Project Release Notes 4.2</title>
+</head>
+<body>
+
+<h1>Eclipse Project Release Notes</h1>
+<p>Release 4.2.0<br/>
+  Last revised June 8th, 2012</p>
+<p align="left"><strong>This software is OSI Certified Open Source Software.<br/>
+OSI Certified is a certification mark of the Open Source Initiative.&nbsp;</strong></p>
+<blockquote>
+  <p align="left"><a href="#TargetOperatingEnvironments">1. Target Operating
+  Environments</a><br/>
+  <a href="#Compatibility">2. Compatibility with Previous
+  Releases</a><br/>
+  <a href="#KnownIssues">3. Known Issues</a><br/>
+  <a href="#RunningEclipse">4. Running Eclipse</a><br/>
+  <a href="#Upgrading">5. Upgrading a Workspace from a Previous Release</a><br/>
+  <a href="#InteroperabilityWithPreviousReleases">6. Interoperability with
+  Previous Releases</a><br/>
+  </p>
+</blockquote>
+
+<h2>1. <a name="TargetOperatingEnvironments"></a>Target Operating Environments</h2>
+<p>In order to remain current, each Eclipse Project release targets reasonably current
+  operating environments.</p>
+<p>Most of the Eclipse SDK is &quot;pure&quot; Java code and has no direct dependence
+  on the underlying operating system. The chief dependence is therefore on the
+  Java Platform itself. Portions are targeted to specific classes of operating
+  environments, requiring their source code to only reference facilities available
+  in particular class libraries (e.g. J2ME Foundation 1.1, J2SE 1.4, Java 5, etc).</p>
+<p>In general, the 4.2 release of the Eclipse Project is developed on
+  Java SE 6 VMs. As such, the Eclipse SDK as a whole is targeted at all modern, desktop Java VMs. 
+  Most functionality is available for Java SE 6 level development everywhere, and extended development capabilities are made
+  available on the VMs that support them.</p>
+<p><a href="#appendix">Appendix 1</a> contains a table that indicates the class
+  library level required for each bundle.</p>
+<p>There are many different implementations of the Java Platform running atop
+  a variety of operating systems. We focus our testing on a handful of
+  popular combinations of operating system and Java Platform; these are our <em>reference
+  platforms</em>. Eclipse undoubtedly runs fine in many operating environments
+  beyond the reference platforms we test. However, since we do not systematically test
+  them we cannot vouch for them. Problems encountered when running Eclipse on a
+  non-reference platform that cannot be recreated on any reference platform will
+  be given lower priority than problems with running Eclipse on a reference platform.</p>
+<p>Eclipse 4.2 is tested and validated on the following reference platforms
+  (this list is updated over the course of the release cycle):</p>
+<style type="text/css">
+	table.platforms {
+		border-width: 1px;
+		border-spacing: 0px;
+		border-style: solid;
+		border-collapse: separate;
+	}
+	table.platforms th {
+		border-width: 1px;
+		padding: 3px;
+		border-style: inset;
+		border-color: black;
+		background-color: #B9A9FF;
+	}
+	table.platforms td {
+		border-width: 1px 1px 1px 1px;
+		padding: 3px 3px 3px 3px;
+		border-style: inset inset inset inset;
+		border-color: gray gray gray gray;
+	}
+	table.platforms tr.c0 td {
+		background-color: #FDFDFD;
+	}
+	table.platforms tr.c1 td {
+		background-color: #F4EEFF;
+	}
+</style>
+<center>
+	<table class="platforms">
+		<tr>
+			<th>Operating System</th>
+			<th>Version</th>
+			<th>Hardware</th>
+			<th>JRE</th>
+			<th>Windowing System</th>
+		</tr>
+		<!-- ************ WINDOWS ************** -->
+		<tr class="c0">
+			<td rowspan="4">Windows</td>
+			<td rowspan="2">7</td>
+			<td rowspan="1">x86 32-bit</td>
+			<td rowspan="4">Oracle Java 7 Update 2<br/>
+				Oracle Java 6 Update 27<br/>
+				IBM Java 6 SR9
+			</td>
+			<td rowspan="4">Win32</td>
+		</tr>
+		<tr>
+			<td rowspan="1">x86 64-bit</td>
+		</tr>
+		<tr class="c0">
+			<td rowspan="2">XP</td>
+			<td rowspan="1">x86 32-bit</td>
+		</tr>
+		<tr class="c0">
+			<td rowspan="1">x86 64-bit</td>
+		</tr>
+		<!-- ************ RHEL ************** -->
+		<tr class="c1">
+			<td rowspan="3">Red Hat Enterprise Linux</td>
+			<td rowspan="3">6</td>
+			<td rowspan="1">x86 32-bit</td>
+			<td rowspan="2">
+			    Oracle Java 7 Update 2<br/>
+			    Oracle Java 6 Update 27<br/>
+				IBM Java 6 SR9
+			</td>
+			<td rowspan="3">GTK</td>
+		</tr>
+		<tr class="c1">
+			<td rowspan="1">x86 64-bit</td>
+		</tr>
+		<tr class="c1">
+			<td rowspan="1">Power 64-bit</td>
+			<td>IBM Java 6 SR9</td>
+		</tr>
+		<!-- ************ SLES ************** -->
+		<tr class="c0">
+			<td rowspan="3">SUSE Linux Enterprise Server</td>
+			<td rowspan="3">11</td>
+			<td rowspan="1">x86 32-bit</td>
+			<td rowspan="2">Oracle Java 6 Update 27<br/>
+				IBM Java 6 SR9
+			</td>
+			<td rowspan="3">GTK</td>
+		</tr>
+		<tr class="c0">
+			<td rowspan="1">x86 64-bit</td>
+		</tr>
+		<tr class="c0">
+			<td rowspan="1">Power 64-bit</td>
+			<td>IBM Java 6 SR9</td>
+		</tr>
+		<!-- ************ Ubuntu ************** -->
+		<tr class="c1">
+			<td rowspan="2">Ubuntu Long Term Support</td>
+			<td rowspan="2">10.04</td>
+			<td rowspan="1">x86 32-bit</td>
+			<td rowspan="2">Oracle Java 6 Update 27<br/>
+				IBM Java 6 SR9
+			</td>
+			<td rowspan="2">GTK</td>
+		</tr>
+		<tr class="c1">
+			<td rowspan="1">x86 64-bit</td>
+		</tr>
+		<!-- ************ Solaris ************** -->
+		<tr class="c0">
+			<td rowspan="2">Oracle Solaris</td>
+			<td rowspan="2">11</td>
+			<td rowspan="1">x86 32-bit</td>
+			<td rowspan="2">Oracle Java 6 Update 27</td>
+			<td rowspan="2">GTK</td>
+		</tr>
+		<tr class="c0">
+			<td rowspan="1">SPARC 32-bit</td>
+		</tr>
+		<!-- ************ HPUX ************** -->
+		<tr class="c1">
+			<td rowspan="1">HP-UX</td>
+			<td rowspan="1">11i v3</td>
+			<td rowspan="1">ia64 32-bit</td>
+			<td rowspan="1">HP-UX Java 6 Update 10</td>
+			<td rowspan="1">GTK</td>
+		</tr>
+		<!-- ************ AIX ************** -->
+		<tr class="c0">
+			<td rowspan="1">IBM AIX</td>
+			<td rowspan="1">7.1</td>
+			<td rowspan="1">Power 64-bit</td>
+			<td rowspan="1">IBM Java 6 SR9</td>
+			<td rowspan="1">GTK</td>
+		</tr>
+		<!-- ************ Mac ************** -->
+		<tr class="c1">
+			<td rowspan="2">Apple Mac OS X</td>
+			<td rowspan="2">10.6</td>
+			<td rowspan="1">Universal 32-bit</td>
+			<td rowspan="2">Apple Java 10.6 Update 5</td>
+			<td rowspan="2">Cocoa</td>
+		</tr>
+		<tr class="c1">
+			<td rowspan="1">Universal 64-bit</td>
+		</tr>
+	</table>
+ </center>
+
+<p>As stated above, <i>we expect that Eclipse works fine on other current
+  Java VM and OS versions but we cannot flag these as reference platforms without
+  significant community support for testing them.</i></p>
+
+<p>The Eclipse SDK is designed as the basis for internationalized products. The
+  user interface elements provided by the Eclipse SDK components, including dialogs
+  and error messages, are externalized. The English strings are provided as the
+  default resource bundles.</p>
+<p>Latin-1, DBCS, and BiDi locales are supported by the Eclipse SDK on all reference platforms.</p>
+<p>The Eclipse SDK supports GB 18030 (level 1), the Chinese code page standard,
+  on Windows, Linux and the Macintosh.</p>
+<p>German and Japanese locales are tested.</p>
+
+<h2>2. <a name="Compatibility"></a>Compatibility with Previous Releases</h2>
+<h3>Compatibility of Release 4.2 with 3.8</h3>
+<p>Eclipse 4.2 is compatible with Eclipse 3.8 (and all earlier 3.x versions).</p>
+
+<p><strong>API Contract Compatibility:</strong> Eclipse SDK 4.2 is upwards
+  contract-compatible with Eclipse SDK 3.8 except in those areas noted in the
+  <a href="http://git.eclipse.org/c/platform/eclipse.platform.common.git/plain/bundles/org.eclipse.platform.doc.isv/porting/eclipse_4_2_porting_guide.html?h=R4_HEAD" target="_top">
+    <em>Eclipse 4.2 Plug-in Migration Guide</em>
+  </a>. Programs that use affected APIs and extension points will need to be ported
+  to Eclipse SDK 4.2 APIs. Downward contract compatibility
+  is not supported. There is no guarantee that compliance with Eclipse SDK 4.2
+  APIs would ensure compliance with Eclipse SDK 3.8 APIs. Refer to
+  <a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">
+    <em>Evolving Java-based APIs</em>
+  </a> for a discussion of the kinds of API changes that maintain contract compatibility.</p>
+  
+<p><strong>Binary (plug-in) Compatibility:</strong> Eclipse SDK 4.2 is upwards
+  binary-compatible with Eclipse SDK 3.8 except in those areas noted in the
+  <a href="http://git.eclipse.org/c/platform/eclipse.platform.common.git/plain/bundles/org.eclipse.platform.doc.isv/porting/eclipse_4_2_porting_guide.html?h=R4_HEAD" target="_top">
+    <em>Eclipse 4.2 Plug-in Migration Guide</em>
+  </a>. Downward plug-in compatibility is not supported. Plug-ins for Eclipse SDK
+  4.2 will not be usable in Eclipse SDK 3.8. Refer to
+  <a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">
+    <em>Evolving Java-based APIs</em>
+  </a> for a discussion of the kinds of API changes that maintain binary compatibility.</p>
+  
+<p><strong>Source Compatibility:</strong> Eclipse SDK 4.2 is upwards source-compatible
+  with Eclipse SDK 3.8 except in the areas noted in the
+  <a href="http://git.eclipse.org/c/platform/eclipse.platform.common.git/plain/bundles/org.eclipse.platform.doc.isv/porting/eclipse_4_2_porting_guide.html?h=R4_HEAD" target="_top">
+    <em>Eclipse 4.2 Plug-in Migration Guide</em>
+  </a>. This means that source files written
+  to use Eclipse SDK 3.8 APIs might successfully compile and run against Eclipse
+  SDK 4.2 APIs, although this is not guaranteed. Downward source compatibility
+  is not supported. If source files use new Eclipse SDK APIs, they will not be
+  usable with an earlier version of the Eclipse SDK. </p>
+  
+<p><strong>Workspace Compatibility:</strong> Eclipse SDK 4.2 is upwards
+  workspace-compatible with earlier 3.x and 4.x versions of the Eclipse SDK unless noted.
+  This means that workspaces and projects created with Eclipse SDK 4.1, 4.0, 3.8 .. 3.0 can be successfully
+  opened by Eclipse SDK 4.2 and upgraded to a 4.2 workspace. This includes both
+  hidden metadata, which is localized to a particular workspace, as well as metadata
+  files found within a workspace project (e.g., the .project file), which may
+  propagate between workspaces via file copying or team repositories. Individual
+  plug-ins developed for Eclipse SDK 4.2 should provide similar upwards compatibility
+  for their hidden and visible workspace metadata created by earlier versions;
+  4.2 plug-in developers are responsible for ensuring that their plug-ins recognize
+  metadata from earlier versions and process it appropriately. User
+  interface session state may be discarded when a workspace is upgraded. Downward
+  workspace compatibility is not supported. A workspace created (or opened) by
+  a product based on Eclipse 4.2 will be unusable with a product based on an earlier
+  version of Eclipse. Visible metadata files created (or overwritten) by Eclipse
+  4.2 will generally be unusable with earlier versions of Eclipse. </p>
+  
+<p><strong>Non-compliant usage of API's</strong>: All non-API methods and classes,
+  and certainly everything in a package with &quot;internal&quot; in its name or
+  x-internal in the bundle manifest entry,
+  are considered implementation details which may vary between operating environment
+  and are subject to change without notice. Client plug-ins that directly depend
+  on anything other than what is specified in the Eclipse SDK API are inherently
+  unsupportable and receive no guarantees about compatibility within a single
+  release much less with earlier releases. Refer to
+  <a href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">
+    <em>How to Use the Eclipse API</em>
+  </a> for information about how to write compliant plug-ins. </p>
+
+<h2>3. <a name="KnownIssues"></a> Known Issues</h2>
+<blockquote>
+  <a href="#I-General">
+  3.1 General problems</a><br/>
+  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#I-General-Startup">3.1.1 Startup</a><br/>
+  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#I-General-GCJ">3.1.2 GCJ</a><br/>
+  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#I-General-64bitJava">3.1.3 64-bit Java HotSpot(TM) VM</a><br/>
+  <a href="#I-Platform">3.2 Platform</a><br/>
+  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#I-Platform-Core">3.2.1 Core</a><br/>
+
+  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#I-Platform-Ant">3.2.2 Ant</a><br/>
+  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#I-Platform-User-Assistance">3.2.3 User Assistance</a><br/>
+  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#I-Platform-UI">3.2.4 UI</a><br/>
+  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#I-Platform-Text">3.2.5 Text</a><br/>
+  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#I-Platform-SWT">3.2.6 SWT</a><br/>
+
+  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#I-Platform-Team-CVS">3.2.7 Team and CVS</a><br/>
+  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#I-Platform-Install-Update">3.2.8  Install/Update</a><br/>
+  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#I-Platform-Debug">3.2.9 Debug</a><br/>
+  &nbsp;&nbsp;&nbsp;&nbsp; <a href="#I-Platform-Compare">3.2.10 Compare</a><br/>
+  <a href="#I-JDT">
+  3.3 Java development tools (JDT)</a><br/>
+  <a href="#I-PDE">
+  3.4 Plug-in Development Environment (PDE)</a><br/>
+
+</blockquote>
+<p>Note: Bug numbers refer to the Eclipse project bug database at <a href="http://dev.eclipse.org/bugs/">http://bugs.eclipse.org/bugs/</a></p>
+
+<h3>3.1 <a name="I-General">General problems</a></h3>
+
+<h3>3.1.1 <a name="I-General-Startup">General - Startup</a></h3>
+<h4>Installation/Configuration issues that can cause Eclipse to fail start</h4>
+<p>Here are some common problems that can cause Eclipse not to start:</p>
+<ul>
+  <li>As shown <a href="#TargetOperatingEnvironments">above</a>, Eclipse 4.2 requires 
+    at least a Java SE 6. Perhaps an older version of the VM is being found in 
+    your path. To explicitly specify which VM to run with, use the Eclipse <tt>-vm</tt> 
+    command-line argument. (See also the <a href="#RunningEclipse">Running Eclipse</a> 
+    section below.)</li>
+  <li>
+    Running Eclipse on Gentoo Linux may result in the following error message:
+    <div style="margin-left: 40px;">
+<tt>* run-java-tool is not available for sun-jdk-1.6 on i686<br/>* IMPORTANT: some Java tools are not available on some VMs on some architectures</tt>
+    </div>
+
+If this occurs, start Eclipse by specifying a -vm argument, either
+specify the path to a java vm or use: <tt>eclipse -vm `java-config</tt>
+--java` (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=176021">176021</a>)</li>
+<li>Eclipse must be installed to a clean directory and not installed over top of
+a previous installation. If you have done this then please re-install to a new
+directory. If your workspace is in a child directory of your old installation
+directory, then see the instructions below on "<a href="#upgrading">Upgrading Workspace from a
+Previous Release"</a>.</li>
+
+<li>Java sometimes has difficulty detecting whether a file system is writable. In
+particular, the method java.io.File.canWrite() appears to return true in
+unexpected cases (e.g., using Windows drive sharing where the share is a
+read-only Samba drive). The Eclipse runtime generally needs a writable
+configuration area and as a result of this problem, may erroneously detect the
+current configuration location as writable. The net result is that Eclipse will
+fail to start and depending on the circumstances, may fail to write a log file
+with any details. To work around this, we suggest users experiencing this
+problem set their configuration area explicitly using the <tt>-configuration</tt> command
+line argument. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=67719">67719</a>)</li>
+</ul>
+
+<h4><b>Invalid characters in install directory prevents Eclipse from starting</b></h4>
+<p>Eclipse will fail to launch if installed in a directory whose path
+contains certain invalid characters, including :%#&lt;&gt;&quot;!. The
+workaround is to install Eclipse in a directory whose path does not contain
+invalid characters. (bugs <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=3109">3109</a>
+and <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=17281">17281</a>)</p>
+
+<h4>Hanging during class loading when out of permanent generation memory</h4>
+<p>
+The Sun VM may hang indefinitely during class loading if it runs out of permanent
+generation memory.  This will cause CPU usage to stay at 100% until the process
+is ended.  See the section <a href="#RunningEclipse">Running Eclipse</a> for details
+on addressing this VM problem.
+</p>
+
+<h3>3.1.2 <a name="I-General-GCJ">General - GCJ</a></h3>
+<p>GCJ is an effort by the GCC team to provide an open source Java compiler and
+runtime environment to interpret Java bytecode. Unfortunately, the GCJ runtime
+environment is not an environment that is often tested on by Eclipse developers.</p>
+
+<p>The most common problems surrounding GCJ are:</p>
+<ul>
+<li>Eclipse does not start at all</li>
+<li>Eclipse throws a 'java.lang.ClassNotFoundException: org.eclipse.core.runtime.Plugin' that can be found in the logs (located in
+workspace/.metadata/.log)</li>	
+</ul>
+
+<p>The workspace's log file is a good place to check to identify whether GCJ is
+being used or not. Every Eclipse log session is prepended with
+information about the runtime environment that was used to run Eclipse. The log
+may include something like the following:</p>
+
+<code>java.fullversion=GNU libgcj 4.2.1 (Debian 4.2.1-5)</code>
+
+<p>If Eclipse does start, one can check which runtime environment is being used to
+run Eclipse by going to <b>Help &gt; About Eclipse SDK &gt; Installation Details &gt; Configuration</b>. The
+<b>About</b> dialog itself can also provide other information, the build identifier
+can be of particular interest as it is tagged by some distributions. This allows the
+user to identify whether Eclipse was downloaded through the distribution's
+package management system or directly from the eclipse.org web site.</p>
+
+Eg: <code>Build id: M20070212-1330 (Ubuntu version: 3.2.2-0ubuntu3)</code>
+
+<p>The two most common workarounds are:</p><ul>
+<li>download the Eclipse binary from eclipse.org directly</li>
+<li>run Eclipse using an alternate Java runtime environment</li></ul>
+
+<p>To download Eclipse, try one of the links below:</p><ul>
+<li><a href="http://www.eclipse.org/downloads/">http://www.eclipse.org/downloads/</a></li>
+<li><a href="http://download.eclipse.org/eclipse/downloads/">http://download.eclipse.org/eclipse/downloads/</a></li></ul>
+
+It is imperative that 64-bit builds are downloaded and used if a 64-bit Java
+runtime environment has been installed. Below are two sample tarball names of
+version 4.2 of the Eclipse SDK packaged for 32-bit and 64-bit processors.
+
+<pre>eclipse-SDK-4.2-linux-gtk.tar.gz (32-bit)
+eclipse-SDK-4.2-linux-gtk-x86_64.tar.gz (64-bit)</pre>
+
+<p>To run Eclipse with an alternate Java runtime environment, the path to the Java
+virtual machine's binary must be identified. With an Eclipse installation from
+the distribution, altering the $PATH variable to include the path to the
+alternate Java runtime environment is often not enough as the Eclipse that
+Linux distributions package often performs a scan internally to pick up GCJ by
+itself whilst ignoring what's on the $PATH. An example of the terminal's output
+is shown below:</p>
+
+<code>searching for compatible vm...<br/>
+  testing /usr/lib/jvm/java-7-icedtea...not found<br/>
+  testing /usr/lib/jvm/java-gcj...found</code>
+
+<p>Once the path to the virtual machine's binary has been identified, try running
+Eclipse with the following command:</p>
+
+<code>./eclipse -vm /path/to/jre/bin/java</code>
+
+<p>For an actual example, it might look something like the following:</p>
+
+<code>./eclipse -vm /usr/lib/jvm/sun-java-6/bin/java<br/>
+./eclipse -vm /opt/sun-jdk-1.6.0.02/bin/java</code>
+
+<p>If this seems to solve the problem, it is likely that the problem really was
+related to the use of GCJ as the Java runtime for running Eclipse. The
+eclipse.ini file located within Eclipse's folder can be altered to
+automatically pass this argument to Eclipse at startup. An example of its
+content is presented below:</p>
+
+<code>-showsplash<br/>
+org.eclipse.platform<br/>
+--launcher.XXMaxPermSize<br/>
+256m<br/>
+-vm<br/>
+/opt/sun-jdk-1.6.0.02/bin/java<br/>
+-vmargs<br/>
+-Xms40m<br/>
+-Xmx512m</code>
+
+<p>Note that every argument must be on its own line. More information about the
+eclipse.ini file can be found at <a href="http://wiki.eclipse.org/Eclipse.ini">http://wiki.eclipse.org/Eclipse.ini</a>.</p>
+
+<p>If problems persists after downloading an installation of Eclipse from
+eclipse.org and using a supported Java runtime environment (a list of which may be found <a href="#TargetOperatingEnvironments">above</a>), 
+you can seek further assistance through the <a href="http://www.eclipse.org/newsgroups/">newsgroups</a>, 
+the IRC <a href="irc://irc.freenode.net/#eclipse">channel</a>, 
+and/or <a href="https://bugs.eclipse.org/bugs/">bugzilla</a>.
+</p>
+
+<h3>3.1.3 <a name="I-General-64bitJava">General - 64-bit Java HotSpot(TM) VM</a></h3>
+<p>
+There is a known issue with the Java HotSpot(TM) 1.6.0 VM compiler which causes eclipse to 
+crash (see Sun bug <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6614100">http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6614100</a>,
+and Eclipse bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=214092">214092</a>).
+The crash usually occurs within a VM CompilerThread when attempting to compile the method org.eclipse.core.internal.dtree.DataTreeNode.forwardDeltaWith.
+</p>
+<p>
+This problem has been addressed in Sun Java 6 update 11, so the simplest resolution is
+to obtain the latest JRE release for your platform.
+To work around the issue you can exclude the method org.eclipse.core.internal.dtree.DataTreeNode.forwardDeltaWith from being compiled with the following
+VM argument:
+</p>
+
+<code>
+-XX:CompileCommand=exclude,org/eclipse/core/internal/dtree/DataTreeNode,forwardDeltaWith
+</code>
+
+<p>
+This VM argument can be placed in the eclipse.ini file after the -vmargs line like the following:
+</p>
+
+<code>
+-startup<br/>
+plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.0.200.v20090306-1900<br/>
+--launcher.library<br/>
+plugins/org.eclipse.equinox.launcher_1.0.200.v20090429-1630.jar<br/>
+-showsplash<br/>
+org.eclipse.platform<br/>
+--launcher.XXMaxPermSize<br/>
+256m<br/>
+-vmargs<br/>
+-XX:CompileCommand=exclude,org/eclipse/core/internal/dtree/DataTreeNode,forwardDeltaWith<br/>
+-Xms40m<br/>
+-Xmx256m<br/>
+</code>
+
+<p>
+There have been reports of other classes that cause the compiler to crash.  If all else fails you can 
+disable the compiler with the VM arg &quot;-Xint&quot;. 
+</p>
+
+<h3>3.2 <a name="I-Platform">Platform</a></h3>
+
+<h3>3.2.1 <a name="I-Platform-Core">Platform - Core</a></h3>
+
+<h4>Installing plug-ins by unzipping them into the plugins directory</h4>
+<p>New plug-ins can be installed into the system by unzipping them into the plugins
+directory. However this is not recommended, and the dropins directory should be
+used for this purpose instead. Note that unzipping a different
+version of a plug-in that is already installed will have no effect. To change the version
+of a plug-in installed in your system, you need to either perform an update, or install
+a feature patch.</p>
+
+<h4>No branding with old config.ini</h4>
+<p>If you have an old config.ini file and use it with a new Eclipse build, you
+may not get the correct product branding. This is because the id of the standard
+Eclipse product changed. Users in shared install scenarios may end up in this
+situation as previous builds of Eclipse automatically generated config.ini files
+in some cases. The work around is either to delete the local config.ini or
+update the eclipse.product line to read eclipse.product=org.eclipse.platform.ide.</p>
+
+<h4>Problems with classloaders in created threads</h4>
+<p>There is a known issue with trying to load classes from a newly-created
+thread using a class loader different from the plug-in class loader. The result
+will be a <code>ClassNotFoundException</code>. As a workaround, do the
+following:</p>
+<ol>
+  <li>Create a thread in which to run your code.</li>
+  <li>Send yourThread.setContextClassLoader(yourClassLoader); // you can find
+    your classloader by grabbing a class it loaded (YourPluginClass.class.getClassLoader())</li>
+  <li>Run your code in the newly created thread.</li>
+</ol>
+<p>If you set the context class loader for the current thread, you are
+competing with other users of the thread (all of Eclipse), so the results will
+be unpredictable. However, there should be no problem in practice provided you
+reset the context class loader back to its original value when your use in the
+current thread is&nbsp;complete. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=8907">8907</a>)</p>
+
+<h4>Deadlock creating executable extension in Plugin.startup</h4>
+<p>If <code>Plugin.startup</code> code is too complex and performs tasks such
+as creating an executable extension, a deadlock situation can be created. Only
+simple bookkeeping tasks should be performed in <code>Plugin.startup</code>
+code. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=5875">5875</a>)</p>
+<h4>Potential Problems Converting Plug-in Manifests</h4>
+<p>If your plug-in ships with a plug-in manifest and not an OSGi bundle manifest,
+is shipped as a JAR file, and contains a nested JAR file then there may be
+problems in the automatic generation of the bundle manifest file. The packages
+defined in the nested JAR may not be exported correctly in the <tt>Export-packages</tt>
+
+bundle manifest header. To work around this you should ship your plug-in with a
+bundle manifest. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=97689">97689</a>)</p>
+<h4>Location for Debug Options File on Mac OS</h4>
+<p>If you are running in debug mode on Mac OS, the default location for the
+.options file is inside the application bundle in the Eclipse.app/Contents/MacOS
+directory (like the eclipse.ini). (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=88782">88782</a>)</p>
+
+<h4>Issues with JNI that use FindClass</h4>
+<p>
+There may be issues when using a JNI implementation that uses FindClass 
+in a function where the JNIEnv pointer is not available, such as in a C 
+callback (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=125250">125250</a>).  The reason is that FindClass, in this case, uses the application
+class loader to find the class.
+If the desired class is in the classpath used for the application classloader
+(e.g. defined by the VM argument -cp &lt;classpath&gt;), as it would typically be in 
+a stand-alone application, there is no problem.  However, under
+Eclipse, the application classloader does not have access to classes 
+contained in plug-ins.  Eclipse uses its own class loader to find classes 
+contained in plug-ins.
+</p>
+<p>
+The proper plug-in class loader is used by FindClass in JNI functions which are 
+passed the JNIEnv pointer, but not when you have to use AttachCurrentThread to get the 
+JNIEnv pointer.  In this case the application classloader is used.
+</p>
+<p>
+For example, the following will fail because AttachCurrentThread is used to 
+get the JNIEnv pointer:</p>
+<pre>
+static JavaVM* jvm;  // Global variable
+
+void myCallback(void) {
+    JNIEnv* env;
+    jvm-&gt;AttachCurrentThread((void**)&amp;env, NULL);
+    // Fails if some/class is not in the application classloader:
+    jclass cls = env-&gt;FindClass(&quot;some/class&quot;);
+    jmethodID methodID = env-&gt;GetMethodID(cls, &quot;methodName&quot;,
+      &quot;(Ljava/lang/String;)V or whatever signature&quot;);
+    env-&gt;CallVoidMethod(callback, methodID, ...);
+    jvm-&gt;DetachCurrentThread();
+  }
+}
+</pre>
+<p>
+A solution is to cache the method ID, for example:
+</p>
+<pre>
+static jmethodID mid;  // Global variable
+
+JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *vm, void *reserved) {
+...
+  // Store the JavaVM pointer
+    jvm = vm;
+
+  // Find the class and store the method ID
+  // Will use the class loader that loaded the JNI library
+    jclass cls = env-&gt;FindClass(className&quot;some/class&quot;);
+    if(!cls) goto ERR;
+
+    mid = env-&gt;GetMethodID(cls, &quot;methodName&quot;,
+      &quot;(Ljava/lang/String;)V or whatever signature&quot;);
+    if(!mid) goto ERR;
+...
+}
+
+void myCallback(void) {
+    JNIEnv* env;
+    jvm-&gt;AttachCurrentThread((void**)&amp;env, NULL);
+    env-&gt;CallVoidMethod(callback, mid, ...);
+     // Handle error ...
+    jvm-&gt;DetachCurrentThread();
+  }
+}
+</pre>
+
+<h3>3.2.2 <a name="I-Platform-Ant">Platform - Ant</a></h3>
+<h4> Custom Ant tasks and Ant types must be separate from plug-in library JARs</h4>
+<p>Including the class files for custom Ant tasks or Ant types in the regular
+code JAR for your plug-in causes problems. These class files must be provided in
+a separate JAR that is contributed to the <code>org.eclipse.ant.core.antTasks</code>
+or <code>antTypes</code> extension point (and not declared as a library in the
+plug-in's manifest). This ensures that the Ant tasks and types are loaded by the
+special Ant class loader and not by a plug-in classloader. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=34466">34466</a>).</p>
+
+<h4> Concurrent Ant builds not supported</h4>
+<p>Eclipse can run Ant in the same JVM as the rest of Eclipse. Several aspects
+of Ant and its use of global Java resources (such as System.out and System.err),
+make it unsafe to run more than one Ant build concurrently in the same JVM. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=24129">24129</a>).</p>
+
+<h4>XDoclet support from within Eclipse</h4>
+<p>Since there are differences when running Ant from the commandline and within Eclipse, some extra steps may be needed to have XDoclet support function correctly within Eclipse. Problems may occur creating XDoclet subtasks. The workarounds and full discussion can be found in bug report. (bug
+<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=37070">37070</a>)</p>
+
+<h4>Ant Editor code completion based on Ant 1.6.x</h4>
+<p>Code completion provided by the Ant editor does not respect the user-specified version of org.eclipse.ant.core plug-in or ANT_HOME. 
+Code completion proposals are mostly based on Ant 1.6.x with some updates to Ant 1.8.3 (bug
+<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=193046">bug 193046</a>)</p>
+
+<h4> Setting build loggers not supported when debugging Ant builds</h4>
+<p>When debugging Ant builds within Eclipse, setting <code>-logger</code> as a program argument will be ignored.</p>
+
+<h4>Renaming an External Tool builder set to run during auto-build will cause errors</h4>
+<p>If you rename an existing external tool builder that is configured to run during auto-builds, you will get the following error:
+ Errors during build.
+      Errors running builder "Integrated External Tool Builder" on project
+      &lt;PROJECT_NAME&gt;.
+      The builder launch configuration could not be found.
+The workaround is to first disable the builder for auto-builds and then rename the builder.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=118294">118294</a>)</p>
+
+<h4>Slow typing/saving of the Ant editor with imports that define numerous macrodefs</h4>
+<p>The Ant editor is slow on saving with buildfiles that have &lt;import&gt; declarations of buildfiles that have numerous &lt;macrodef&gt;s.
+See bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=125117">125117</a> for a possible workaround</p>
+
+<h4>Failure to run Ant builds on non-Windows platforms if Eclipse installed in location with spaces in the path</h4>
+<p>Due to a bug in Ant 1.7.0, Ant builds will fail with an IllegalArgumentException if the Eclipse installation is in a location with spaces in the path.
+Embedded usage of Ant builds, such as plug-in export will also fail.
+See bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=187993">187993</a> for possible workarounds</p>
+
+<h4>Ant 1.8.x reports missing libraries as build failures</h4>
+<p>
+In Ant 1.8.x, if you try to use a task that requires additional libraries and you do not have the libraries on the Ant classpath, the build will now properly report as failed. 
+In previous versions of Ant, the build would still report that it had suceeded even though it actually failed to run any of the tasks from additional bundles. See <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=344518">bug 344518</a>.
+</p>
+<p>
+For more information on tasks that require additional bundles please refer to the <a href="http://www.apache.org/dist/ant/RELEASE-NOTES-apache-ant-1.8.2.html">Ant 1.8.2 release notes</a>
+and the <a href="http://ant.apache.org/manual/install.html#optionalTasks">Optional Tasks</a> section in the At manual. 
+</p>
+
+<h3>3.2.3 <a name="I-Platform-User-Assistance">Platform - User Assistance</a></h3>
+<h4>Welcome page not displayed properly (Linux/Unix)</h4>
+<p>The default Welcome implementation is HTML-based and requires a supported browser
+in order to work. If no supported browser can be found, Welcome falls back to its
+Forms-based implementation, which has a different (simpler) appearance. Consult the
+<a href="http://www.eclipse.org/swt/faq.php#browserplatforms">SWT FAQ</a> for supported
+browsers and setting up your browser to work with eclipse.
+</p>
+
+<h4>Help browser tool bar buttons do not work for some documents</h4>
+<p>The Help browser's Print, Synchronize, and Bookmark buttons do not work for
+pages that are not actually installed with the product. However, you can always
+use the print command in the browser's context menu to print the page you're
+reading. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=44216">44216</a>)</p>
+<h4> Help documents not displayed
+in a browser or very slow document loading (Windows only)</h4>
+
+If your LAN settings are not properly configured for local host access, your
+Help browser might open to a blank page or display an HTTP error instead of a
+help page, or you may experience long delays when loading help documents. Your
+system administrator can configure your LAN settings so that help documents can
+be accessed from the local help server.
+<blockquote>
+  <ol>
+    <li>In the Control Panel, open <b>Internet Options</b>, select the <b>Connections</b>
+      tab and choose <b>LAN Settings</b>.</li>
+    <li>If your host was configured to use DHCP for IP assignment, make sure
+      that the &quot;Automatically detect settings&quot; check box is cleared.</li>
+    <li>If you use a proxy server, ensure that the &quot;Bypass proxy server
+      for local addresses&quot; is selected.</li>
+    <li>In &quot;Advanced&quot; settings for proxies, add
+      &quot;127.0.0.1;localhost&quot; to the &quot;Exceptions&quot; if these
+      addresses are not listed.</li>
+    <li>If you are using an automatic configuration script for proxy
+      settings, and are not sure that the script is correct, clear the &quot;Use
+      automatic configuration script&quot; check box.</li>
+
+  </ol>
+</blockquote>
+<h4> Working disconnected from
+the network (Windows only)</h4>
+If you are experiencing problems when not connected to the network, you must
+install the loopback adapter from the Windows installation CD. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=831">831</a>)
+<h4> Using Internet Explorer in
+offline mode (Windows only)</h4>
+
+If you have been using Internet Explorer in Offline mode, when you access the
+help system you will get a message indicating that the web page you requested is
+not available offline or a blank page will display. Click <b>Connect</b> or
+deselect &quot;Work Offline&quot; in the Internet Explorer &quot;File&quot; menu
+to return the system behavior to normal.
+<h4>Help topics not highlighted in High Contrast mode (Windows only)</h4>
+<p>Windows High Contrast settings are not consistently picked up by Internet
+Explorer when they are set from the Accessibility Options utility as opposed to
+when they are set using the predefined schemes. On Windows XP, it is recommended
+to set High Contrast as follows: Right click the desktop, chose properties,
+select Windows Classic style from the Windows and buttons drop down on the
+Appearance tab, and choose your scheme (for example High Contrast Black) from
+Color Scheme drop down. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=28609">28609</a>)</p>
+
+<h3>3.2.4 <a name="I-Platform-UI">Platform - UI</a></h3>
+<h4>High contrast settings</h4>
+<p>Eclipse was tested for High Contrast using 1152 x 864 resolution in Windows
+XP High Contrast mode. You can select this mode by selecting Accessibility
+Options &gt; Display &gt; Use High Contrast from the Windows XP Control Panel
+menu.</p>
+
+<h4> Dirty state not tracked properly for OLE documents (Windows only)</h4>
+<p>The dirty state for an OLE document is not updated properly. This causes
+Eclipse to prompt to save the contents of the editor when the document is
+closed, even if the contents have already been saved. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=2564">2564</a>)</p>
+<h4> OLE document crashes can cause Eclipse to also crash (Windows only)</h4>
+<p>If an OLE document crashes, Eclipse can crash, or the workbench menus can
+become inconsistent.</p>
+<h4>Toolbars only containing contributed controls exhibit display errors on Mac/Linux</h4>
+<p>
+Currently there is no way on the Max or Linux platforms to define the <b>height</b> for controls contributed to
+toolbars, nor will those platforms respect the size returned by the control's <code>computeSize</code> method. If you
+encounter this issue there is currently no truly viable workaround.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=183003">183003</a>)
+</p>
+<h4>Customizing menus and toolbars not working reliably</h4>
+<p>
+The Customize Perspective Dialog can still be used to turn on action sets in the Command Groups Availability tab,
+but the items contained within the action sets are no longer displayed in the dialog.  The Toolbar Visibility
+and Menu Visibility no longer display the correct information or icons, and will not work correctly.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=378845">378845</a>)
+</p>
+<h4>Cannot launch a workbench with &quot;-data @none&quot;</h4>
+<p>
+Eclipse 3.x RCP apps cannot be launched with no workspace.  The workaround is to supply a /tmp directory to 
+<b>-data</b> when launching.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=380853">380853</a>)
+</p>
+<h4>Launching an inner eclipse can lead to PermGen errors</h4>
+<p>
+On some Oracle JVMs, launching an inner eclipse during plug-in development can lead to PermGen errors
+for the inner eclipse.  The native launcher checks the JVM  and can add <i>-XX:MaxPermSize=256m</i>,
+but PDE launches simply use java and don't go through the native launchers.  The workaround is to add
+the appropriate JVM arg to your launch config or to the <i>Preferences &gt; Java &gt; Installed JREs</i>.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=339763">339763</a>)
+</p>
+<h4>Eclipse doesn't exit dragging mode</h4>
+<p>
+Sometimes after releasing the mouse while dragging a part, eclipse doesn't exit drag mode.
+The workaround is to hit <b>ESC</b>.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=379590">379590</a>)
+</p>
+<h4>Some key shortcuts stop working after switching schemes</h4>
+<p>
+Sometimes after switching schemes (to and from Emacs) some keys will stop working or not function
+correctly (CTRL+L, CTRL+K, CTRL+A, etc).
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=378684">378684</a>)
+</p>
+<h4>Capabilities and Activities don't affect the menus and toolbars</h4>
+<p>
+Capabilities used to hide GUI elements like menu entries won't work yet, as Capabilities have not
+been fully implemented in the 4.2 Workbench.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=359778">359778</a>)
+</p>
+
+<h3>3.2.5 <a name="I-Platform-Text">Platform - Text</a></h3>
+None.
+
+<h3>3.2.6 <a name="I-Platform-SWT">Platform - SWT</a></h3>
+<h4>Eclipse plug-in based on the SWT Browser throws exception</h4>
+<p>The SWT Browser widget uses a platform-specific web browser to render HTML.
+The org.eclipse.swt.SWTError exception (&quot;No more handles&quot;) is thrown
+on platforms that don't meet the requirements for running the Browser widget.
+Supported platforms and prerequisites are listed on the SWT FAQ item <a href="http://www.eclipse.org/swt/faq.php#browserplatforms">
+&quot;Which platforms support the SWT Browser?&quot;</a>.</p>
+
+<h4>Opening File Dialog crashes eclipse (Vista only)</h4>
+<p>On Vista, launching eclipse using <code>-vmargs -Xmx[any size]</code> can crash eclipse when the FileDialog is opened.
+The workaround is to use the default heap size, i.e. do not use the <code>-Xmx</code> VM args.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=188317">188317</a>)</p>
+
+<h4>Crash while editing text (Windows XP with SP2 only)</h4>
+<p>Some users who have installed Service Pack 2 on Windows XP have experienced
+crashes while using editors in Eclipse.  The workaround is to place a working version 
+of Windows\System32\USP10.DLL in the Eclipse startup directory or uninstall
+Service Pack 2.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=56390">56390</a>)</p>
+
+<h4>Eclipse hangs when pasting from an unresponsive application (GTK only)</h4>
+<p>If the application that is supplying the clipboard material is unresponsive,
+the paste operation hangs Eclipse for several minutes. This situation can be
+encountered when copying from an Eclipse target workbench, suspending the target
+workbench at a breakpoint and pasting into the hosting Eclipse workbench. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=44915">44915</a>)</p>
+
+<h4>IME conversion problem (Solaris GTK only)</h4>
+<p>When typing Japanese text, the conversion to Kanji must be done one ideogram at
+a time. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=226636">226636</a>)</p>
+
+<h4>Typing in an editor crashes with IBM 1.5 VM (Linux GTK PPC only)</h4>
+<p>When running on the IBM Java 5.0 VM, Eclipse crashes while the user is typing in an editor.
+If using this VM you must disable the JIT with the -Xnojit vm argument to avoid the crashes
+(see bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=116730">116730</a>).
+The command line for launching Eclipse with this vm should be: <br/>
+<code>eclipse -vmargs -Dosgi.locking=none -Xnojit</code>
+</p>
+
+<h4>Eclipse won't start (Linux GTK PPC only)</h4>
+<p>Eclipse fails to create a lock file with reason &quot;No locks available&quot;. 
+To launch eclipse you must disable file locking using the osgi.locking property.
+For example, you could launch eclipse as follows: <br/>
+<code>eclipse -vmargs -Dosgi.locking=none</code>
+</p>
+
+<h4>Strings may be truncated or incorrectly wrapped on RHEL5 (Linux GTK only)</h4>
+<p>
+Strings on wrapping Controls may not appear correctly in some locales on RHEL5 as a result
+of a bug in Pango version 1.14.x.  This problem can be fixed by upgrading the installed
+Pango library to a version that is newer than 1.14.x. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=231951">231951</a>)
+</p>
+
+<h4>Block Selection functionality provided by StyledText is not BIDI aware</h4>
+<p>
+When the orientation of characters under the left and right edges of the block
+selection rectangle are not the same, the actual selection ranges (in memory)
+differ from the visual representation of the selection. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=277929">277929</a>)
+</p>
+
+<h4>Older versions of some Windows screen readers no longer work with Eclipse</h4>
+<p>JAWS versions 8 and 9 and Window-Eyes version 6 no longer work well with Eclipse and other SWT applications.
+Window-Eyes 6 will cause Eclipse to crash, and JAWS 8 and 9 can cause SWT applications to crash.
+This happens because IAccessible2 support was added to SWT for Eclipse 3.7, but these older screen reader versions contain
+partial implementations of IAccessible2 that do not follow the current IAccessible2 specification.</p>
+<p>
+The workaround for these cases is to specify Java property <code>org.eclipse.swt.accessibility.UseIA2</code> with value <code>false</code>,
+which will instruct SWT to not attempt to use IA2 interfaces.  An easy way to set this property is to specify VM argument
+<code>-Dorg.eclipse.swt.accessibility.UseIA2=false</code> when launching Eclipse or your SWT application. (bug
+<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=313182">313182</a>)</p>
+
+<h4>Drawing problems when using non-advanced graphics on recent GTK versions</h4>
+<p>On modern Linux distributions with a GTK version greater than 2.18, clipping problems and pixel corruption 
+can occur if the SWT client uses non-advanced GC calls. These problems seem to be caused by low-level bugs 
+in the interactions between GDK and X.
+</p>
+
+<h4>Menus do not appear in Unity desktop menu bar</h4>
+<p>On recent Ubuntu Linux distributions that feature the Unity desktop, the menus from the workbench 
+will not appear in the top desktop menu bar. They will continue to appear in the shell.</p>
+
+<h4>Slider controls do not draw on Ubuntu</h4>
+<p>Sliders do not work on Linux distros with overlay scrollbars enabled  (such as
+Ubuntu 12.04). A workaround for this is to disable the overlay scrollbars
+(export LIBOVERLAY_SCROLLBAR=0 ) before launching Eclipse.</p>
+
+<h4>BIDI Segments in Text controls</h4>
+<p>BIDI Segments in text controls only work on Windows and GTK.</p>
+
+<h4>Toolbar controls on GTK are not properly sized</h4>
+
+<p>There is a known problem in ToolItem that prevents control set in separators
+from being sized properly. (See Bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=377961">377961</a>)
+</p>
+
+<h4>Navigation using tab and arrow keys</h4>
+<p>
+Navigating directly to a specific view or editor using keyboard shortcuts is the
+same in Eclipse 4.x as it was in Eclipse 3.x with the exception of tab traversal.
+In Eclipse 3.x, tab, shift+tab, ctrl+tab and ctrl+shift+tab always traversed within
+a view or editor stack. In 4.x, these keys traverse through all of the view and editor stacks.
+When traversing in the forward direction (tab or ctrl+tab), the active view or editor
+will take focus. When navigating in the reverse direction, other elements of a view,
+such as the view toolbar or menu, can take focus as well. This behavior can be a
+little quirky, and we are looking into normalizing it for 4.2.1
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=376011">376011</a>)
+</p>
+
+<h3>3.2.7 <a name="I-Platform-Team-CVS">Platform - Team - CVS</a></h3>
+<p>The following are known problems with the CVS repository provider only, and
+do not apply to other repository providers. Additional information on how to use
+CVS from Eclipse can be found in the <a href="http://dev.eclipse.org/viewcvs/index.cgi/~checkout~/platform-vcm-home/docs/online/cvs_features2.0/cvs-faq.html">Eclipse
+CVS FAQ</a>.</p>
+<h4> CVS server compatibility</h4>
+<p>The CVS plug-in parses messages returned from the CVS server. If the format
+of these messages is not as expected, some of the plug-in's functionality may be
+missing. The CVS plug-in is compatible with all stable 1.11.X builds of the CVS
+server, and should be compatible with future releases in that stream unless text
+message formats change (the last tested server was 1.11.22). As for the 1.12.X
+feature releases of CVS, the Eclipse CVS client has been tested with builds up
+to 1.12.13. However, future releases could easily break the Eclipse CVS client.
+Basic functionality, such as Checkout, Commit, and Update, should always work,
+but there may be problems with more advanced commands such as Synchronizing and
+Browsing the repository.</p>
+  
+<h4>SSH2 proxy settings lost upgrading to 3.3</h4>
+<p>CVS now uses the Platform proxy settings. As a result, any CVS proxy settings
+will be lost and must be re-entered on the General&gt;Network Connections preference 
+page. </p>
+<h4>Connection cannot be found after initially missing</h4>
+<p>If a connection initially fails due to a network problem, the connection may
+continue to fail even when the network problem is fixed. In order to establish
+the connection you must exit and restart Eclipse. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=9295">9295</a>)</p>
+
+<h4>&quot;Received broken pipe signal&quot; error from server</h4>
+<p>Eclipse sometimes performs multiple commands within a single connection to
+the server. This may cause problems with CVS servers that are running server
+scripts in response to certain commands. (bugs <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=23575">23575</a>
+and <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=23581">23581</a>)</p>
+
+<h4>&quot;Terminated with fatal signal 10&quot; error from server</h4>
+<p>There is a bug in the CVS server related to some compression levels. If you
+get this error, changing the compression level on the CVS preference page may
+help. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=15724">15724</a>)</p>
+<h4>&quot;Unknown response&quot; error using ext connection method</h4>
+<p>There are a few situations that can result in an &quot;Unknown response&quot;
+error messages when using the ext connection method. One situation involves
+using an external communications client (e.g. rsh or ssh) that adds CRs to the
+communications channel (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=21180">21180</a>).
+Another involves Eclipse not properly reading the stderr output of the external
+communications tool. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=11633">11633</a>)</p>
+
+<h4>A disabled CVS capability may not be auto-enabled in existing workspaces</h4>
+<p>New in 3.0 is the ability to disable capabilities and the CVS support in
+Eclipse can be disabled. However, for backwards compatibility the CVS capability
+is auto-enabled in existing workspaces that already contain CVS projects. The
+auto-enabling function may not run if the team support plugin is not loaded at
+startup. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=66977">66977</a>)</p>
+<h4>Builder output files may appear as changed</h4>
+<p>When folders containing build output are shared they may get improperly
+marked as dirty when build output is generated.</p>
+
+<h4>Enabling GNOME proxy support</h4>
+<p>GNOME applications can make use of proxy settings defined in this environment.
+If set, Eclipse will use it prior to proxy settings declared using env variables.
+This feature is disabled by default, to enable it launch Eclipse with
+<code>"-Dorg.eclipse.core.net.enableGnome"</code> switch. That is,</p>
+<pre>eclipse -Dorg.eclipse.core.net.enableGnome</pre>
+
+<h3>3.2.8 <a name="I-Platform-Install-Update">Platform - Install/Update</a></h3>
+<h4>Manually installing features and plug-ins on a FAT file system (Windows only)</h4>
+
+<p>When features and plug-ins are manually installed on top of an Eclipse-based
+ product install located on a FAT file system that has already been run at least 
+ once, the product must be explicitly restarted with -clean. That is,</p>
+<pre>eclipse.exe -clean
+</pre>
+
+<h4>Connecting to untrusted sites using https</h4>
+<p>You cannot install or update software from a site using https whose certificate
+is not chained to a trusted root certificate in your local certificate store. This typically
+means the server is using a self-signed certificate, or a certificate authenticated by
+an unknown third party.</p>
+
+<h4>Extension location is lost if the install path changes</h4>
+<p>A previously configured extension location may be temporarily removed if the install is moved or mounted 
+under a different path. This only happens when the link file that configures the 
+extension location uses a relative path that points to a directory under the Eclipse 
+install. On a second startup using the same install path, the extension location 
+is added again (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=95403">95403</a>). <br/></p>
+
+<h4>Feature patches can only be installed from Eclipse 3.4-based update sites</h4>
+<p>Feature patches can only be installed from update sites designed for Eclipse 3.4 or greater.
+Specifically, the update site must have the necessary metadata for Equinox p2 (a content.xml
+or content.jar file). This data can be generated by building an update site using Eclipse 3.4
+or newer, or running the p2 metadata generator on an update site built using earlier versions
+of the Eclipse SDK. See the help topic <i>Generating p2 metadata</i> for more details on running the p2 metadata
+generator (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=244483">244483</a>).
+</p>
+
+<h3>3.2.9 <a name="I-Platform-Debug">Platform - Debug</a></h3>
+<p>None. (Known problems with the Java debugger appear below in the <a href="#I-JDT">JDT</a>
+section.)</p>
+
+<h3>3.2.10 <a name="I-Platform-Compare">Platform - Compare</a></h3>
+<p>None.</p>
+
+<h3>3.3 <a name="I-JDT">Java development tools (JDT)</a></h3>
+
+<h4>Multiple regions formatting in a given source snippet</h4>
+In version 3.4, the new API method <code>org.eclipse.jdt.core.formatter.CodeFormatter.format(int, String, IRegion[], int, String)</code>
+has been added to allow the formatting of several regions in a source snippet with a single pass.<br/>
+Even if specified, this method does not currently accept comments of the following kinds:
+<ul>
+<li><code>org.eclipse.jdt.core.formatter.CodeFormatter#K_SINGLE_LINE_COMMENT</code></li>
+<li><code>org.eclipse.jdt.core.formatter.CodeFormatter#K_MULTI_LINE_COMMENT</code></li>
+<li><code>org.eclipse.jdt.core.formatter.CodeFormatter#K_JAVA_DOC</code></li>
+</ul>
+This will be fixed in a future release (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=233967">233967</a>).
+
+<h4>Searching for constant field references</h4>
+<p>Search does not find references to constant fields inside binaries because
+the Java Language Specification mandates that constant field values be inlined
+in the class file's byte codes, leaving no trace of a field reference.&nbsp;(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=12044">12044</a>)</p>
+
+<h4> Cut, copy, paste not working
+for linked resources in views showing Java elements</h4>
+<p>The cut, copy, and paste actions do not work for linked files and folders
+appearing in views that show Java elements, including the Package Explorer. The
+workaround is to use these actions from the Navigator view instead. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=34568">34568</a>)</p>
+<h4> Java working sets not
+working correctly for elements from JRE system library container</h4>
+<p>Applying a working set consisting entirely of elements from the JRE System
+library container as a filter to the packages view might result in an empty
+Package Explorer. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=30442">30442</a>)</p>
+
+<h4>Breakpoints unreliable running Sun 1.6.0_14</h4>
+Developers debugging applications on Sun's 1.6.0_14 
+virtual machine should be aware that breakpoints are unreliable (i.e. do 
+not always suspend execution). The problem occurs on Windows and Linux 
+platforms. This is an issue with the VM and not with Eclipse.
+The workaround is to use the <code>-XX:+UseParallelGC</code> VM option. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=279137">279137</a>).
+
+<h4>Some refactoring script operations fail with Sun 6.0 JREs</h4>
+<p>Creating and applying refactoring scripts sometimes fails with Sun 6.0 JREs
+due to a bug in the XML parser that is shipped with those VMs.
+A workaround is to use a J2SE 5.0 VM or an IBM 6.0 VM.
+Another workaround is to replace the XML parser using the
+<a href="http://download.oracle.com/javase/6/docs/technotes/guides/standards/index.html">Java Endorsed Standards Override Mechanism</a>:
+</p>
+<ol>
+  <li>Get original versions of xml-apis.jar, xercesImpl.jar, xalan.jar, and serializer.jar from Apache, e.g.
+    xalan-j_2_7_1-bin.zip from <a href="http://xml.apache.org/xalan-j/downloads.html">here</a>.
+  </li>
+  <li>Unpack the archive and copy the 4 JARs into <code>&lt;path-to-your-JavaSE6.0-install&gt;\jre\lib\endorsed\</code>.
+  </li>
+</ol>
+(see Sun bug <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6760982">http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6760982</a>,
+Eclipse bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=262820">262820</a>)
+
+<h4>Suspend on uncaught exception overrides exception breakpoint location filters</h4>
+<p>Exception breakpoints can be configured with location filters (inclusive and 
+  exclusive). When an unchecked exception is configured to <b>not</b> suspend 
+  execution in a specific class, execution will still suspend when the user preference 
+  to suspend on uncaught exceptions is on. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=66770">66770</a>)</p>
+
+<h4>Running Java programs with non-Latin-1 characters in package or class names</h4>
+You get a <code>java.lang.NoClassDefFoundError</code> when running Java
+programs with non-Latin characters in the package or class names. The workaround
+is to package the class files as a JAR file and run the program out of the JAR
+and not from the file system directly. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=4181">4181</a>)
+
+<h4>Cannot run or debug class in
+a project with GB18030 characters in project name</h4>
+<p>Most class libraries do not properly support the creation of a system
+process (via <code>java.lang.Runtime.exec(...)</code>) when the specified
+command line contains GB18030 characters. This limitation means the debugger
+cannot launch applications when the command line it generates contains GB18030
+characters. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=32206">32206</a>)</p>
+
+<h4>Cannot detect installed JRE with GB18030 characters in path name</h4>
+<p>Automatic JRE detection fails when the JRE is stored in a directory
+containing GB18030 characters in its name. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=33844">33844</a>)</p>
+
+<h4>Cannot generate Javadoc for packages with GB18030 characters in the name</h4>
+<p>Most class libraries do not properly support the creation of a system
+process (via <code>java.lang.Runtime.exec(...)</code>) when the specified
+command line contains GB18030 characters. Since Javadoc is created using the
+Javadoc executable provided with the JDK, generating Javadoc fails if the
+package or class name contains GB18030 characters. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=32215">32215</a>)</p>
+
+<h4> Unable to debug stack
+overflows</h4>
+
+<p>If a debug session suspends on a <code>java.lang.StackOverflowError</code>
+exception (due to an exception breakpoint), the debugger may not be able to
+retrieve any debug information from the target JVM. As well, the debugger may
+not be able to reliably interact with the target JVM past this point. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=19217">19217</a>)</p>
+<h4> Evaluation limitation</h4>
+<p>The debugger uses threads in the target JVM to perform evaluations (both
+explicit evaluations that the user requests, and implicit evaluations such as <code>toString()</code>
+invocations in the <b>Variables</b> view). The Java Debug Interface (JDI)
+requires that the thread in which an evaluation is performed be suspended by a
+user event (that is, a breakpoint or step request). Evaluations cannot be
+performed on threads suspended by the suspend action. As well, when a breakpoint
+is configured to suspend the JVM rather than just the individual thread, the
+threads which did not encounter the breakpoint are not in a valid state to
+perform an evaluation. When an evaluation is attempted in a thread that is not
+in a valid state to perform an evaluation, an error message will appear to the
+effect of &quot;Thread must be suspended by step or breakpoint to perform method
+invocation&quot;. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=34440">34440</a>)</p>
+
+<h4> Missing debug attributes</h4>
+The debugger requires that class files be compiled with debug attributes if
+it is to be able to display line numbers and local variables. Quite often, class
+libraries (for example, &quot;<code>rt.jar</code>&quot;) are compiled without
+complete debug attributes, and thus local variables and method arguments for
+those classes are not visible in the debugger.
+<h4> Using Hot Code Replace</h4>
+<p>Hot code replace is supported on JDK 1.4.x VMs, and IBM J9 VMs. The debugger
+will attempt to replace all class files that change in the workspace as the user
+edits and builds source code. However, hot code replace is limited to changes
+that a particular virtual machine implementation supports. For example, changes
+within existing methods may be supported, but the addition or removal of members
+may not be.</p>
+<h4> Scrapbook</h4>
+Setting a breakpoint inside a scrapbook page is not supported.
+
+<p>When a snippet is run in the scrapbook which directly or indirectly calls <code>System.exit(int)</code>,
+the evaluation cannot be completed, and will result in a stack trace for a <code>com.sun.jdi.VMDisconnectedException</code>
+being displayed in the scrapbook editor.</p>
+<p>Terminating a scrapbook page while it is performing an evaluation results
+in a <code>com.sun.jdi.VMDisconnectedException</code> being displayed in the
+scrapbook editor.</p>
+<h4> Debugging over slow
+connections</h4>
+A global Java debug preference specifies the debugger timeout, which is the
+maximum amount of time the debugger waits for a response from the target VM
+after making a request of that VM. Slow connections may require that this value
+be increased. The timeout value can be edited from the <b>Java &gt; Debug </b>preference
+page. Changing the timeout value only affects subsequently launched VM, not VMs
+that are already running.
+
+<h4> Updating of inspected values</h4>
+When inspecting the result of an evaluated expression in the debugger, it is
+important to note that the result displayed is the result of that expression at
+the time it was evaluated. For example, when inspecting a simple integer counter
+(primitive data type), the value displayed in the Expressions view is the value
+when the expression was evaluated. As the counter is changed in the running
+program, the inspected result will not change (since the view is not displaying
+the value bound to a variable - it is displaying the value of an expression, and
+the value of a primitive data type cannot change). However, if an expression
+results in an object, fields of that object will be updated in the inspector as
+they change in the running program (since the value bound to fields in an object
+can change).
+<h4> Stepping over native methods
+that perform I/O</h4>
+When the debugger steps over native methods that perform I/O to <code>System.out</code>
+or <code>System.err</code>, the output may not appear immediately unless the
+native performs a flush on the output buffer.
+<h4> VM and process termination
+running on IBM 1.3 JVM on Linux (Linux only)</h4>
+Terminating a launch, debug target, or system process associated with a debug
+target running on the IBM 1.3 JVM on the Linux platform does not work when the
+associated debug target has a suspended thread. To remove such debug targets
+from the debug UI, select <b>Terminate and Remove</b> from the debug view's
+pop-up menu (or use the shortcut &quot;delete&quot; key). Associated system
+processes in the OS may not be properly cleaned up. If a debug target has no
+suspended threads, termination works properly. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=1631">1631</a>)
+
+<h4>Java 6 and MacOS</h4>
+Apple JavaSE-1.6 VMs only execute on 64-bit architectures but JDT will detect 1.6 VMs installed on 32-bit
+architectures when a new workspace is started or when the user presses the &quot;Search...&quot; button
+on the Installed JREs preference page. Error messages will appear in the log each time JDT attempts to
+determine which execution environments a 1.6 VM is compatible with. JDT can be configured to ignore 1.6
+JREs by removing them from the Installed JREs preference page.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=262542">262542</a>)
+
+<h4>Java Annotation Processing</h4>
+<p>Some methods in the processing API are unimplemented when compiling within the IDE, and will
+throw <code>UnsupportedOperationException</code>.</p>
+<p>
+Java 6 annotation processors are supported in the batch compiler and in the
+IDE. By design, Java 6 processors are only executed during a build, not while
+editing. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=188558">188558</a>)</p>
+<p>
+Java 5 annotation processors are supported in the IDE only. Java 5 processors
+can be executed while editing, as well as during a build. Slow annotation
+processors can cause a slowdown of the editing experience. If this occurs, you
+may wish to turn off <b>Enable processing in editor</b> on the <b>Java Compiler &gt; Annotation Processing</b> properties
+page of your Java project.</p>
+
+<h4>Java indexing encounters problems when a folder is used both as a source and a class folder</h4>
+<p>Java indexing encounters problems when a folder is used both as a source folder
+in a project and as a class folder in another project. Hence, when this peculiar setup is
+used, the Java Search might miss matches located in such a folder. To avoid this kind of problem, it is strongly advised to use different
+folders for sources and binary classes. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=309903">309903</a>)</p>
+
+<h3>3.4 <a name="I-PDE">Plug-in Development Environment (PDE)</a></h3>
+<h4>Feature manifest editor does not preserve all comments</h4>
+
+<p>When a non-source page of the feature manifest editor is used, PDE will convert
+changes back into XML by regenerating the file. Although the overall content and
+most of the comments are preserved, some comments may be lost. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=59502">59502</a>)</p>
+<h4>PDE will not unzip source zips of some plug-ins</h4>
+<p>In the plug-in import wizard, when you choose to import plug-ins as
+&quot;projects with source folders&quot;, PDE will not unzip the source for the
+org.apache.ant, org.eclipse.core.runtime.compatibility.registry, org.eclipse.osgi.util and org.eclipse.osgi.services. This is
+because the source ZIPs contains code that will not compile when unzipped as it
+requires additional JARs that are not part of the SDK. To avoid the creation of
+plug-in projects that won't compile, PDE will import these plug-ins as binary
+and attach source, so you would still be able to read the source, you just won't
+be able to modify it. Also, PDE will not unzip the source for the
+org.eclipse.swt plug-ins. In this case, it is because, when shipped, the swt
+code is spread across a plug-in and a fragment, and when unzipped, it will
+require circular dependencies between the plug-in and fragment projects. These
+circular dependencies are at minimum marked as warnings by the JDT compiler and
+may result in unpredictable build behavior. Therefore, PDE always imports
+org.eclipse.swt as binary with source attached. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=66314">66314</a>)</p>
+
+<h4>Emacs key bindings do not
+work in manifest editor fields</h4>
+<p>Non-default key bindings currently do not work in fields on non-source
+pages of the PDE manifest editors. (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=19482">19482</a>)</p>
+
+<h4>Export of plug-in may silently drop classes</h4>
+<p>When exporting a plug-in using the plug-in, feature or product wizards, some classes
+might be dropped from the resulting archive if their fully qualified name is too long.
+This typical path limitation can be worked around by creating the jar of the problematic
+plug-in by using the Jar export wizard.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=97150">97150</a>)</p>
+
+<h4>Compilation errors when exporting projects not stored outside of the workspace</h4>
+<p>When exporting multiple plug-ins and one is stored outside of the workspace,
+compile errors occurs on export. To work around the problem, you can either export
+the plug-ins one by one, or change their location.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=98579">98579</a>)</p>
+
+<h4>Headless build needs to be run from a fully qualified path</h4>
+<p>When running a headless build using the scripts provided by pde build, the properties <code>builder</code> 
+and <code>buildDirectory</code> must refer to a fully qualified path.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=139554">139554</a>)
+</p>
+
+<h4>Importing in Eclipse application fails if plug-in exists in host workspace</h4>
+<p>When running an Eclipse application (self-hosting) importing plug-ins will not
+work correctly if the plug-in being imported exists in the host Eclipse's
+workspace. This is because PDE modifies the target platform of the application
+to point at the running plug-ins from the host (target weaving). This also
+affects the PDE test suite.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=294005">294005</a>)
+</p>
+
+<h4>Reusing a workspace after changing architectures silently breaks PDE models</h4>
+<p>If a workspace is reused on a machine with a different architecture, the PDE
+models used to build plug-ins may silently fail. To work around this problem,
+delete the metadata in &lt;workspace&gt;/.metadata/.plugins/org.eclipse.pde.core.
+(bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=350172">350172</a>)
+</p>
+
+<h2>4. <a name="RunningEclipse">Running Eclipse</a></h2>
+<p>After installing the Eclipse SDK in a directory, you can start the Workbench
+by running the Eclipse executable included with the release (you also need a Java SE 6
+JRE, not included with the Eclipse SDK). On Windows, the executable file is called <samp>eclipse.exe</samp>,
+and is located in the <code>eclipse</code> sub-directory of the install. If
+installed at <code>c:\eclipse-SDK-4.2-win32</code>, the executable is <code>c:\eclipse-SDK-4.2-win32\eclipse\eclipse.exe</code>.
+
+<b>Note:</b> Set-up on most other operating environments is analogous. Special
+instructions for Mac OS X are listed <a href="#macosx">below</a>.</p>
+
+<h3>Allocating enough memory and solving OutOfMemoryErrors</h3>
+<p>By default, Eclipse will allocate up to 512 megabytes of Java heap memory. This should
+be ample for all typical development tasks. However, depending on the JRE
+that you are running, the number of additional plug-ins you are using, and
+the number of files you will be working with, you could conceivably have to increase this amount. 
+Eclipse allows you to pass arguments directly to the Java VM using the
+<code>-vmargs</code> command line argument, which must follow all other Eclipse specific arguments.
+Thus, to increase the available heap memory, you would typically use:</p>
+<blockquote>
+  <p><code>eclipse -vmargs -Xmx&lt;memory size&gt;</code></p>
+</blockquote>
+<p>with the <code>&lt;memory size&gt;</code> value set to greater than
+&quot;512M&quot; (512 megabytes -- the default). 
+</p>
+<p>
+When using an Oracle VM, you may also need to increase the size of the permanent
+generation memory.  The default maximum is 64 megabytes, but more may
+be needed depending on your plug-in configuration and use.  When the VM runs
+out of permanent generation memory, it may crash or hang during class loading.
+This failure is less common when using Oracle JRE version 1.5.0_07 or greater.
+The maximum permanent generation size is increased using the -XX:MaxPermSize=&lt;memory size&gt; argument:</p>
+<blockquote>
+  <p><code>eclipse -vmargs -XX:MaxPermSize=&lt;memory size&gt;</code></p>
+</blockquote>
+<p>This argument may not be available for all VM versions and platforms; consult your VM documentation
+for more details.
+</p>
+<p>
+Note that setting memory sizes to be larger than the amount of available physical
+memory on your machine will cause Java to &quot;thrash&quot; as it copies objects
+back and forth to virtual memory, which will severely degrade your performance.
+</p>
+<h3>Selecting a workspace</h3>
+<p>When the Workbench is launched, the first thing you see is a 
+dialog that allows you to select where the workspace will be located. The
+workspace is the directory where your work will be stored.
+If you do not specify otherwise, Eclipse creates the workspace in your
+user directory.
+This workspace directory is used as the default content area for your projects
+as well as for holding any required metadata. For shared or multi-workspace
+installs you must explicitly specify the location for your workspace using the
+dialog (or via the &quot;<code>-data</code>&quot; command line argument).</p>
+<h3>Specifying the Java virtual machine</h3>
+<p>Here is a typical Eclipse command line:&nbsp;</p>
+
+<blockquote>
+  <p><code>eclipse -vm c:\jdk6u22\jre\bin\javaw</code></p>
+</blockquote>
+<p><i>Tip:</i> It's generally a good idea to explicitly specify which Java VM to
+use when running Eclipse. This is achieved with the &quot;<code>-vm</code>&quot;
+command line argument as illustrated above. If you don't use &quot;<code>-vm</code>&quot;,
+Eclipse will look on the O/S path. When you install other Java-based products,
+they may change your path and could result in a different Java VM being used
+when you next launch Eclipse.</p>
+<p>To create a Windows shortcut to an installed Eclipse:</p>
+<ol>
+  <li>Navigate to <code>eclipse.exe</code> in Windows Explorer and use Create
+    Shortcut on the content menu.</li>
+  <li>Select the shortcut and edit its Properties. In the Target: field append
+    the command line arguments.</li>
+</ol>
+<p>Opening this shortcut launches Eclipse. (You can drag the shortcut to the 
+Windows Desktop if you want to keep it in easy reach.)</p>
+
+<h3><a name="macosx">Mac OS X</a></h3>
+<p>On Mac OS X, you start Eclipse by double clicking the Eclipse application. If you need to 
+pass arguments to Eclipse, you'll have to edit the <code>eclipse.ini</code> file
+inside the Eclipse application bundle: select the Eclipse application bundle icon while holding down the Control Key.
+This will present you with a popup menu. Select &quot;Show Package Contents&quot; in the popup menu.
+Locate <code>eclipse.ini</code> file in the <code>Contents/MacOS</code> sub-folder and open it with your favorite text editor to edit the command line options.
+</p>
+
+<p>
+On MacOS X you can only launch a UI program more than once if you have separate
+copies of the program on disk. The reason for this behavior is that every UI
+application on Mac can open multiple documents, so typically there is no need
+to open a program twice. Since Eclipse cannot open more than one workspace, this means you have to make
+a copy of the Eclipse install if you want to open more then one workspace at
+the same time (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=139319">139319</a>).
+</p>
+
+<p>If you need to launch Eclipse from the command line, you can use the symbolic link &quot;eclipse&quot; in the
+top-level eclipse folder. It refers to the eclipse executable inside the application bundle and takes
+the same arguments as &quot;eclipse.exe&quot; on other platforms. 
+</p>
+<p>On Mac OS X 10.4 and later, you may notice a slow down when working with significant
+numbers of resources if you allow Spotlight to index your workspace. To prevent this, start
+System Preferences, select the Spotlight icon, then the Privacy tab, then click the Add button
+(&quot;+&quot;) and find your workspace directory in the dialog that appears.</p>
+<h3><a name="SharedInstall">Shared Install</a></h3>
+<p>The startup speed of a shared install can be improved if proper cache information is stored in the shared 
+install area. To achieve this, after unzipping Eclipse distribution, run Eclipse once with the &quot;-initialize&quot; 
+option from an account that has a write access to the install directory.</p>
+<h2>5. <a name="Upgrading"></a>Upgrading Workspace from a Previous Release</h2>
+
+<h3>Users who don't use &quot;-data&quot;</h3>
+<p>If you weren't previously using &quot;-data&quot; to specify your workspace,
+follow these steps to upgrade:</p>
+
+<ol>
+  <li>Find the workspace directory used by your old version of Eclipse.
+    Typically this is located inside the directory in which Eclipse was
+    installed in a sub-directory called &quot;<code>workspace</code>&quot;. If
+    you are using a shortcut or script to launch Eclipse, then it will be under
+    the current working directory of that shortcut or script in a sub-directory
+    called &quot;workspace&quot;. For Windows users, this is specified by the
+    &quot;Start in:&quot; argument in your shortcut properties.</li>
+  <li>Copy this workspace directory to a new, empty location outside of any
+    Eclipse install directory.</li>
+  <li>Install the new version of Eclipse in a new location, separate from any
+    old version of Eclipse.</li>
+  <li>If you had installed additional features and plug-ins into your old
+    Eclipse, you should re-install them in the new Eclipse.</li>
+  <li>Start this new version of Eclipse and select
+    this location using the workspace chooser dialog at startup (or use &quot;<code>-data</code>&quot;
+    command line argument to pre-select the workspace location).</li>
+</ol>
+<h3>Users who do use &quot;-data&quot;</h3>
+<p>If you were previously using the &quot;<code>-data</code>&quot; argument to
+start Eclipse, your upgrade path is much easier:</p>
+
+<ol>
+  <li>Optionally copy your workspace directory to a new, empty location outside of any
+    Eclipse install directory as a backup.</li>
+  <li>Install the new version of Eclipse in a new location, separate from any
+    old versions of Eclipse.</li>
+  <li>If you had installed additional features and plug-ins into your old
+    Eclipse, you should re-install them in the new Eclipse.</li>
+  <li>Start this new version of Eclipse and select this location using the workspace chooser dialog at
+    startup (or use &quot;<code>-data</code>&quot;
+    command line argument to pre-select the workspace location).</li>
+</ol>
+<p><i>Note:</i> Copying your workspace is recommended because,
+after you've upgraded your workspace, you won't be able to use it
+again with an older version of Eclipse. If you ever want to go &quot;back in
+time&quot; to an earlier release, you will need that backup.</p>
+<h3> Users who use User Libraries or classpath containers that contain JARs referencing other libraries via Class-Path in the MANIFEST.MF</h3>
+<p>
+If you want the referenced JAR files to be included in the classpath, you can do one of the following:<br/>
+<ul>
+<li>Add the system property (<code>-DresolveReferencedLibrariesForContainers=true</code>) to the <code>-vmargs</code>
+list on start-up, or</li>
+<li>Manually add the referenced JARs to the User Library or to the project.</li>
+</ul>
+</p>
+<h3>Dropped in bundles may not resolve after upgrade</h3>
+<p>If you have installed bundles by dropping them into the <tt>plugins</tt>
+or <tt>dropins</tt> directory, they might no longer resolve when you upgrade
+to a new Eclipse Platform version. In each new version of the Eclipse Platform,
+there are new versions of bundles included in the platform, and often a small 
+number of removed bundles. This may cause your previously dropped in bundles
+to no longer resolve and run. It is always recommended that you install software
+via the <tt>Help &gt; Install New Software</tt> mechanism so you are made
+aware of any install-time failure to resolve dependencies.
+</p>
+
+<h2>6. <a name="InteroperabilityWithPreviousReleases">Interoperability with
+Previous Releases</a></h2>
+<h3>6.1 Interoperability of Release 4.2 with previous releases</h3>
+<h4>Sharing projects between heterogeneous Eclipse 4.2 and 3.8</h4>
+<p>Special care is required when a project in a team repository is being loaded
+and operated on by developers using Eclipse-based products based on different
+feature or plug-in versions. The general problem is that the existence,
+contents, and interpretation of metadata files in the workspaces may be specific
+to a particular feature or plug-in version, and differ between versions. The
+workspace compatibility guarantees only cover cases where all developers upgrade
+their Eclipse workspaces in lock step. In those cases there should be no problem
+with shared metadata. However, when some developers are working in Eclipse 4.2
+while others are working in Eclipse 3.x, there are no such guarantees.
+This section provides advice for what to do and not to do. It addresses the
+specific issues with the Eclipse SDK.</p>
+
+<p>The typical failure mode is noticed by the 4.2 user. 4.2 metadata is lost
+when a 3.x user saves changes and then commits the updated metadata files to the
+repository. Here's how things typically go awry:</p>
+<ul>
+  <li>A user working in Eclipse 4.2 creates or modifies a project in a way that
+    results in changes to a shared metadata file that rely on 4.2-specific
+    information. The user then commits the updated project files, including the
+    shared metadata file, to the shared repository.</li>
+  <li>Another user working in Eclipse 3.x shares this project from the same
+    repository. The 4.2-specific information in the shared metadata file is not
+    understood by Eclipse 3.x, and is generally discarded or ignored without
+    warning. The user modifies the project in a way that results in changes to
+    the shared metadata file, causing the shared metadata file to be rewritten
+    without any of the 4.2-specific information. The user commits the updated
+    project files, including the shared metadata file, to the shared repository.
+    The user is generally unaware that shared information has just been lost as
+    a result of their actions.</li>
+  <li>A user working in Eclipse 4.2 picks up the changes to a project from the
+    shared repository, including the updated shared metadata file. The user may
+    be unaware that they have just taken a retrograde step until later when
+    things start to malfunction.</li>
+</ul>
+<p>Here are some things to watch out for when sharing projects between
+Eclipse 4.2 and earlier 3.x releases:</p>
+<ul>
+  <li><b>Virtual folders</b> - 
+  Eclipse 4.2 supports a notion of <i>virtual folders</i> that did not exist
+  in Eclipse 3.5 or earlier. If such virtual folders are created in 4.2, and the project
+  is subsequently loaded into an Eclipse 3.5 or earlier workspace, these folders
+  will not be recognized. Recommendation: avoid creating virtual folders where project
+  compatibility with Eclipse 3.5 or earlier is required.</li>
+  <li><b>Resource filters</b> - 
+  Eclipse 4.2 supports a notion of <i>resource filters</i> that did not exist
+  in Eclipse 3.5 or earlier. If such filters are added to resources in 4.2, and the project
+  is subsequently loaded into an Eclipse 3.5 or earlier workspace, these filters
+  will not be recognized. Recommendation: avoid creating resource filters where project
+  compatibility with Eclipse 3.5 or earlier is required.</li>
+  <li><b>Predefined path variables</b> - 
+  Eclipse 4.2 supports a set of built in path variables that can be used as the basis
+  for linked resource locations. Such variables will not be defined automatically in 
+  Eclipse 3.5 or earlier. If compatibility with 3.5 or earlier workspace is required,
+  users on 3.5 or earlier workspaces will need to define such path variables manually.
+  </li>
+</ul>
+<h4>Using Eclipse 4.2 to develop plug-ins that work in Eclipse 3.7</h4>
+<p>It is also possible (and reasonable) to use Eclipse 4.2 to develop a plug-in 
+  intended to work in Eclipse 3.7 or earlier. Use the <b>Plug-in Development &gt; 
+  Target Platform </b>preference page to locate non-workspace plug-ins in an Eclipse 
+  3.7 install. This ensures that the code for your plug-in is being compiled and 
+  tested against Eclipse 3.7 APIs, extension points, and plug-ins. (The above 
+  list of concerns do not apply since they affect the layout and interpretation 
+  of files in the plug-in <i>project</i> but none affect the actual deployed form 
+  of the plug-in.)</p>
+
+<hr/>
+<p>Sun, Solaris, Java and all Java-based trademarks are trademarks of Oracle Corporation.
+in the United States, other countries, or both.</p>
+<p>IBM is a trademark of International Business Machines Corporation in the
+United States, other countries, or both.</p>
+<p>Microsoft, Windows, Windows NT, Vista, and the Windows logo are trademarks of
+Microsoft Corporation in the United States, other countries, or both.</p>
+<p>Apple and Mac OS are trademarks of Apple Computer, Inc., registered in the
+U.S. and other countries.</p>
+<p>QNX, Neutrino, and Photon are trademarks or registered trademarks of QNX
+Software Systems Ltd.</p>
+<p>Other company, product, and service names may be trademarks or service marks
+of others.</p>
+<p>(c) Copyright IBM Corp. and others 2009, 2011</p>
+
+<h2><a name="Appendix1">Appendix 1: Execution Environment by Bundle</a></h2>
+
+<p>In the table below, the &quot;4.1 minimum execution environment&quot;
+  column indicates the minimum Java class library requirements of each bundle
+  for the 4.1 release, where the value is one of:</p>
+<table border="0" width="90%">
+  <tbody>
+    <tr>
+
+      <td align="center"><b>Entry</b></td>
+      <td align="left"><b>Meaning</b></td>
+    </tr>
+    <tr>
+      <td><div align="center"><strong>F1.0</strong></div></td>
+      <td>J2ME Foundation 1.0 - indicates that the bundle can only be run on
+        Foundation 1.0 or greater. Note that with the exception of some MicroEdition
+        IO classes, Foundation 1.0 is a subset of J2SE 1.3.</td>
+    </tr>
+    <tr>
+      <td><div align="center"><strong>F1.1</strong></div></td>
+      <td>J2ME Foundation 1.1 - indicates that the bundle can only be run on
+        Foundation 1.1 or greater. Note that with the exception of some MicroEdition
+        IO classes, Foundation 1.1 is a subset of J2SE 1.4.</td>
+    </tr>
+    <tr>
+      <td><div align="center"><strong>1.3</strong></div></td>
+      <td>J2SE 1.3 - indicates that the bundle can only be run on JSE 1.3 or
+        greater.</td>
+    </tr>
+    <tr>
+      <td><div align="center"><strong>1.4</strong></div></td>
+      <td>J2SE 1.4 - indicates that the bundle can only be run on JSE 1.4 or
+        greater.</td>
+    </tr>
+    <tr>
+      <td><div align="center"><strong>1.5</strong></div></td>
+      <td>Java SE 5 - indicates that the bundle can only be run on Java SE 5 or
+        greater.</td>
+
+    </tr>
+    <tr>
+      <td><div align="center"><strong>1.6</strong></div></td>
+      <td>Java SE 6 - indicates that the bundle can only be run on Java SE 6 or
+        greater.</td>
+    </tr>
+    <tr>
+      <td align="center"><b>n/a</b></td>
+      <td>Unknown at the time of this revision.</td>
+    </tr>
+  </tbody>
+</table>
+
+<p><b>Table of minimum execution environments by bundle.</b> (See also the
+  <a href="http://www.eclipse.org/projects/project-plan.php?projectid=rt.equinox#appendix">Equinox Project plan</a>
+  for the execution environment requirements of bundles contributed via that project.)</p>
+
+<table border="1">
+  <tbody>
+    <tr>
+      <td width="290"><strong>Bundle</strong></td>
+      <td width="60"><div align="center"><p align="center"><b>4.2<br/>minimum<br/>execution<br/>environment</b></p></div></td>
+    </tr>
+    <tr>
+      <td>com.ibm.icu</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>com.jcraft.jsch</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>com.sun.el</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>javax.annotation</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>javax.el</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>javax.inject</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>javax.servlet</td>
+      <td><div align="center">1.6</div></td>
+    </tr>
+    <tr>
+      <td>javax.servlet.jsp</td>
+      <td><div align="center">1.6</div></td>
+    </tr>
+    <tr>
+      <td>javax.xml</td>
+      <td><div align="center">J2SE-1.2</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.ant</td>
+      <td><div align="center">J2SE-1.2</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.batik.css</td>
+      <td><div align="center">1.3</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.batik.util</td>
+      <td><div align="center">1.3</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.batik.util.gui</td>
+      <td><div align="center">1.3</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.commons.codec</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.commons.httpclient</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.commons.logging</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.felix.gogo.command</td>
+      <td><div align="center">not specified</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.felix.gogo.runtime</td>
+      <td><div align="center">not specified</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.felix.gogo.shell</td>
+      <td><div align="center">not specified</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.jasper.glassfish</td>
+      <td><div align="center">1.6</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.lucene</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.lucene.analysis</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.apache.lucene.core</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ant.core</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ant.launching</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ant.ui</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.compare</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.compare.core</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.compare.win32</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.commands</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.contenttype</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.databinding</td>
+      <td><div align="center">F1.1</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.databinding.beans</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.databinding.observable</td>
+      <td><div align="center">F1.1</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.databinding.property</td>
+      <td><div align="center">F1.1</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.expressions</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.externaltools</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.filebuffers</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.filesystem</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.jobs</td>
+      <td><div align="center">F1.1</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.net</td>
+      <td><div align="center">F1.1</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.resources</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.runtime</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.runtime.compatibility</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.runtime.compatibility.registry</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.core.variables</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.cvs</td>
+      <td><div align="center">not specified</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.debug.core</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.debug.ui</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.core.commands</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.core.contexts</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.core.di</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.core.di.extensions</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.core.services</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.ui.bindings</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.ui.css.core</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.ui.css.swt</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.ui.css.swt.theme</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.ui.di</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.ui.model.workbench</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.ui.services</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.ui.widgets</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.ui.workbench</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.ui.workbench.addons.swt</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.ui.workbench.renderers.swt</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.ui.workbench.swt</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.e4.ui.workbench3</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.emf.common</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.emf.ecore</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.emf.ecore.change</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.emf.ecore.xmi</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.help</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.help.base</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.help.ui</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.help.webapp</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt</td>
+      <td><div align="center">not specified</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.annotation</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.apt.core</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.apt.pluggable.core</td>
+      <td><div align="center">1.6</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.apt.ui</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.compiler.apt</td>
+      <td><div align="center">1.6</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.compiler.tool</td>
+      <td><div align="center">1.6</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.core</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.core.manipulation</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.debug</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.debug.ui</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.doc.isv</td>
+      <td><div align="center">not specified</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.doc.user</td>
+      <td><div align="center">not specified</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.junit</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.junit.core</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.junit.runtime</td>
+      <td><div align="center">1.3</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.junit4.runtime</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.launching</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jdt.ui</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jface</td>
+      <td><div align="center">F1.1</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jface.databinding</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jface.text</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jsch.core</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.jsch.ui</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ltk.core.refactoring</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ltk.ui.refactoring</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.api.tools</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.api.tools.ui</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.build</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.core</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.doc.user</td>
+      <td><div align="center">not specified</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.ds.core</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.ds.ui</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.junit.runtime</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.launching</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.runtime</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.ua.core</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.ua.ui</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.ui</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.pde.ui.templates</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.platform</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.platform.doc.isv</td>
+      <td><div align="center">not specified</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.platform.doc.user</td>
+      <td><div align="center">not specified</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.rcp</td>
+      <td><div align="center">not specified</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.sdk</td>
+      <td><div align="center">not specified</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.search</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.swt</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.team.core</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.team.cvs.core</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.team.cvs.ssh2</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.team.cvs.ui</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.team.ui</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.text</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.browser</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.cheatsheets</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.console</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.editors</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.externaltools</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.forms</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.ide</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.ide.application</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.intro</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.intro.universal</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.navigator</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.navigator.resources</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.net</td>
+      <td><div align="center">F1.1</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.trace</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.views</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.views.log</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.views.properties.tabbed</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.win32</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.workbench</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.ui.workbench.texteditor</td>
+      <td><div align="center">1.4</div></td>
+    </tr>
+    <tr>
+      <td>org.eclipse.update.configurator</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.hamcrest.core</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.junit</td>
+      <td><div align="center">1.3</div></td>
+    </tr>
+    <tr>
+      <td>org.junit4</td>
+      <td><div align="center">1.5</div></td>
+    </tr>
+    <tr>
+      <td>org.objectweb.asm</td>
+      <td><div align="center">1.3</div></td>
+    </tr>
+    <tr>
+      <td>org.slf4j.api</td>
+      <td><div align="center">F1.1</div></td>
+    </tr>
+    <tr>
+      <td>org.w3c.css.sac</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.w3c.dom.smil</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+    <tr>
+      <td>org.w3c.dom.svg</td>
+      <td><div align="center">F1.0</div></td>
+    </tr>
+  </tbody>
+</table>
+
+</body>
+</html>
diff --git a/lib/monkeyrunner.jar b/lib/monkeyrunner.jar
new file mode 100644
index 0000000..9b84e4a
--- /dev/null
+++ b/lib/monkeyrunner.jar
Binary files differ
diff --git a/lib/ninepatch.jar b/lib/ninepatch.jar
new file mode 100644
index 0000000..70b21d6
--- /dev/null
+++ b/lib/ninepatch.jar
Binary files differ
diff --git a/lib/org-eclipse-core-commands-3.6.0.jar b/lib/org-eclipse-core-commands-3.6.0.jar
new file mode 100644
index 0000000..6c95c0f
--- /dev/null
+++ b/lib/org-eclipse-core-commands-3.6.0.jar
Binary files differ
diff --git a/lib/org-eclipse-equinox-common-3.6.0.jar b/lib/org-eclipse-equinox-common-3.6.0.jar
new file mode 100644
index 0000000..a5d37aa
--- /dev/null
+++ b/lib/org-eclipse-equinox-common-3.6.0.jar
Binary files differ
diff --git a/lib/org-eclipse-jface-3.6.2.jar b/lib/org-eclipse-jface-3.6.2.jar
new file mode 100644
index 0000000..289db85
--- /dev/null
+++ b/lib/org-eclipse-jface-3.6.2.jar
Binary files differ
diff --git a/lib/osgi-4.0.0.jar b/lib/osgi-4.0.0.jar
new file mode 100644
index 0000000..5f82c42
--- /dev/null
+++ b/lib/osgi-4.0.0.jar
Binary files differ
diff --git a/lib/pc-bios/bios-256k.bin b/lib/pc-bios/bios-256k.bin
new file mode 100644
index 0000000..fab9da2
--- /dev/null
+++ b/lib/pc-bios/bios-256k.bin
Binary files differ
diff --git a/lib/pc-bios/bios.bin b/lib/pc-bios/bios.bin
new file mode 100644
index 0000000..1281f42
--- /dev/null
+++ b/lib/pc-bios/bios.bin
Binary files differ
diff --git a/lib/pc-bios/efi-virtio.rom b/lib/pc-bios/efi-virtio.rom
new file mode 100644
index 0000000..935c927
--- /dev/null
+++ b/lib/pc-bios/efi-virtio.rom
Binary files differ
diff --git a/lib/pc-bios/kvmvapic.bin b/lib/pc-bios/kvmvapic.bin
new file mode 100644
index 0000000..045f5c2
--- /dev/null
+++ b/lib/pc-bios/kvmvapic.bin
Binary files differ
diff --git a/lib/pc-bios/linuxboot.bin b/lib/pc-bios/linuxboot.bin
new file mode 100644
index 0000000..130103f
--- /dev/null
+++ b/lib/pc-bios/linuxboot.bin
Binary files differ
diff --git a/lib/pc-bios/vgabios-cirrus.bin b/lib/pc-bios/vgabios-cirrus.bin
new file mode 100644
index 0000000..0c4d253
--- /dev/null
+++ b/lib/pc-bios/vgabios-cirrus.bin
Binary files differ
diff --git a/lib/plugin.prop b/lib/plugin.prop
new file mode 100644
index 0000000..44a6a1b
--- /dev/null
+++ b/lib/plugin.prop
@@ -0,0 +1,3 @@
+# begin plugin.prop
+plugin.version=23.0.0
+# end plugin.prop
diff --git a/lib/proguard-project.txt b/lib/proguard-project.txt
new file mode 100644
index 0000000..f2fe155
--- /dev/null
+++ b/lib/proguard-project.txt
@@ -0,0 +1,20 @@
+# To enable ProGuard in your project, edit project.properties
+# to define the proguard.config property as described in that file.
+#
+# Add project specific ProGuard rules here.
+# By default, the flags in this file are appended to flags specified
+# in ${sdk.dir}/tools/proguard/proguard-android.txt
+# You can edit the include path and order by changing the ProGuard
+# include property in project.properties.
+#
+# For more details, see
+#   http://developer.android.com/guide/developing/tools/proguard.html
+
+# Add any project specific keep options here:
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+#   public *;
+#}
diff --git a/lib/repository-25.3.0-dev.jar b/lib/repository-25.3.0-dev.jar
new file mode 100644
index 0000000..0664a7d
--- /dev/null
+++ b/lib/repository-25.3.0-dev.jar
Binary files differ
diff --git a/lib/rule-api.jar b/lib/rule-api.jar
new file mode 100644
index 0000000..edbf54a
--- /dev/null
+++ b/lib/rule-api.jar
Binary files differ
diff --git a/lib/screenshot2.jar b/lib/screenshot2.jar
new file mode 100644
index 0000000..e1673de
--- /dev/null
+++ b/lib/screenshot2.jar
Binary files differ
diff --git a/lib/sdk-common.jar b/lib/sdk-common.jar
new file mode 100644
index 0000000..dd81f81
--- /dev/null
+++ b/lib/sdk-common.jar
Binary files differ
diff --git a/lib/sdklib-25.3.0-dev.jar b/lib/sdklib-25.3.0-dev.jar
new file mode 100644
index 0000000..27eca87
--- /dev/null
+++ b/lib/sdklib-25.3.0-dev.jar
Binary files differ
diff --git a/lib/sdklib.jar b/lib/sdklib.jar
new file mode 100644
index 0000000..1ce8476
--- /dev/null
+++ b/lib/sdklib.jar
Binary files differ
diff --git a/lib/sdkmanager.jar b/lib/sdkmanager.jar
new file mode 100644
index 0000000..14571ef
--- /dev/null
+++ b/lib/sdkmanager.jar
Binary files differ
diff --git a/lib/sdkstats.jar b/lib/sdkstats.jar
new file mode 100644
index 0000000..af1567f
--- /dev/null
+++ b/lib/sdkstats.jar
Binary files differ
diff --git a/lib/sdkuilib.jar b/lib/sdkuilib.jar
new file mode 100644
index 0000000..9a9556f
--- /dev/null
+++ b/lib/sdkuilib.jar
Binary files differ
diff --git a/lib/swtmenubar.jar b/lib/swtmenubar.jar
new file mode 100644
index 0000000..848eb27
--- /dev/null
+++ b/lib/swtmenubar.jar
Binary files differ
diff --git a/lib/traceview.jar b/lib/traceview.jar
new file mode 100644
index 0000000..8adf726
--- /dev/null
+++ b/lib/traceview.jar
Binary files differ
diff --git a/lib/uiautomatorviewer.jar b/lib/uiautomatorviewer.jar
new file mode 100644
index 0000000..96a7353
--- /dev/null
+++ b/lib/uiautomatorviewer.jar
Binary files differ
diff --git a/lib/uibuild.template b/lib/uibuild.template
new file mode 100644
index 0000000..3170da6
--- /dev/null
+++ b/lib/uibuild.template
@@ -0,0 +1,92 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project name="PROJECT_NAME" default="help">
+
+    <!-- The local.properties file is created and updated by the 'android' tool.
+         It contains the path to the SDK. It should *NOT* be checked into
+         Version Control Systems. -->
+    <property file="local.properties" />
+
+    <!-- The ant.properties file can be created by you. It is only edited by the
+         'android' tool to add properties to it.
+         This is the place to change some Ant specific build properties.
+         Here are some properties you may want to change/update:
+
+         source.dir
+             The name of the source directory. Default is 'src'.
+         out.dir
+             The name of the output directory. Default is 'bin'.
+
+         For other overridable properties, look at the beginning of the rules
+         files in the SDK, at tools/ant/build.xml
+
+         Properties related to the SDK location or the project target should
+         be updated using the 'android' tool with the 'update' action.
+
+         This file is an integral part of the build system for your
+         application and should be checked into Version Control Systems.
+
+         -->
+    <property file="ant.properties" />
+
+    <!-- if sdk.dir was not set from one of the property file, then
+         get it from the ANDROID_HOME env var.
+         This must be done before we load project.properties since
+         the proguard config can use sdk.dir -->
+    <property environment="env" />
+    <condition property="sdk.dir" value="${env.ANDROID_HOME}">
+        <isset property="env.ANDROID_HOME" />
+    </condition>
+
+    <!-- The project.properties file is created and updated by the 'android'
+         tool, as well as ADT.
+
+         This contains project specific properties such as project target, and library
+         dependencies. Lower level build properties are stored in ant.properties
+         (or in .classpath for Eclipse projects).
+
+         This file is an integral part of the build system for your
+         application and should be checked into Version Control Systems. -->
+    <loadproperties srcFile="project.properties" />
+
+    <!-- quick check on sdk.dir -->
+    <fail
+            message="sdk.dir is missing. Make sure to generate local.properties using 'android update project' or to inject it through the ANDROID_HOME environment variable."
+            unless="sdk.dir"
+    />
+
+    <!--
+        Import per project custom build rules if present at the root of the project.
+        This is the place to put custom intermediary targets such as:
+            -pre-build
+            -pre-compile
+            -post-compile (This is typically used for code obfuscation.
+                           Compiled code location: ${out.classes.absolute.dir}
+                           If this is not done in place, override ${out.dex.input.absolute.dir})
+            -post-package
+            -post-build
+            -pre-clean
+    -->
+    <import file="custom_rules.xml" optional="true" />
+
+    <!-- Import the actual build file.
+
+         To customize existing targets, there are two options:
+         - Customize only one target:
+             - copy/paste the target into this file, *before* the
+               <import> task.
+             - customize it to your needs.
+         - Customize the whole content of build.xml
+             - copy/paste the content of the rules files (minus the top node)
+               into this file, replacing the <import> task.
+             - customize to your needs.
+
+         ***********************
+         ****** IMPORTANT ******
+         ***********************
+         In all cases you must update the value of version-tag below to read 'custom' instead of an integer,
+         in order to avoid having your file be overridden by tools such as "android update project"
+    -->
+    <!-- version-tag: VERSION_TAG -->
+    <import file="${sdk.dir}/tools/ant/uibuild.xml" />
+
+</project>
diff --git a/lib/x86/swt.jar b/lib/x86/swt.jar
new file mode 100644
index 0000000..5c94f6e
--- /dev/null
+++ b/lib/x86/swt.jar
Binary files differ
diff --git a/lib/x86_64/swt.jar b/lib/x86_64/swt.jar
new file mode 100644
index 0000000..4ce079f
--- /dev/null
+++ b/lib/x86_64/swt.jar
Binary files differ